PHP 8.2.30
Preview: casemap.h Size: 25.42 KB
//opt/alt/alt-nodejs22/root/usr/include/unicode/casemap.h

// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html

// casemap.h
// created: 2017jan12 Markus W. Scherer

#ifndef __CASEMAP_H__
#define __CASEMAP_H__

#include "unicode/utypes.h"

#if U_SHOW_CPLUSPLUS_API

#include "unicode/stringpiece.h"
#include "unicode/uobject.h"

/**
 * \file
 * \brief C++ API: Low-level C++ case mapping functions.
 */

U_NAMESPACE_BEGIN

class BreakIterator;
class ByteSink;
class Edits;

/**
 * Low-level C++ case mapping functions.
 *
 * @stable ICU 59
 */
class U_COMMON_API CaseMap final : public UMemory {
public:
    /**
     * Lowercases a UTF-16 string and optionally records edits.
     * Casing is locale-dependent and context-sensitive.
     * The result may be longer or shorter than the original.
     * The source string and the destination buffer must not overlap.
     *
     * @param locale    The locale ID. ("" = root locale, nullptr = default locale.)
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT and U_EDITS_NO_RESET.
     * @param src       The original string.
     * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
     * @param dest      A buffer for the result string. The result will be NUL-terminated if
     *                  the buffer is large enough.
     *                  The contents is undefined in case of failure.
     * @param destCapacity The size of the buffer (number of char16_ts). If it is 0, then
     *                  dest may be nullptr and the function will only return the length of the result
     *                  without writing any of the result string.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     * @return The length of the result string, if successful.
     *         When the result would be longer than destCapacity,
     *         the full length is returned and a U_BUFFER_OVERFLOW_ERROR is set.
     *
     * @see u_strToLower
     * @stable ICU 59
     */
     static int32_t toLower(
            const char *locale, uint32_t options,
            const char16_t *src, int32_t srcLength,
            char16_t *dest, int32_t destCapacity, Edits *edits,
            UErrorCode &errorCode);

    /**
     * Uppercases a UTF-16 string and optionally records edits.
     * Casing is locale-dependent and context-sensitive.
     * The result may be longer or shorter than the original.
     * The source string and the destination buffer must not overlap.
     *
     * @param locale    The locale ID. ("" = root locale, nullptr = default locale.)
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT and U_EDITS_NO_RESET.
     * @param src       The original string.
     * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
     * @param dest      A buffer for the result string. The result will be NUL-terminated if
     *                  the buffer is large enough.
     *                  The contents is undefined in case of failure.
     * @param destCapacity The size of the buffer (number of char16_ts). If it is 0, then
     *                  dest may be nullptr and the function will only return the length of the result
     *                  without writing any of the result string.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     * @return The length of the result string, if successful.
     *         When the result would be longer than destCapacity,
     *         the full length is returned and a U_BUFFER_OVERFLOW_ERROR is set.
     *
     * @see u_strToUpper
     * @stable ICU 59
     */
    static int32_t toUpper(
            const char *locale, uint32_t options,
            const char16_t *src, int32_t srcLength,
            char16_t *dest, int32_t destCapacity, Edits *edits,
            UErrorCode &errorCode);

#if !UCONFIG_NO_BREAK_ITERATION

    /**
     * Titlecases a UTF-16 string and optionally records edits.
     * Casing is locale-dependent and context-sensitive.
     * The result may be longer or shorter than the original.
     * The source string and the destination buffer must not overlap.
     *
     * Titlecasing uses a break iterator to find the first characters of words
     * that are to be titlecased. It titlecases those characters and lowercases
     * all others. (This can be modified with options bits.)
     *
     * @param locale    The locale ID. ("" = root locale, nullptr = default locale.)
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT, U_EDITS_NO_RESET,
     *                  U_TITLECASE_NO_LOWERCASE,
     *                  U_TITLECASE_NO_BREAK_ADJUSTMENT, U_TITLECASE_ADJUST_TO_CASED,
     *                  U_TITLECASE_WHOLE_STRING, U_TITLECASE_SENTENCES.
     * @param iter      A break iterator to find the first characters of words that are to be titlecased.
     *                  It is set to the source string (setText())
     *                  and used one or more times for iteration (first() and next()).
     *                  If nullptr, then a word break iterator for the locale is used
     *                  (or something equivalent).
     * @param src       The original string.
     * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
     * @param dest      A buffer for the result string. The result will be NUL-terminated if
     *                  the buffer is large enough.
     *                  The contents is undefined in case of failure.
     * @param destCapacity The size of the buffer (number of char16_ts). If it is 0, then
     *                  dest may be nullptr and the function will only return the length of the result
     *                  without writing any of the result string.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     * @return The length of the result string, if successful.
     *         When the result would be longer than destCapacity,
     *         the full length is returned and a U_BUFFER_OVERFLOW_ERROR is set.
     *
     * @see u_strToTitle
     * @see ucasemap_toTitle
     * @stable ICU 59
     */
    static int32_t toTitle(
            const char *locale, uint32_t options, BreakIterator *iter,
            const char16_t *src, int32_t srcLength,
            char16_t *dest, int32_t destCapacity, Edits *edits,
            UErrorCode &errorCode);

#endif  // UCONFIG_NO_BREAK_ITERATION

    /**
     * Case-folds a UTF-16 string and optionally records edits.
     *
     * Case folding is locale-independent and not context-sensitive,
     * but there is an option for whether to include or exclude mappings for dotted I
     * and dotless i that are marked with 'T' in CaseFolding.txt.
     *
     * The result may be longer or shorter than the original.
     * The source string and the destination buffer must not overlap.
     *
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT, U_EDITS_NO_RESET,
     *                  U_FOLD_CASE_DEFAULT, U_FOLD_CASE_EXCLUDE_SPECIAL_I.
     * @param src       The original string.
     * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
     * @param dest      A buffer for the result string. The result will be NUL-terminated if
     *                  the buffer is large enough.
     *                  The contents is undefined in case of failure.
     * @param destCapacity The size of the buffer (number of char16_ts). If it is 0, then
     *                  dest may be nullptr and the function will only return the length of the result
     *                  without writing any of the result string.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     * @return The length of the result string, if successful.
     *         When the result would be longer than destCapacity,
     *         the full length is returned and a U_BUFFER_OVERFLOW_ERROR is set.
     *
     * @see u_strFoldCase
     * @stable ICU 59
     */
    static int32_t fold(
            uint32_t options,
            const char16_t *src, int32_t srcLength,
            char16_t *dest, int32_t destCapacity, Edits *edits,
            UErrorCode &errorCode);

    /**
     * Lowercases a UTF-8 string and optionally records edits.
     * Casing is locale-dependent and context-sensitive.
     * The result may be longer or shorter than the original.
     *
     * @param locale    The locale ID. ("" = root locale, nullptr = default locale.)
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT and U_EDITS_NO_RESET.
     * @param src       The original string.
     * @param sink      A ByteSink to which the result string is written.
     *                  sink.Flush() is called at the end.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     *
     * @see ucasemap_utf8ToLower
     * @stable ICU 60
     */
    static void utf8ToLower(
            const char *locale, uint32_t options,
            StringPiece src, ByteSink &sink, Edits *edits,
            UErrorCode &errorCode);

    /**
     * Uppercases a UTF-8 string and optionally records edits.
     * Casing is locale-dependent and context-sensitive.
     * The result may be longer or shorter than the original.
     *
     * @param locale    The locale ID. ("" = root locale, nullptr = default locale.)
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT and U_EDITS_NO_RESET.
     * @param src       The original string.
     * @param sink      A ByteSink to which the result string is written.
     *                  sink.Flush() is called at the end.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     *
     * @see ucasemap_utf8ToUpper
     * @stable ICU 60
     */
    static void utf8ToUpper(
            const char *locale, uint32_t options,
            StringPiece src, ByteSink &sink, Edits *edits,
            UErrorCode &errorCode);

#if !UCONFIG_NO_BREAK_ITERATION

    /**
     * Titlecases a UTF-8 string and optionally records edits.
     * Casing is locale-dependent and context-sensitive.
     * The result may be longer or shorter than the original.
     *
     * Titlecasing uses a break iterator to find the first characters of words
     * that are to be titlecased. It titlecases those characters and lowercases
     * all others. (This can be modified with options bits.)
     *
     * @param locale    The locale ID. ("" = root locale, nullptr = default locale.)
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT, U_EDITS_NO_RESET,
     *                  U_TITLECASE_NO_LOWERCASE,
     *                  U_TITLECASE_NO_BREAK_ADJUSTMENT, U_TITLECASE_ADJUST_TO_CASED,
     *                  U_TITLECASE_WHOLE_STRING, U_TITLECASE_SENTENCES.
     * @param iter      A break iterator to find the first characters of words that are to be titlecased.
     *                  It is set to the source string (setUText())
     *                  and used one or more times for iteration (first() and next()).
     *                  If nullptr, then a word break iterator for the locale is used
     *                  (or something equivalent).
     * @param src       The original string.
     * @param sink      A ByteSink to which the result string is written.
     *                  sink.Flush() is called at the end.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     *
     * @see ucasemap_utf8ToTitle
     * @stable ICU 60
     */
    static void utf8ToTitle(
            const char *locale, uint32_t options, BreakIterator *iter,
            StringPiece src, ByteSink &sink, Edits *edits,
            UErrorCode &errorCode);

#endif  // UCONFIG_NO_BREAK_ITERATION

    /**
     * Case-folds a UTF-8 string and optionally records edits.
     *
     * Case folding is locale-independent and not context-sensitive,
     * but there is an option for whether to include or exclude mappings for dotted I
     * and dotless i that are marked with 'T' in CaseFolding.txt.
     *
     * The result may be longer or shorter than the original.
     *
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT and U_EDITS_NO_RESET.
     * @param src       The original string.
     * @param sink      A ByteSink to which the result string is written.
     *                  sink.Flush() is called at the end.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     *
     * @see ucasemap_utf8FoldCase
     * @stable ICU 60
     */
    static void utf8Fold(
            uint32_t options,
            StringPiece src, ByteSink &sink, Edits *edits,
            UErrorCode &errorCode);

    /**
     * Lowercases a UTF-8 string and optionally records edits.
     * Casing is locale-dependent and context-sensitive.
     * The result may be longer or shorter than the original.
     * The source string and the destination buffer must not overlap.
     *
     * @param locale    The locale ID. ("" = root locale, nullptr = default locale.)
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT and U_EDITS_NO_RESET.
     * @param src       The original string.
     * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
     * @param dest      A buffer for the result string. The result will be NUL-terminated if
     *                  the buffer is large enough.
     *                  The contents is undefined in case of failure.
     * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
     *                  dest may be nullptr and the function will only return the length of the result
     *                  without writing any of the result string.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     * @return The length of the result string, if successful.
     *         When the result would be longer than destCapacity,
     *         the full length is returned and a U_BUFFER_OVERFLOW_ERROR is set.
     *
     * @see ucasemap_utf8ToLower
     * @stable ICU 59
     */
    static int32_t utf8ToLower(
            const char *locale, uint32_t options,
            const char *src, int32_t srcLength,
            char *dest, int32_t destCapacity, Edits *edits,
            UErrorCode &errorCode);

    /**
     * Uppercases a UTF-8 string and optionally records edits.
     * Casing is locale-dependent and context-sensitive.
     * The result may be longer or shorter than the original.
     * The source string and the destination buffer must not overlap.
     *
     * @param locale    The locale ID. ("" = root locale, nullptr = default locale.)
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT and U_EDITS_NO_RESET.
     * @param src       The original string.
     * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
     * @param dest      A buffer for the result string. The result will be NUL-terminated if
     *                  the buffer is large enough.
     *                  The contents is undefined in case of failure.
     * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
     *                  dest may be nullptr and the function will only return the length of the result
     *                  without writing any of the result string.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     * @return The length of the result string, if successful.
     *         When the result would be longer than destCapacity,
     *         the full length is returned and a U_BUFFER_OVERFLOW_ERROR is set.
     *
     * @see ucasemap_utf8ToUpper
     * @stable ICU 59
     */
    static int32_t utf8ToUpper(
            const char *locale, uint32_t options,
            const char *src, int32_t srcLength,
            char *dest, int32_t destCapacity, Edits *edits,
            UErrorCode &errorCode);

#if !UCONFIG_NO_BREAK_ITERATION

    /**
     * Titlecases a UTF-8 string and optionally records edits.
     * Casing is locale-dependent and context-sensitive.
     * The result may be longer or shorter than the original.
     * The source string and the destination buffer must not overlap.
     *
     * Titlecasing uses a break iterator to find the first characters of words
     * that are to be titlecased. It titlecases those characters and lowercases
     * all others. (This can be modified with options bits.)
     *
     * @param locale    The locale ID. ("" = root locale, nullptr = default locale.)
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT, U_EDITS_NO_RESET,
     *                  U_TITLECASE_NO_LOWERCASE,
     *                  U_TITLECASE_NO_BREAK_ADJUSTMENT, U_TITLECASE_ADJUST_TO_CASED,
     *                  U_TITLECASE_WHOLE_STRING, U_TITLECASE_SENTENCES.
     * @param iter      A break iterator to find the first characters of words that are to be titlecased.
     *                  It is set to the source string (setUText())
     *                  and used one or more times for iteration (first() and next()).
     *                  If nullptr, then a word break iterator for the locale is used
     *                  (or something equivalent).
     * @param src       The original string.
     * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
     * @param dest      A buffer for the result string. The result will be NUL-terminated if
     *                  the buffer is large enough.
     *                  The contents is undefined in case of failure.
     * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
     *                  dest may be nullptr and the function will only return the length of the result
     *                  without writing any of the result string.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     * @return The length of the result string, if successful.
     *         When the result would be longer than destCapacity,
     *         the full length is returned and a U_BUFFER_OVERFLOW_ERROR is set.
     *
     * @see ucasemap_utf8ToTitle
     * @stable ICU 59
     */
    static int32_t utf8ToTitle(
            const char *locale, uint32_t options, BreakIterator *iter,
            const char *src, int32_t srcLength,
            char *dest, int32_t destCapacity, Edits *edits,
            UErrorCode &errorCode);

#endif  // UCONFIG_NO_BREAK_ITERATION

    /**
     * Case-folds a UTF-8 string and optionally records edits.
     *
     * Case folding is locale-independent and not context-sensitive,
     * but there is an option for whether to include or exclude mappings for dotted I
     * and dotless i that are marked with 'T' in CaseFolding.txt.
     *
     * The result may be longer or shorter than the original.
     * The source string and the destination buffer must not overlap.
     *
     * @param options   Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT, U_EDITS_NO_RESET,
     *                  U_FOLD_CASE_DEFAULT, U_FOLD_CASE_EXCLUDE_SPECIAL_I.
     * @param src       The original string.
     * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
     * @param dest      A buffer for the result string. The result will be NUL-terminated if
     *                  the buffer is large enough.
     *                  The contents is undefined in case of failure.
     * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
     *                  dest may be nullptr and the function will only return the length of the result
     *                  without writing any of the result string.
     * @param edits     Records edits for index mapping, working with styled text,
     *                  and getting only changes (if any).
     *                  The Edits contents is undefined if any error occurs.
     *                  This function calls edits->reset() first unless
     *                  options includes U_EDITS_NO_RESET. edits can be nullptr.
     * @param errorCode Reference to an in/out error code value
     *                  which must not indicate a failure before the function call.
     * @return The length of the result string, if successful.
     *         When the result would be longer than destCapacity,
     *         the full length is returned and a U_BUFFER_OVERFLOW_ERROR is set.
     *
     * @see ucasemap_utf8FoldCase
     * @stable ICU 59
     */
    static int32_t utf8Fold(
            uint32_t options,
            const char *src, int32_t srcLength,
            char *dest, int32_t destCapacity, Edits *edits,
            UErrorCode &errorCode);

private:
    CaseMap() = delete;
    CaseMap(const CaseMap &other) = delete;
    CaseMap &operator=(const CaseMap &other) = delete;
};

U_NAMESPACE_END

#endif /* U_SHOW_CPLUSPLUS_API */

#endif  // __CASEMAP_H__

Directory Contents

Dirs: 0 × Files: 203

Name Size Perms Modified Actions
26.54 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.54 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.99 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
27.84 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.77 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.83 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
107.54 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.53 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
25.42 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
23.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
23.99 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
13.78 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
59.60 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.88 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.67 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.30 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.02 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
40.70 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
1.19 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.96 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
87.46 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.60 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
38.22 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.84 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
48.87 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
18.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
28.05 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.66 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.74 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
2.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.84 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.69 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.37 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
24.37 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.51 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.28 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.75 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.03 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.35 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
30.32 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
1.02 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.10 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.93 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.59 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
26.86 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
19.55 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.12 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
48.62 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.41 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
111.44 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
21.05 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.49 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
101.89 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
784 B lrw-r--r-- 2025-06-06 11:26:48
Edit Download
38.36 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
18.07 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
33.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
44.20 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
34.68 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
30.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
2.24 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
90.69 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
26.00 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
50.16 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.22 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.56 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
27.18 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
25.07 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
2.16 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.32 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
32.04 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
56.16 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
15.75 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
84.45 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.20 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.38 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
18.02 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.09 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.44 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.21 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
14.35 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.60 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.87 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
45.62 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
57.06 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.13 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
1.05 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.96 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.28 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
15.53 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
21.43 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.28 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
36.96 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
45.59 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.40 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.90 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.42 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
65.81 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
42.95 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
16.85 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
34.81 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.11 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
89.61 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.71 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
24.43 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
63.96 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
15.27 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.35 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
151.74 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.59 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
13.24 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.21 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
83.34 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.24 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.58 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.98 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
67.28 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.82 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.56 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.54 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.51 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
14.69 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
16.72 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
62.36 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
15.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.93 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
30.13 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.94 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.86 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.41 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
10.97 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
8.09 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
12.25 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
2.06 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
34.12 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.75 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.78 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
55.38 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.31 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
16.69 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.30 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
14.59 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
1.34 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
24.25 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
8.30 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.00 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.05 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.10 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.38 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
70.40 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
182.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.55 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
25.66 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
55.16 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
19.68 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
5.23 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
15.35 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
7.26 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
10.66 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.79 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
71.99 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
9.81 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
16.98 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
141.99 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.38 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
36.65 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
28.51 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
39.21 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
63.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
18.00 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.31 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
80.00 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
8.19 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
38.58 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
1.89 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
72.16 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.15 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
58.10 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.87 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
30.83 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
23.35 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
763 B lrw-r--r-- 2025-06-06 11:26:48
Edit Download
45.80 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
13.78 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
17.18 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
25.54 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
34.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.33 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.21 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.68 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).