<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in teaish.tcl</title>
    <link>http://nxr.netbsd.org/rss/src/external/public-domain/sqlite/dist/tea/teaish.tcl</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    
<item>
    <title>branches:  1.1.1;<br/>Initial revision</title>
    <description>/src/external/public-domain/sqlite/dist/tea/teaish.tcl - 1.1</description>
    <pubDate>Tue Apr 28 20:21:47 UTC 2026</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>Import Sqlite 3.53.0 (previous was 3.45.1)<br/><br/>Changes:<br/><br/>2026-04-09 (3.53.0)<br/>* Fix: The WAL-reset database corruption bug.<br/>* New Feature: Add the Query Result Formatter (QRF) library for formatting<br/>    the results of SQL queries for human readability on a fixed-pitch font<br/>    screen.<br/>    * Add the format method to the TCL Interface so that QRF is accessible<br/>        from TCL.<br/>    * QRF is used for result formatting in the CLI, resulting in improved<br/>        display capabilities.<br/>* New SQL language features:<br/>    * Enhance ALTER TABLE to permit adding and removing NOT NULL and<br/>        CHECK constraints.<br/>    * The REINDEX EXPRESSIONS statement rebuilds expression indexes.<br/>        (Useful to repair stale expression indexes.)<br/>    * The body of TEMP triggers may now modify and/or query tables in the<br/>        main schema.<br/>    * Enhance VACUUM INTO so that if a URI filename is used as the target<br/>        and that filename has a reserve=N query parameter with N between 0<br/>        and 255, then the reserve amount for the generated database copy is<br/>        set to N.<br/>* New SQL functions:<br/>    * json_array_insert()<br/>    * jsonb_array_insert()<br/>* Renovations to the CLI:<br/>    * Major enhancements to the .mode command.<br/>    * Improved result formatting, due to the addition of the QRF extension.<br/>        For example, numeric values are now right-justified by default in<br/>        tabular output modes.<br/>    * The default output mode for interactive CLI sessions now uses QRF to<br/>        display query results in boxes formed using Unicode box-drawing<br/>        characters, for improved legibility. Batch CLI sessions use the<br/>        legacy output format for compatibility.<br/>    * Bare (unquoted) semicolons at the end of dot-commands are silently<br/>        ignored. &lt;-- Potential incompatibility!<br/>    * Fix the .testcase and .check commands so that they actually work,<br/>        and use those commands in scripts that are part of the standard<br/>        SQLite test suite included with the source tree.<br/>    * Command-line arguments that match *.sql or *.txt and are the names<br/>        of non-empty files are read and interpreted as scripts of SQL<br/>        statements and/or dot-commands.<br/>    * The argument to the ".timer" command can now be "once", to run the<br/>        timer on only the next SQL statement.<br/>    * The new "--timeout S" option to the ".progress" dot-command causes SQL<br/>        statements to interrupt after S seconds.<br/>    * The ".indexes" command was changed so that the PATTERN argument<br/>        matches the name of the index, not the name of the table being<br/>        indexed (thus making the PATTERN argument actually useful). And,<br/>        several new options were added to ".indexes".<br/>* New C-language interfaces:<br/>    * sqlite3_str_truncate()<br/>    * sqlite3_str_free()<br/>    * sqlite3_carray_bind_v2()<br/>    * Add the SQLITE_PREPARE_FROM_DDL option to sqlite3_prepare_v3()<br/>        which permits virtual table implementations to safely prepare SQL<br/>        statements that are derived from the database schema.<br/>    * Added the SQLITE_UTF8_ZT constant which can be used as the encoding<br/>        parameter to sqlite3_result_text64() or sqlite3_bind_text64() to<br/>        indicate that the value is UTF-8 encoded and zero terminated.<br/>    * The SQLITE_LIMIT_PARSER_DEPTH option is added to sqlite3_limit().<br/>    * The SQLITE_DBCONFIG_FP_DIGITS option is added to<br/>        sqlite3_db_config().<br/>* Query planner improvements:<br/>    * Always use a sort-and-merge algorithm for EXCEPT, INTERSECT, and<br/>        UNION, since this is almost always faster than using a hash table.<br/>    * Improvements to join order selection in large multi-way joins on a<br/>        star schema.<br/>    * Enhance the EXISTS-to-JOIN optimization so that the inserted JOIN<br/>        terms are not required to be on the inner-most loops, as long as all<br/>        dependencies for the EXISTS-to-JOIN loops are in outer loops.<br/>    * Enhance the omit-noop-join optimization so that it is able to omit<br/>        a chain of joins that do not affect the output.<br/>    * Allow queries that use "GROUP BY e1 ORDER BY e2" where e1 and e2 are<br/>        identical apart from ASC/DESC sort-orders to be optimized using a<br/>        single index.<br/>    * Allow virtual tables to optimize DISTINCT in cases where the<br/>        result-set of a query does not exactly match the ORDER BY clause.<br/>* Session extension: Add new interfaces that enable an application to<br/>    add changes one at a time to the sqlite3_changegroup object:<br/>    * sqlite3changegroup_change_begin()<br/>    * sqlite3changegroup_change_blob()<br/>    * sqlite3changegroup_change_double()<br/>    * sqlite3changegroup_change_int64()<br/>    * sqlite3changegroup_change_null()<br/>    * sqlite3changegroup_change_text()<br/>    * sqlite3changegroup_change_finish()<br/>    * sqlite3changegroup_config()<br/>* Improvements to floating-point &lt;-&gt; text conversions:<br/>    * Reimplemented to improve performance.<br/>    * Rounding is now done by default to 17 significant digits, instead of<br/>        15, as was the case for all prior versions. The<br/>        sqlite3_db_config(SQLITE_DBCONFIG_FP_DIGITS) API can change this.<br/>* Additional Fixes:<br/>    * Added the self-healing index feature to deal with the stale expression<br/>        index problem.<br/>    * Add the "-p|--port" option to sqlite3_rsync.<br/>    * Discontinue support for Windows RT.<br/>* JavaScript/WASM:<br/>    * Add the "opfs-wl" VFS, functionally identical to the "opfs" VFS but<br/>        using Web Locks for locking, which can promise fairer lock sharing<br/>        than the "opfs" bespoke protocol can. "opfs-wl" requires<br/>        Atomics.waitAsync(), so requires newer browsers than "opfs" does.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2026-04-09 11:41:38<br/>    4525003a53a7fc63ca75c59b22c79608659ca12f0131f52c18637f829977f20b<br/>* SHA3-256 for sqlite3.c: bb317fbbd2b3bc53233ddd5894bf4d2dc6f533445f350d4235db<br/>    cc86f65af4ec<br/><br/>---<br/><br/>2026-03-13 (3.51.3)<br/>* Fix: The WAL-reset database corruption bug.<br/>* Other minor bug fixes.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2026-03-13 10:38:09<br/>    737ae4a34738ffa0c3ff7f9bb18df914dd1cad163f28fd6b6e114a344fe6d618<br/>* SHA3-256 for sqlite3.c: 32d5424f97e0a7fc5ed2f6335afbb58be4e0298bd7117a34e39d3<br/>    45ff13d859e<br/><br/>---<br/><br/>2026-03-06 (3.52.0)<br/>* Withdrawn: All features originally scheduled for 3.52.0 moved into 3.53.0.<br/><br/>---<br/><br/>2026-01-09 (3.51.2)<br/>* Fix: An obscure deadlock in the new broken-posix-lock detection logic.<br/>* Fix: Multiple problems in the EXISTS-to-JOIN optimization.<br/>* Other minor bug fixes.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2026-01-09 17:27:48<br/>    b270f8339eb13b504d0b2ba154ebca966b7dde08e40c3ed7d559749818cb2075<br/>* SHA3-256 for sqlite3.c: 733b3fcc6cccb1e334424b9b91a9d68b618385b76ebfcbb106690<br/>    bd3a9e61367<br/><br/>---<br/><br/>2025-11-28 (3.51.1)<br/>* Fix: Incorrect results from nested EXISTS queries (from 3.51.0).<br/>* Fix: A latent bug in fts5vocab virtual table.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-11-28 17:28:25<br/>    281fc0e9afc38674b9b0991943b9e9d1e64c6cbdb133d35f6f5c87ff6af38a88<br/>* SHA3-256 for sqlite3.c: 7cec3a104797bea93970408168197af37f178ab608ea55efd48d<br/>    28daa87a8ce3<br/><br/>---<br/><br/>2025-11-04 (3.51.0)<br/>* New macros in sqlite3.h:<br/>    * SQLITE_SCM_BRANCH -&gt; name of the branch.<br/>    * SQLITE_SCM_TAGS -&gt; space-separated list of tags.<br/>    * SQLITE_SCM_DATETIME -&gt; ISO-8601 check-in date/time.<br/>* JSON: jsonb_each() and jsonb_tree() added; return JSONB for<br/>    'array' or 'object'.<br/>* Extensions: carray and percentile are now built into the<br/>    amalgamation (disabled by default).<br/>* TCL Interface:<br/>    * Add -asdict flag to the eval command.<br/>    * User-defined functions may now break to return an SQL NULL.<br/>* CLI enhancements:<br/>    * Increase .timer precision to microseconds.<br/>    * Enhance "box" and "column" modes for double-wide characters.<br/>    * .imposter command for read-only imposter tables with VACUUM.<br/>    * Add --ifexists to CLI and .open command.<br/>    * Limit column widths in .width to 30,000.<br/>* Performance:<br/>    * Use fewer CPU cycles to commit a read transaction.<br/>    * Early detection of joins with no rows.<br/>    * Avoid evaluation of scalar subqueries if they don't change the<br/>        overall result.<br/>    * Faster window function queries for BETWEEN :x FOLLOWING AND :y<br/>        FOLLOWING.<br/>* New APIs/Commands:<br/>    * PRAGMA wal_checkpoint=NOOP;<br/>    * sqlite3_set_errmsg()<br/>    * sqlite3_db_status64() (64-bit version).<br/>    * SQLITE_DBSTATUS_TEMPBUF_SPILL option.<br/>    * sqlite3changeset_apply_v3() for sessions.<br/>* printf() / format(): Omit leading '-' from negative floats if '+'<br/>    flag is omitted, '#' is present, and all displayed digits are<br/>    '0'. Use '%#f' or similar to avoid outputs like '-0.00' and instead show<br/>    just '0.00'.<br/>* Other:<br/>    * Improved error messages for FTS5.<br/>    * Enforce STRICT typing on computed columns.<br/>    * Improved support for VxWorks.<br/>    * JavaScript/WASM supports 64-bit WASM.<br/>    * Resistance to corruption from breaking Posix advisory locks using<br/>        close().<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-11-04 19:38:17<br/>    fb2c931ae597f8d00a37574ff67aeed3eced4e5547f9120744ae4bfa8e74527b<br/>* SHA3-256 for sqlite3.c: e2add951748f73587cadd1b2684defb4f39fa58dca14b16162d4<br/>    237e50af9afa<br/><br/>---<br/><br/>2025-07-30 (3.50.4)<br/>* Fix: Two cases of uninitialized variables in obscure circumstances.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-07-30 19:33:53<br/>    4d8adfb30e03f9cf27f800a2c1ba3c48fb4ca1b08b0f5ed59a4d5ecbf45e20a3<br/>* SHA3-256 for sqlite3.c: 9145255e83da6529e70121ee4d7a4c88fe83ca4511da0c9ed13d<br/>    10842df36782<br/><br/>---<br/><br/>2025-07-17 (3.50.3)<br/>* Fix: Memory error if FTS5 index is deliberately corrupted.<br/>* Fix: Parser now ignores SQL comments in CREATE TRIGGER.<br/>* Fix: Incorrect answer due to over-optimization of AND operator.<br/>* Fix minor makefile issues and documentation typos.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-07-17 13:25:10<br/>    3ce993b8657d6d9deda380a93cdd6404a8c8ba1b185b2bc423703e41ae5f2543<br/>* SHA3-256 for sqlite3.c: 934fafe96caa7f4c16e82e0c2b674441a715c038acc9780bf15e<br/>    09411daba70c<br/><br/>---<br/><br/>2025-06-28 (3.50.2)<br/>* Fix: concat_ws() now includes empty strings.<br/>* Fix: File-io extension can now be built with MinGW.<br/>* Fix: Avoid writing frames with no checksums into the WAL file on<br/>    savepoint rollback.<br/>* Fix: Bitvec object to avoid stack overflow near max database size.<br/>* Fix: UPDATEs on fts5 tables containing BLOB values.<br/>* Fix: Transitive IS constraints on a RIGHT JOIN.<br/>* Fix: Early error if aggregate terms exceed max columns.<br/>* Ensure sqlite3_setlk_timeout() holds the database mutex.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-06-28 14:00:48<br/>    2af157d77fb1304a74176eaee7fbc7c7e932d946bf25325e9c26c91db19e3079<br/>* SHA3-256 for sqlite3.c: 889bf23942c52f38a6f182e71d3f0a03db490fd731f02147b114<br/>    2c11153f3b3a<br/><br/>---<br/><br/>2025-06-06 (3.50.1)<br/>* Fix: Bug in jsonb_set() exposed by 3.50.0 optimizations.<br/>* Fix: Harmless ASAN warning with -DSQLITE_DEFAULT_MEMSTATUS=0.<br/>* Fix: Off-by-one bug in sqlite3_rsync.<br/>* Optimization: Allow right-hand side of a LEFT JOIN to be flattened<br/>    even if it is a virtual table.<br/>* Fix: sqlite3_setlk_timeout() to use a blocking lock when opening a<br/>    snapshot.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-06-06 14:52:32<br/>    b77dc5e0f596d2140d9ac682b2893ff65d3a4140aa86067a3efebe29dc914c95<br/>* SHA3-256 for sqlite3.c: c3bdffa01dab94be370bdcaeb819cda4a6e0c61f0c6e19a6f94c<br/>    cba76fc9eeca<br/><br/>---<br/><br/>2025-05-29 (3.50.0)<br/>* New API: sqlite3_setlk_timeout() for blocking locks.<br/>* DBCONFIG: SQLITE_DBCONFIG_ENABLE_COMMENTS relaxed; comments always<br/>    allowed when reading schema.<br/>* New SQL functions: unistr(), unistr_quote().<br/>* printf() / format(): Alternate-form-1 flag (#) converts control<br/>    chars into backslash-escapes for unistr().<br/>* CLI enhancements:<br/>    * Avoids direct output of control characters.<br/>    * .dump uses unistr() to encode special characters.<br/>    * Better formatting of partial indexes in .schema --indent.<br/>* sqlite3_rsync:<br/>    * Requirement for WAL mode removed.<br/>    * Protocol uses less bandwidth for similar files.<br/>    * Works on Macs without full remote path if installed in $HOME/bin,<br/>        etc.<br/>* JSON functions:<br/>    * Enforce JSON5 restriction: \0 escape not followed by a digit.<br/>    * json_group_object(): NULL labels are now omitted.<br/>    * jsonb_set() / jsonb_replace(): Optimized for interior changes to<br/>        reduce I/O.<br/>* JavaScript/WASM: Fix filename digest calculation bug in OPFS SAHPool<br/>    VFS.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-05-29 14:26:00<br/>    dfc790f998f450d9c35e3ba1c8c89c17466cb559f87b0239e4aab9d34e28f742<br/>* SHA3-256 for sqlite3.c: b8a2bcdd2ec60f87c3bbe7a2c25eb65e476e40fe80cd066ab8aa<br/>    98e5d516c1e4<br/><br/>---<br/><br/>2025-05-07 (3.49.2)<br/>* Fix: NOT NULL optimization bug from 3.40.0.<br/>* Fix: count-of-view optimization for DISTINCT queries.<br/>* Fix: Incorrect answer when UNIQUE constraint contains the<br/>    PRIMARY KEY column and used by an IN operator.<br/>* Fix: Obscure problems with generate_series().<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-05-07 10:39:52<br/>    17144570b0d96ae63cd6f3edca39e27ebd74925252bbaf6723bcb2f6b4861fb1<br/>* SHA3-256 for sqlite3.c: 17f4857fc6a0def2749d248d5365c59282c044270533c6c2b212<br/>    87295f01eb23<br/><br/>---<br/><br/>2025-02-18 (3.49.1)<br/>* Fix: concat_ws() bug (from 3.44.0) causing memory error with<br/>    separators &gt; 2MB.<br/>* Enhanced the SQLITE_DBCONFIG_LOOKASIDE interface.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-02-18 13:38:58<br/>    873d4e274b4988d260ba8354a9718324a1c26187a4ab4c1cc0227c03d0f10e70<br/>* SHA3-256 for sqlite3.c: 22eab05c842463a3705c63922f12f68531200185ced510ed6aed<br/>    2065ca44e816<br/><br/>---<br/><br/>2025-02-06 (3.49.0)<br/>* Query planner:<br/>    * Query-time index optimization for WITHOUT ROWID tables.<br/>    * Better plans for large star-query joins.<br/>    * Tie-break equal costs using fewer bytes per row.<br/>* SQL functions: iif() now accepts any number of arguments &gt;= 2.<br/>* Session extension: Now works on generated columns.<br/>* CLI: Added SQLITE_USE_W32_FOR_CONSOLE_IO for Windows console builds.<br/>* New sqlite3_db_config() options:<br/>    * SQLITE_DBCONFIG_ENABLE_ATTACH_CREATE<br/>    * SQLITE_DBCONFIG_ENABLE_ATTACH_WRITE<br/>    * SQLITE_DBCONFIG_ENABLE_COMMENTS<br/>* Build System: Replace Autotools with Autosetup for the amalgamation<br/>    tarball configure script.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-02-06 11:55:18<br/>    4a7dd425dc2a0e5082a9049c9b4a9d4f199a71583d014c24b4cfe276c5a77cde<br/>* SHA3-256 for sqlite3.c: 030c764eba64a3fa3bbf87447abd175bfef94851f970d62126a9<br/>    2877b30b611e<br/><br/>---<br/><br/>2025-01-14 (3.48.0)<br/>* Build System: Refactor canonical "configure" to use Autosetup. TCL is<br/>    no longer required for most build targets. Build dependencies reduced to<br/>    C compiler and make/nmake.<br/>* EXPLAIN: Improved output for covering indexes.<br/>* SQL functions: Two-argument iif() or if() spelling.<br/>* CLI: Added .dbtotxt command.<br/>* VFS: Added SQLITE_IOCAP_SUBPAGE_READ and SQLITE_FCNTL_NULL_IO.<br/>* sqlite3_prepare_v3(): Added SQLITE_PREPARE_DONT_LOG to check<br/>    validity silently.<br/>* FTS5: Extended xInstToken() for prefix queries.<br/>* Limits:<br/>    * Increase min SQLITE_LIMIT_LENGTH from 1 to 30.<br/>    * Increase max arguments to an SQL function from 127 to 1000.<br/>* Remove vestigial SQLITE_USER_AUTHENTICATION.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2025-01-14 11:05:00<br/>    d2fe6b05f38d9d7cd78c5d252e99ac59f1aea071d669830c1ffe4e8966e84010<br/>* SHA3-256 for sqlite3.c: 522bd9492526147d12fc8521028eb960557353d8f08c2035f15a<br/>    c737d4b91e21<br/><br/>---<br/><br/>2024-12-07 (3.47.2)<br/>* Fix: Numeric conversion error for specific values starting with<br/>    '1844674407370955' on x64/i386 hardware (introduced in 3.47.0).<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2024-12-07 20:39:59<br/>    2aabe05e2e8cae4847a802ee2daddc1d7413d8fc560254d93ee3e72c14685b6c<br/>* SHA3-256 for sqlite3.c: 586b5789453ee5c51e8d858cd836f20ce60df882323f2070547c<br/>    baf23a5898af<br/><br/>---<br/><br/>2024-11-25 (3.47.1)<br/>* Fix: Makefiles now honor DESTDIR.<br/>* Fix: Line endings in sqlite3_rsync.exe on Windows.<br/>* Fix: Incorrect answers for obscure IN queries (from 3.47.0).<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2024-11-25 12:07:48<br/>    b95d11e958643b969c47a8e5857f3793b9e69700b8f1469371386369a26e577e<br/>* SHA3-256 for sqlite3.c: d91b8b5671a127bd41057bc758d6d59fb7aceda67934a1c0166a<br/>    b2e133f2f902<br/><br/>---<br/><br/>2024-10-21 (3.47.0)<br/>* SQL: Arbitrary expressions in 2nd argument to RAISE().<br/>* JSON: Negative RHS to -&gt;&gt; counts array elements from the right.<br/>* FTS5: Tables can be dropped even if the tokenizer is unregistered.<br/>* group_concat(): Returns empty string (not NULL) for single empty<br/>    string input.<br/>* Performance:<br/>    * Bloom filter on subqueries for IN operator.<br/>    * "order-by-subquery" optimization.<br/>    * "indexed-subtype-expr" optimization.<br/>* CLI: Added sqlite3_rsync, .www, and math functions (median(),<br/>    percentile()).<br/>* Long Double: SQLite no longer uses the long double type; uses<br/>    Dekker's algorithm for precision instead.<br/>* TCL Interface: Supports TCL9.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2024-10-21 16:30:22<br/>    03a9703e27c44437c39363d0baf82db4ebc94538a0f28411c85dda156f82636e<br/>* SHA3-256 for sqlite3.c: bcec3a4fbc97e973547924677332996ef64e06a6d10d22e2c234<br/>    4f447536cc29<br/><br/>---<br/><br/>2024-08-13 (3.46.1)<br/>* Fix: Robustness in FTS5 tokenize= parsing.<br/>* Query Planner: Early detection of covering index over-prediction.<br/>* Fix: VALUES clause terms not limited by<br/>    SQLITE_LIMIT_COMPOUND_SELECT.<br/>* JavaScript/WASM: Fix corruption-causing bug in "opfs" VFS.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2024-08-13 09:16:08<br/>    c9c2ab54ba1f5f46360f1b4f35d849cd3f080e6fc2b6c60e91b16c63f69a1e33<br/>* SHA3-256 for sqlite3.c: 186a1baa476b6d546de155160ca6d30ff7b7e6ee375f0bb6445e<br/>    1a3d180a7dad<br/><br/>---<br/><br/>2024-05-23 (3.46.0)<br/>* PRAGMA optimize:<br/>    * Automatically implements analysis limits.<br/>    * New 0x10000 bitmask to check all tables.<br/>* Date/Time: strftime() supports %G, %g, %U, %V. New modifiers<br/>    'ceiling' and 'floor'.<br/>* JSON: Added json_pretty().<br/>* Numeric Literals: Support for underscores (_) between digits.<br/>* Query planner: "VALUES-as-coroutine" optimization for thousands of<br/>    rows.<br/>* Parser: Stack overflows now allocate from heap rather than erroring<br/>    out.<br/><br/>Hashes:<br/>* SQLITE_SOURCE_ID: 2024-05-23 13:25:27 96c92aba00c</title>
    <description>/src/external/public-domain/sqlite/dist/tea/teaish.tcl - 1.1.1.1</description>
    <pubDate>Tue Apr 28 20:21:47 UTC 2026</pubDate>
    <dc:creator>christos</dc:creator>
</item>
</channel></rss>

