pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/qore



Module Name:    pkgsrc
Committed By:   nros
Date:           Thu Oct 12 18:17:46 UTC 2017

Modified Files:
        pkgsrc/lang/qore: Makefile PLIST distinfo

Log Message:
Updated lang/qore to version 0.8.13.

New features in Qore:

* Input/Output stream APIs
* Vastly improved type system with complex type support
* Improved operators; list, string, binary slice operators,
  the ".." range operator, improved new, cast<>, and instanceof
  operators, lazy evaluation of functional and list operators
* Improved encryption support including AES encryption,
  encryption/decryption streams, support for AAD and MACs
* Improved HTTPS and SSL security support with addition X.509
  certificate support including automatic certificate
  verification in client and server contexts
* Universal connection API
* Support for binding output placeholder buffers for result sets
  that return an SQLStatement object for more efficient piecewise
  processing of DB stored procedure/function calls that return
  very large result sets
* Strong encapsulation support (ex: private:internal)
* Deterministic garbage collection performance improvements with
  large cycles
* Debugging support and APIs including remote network debugging
* Language Server Protocol support for Qore in the new astparser
  module for rich language support in IDEs such as the
  Visual Studio Code Qore Extension

Bug Fixes in Qore:

* fixed a bug causing AbstractQuantifiedBidirectionalIterator not
  being available (issue 968)
* BulkSqlUtil module fixes:
    -fixed the module to work properly even with DB drivers that
     do not support parameter array binding (issue 1154)
* CsvUtil module fixes:
    -fixed a bug in an error message validating input data
     (issue 1062)
    -added an exception when detected headers do not match the
     fields option (issue 2179)
* HttpServer module fixes:
    -added logic to attempt to mask passwords in log messages
     (issue 1086)
* HttpServerUtil module fixes:
    -fixed a bug where the msg arg to AbstractAuthenticator::do401()
     was ignored (issue 1047)
* RestHandler module fixes:
    -added logic to allow sensitive data to be masked in log messages
     (issue 1086)
* SqlUtil module fixes:
    -fixed a bug in update and upsert statement generation when the
     given data does not have enough columns to use the unique index
     found, an error message is generated that contains all the
     columns names instead of just the column names required by the
     index (issue 1013)
* WebSocketClient module fixes:
    -fixed a thread lock starvation race condition (issue 2130)
* UTF-16 fixes:
    -fixed a bug comparing strings in UTF-16 encodings (issue 1579)
    -fixed Qore::substr() and <string>::substr() with strings in
     UTF-16 encodings (issue 1586)
    -fixed Qore::trim(), Qore::ltrim(), Qore::rtrim() and the trim
     operator with strings with UTF-16 encodings (issue 1775)
* fixed a bug where break and continue statements were accepted
  outside of loops (issue 976)
* fixed a bug compiling on Solaris SPARC with g++ where
  MPFR_DECL_INIT() is compiled incorrectly with -O1 or greater
  (issue 958)
* fixed a bug causing an infinite loop in decompression functions
  (issue 966)
* fixed an issue where an internal C++ API
  (QoreProgram::parseCmdLineDefines()) performed a needless copy
  of a data structure (issue 1099)
* fixed a stack corruption bug with asynchronous I/O on UNIX
  systems with ReadOnlyFile methods (issue 1106)
* fixed bugs with inconsistent conversions of int, float, and
  boolean values to date/time values, now they are all converted
  uniformly to relative date/time values (issue 1156)
* fixed a bug where Qore allowed code to be declared both public
  and private without a warning (issue 1187)
* fixed a bug where the instanceof operator would return True with
  objects that did not publically inherit the given class or where
  the given class is not accessible (issue 1191)
* fixed a bug in qpp support of the 'final' class flag (issue 1222)
* fixed a bug where the + operator provided access to private
  members from outside the class (issue 1209)
* fixed a bug where different overloaded method variant resolution
  rules were used at parse time (best match in hierarchy) and
  runtime (best match in first matching class) in a class hierarchy
  (issue 1229)
* fixed a bug where exceptions in base class constructor calls did
  not reflect the actual source location (issue 1230)
* fixed a bug where runtime function/method variant matching was
  incorrectly biased towards default matches for missing arguments
  (issue 1231)
* fixed bugs where calls to Socket::upgradeClientToSSL() and
  Socket::upgradeServerToSSL() were ignored with no exception
  thrown if the socket was not connected (issue 1258)
* fixed a bug where a closure created in an object scope could not be
  called if the object had been deleted, even if the closure did not
  refer to the object (issue 1303)
* fixed a bug where ord() would return negative numbers for bytes
  with the high bit set with compilers where char is the same as
  signed char (issue 1385)
* fixed a bug where int(number) returned rounded value instead of the
  integer part (while int(float) behaved correctly; also
  cf. initializing a softint value from a number vs. from a float)
  (issue 1463)
* File::read() now uses character semantics for the length argument
  (issue 1548)
* fixed a bug with strongly-typed lvalue assignments with classes
  created in different Program objects (issue 1551)
* fixed a bug where an ASCII string and the same string in a different
  encoding and with diacritics could incorrectly be marked as equal
  (issue 1579)
* fixed bugs in HTTPClient methods where string message bodies were
  not converted to the object's character encoding before transmission
  (issue 1813)
* fixed a bug in the reference and *reference assignment restrictions;
  previously any value was accepted, now only references are accepted
  as the initial assignment values (issue 1819)
* fixed a bug in handling the SqlUtil::BLOB type in the FreetdsSqlUtil
  module (issue 1852)
* fixed a bug in overloaded call variant matching where missing
  arguments were counted towards the match (issue 1897)
* fixed many bugs where parse-time errors could be reported at an
  incorrect source location; parse-time error location reporting has
  been completely overhauled and reimplemented for correctness
  (issue 1930)
* fixed a bug where code signatures would accept parameter variables
  without "$" signs even when %allow-bare-refs was not in effect
  (issue 1941)
* fixed memory leaks in the scanner related to EOF conditions
  (issue 1976)
* rewrote Qore functions gethostbyname(), gethostbyname_long() and
  gethostbyaddr() to use standard C functions getaddrinfo(3) and
  getnameinfo(3) internally instead of the deprecated gethostbyname(3)
  and gethostbyaddr(3) (issue 1952)
* fixed cmake builds on Darwin (issue 1980)
* fixed a bug where immediate date-time values were not marked with
  their type at parse time (issue 2001)
* fixed a bug where the *data type restriction would allow all types
  to be assigned at runtime (issue 2002)
* Qore::RangeIterator::constructor(int) and Qore::xrange(int) were
  updated; the second arguments were removed to avoid ambiguity with
  the other overloaded variants (issue 2016)
* fixed a bug where Qore::replace() could get in an infinite loop
  with arguments with embededed nulls (issue 2098)
* fixed a bug in regular expression extraction where an infinite loop
  could occur (issue 2083)
* fixed a bug where a call reference to an object method that crosses
  Program boundaries could result in a core dump when called due to an
  error managing thread-local data (issue 2145)
* fixed crashes in scanner due to EOF in comments (issue 2175)


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 pkgsrc/lang/qore/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/lang/qore/PLIST
cvs rdiff -u -r1.9 -r1.10 pkgsrc/lang/qore/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/qore/Makefile
diff -u pkgsrc/lang/qore/Makefile:1.14 pkgsrc/lang/qore/Makefile:1.15
--- pkgsrc/lang/qore/Makefile:1.14      Sun Jul 30 19:27:08 2017
+++ pkgsrc/lang/qore/Makefile   Thu Oct 12 18:17:46 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2017/07/30 19:27:08 nros Exp $
+# $NetBSD: Makefile,v 1.15 2017/10/12 18:17:46 nros Exp $
 
-DISTNAME=      qore-0.8.12.11
+DISTNAME=      qore-0.8.13
 CATEGORIES=    lang
 MASTER_SITES=   ${MASTER_SITE_GITHUB:=qorelanguage/}
 EXTRACT_SUFX=   .tar.bz2
@@ -20,7 +20,8 @@ PTHREAD_OPTS+=        native
 FLEX_REQD=     2.5.31
 
 PKGCONFIG_OVERRIDE+=   qore.pc.in
-REPLACE_QORE=          bin/qget bin/rest bin/schema-reverse 
+REPLACE_QORE=          bin/qdbg bin/qdbg-remote bin/qdbg-server
+REPLACE_QORE+=         bin/qget bin/rest bin/schema-reverse
 REPLACE_QORE+=         bin/sfrest bin/sqlutil doxygen/qdx
 
 CONFIGURE_ARGS+=--with-libsuffix=""

Index: pkgsrc/lang/qore/PLIST
diff -u pkgsrc/lang/qore/PLIST:1.6 pkgsrc/lang/qore/PLIST:1.7
--- pkgsrc/lang/qore/PLIST:1.6  Sun Jul 30 19:27:08 2017
+++ pkgsrc/lang/qore/PLIST      Thu Oct 12 18:17:46 2017
@@ -1,4 +1,7 @@
-@comment $NetBSD: PLIST,v 1.6 2017/07/30 19:27:08 nros Exp $
+@comment $NetBSD: PLIST,v 1.7 2017/10/12 18:17:46 nros Exp $
+bin/qdbg
+bin/qdbg-remote
+bin/qdbg-server
 bin/qdx
 bin/qget
 bin/qore
@@ -7,6 +10,7 @@ bin/rest
 bin/schema-reverse
 bin/sfrest
 bin/sqlutil
+include/qore/AbstractException.h
 include/qore/AbstractPrivateData.h
 include/qore/AbstractQoreNode.h
 include/qore/AbstractThreadResource.h
@@ -19,7 +23,9 @@ include/qore/Datasource.h
 include/qore/DateTime.h
 include/qore/DateTimeNode.h
 include/qore/ExceptionSink.h
+include/qore/InputStream.h
 include/qore/ModuleManager.h
+include/qore/OutputStream.h
 include/qore/ParseOptionMap.h
 include/qore/Qore.h
 include/qore/QoreBigIntNode.h
@@ -27,6 +33,7 @@ include/qore/QoreBoolNode.h
 include/qore/QoreClass.h
 include/qore/QoreCondition.h
 include/qore/QoreCounter.h
+include/qore/QoreDebugProgram.h
 include/qore/QoreEncoding.h
 include/qore/QoreEvents.h
 include/qore/QoreFile.h
@@ -55,6 +62,7 @@ include/qore/QoreSSLCertificate.h
 include/qore/QoreSSLPrivateKey.h
 include/qore/QoreSocket.h
 include/qore/QoreSocketObject.h
+include/qore/QoreStandardException.h
 include/qore/QoreString.h
 include/qore/QoreStringNode.h
 include/qore/QoreThreadLocalStorage.h
@@ -71,6 +79,8 @@ include/qore/Restrictions.h
 include/qore/SQLStatement.h
 include/qore/ScopeGuard.h
 include/qore/SystemEnvironment.h
+include/qore/Transform.h
+include/qore/TypedHashDecl.h
 include/qore/common.h
 include/qore/macros-i386.h
 include/qore/macros-ia64.h
@@ -92,6 +102,7 @@ lib/cmake/Qore/QoreConfigVersion.cmake
 lib/cmake/Qore/QoreMacros.cmake
 lib/libqore.la
 lib/pkgconfig/qore.pc
+lib/qore-modules/${PKGVERSION}/astparser-api-0.20.qmod
 man/man1/qore.1
 share/doc/qore/lang/html/_pseudo___q_c___all_8dox_8h_source.html
 share/doc/qore/lang/html/_pseudo___q_c___binary_8dox_8h_source.html
@@ -165,6 +176,7 @@ share/doc/qore/lang/html/_q_c___output_s
 share/doc/qore/lang/html/_q_c___pipe_input_stream_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___pipe_output_stream_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___program_8dox_8h_source.html
+share/doc/qore/lang/html/_q_c___program_control_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___queue_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___r_w_lock_8dox_8h_source.html
 share/doc/qore/lang/html/_q_c___range_iterator_8dox_8h_source.html
@@ -196,12 +208,6 @@ share/doc/qore/lang/html/bc_s.png
 share/doc/qore/lang/html/bdwn.png
 share/doc/qore/lang/html/bug.html
 share/doc/qore/lang/html/character_encoding.html
-share/doc/qore/lang/html/class_breakpoint_1_1_breakpoint-members.html
-share/doc/qore/lang/html/class_breakpoint_1_1_breakpoint.html
-share/doc/qore/lang/html/class_breakpoint_1_1_breakpoint.js
-share/doc/qore/lang/html/class_debug_program_1_1_debug_program-members.html
-share/doc/qore/lang/html/class_debug_program_1_1_debug_program.html
-share/doc/qore/lang/html/class_debug_program_1_1_debug_program.js
 share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator-members.html
 share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.html
 share/doc/qore/lang/html/class_qore_1_1_abstract_bidirectional_iterator.js
@@ -243,6 +249,9 @@ share/doc/qore/lang/html/class_qore_1_1_
 share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.map
 share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.md5
 share/doc/qore/lang/html/class_qore_1_1_binary_output_stream__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_breakpoint-members.html
+share/doc/qore/lang/html/class_qore_1_1_breakpoint.html
+share/doc/qore/lang/html/class_qore_1_1_breakpoint.js
 share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader-members.html
 share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader.html
 share/doc/qore/lang/html/class_qore_1_1_buffered_stream_reader.js
@@ -255,6 +264,9 @@ share/doc/qore/lang/html/class_qore_1_1_
 share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.map
 share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.md5
 share/doc/qore/lang/html/class_qore_1_1_data_line_iterator__inherit__graph.png
+share/doc/qore/lang/html/class_qore_1_1_debug_program-members.html
+share/doc/qore/lang/html/class_qore_1_1_debug_program.html
+share/doc/qore/lang/html/class_qore_1_1_debug_program.js
 share/doc/qore/lang/html/class_qore_1_1_dir-members.html
 share/doc/qore/lang/html/class_qore_1_1_dir.html
 share/doc/qore/lang/html/class_qore_1_1_dir.js
@@ -447,6 +459,9 @@ share/doc/qore/lang/html/class_qore_1_1_
 share/doc/qore/lang/html/class_qore_1_1_program-members.html
 share/doc/qore/lang/html/class_qore_1_1_program.html
 share/doc/qore/lang/html/class_qore_1_1_program.js
+share/doc/qore/lang/html/class_qore_1_1_program_control-members.html
+share/doc/qore/lang/html/class_qore_1_1_program_control.html
+share/doc/qore/lang/html/class_qore_1_1_program_control.js
 share/doc/qore/lang/html/class_qore_1_1_range_iterator-members.html
 share/doc/qore/lang/html/class_qore_1_1_range_iterator.html
 share/doc/qore/lang/html/class_qore_1_1_range_iterator.js
@@ -766,6 +781,7 @@ share/doc/qore/lang/html/functions_s.htm
 share/doc/qore/lang/html/functions_t.html
 share/doc/qore/lang/html/functions_u.html
 share/doc/qore/lang/html/functions_v.html
+share/doc/qore/lang/html/functions_vars.html
 share/doc/qore/lang/html/functions_w.html
 share/doc/qore/lang/html/functions_y.html
 share/doc/qore/lang/html/functions_z.html
@@ -786,10 +802,14 @@ share/doc/qore/lang/html/group__call__ty
 share/doc/qore/lang/html/group__call__type__constants.js
 share/doc/qore/lang/html/group__compression__constants.html
 share/doc/qore/lang/html/group__compression__constants.js
+share/doc/qore/lang/html/group__compression__transformations.html
+share/doc/qore/lang/html/group__compression__transformations.js
 share/doc/qore/lang/html/group__compresssion__functions.html
 share/doc/qore/lang/html/group__compresssion__functions.js
 share/doc/qore/lang/html/group__context__functions.html
 share/doc/qore/lang/html/group__context__functions.js
+share/doc/qore/lang/html/group__crypto__transformations.html
+share/doc/qore/lang/html/group__crypto__transformations.js
 share/doc/qore/lang/html/group__cryptographic__constants.html
 share/doc/qore/lang/html/group__cryptographic__constants.js
 share/doc/qore/lang/html/group__cryptographic__functions.html
@@ -802,10 +822,10 @@ share/doc/qore/lang/html/group__dbi__cap
 share/doc/qore/lang/html/group__dbi__capabilities.js
 share/doc/qore/lang/html/group__dbi__functions.html
 share/doc/qore/lang/html/group__dbi__functions.js
-share/doc/qore/lang/html/group__debug__rc__options.html
-share/doc/qore/lang/html/group__debug__rc__options.js
-share/doc/qore/lang/html/group__debug__step__options.html
-share/doc/qore/lang/html/group__debug__step__options.js
+share/doc/qore/lang/html/group__debug__flow__options.html
+share/doc/qore/lang/html/group__debug__flow__options.js
+share/doc/qore/lang/html/group__debug__rs__options.html
+share/doc/qore/lang/html/group__debug__rs__options.js
 share/doc/qore/lang/html/group__digest__functions.html
 share/doc/qore/lang/html/group__digest__functions.js
 share/doc/qore/lang/html/group__env__functions.html
@@ -852,6 +872,8 @@ share/doc/qore/lang/html/group__null__an
 share/doc/qore/lang/html/group__null__and__nothing__constants.js
 share/doc/qore/lang/html/group__number__formatting__constants.html
 share/doc/qore/lang/html/group__number__formatting__constants.js
+share/doc/qore/lang/html/group__number__string__formatting__constants.html
+share/doc/qore/lang/html/group__number__string__formatting__constants.js
 share/doc/qore/lang/html/group__object__functions.html
 share/doc/qore/lang/html/group__object__functions.js
 share/doc/qore/lang/html/group__old__dbi__functions.html
@@ -876,14 +898,14 @@ share/doc/qore/lang/html/group__socket__
 share/doc/qore/lang/html/group__socket__type__constants.js
 share/doc/qore/lang/html/group__sql__constants.html
 share/doc/qore/lang/html/group__sql__constants.js
+share/doc/qore/lang/html/group__ssl__mode__constants.html
+share/doc/qore/lang/html/group__ssl__mode__constants.js
 share/doc/qore/lang/html/group__string__functions.html
 share/doc/qore/lang/html/group__string__functions.js
 share/doc/qore/lang/html/group__string__type__constants.html
 share/doc/qore/lang/html/group__string__type__constants.js
 share/doc/qore/lang/html/group__system__and__build__constants.html
 share/doc/qore/lang/html/group__system__and__build__constants.js
-share/doc/qore/lang/html/group__t.html
-share/doc/qore/lang/html/group__t.js
 share/doc/qore/lang/html/group__tattr__control__character__constants.html
 share/doc/qore/lang/html/group__tattr__control__character__constants.js
 share/doc/qore/lang/html/group__tattr__control__mode__constants.html
@@ -910,6 +932,7 @@ share/doc/qore/lang/html/group__warning_
 share/doc/qore/lang/html/group__warning__constants.js
 share/doc/qore/lang/html/group__x509__verification__constants.html
 share/doc/qore/lang/html/group__x509__verification__constants.js
+share/doc/qore/lang/html/hashdecl.html
 share/doc/qore/lang/html/hierarchy.html
 share/doc/qore/lang/html/hierarchy.js
 share/doc/qore/lang/html/identifiers.html
@@ -1001,9 +1024,36 @@ share/doc/qore/lang/html/inherit_graph_3
 share/doc/qore/lang/html/inherit_graph_33.map
 share/doc/qore/lang/html/inherit_graph_33.md5
 share/doc/qore/lang/html/inherit_graph_33.png
+share/doc/qore/lang/html/inherit_graph_34.map
+share/doc/qore/lang/html/inherit_graph_34.md5
+share/doc/qore/lang/html/inherit_graph_34.png
+share/doc/qore/lang/html/inherit_graph_35.map
+share/doc/qore/lang/html/inherit_graph_35.md5
+share/doc/qore/lang/html/inherit_graph_35.png
+share/doc/qore/lang/html/inherit_graph_36.map
+share/doc/qore/lang/html/inherit_graph_36.md5
+share/doc/qore/lang/html/inherit_graph_36.png
+share/doc/qore/lang/html/inherit_graph_37.map
+share/doc/qore/lang/html/inherit_graph_37.md5
+share/doc/qore/lang/html/inherit_graph_37.png
+share/doc/qore/lang/html/inherit_graph_38.map
+share/doc/qore/lang/html/inherit_graph_38.md5
+share/doc/qore/lang/html/inherit_graph_38.png
+share/doc/qore/lang/html/inherit_graph_39.map
+share/doc/qore/lang/html/inherit_graph_39.md5
+share/doc/qore/lang/html/inherit_graph_39.png
 share/doc/qore/lang/html/inherit_graph_4.map
 share/doc/qore/lang/html/inherit_graph_4.md5
 share/doc/qore/lang/html/inherit_graph_4.png
+share/doc/qore/lang/html/inherit_graph_40.map
+share/doc/qore/lang/html/inherit_graph_40.md5
+share/doc/qore/lang/html/inherit_graph_40.png
+share/doc/qore/lang/html/inherit_graph_41.map
+share/doc/qore/lang/html/inherit_graph_41.md5
+share/doc/qore/lang/html/inherit_graph_41.png
+share/doc/qore/lang/html/inherit_graph_42.map
+share/doc/qore/lang/html/inherit_graph_42.md5
+share/doc/qore/lang/html/inherit_graph_42.png
 share/doc/qore/lang/html/inherit_graph_5.map
 share/doc/qore/lang/html/inherit_graph_5.md5
 share/doc/qore/lang/html/inherit_graph_5.png
@@ -1027,10 +1077,6 @@ share/doc/qore/lang/html/menu.js
 share/doc/qore/lang/html/menudata.js
 share/doc/qore/lang/html/modules.html
 share/doc/qore/lang/html/modules.js
-share/doc/qore/lang/html/namespace_breakpoint.html
-share/doc/qore/lang/html/namespace_breakpoint.js
-share/doc/qore/lang/html/namespace_debug_program.html
-share/doc/qore/lang/html/namespace_debug_program.js
 share/doc/qore/lang/html/namespace_qore.html
 share/doc/qore/lang/html/namespace_qore.js
 share/doc/qore/lang/html/namespace_qore_1_1_err.html
@@ -1126,6 +1172,7 @@ share/doc/qore/lang/html/navtreeindex1.j
 share/doc/qore/lang/html/navtreeindex10.js
 share/doc/qore/lang/html/navtreeindex11.js
 share/doc/qore/lang/html/navtreeindex12.js
+share/doc/qore/lang/html/navtreeindex13.js
 share/doc/qore/lang/html/navtreeindex2.js
 share/doc/qore/lang/html/navtreeindex3.js
 share/doc/qore/lang/html/navtreeindex4.js
@@ -1346,10 +1393,6 @@ share/doc/qore/lang/html/search/groups_f
 share/doc/qore/lang/html/search/mag_sel.png
 share/doc/qore/lang/html/search/namespaces_0.html
 share/doc/qore/lang/html/search/namespaces_0.js
-share/doc/qore/lang/html/search/namespaces_1.html
-share/doc/qore/lang/html/search/namespaces_1.js
-share/doc/qore/lang/html/search/namespaces_2.html
-share/doc/qore/lang/html/search/namespaces_2.js
 share/doc/qore/lang/html/search/nomatches.html
 share/doc/qore/lang/html/search/pages_0.html
 share/doc/qore/lang/html/search/pages_0.js
@@ -1359,6 +1402,8 @@ share/doc/qore/lang/html/search/pages_10
 share/doc/qore/lang/html/search/pages_10.js
 share/doc/qore/lang/html/search/pages_11.html
 share/doc/qore/lang/html/search/pages_11.js
+share/doc/qore/lang/html/search/pages_12.html
+share/doc/qore/lang/html/search/pages_12.js
 share/doc/qore/lang/html/search/pages_2.html
 share/doc/qore/lang/html/search/pages_2.js
 share/doc/qore/lang/html/search/pages_3.html
@@ -1407,6 +1452,12 @@ share/doc/qore/lang/html/search/variable
 share/doc/qore/lang/html/search/variables_13.js
 share/doc/qore/lang/html/search/variables_14.html
 share/doc/qore/lang/html/search/variables_14.js
+share/doc/qore/lang/html/search/variables_15.html
+share/doc/qore/lang/html/search/variables_15.js
+share/doc/qore/lang/html/search/variables_16.html
+share/doc/qore/lang/html/search/variables_16.js
+share/doc/qore/lang/html/search/variables_17.html
+share/doc/qore/lang/html/search/variables_17.js
 share/doc/qore/lang/html/search/variables_2.html
 share/doc/qore/lang/html/search/variables_2.js
 share/doc/qore/lang/html/search/variables_3.html
@@ -1438,9 +1489,32 @@ share/doc/qore/lang/html/search/variable
 share/doc/qore/lang/html/signal_handling.html
 share/doc/qore/lang/html/splitbar.png
 share/doc/qore/lang/html/statements.html
+share/doc/qore/lang/html/struct_qore_1_1_call_stack_info-members.html
+share/doc/qore/lang/html/struct_qore_1_1_call_stack_info.html
+share/doc/qore/lang/html/struct_qore_1_1_call_stack_info.js
+share/doc/qore/lang/html/struct_qore_1_1_date_time_info-members.html
+share/doc/qore/lang/html/struct_qore_1_1_date_time_info.html
+share/doc/qore/lang/html/struct_qore_1_1_date_time_info.js
+share/doc/qore/lang/html/struct_qore_1_1_dir_stat_info-members.html
+share/doc/qore/lang/html/struct_qore_1_1_dir_stat_info.html
+share/doc/qore/lang/html/struct_qore_1_1_dir_stat_info.js
+share/doc/qore/lang/html/struct_qore_1_1_exception_info-members.html
+share/doc/qore/lang/html/struct_qore_1_1_exception_info.html
+share/doc/qore/lang/html/struct_qore_1_1_exception_info.js
+share/doc/qore/lang/html/struct_qore_1_1_filesystem_info-members.html
+share/doc/qore/lang/html/struct_qore_1_1_filesystem_info.html
+share/doc/qore/lang/html/struct_qore_1_1_filesystem_info.js
+share/doc/qore/lang/html/struct_qore_1_1_iso_week_info-members.html
+share/doc/qore/lang/html/struct_qore_1_1_iso_week_info.html
+share/doc/qore/lang/html/struct_qore_1_1_iso_week_info.js
+share/doc/qore/lang/html/struct_qore_1_1_stat_info-members.html
+share/doc/qore/lang/html/struct_qore_1_1_stat_info.html
+share/doc/qore/lang/html/struct_qore_1_1_stat_info.js
+share/doc/qore/lang/html/struct_qore_1_1_statement_info-members.html
+share/doc/qore/lang/html/struct_qore_1_1_statement_info.html
+share/doc/qore/lang/html/struct_qore_1_1_statement_info.js
 share/doc/qore/lang/html/sync_off.png
 share/doc/qore/lang/html/sync_on.png
-share/doc/qore/lang/html/t_8dox_8h_source.html
 share/doc/qore/lang/html/tab_a.png
 share/doc/qore/lang/html/tab_b.png
 share/doc/qore/lang/html/tab_h.png
@@ -1450,12 +1524,18 @@ share/doc/qore/lang/html/threading.html
 share/doc/qore/lang/html/time_zones.html
 share/doc/qore/lang/html/variables.html
 share/doc/qore/lang/html/warnings.html
+share/doc/qore/library/html/_abstract_exception_8h.html
+share/doc/qore/library/html/_abstract_exception_8h__dep__incl.map
+share/doc/qore/library/html/_abstract_exception_8h__dep__incl.md5
+share/doc/qore/library/html/_abstract_exception_8h__dep__incl.png
+share/doc/qore/library/html/_abstract_exception_8h_source.html
 share/doc/qore/library/html/_abstract_private_data_8h_source.html
 share/doc/qore/library/html/_abstract_qore_node_8h_source.html
 share/doc/qore/library/html/_abstract_thread_resource_8h_source.html
 share/doc/qore/library/html/_auto_v_lock_8h_source.html
 share/doc/qore/library/html/_binary_node_8h_source.html
 share/doc/qore/library/html/_builtin_function_list_8h.html
+share/doc/qore/library/html/_builtin_function_list_8h.js
 share/doc/qore/library/html/_builtin_function_list_8h__dep__incl.map
 share/doc/qore/library/html/_builtin_function_list_8h__dep__incl.md5
 share/doc/qore/library/html/_builtin_function_list_8h__dep__incl.png
@@ -1465,6 +1545,7 @@ share/doc/qore/library/html/_builtin_fun
 share/doc/qore/library/html/_builtin_function_list_8h_source.html
 share/doc/qore/library/html/_call_reference_node_8h_source.html
 share/doc/qore/library/html/_d_b_i_8h.html
+share/doc/qore/library/html/_d_b_i_8h.js
 share/doc/qore/library/html/_d_b_i_8h__dep__incl.map
 share/doc/qore/library/html/_d_b_i_8h__dep__incl.md5
 share/doc/qore/library/html/_d_b_i_8h__dep__incl.png
@@ -1473,7 +1554,9 @@ share/doc/qore/library/html/_datasource_
 share/doc/qore/library/html/_date_time_8h_source.html
 share/doc/qore/library/html/_date_time_node_8h_source.html
 share/doc/qore/library/html/_exception_sink_8h_source.html
+share/doc/qore/library/html/_input_stream_8h_source.html
 share/doc/qore/library/html/_module_manager_8h.html
+share/doc/qore/library/html/_module_manager_8h.js
 share/doc/qore/library/html/_module_manager_8h__dep__incl.map
 share/doc/qore/library/html/_module_manager_8h__dep__incl.md5
 share/doc/qore/library/html/_module_manager_8h__dep__incl.png
@@ -1481,14 +1564,17 @@ share/doc/qore/library/html/_module_mana
 share/doc/qore/library/html/_module_manager_8h__incl.md5
 share/doc/qore/library/html/_module_manager_8h__incl.png
 share/doc/qore/library/html/_module_manager_8h_source.html
+share/doc/qore/library/html/_output_stream_8h_source.html
 share/doc/qore/library/html/_parse_option_map_8h_source.html
 share/doc/qore/library/html/_qore_8h.html
+share/doc/qore/library/html/_qore_8h.js
 share/doc/qore/library/html/_qore_8h__dep__incl.map
 share/doc/qore/library/html/_qore_8h__dep__incl.md5
 share/doc/qore/library/html/_qore_8h__dep__incl.png
 share/doc/qore/library/html/_qore_8h_source.html
 share/doc/qore/library/html/_qore_big_int_node_8h_source.html
 share/doc/qore/library/html/_qore_bool_node_8h.html
+share/doc/qore/library/html/_qore_bool_node_8h.js
 share/doc/qore/library/html/_qore_bool_node_8h__dep__incl.map
 share/doc/qore/library/html/_qore_bool_node_8h__dep__incl.md5
 share/doc/qore/library/html/_qore_bool_node_8h__dep__incl.png
@@ -1499,7 +1585,9 @@ share/doc/qore/library/html/_qore_bool_n
 share/doc/qore/library/html/_qore_class_8h_source.html
 share/doc/qore/library/html/_qore_condition_8h_source.html
 share/doc/qore/library/html/_qore_counter_8h_source.html
+share/doc/qore/library/html/_qore_debug_program_8h_source.html
 share/doc/qore/library/html/_qore_encoding_8h.html
+share/doc/qore/library/html/_qore_encoding_8h.js
 share/doc/qore/library/html/_qore_encoding_8h__dep__incl.map
 share/doc/qore/library/html/_qore_encoding_8h__dep__incl.md5
 share/doc/qore/library/html/_qore_encoding_8h__dep__incl.png
@@ -1516,6 +1604,7 @@ share/doc/qore/library/html/_qore_hash_n
 share/doc/qore/library/html/_qore_http_client_object_8h_source.html
 share/doc/qore/library/html/_qore_iterator_base_8h_source.html
 share/doc/qore/library/html/_qore_lib_8h.html
+share/doc/qore/library/html/_qore_lib_8h.js
 share/doc/qore/library/html/_qore_lib_8h__dep__incl.map
 share/doc/qore/library/html/_qore_lib_8h__dep__incl.md5
 share/doc/qore/library/html/_qore_lib_8h__dep__incl.png
@@ -1528,6 +1617,7 @@ share/doc/qore/library/html/_qore_namesp
 share/doc/qore/library/html/_qore_net_8h_source.html
 share/doc/qore/library/html/_qore_node_eval_optional_ref_holder_8h_source.html
 share/doc/qore/library/html/_qore_nothing_node_8h.html
+share/doc/qore/library/html/_qore_nothing_node_8h.js
 share/doc/qore/library/html/_qore_nothing_node_8h__dep__incl.map
 share/doc/qore/library/html/_qore_nothing_node_8h__dep__incl.md5
 share/doc/qore/library/html/_qore_nothing_node_8h__dep__incl.png
@@ -1536,6 +1626,7 @@ share/doc/qore/library/html/_qore_nothin
 share/doc/qore/library/html/_qore_nothing_node_8h__incl.png
 share/doc/qore/library/html/_qore_nothing_node_8h_source.html
 share/doc/qore/library/html/_qore_null_node_8h.html
+share/doc/qore/library/html/_qore_null_node_8h.js
 share/doc/qore/library/html/_qore_null_node_8h__dep__incl.map
 share/doc/qore/library/html/_qore_null_node_8h__dep__incl.md5
 share/doc/qore/library/html/_qore_null_node_8h__dep__incl.png
@@ -1555,6 +1646,14 @@ share/doc/qore/library/html/_qore_s_s_l_
 share/doc/qore/library/html/_qore_s_s_l_private_key_8h_source.html
 share/doc/qore/library/html/_qore_socket_8h_source.html
 share/doc/qore/library/html/_qore_socket_object_8h_source.html
+share/doc/qore/library/html/_qore_standard_exception_8h.html
+share/doc/qore/library/html/_qore_standard_exception_8h__dep__incl.map
+share/doc/qore/library/html/_qore_standard_exception_8h__dep__incl.md5
+share/doc/qore/library/html/_qore_standard_exception_8h__dep__incl.png
+share/doc/qore/library/html/_qore_standard_exception_8h__incl.map
+share/doc/qore/library/html/_qore_standard_exception_8h__incl.md5
+share/doc/qore/library/html/_qore_standard_exception_8h__incl.png
+share/doc/qore/library/html/_qore_standard_exception_8h_source.html
 share/doc/qore/library/html/_qore_string_8h_source.html
 share/doc/qore/library/html/_qore_string_node_8h_source.html
 share/doc/qore/library/html/_qore_thread_local_storage_8h_source.html
@@ -1569,6 +1668,7 @@ share/doc/qore/library/html/_reference_a
 share/doc/qore/library/html/_reference_holder_8h_source.html
 share/doc/qore/library/html/_reference_node_8h_source.html
 share/doc/qore/library/html/_restrictions_8h.html
+share/doc/qore/library/html/_restrictions_8h.js
 share/doc/qore/library/html/_restrictions_8h__dep__incl.map
 share/doc/qore/library/html/_restrictions_8h__dep__incl.md5
 share/doc/qore/library/html/_restrictions_8h__dep__incl.png
@@ -1576,44 +1676,55 @@ share/doc/qore/library/html/_restriction
 share/doc/qore/library/html/_s_q_l_statement_8h_source.html
 share/doc/qore/library/html/_scope_guard_8h_source.html
 share/doc/qore/library/html/_system_environment_8h_source.html
+share/doc/qore/library/html/_transform_8h_source.html
+share/doc/qore/library/html/_typed_hash_decl_8h_source.html
 share/doc/qore/library/html/annotated.html
+share/doc/qore/library/html/annotated_dup.js
 share/doc/qore/library/html/bc_s.png
 share/doc/qore/library/html/bdwn.png
 share/doc/qore/library/html/builtin_functions.html
 share/doc/qore/library/html/class_abstract_call_reference_node-members.html
 share/doc/qore/library/html/class_abstract_call_reference_node.html
+share/doc/qore/library/html/class_abstract_call_reference_node.js
 share/doc/qore/library/html/class_abstract_call_reference_node__coll__graph.map
 share/doc/qore/library/html/class_abstract_call_reference_node__coll__graph.md5
 share/doc/qore/library/html/class_abstract_call_reference_node__coll__graph.png
 share/doc/qore/library/html/class_abstract_call_reference_node__inherit__graph.map
 share/doc/qore/library/html/class_abstract_call_reference_node__inherit__graph.md5
 share/doc/qore/library/html/class_abstract_call_reference_node__inherit__graph.png
+share/doc/qore/library/html/class_abstract_exception-members.html
+share/doc/qore/library/html/class_abstract_exception.html
+share/doc/qore/library/html/class_abstract_exception.js
+share/doc/qore/library/html/class_abstract_exception__inherit__graph.map
+share/doc/qore/library/html/class_abstract_exception__inherit__graph.md5
+share/doc/qore/library/html/class_abstract_exception__inherit__graph.png
 share/doc/qore/library/html/class_abstract_private_data-members.html
 share/doc/qore/library/html/class_abstract_private_data.html
+share/doc/qore/library/html/class_abstract_private_data.js
 share/doc/qore/library/html/class_abstract_private_data__coll__graph.map
 share/doc/qore/library/html/class_abstract_private_data__coll__graph.md5
 share/doc/qore/library/html/class_abstract_private_data__coll__graph.png
 share/doc/qore/library/html/class_abstract_private_data__inherit__graph.map
 share/doc/qore/library/html/class_abstract_private_data__inherit__graph.md5
 share/doc/qore/library/html/class_abstract_private_data__inherit__graph.png
-share/doc/qore/library/html/class_abstract_qore_class_type_info_helper-members.html
-share/doc/qore/library/html/class_abstract_qore_class_type_info_helper.html
-share/doc/qore/library/html/class_abstract_qore_class_type_info_helper__coll__graph.map
-share/doc/qore/library/html/class_abstract_qore_class_type_info_helper__coll__graph.md5
-share/doc/qore/library/html/class_abstract_qore_class_type_info_helper__coll__graph.png
-share/doc/qore/library/html/class_abstract_qore_class_type_info_helper__inherit__graph.map
-share/doc/qore/library/html/class_abstract_qore_class_type_info_helper__inherit__graph.md5
-share/doc/qore/library/html/class_abstract_qore_class_type_info_helper__inherit__graph.png
+share/doc/qore/library/html/class_abstract_qore_class_user_data-members.html
+share/doc/qore/library/html/class_abstract_qore_class_user_data.html
+share/doc/qore/library/html/class_abstract_qore_class_user_data.js
 share/doc/qore/library/html/class_abstract_qore_node-members.html
 share/doc/qore/library/html/class_abstract_qore_node.html
+share/doc/qore/library/html/class_abstract_qore_node.js
 share/doc/qore/library/html/class_abstract_qore_node__coll__graph.map
 share/doc/qore/library/html/class_abstract_qore_node__coll__graph.md5
 share/doc/qore/library/html/class_abstract_qore_node__coll__graph.png
 share/doc/qore/library/html/class_abstract_qore_node__inherit__graph.map
 share/doc/qore/library/html/class_abstract_qore_node__inherit__graph.md5
 share/doc/qore/library/html/class_abstract_qore_node__inherit__graph.png
+share/doc/qore/library/html/class_abstract_qore_program_external_data-members.html
+share/doc/qore/library/html/class_abstract_qore_program_external_data.html
+share/doc/qore/library/html/class_abstract_qore_program_external_data.js
 share/doc/qore/library/html/class_abstract_thread_resource-members.html
 share/doc/qore/library/html/class_abstract_thread_resource.html
+share/doc/qore/library/html/class_abstract_thread_resource.js
 share/doc/qore/library/html/class_abstract_thread_resource__coll__graph.map
 share/doc/qore/library/html/class_abstract_thread_resource__coll__graph.md5
 share/doc/qore/library/html/class_abstract_thread_resource__coll__graph.png
@@ -1622,23 +1733,28 @@ share/doc/qore/library/html/class_abstra
 share/doc/qore/library/html/class_abstract_thread_resource__inherit__graph.png
 share/doc/qore/library/html/class_atomic_environment_setter-members.html
 share/doc/qore/library/html/class_atomic_environment_setter.html
+share/doc/qore/library/html/class_atomic_environment_setter.js
 share/doc/qore/library/html/class_auto_locker-members.html
 share/doc/qore/library/html/class_auto_locker.html
+share/doc/qore/library/html/class_auto_locker.js
 share/doc/qore/library/html/class_auto_locker__coll__graph.map
 share/doc/qore/library/html/class_auto_locker__coll__graph.md5
 share/doc/qore/library/html/class_auto_locker__coll__graph.png
 share/doc/qore/library/html/class_auto_unlocker-members.html
 share/doc/qore/library/html/class_auto_unlocker.html
+share/doc/qore/library/html/class_auto_unlocker.js
 share/doc/qore/library/html/class_auto_unlocker__coll__graph.map
 share/doc/qore/library/html/class_auto_unlocker__coll__graph.md5
 share/doc/qore/library/html/class_auto_unlocker__coll__graph.png
 share/doc/qore/library/html/class_auto_v_lock-members.html
 share/doc/qore/library/html/class_auto_v_lock.html
+share/doc/qore/library/html/class_auto_v_lock.js
 share/doc/qore/library/html/class_auto_v_lock__coll__graph.map
 share/doc/qore/library/html/class_auto_v_lock__coll__graph.md5
 share/doc/qore/library/html/class_auto_v_lock__coll__graph.png
 share/doc/qore/library/html/class_binary_node-members.html
 share/doc/qore/library/html/class_binary_node.html
+share/doc/qore/library/html/class_binary_node.js
 share/doc/qore/library/html/class_binary_node__coll__graph.map
 share/doc/qore/library/html/class_binary_node__coll__graph.md5
 share/doc/qore/library/html/class_binary_node__coll__graph.png
@@ -1647,8 +1763,10 @@ share/doc/qore/library/html/class_binary
 share/doc/qore/library/html/class_binary_node__inherit__graph.png
 share/doc/qore/library/html/class_builtin_function_list-members.html
 share/doc/qore/library/html/class_builtin_function_list.html
+share/doc/qore/library/html/class_builtin_function_list.js
 share/doc/qore/library/html/class_const_hash_iterator-members.html
 share/doc/qore/library/html/class_const_hash_iterator.html
+share/doc/qore/library/html/class_const_hash_iterator.js
 share/doc/qore/library/html/class_const_hash_iterator__coll__graph.map
 share/doc/qore/library/html/class_const_hash_iterator__coll__graph.md5
 share/doc/qore/library/html/class_const_hash_iterator__coll__graph.png
@@ -1657,27 +1775,37 @@ share/doc/qore/library/html/class_const_
 share/doc/qore/library/html/class_const_hash_iterator__inherit__graph.png
 share/doc/qore/library/html/class_const_list_iterator-members.html
 share/doc/qore/library/html/class_const_list_iterator.html
+share/doc/qore/library/html/class_const_list_iterator.js
 share/doc/qore/library/html/class_const_list_iterator__coll__graph.map
 share/doc/qore/library/html/class_const_list_iterator__coll__graph.md5
 share/doc/qore/library/html/class_const_list_iterator__coll__graph.png
 share/doc/qore/library/html/class_const_value_list_iterator-members.html
 share/doc/qore/library/html/class_const_value_list_iterator.html
+share/doc/qore/library/html/class_const_value_list_iterator.js
 share/doc/qore/library/html/class_const_value_list_iterator__coll__graph.map
 share/doc/qore/library/html/class_const_value_list_iterator__coll__graph.md5
 share/doc/qore/library/html/class_const_value_list_iterator__coll__graph.png
+share/doc/qore/library/html/class_current_program_runtime_external_parse_context_helper-members.html
+share/doc/qore/library/html/class_current_program_runtime_external_parse_context_helper.html
+share/doc/qore/library/html/class_current_program_runtime_external_parse_context_helper.js
 share/doc/qore/library/html/class_d_b_i_driver-members.html
 share/doc/qore/library/html/class_d_b_i_driver.html
+share/doc/qore/library/html/class_d_b_i_driver.js
 share/doc/qore/library/html/class_d_b_i_driver_list-members.html
 share/doc/qore/library/html/class_d_b_i_driver_list.html
+share/doc/qore/library/html/class_d_b_i_driver_list.js
 share/doc/qore/library/html/class_datasource-members.html
 share/doc/qore/library/html/class_datasource.html
+share/doc/qore/library/html/class_datasource.js
 share/doc/qore/library/html/class_date_time-members.html
 share/doc/qore/library/html/class_date_time.html
+share/doc/qore/library/html/class_date_time.js
 share/doc/qore/library/html/class_date_time__inherit__graph.map
 share/doc/qore/library/html/class_date_time__inherit__graph.md5
 share/doc/qore/library/html/class_date_time__inherit__graph.png
 share/doc/qore/library/html/class_date_time_node-members.html
 share/doc/qore/library/html/class_date_time_node.html
+share/doc/qore/library/html/class_date_time_node.js
 share/doc/qore/library/html/class_date_time_node__coll__graph.map
 share/doc/qore/library/html/class_date_time_node__coll__graph.md5
 share/doc/qore/library/html/class_date_time_node__coll__graph.png
@@ -1686,16 +1814,22 @@ share/doc/qore/library/html/class_date_t
 share/doc/qore/library/html/class_date_time_node__inherit__graph.png
 share/doc/qore/library/html/class_date_time_node_value_helper-members.html
 share/doc/qore/library/html/class_date_time_node_value_helper.html
+share/doc/qore/library/html/class_date_time_node_value_helper.js
 share/doc/qore/library/html/class_date_time_value_helper-members.html
 share/doc/qore/library/html/class_date_time_value_helper.html
+share/doc/qore/library/html/class_date_time_value_helper.js
 share/doc/qore/library/html/class_exception_sink-members.html
 share/doc/qore/library/html/class_exception_sink.html
+share/doc/qore/library/html/class_exception_sink.js
 share/doc/qore/library/html/class_feature_list-members.html
 share/doc/qore/library/html/class_feature_list.html
+share/doc/qore/library/html/class_feature_list.js
 share/doc/qore/library/html/class_hash_assignment_helper-members.html
 share/doc/qore/library/html/class_hash_assignment_helper.html
+share/doc/qore/library/html/class_hash_assignment_helper.js
 share/doc/qore/library/html/class_hash_iterator-members.html
 share/doc/qore/library/html/class_hash_iterator.html
+share/doc/qore/library/html/class_hash_iterator.js
 share/doc/qore/library/html/class_hash_iterator__coll__graph.map
 share/doc/qore/library/html/class_hash_iterator__coll__graph.md5
 share/doc/qore/library/html/class_hash_iterator__coll__graph.png
@@ -1703,13 +1837,24 @@ share/doc/qore/library/html/class_hash_i
 share/doc/qore/library/html/class_hash_iterator__inherit__graph.md5
 share/doc/qore/library/html/class_hash_iterator__inherit__graph.png
 share/doc/qore/library/html/class_implementation.html
+share/doc/qore/library/html/class_input_stream-members.html
+share/doc/qore/library/html/class_input_stream.html
+share/doc/qore/library/html/class_input_stream.js
+share/doc/qore/library/html/class_input_stream__coll__graph.map
+share/doc/qore/library/html/class_input_stream__coll__graph.md5
+share/doc/qore/library/html/class_input_stream__coll__graph.png
+share/doc/qore/library/html/class_input_stream__inherit__graph.map
+share/doc/qore/library/html/class_input_stream__inherit__graph.md5
+share/doc/qore/library/html/class_input_stream__inherit__graph.png
 share/doc/qore/library/html/class_list_iterator-members.html
 share/doc/qore/library/html/class_list_iterator.html
+share/doc/qore/library/html/class_list_iterator.js
 share/doc/qore/library/html/class_list_iterator__coll__graph.map
 share/doc/qore/library/html/class_list_iterator__coll__graph.md5
 share/doc/qore/library/html/class_list_iterator__coll__graph.png
 share/doc/qore/library/html/class_module_manager-members.html
 share/doc/qore/library/html/class_module_manager.html
+share/doc/qore/library/html/class_module_manager.js
 share/doc/qore/library/html/class_obj_scope_guard_impl0-members.html
 share/doc/qore/library/html/class_obj_scope_guard_impl0.html
 share/doc/qore/library/html/class_obj_scope_guard_impl0__coll__graph.map
@@ -1736,11 +1881,22 @@ share/doc/qore/library/html/class_obj_sc
 share/doc/qore/library/html/class_obj_scope_guard_impl2__inherit__graph.png
 share/doc/qore/library/html/class_opt_locker-members.html
 share/doc/qore/library/html/class_opt_locker.html
+share/doc/qore/library/html/class_opt_locker.js
 share/doc/qore/library/html/class_opt_locker__coll__graph.map
 share/doc/qore/library/html/class_opt_locker__coll__graph.md5
 share/doc/qore/library/html/class_opt_locker__coll__graph.png
+share/doc/qore/library/html/class_output_stream-members.html
+share/doc/qore/library/html/class_output_stream.html
+share/doc/qore/library/html/class_output_stream.js
+share/doc/qore/library/html/class_output_stream__coll__graph.map
+share/doc/qore/library/html/class_output_stream__coll__graph.md5
+share/doc/qore/library/html/class_output_stream__coll__graph.png
+share/doc/qore/library/html/class_output_stream__inherit__graph.map
+share/doc/qore/library/html/class_output_stream__inherit__graph.md5
+share/doc/qore/library/html/class_output_stream__inherit__graph.png
 share/doc/qore/library/html/class_parse_option_map-members.html
 share/doc/qore/library/html/class_parse_option_map.html
+share/doc/qore/library/html/class_parse_option_map.js
 share/doc/qore/library/html/class_private_data_ref_holder-members.html
 share/doc/qore/library/html/class_private_data_ref_holder.html
 share/doc/qore/library/html/class_private_data_ref_holder__coll__graph.map
@@ -1751,18 +1907,22 @@ share/doc/qore/library/html/class_privat
 share/doc/qore/library/html/class_private_data_ref_holder__inherit__graph.png
 share/doc/qore/library/html/class_qore_addr_info-members.html
 share/doc/qore/library/html/class_qore_addr_info.html
+share/doc/qore/library/html/class_qore_addr_info.js
 share/doc/qore/library/html/class_qore_auto_r_w_read_locker-members.html
 share/doc/qore/library/html/class_qore_auto_r_w_read_locker.html
+share/doc/qore/library/html/class_qore_auto_r_w_read_locker.js
 share/doc/qore/library/html/class_qore_auto_r_w_read_locker__coll__graph.map
 share/doc/qore/library/html/class_qore_auto_r_w_read_locker__coll__graph.md5
 share/doc/qore/library/html/class_qore_auto_r_w_read_locker__coll__graph.png
 share/doc/qore/library/html/class_qore_auto_r_w_write_locker-members.html
 share/doc/qore/library/html/class_qore_auto_r_w_write_locker.html
+share/doc/qore/library/html/class_qore_auto_r_w_write_locker.js
 share/doc/qore/library/html/class_qore_auto_r_w_write_locker__coll__graph.map
 share/doc/qore/library/html/class_qore_auto_r_w_write_locker__coll__graph.md5
 share/doc/qore/library/html/class_qore_auto_r_w_write_locker__coll__graph.png
 share/doc/qore/library/html/class_qore_big_int_node-members.html
 share/doc/qore/library/html/class_qore_big_int_node.html
+share/doc/qore/library/html/class_qore_big_int_node.js
 share/doc/qore/library/html/class_qore_big_int_node__coll__graph.map
 share/doc/qore/library/html/class_qore_big_int_node__coll__graph.md5
 share/doc/qore/library/html/class_qore_big_int_node__coll__graph.png
@@ -1779,6 +1939,7 @@ share/doc/qore/library/html/class_qore_b
 share/doc/qore/library/html/class_qore_bool_false_node__inherit__graph.png
 share/doc/qore/library/html/class_qore_bool_node-members.html
 share/doc/qore/library/html/class_qore_bool_node.html
+share/doc/qore/library/html/class_qore_bool_node.js
 share/doc/qore/library/html/class_qore_bool_node__coll__graph.map
 share/doc/qore/library/html/class_qore_bool_node__coll__graph.md5
 share/doc/qore/library/html/class_qore_bool_node__coll__graph.png
@@ -1793,20 +1954,60 @@ share/doc/qore/library/html/class_qore_b
 share/doc/qore/library/html/class_qore_bool_true_node__inherit__graph.map
 share/doc/qore/library/html/class_qore_bool_true_node__inherit__graph.md5
 share/doc/qore/library/html/class_qore_bool_true_node__inherit__graph.png
+share/doc/qore/library/html/class_qore_breakpoint-members.html
+share/doc/qore/library/html/class_qore_breakpoint.html
+share/doc/qore/library/html/class_qore_breakpoint.js
+share/doc/qore/library/html/class_qore_breakpoint__coll__graph.map
+share/doc/qore/library/html/class_qore_breakpoint__coll__graph.md5
+share/doc/qore/library/html/class_qore_breakpoint__coll__graph.png
+share/doc/qore/library/html/class_qore_breakpoint__inherit__graph.map
+share/doc/qore/library/html/class_qore_breakpoint__inherit__graph.md5
+share/doc/qore/library/html/class_qore_breakpoint__inherit__graph.png
+share/doc/qore/library/html/class_qore_builtin_class-members.html
+share/doc/qore/library/html/class_qore_builtin_class.html
+share/doc/qore/library/html/class_qore_builtin_class.js
+share/doc/qore/library/html/class_qore_builtin_class__coll__graph.map
+share/doc/qore/library/html/class_qore_builtin_class__coll__graph.md5
+share/doc/qore/library/html/class_qore_builtin_class__coll__graph.png
+share/doc/qore/library/html/class_qore_builtin_class__inherit__graph.map
+share/doc/qore/library/html/class_qore_builtin_class__inherit__graph.md5
+share/doc/qore/library/html/class_qore_builtin_class__inherit__graph.png
 share/doc/qore/library/html/class_qore_class-members.html
 share/doc/qore/library/html/class_qore_class.html
+share/doc/qore/library/html/class_qore_class.js
+share/doc/qore/library/html/class_qore_class__inherit__graph.map
+share/doc/qore/library/html/class_qore_class__inherit__graph.md5
+share/doc/qore/library/html/class_qore_class__inherit__graph.png
+share/doc/qore/library/html/class_qore_class_holder-members.html
+share/doc/qore/library/html/class_qore_class_holder.html
+share/doc/qore/library/html/class_qore_class_holder.js
 share/doc/qore/library/html/class_qore_condition-members.html
 share/doc/qore/library/html/class_qore_condition.html
+share/doc/qore/library/html/class_qore_condition.js
 share/doc/qore/library/html/class_qore_counter-members.html
 share/doc/qore/library/html/class_qore_counter.html
+share/doc/qore/library/html/class_qore_counter.js
+share/doc/qore/library/html/class_qore_debug_program-members.html
+share/doc/qore/library/html/class_qore_debug_program.html
+share/doc/qore/library/html/class_qore_debug_program.js
+share/doc/qore/library/html/class_qore_debug_program__coll__graph.map
+share/doc/qore/library/html/class_qore_debug_program__coll__graph.md5
+share/doc/qore/library/html/class_qore_debug_program__coll__graph.png
+share/doc/qore/library/html/class_qore_debug_program__inherit__graph.map
+share/doc/qore/library/html/class_qore_debug_program__inherit__graph.md5
+share/doc/qore/library/html/class_qore_debug_program__inherit__graph.png
 share/doc/qore/library/html/class_qore_encoding-members.html
 share/doc/qore/library/html/class_qore_encoding.html
+share/doc/qore/library/html/class_qore_encoding.js
 share/doc/qore/library/html/class_qore_encoding_manager-members.html
 share/doc/qore/library/html/class_qore_encoding_manager.html
+share/doc/qore/library/html/class_qore_encoding_manager.js
 share/doc/qore/library/html/class_qore_file-members.html
 share/doc/qore/library/html/class_qore_file.html
+share/doc/qore/library/html/class_qore_file.js
 share/doc/qore/library/html/class_qore_float_node-members.html
 share/doc/qore/library/html/class_qore_float_node.html
+share/doc/qore/library/html/class_qore_float_node.js
 share/doc/qore/library/html/class_qore_float_node__coll__graph.map
 share/doc/qore/library/html/class_qore_float_node__coll__graph.md5
 share/doc/qore/library/html/class_qore_float_node__coll__graph.png
@@ -1815,10 +2016,13 @@ share/doc/qore/library/html/class_qore_f
 share/doc/qore/library/html/class_qore_float_node__inherit__graph.png
 share/doc/qore/library/html/class_qore_foreign_thread_helper-members.html
 share/doc/qore/library/html/class_qore_foreign_thread_helper.html
+share/doc/qore/library/html/class_qore_foreign_thread_helper.js
 share/doc/qore/library/html/class_qore_ftp_client-members.html
 share/doc/qore/library/html/class_qore_ftp_client.html
+share/doc/qore/library/html/class_qore_ftp_client.js
 share/doc/qore/library/html/class_qore_h_t_t_p_client-members.html
 share/doc/qore/library/html/class_qore_h_t_t_p_client.html
+share/doc/qore/library/html/class_qore_h_t_t_p_client.js
 share/doc/qore/library/html/class_qore_h_t_t_p_client__coll__graph.map
 share/doc/qore/library/html/class_qore_h_t_t_p_client__coll__graph.md5
 share/doc/qore/library/html/class_qore_h_t_t_p_client__coll__graph.png
@@ -1827,6 +2031,7 @@ share/doc/qore/library/html/class_qore_h
 share/doc/qore/library/html/class_qore_h_t_t_p_client__inherit__graph.png
 share/doc/qore/library/html/class_qore_hash_node-members.html
 share/doc/qore/library/html/class_qore_hash_node.html
+share/doc/qore/library/html/class_qore_hash_node.js
 share/doc/qore/library/html/class_qore_hash_node__coll__graph.map
 share/doc/qore/library/html/class_qore_hash_node__coll__graph.md5
 share/doc/qore/library/html/class_qore_hash_node__coll__graph.png
@@ -1835,11 +2040,13 @@ share/doc/qore/library/html/class_qore_h
 share/doc/qore/library/html/class_qore_hash_node__inherit__graph.png
 share/doc/qore/library/html/class_qore_http_client_object-members.html
 share/doc/qore/library/html/class_qore_http_client_object.html
+share/doc/qore/library/html/class_qore_http_client_object.js
 share/doc/qore/library/html/class_qore_http_client_object__inherit__graph.map
 share/doc/qore/library/html/class_qore_http_client_object__inherit__graph.md5
 share/doc/qore/library/html/class_qore_http_client_object__inherit__graph.png
 share/doc/qore/library/html/class_qore_iterator_base-members.html
 share/doc/qore/library/html/class_qore_iterator_base.html
+share/doc/qore/library/html/class_qore_iterator_base.js
 share/doc/qore/library/html/class_qore_iterator_base__coll__graph.map
 share/doc/qore/library/html/class_qore_iterator_base__coll__graph.md5
 share/doc/qore/library/html/class_qore_iterator_base__coll__graph.png
@@ -1848,6 +2055,7 @@ share/doc/qore/library/html/class_qore_i
 share/doc/qore/library/html/class_qore_iterator_base__inherit__graph.png
 share/doc/qore/library/html/class_qore_list_node-members.html
 share/doc/qore/library/html/class_qore_list_node.html
+share/doc/qore/library/html/class_qore_list_node.js
 share/doc/qore/library/html/class_qore_list_node__coll__graph.map
 share/doc/qore/library/html/class_qore_list_node__coll__graph.md5
 share/doc/qore/library/html/class_qore_list_node__coll__graph.png
@@ -1856,21 +2064,33 @@ share/doc/qore/library/html/class_qore_l
 share/doc/qore/library/html/class_qore_list_node__inherit__graph.png
 share/doc/qore/library/html/class_qore_list_node_eval_optional_ref_holder-members.html
 share/doc/qore/library/html/class_qore_list_node_eval_optional_ref_holder.html
+share/doc/qore/library/html/class_qore_list_node_eval_optional_ref_holder.js
 share/doc/qore/library/html/class_qore_method-members.html
 share/doc/qore/library/html/class_qore_method.html
+share/doc/qore/library/html/class_qore_method.js
 share/doc/qore/library/html/class_qore_method_iterator-members.html
 share/doc/qore/library/html/class_qore_method_iterator.html
 share/doc/qore/library/html/class_qore_namespace-members.html
 share/doc/qore/library/html/class_qore_namespace.html
+share/doc/qore/library/html/class_qore_namespace.js
 share/doc/qore/library/html/class_qore_namespace__inherit__graph.map
 share/doc/qore/library/html/class_qore_namespace__inherit__graph.md5
 share/doc/qore/library/html/class_qore_namespace__inherit__graph.png
+share/doc/qore/library/html/class_qore_namespace_const_iterator-members.html
+share/doc/qore/library/html/class_qore_namespace_const_iterator.html
+share/doc/qore/library/html/class_qore_namespace_const_iterator.js
+share/doc/qore/library/html/class_qore_namespace_iterator-members.html
+share/doc/qore/library/html/class_qore_namespace_iterator.html
+share/doc/qore/library/html/class_qore_namespace_iterator.js
 share/doc/qore/library/html/class_qore_node_as_string_helper-members.html
 share/doc/qore/library/html/class_qore_node_as_string_helper.html
+share/doc/qore/library/html/class_qore_node_as_string_helper.js
 share/doc/qore/library/html/class_qore_node_eval_optional_ref_holder-members.html
 share/doc/qore/library/html/class_qore_node_eval_optional_ref_holder.html
+share/doc/qore/library/html/class_qore_node_eval_optional_ref_holder.js
 share/doc/qore/library/html/class_qore_nothing_node-members.html
 share/doc/qore/library/html/class_qore_nothing_node.html
+share/doc/qore/library/html/class_qore_nothing_node.js
 share/doc/qore/library/html/class_qore_nothing_node__coll__graph.map
 share/doc/qore/library/html/class_qore_nothing_node__coll__graph.md5
 share/doc/qore/library/html/class_qore_nothing_node__coll__graph.png
@@ -1879,6 +2099,7 @@ share/doc/qore/library/html/class_qore_n
 share/doc/qore/library/html/class_qore_nothing_node__inherit__graph.png
 share/doc/qore/library/html/class_qore_null_node-members.html
 share/doc/qore/library/html/class_qore_null_node.html
+share/doc/qore/library/html/class_qore_null_node.js
 share/doc/qore/library/html/class_qore_null_node__coll__graph.map
 share/doc/qore/library/html/class_qore_null_node__coll__graph.md5
 share/doc/qore/library/html/class_qore_null_node__coll__graph.png
@@ -1887,14 +2108,19 @@ share/doc/qore/library/html/class_qore_n
 share/doc/qore/library/html/class_qore_null_node__inherit__graph.png
 share/doc/qore/library/html/class_qore_number_node-members.html
 share/doc/qore/library/html/class_qore_number_node.html
+share/doc/qore/library/html/class_qore_number_node.js
 share/doc/qore/library/html/class_qore_number_node__coll__graph.map
 share/doc/qore/library/html/class_qore_number_node__coll__graph.md5
 share/doc/qore/library/html/class_qore_number_node__coll__graph.png
 share/doc/qore/library/html/class_qore_number_node__inherit__graph.map
 share/doc/qore/library/html/class_qore_number_node__inherit__graph.md5
 share/doc/qore/library/html/class_qore_number_node__inherit__graph.png
+share/doc/qore/library/html/class_qore_number_node_helper-members.html
+share/doc/qore/library/html/class_qore_number_node_helper.html
+share/doc/qore/library/html/class_qore_number_node_helper.js
 share/doc/qore/library/html/class_qore_object-members.html
 share/doc/qore/library/html/class_qore_object.html
+share/doc/qore/library/html/class_qore_object.js
 share/doc/qore/library/html/class_qore_object__coll__graph.map
 share/doc/qore/library/html/class_qore_object__coll__graph.md5
 share/doc/qore/library/html/class_qore_object__coll__graph.png
@@ -1903,21 +2129,25 @@ share/doc/qore/library/html/class_qore_o
 share/doc/qore/library/html/class_qore_object__inherit__graph.png
 share/doc/qore/library/html/class_qore_program-members.html
 share/doc/qore/library/html/class_qore_program.html
+share/doc/qore/library/html/class_qore_program.js
 share/doc/qore/library/html/class_qore_program__coll__graph.map
 share/doc/qore/library/html/class_qore_program__coll__graph.md5
 share/doc/qore/library/html/class_qore_program__coll__graph.png
 share/doc/qore/library/html/class_qore_program__inherit__graph.map
 share/doc/qore/library/html/class_qore_program__inherit__graph.md5
 share/doc/qore/library/html/class_qore_program__inherit__graph.png
+share/doc/qore/library/html/class_qore_program_context_helper-members.html
+share/doc/qore/library/html/class_qore_program_context_helper.html
+share/doc/qore/library/html/class_qore_program_context_helper.js
 share/doc/qore/library/html/class_qore_program_helper-members.html
 share/doc/qore/library/html/class_qore_program_helper.html
+share/doc/qore/library/html/class_qore_program_helper.js
 share/doc/qore/library/html/class_qore_r_w_lock-members.html
 share/doc/qore/library/html/class_qore_r_w_lock.html
+share/doc/qore/library/html/class_qore_r_w_lock.js
 share/doc/qore/library/html/class_qore_reference_counter-members.html
 share/doc/qore/library/html/class_qore_reference_counter.html
-share/doc/qore/library/html/class_qore_reference_counter__coll__graph.map
-share/doc/qore/library/html/class_qore_reference_counter__coll__graph.md5
-share/doc/qore/library/html/class_qore_reference_counter__coll__graph.png
+share/doc/qore/library/html/class_qore_reference_counter.js
 share/doc/qore/library/html/class_qore_reference_counter__inherit__graph.map
 share/doc/qore/library/html/class_qore_reference_counter__inherit__graph.md5
 share/doc/qore/library/html/class_qore_reference_counter__inherit__graph.png
@@ -1928,6 +2158,7 @@ share/doc/qore/library/html/class_qore_s
 share/doc/qore/library/html/class_qore_s_s_l_base__inherit__graph.png
 share/doc/qore/library/html/class_qore_s_s_l_certificate-members.html
 share/doc/qore/library/html/class_qore_s_s_l_certificate.html
+share/doc/qore/library/html/class_qore_s_s_l_certificate.js
 share/doc/qore/library/html/class_qore_s_s_l_certificate__coll__graph.map
 share/doc/qore/library/html/class_qore_s_s_l_certificate__coll__graph.md5
 share/doc/qore/library/html/class_qore_s_s_l_certificate__coll__graph.png
@@ -1936,6 +2167,7 @@ share/doc/qore/library/html/class_qore_s
 share/doc/qore/library/html/class_qore_s_s_l_certificate__inherit__graph.png
 share/doc/qore/library/html/class_qore_s_s_l_private_key-members.html
 share/doc/qore/library/html/class_qore_s_s_l_private_key.html
+share/doc/qore/library/html/class_qore_s_s_l_private_key.js
 share/doc/qore/library/html/class_qore_s_s_l_private_key__coll__graph.map
 share/doc/qore/library/html/class_qore_s_s_l_private_key__coll__graph.md5
 share/doc/qore/library/html/class_qore_s_s_l_private_key__coll__graph.png
@@ -1944,25 +2176,39 @@ share/doc/qore/library/html/class_qore_s
 share/doc/qore/library/html/class_qore_s_s_l_private_key__inherit__graph.png
 share/doc/qore/library/html/class_qore_safe_r_w_read_locker-members.html
 share/doc/qore/library/html/class_qore_safe_r_w_read_locker.html
+share/doc/qore/library/html/class_qore_safe_r_w_read_locker.js
 share/doc/qore/library/html/class_qore_safe_r_w_read_locker__coll__graph.map
 share/doc/qore/library/html/class_qore_safe_r_w_read_locker__coll__graph.md5
 share/doc/qore/library/html/class_qore_safe_r_w_read_locker__coll__graph.png
 share/doc/qore/library/html/class_qore_safe_r_w_write_locker-members.html
 share/doc/qore/library/html/class_qore_safe_r_w_write_locker.html
+share/doc/qore/library/html/class_qore_safe_r_w_write_locker.js
 share/doc/qore/library/html/class_qore_safe_r_w_write_locker__coll__graph.map
 share/doc/qore/library/html/class_qore_safe_r_w_write_locker__coll__graph.md5
 share/doc/qore/library/html/class_qore_safe_r_w_write_locker__coll__graph.png
 share/doc/qore/library/html/class_qore_socket-members.html
 share/doc/qore/library/html/class_qore_socket.html
+share/doc/qore/library/html/class_qore_socket.js
+share/doc/qore/library/html/class_qore_standard_exception-members.html
+share/doc/qore/library/html/class_qore_standard_exception.html
+share/doc/qore/library/html/class_qore_standard_exception.js
+share/doc/qore/library/html/class_qore_standard_exception__coll__graph.map
+share/doc/qore/library/html/class_qore_standard_exception__coll__graph.md5
+share/doc/qore/library/html/class_qore_standard_exception__coll__graph.png
+share/doc/qore/library/html/class_qore_standard_exception__inherit__graph.map
+share/doc/qore/library/html/class_qore_standard_exception__inherit__graph.md5
+share/doc/qore/library/html/class_qore_standard_exception__inherit__graph.png
 share/doc/qore/library/html/class_qore_static_method_iterator-members.html
 share/doc/qore/library/html/class_qore_static_method_iterator.html
 share/doc/qore/library/html/class_qore_string-members.html
 share/doc/qore/library/html/class_qore_string.html
+share/doc/qore/library/html/class_qore_string.js
 share/doc/qore/library/html/class_qore_string__inherit__graph.map
 share/doc/qore/library/html/class_qore_string__inherit__graph.md5
 share/doc/qore/library/html/class_qore_string__inherit__graph.png
 share/doc/qore/library/html/class_qore_string_node-members.html
 share/doc/qore/library/html/class_qore_string_node.html
+share/doc/qore/library/html/class_qore_string_node.js
 share/doc/qore/library/html/class_qore_string_node__coll__graph.map
 share/doc/qore/library/html/class_qore_string_node__coll__graph.md5
 share/doc/qore/library/html/class_qore_string_node__coll__graph.png
@@ -1971,26 +2217,28 @@ share/doc/qore/library/html/class_qore_s
 share/doc/qore/library/html/class_qore_string_node__inherit__graph.png
 share/doc/qore/library/html/class_qore_string_node_value_helper-members.html
 share/doc/qore/library/html/class_qore_string_node_value_helper.html
+share/doc/qore/library/html/class_qore_string_node_value_helper.js
 share/doc/qore/library/html/class_qore_string_value_helper-members.html
 share/doc/qore/library/html/class_qore_string_value_helper.html
+share/doc/qore/library/html/class_qore_string_value_helper.js
 share/doc/qore/library/html/class_qore_string_value_helper__coll__graph.map
 share/doc/qore/library/html/class_qore_string_value_helper__coll__graph.md5
 share/doc/qore/library/html/class_qore_string_value_helper__coll__graph.png
 share/doc/qore/library/html/class_qore_thread_local_storage-members.html
 share/doc/qore/library/html/class_qore_thread_local_storage.html
+share/doc/qore/library/html/class_qore_thread_local_storage.js
 share/doc/qore/library/html/class_qore_thread_lock-members.html
 share/doc/qore/library/html/class_qore_thread_lock.html
-share/doc/qore/library/html/class_qore_type_info_helper-members.html
-share/doc/qore/library/html/class_qore_type_info_helper.html
-share/doc/qore/library/html/class_qore_type_info_helper__inherit__graph.map
-share/doc/qore/library/html/class_qore_type_info_helper__inherit__graph.md5
-share/doc/qore/library/html/class_qore_type_info_helper__inherit__graph.png
+share/doc/qore/library/html/class_qore_thread_lock.js
 share/doc/qore/library/html/class_qore_type_safe_reference_helper-members.html
 share/doc/qore/library/html/class_qore_type_safe_reference_helper.html
+share/doc/qore/library/html/class_qore_type_safe_reference_helper.js
 share/doc/qore/library/html/class_qore_u_r_l-members.html
 share/doc/qore/library/html/class_qore_u_r_l.html
+share/doc/qore/library/html/class_qore_u_r_l.js
 share/doc/qore/library/html/class_qore_value_list-members.html
 share/doc/qore/library/html/class_qore_value_list.html
+share/doc/qore/library/html/class_qore_value_list.js
 share/doc/qore/library/html/class_qore_value_list__coll__graph.map
 share/doc/qore/library/html/class_qore_value_list__coll__graph.md5
 share/doc/qore/library/html/class_qore_value_list__coll__graph.png
@@ -2001,13 +2249,16 @@ share/doc/qore/library/html/class_ref_ho
 share/doc/qore/library/html/class_ref_holder.html
 share/doc/qore/library/html/class_reference_argument_helper-members.html
 share/doc/qore/library/html/class_reference_argument_helper.html
+share/doc/qore/library/html/class_reference_argument_helper.js
 share/doc/qore/library/html/class_reference_holder-members.html
 share/doc/qore/library/html/class_reference_holder.html
+share/doc/qore/library/html/class_reference_holder.js
 share/doc/qore/library/html/class_reference_holder__inherit__graph.map
 share/doc/qore/library/html/class_reference_holder__inherit__graph.md5
 share/doc/qore/library/html/class_reference_holder__inherit__graph.png
 share/doc/qore/library/html/class_reference_node-members.html
 share/doc/qore/library/html/class_reference_node.html
+share/doc/qore/library/html/class_reference_node.js
 share/doc/qore/library/html/class_reference_node__coll__graph.map
 share/doc/qore/library/html/class_reference_node__coll__graph.md5
 share/doc/qore/library/html/class_reference_node__coll__graph.png
@@ -2016,6 +2267,7 @@ share/doc/qore/library/html/class_refere
 share/doc/qore/library/html/class_reference_node__inherit__graph.png
 share/doc/qore/library/html/class_resolved_call_reference_node-members.html
 share/doc/qore/library/html/class_resolved_call_reference_node.html
+share/doc/qore/library/html/class_resolved_call_reference_node.js
 share/doc/qore/library/html/class_resolved_call_reference_node__coll__graph.map
 share/doc/qore/library/html/class_resolved_call_reference_node__coll__graph.md5
 share/doc/qore/library/html/class_resolved_call_reference_node__coll__graph.png
@@ -2024,6 +2276,7 @@ share/doc/qore/library/html/class_resolv
 share/doc/qore/library/html/class_resolved_call_reference_node__inherit__graph.png
 share/doc/qore/library/html/class_reverse_const_hash_iterator-members.html
 share/doc/qore/library/html/class_reverse_const_hash_iterator.html
+share/doc/qore/library/html/class_reverse_const_hash_iterator.js
 share/doc/qore/library/html/class_reverse_const_hash_iterator__coll__graph.map
 share/doc/qore/library/html/class_reverse_const_hash_iterator__coll__graph.md5
 share/doc/qore/library/html/class_reverse_const_hash_iterator__coll__graph.png
@@ -2032,6 +2285,7 @@ share/doc/qore/library/html/class_revers
 share/doc/qore/library/html/class_reverse_const_hash_iterator__inherit__graph.png
 share/doc/qore/library/html/class_reverse_hash_iterator-members.html
 share/doc/qore/library/html/class_reverse_hash_iterator.html
+share/doc/qore/library/html/class_reverse_hash_iterator.js
 share/doc/qore/library/html/class_reverse_hash_iterator__coll__graph.map
 share/doc/qore/library/html/class_reverse_hash_iterator__coll__graph.md5
 share/doc/qore/library/html/class_reverse_hash_iterator__coll__graph.png
@@ -2040,6 +2294,7 @@ share/doc/qore/library/html/class_revers
 share/doc/qore/library/html/class_reverse_hash_iterator__inherit__graph.png
 share/doc/qore/library/html/class_root_qore_namespace-members.html
 share/doc/qore/library/html/class_root_qore_namespace.html
+share/doc/qore/library/html/class_root_qore_namespace.js
 share/doc/qore/library/html/class_root_qore_namespace__coll__graph.map
 share/doc/qore/library/html/class_root_qore_namespace__coll__graph.md5
 share/doc/qore/library/html/class_root_qore_namespace__coll__graph.png
@@ -2048,8 +2303,10 @@ share/doc/qore/library/html/class_root_q
 share/doc/qore/library/html/class_root_qore_namespace__inherit__graph.png
 share/doc/qore/library/html/class_s_q_l_statement-members.html
 share/doc/qore/library/html/class_s_q_l_statement.html
+share/doc/qore/library/html/class_s_q_l_statement.js
 share/doc/qore/library/html/class_safe_locker-members.html
 share/doc/qore/library/html/class_safe_locker.html
+share/doc/qore/library/html/class_safe_locker.js
 share/doc/qore/library/html/class_safe_locker__coll__graph.map
 share/doc/qore/library/html/class_safe_locker__coll__graph.md5
 share/doc/qore/library/html/class_safe_locker__coll__graph.png
@@ -2092,6 +2349,7 @@ share/doc/qore/library/html/class_scope_
 share/doc/qore/library/html/class_scope_guard_impl_base__inherit__graph.png
 share/doc/qore/library/html/class_simple_qore_node-members.html
 share/doc/qore/library/html/class_simple_qore_node.html
+share/doc/qore/library/html/class_simple_qore_node.js
 share/doc/qore/library/html/class_simple_qore_node__coll__graph.map
 share/doc/qore/library/html/class_simple_qore_node__coll__graph.md5
 share/doc/qore/library/html/class_simple_qore_node__coll__graph.png
@@ -2102,6 +2360,7 @@ share/doc/qore/library/html/class_simple
 share/doc/qore/library/html/class_simple_ref_holder.html
 share/doc/qore/library/html/class_simple_value_qore_node-members.html
 share/doc/qore/library/html/class_simple_value_qore_node.html
+share/doc/qore/library/html/class_simple_value_qore_node.js
 share/doc/qore/library/html/class_simple_value_qore_node__coll__graph.map
 share/doc/qore/library/html/class_simple_value_qore_node__coll__graph.md5
 share/doc/qore/library/html/class_simple_value_qore_node__coll__graph.png
@@ -2110,16 +2369,45 @@ share/doc/qore/library/html/class_simple
 share/doc/qore/library/html/class_simple_value_qore_node__inherit__graph.png
 share/doc/qore/library/html/class_socket_source-members.html
 share/doc/qore/library/html/class_socket_source.html
+share/doc/qore/library/html/class_socket_source.js
 share/doc/qore/library/html/class_system_environment-members.html
 share/doc/qore/library/html/class_system_environment.html
+share/doc/qore/library/html/class_system_environment.js
 share/doc/qore/library/html/class_temp_encoding_helper-members.html
 share/doc/qore/library/html/class_temp_encoding_helper.html
+share/doc/qore/library/html/class_temp_encoding_helper.js
 share/doc/qore/library/html/class_temp_string-members.html
 share/doc/qore/library/html/class_temp_string.html
+share/doc/qore/library/html/class_temp_string.js
 share/doc/qore/library/html/class_thread_cleanup_list-members.html
 share/doc/qore/library/html/class_thread_cleanup_list.html
+share/doc/qore/library/html/class_thread_cleanup_list.js
+share/doc/qore/library/html/class_transform-members.html
+share/doc/qore/library/html/class_transform.html
+share/doc/qore/library/html/class_transform.js
+share/doc/qore/library/html/class_transform__coll__graph.map
+share/doc/qore/library/html/class_transform__coll__graph.md5
+share/doc/qore/library/html/class_transform__coll__graph.png
+share/doc/qore/library/html/class_transform__inherit__graph.map
+share/doc/qore/library/html/class_transform__inherit__graph.md5
+share/doc/qore/library/html/class_transform__inherit__graph.png
+share/doc/qore/library/html/class_try_private_data_ref_holder-members.html
+share/doc/qore/library/html/class_try_private_data_ref_holder.html
+share/doc/qore/library/html/class_try_private_data_ref_holder__coll__graph.map
+share/doc/qore/library/html/class_try_private_data_ref_holder__coll__graph.md5
+share/doc/qore/library/html/class_try_private_data_ref_holder__coll__graph.png
+share/doc/qore/library/html/class_try_private_data_ref_holder__inherit__graph.map
+share/doc/qore/library/html/class_try_private_data_ref_holder__inherit__graph.md5
+share/doc/qore/library/html/class_try_private_data_ref_holder__inherit__graph.png
+share/doc/qore/library/html/class_typed_hash_decl-members.html
+share/doc/qore/library/html/class_typed_hash_decl.html
+share/doc/qore/library/html/class_typed_hash_decl.js
+share/doc/qore/library/html/class_typed_hash_decl_holder-members.html
+share/doc/qore/library/html/class_typed_hash_decl_holder.html
+share/doc/qore/library/html/class_typed_hash_decl_holder.js
 share/doc/qore/library/html/class_unique_value_qore_node-members.html
 share/doc/qore/library/html/class_unique_value_qore_node.html
+share/doc/qore/library/html/class_unique_value_qore_node.js
 share/doc/qore/library/html/class_unique_value_qore_node__coll__graph.map
 share/doc/qore/library/html/class_unique_value_qore_node__coll__graph.md5
 share/doc/qore/library/html/class_unique_value_qore_node__coll__graph.png
@@ -2128,6 +2416,7 @@ share/doc/qore/library/html/class_unique
 share/doc/qore/library/html/class_unique_value_qore_node__inherit__graph.png
 share/doc/qore/library/html/class_value_eval_ref_holder-members.html
 share/doc/qore/library/html/class_value_eval_ref_holder.html
+share/doc/qore/library/html/class_value_eval_ref_holder.js
 share/doc/qore/library/html/class_value_eval_ref_holder__coll__graph.map
 share/doc/qore/library/html/class_value_eval_ref_holder__coll__graph.md5
 share/doc/qore/library/html/class_value_eval_ref_holder__coll__graph.png
@@ -2136,6 +2425,7 @@ share/doc/qore/library/html/class_value_
 share/doc/qore/library/html/class_value_eval_ref_holder__inherit__graph.png
 share/doc/qore/library/html/class_value_holder-members.html
 share/doc/qore/library/html/class_value_holder.html
+share/doc/qore/library/html/class_value_holder.js
 share/doc/qore/library/html/class_value_holder__coll__graph.map
 share/doc/qore/library/html/class_value_holder__coll__graph.md5
 share/doc/qore/library/html/class_value_holder__coll__graph.png
@@ -2144,6 +2434,7 @@ share/doc/qore/library/html/class_value_
 share/doc/qore/library/html/class_value_holder__inherit__graph.png
 share/doc/qore/library/html/class_value_holder_base-members.html
 share/doc/qore/library/html/class_value_holder_base.html
+share/doc/qore/library/html/class_value_holder_base.js
 share/doc/qore/library/html/class_value_holder_base__coll__graph.map
 share/doc/qore/library/html/class_value_holder_base__coll__graph.md5
 share/doc/qore/library/html/class_value_holder_base__coll__graph.png
@@ -2152,11 +2443,13 @@ share/doc/qore/library/html/class_value_
 share/doc/qore/library/html/class_value_holder_base__inherit__graph.png
 share/doc/qore/library/html/class_value_list_iterator-members.html
 share/doc/qore/library/html/class_value_list_iterator.html
+share/doc/qore/library/html/class_value_list_iterator.js
 share/doc/qore/library/html/class_value_list_iterator__coll__graph.map
 share/doc/qore/library/html/class_value_list_iterator__coll__graph.md5
 share/doc/qore/library/html/class_value_list_iterator__coll__graph.png
 share/doc/qore/library/html/class_value_optional_ref_holder-members.html
 share/doc/qore/library/html/class_value_optional_ref_holder.html
+share/doc/qore/library/html/class_value_optional_ref_holder.js
 share/doc/qore/library/html/class_value_optional_ref_holder__coll__graph.map
 share/doc/qore/library/html/class_value_optional_ref_holder__coll__graph.md5
 share/doc/qore/library/html/class_value_optional_ref_holder__coll__graph.png
@@ -2178,6 +2471,7 @@ share/doc/qore/library/html/classqore__d
 share/doc/qore/library/html/classqore__dbi__method__list.html
 share/doc/qore/library/html/closed.png
 share/doc/qore/library/html/common_8h.html
+share/doc/qore/library/html/common_8h.js
 share/doc/qore/library/html/common_8h__dep__incl.map
 share/doc/qore/library/html/common_8h__dep__incl.md5
 share/doc/qore/library/html/common_8h__dep__incl.png
@@ -2188,15 +2482,18 @@ share/doc/qore/library/html/common_8h_so
 share/doc/qore/library/html/dbi_drivers.html
 share/doc/qore/library/html/deprecated.html
 share/doc/qore/library/html/dir_190ec3a3032c7cbd271ed7adfbeb62e8.html
+share/doc/qore/library/html/dir_190ec3a3032c7cbd271ed7adfbeb62e8.js
 share/doc/qore/library/html/dir_1b4d0bbac86efc901044fcf05321a308.html
 share/doc/qore/library/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
 share/doc/qore/library/html/dir_d44c64559bbebec7f509842c48db8b23.html
+share/doc/qore/library/html/dir_d44c64559bbebec7f509842c48db8b23.js
 share/doc/qore/library/html/doc.png
 share/doc/qore/library/html/doxygen.css
 share/doc/qore/library/html/doxygen.png
 share/doc/qore/library/html/dynsections.js
 share/doc/qore/library/html/embedding.html
 share/doc/qore/library/html/files.html
+share/doc/qore/library/html/files.js
 share/doc/qore/library/html/folderclosed.png
 share/doc/qore/library/html/folderopen.png
 share/doc/qore/library/html/functions.html
@@ -2204,9 +2501,11 @@ share/doc/qore/library/html/functions_0x
 share/doc/qore/library/html/functions_b.html
 share/doc/qore/library/html/functions_c.html
 share/doc/qore/library/html/functions_d.html
+share/doc/qore/library/html/functions_dup.js
 share/doc/qore/library/html/functions_e.html
 share/doc/qore/library/html/functions_f.html
 share/doc/qore/library/html/functions_func.html
+share/doc/qore/library/html/functions_func.js
 share/doc/qore/library/html/functions_func_0x7e.html
 share/doc/qore/library/html/functions_func_b.html
 share/doc/qore/library/html/functions_func_c.html
@@ -2254,12 +2553,14 @@ share/doc/qore/library/html/globals_b.ht
 share/doc/qore/library/html/globals_c.html
 share/doc/qore/library/html/globals_d.html
 share/doc/qore/library/html/globals_defs.html
+share/doc/qore/library/html/globals_defs.js
 share/doc/qore/library/html/globals_defs_d.html
 share/doc/qore/library/html/globals_defs_h.html
 share/doc/qore/library/html/globals_defs_n.html
 share/doc/qore/library/html/globals_defs_p.html
 share/doc/qore/library/html/globals_defs_q.html
 share/doc/qore/library/html/globals_defs_t.html
+share/doc/qore/library/html/globals_dup.js
 share/doc/qore/library/html/globals_enum.html
 share/doc/qore/library/html/globals_eval.html
 share/doc/qore/library/html/globals_f.html
@@ -2280,13 +2581,20 @@ share/doc/qore/library/html/graph_legend
 share/doc/qore/library/html/graph_legend.md5
 share/doc/qore/library/html/graph_legend.png
 share/doc/qore/library/html/group___qore_value.html
+share/doc/qore/library/html/group___qore_value.js
 share/doc/qore/library/html/group___string_concat_decoding.html
+share/doc/qore/library/html/group___string_concat_decoding.js
 share/doc/qore/library/html/group___string_concat_encoding.html
+share/doc/qore/library/html/group___string_concat_encoding.js
 share/doc/qore/library/html/group__number__format__flags.html
+share/doc/qore/library/html/group__number__format__flags.js
 share/doc/qore/library/html/group__q__register__foreign__thread__rv.html
+share/doc/qore/library/html/group__q__register__foreign__thread__rv.js
 share/doc/qore/library/html/hash__map__include_8h_source.html
 share/doc/qore/library/html/hierarchy.html
+share/doc/qore/library/html/hierarchy.js
 share/doc/qore/library/html/index.html
+share/doc/qore/library/html/index.js
 share/doc/qore/library/html/index.qhp
 share/doc/qore/library/html/inherit_graph_0.map
 share/doc/qore/library/html/inherit_graph_0.md5
@@ -2549,9 +2857,42 @@ share/doc/qore/library/html/inherit_grap
 share/doc/qore/library/html/inherit_graph_87.map
 share/doc/qore/library/html/inherit_graph_87.md5
 share/doc/qore/library/html/inherit_graph_87.png
+share/doc/qore/library/html/inherit_graph_88.map
+share/doc/qore/library/html/inherit_graph_88.md5
+share/doc/qore/library/html/inherit_graph_88.png
+share/doc/qore/library/html/inherit_graph_89.map
+share/doc/qore/library/html/inherit_graph_89.md5
+share/doc/qore/library/html/inherit_graph_89.png
 share/doc/qore/library/html/inherit_graph_9.map
 share/doc/qore/library/html/inherit_graph_9.md5
 share/doc/qore/library/html/inherit_graph_9.png
+share/doc/qore/library/html/inherit_graph_90.map
+share/doc/qore/library/html/inherit_graph_90.md5
+share/doc/qore/library/html/inherit_graph_90.png
+share/doc/qore/library/html/inherit_graph_91.map
+share/doc/qore/library/html/inherit_graph_91.md5
+share/doc/qore/library/html/inherit_graph_91.png
+share/doc/qore/library/html/inherit_graph_92.map
+share/doc/qore/library/html/inherit_graph_92.md5
+share/doc/qore/library/html/inherit_graph_92.png
+share/doc/qore/library/html/inherit_graph_93.map
+share/doc/qore/library/html/inherit_graph_93.md5
+share/doc/qore/library/html/inherit_graph_93.png
+share/doc/qore/library/html/inherit_graph_94.map
+share/doc/qore/library/html/inherit_graph_94.md5
+share/doc/qore/library/html/inherit_graph_94.png
+share/doc/qore/library/html/inherit_graph_95.map
+share/doc/qore/library/html/inherit_graph_95.md5
+share/doc/qore/library/html/inherit_graph_95.png
+share/doc/qore/library/html/inherit_graph_96.map
+share/doc/qore/library/html/inherit_graph_96.md5
+share/doc/qore/library/html/inherit_graph_96.png
+share/doc/qore/library/html/inherit_graph_97.map
+share/doc/qore/library/html/inherit_graph_97.md5
+share/doc/qore/library/html/inherit_graph_97.png
+share/doc/qore/library/html/inherit_graph_98.map
+share/doc/qore/library/html/inherit_graph_98.md5
+share/doc/qore/library/html/inherit_graph_98.png
 share/doc/qore/library/html/inherits.html
 share/doc/qore/library/html/jquery.js
 share/doc/qore/library/html/macros-i386_8h_source.html
@@ -2565,12 +2906,32 @@ share/doc/qore/library/html/macros_8h_so
 share/doc/qore/library/html/menu.js
 share/doc/qore/library/html/menudata.js
 share/doc/qore/library/html/modules.html
+share/doc/qore/library/html/modules.js
 share/doc/qore/library/html/namespacedetail.html
+share/doc/qore/library/html/namespacedetail.js
 share/doc/qore/library/html/namespaces.html
+share/doc/qore/library/html/namespaces.js
 share/doc/qore/library/html/nav_f.png
 share/doc/qore/library/html/nav_g.png
 share/doc/qore/library/html/nav_h.png
+share/doc/qore/library/html/navtree.css
+share/doc/qore/library/html/navtree.js
+share/doc/qore/library/html/navtreedata.js
+share/doc/qore/library/html/navtreeindex0.js
+share/doc/qore/library/html/navtreeindex1.js
+share/doc/qore/library/html/navtreeindex10.js
+share/doc/qore/library/html/navtreeindex11.js
+share/doc/qore/library/html/navtreeindex12.js
+share/doc/qore/library/html/navtreeindex2.js
+share/doc/qore/library/html/navtreeindex3.js
+share/doc/qore/library/html/navtreeindex4.js
+share/doc/qore/library/html/navtreeindex5.js
+share/doc/qore/library/html/navtreeindex6.js
+share/doc/qore/library/html/navtreeindex7.js
+share/doc/qore/library/html/navtreeindex8.js
+share/doc/qore/library/html/navtreeindex9.js
 share/doc/qore/library/html/node__types_8h.html
+share/doc/qore/library/html/node__types_8h.js
 share/doc/qore/library/html/node__types_8h__dep__incl.map
 share/doc/qore/library/html/node__types_8h__dep__incl.md5
 share/doc/qore/library/html/node__types_8h__dep__incl.png
@@ -2578,6 +2939,7 @@ share/doc/qore/library/html/node__types_
 share/doc/qore/library/html/open.png
 share/doc/qore/library/html/pages.html
 share/doc/qore/library/html/params_8h.html
+share/doc/qore/library/html/params_8h.js
 share/doc/qore/library/html/params_8h__dep__incl.map
 share/doc/qore/library/html/params_8h__dep__incl.md5
 share/doc/qore/library/html/params_8h__dep__incl.png
@@ -2588,6 +2950,7 @@ share/doc/qore/library/html/params_8h_so
 share/doc/qore/library/html/qore-version_8h_source.html
 share/doc/qore/library/html/qore__bitopts_8h_source.html
 share/doc/qore/library/html/qore__thread_8h.html
+share/doc/qore/library/html/qore__thread_8h.js
 share/doc/qore/library/html/qore__thread_8h__dep__incl.map
 share/doc/qore/library/html/qore__thread_8h__dep__incl.md5
 share/doc/qore/library/html/qore__thread_8h__dep__incl.png
@@ -2598,6 +2961,7 @@ share/doc/qore/library/html/qore__thread
 share/doc/qore/library/html/qore_cmake.html
 share/doc/qore/library/html/qore_data.html
 share/doc/qore/library/html/qore_modules.html
+share/doc/qore/library/html/resize.js
 share/doc/qore/library/html/search/all_0.html
 share/doc/qore/library/html/search/all_0.js
 share/doc/qore/library/html/search/all_1.html
@@ -2656,6 +3020,8 @@ share/doc/qore/library/html/search/class
 share/doc/qore/library/html/search/classes_1.js
 share/doc/qore/library/html/search/classes_10.html
 share/doc/qore/library/html/search/classes_10.js
+share/doc/qore/library/html/search/classes_11.html
+share/doc/qore/library/html/search/classes_11.js
 share/doc/qore/library/html/search/classes_2.html
 share/doc/qore/library/html/search/classes_2.js
 share/doc/qore/library/html/search/classes_3.html
@@ -2719,6 +3085,8 @@ share/doc/qore/library/html/search/files
 share/doc/qore/library/html/search/files_6.js
 share/doc/qore/library/html/search/files_7.html
 share/doc/qore/library/html/search/files_7.js
+share/doc/qore/library/html/search/files_8.html
+share/doc/qore/library/html/search/files_8.js
 share/doc/qore/library/html/search/functions_0.html
 share/doc/qore/library/html/search/functions_0.js
 share/doc/qore/library/html/search/functions_1.html
@@ -2811,6 +3179,10 @@ share/doc/qore/library/html/search/varia
 share/doc/qore/library/html/search/variables_0.js
 share/doc/qore/library/html/search/variables_1.html
 share/doc/qore/library/html/search/variables_1.js
+share/doc/qore/library/html/search/variables_10.html
+share/doc/qore/library/html/search/variables_10.js
+share/doc/qore/library/html/search/variables_11.html
+share/doc/qore/library/html/search/variables_11.js
 share/doc/qore/library/html/search/variables_2.html
 share/doc/qore/library/html/search/variables_2.js
 share/doc/qore/library/html/search/variables_3.html
@@ -2841,8 +3213,26 @@ share/doc/qore/library/html/search/varia
 share/doc/qore/library/html/search/variables_f.js
 share/doc/qore/library/html/slist__include_8h_source.html
 share/doc/qore/library/html/splitbar.png
+share/doc/qore/library/html/struct_qore_call_stack-members.html
+share/doc/qore/library/html/struct_qore_call_stack.html
+share/doc/qore/library/html/struct_qore_call_stack_element-members.html
+share/doc/qore/library/html/struct_qore_call_stack_element.html
+share/doc/qore/library/html/struct_qore_call_stack_element.js
+share/doc/qore/library/html/struct_qore_call_stack_element__coll__graph.map
+share/doc/qore/library/html/struct_qore_call_stack_element__coll__graph.md5
+share/doc/qore/library/html/struct_qore_call_stack_element__coll__graph.png
+share/doc/qore/library/html/struct_qore_call_stack_element__inherit__graph.map
+share/doc/qore/library/html/struct_qore_call_stack_element__inherit__graph.md5
+share/doc/qore/library/html/struct_qore_call_stack_element__inherit__graph.png
+share/doc/qore/library/html/struct_qore_source_location-members.html
+share/doc/qore/library/html/struct_qore_source_location.html
+share/doc/qore/library/html/struct_qore_source_location.js
+share/doc/qore/library/html/struct_qore_source_location__inherit__graph.map
+share/doc/qore/library/html/struct_qore_source_location__inherit__graph.md5
+share/doc/qore/library/html/struct_qore_source_location__inherit__graph.png
 share/doc/qore/library/html/struct_qore_value-members.html
 share/doc/qore/library/html/struct_qore_value.html
+share/doc/qore/library/html/struct_qore_value.js
 share/doc/qore/library/html/struct_qore_value__coll__graph.map
 share/doc/qore/library/html/struct_qore_value__coll__graph.md5
 share/doc/qore/library/html/struct_qore_value__coll__graph.png
@@ -2860,8 +3250,10 @@ share/doc/qore/library/html/structqore__
 share/doc/qore/library/html/structqore__mod__api__compat__s.html
 share/doc/qore/library/html/structqore__option__s-members.html
 share/doc/qore/library/html/structqore__option__s.html
+share/doc/qore/library/html/structqore__option__s.js
 share/doc/qore/library/html/structqore__tm-members.html
 share/doc/qore/library/html/structqore__tm.html
+share/doc/qore/library/html/structqore__tm.js
 share/doc/qore/library/html/structsimple__delete-members.html
 share/doc/qore/library/html/structsimple__delete.html
 share/doc/qore/library/html/structsimple__deref-members.html
@@ -2882,6 +3274,7 @@ share/doc/qore/library/html/unionqore__i
 share/doc/qore/library/html/unionqore__i8__u.html
 share/doc/qore/library/html/unionqore__value__u-members.html
 share/doc/qore/library/html/unionqore__value__u.html
+share/doc/qore/library/html/unionqore__value__u.js
 share/doc/qore/library/html/unionqore__value__u__coll__graph.map
 share/doc/qore/library/html/unionqore__value__u__coll__graph.md5
 share/doc/qore/library/html/unionqore__value__u__coll__graph.png
@@ -3017,6 +3410,14 @@ share/doc/qore/modules/BulkSqlUtil/html/
 share/doc/qore/modules/BulkSqlUtil/html/search/classes_11.js
 share/doc/qore/modules/BulkSqlUtil/html/search/classes_12.html
 share/doc/qore/modules/BulkSqlUtil/html/search/classes_12.js
+share/doc/qore/modules/BulkSqlUtil/html/search/classes_13.html
+share/doc/qore/modules/BulkSqlUtil/html/search/classes_13.js
+share/doc/qore/modules/BulkSqlUtil/html/search/classes_14.html
+share/doc/qore/modules/BulkSqlUtil/html/search/classes_14.js
+share/doc/qore/modules/BulkSqlUtil/html/search/classes_15.html
+share/doc/qore/modules/BulkSqlUtil/html/search/classes_15.js
+share/doc/qore/modules/BulkSqlUtil/html/search/classes_16.html
+share/doc/qore/modules/BulkSqlUtil/html/search/classes_16.js
 share/doc/qore/modules/BulkSqlUtil/html/search/classes_2.html
 share/doc/qore/modules/BulkSqlUtil/html/search/classes_2.js
 share/doc/qore/modules/BulkSqlUtil/html/search/classes_3.html
@@ -3153,6 +3554,8 @@ share/doc/qore/modules/BulkSqlUtil/html/
 share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_7.js
 share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_8.html
 share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_8.js
+share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_9.html
+share/doc/qore/modules/BulkSqlUtil/html/search/namespaces_9.js
 share/doc/qore/modules/BulkSqlUtil/html/search/nomatches.html
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_0.html
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_0.js
@@ -3162,6 +3565,8 @@ share/doc/qore/modules/BulkSqlUtil/html/
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_10.js
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_11.html
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_11.js
+share/doc/qore/modules/BulkSqlUtil/html/search/pages_12.html
+share/doc/qore/modules/BulkSqlUtil/html/search/pages_12.js
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_2.html
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_2.js
 share/doc/qore/modules/BulkSqlUtil/html/search/pages_3.html
@@ -3216,6 +3621,10 @@ share/doc/qore/modules/BulkSqlUtil/html/
 share/doc/qore/modules/BulkSqlUtil/html/search/variables_16.js
 share/doc/qore/modules/BulkSqlUtil/html/search/variables_17.html
 share/doc/qore/modules/BulkSqlUtil/html/search/variables_17.js
+share/doc/qore/modules/BulkSqlUtil/html/search/variables_18.html
+share/doc/qore/modules/BulkSqlUtil/html/search/variables_18.js
+share/doc/qore/modules/BulkSqlUtil/html/search/variables_19.html
+share/doc/qore/modules/BulkSqlUtil/html/search/variables_19.js
 share/doc/qore/modules/BulkSqlUtil/html/search/variables_2.html
 share/doc/qore/modules/BulkSqlUtil/html/search/variables_2.js
 share/doc/qore/modules/BulkSqlUtil/html/search/variables_3.html
@@ -3252,6 +3661,392 @@ share/doc/qore/modules/BulkSqlUtil/html/
 share/doc/qore/modules/BulkSqlUtil/html/tab_h.png
 share/doc/qore/modules/BulkSqlUtil/html/tab_s.png
 share/doc/qore/modules/BulkSqlUtil/html/tabs.css
+share/doc/qore/modules/ConnectionProvider/html/_connection_provider_8qm_8dox_8h_source.html
+share/doc/qore/modules/ConnectionProvider/html/annotated.html
+share/doc/qore/modules/ConnectionProvider/html/annotated_dup.js
+share/doc/qore/modules/ConnectionProvider/html/bc_s.png
+share/doc/qore/modules/ConnectionProvider/html/bdwn.png
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_abstract_connection-members.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_abstract_connection.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_abstract_connection.js
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_abstract_connection__inherit__graph.map
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_abstract_connection__inherit__graph.md5
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_abstract_connection__inherit__graph.png
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_filesystem_connection-members.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_filesystem_connection.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_filesystem_connection.js
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_filesystem_connection__inherit__graph.map
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_filesystem_connection__inherit__graph.md5
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_filesystem_connection__inherit__graph.png
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_ftp_connection-members.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_ftp_connection.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_ftp_connection.js
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_ftp_connection__inherit__graph.map
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_ftp_connection__inherit__graph.md5
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_ftp_connection__inherit__graph.png
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_based_connection-members.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_based_connection.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_based_connection__inherit__graph.map
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_based_connection__inherit__graph.md5
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_based_connection__inherit__graph.png
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_connection-members.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_connection.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_connection.js
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_connection__inherit__graph.map
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_connection__inherit__graph.md5
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_http_connection__inherit__graph.png
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_invalid_connection-members.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_invalid_connection.html
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_invalid_connection.js
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_invalid_connection__inherit__graph.map
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_invalid_connection__inherit__graph.md5
+share/doc/qore/modules/ConnectionProvider/html/class_connection_provider_1_1_invalid_connection__inherit__graph.png
+share/doc/qore/modules/ConnectionProvider/html/classes.html
+share/doc/qore/modules/ConnectionProvider/html/closed.png
+share/doc/qore/modules/ConnectionProvider/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/ConnectionProvider/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/ConnectionProvider/html/doc.png
+share/doc/qore/modules/ConnectionProvider/html/doxygen.css
+share/doc/qore/modules/ConnectionProvider/html/doxygen.png
+share/doc/qore/modules/ConnectionProvider/html/dynsections.js
+share/doc/qore/modules/ConnectionProvider/html/folderclosed.png
+share/doc/qore/modules/ConnectionProvider/html/folderopen.png
+share/doc/qore/modules/ConnectionProvider/html/functions.html
+share/doc/qore/modules/ConnectionProvider/html/functions_func.html
+share/doc/qore/modules/ConnectionProvider/html/functions_vars.html
+share/doc/qore/modules/ConnectionProvider/html/graph_legend.html
+share/doc/qore/modules/ConnectionProvider/html/graph_legend.md5
+share/doc/qore/modules/ConnectionProvider/html/graph_legend.png
+share/doc/qore/modules/ConnectionProvider/html/hierarchy.html
+share/doc/qore/modules/ConnectionProvider/html/hierarchy.js
+share/doc/qore/modules/ConnectionProvider/html/index.html
+share/doc/qore/modules/ConnectionProvider/html/index.qhp
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_0.map
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_0.md5
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_0.png
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_1.map
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_1.md5
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_1.png
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_2.map
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_2.md5
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_2.png
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_3.map
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_3.md5
+share/doc/qore/modules/ConnectionProvider/html/inherit_graph_3.png
+share/doc/qore/modules/ConnectionProvider/html/inherits.html
+share/doc/qore/modules/ConnectionProvider/html/jquery.js
+share/doc/qore/modules/ConnectionProvider/html/menu.js
+share/doc/qore/modules/ConnectionProvider/html/menudata.js
+share/doc/qore/modules/ConnectionProvider/html/namespace_connection_provider.html
+share/doc/qore/modules/ConnectionProvider/html/namespace_connection_provider.js
+share/doc/qore/modules/ConnectionProvider/html/namespacemembers.html
+share/doc/qore/modules/ConnectionProvider/html/namespacemembers_func.html
+share/doc/qore/modules/ConnectionProvider/html/namespaces.html
+share/doc/qore/modules/ConnectionProvider/html/namespaces.js
+share/doc/qore/modules/ConnectionProvider/html/nav_f.png
+share/doc/qore/modules/ConnectionProvider/html/nav_g.png
+share/doc/qore/modules/ConnectionProvider/html/nav_h.png
+share/doc/qore/modules/ConnectionProvider/html/navtree.css
+share/doc/qore/modules/ConnectionProvider/html/navtree.js
+share/doc/qore/modules/ConnectionProvider/html/navtreedata.js
+share/doc/qore/modules/ConnectionProvider/html/navtreeindex0.js
+share/doc/qore/modules/ConnectionProvider/html/open.png
+share/doc/qore/modules/ConnectionProvider/html/pages.html
+share/doc/qore/modules/ConnectionProvider/html/resize.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_0.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_0.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_1.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_1.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_10.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_10.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_11.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_11.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_12.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_12.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_13.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_13.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_14.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_14.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_15.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_15.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_16.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_16.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_17.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_17.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_18.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_18.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_19.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_19.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_1a.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_1a.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_2.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_2.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_3.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_3.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_4.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_4.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_5.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_5.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_6.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_6.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_7.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_7.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_8.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_8.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_9.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_9.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_a.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_a.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_b.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_b.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_c.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_c.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_d.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_d.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_e.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_e.js
+share/doc/qore/modules/ConnectionProvider/html/search/all_f.html
+share/doc/qore/modules/ConnectionProvider/html/search/all_f.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_0.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_0.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_1.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_1.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_10.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_10.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_11.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_11.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_2.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_2.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_3.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_3.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_4.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_4.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_5.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_5.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_6.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_6.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_7.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_7.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_8.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_8.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_9.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_9.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_a.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_a.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_b.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_b.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_c.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_c.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_d.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_d.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_e.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_e.js
+share/doc/qore/modules/ConnectionProvider/html/search/classes_f.html
+share/doc/qore/modules/ConnectionProvider/html/search/classes_f.js
+share/doc/qore/modules/ConnectionProvider/html/search/close.png
+share/doc/qore/modules/ConnectionProvider/html/search/functions_0.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_0.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_1.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_1.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_10.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_10.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_11.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_11.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_12.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_12.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_13.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_13.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_14.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_14.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_15.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_15.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_16.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_16.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_17.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_17.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_18.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_18.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_2.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_2.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_3.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_3.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_4.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_4.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_5.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_5.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_6.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_6.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_7.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_7.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_8.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_8.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_9.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_9.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_a.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_a.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_b.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_b.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_c.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_c.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_d.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_d.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_e.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_e.js
+share/doc/qore/modules/ConnectionProvider/html/search/functions_f.html
+share/doc/qore/modules/ConnectionProvider/html/search/functions_f.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_0.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_0.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_1.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_1.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_10.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_10.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_11.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_11.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_2.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_2.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_3.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_3.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_4.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_4.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_5.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_5.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_6.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_6.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_7.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_7.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_8.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_8.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_9.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_9.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_a.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_a.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_b.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_b.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_c.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_c.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_d.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_d.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_e.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_e.js
+share/doc/qore/modules/ConnectionProvider/html/search/groups_f.html
+share/doc/qore/modules/ConnectionProvider/html/search/groups_f.js
+share/doc/qore/modules/ConnectionProvider/html/search/mag_sel.png
+share/doc/qore/modules/ConnectionProvider/html/search/namespaces_0.html
+share/doc/qore/modules/ConnectionProvider/html/search/namespaces_0.js
+share/doc/qore/modules/ConnectionProvider/html/search/namespaces_1.html
+share/doc/qore/modules/ConnectionProvider/html/search/namespaces_1.js
+share/doc/qore/modules/ConnectionProvider/html/search/namespaces_2.html
+share/doc/qore/modules/ConnectionProvider/html/search/namespaces_2.js
+share/doc/qore/modules/ConnectionProvider/html/search/nomatches.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_0.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_0.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_1.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_1.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_10.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_10.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_11.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_11.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_12.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_12.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_2.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_2.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_3.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_3.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_4.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_4.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_5.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_5.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_6.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_6.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_7.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_7.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_8.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_8.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_9.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_9.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_a.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_a.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_b.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_b.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_c.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_c.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_d.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_d.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_e.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_e.js
+share/doc/qore/modules/ConnectionProvider/html/search/pages_f.html
+share/doc/qore/modules/ConnectionProvider/html/search/pages_f.js
+share/doc/qore/modules/ConnectionProvider/html/search/search.css
+share/doc/qore/modules/ConnectionProvider/html/search/search.js
+share/doc/qore/modules/ConnectionProvider/html/search/search_l.png
+share/doc/qore/modules/ConnectionProvider/html/search/search_m.png
+share/doc/qore/modules/ConnectionProvider/html/search/search_r.png
+share/doc/qore/modules/ConnectionProvider/html/search/searchdata.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_0.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_0.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_1.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_1.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_10.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_10.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_11.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_11.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_12.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_12.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_13.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_13.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_14.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_14.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_15.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_15.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_16.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_16.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_17.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_17.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_2.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_2.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_3.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_3.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_4.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_4.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_5.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_5.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_6.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_6.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_7.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_7.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_8.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_8.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_9.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_9.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_a.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_a.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_b.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_b.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_c.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_c.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_d.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_d.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_e.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_e.js
+share/doc/qore/modules/ConnectionProvider/html/search/variables_f.html
+share/doc/qore/modules/ConnectionProvider/html/search/variables_f.js
+share/doc/qore/modules/ConnectionProvider/html/splitbar.png
+share/doc/qore/modules/ConnectionProvider/html/struct_connection_provider_1_1_config_info-members.html
+share/doc/qore/modules/ConnectionProvider/html/struct_connection_provider_1_1_config_info.html
+share/doc/qore/modules/ConnectionProvider/html/struct_connection_provider_1_1_config_info.js
+share/doc/qore/modules/ConnectionProvider/html/struct_connection_provider_1_1_connection_info-members.html
+share/doc/qore/modules/ConnectionProvider/html/struct_connection_provider_1_1_connection_info.html
+share/doc/qore/modules/ConnectionProvider/html/struct_connection_provider_1_1_connection_info.js
+share/doc/qore/modules/ConnectionProvider/html/struct_connection_provider_1_1_ping_info-members.html
+share/doc/qore/modules/ConnectionProvider/html/struct_connection_provider_1_1_ping_info.html
+share/doc/qore/modules/ConnectionProvider/html/struct_connection_provider_1_1_ping_info.js
+share/doc/qore/modules/ConnectionProvider/html/sync_off.png
+share/doc/qore/modules/ConnectionProvider/html/sync_on.png
+share/doc/qore/modules/ConnectionProvider/html/tab_a.png
+share/doc/qore/modules/ConnectionProvider/html/tab_b.png
+share/doc/qore/modules/ConnectionProvider/html/tab_h.png
+share/doc/qore/modules/ConnectionProvider/html/tab_s.png
+share/doc/qore/modules/ConnectionProvider/html/tabs.css
 share/doc/qore/modules/CsvUtil/html/_csv_util_8qm_8dox_8h_source.html
 share/doc/qore/modules/CsvUtil/html/annotated.html
 share/doc/qore/modules/CsvUtil/html/annotated_dup.js
@@ -3287,12 +4082,24 @@ share/doc/qore/modules/CsvUtil/html/clas
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_file_writer__inherit__graph.map
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_file_writer__inherit__graph.md5
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_file_writer__inherit__graph.png
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator-members.html
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator.html
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator.js
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator__inherit__graph.map
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator__inherit__graph.md5
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_iterator__inherit__graph.png
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer-members.html
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer.html
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer.js
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer__inherit__graph.map
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer__inherit__graph.md5
 share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_string_writer__inherit__graph.png
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer-members.html
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer.html
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer.js
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer__inherit__graph.map
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer__inherit__graph.md5
+share/doc/qore/modules/CsvUtil/html/class_csv_util_1_1_csv_writer__inherit__graph.png
 share/doc/qore/modules/CsvUtil/html/classes.html
 share/doc/qore/modules/CsvUtil/html/closed.png
 share/doc/qore/modules/CsvUtil/html/dir_13add0083e006ac756009d5942a24d28.html
@@ -3403,6 +4210,14 @@ share/doc/qore/modules/CsvUtil/html/sear
 share/doc/qore/modules/CsvUtil/html/search/classes_11.js
 share/doc/qore/modules/CsvUtil/html/search/classes_12.html
 share/doc/qore/modules/CsvUtil/html/search/classes_12.js
+share/doc/qore/modules/CsvUtil/html/search/classes_13.html
+share/doc/qore/modules/CsvUtil/html/search/classes_13.js
+share/doc/qore/modules/CsvUtil/html/search/classes_14.html
+share/doc/qore/modules/CsvUtil/html/search/classes_14.js
+share/doc/qore/modules/CsvUtil/html/search/classes_15.html
+share/doc/qore/modules/CsvUtil/html/search/classes_15.js
+share/doc/qore/modules/CsvUtil/html/search/classes_16.html
+share/doc/qore/modules/CsvUtil/html/search/classes_16.js
 share/doc/qore/modules/CsvUtil/html/search/classes_2.html
 share/doc/qore/modules/CsvUtil/html/search/classes_2.js
 share/doc/qore/modules/CsvUtil/html/search/classes_3.html
@@ -3454,6 +4269,8 @@ share/doc/qore/modules/CsvUtil/html/sear
 share/doc/qore/modules/CsvUtil/html/search/functions_17.js
 share/doc/qore/modules/CsvUtil/html/search/functions_18.html
 share/doc/qore/modules/CsvUtil/html/search/functions_18.js
+share/doc/qore/modules/CsvUtil/html/search/functions_19.html
+share/doc/qore/modules/CsvUtil/html/search/functions_19.js
 share/doc/qore/modules/CsvUtil/html/search/functions_2.html
 share/doc/qore/modules/CsvUtil/html/search/functions_2.js
 share/doc/qore/modules/CsvUtil/html/search/functions_3.html
@@ -3537,8 +4354,6 @@ share/doc/qore/modules/CsvUtil/html/sear
 share/doc/qore/modules/CsvUtil/html/search/namespaces_7.js
 share/doc/qore/modules/CsvUtil/html/search/namespaces_8.html
 share/doc/qore/modules/CsvUtil/html/search/namespaces_8.js
-share/doc/qore/modules/CsvUtil/html/search/namespaces_9.html
-share/doc/qore/modules/CsvUtil/html/search/namespaces_9.js
 share/doc/qore/modules/CsvUtil/html/search/nomatches.html
 share/doc/qore/modules/CsvUtil/html/search/pages_0.html
 share/doc/qore/modules/CsvUtil/html/search/pages_0.js
@@ -3548,6 +4363,8 @@ share/doc/qore/modules/CsvUtil/html/sear
 share/doc/qore/modules/CsvUtil/html/search/pages_10.js
 share/doc/qore/modules/CsvUtil/html/search/pages_11.html
 share/doc/qore/modules/CsvUtil/html/search/pages_11.js
+share/doc/qore/modules/CsvUtil/html/search/pages_12.html
+share/doc/qore/modules/CsvUtil/html/search/pages_12.js
 share/doc/qore/modules/CsvUtil/html/search/pages_2.html
 share/doc/qore/modules/CsvUtil/html/search/pages_2.js
 share/doc/qore/modules/CsvUtil/html/search/pages_3.html
@@ -3602,6 +4419,10 @@ share/doc/qore/modules/CsvUtil/html/sear
 share/doc/qore/modules/CsvUtil/html/search/variables_16.js
 share/doc/qore/modules/CsvUtil/html/search/variables_17.html
 share/doc/qore/modules/CsvUtil/html/search/variables_17.js
+share/doc/qore/modules/CsvUtil/html/search/variables_18.html
+share/doc/qore/modules/CsvUtil/html/search/variables_18.js
+share/doc/qore/modules/CsvUtil/html/search/variables_19.html
+share/doc/qore/modules/CsvUtil/html/search/variables_19.js
 share/doc/qore/modules/CsvUtil/html/search/variables_2.html
 share/doc/qore/modules/CsvUtil/html/search/variables_2.js
 share/doc/qore/modules/CsvUtil/html/search/variables_3.html
@@ -3638,6 +4459,1762 @@ share/doc/qore/modules/CsvUtil/html/tab_
 share/doc/qore/modules/CsvUtil/html/tab_h.png
 share/doc/qore/modules/CsvUtil/html/tab_s.png
 share/doc/qore/modules/CsvUtil/html/tabs.css
+share/doc/qore/modules/DatasourceProvider/html/_datasource_provider_8qm_8dox_8h_source.html
+share/doc/qore/modules/DatasourceProvider/html/bc_s.png
+share/doc/qore/modules/DatasourceProvider/html/bdwn.png
+share/doc/qore/modules/DatasourceProvider/html/closed.png
+share/doc/qore/modules/DatasourceProvider/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/DatasourceProvider/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/DatasourceProvider/html/doc.png
+share/doc/qore/modules/DatasourceProvider/html/doxygen.css
+share/doc/qore/modules/DatasourceProvider/html/doxygen.png
+share/doc/qore/modules/DatasourceProvider/html/dynsections.js
+share/doc/qore/modules/DatasourceProvider/html/folderclosed.png
+share/doc/qore/modules/DatasourceProvider/html/folderopen.png
+share/doc/qore/modules/DatasourceProvider/html/graph_legend.html
+share/doc/qore/modules/DatasourceProvider/html/graph_legend.md5
+share/doc/qore/modules/DatasourceProvider/html/graph_legend.png
+share/doc/qore/modules/DatasourceProvider/html/index.html
+share/doc/qore/modules/DatasourceProvider/html/index.qhp
+share/doc/qore/modules/DatasourceProvider/html/jquery.js
+share/doc/qore/modules/DatasourceProvider/html/menu.js
+share/doc/qore/modules/DatasourceProvider/html/menudata.js
+share/doc/qore/modules/DatasourceProvider/html/namespace_datasource_provider.html
+share/doc/qore/modules/DatasourceProvider/html/namespacemembers.html
+share/doc/qore/modules/DatasourceProvider/html/namespacemembers_func.html
+share/doc/qore/modules/DatasourceProvider/html/namespaces.html
+share/doc/qore/modules/DatasourceProvider/html/namespaces.js
+share/doc/qore/modules/DatasourceProvider/html/nav_f.png
+share/doc/qore/modules/DatasourceProvider/html/nav_g.png
+share/doc/qore/modules/DatasourceProvider/html/nav_h.png
+share/doc/qore/modules/DatasourceProvider/html/navtree.css
+share/doc/qore/modules/DatasourceProvider/html/navtree.js
+share/doc/qore/modules/DatasourceProvider/html/navtreedata.js
+share/doc/qore/modules/DatasourceProvider/html/navtreeindex0.js
+share/doc/qore/modules/DatasourceProvider/html/open.png
+share/doc/qore/modules/DatasourceProvider/html/pages.html
+share/doc/qore/modules/DatasourceProvider/html/resize.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_0.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_0.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_1.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_1.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_10.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_10.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_11.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_11.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_12.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_12.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_13.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_13.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_14.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_14.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_15.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_15.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_16.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_16.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_17.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_17.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_18.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_18.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_19.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_19.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_1a.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_1a.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_2.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_2.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_3.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_3.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_4.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_4.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_5.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_5.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_6.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_6.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_7.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_7.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_8.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_8.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_9.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_9.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_a.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_a.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_b.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_b.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_c.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_c.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_d.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_d.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_e.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_e.js
+share/doc/qore/modules/DatasourceProvider/html/search/all_f.html
+share/doc/qore/modules/DatasourceProvider/html/search/all_f.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_0.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_0.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_1.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_1.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_10.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_10.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_11.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_11.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_12.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_12.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_13.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_13.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_14.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_14.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_15.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_15.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_16.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_16.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_2.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_2.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_3.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_3.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_4.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_4.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_5.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_5.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_6.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_6.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_7.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_7.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_8.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_8.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_9.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_9.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_a.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_a.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_b.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_b.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_c.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_c.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_d.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_d.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_e.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_e.js
+share/doc/qore/modules/DatasourceProvider/html/search/classes_f.html
+share/doc/qore/modules/DatasourceProvider/html/search/classes_f.js
+share/doc/qore/modules/DatasourceProvider/html/search/close.png
+share/doc/qore/modules/DatasourceProvider/html/search/functions_0.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_0.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_1.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_1.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_10.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_10.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_11.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_11.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_12.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_12.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_13.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_13.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_14.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_14.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_15.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_15.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_16.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_16.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_17.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_17.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_18.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_18.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_19.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_19.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_2.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_2.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_3.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_3.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_4.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_4.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_5.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_5.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_6.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_6.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_7.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_7.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_8.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_8.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_9.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_9.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_a.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_a.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_b.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_b.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_c.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_c.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_d.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_d.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_e.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_e.js
+share/doc/qore/modules/DatasourceProvider/html/search/functions_f.html
+share/doc/qore/modules/DatasourceProvider/html/search/functions_f.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_0.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_0.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_1.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_1.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_10.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_10.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_11.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_11.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_2.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_2.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_3.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_3.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_4.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_4.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_5.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_5.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_6.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_6.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_7.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_7.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_8.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_8.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_9.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_9.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_a.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_a.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_b.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_b.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_c.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_c.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_d.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_d.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_e.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_e.js
+share/doc/qore/modules/DatasourceProvider/html/search/groups_f.html
+share/doc/qore/modules/DatasourceProvider/html/search/groups_f.js
+share/doc/qore/modules/DatasourceProvider/html/search/mag_sel.png
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_0.html
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_0.js
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_1.html
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_1.js
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_2.html
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_2.js
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_3.html
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_3.js
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_4.html
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_4.js
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_5.html
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_5.js
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_6.html
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_6.js
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_7.html
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_7.js
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_8.html
+share/doc/qore/modules/DatasourceProvider/html/search/namespaces_8.js
+share/doc/qore/modules/DatasourceProvider/html/search/nomatches.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_0.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_0.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_1.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_1.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_10.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_10.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_11.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_11.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_12.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_12.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_2.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_2.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_3.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_3.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_4.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_4.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_5.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_5.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_6.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_6.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_7.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_7.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_8.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_8.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_9.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_9.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_a.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_a.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_b.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_b.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_c.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_c.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_d.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_d.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_e.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_e.js
+share/doc/qore/modules/DatasourceProvider/html/search/pages_f.html
+share/doc/qore/modules/DatasourceProvider/html/search/pages_f.js
+share/doc/qore/modules/DatasourceProvider/html/search/search.css
+share/doc/qore/modules/DatasourceProvider/html/search/search.js
+share/doc/qore/modules/DatasourceProvider/html/search/search_l.png
+share/doc/qore/modules/DatasourceProvider/html/search/search_m.png
+share/doc/qore/modules/DatasourceProvider/html/search/search_r.png
+share/doc/qore/modules/DatasourceProvider/html/search/searchdata.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_0.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_0.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_1.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_1.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_10.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_10.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_11.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_11.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_12.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_12.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_13.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_13.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_14.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_14.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_15.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_15.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_16.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_16.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_17.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_17.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_18.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_18.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_19.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_19.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_2.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_2.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_3.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_3.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_4.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_4.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_5.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_5.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_6.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_6.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_7.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_7.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_8.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_8.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_9.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_9.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_a.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_a.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_b.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_b.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_c.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_c.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_d.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_d.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_e.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_e.js
+share/doc/qore/modules/DatasourceProvider/html/search/variables_f.html
+share/doc/qore/modules/DatasourceProvider/html/search/variables_f.js
+share/doc/qore/modules/DatasourceProvider/html/splitbar.png
+share/doc/qore/modules/DatasourceProvider/html/sync_off.png
+share/doc/qore/modules/DatasourceProvider/html/sync_on.png
+share/doc/qore/modules/DatasourceProvider/html/tab_a.png
+share/doc/qore/modules/DatasourceProvider/html/tab_b.png
+share/doc/qore/modules/DatasourceProvider/html/tab_h.png
+share/doc/qore/modules/DatasourceProvider/html/tab_s.png
+share/doc/qore/modules/DatasourceProvider/html/tabs.css
+share/doc/qore/modules/DebugCmdLine/html/_debug_cmd_line_8qm_8dox_8h_source.html
+share/doc/qore/modules/DebugCmdLine/html/annotated.html
+share/doc/qore/modules/DebugCmdLine/html/annotated_dup.js
+share/doc/qore/modules/DebugCmdLine/html/bc_s.png
+share/doc/qore/modules/DebugCmdLine/html/bdwn.png
+share/doc/qore/modules/DebugCmdLine/html/class_debug_cmd_line_1_1_debug_command_line-members.html
+share/doc/qore/modules/DebugCmdLine/html/class_debug_cmd_line_1_1_debug_command_line.html
+share/doc/qore/modules/DebugCmdLine/html/class_debug_cmd_line_1_1_debug_logger-members.html
+share/doc/qore/modules/DebugCmdLine/html/class_debug_cmd_line_1_1_debug_logger.html
+share/doc/qore/modules/DebugCmdLine/html/class_debug_cmd_line_1_1_debug_logger.js
+share/doc/qore/modules/DebugCmdLine/html/class_debug_cmd_line_1_1_wrapper_get_opt-members.html
+share/doc/qore/modules/DebugCmdLine/html/class_debug_cmd_line_1_1_wrapper_get_opt.html
+share/doc/qore/modules/DebugCmdLine/html/class_debug_cmd_line_1_1_wrapper_get_opt.js
+share/doc/qore/modules/DebugCmdLine/html/classes.html
+share/doc/qore/modules/DebugCmdLine/html/closed.png
+share/doc/qore/modules/DebugCmdLine/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/DebugCmdLine/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/DebugCmdLine/html/doc.png
+share/doc/qore/modules/DebugCmdLine/html/doxygen.css
+share/doc/qore/modules/DebugCmdLine/html/doxygen.png
+share/doc/qore/modules/DebugCmdLine/html/dynsections.js
+share/doc/qore/modules/DebugCmdLine/html/folderclosed.png
+share/doc/qore/modules/DebugCmdLine/html/folderopen.png
+share/doc/qore/modules/DebugCmdLine/html/functions.html
+share/doc/qore/modules/DebugCmdLine/html/functions_func.html
+share/doc/qore/modules/DebugCmdLine/html/graph_legend.html
+share/doc/qore/modules/DebugCmdLine/html/graph_legend.md5
+share/doc/qore/modules/DebugCmdLine/html/graph_legend.png
+share/doc/qore/modules/DebugCmdLine/html/index.html
+share/doc/qore/modules/DebugCmdLine/html/index.qhp
+share/doc/qore/modules/DebugCmdLine/html/jquery.js
+share/doc/qore/modules/DebugCmdLine/html/menu.js
+share/doc/qore/modules/DebugCmdLine/html/menudata.js
+share/doc/qore/modules/DebugCmdLine/html/namespace_debug_cmd_line.html
+share/doc/qore/modules/DebugCmdLine/html/namespace_debug_cmd_line.js
+share/doc/qore/modules/DebugCmdLine/html/namespaces.html
+share/doc/qore/modules/DebugCmdLine/html/namespaces.js
+share/doc/qore/modules/DebugCmdLine/html/nav_f.png
+share/doc/qore/modules/DebugCmdLine/html/nav_g.png
+share/doc/qore/modules/DebugCmdLine/html/nav_h.png
+share/doc/qore/modules/DebugCmdLine/html/navtree.css
+share/doc/qore/modules/DebugCmdLine/html/navtree.js
+share/doc/qore/modules/DebugCmdLine/html/navtreedata.js
+share/doc/qore/modules/DebugCmdLine/html/navtreeindex0.js
+share/doc/qore/modules/DebugCmdLine/html/open.png
+share/doc/qore/modules/DebugCmdLine/html/pages.html
+share/doc/qore/modules/DebugCmdLine/html/resize.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_0.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_0.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_1.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_1.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_10.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_10.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_11.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_11.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_12.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_12.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_13.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_13.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_14.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_14.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_15.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_15.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_16.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_16.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_17.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_17.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_18.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_18.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_19.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_19.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_1a.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_1a.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_2.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_2.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_3.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_3.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_4.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_4.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_5.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_5.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_6.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_6.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_7.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_7.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_8.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_8.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_9.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_9.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_a.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_a.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_b.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_b.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_c.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_c.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_d.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_d.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_e.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_e.js
+share/doc/qore/modules/DebugCmdLine/html/search/all_f.html
+share/doc/qore/modules/DebugCmdLine/html/search/all_f.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_0.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_0.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_1.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_1.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_10.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_10.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_11.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_11.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_12.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_12.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_13.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_13.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_14.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_14.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_15.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_15.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_16.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_16.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_2.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_2.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_3.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_3.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_4.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_4.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_5.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_5.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_6.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_6.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_7.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_7.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_8.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_8.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_9.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_9.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_a.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_a.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_b.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_b.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_c.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_c.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_d.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_d.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_e.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_e.js
+share/doc/qore/modules/DebugCmdLine/html/search/classes_f.html
+share/doc/qore/modules/DebugCmdLine/html/search/classes_f.js
+share/doc/qore/modules/DebugCmdLine/html/search/close.png
+share/doc/qore/modules/DebugCmdLine/html/search/functions_0.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_0.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_1.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_1.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_10.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_10.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_11.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_11.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_12.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_12.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_13.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_13.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_14.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_14.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_15.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_15.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_16.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_16.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_17.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_17.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_18.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_18.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_19.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_19.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_2.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_2.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_3.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_3.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_4.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_4.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_5.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_5.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_6.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_6.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_7.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_7.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_8.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_8.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_9.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_9.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_a.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_a.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_b.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_b.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_c.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_c.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_d.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_d.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_e.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_e.js
+share/doc/qore/modules/DebugCmdLine/html/search/functions_f.html
+share/doc/qore/modules/DebugCmdLine/html/search/functions_f.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_0.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_0.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_1.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_1.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_10.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_10.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_11.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_11.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_2.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_2.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_3.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_3.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_4.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_4.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_5.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_5.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_6.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_6.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_7.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_7.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_8.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_8.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_9.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_9.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_a.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_a.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_b.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_b.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_c.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_c.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_d.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_d.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_e.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_e.js
+share/doc/qore/modules/DebugCmdLine/html/search/groups_f.html
+share/doc/qore/modules/DebugCmdLine/html/search/groups_f.js
+share/doc/qore/modules/DebugCmdLine/html/search/mag_sel.png
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_0.html
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_0.js
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_1.html
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_1.js
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_2.html
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_2.js
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_3.html
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_3.js
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_4.html
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_4.js
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_5.html
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_5.js
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_6.html
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_6.js
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_7.html
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_7.js
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_8.html
+share/doc/qore/modules/DebugCmdLine/html/search/namespaces_8.js
+share/doc/qore/modules/DebugCmdLine/html/search/nomatches.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_0.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_0.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_1.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_1.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_10.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_10.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_11.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_11.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_12.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_12.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_2.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_2.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_3.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_3.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_4.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_4.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_5.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_5.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_6.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_6.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_7.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_7.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_8.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_8.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_9.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_9.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_a.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_a.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_b.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_b.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_c.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_c.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_d.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_d.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_e.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_e.js
+share/doc/qore/modules/DebugCmdLine/html/search/pages_f.html
+share/doc/qore/modules/DebugCmdLine/html/search/pages_f.js
+share/doc/qore/modules/DebugCmdLine/html/search/search.css
+share/doc/qore/modules/DebugCmdLine/html/search/search.js
+share/doc/qore/modules/DebugCmdLine/html/search/search_l.png
+share/doc/qore/modules/DebugCmdLine/html/search/search_m.png
+share/doc/qore/modules/DebugCmdLine/html/search/search_r.png
+share/doc/qore/modules/DebugCmdLine/html/search/searchdata.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_0.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_0.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_1.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_1.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_10.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_10.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_11.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_11.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_12.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_12.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_13.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_13.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_14.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_14.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_15.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_15.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_16.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_16.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_17.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_17.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_18.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_18.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_19.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_19.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_2.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_2.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_3.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_3.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_4.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_4.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_5.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_5.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_6.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_6.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_7.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_7.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_8.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_8.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_9.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_9.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_a.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_a.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_b.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_b.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_c.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_c.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_d.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_d.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_e.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_e.js
+share/doc/qore/modules/DebugCmdLine/html/search/variables_f.html
+share/doc/qore/modules/DebugCmdLine/html/search/variables_f.js
+share/doc/qore/modules/DebugCmdLine/html/splitbar.png
+share/doc/qore/modules/DebugCmdLine/html/sync_off.png
+share/doc/qore/modules/DebugCmdLine/html/sync_on.png
+share/doc/qore/modules/DebugCmdLine/html/tab_a.png
+share/doc/qore/modules/DebugCmdLine/html/tab_b.png
+share/doc/qore/modules/DebugCmdLine/html/tab_h.png
+share/doc/qore/modules/DebugCmdLine/html/tab_s.png
+share/doc/qore/modules/DebugCmdLine/html/tabs.css
+share/doc/qore/modules/DebugHandler/html/_debug_handler_8qm_8dox_8h_source.html
+share/doc/qore/modules/DebugHandler/html/annotated.html
+share/doc/qore/modules/DebugHandler/html/annotated_dup.js
+share/doc/qore/modules/DebugHandler/html/bc_s.png
+share/doc/qore/modules/DebugHandler/html/bdwn.png
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_connection-members.html
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_connection.html
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_connection.js
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_connection__inherit__graph.map
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_connection__inherit__graph.md5
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_connection__inherit__graph.png
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_handler-members.html
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_handler.html
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_handler.js
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_handler__inherit__graph.map
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_handler__inherit__graph.md5
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_handler__inherit__graph.png
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_program_control-members.html
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_program_control.html
+share/doc/qore/modules/DebugHandler/html/class_debug_handler_1_1_web_socket_debug_program_control.js
+share/doc/qore/modules/DebugHandler/html/classes.html
+share/doc/qore/modules/DebugHandler/html/closed.png
+share/doc/qore/modules/DebugHandler/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/DebugHandler/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/DebugHandler/html/doc.png
+share/doc/qore/modules/DebugHandler/html/doxygen.css
+share/doc/qore/modules/DebugHandler/html/doxygen.png
+share/doc/qore/modules/DebugHandler/html/dynsections.js
+share/doc/qore/modules/DebugHandler/html/folderclosed.png
+share/doc/qore/modules/DebugHandler/html/folderopen.png
+share/doc/qore/modules/DebugHandler/html/functions.html
+share/doc/qore/modules/DebugHandler/html/functions_func.html
+share/doc/qore/modules/DebugHandler/html/functions_vars.html
+share/doc/qore/modules/DebugHandler/html/graph_legend.html
+share/doc/qore/modules/DebugHandler/html/graph_legend.md5
+share/doc/qore/modules/DebugHandler/html/graph_legend.png
+share/doc/qore/modules/DebugHandler/html/hierarchy.html
+share/doc/qore/modules/DebugHandler/html/hierarchy.js
+share/doc/qore/modules/DebugHandler/html/index.html
+share/doc/qore/modules/DebugHandler/html/index.qhp
+share/doc/qore/modules/DebugHandler/html/inherit_graph_0.map
+share/doc/qore/modules/DebugHandler/html/inherit_graph_0.md5
+share/doc/qore/modules/DebugHandler/html/inherit_graph_0.png
+share/doc/qore/modules/DebugHandler/html/inherit_graph_1.map
+share/doc/qore/modules/DebugHandler/html/inherit_graph_1.md5
+share/doc/qore/modules/DebugHandler/html/inherit_graph_1.png
+share/doc/qore/modules/DebugHandler/html/inherit_graph_2.map
+share/doc/qore/modules/DebugHandler/html/inherit_graph_2.md5
+share/doc/qore/modules/DebugHandler/html/inherit_graph_2.png
+share/doc/qore/modules/DebugHandler/html/inherits.html
+share/doc/qore/modules/DebugHandler/html/jquery.js
+share/doc/qore/modules/DebugHandler/html/menu.js
+share/doc/qore/modules/DebugHandler/html/menudata.js
+share/doc/qore/modules/DebugHandler/html/namespace_debug_handler.html
+share/doc/qore/modules/DebugHandler/html/namespace_debug_handler.js
+share/doc/qore/modules/DebugHandler/html/namespaces.html
+share/doc/qore/modules/DebugHandler/html/namespaces.js
+share/doc/qore/modules/DebugHandler/html/nav_f.png
+share/doc/qore/modules/DebugHandler/html/nav_g.png
+share/doc/qore/modules/DebugHandler/html/nav_h.png
+share/doc/qore/modules/DebugHandler/html/navtree.css
+share/doc/qore/modules/DebugHandler/html/navtree.js
+share/doc/qore/modules/DebugHandler/html/navtreedata.js
+share/doc/qore/modules/DebugHandler/html/navtreeindex0.js
+share/doc/qore/modules/DebugHandler/html/open.png
+share/doc/qore/modules/DebugHandler/html/pages.html
+share/doc/qore/modules/DebugHandler/html/resize.js
+share/doc/qore/modules/DebugHandler/html/search/all_0.html
+share/doc/qore/modules/DebugHandler/html/search/all_0.js
+share/doc/qore/modules/DebugHandler/html/search/all_1.html
+share/doc/qore/modules/DebugHandler/html/search/all_1.js
+share/doc/qore/modules/DebugHandler/html/search/all_10.html
+share/doc/qore/modules/DebugHandler/html/search/all_10.js
+share/doc/qore/modules/DebugHandler/html/search/all_11.html
+share/doc/qore/modules/DebugHandler/html/search/all_11.js
+share/doc/qore/modules/DebugHandler/html/search/all_12.html
+share/doc/qore/modules/DebugHandler/html/search/all_12.js
+share/doc/qore/modules/DebugHandler/html/search/all_13.html
+share/doc/qore/modules/DebugHandler/html/search/all_13.js
+share/doc/qore/modules/DebugHandler/html/search/all_14.html
+share/doc/qore/modules/DebugHandler/html/search/all_14.js
+share/doc/qore/modules/DebugHandler/html/search/all_15.html
+share/doc/qore/modules/DebugHandler/html/search/all_15.js
+share/doc/qore/modules/DebugHandler/html/search/all_16.html
+share/doc/qore/modules/DebugHandler/html/search/all_16.js
+share/doc/qore/modules/DebugHandler/html/search/all_17.html
+share/doc/qore/modules/DebugHandler/html/search/all_17.js
+share/doc/qore/modules/DebugHandler/html/search/all_18.html
+share/doc/qore/modules/DebugHandler/html/search/all_18.js
+share/doc/qore/modules/DebugHandler/html/search/all_19.html
+share/doc/qore/modules/DebugHandler/html/search/all_19.js
+share/doc/qore/modules/DebugHandler/html/search/all_1a.html
+share/doc/qore/modules/DebugHandler/html/search/all_1a.js
+share/doc/qore/modules/DebugHandler/html/search/all_2.html
+share/doc/qore/modules/DebugHandler/html/search/all_2.js
+share/doc/qore/modules/DebugHandler/html/search/all_3.html
+share/doc/qore/modules/DebugHandler/html/search/all_3.js
+share/doc/qore/modules/DebugHandler/html/search/all_4.html
+share/doc/qore/modules/DebugHandler/html/search/all_4.js
+share/doc/qore/modules/DebugHandler/html/search/all_5.html
+share/doc/qore/modules/DebugHandler/html/search/all_5.js
+share/doc/qore/modules/DebugHandler/html/search/all_6.html
+share/doc/qore/modules/DebugHandler/html/search/all_6.js
+share/doc/qore/modules/DebugHandler/html/search/all_7.html
+share/doc/qore/modules/DebugHandler/html/search/all_7.js
+share/doc/qore/modules/DebugHandler/html/search/all_8.html
+share/doc/qore/modules/DebugHandler/html/search/all_8.js
+share/doc/qore/modules/DebugHandler/html/search/all_9.html
+share/doc/qore/modules/DebugHandler/html/search/all_9.js
+share/doc/qore/modules/DebugHandler/html/search/all_a.html
+share/doc/qore/modules/DebugHandler/html/search/all_a.js
+share/doc/qore/modules/DebugHandler/html/search/all_b.html
+share/doc/qore/modules/DebugHandler/html/search/all_b.js
+share/doc/qore/modules/DebugHandler/html/search/all_c.html
+share/doc/qore/modules/DebugHandler/html/search/all_c.js
+share/doc/qore/modules/DebugHandler/html/search/all_d.html
+share/doc/qore/modules/DebugHandler/html/search/all_d.js
+share/doc/qore/modules/DebugHandler/html/search/all_e.html
+share/doc/qore/modules/DebugHandler/html/search/all_e.js
+share/doc/qore/modules/DebugHandler/html/search/all_f.html
+share/doc/qore/modules/DebugHandler/html/search/all_f.js
+share/doc/qore/modules/DebugHandler/html/search/classes_0.html
+share/doc/qore/modules/DebugHandler/html/search/classes_0.js
+share/doc/qore/modules/DebugHandler/html/search/classes_1.html
+share/doc/qore/modules/DebugHandler/html/search/classes_1.js
+share/doc/qore/modules/DebugHandler/html/search/classes_10.html
+share/doc/qore/modules/DebugHandler/html/search/classes_10.js
+share/doc/qore/modules/DebugHandler/html/search/classes_11.html
+share/doc/qore/modules/DebugHandler/html/search/classes_11.js
+share/doc/qore/modules/DebugHandler/html/search/classes_12.html
+share/doc/qore/modules/DebugHandler/html/search/classes_12.js
+share/doc/qore/modules/DebugHandler/html/search/classes_13.html
+share/doc/qore/modules/DebugHandler/html/search/classes_13.js
+share/doc/qore/modules/DebugHandler/html/search/classes_14.html
+share/doc/qore/modules/DebugHandler/html/search/classes_14.js
+share/doc/qore/modules/DebugHandler/html/search/classes_15.html
+share/doc/qore/modules/DebugHandler/html/search/classes_15.js
+share/doc/qore/modules/DebugHandler/html/search/classes_16.html
+share/doc/qore/modules/DebugHandler/html/search/classes_16.js
+share/doc/qore/modules/DebugHandler/html/search/classes_2.html
+share/doc/qore/modules/DebugHandler/html/search/classes_2.js
+share/doc/qore/modules/DebugHandler/html/search/classes_3.html
+share/doc/qore/modules/DebugHandler/html/search/classes_3.js
+share/doc/qore/modules/DebugHandler/html/search/classes_4.html
+share/doc/qore/modules/DebugHandler/html/search/classes_4.js
+share/doc/qore/modules/DebugHandler/html/search/classes_5.html
+share/doc/qore/modules/DebugHandler/html/search/classes_5.js
+share/doc/qore/modules/DebugHandler/html/search/classes_6.html
+share/doc/qore/modules/DebugHandler/html/search/classes_6.js
+share/doc/qore/modules/DebugHandler/html/search/classes_7.html
+share/doc/qore/modules/DebugHandler/html/search/classes_7.js
+share/doc/qore/modules/DebugHandler/html/search/classes_8.html
+share/doc/qore/modules/DebugHandler/html/search/classes_8.js
+share/doc/qore/modules/DebugHandler/html/search/classes_9.html
+share/doc/qore/modules/DebugHandler/html/search/classes_9.js
+share/doc/qore/modules/DebugHandler/html/search/classes_a.html
+share/doc/qore/modules/DebugHandler/html/search/classes_a.js
+share/doc/qore/modules/DebugHandler/html/search/classes_b.html
+share/doc/qore/modules/DebugHandler/html/search/classes_b.js
+share/doc/qore/modules/DebugHandler/html/search/classes_c.html
+share/doc/qore/modules/DebugHandler/html/search/classes_c.js
+share/doc/qore/modules/DebugHandler/html/search/classes_d.html
+share/doc/qore/modules/DebugHandler/html/search/classes_d.js
+share/doc/qore/modules/DebugHandler/html/search/classes_e.html
+share/doc/qore/modules/DebugHandler/html/search/classes_e.js
+share/doc/qore/modules/DebugHandler/html/search/classes_f.html
+share/doc/qore/modules/DebugHandler/html/search/classes_f.js
+share/doc/qore/modules/DebugHandler/html/search/close.png
+share/doc/qore/modules/DebugHandler/html/search/functions_0.html
+share/doc/qore/modules/DebugHandler/html/search/functions_0.js
+share/doc/qore/modules/DebugHandler/html/search/functions_1.html
+share/doc/qore/modules/DebugHandler/html/search/functions_1.js
+share/doc/qore/modules/DebugHandler/html/search/functions_10.html
+share/doc/qore/modules/DebugHandler/html/search/functions_10.js
+share/doc/qore/modules/DebugHandler/html/search/functions_11.html
+share/doc/qore/modules/DebugHandler/html/search/functions_11.js
+share/doc/qore/modules/DebugHandler/html/search/functions_12.html
+share/doc/qore/modules/DebugHandler/html/search/functions_12.js
+share/doc/qore/modules/DebugHandler/html/search/functions_13.html
+share/doc/qore/modules/DebugHandler/html/search/functions_13.js
+share/doc/qore/modules/DebugHandler/html/search/functions_14.html
+share/doc/qore/modules/DebugHandler/html/search/functions_14.js
+share/doc/qore/modules/DebugHandler/html/search/functions_15.html
+share/doc/qore/modules/DebugHandler/html/search/functions_15.js
+share/doc/qore/modules/DebugHandler/html/search/functions_16.html
+share/doc/qore/modules/DebugHandler/html/search/functions_16.js
+share/doc/qore/modules/DebugHandler/html/search/functions_17.html
+share/doc/qore/modules/DebugHandler/html/search/functions_17.js
+share/doc/qore/modules/DebugHandler/html/search/functions_18.html
+share/doc/qore/modules/DebugHandler/html/search/functions_18.js
+share/doc/qore/modules/DebugHandler/html/search/functions_19.html
+share/doc/qore/modules/DebugHandler/html/search/functions_19.js
+share/doc/qore/modules/DebugHandler/html/search/functions_2.html
+share/doc/qore/modules/DebugHandler/html/search/functions_2.js
+share/doc/qore/modules/DebugHandler/html/search/functions_3.html
+share/doc/qore/modules/DebugHandler/html/search/functions_3.js
+share/doc/qore/modules/DebugHandler/html/search/functions_4.html
+share/doc/qore/modules/DebugHandler/html/search/functions_4.js
+share/doc/qore/modules/DebugHandler/html/search/functions_5.html
+share/doc/qore/modules/DebugHandler/html/search/functions_5.js
+share/doc/qore/modules/DebugHandler/html/search/functions_6.html
+share/doc/qore/modules/DebugHandler/html/search/functions_6.js
+share/doc/qore/modules/DebugHandler/html/search/functions_7.html
+share/doc/qore/modules/DebugHandler/html/search/functions_7.js
+share/doc/qore/modules/DebugHandler/html/search/functions_8.html
+share/doc/qore/modules/DebugHandler/html/search/functions_8.js
+share/doc/qore/modules/DebugHandler/html/search/functions_9.html
+share/doc/qore/modules/DebugHandler/html/search/functions_9.js
+share/doc/qore/modules/DebugHandler/html/search/functions_a.html
+share/doc/qore/modules/DebugHandler/html/search/functions_a.js
+share/doc/qore/modules/DebugHandler/html/search/functions_b.html
+share/doc/qore/modules/DebugHandler/html/search/functions_b.js
+share/doc/qore/modules/DebugHandler/html/search/functions_c.html
+share/doc/qore/modules/DebugHandler/html/search/functions_c.js
+share/doc/qore/modules/DebugHandler/html/search/functions_d.html
+share/doc/qore/modules/DebugHandler/html/search/functions_d.js
+share/doc/qore/modules/DebugHandler/html/search/functions_e.html
+share/doc/qore/modules/DebugHandler/html/search/functions_e.js
+share/doc/qore/modules/DebugHandler/html/search/functions_f.html
+share/doc/qore/modules/DebugHandler/html/search/functions_f.js
+share/doc/qore/modules/DebugHandler/html/search/groups_0.html
+share/doc/qore/modules/DebugHandler/html/search/groups_0.js
+share/doc/qore/modules/DebugHandler/html/search/groups_1.html
+share/doc/qore/modules/DebugHandler/html/search/groups_1.js
+share/doc/qore/modules/DebugHandler/html/search/groups_10.html
+share/doc/qore/modules/DebugHandler/html/search/groups_10.js
+share/doc/qore/modules/DebugHandler/html/search/groups_11.html
+share/doc/qore/modules/DebugHandler/html/search/groups_11.js
+share/doc/qore/modules/DebugHandler/html/search/groups_2.html
+share/doc/qore/modules/DebugHandler/html/search/groups_2.js
+share/doc/qore/modules/DebugHandler/html/search/groups_3.html
+share/doc/qore/modules/DebugHandler/html/search/groups_3.js
+share/doc/qore/modules/DebugHandler/html/search/groups_4.html
+share/doc/qore/modules/DebugHandler/html/search/groups_4.js
+share/doc/qore/modules/DebugHandler/html/search/groups_5.html
+share/doc/qore/modules/DebugHandler/html/search/groups_5.js
+share/doc/qore/modules/DebugHandler/html/search/groups_6.html
+share/doc/qore/modules/DebugHandler/html/search/groups_6.js
+share/doc/qore/modules/DebugHandler/html/search/groups_7.html
+share/doc/qore/modules/DebugHandler/html/search/groups_7.js
+share/doc/qore/modules/DebugHandler/html/search/groups_8.html
+share/doc/qore/modules/DebugHandler/html/search/groups_8.js
+share/doc/qore/modules/DebugHandler/html/search/groups_9.html
+share/doc/qore/modules/DebugHandler/html/search/groups_9.js
+share/doc/qore/modules/DebugHandler/html/search/groups_a.html
+share/doc/qore/modules/DebugHandler/html/search/groups_a.js
+share/doc/qore/modules/DebugHandler/html/search/groups_b.html
+share/doc/qore/modules/DebugHandler/html/search/groups_b.js
+share/doc/qore/modules/DebugHandler/html/search/groups_c.html
+share/doc/qore/modules/DebugHandler/html/search/groups_c.js
+share/doc/qore/modules/DebugHandler/html/search/groups_d.html
+share/doc/qore/modules/DebugHandler/html/search/groups_d.js
+share/doc/qore/modules/DebugHandler/html/search/groups_e.html
+share/doc/qore/modules/DebugHandler/html/search/groups_e.js
+share/doc/qore/modules/DebugHandler/html/search/groups_f.html
+share/doc/qore/modules/DebugHandler/html/search/groups_f.js
+share/doc/qore/modules/DebugHandler/html/search/mag_sel.png
+share/doc/qore/modules/DebugHandler/html/search/namespaces_0.html
+share/doc/qore/modules/DebugHandler/html/search/namespaces_0.js
+share/doc/qore/modules/DebugHandler/html/search/namespaces_1.html
+share/doc/qore/modules/DebugHandler/html/search/namespaces_1.js
+share/doc/qore/modules/DebugHandler/html/search/namespaces_2.html
+share/doc/qore/modules/DebugHandler/html/search/namespaces_2.js
+share/doc/qore/modules/DebugHandler/html/search/namespaces_3.html
+share/doc/qore/modules/DebugHandler/html/search/namespaces_3.js
+share/doc/qore/modules/DebugHandler/html/search/namespaces_4.html
+share/doc/qore/modules/DebugHandler/html/search/namespaces_4.js
+share/doc/qore/modules/DebugHandler/html/search/namespaces_5.html
+share/doc/qore/modules/DebugHandler/html/search/namespaces_5.js
+share/doc/qore/modules/DebugHandler/html/search/namespaces_6.html
+share/doc/qore/modules/DebugHandler/html/search/namespaces_6.js
+share/doc/qore/modules/DebugHandler/html/search/namespaces_7.html
+share/doc/qore/modules/DebugHandler/html/search/namespaces_7.js
+share/doc/qore/modules/DebugHandler/html/search/namespaces_8.html
+share/doc/qore/modules/DebugHandler/html/search/namespaces_8.js
+share/doc/qore/modules/DebugHandler/html/search/nomatches.html
+share/doc/qore/modules/DebugHandler/html/search/pages_0.html
+share/doc/qore/modules/DebugHandler/html/search/pages_0.js
+share/doc/qore/modules/DebugHandler/html/search/pages_1.html
+share/doc/qore/modules/DebugHandler/html/search/pages_1.js
+share/doc/qore/modules/DebugHandler/html/search/pages_10.html
+share/doc/qore/modules/DebugHandler/html/search/pages_10.js
+share/doc/qore/modules/DebugHandler/html/search/pages_11.html
+share/doc/qore/modules/DebugHandler/html/search/pages_11.js
+share/doc/qore/modules/DebugHandler/html/search/pages_12.html
+share/doc/qore/modules/DebugHandler/html/search/pages_12.js
+share/doc/qore/modules/DebugHandler/html/search/pages_2.html
+share/doc/qore/modules/DebugHandler/html/search/pages_2.js
+share/doc/qore/modules/DebugHandler/html/search/pages_3.html
+share/doc/qore/modules/DebugHandler/html/search/pages_3.js
+share/doc/qore/modules/DebugHandler/html/search/pages_4.html
+share/doc/qore/modules/DebugHandler/html/search/pages_4.js
+share/doc/qore/modules/DebugHandler/html/search/pages_5.html
+share/doc/qore/modules/DebugHandler/html/search/pages_5.js
+share/doc/qore/modules/DebugHandler/html/search/pages_6.html
+share/doc/qore/modules/DebugHandler/html/search/pages_6.js
+share/doc/qore/modules/DebugHandler/html/search/pages_7.html
+share/doc/qore/modules/DebugHandler/html/search/pages_7.js
+share/doc/qore/modules/DebugHandler/html/search/pages_8.html
+share/doc/qore/modules/DebugHandler/html/search/pages_8.js
+share/doc/qore/modules/DebugHandler/html/search/pages_9.html
+share/doc/qore/modules/DebugHandler/html/search/pages_9.js
+share/doc/qore/modules/DebugHandler/html/search/pages_a.html
+share/doc/qore/modules/DebugHandler/html/search/pages_a.js
+share/doc/qore/modules/DebugHandler/html/search/pages_b.html
+share/doc/qore/modules/DebugHandler/html/search/pages_b.js
+share/doc/qore/modules/DebugHandler/html/search/pages_c.html
+share/doc/qore/modules/DebugHandler/html/search/pages_c.js
+share/doc/qore/modules/DebugHandler/html/search/pages_d.html
+share/doc/qore/modules/DebugHandler/html/search/pages_d.js
+share/doc/qore/modules/DebugHandler/html/search/pages_e.html
+share/doc/qore/modules/DebugHandler/html/search/pages_e.js
+share/doc/qore/modules/DebugHandler/html/search/pages_f.html
+share/doc/qore/modules/DebugHandler/html/search/pages_f.js
+share/doc/qore/modules/DebugHandler/html/search/search.css
+share/doc/qore/modules/DebugHandler/html/search/search.js
+share/doc/qore/modules/DebugHandler/html/search/search_l.png
+share/doc/qore/modules/DebugHandler/html/search/search_m.png
+share/doc/qore/modules/DebugHandler/html/search/search_r.png
+share/doc/qore/modules/DebugHandler/html/search/searchdata.js
+share/doc/qore/modules/DebugHandler/html/search/variables_0.html
+share/doc/qore/modules/DebugHandler/html/search/variables_0.js
+share/doc/qore/modules/DebugHandler/html/search/variables_1.html
+share/doc/qore/modules/DebugHandler/html/search/variables_1.js
+share/doc/qore/modules/DebugHandler/html/search/variables_10.html
+share/doc/qore/modules/DebugHandler/html/search/variables_10.js
+share/doc/qore/modules/DebugHandler/html/search/variables_11.html
+share/doc/qore/modules/DebugHandler/html/search/variables_11.js
+share/doc/qore/modules/DebugHandler/html/search/variables_12.html
+share/doc/qore/modules/DebugHandler/html/search/variables_12.js
+share/doc/qore/modules/DebugHandler/html/search/variables_13.html
+share/doc/qore/modules/DebugHandler/html/search/variables_13.js
+share/doc/qore/modules/DebugHandler/html/search/variables_14.html
+share/doc/qore/modules/DebugHandler/html/search/variables_14.js
+share/doc/qore/modules/DebugHandler/html/search/variables_15.html
+share/doc/qore/modules/DebugHandler/html/search/variables_15.js
+share/doc/qore/modules/DebugHandler/html/search/variables_16.html
+share/doc/qore/modules/DebugHandler/html/search/variables_16.js
+share/doc/qore/modules/DebugHandler/html/search/variables_17.html
+share/doc/qore/modules/DebugHandler/html/search/variables_17.js
+share/doc/qore/modules/DebugHandler/html/search/variables_18.html
+share/doc/qore/modules/DebugHandler/html/search/variables_18.js
+share/doc/qore/modules/DebugHandler/html/search/variables_19.html
+share/doc/qore/modules/DebugHandler/html/search/variables_19.js
+share/doc/qore/modules/DebugHandler/html/search/variables_2.html
+share/doc/qore/modules/DebugHandler/html/search/variables_2.js
+share/doc/qore/modules/DebugHandler/html/search/variables_3.html
+share/doc/qore/modules/DebugHandler/html/search/variables_3.js
+share/doc/qore/modules/DebugHandler/html/search/variables_4.html
+share/doc/qore/modules/DebugHandler/html/search/variables_4.js
+share/doc/qore/modules/DebugHandler/html/search/variables_5.html
+share/doc/qore/modules/DebugHandler/html/search/variables_5.js
+share/doc/qore/modules/DebugHandler/html/search/variables_6.html
+share/doc/qore/modules/DebugHandler/html/search/variables_6.js
+share/doc/qore/modules/DebugHandler/html/search/variables_7.html
+share/doc/qore/modules/DebugHandler/html/search/variables_7.js
+share/doc/qore/modules/DebugHandler/html/search/variables_8.html
+share/doc/qore/modules/DebugHandler/html/search/variables_8.js
+share/doc/qore/modules/DebugHandler/html/search/variables_9.html
+share/doc/qore/modules/DebugHandler/html/search/variables_9.js
+share/doc/qore/modules/DebugHandler/html/search/variables_a.html
+share/doc/qore/modules/DebugHandler/html/search/variables_a.js
+share/doc/qore/modules/DebugHandler/html/search/variables_b.html
+share/doc/qore/modules/DebugHandler/html/search/variables_b.js
+share/doc/qore/modules/DebugHandler/html/search/variables_c.html
+share/doc/qore/modules/DebugHandler/html/search/variables_c.js
+share/doc/qore/modules/DebugHandler/html/search/variables_d.html
+share/doc/qore/modules/DebugHandler/html/search/variables_d.js
+share/doc/qore/modules/DebugHandler/html/search/variables_e.html
+share/doc/qore/modules/DebugHandler/html/search/variables_e.js
+share/doc/qore/modules/DebugHandler/html/search/variables_f.html
+share/doc/qore/modules/DebugHandler/html/search/variables_f.js
+share/doc/qore/modules/DebugHandler/html/splitbar.png
+share/doc/qore/modules/DebugHandler/html/sync_off.png
+share/doc/qore/modules/DebugHandler/html/sync_on.png
+share/doc/qore/modules/DebugHandler/html/tab_a.png
+share/doc/qore/modules/DebugHandler/html/tab_b.png
+share/doc/qore/modules/DebugHandler/html/tab_h.png
+share/doc/qore/modules/DebugHandler/html/tab_s.png
+share/doc/qore/modules/DebugHandler/html/tabs.css
+share/doc/qore/modules/DebugProgramControl/html/_debug_program_control_8qm_8dox_8h_source.html
+share/doc/qore/modules/DebugProgramControl/html/annotated.html
+share/doc/qore/modules/DebugProgramControl/html/annotated_dup.js
+share/doc/qore/modules/DebugProgramControl/html/bc_s.png
+share/doc/qore/modules/DebugProgramControl/html/bdwn.png
+share/doc/qore/modules/DebugProgramControl/html/class_debug_program_control_1_1_debug_program_control-members.html
+share/doc/qore/modules/DebugProgramControl/html/class_debug_program_control_1_1_debug_program_control.html
+share/doc/qore/modules/DebugProgramControl/html/class_debug_program_control_1_1_debug_program_control.js
+share/doc/qore/modules/DebugProgramControl/html/classes.html
+share/doc/qore/modules/DebugProgramControl/html/closed.png
+share/doc/qore/modules/DebugProgramControl/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/DebugProgramControl/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/DebugProgramControl/html/doc.png
+share/doc/qore/modules/DebugProgramControl/html/doxygen.css
+share/doc/qore/modules/DebugProgramControl/html/doxygen.png
+share/doc/qore/modules/DebugProgramControl/html/dynsections.js
+share/doc/qore/modules/DebugProgramControl/html/folderclosed.png
+share/doc/qore/modules/DebugProgramControl/html/folderopen.png
+share/doc/qore/modules/DebugProgramControl/html/functions.html
+share/doc/qore/modules/DebugProgramControl/html/functions_func.html
+share/doc/qore/modules/DebugProgramControl/html/functions_vars.html
+share/doc/qore/modules/DebugProgramControl/html/graph_legend.html
+share/doc/qore/modules/DebugProgramControl/html/graph_legend.md5
+share/doc/qore/modules/DebugProgramControl/html/graph_legend.png
+share/doc/qore/modules/DebugProgramControl/html/index.html
+share/doc/qore/modules/DebugProgramControl/html/index.qhp
+share/doc/qore/modules/DebugProgramControl/html/jquery.js
+share/doc/qore/modules/DebugProgramControl/html/menu.js
+share/doc/qore/modules/DebugProgramControl/html/menudata.js
+share/doc/qore/modules/DebugProgramControl/html/namespace_debug_program_control.html
+share/doc/qore/modules/DebugProgramControl/html/namespace_debug_program_control.js
+share/doc/qore/modules/DebugProgramControl/html/namespaces.html
+share/doc/qore/modules/DebugProgramControl/html/namespaces.js
+share/doc/qore/modules/DebugProgramControl/html/nav_f.png
+share/doc/qore/modules/DebugProgramControl/html/nav_g.png
+share/doc/qore/modules/DebugProgramControl/html/nav_h.png
+share/doc/qore/modules/DebugProgramControl/html/navtree.css
+share/doc/qore/modules/DebugProgramControl/html/navtree.js
+share/doc/qore/modules/DebugProgramControl/html/navtreedata.js
+share/doc/qore/modules/DebugProgramControl/html/navtreeindex0.js
+share/doc/qore/modules/DebugProgramControl/html/open.png
+share/doc/qore/modules/DebugProgramControl/html/pages.html
+share/doc/qore/modules/DebugProgramControl/html/resize.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_0.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_0.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_1.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_1.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_10.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_10.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_11.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_11.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_12.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_12.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_13.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_13.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_14.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_14.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_15.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_15.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_16.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_16.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_17.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_17.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_18.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_18.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_19.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_19.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_1a.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_1a.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_2.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_2.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_3.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_3.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_4.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_4.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_5.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_5.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_6.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_6.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_7.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_7.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_8.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_8.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_9.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_9.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_a.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_a.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_b.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_b.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_c.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_c.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_d.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_d.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_e.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_e.js
+share/doc/qore/modules/DebugProgramControl/html/search/all_f.html
+share/doc/qore/modules/DebugProgramControl/html/search/all_f.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_0.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_0.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_1.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_1.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_10.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_10.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_11.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_11.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_12.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_12.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_2.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_2.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_3.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_3.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_4.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_4.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_5.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_5.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_6.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_6.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_7.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_7.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_8.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_8.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_9.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_9.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_a.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_a.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_b.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_b.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_c.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_c.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_d.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_d.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_e.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_e.js
+share/doc/qore/modules/DebugProgramControl/html/search/classes_f.html
+share/doc/qore/modules/DebugProgramControl/html/search/classes_f.js
+share/doc/qore/modules/DebugProgramControl/html/search/close.png
+share/doc/qore/modules/DebugProgramControl/html/search/functions_0.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_0.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_1.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_1.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_10.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_10.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_11.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_11.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_12.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_12.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_13.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_13.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_14.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_14.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_15.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_15.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_16.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_16.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_17.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_17.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_18.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_18.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_2.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_2.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_3.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_3.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_4.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_4.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_5.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_5.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_6.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_6.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_7.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_7.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_8.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_8.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_9.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_9.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_a.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_a.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_b.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_b.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_c.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_c.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_d.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_d.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_e.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_e.js
+share/doc/qore/modules/DebugProgramControl/html/search/functions_f.html
+share/doc/qore/modules/DebugProgramControl/html/search/functions_f.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_0.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_0.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_1.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_1.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_10.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_10.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_11.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_11.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_2.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_2.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_3.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_3.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_4.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_4.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_5.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_5.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_6.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_6.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_7.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_7.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_8.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_8.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_9.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_9.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_a.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_a.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_b.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_b.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_c.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_c.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_d.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_d.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_e.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_e.js
+share/doc/qore/modules/DebugProgramControl/html/search/groups_f.html
+share/doc/qore/modules/DebugProgramControl/html/search/groups_f.js
+share/doc/qore/modules/DebugProgramControl/html/search/mag_sel.png
+share/doc/qore/modules/DebugProgramControl/html/search/namespaces_0.html
+share/doc/qore/modules/DebugProgramControl/html/search/namespaces_0.js
+share/doc/qore/modules/DebugProgramControl/html/search/namespaces_1.html
+share/doc/qore/modules/DebugProgramControl/html/search/namespaces_1.js
+share/doc/qore/modules/DebugProgramControl/html/search/nomatches.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_0.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_0.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_1.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_1.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_10.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_10.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_11.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_11.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_12.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_12.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_2.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_2.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_3.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_3.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_4.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_4.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_5.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_5.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_6.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_6.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_7.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_7.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_8.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_8.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_9.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_9.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_a.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_a.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_b.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_b.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_c.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_c.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_d.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_d.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_e.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_e.js
+share/doc/qore/modules/DebugProgramControl/html/search/pages_f.html
+share/doc/qore/modules/DebugProgramControl/html/search/pages_f.js
+share/doc/qore/modules/DebugProgramControl/html/search/search.css
+share/doc/qore/modules/DebugProgramControl/html/search/search.js
+share/doc/qore/modules/DebugProgramControl/html/search/search_l.png
+share/doc/qore/modules/DebugProgramControl/html/search/search_m.png
+share/doc/qore/modules/DebugProgramControl/html/search/search_r.png
+share/doc/qore/modules/DebugProgramControl/html/search/searchdata.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_0.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_0.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_1.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_1.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_10.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_10.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_11.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_11.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_12.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_12.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_13.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_13.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_14.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_14.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_15.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_15.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_16.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_16.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_17.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_17.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_18.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_18.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_2.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_2.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_3.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_3.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_4.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_4.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_5.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_5.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_6.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_6.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_7.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_7.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_8.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_8.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_9.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_9.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_a.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_a.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_b.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_b.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_c.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_c.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_d.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_d.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_e.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_e.js
+share/doc/qore/modules/DebugProgramControl/html/search/variables_f.html
+share/doc/qore/modules/DebugProgramControl/html/search/variables_f.js
+share/doc/qore/modules/DebugProgramControl/html/splitbar.png
+share/doc/qore/modules/DebugProgramControl/html/sync_off.png
+share/doc/qore/modules/DebugProgramControl/html/sync_on.png
+share/doc/qore/modules/DebugProgramControl/html/tab_a.png
+share/doc/qore/modules/DebugProgramControl/html/tab_b.png
+share/doc/qore/modules/DebugProgramControl/html/tab_h.png
+share/doc/qore/modules/DebugProgramControl/html/tab_s.png
+share/doc/qore/modules/DebugProgramControl/html/tabs.css
+share/doc/qore/modules/DebugUtil/html/_debug_util_8qm_8dox_8h_source.html
+share/doc/qore/modules/DebugUtil/html/annotated.html
+share/doc/qore/modules/DebugUtil/html/annotated_dup.js
+share/doc/qore/modules/DebugUtil/html/bc_s.png
+share/doc/qore/modules/DebugUtil/html/bdwn.png
+share/doc/qore/modules/DebugUtil/html/class_debug_util_1_1_abstract_debug_control-members.html
+share/doc/qore/modules/DebugUtil/html/class_debug_util_1_1_abstract_debug_control.html
+share/doc/qore/modules/DebugUtil/html/class_debug_util_1_1_abstract_debug_control.js
+share/doc/qore/modules/DebugUtil/html/class_debug_util_1_1_debug_logger-members.html
+share/doc/qore/modules/DebugUtil/html/class_debug_util_1_1_debug_logger.html
+share/doc/qore/modules/DebugUtil/html/class_debug_util_1_1_debug_logger.js
+share/doc/qore/modules/DebugUtil/html/class_debug_util_1_1_wrapper_get_opt-members.html
+share/doc/qore/modules/DebugUtil/html/class_debug_util_1_1_wrapper_get_opt.html
+share/doc/qore/modules/DebugUtil/html/class_debug_util_1_1_wrapper_get_opt.js
+share/doc/qore/modules/DebugUtil/html/classes.html
+share/doc/qore/modules/DebugUtil/html/closed.png
+share/doc/qore/modules/DebugUtil/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/DebugUtil/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/DebugUtil/html/doc.png
+share/doc/qore/modules/DebugUtil/html/doxygen.css
+share/doc/qore/modules/DebugUtil/html/doxygen.png
+share/doc/qore/modules/DebugUtil/html/dynsections.js
+share/doc/qore/modules/DebugUtil/html/folderclosed.png
+share/doc/qore/modules/DebugUtil/html/folderopen.png
+share/doc/qore/modules/DebugUtil/html/functions.html
+share/doc/qore/modules/DebugUtil/html/functions_func.html
+share/doc/qore/modules/DebugUtil/html/functions_vars.html
+share/doc/qore/modules/DebugUtil/html/graph_legend.html
+share/doc/qore/modules/DebugUtil/html/graph_legend.md5
+share/doc/qore/modules/DebugUtil/html/graph_legend.png
+share/doc/qore/modules/DebugUtil/html/index.html
+share/doc/qore/modules/DebugUtil/html/index.qhp
+share/doc/qore/modules/DebugUtil/html/jquery.js
+share/doc/qore/modules/DebugUtil/html/menu.js
+share/doc/qore/modules/DebugUtil/html/menudata.js
+share/doc/qore/modules/DebugUtil/html/namespace_debug_util.html
+share/doc/qore/modules/DebugUtil/html/namespace_debug_util.js
+share/doc/qore/modules/DebugUtil/html/namespacemembers.html
+share/doc/qore/modules/DebugUtil/html/namespacemembers_vars.html
+share/doc/qore/modules/DebugUtil/html/namespaces.html
+share/doc/qore/modules/DebugUtil/html/namespaces.js
+share/doc/qore/modules/DebugUtil/html/nav_f.png
+share/doc/qore/modules/DebugUtil/html/nav_g.png
+share/doc/qore/modules/DebugUtil/html/nav_h.png
+share/doc/qore/modules/DebugUtil/html/navtree.css
+share/doc/qore/modules/DebugUtil/html/navtree.js
+share/doc/qore/modules/DebugUtil/html/navtreedata.js
+share/doc/qore/modules/DebugUtil/html/navtreeindex0.js
+share/doc/qore/modules/DebugUtil/html/open.png
+share/doc/qore/modules/DebugUtil/html/pages.html
+share/doc/qore/modules/DebugUtil/html/resize.js
+share/doc/qore/modules/DebugUtil/html/search/all_0.html
+share/doc/qore/modules/DebugUtil/html/search/all_0.js
+share/doc/qore/modules/DebugUtil/html/search/all_1.html
+share/doc/qore/modules/DebugUtil/html/search/all_1.js
+share/doc/qore/modules/DebugUtil/html/search/all_10.html
+share/doc/qore/modules/DebugUtil/html/search/all_10.js
+share/doc/qore/modules/DebugUtil/html/search/all_11.html
+share/doc/qore/modules/DebugUtil/html/search/all_11.js
+share/doc/qore/modules/DebugUtil/html/search/all_12.html
+share/doc/qore/modules/DebugUtil/html/search/all_12.js
+share/doc/qore/modules/DebugUtil/html/search/all_13.html
+share/doc/qore/modules/DebugUtil/html/search/all_13.js
+share/doc/qore/modules/DebugUtil/html/search/all_14.html
+share/doc/qore/modules/DebugUtil/html/search/all_14.js
+share/doc/qore/modules/DebugUtil/html/search/all_15.html
+share/doc/qore/modules/DebugUtil/html/search/all_15.js
+share/doc/qore/modules/DebugUtil/html/search/all_16.html
+share/doc/qore/modules/DebugUtil/html/search/all_16.js
+share/doc/qore/modules/DebugUtil/html/search/all_17.html
+share/doc/qore/modules/DebugUtil/html/search/all_17.js
+share/doc/qore/modules/DebugUtil/html/search/all_18.html
+share/doc/qore/modules/DebugUtil/html/search/all_18.js
+share/doc/qore/modules/DebugUtil/html/search/all_19.html
+share/doc/qore/modules/DebugUtil/html/search/all_19.js
+share/doc/qore/modules/DebugUtil/html/search/all_1a.html
+share/doc/qore/modules/DebugUtil/html/search/all_1a.js
+share/doc/qore/modules/DebugUtil/html/search/all_2.html
+share/doc/qore/modules/DebugUtil/html/search/all_2.js
+share/doc/qore/modules/DebugUtil/html/search/all_3.html
+share/doc/qore/modules/DebugUtil/html/search/all_3.js
+share/doc/qore/modules/DebugUtil/html/search/all_4.html
+share/doc/qore/modules/DebugUtil/html/search/all_4.js
+share/doc/qore/modules/DebugUtil/html/search/all_5.html
+share/doc/qore/modules/DebugUtil/html/search/all_5.js
+share/doc/qore/modules/DebugUtil/html/search/all_6.html
+share/doc/qore/modules/DebugUtil/html/search/all_6.js
+share/doc/qore/modules/DebugUtil/html/search/all_7.html
+share/doc/qore/modules/DebugUtil/html/search/all_7.js
+share/doc/qore/modules/DebugUtil/html/search/all_8.html
+share/doc/qore/modules/DebugUtil/html/search/all_8.js
+share/doc/qore/modules/DebugUtil/html/search/all_9.html
+share/doc/qore/modules/DebugUtil/html/search/all_9.js
+share/doc/qore/modules/DebugUtil/html/search/all_a.html
+share/doc/qore/modules/DebugUtil/html/search/all_a.js
+share/doc/qore/modules/DebugUtil/html/search/all_b.html
+share/doc/qore/modules/DebugUtil/html/search/all_b.js
+share/doc/qore/modules/DebugUtil/html/search/all_c.html
+share/doc/qore/modules/DebugUtil/html/search/all_c.js
+share/doc/qore/modules/DebugUtil/html/search/all_d.html
+share/doc/qore/modules/DebugUtil/html/search/all_d.js
+share/doc/qore/modules/DebugUtil/html/search/all_e.html
+share/doc/qore/modules/DebugUtil/html/search/all_e.js
+share/doc/qore/modules/DebugUtil/html/search/all_f.html
+share/doc/qore/modules/DebugUtil/html/search/all_f.js
+share/doc/qore/modules/DebugUtil/html/search/classes_0.html
+share/doc/qore/modules/DebugUtil/html/search/classes_0.js
+share/doc/qore/modules/DebugUtil/html/search/classes_1.html
+share/doc/qore/modules/DebugUtil/html/search/classes_1.js
+share/doc/qore/modules/DebugUtil/html/search/classes_10.html
+share/doc/qore/modules/DebugUtil/html/search/classes_10.js
+share/doc/qore/modules/DebugUtil/html/search/classes_11.html
+share/doc/qore/modules/DebugUtil/html/search/classes_11.js
+share/doc/qore/modules/DebugUtil/html/search/classes_12.html
+share/doc/qore/modules/DebugUtil/html/search/classes_12.js
+share/doc/qore/modules/DebugUtil/html/search/classes_2.html
+share/doc/qore/modules/DebugUtil/html/search/classes_2.js
+share/doc/qore/modules/DebugUtil/html/search/classes_3.html
+share/doc/qore/modules/DebugUtil/html/search/classes_3.js
+share/doc/qore/modules/DebugUtil/html/search/classes_4.html
+share/doc/qore/modules/DebugUtil/html/search/classes_4.js
+share/doc/qore/modules/DebugUtil/html/search/classes_5.html
+share/doc/qore/modules/DebugUtil/html/search/classes_5.js
+share/doc/qore/modules/DebugUtil/html/search/classes_6.html
+share/doc/qore/modules/DebugUtil/html/search/classes_6.js
+share/doc/qore/modules/DebugUtil/html/search/classes_7.html
+share/doc/qore/modules/DebugUtil/html/search/classes_7.js
+share/doc/qore/modules/DebugUtil/html/search/classes_8.html
+share/doc/qore/modules/DebugUtil/html/search/classes_8.js
+share/doc/qore/modules/DebugUtil/html/search/classes_9.html
+share/doc/qore/modules/DebugUtil/html/search/classes_9.js
+share/doc/qore/modules/DebugUtil/html/search/classes_a.html
+share/doc/qore/modules/DebugUtil/html/search/classes_a.js
+share/doc/qore/modules/DebugUtil/html/search/classes_b.html
+share/doc/qore/modules/DebugUtil/html/search/classes_b.js
+share/doc/qore/modules/DebugUtil/html/search/classes_c.html
+share/doc/qore/modules/DebugUtil/html/search/classes_c.js
+share/doc/qore/modules/DebugUtil/html/search/classes_d.html
+share/doc/qore/modules/DebugUtil/html/search/classes_d.js
+share/doc/qore/modules/DebugUtil/html/search/classes_e.html
+share/doc/qore/modules/DebugUtil/html/search/classes_e.js
+share/doc/qore/modules/DebugUtil/html/search/classes_f.html
+share/doc/qore/modules/DebugUtil/html/search/classes_f.js
+share/doc/qore/modules/DebugUtil/html/search/close.png
+share/doc/qore/modules/DebugUtil/html/search/functions_0.html
+share/doc/qore/modules/DebugUtil/html/search/functions_0.js
+share/doc/qore/modules/DebugUtil/html/search/functions_1.html
+share/doc/qore/modules/DebugUtil/html/search/functions_1.js
+share/doc/qore/modules/DebugUtil/html/search/functions_10.html
+share/doc/qore/modules/DebugUtil/html/search/functions_10.js
+share/doc/qore/modules/DebugUtil/html/search/functions_11.html
+share/doc/qore/modules/DebugUtil/html/search/functions_11.js
+share/doc/qore/modules/DebugUtil/html/search/functions_12.html
+share/doc/qore/modules/DebugUtil/html/search/functions_12.js
+share/doc/qore/modules/DebugUtil/html/search/functions_13.html
+share/doc/qore/modules/DebugUtil/html/search/functions_13.js
+share/doc/qore/modules/DebugUtil/html/search/functions_14.html
+share/doc/qore/modules/DebugUtil/html/search/functions_14.js
+share/doc/qore/modules/DebugUtil/html/search/functions_15.html
+share/doc/qore/modules/DebugUtil/html/search/functions_15.js
+share/doc/qore/modules/DebugUtil/html/search/functions_16.html
+share/doc/qore/modules/DebugUtil/html/search/functions_16.js
+share/doc/qore/modules/DebugUtil/html/search/functions_17.html
+share/doc/qore/modules/DebugUtil/html/search/functions_17.js
+share/doc/qore/modules/DebugUtil/html/search/functions_18.html
+share/doc/qore/modules/DebugUtil/html/search/functions_18.js
+share/doc/qore/modules/DebugUtil/html/search/functions_2.html
+share/doc/qore/modules/DebugUtil/html/search/functions_2.js
+share/doc/qore/modules/DebugUtil/html/search/functions_3.html
+share/doc/qore/modules/DebugUtil/html/search/functions_3.js
+share/doc/qore/modules/DebugUtil/html/search/functions_4.html
+share/doc/qore/modules/DebugUtil/html/search/functions_4.js
+share/doc/qore/modules/DebugUtil/html/search/functions_5.html
+share/doc/qore/modules/DebugUtil/html/search/functions_5.js
+share/doc/qore/modules/DebugUtil/html/search/functions_6.html
+share/doc/qore/modules/DebugUtil/html/search/functions_6.js
+share/doc/qore/modules/DebugUtil/html/search/functions_7.html
+share/doc/qore/modules/DebugUtil/html/search/functions_7.js
+share/doc/qore/modules/DebugUtil/html/search/functions_8.html
+share/doc/qore/modules/DebugUtil/html/search/functions_8.js
+share/doc/qore/modules/DebugUtil/html/search/functions_9.html
+share/doc/qore/modules/DebugUtil/html/search/functions_9.js
+share/doc/qore/modules/DebugUtil/html/search/functions_a.html
+share/doc/qore/modules/DebugUtil/html/search/functions_a.js
+share/doc/qore/modules/DebugUtil/html/search/functions_b.html
+share/doc/qore/modules/DebugUtil/html/search/functions_b.js
+share/doc/qore/modules/DebugUtil/html/search/functions_c.html
+share/doc/qore/modules/DebugUtil/html/search/functions_c.js
+share/doc/qore/modules/DebugUtil/html/search/functions_d.html
+share/doc/qore/modules/DebugUtil/html/search/functions_d.js
+share/doc/qore/modules/DebugUtil/html/search/functions_e.html
+share/doc/qore/modules/DebugUtil/html/search/functions_e.js
+share/doc/qore/modules/DebugUtil/html/search/functions_f.html
+share/doc/qore/modules/DebugUtil/html/search/functions_f.js
+share/doc/qore/modules/DebugUtil/html/search/groups_0.html
+share/doc/qore/modules/DebugUtil/html/search/groups_0.js
+share/doc/qore/modules/DebugUtil/html/search/groups_1.html
+share/doc/qore/modules/DebugUtil/html/search/groups_1.js
+share/doc/qore/modules/DebugUtil/html/search/groups_10.html
+share/doc/qore/modules/DebugUtil/html/search/groups_10.js
+share/doc/qore/modules/DebugUtil/html/search/groups_11.html
+share/doc/qore/modules/DebugUtil/html/search/groups_11.js
+share/doc/qore/modules/DebugUtil/html/search/groups_2.html
+share/doc/qore/modules/DebugUtil/html/search/groups_2.js
+share/doc/qore/modules/DebugUtil/html/search/groups_3.html
+share/doc/qore/modules/DebugUtil/html/search/groups_3.js
+share/doc/qore/modules/DebugUtil/html/search/groups_4.html
+share/doc/qore/modules/DebugUtil/html/search/groups_4.js
+share/doc/qore/modules/DebugUtil/html/search/groups_5.html
+share/doc/qore/modules/DebugUtil/html/search/groups_5.js
+share/doc/qore/modules/DebugUtil/html/search/groups_6.html
+share/doc/qore/modules/DebugUtil/html/search/groups_6.js
+share/doc/qore/modules/DebugUtil/html/search/groups_7.html
+share/doc/qore/modules/DebugUtil/html/search/groups_7.js
+share/doc/qore/modules/DebugUtil/html/search/groups_8.html
+share/doc/qore/modules/DebugUtil/html/search/groups_8.js
+share/doc/qore/modules/DebugUtil/html/search/groups_9.html
+share/doc/qore/modules/DebugUtil/html/search/groups_9.js
+share/doc/qore/modules/DebugUtil/html/search/groups_a.html
+share/doc/qore/modules/DebugUtil/html/search/groups_a.js
+share/doc/qore/modules/DebugUtil/html/search/groups_b.html
+share/doc/qore/modules/DebugUtil/html/search/groups_b.js
+share/doc/qore/modules/DebugUtil/html/search/groups_c.html
+share/doc/qore/modules/DebugUtil/html/search/groups_c.js
+share/doc/qore/modules/DebugUtil/html/search/groups_d.html
+share/doc/qore/modules/DebugUtil/html/search/groups_d.js
+share/doc/qore/modules/DebugUtil/html/search/groups_e.html
+share/doc/qore/modules/DebugUtil/html/search/groups_e.js
+share/doc/qore/modules/DebugUtil/html/search/groups_f.html
+share/doc/qore/modules/DebugUtil/html/search/groups_f.js
+share/doc/qore/modules/DebugUtil/html/search/mag_sel.png
+share/doc/qore/modules/DebugUtil/html/search/namespaces_0.html
+share/doc/qore/modules/DebugUtil/html/search/namespaces_0.js
+share/doc/qore/modules/DebugUtil/html/search/namespaces_1.html
+share/doc/qore/modules/DebugUtil/html/search/namespaces_1.js
+share/doc/qore/modules/DebugUtil/html/search/nomatches.html
+share/doc/qore/modules/DebugUtil/html/search/pages_0.html
+share/doc/qore/modules/DebugUtil/html/search/pages_0.js
+share/doc/qore/modules/DebugUtil/html/search/pages_1.html
+share/doc/qore/modules/DebugUtil/html/search/pages_1.js
+share/doc/qore/modules/DebugUtil/html/search/pages_10.html
+share/doc/qore/modules/DebugUtil/html/search/pages_10.js
+share/doc/qore/modules/DebugUtil/html/search/pages_11.html
+share/doc/qore/modules/DebugUtil/html/search/pages_11.js
+share/doc/qore/modules/DebugUtil/html/search/pages_12.html
+share/doc/qore/modules/DebugUtil/html/search/pages_12.js
+share/doc/qore/modules/DebugUtil/html/search/pages_2.html
+share/doc/qore/modules/DebugUtil/html/search/pages_2.js
+share/doc/qore/modules/DebugUtil/html/search/pages_3.html
+share/doc/qore/modules/DebugUtil/html/search/pages_3.js
+share/doc/qore/modules/DebugUtil/html/search/pages_4.html
+share/doc/qore/modules/DebugUtil/html/search/pages_4.js
+share/doc/qore/modules/DebugUtil/html/search/pages_5.html
+share/doc/qore/modules/DebugUtil/html/search/pages_5.js
+share/doc/qore/modules/DebugUtil/html/search/pages_6.html
+share/doc/qore/modules/DebugUtil/html/search/pages_6.js
+share/doc/qore/modules/DebugUtil/html/search/pages_7.html
+share/doc/qore/modules/DebugUtil/html/search/pages_7.js
+share/doc/qore/modules/DebugUtil/html/search/pages_8.html
+share/doc/qore/modules/DebugUtil/html/search/pages_8.js
+share/doc/qore/modules/DebugUtil/html/search/pages_9.html
+share/doc/qore/modules/DebugUtil/html/search/pages_9.js
+share/doc/qore/modules/DebugUtil/html/search/pages_a.html
+share/doc/qore/modules/DebugUtil/html/search/pages_a.js
+share/doc/qore/modules/DebugUtil/html/search/pages_b.html
+share/doc/qore/modules/DebugUtil/html/search/pages_b.js
+share/doc/qore/modules/DebugUtil/html/search/pages_c.html
+share/doc/qore/modules/DebugUtil/html/search/pages_c.js
+share/doc/qore/modules/DebugUtil/html/search/pages_d.html
+share/doc/qore/modules/DebugUtil/html/search/pages_d.js
+share/doc/qore/modules/DebugUtil/html/search/pages_e.html
+share/doc/qore/modules/DebugUtil/html/search/pages_e.js
+share/doc/qore/modules/DebugUtil/html/search/pages_f.html
+share/doc/qore/modules/DebugUtil/html/search/pages_f.js
+share/doc/qore/modules/DebugUtil/html/search/search.css
+share/doc/qore/modules/DebugUtil/html/search/search.js
+share/doc/qore/modules/DebugUtil/html/search/search_l.png
+share/doc/qore/modules/DebugUtil/html/search/search_m.png
+share/doc/qore/modules/DebugUtil/html/search/search_r.png
+share/doc/qore/modules/DebugUtil/html/search/searchdata.js
+share/doc/qore/modules/DebugUtil/html/search/variables_0.html
+share/doc/qore/modules/DebugUtil/html/search/variables_0.js
+share/doc/qore/modules/DebugUtil/html/search/variables_1.html
+share/doc/qore/modules/DebugUtil/html/search/variables_1.js
+share/doc/qore/modules/DebugUtil/html/search/variables_10.html
+share/doc/qore/modules/DebugUtil/html/search/variables_10.js
+share/doc/qore/modules/DebugUtil/html/search/variables_11.html
+share/doc/qore/modules/DebugUtil/html/search/variables_11.js
+share/doc/qore/modules/DebugUtil/html/search/variables_12.html
+share/doc/qore/modules/DebugUtil/html/search/variables_12.js
+share/doc/qore/modules/DebugUtil/html/search/variables_13.html
+share/doc/qore/modules/DebugUtil/html/search/variables_13.js
+share/doc/qore/modules/DebugUtil/html/search/variables_14.html
+share/doc/qore/modules/DebugUtil/html/search/variables_14.js
+share/doc/qore/modules/DebugUtil/html/search/variables_15.html
+share/doc/qore/modules/DebugUtil/html/search/variables_15.js
+share/doc/qore/modules/DebugUtil/html/search/variables_16.html
+share/doc/qore/modules/DebugUtil/html/search/variables_16.js
+share/doc/qore/modules/DebugUtil/html/search/variables_17.html
+share/doc/qore/modules/DebugUtil/html/search/variables_17.js
+share/doc/qore/modules/DebugUtil/html/search/variables_18.html
+share/doc/qore/modules/DebugUtil/html/search/variables_18.js
+share/doc/qore/modules/DebugUtil/html/search/variables_2.html
+share/doc/qore/modules/DebugUtil/html/search/variables_2.js
+share/doc/qore/modules/DebugUtil/html/search/variables_3.html
+share/doc/qore/modules/DebugUtil/html/search/variables_3.js
+share/doc/qore/modules/DebugUtil/html/search/variables_4.html
+share/doc/qore/modules/DebugUtil/html/search/variables_4.js
+share/doc/qore/modules/DebugUtil/html/search/variables_5.html
+share/doc/qore/modules/DebugUtil/html/search/variables_5.js
+share/doc/qore/modules/DebugUtil/html/search/variables_6.html
+share/doc/qore/modules/DebugUtil/html/search/variables_6.js
+share/doc/qore/modules/DebugUtil/html/search/variables_7.html
+share/doc/qore/modules/DebugUtil/html/search/variables_7.js
+share/doc/qore/modules/DebugUtil/html/search/variables_8.html
+share/doc/qore/modules/DebugUtil/html/search/variables_8.js
+share/doc/qore/modules/DebugUtil/html/search/variables_9.html
+share/doc/qore/modules/DebugUtil/html/search/variables_9.js
+share/doc/qore/modules/DebugUtil/html/search/variables_a.html
+share/doc/qore/modules/DebugUtil/html/search/variables_a.js
+share/doc/qore/modules/DebugUtil/html/search/variables_b.html
+share/doc/qore/modules/DebugUtil/html/search/variables_b.js
+share/doc/qore/modules/DebugUtil/html/search/variables_c.html
+share/doc/qore/modules/DebugUtil/html/search/variables_c.js
+share/doc/qore/modules/DebugUtil/html/search/variables_d.html
+share/doc/qore/modules/DebugUtil/html/search/variables_d.js
+share/doc/qore/modules/DebugUtil/html/search/variables_e.html
+share/doc/qore/modules/DebugUtil/html/search/variables_e.js
+share/doc/qore/modules/DebugUtil/html/search/variables_f.html
+share/doc/qore/modules/DebugUtil/html/search/variables_f.js
+share/doc/qore/modules/DebugUtil/html/splitbar.png
+share/doc/qore/modules/DebugUtil/html/sync_off.png
+share/doc/qore/modules/DebugUtil/html/sync_on.png
+share/doc/qore/modules/DebugUtil/html/tab_a.png
+share/doc/qore/modules/DebugUtil/html/tab_b.png
+share/doc/qore/modules/DebugUtil/html/tab_h.png
+share/doc/qore/modules/DebugUtil/html/tab_s.png
+share/doc/qore/modules/DebugUtil/html/tabs.css
 share/doc/qore/modules/Diff/html/_diff_8qm_8dox_8h_source.html
 share/doc/qore/modules/Diff/html/bc_s.png
 share/doc/qore/modules/Diff/html/bdwn.png
@@ -3737,6 +6314,14 @@ share/doc/qore/modules/Diff/html/search/
 share/doc/qore/modules/Diff/html/search/classes_11.js
 share/doc/qore/modules/Diff/html/search/classes_12.html
 share/doc/qore/modules/Diff/html/search/classes_12.js
+share/doc/qore/modules/Diff/html/search/classes_13.html
+share/doc/qore/modules/Diff/html/search/classes_13.js
+share/doc/qore/modules/Diff/html/search/classes_14.html
+share/doc/qore/modules/Diff/html/search/classes_14.js
+share/doc/qore/modules/Diff/html/search/classes_15.html
+share/doc/qore/modules/Diff/html/search/classes_15.js
+share/doc/qore/modules/Diff/html/search/classes_16.html
+share/doc/qore/modules/Diff/html/search/classes_16.js
 share/doc/qore/modules/Diff/html/search/classes_2.html
 share/doc/qore/modules/Diff/html/search/classes_2.js
 share/doc/qore/modules/Diff/html/search/classes_3.html
@@ -3788,6 +6373,8 @@ share/doc/qore/modules/Diff/html/search/
 share/doc/qore/modules/Diff/html/search/functions_17.js
 share/doc/qore/modules/Diff/html/search/functions_18.html
 share/doc/qore/modules/Diff/html/search/functions_18.js
+share/doc/qore/modules/Diff/html/search/functions_19.html
+share/doc/qore/modules/Diff/html/search/functions_19.js
 share/doc/qore/modules/Diff/html/search/functions_2.html
 share/doc/qore/modules/Diff/html/search/functions_2.js
 share/doc/qore/modules/Diff/html/search/functions_3.html
@@ -3880,6 +6467,8 @@ share/doc/qore/modules/Diff/html/search/
 share/doc/qore/modules/Diff/html/search/pages_10.js
 share/doc/qore/modules/Diff/html/search/pages_11.html
 share/doc/qore/modules/Diff/html/search/pages_11.js
+share/doc/qore/modules/Diff/html/search/pages_12.html
+share/doc/qore/modules/Diff/html/search/pages_12.js
 share/doc/qore/modules/Diff/html/search/pages_2.html
 share/doc/qore/modules/Diff/html/search/pages_2.js
 share/doc/qore/modules/Diff/html/search/pages_3.html
@@ -3934,6 +6523,10 @@ share/doc/qore/modules/Diff/html/search/
 share/doc/qore/modules/Diff/html/search/variables_16.js
 share/doc/qore/modules/Diff/html/search/variables_17.html
 share/doc/qore/modules/Diff/html/search/variables_17.js
+share/doc/qore/modules/Diff/html/search/variables_18.html
+share/doc/qore/modules/Diff/html/search/variables_18.js
+share/doc/qore/modules/Diff/html/search/variables_19.html
+share/doc/qore/modules/Diff/html/search/variables_19.js
 share/doc/qore/modules/Diff/html/search/variables_2.html
 share/doc/qore/modules/Diff/html/search/variables_2.js
 share/doc/qore/modules/Diff/html/search/variables_3.html
@@ -4077,6 +6670,14 @@ share/doc/qore/modules/FilePoller/html/s
 share/doc/qore/modules/FilePoller/html/search/classes_11.js
 share/doc/qore/modules/FilePoller/html/search/classes_12.html
 share/doc/qore/modules/FilePoller/html/search/classes_12.js
+share/doc/qore/modules/FilePoller/html/search/classes_13.html
+share/doc/qore/modules/FilePoller/html/search/classes_13.js
+share/doc/qore/modules/FilePoller/html/search/classes_14.html
+share/doc/qore/modules/FilePoller/html/search/classes_14.js
+share/doc/qore/modules/FilePoller/html/search/classes_15.html
+share/doc/qore/modules/FilePoller/html/search/classes_15.js
+share/doc/qore/modules/FilePoller/html/search/classes_16.html
+share/doc/qore/modules/FilePoller/html/search/classes_16.js
 share/doc/qore/modules/FilePoller/html/search/classes_2.html
 share/doc/qore/modules/FilePoller/html/search/classes_2.js
 share/doc/qore/modules/FilePoller/html/search/classes_3.html
@@ -4128,6 +6729,8 @@ share/doc/qore/modules/FilePoller/html/s
 share/doc/qore/modules/FilePoller/html/search/functions_17.js
 share/doc/qore/modules/FilePoller/html/search/functions_18.html
 share/doc/qore/modules/FilePoller/html/search/functions_18.js
+share/doc/qore/modules/FilePoller/html/search/functions_19.html
+share/doc/qore/modules/FilePoller/html/search/functions_19.js
 share/doc/qore/modules/FilePoller/html/search/functions_2.html
 share/doc/qore/modules/FilePoller/html/search/functions_2.js
 share/doc/qore/modules/FilePoller/html/search/functions_3.html
@@ -4222,6 +6825,8 @@ share/doc/qore/modules/FilePoller/html/s
 share/doc/qore/modules/FilePoller/html/search/pages_10.js
 share/doc/qore/modules/FilePoller/html/search/pages_11.html
 share/doc/qore/modules/FilePoller/html/search/pages_11.js
+share/doc/qore/modules/FilePoller/html/search/pages_12.html
+share/doc/qore/modules/FilePoller/html/search/pages_12.js
 share/doc/qore/modules/FilePoller/html/search/pages_2.html
 share/doc/qore/modules/FilePoller/html/search/pages_2.js
 share/doc/qore/modules/FilePoller/html/search/pages_3.html
@@ -4276,6 +6881,10 @@ share/doc/qore/modules/FilePoller/html/s
 share/doc/qore/modules/FilePoller/html/search/variables_16.js
 share/doc/qore/modules/FilePoller/html/search/variables_17.html
 share/doc/qore/modules/FilePoller/html/search/variables_17.js
+share/doc/qore/modules/FilePoller/html/search/variables_18.html
+share/doc/qore/modules/FilePoller/html/search/variables_18.js
+share/doc/qore/modules/FilePoller/html/search/variables_19.html
+share/doc/qore/modules/FilePoller/html/search/variables_19.js
 share/doc/qore/modules/FilePoller/html/search/variables_2.html
 share/doc/qore/modules/FilePoller/html/search/variables_2.js
 share/doc/qore/modules/FilePoller/html/search/variables_3.html
@@ -4353,6 +6962,18 @@ share/doc/qore/modules/FixedLengthUtil/h
 share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_file_writer__inherit__graph.map
 share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_file_writer__inherit__graph.md5
 share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_file_writer__inherit__graph.png
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator-members.html
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator.html
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator.js
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator__inherit__graph.map
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator__inherit__graph.md5
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_iterator__inherit__graph.png
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer-members.html
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer.html
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer.js
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer__inherit__graph.map
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer__inherit__graph.md5
+share/doc/qore/modules/FixedLengthUtil/html/class_fixed_length_util_1_1_fixed_length_writer__inherit__graph.png
 share/doc/qore/modules/FixedLengthUtil/html/classes.html
 share/doc/qore/modules/FixedLengthUtil/html/closed.png
 share/doc/qore/modules/FixedLengthUtil/html/dir_13add0083e006ac756009d5942a24d28.html
@@ -4463,6 +7084,14 @@ share/doc/qore/modules/FixedLengthUtil/h
 share/doc/qore/modules/FixedLengthUtil/html/search/classes_11.js
 share/doc/qore/modules/FixedLengthUtil/html/search/classes_12.html
 share/doc/qore/modules/FixedLengthUtil/html/search/classes_12.js
+share/doc/qore/modules/FixedLengthUtil/html/search/classes_13.html
+share/doc/qore/modules/FixedLengthUtil/html/search/classes_13.js
+share/doc/qore/modules/FixedLengthUtil/html/search/classes_14.html
+share/doc/qore/modules/FixedLengthUtil/html/search/classes_14.js
+share/doc/qore/modules/FixedLengthUtil/html/search/classes_15.html
+share/doc/qore/modules/FixedLengthUtil/html/search/classes_15.js
+share/doc/qore/modules/FixedLengthUtil/html/search/classes_16.html
+share/doc/qore/modules/FixedLengthUtil/html/search/classes_16.js
 share/doc/qore/modules/FixedLengthUtil/html/search/classes_2.html
 share/doc/qore/modules/FixedLengthUtil/html/search/classes_2.js
 share/doc/qore/modules/FixedLengthUtil/html/search/classes_3.html
@@ -4514,6 +7143,8 @@ share/doc/qore/modules/FixedLengthUtil/h
 share/doc/qore/modules/FixedLengthUtil/html/search/functions_17.js
 share/doc/qore/modules/FixedLengthUtil/html/search/functions_18.html
 share/doc/qore/modules/FixedLengthUtil/html/search/functions_18.js
+share/doc/qore/modules/FixedLengthUtil/html/search/functions_19.html
+share/doc/qore/modules/FixedLengthUtil/html/search/functions_19.js
 share/doc/qore/modules/FixedLengthUtil/html/search/functions_2.html
 share/doc/qore/modules/FixedLengthUtil/html/search/functions_2.js
 share/doc/qore/modules/FixedLengthUtil/html/search/functions_3.html
@@ -4608,6 +7239,8 @@ share/doc/qore/modules/FixedLengthUtil/h
 share/doc/qore/modules/FixedLengthUtil/html/search/pages_10.js
 share/doc/qore/modules/FixedLengthUtil/html/search/pages_11.html
 share/doc/qore/modules/FixedLengthUtil/html/search/pages_11.js
+share/doc/qore/modules/FixedLengthUtil/html/search/pages_12.html
+share/doc/qore/modules/FixedLengthUtil/html/search/pages_12.js
 share/doc/qore/modules/FixedLengthUtil/html/search/pages_2.html
 share/doc/qore/modules/FixedLengthUtil/html/search/pages_2.js
 share/doc/qore/modules/FixedLengthUtil/html/search/pages_3.html
@@ -4662,6 +7295,10 @@ share/doc/qore/modules/FixedLengthUtil/h
 share/doc/qore/modules/FixedLengthUtil/html/search/variables_16.js
 share/doc/qore/modules/FixedLengthUtil/html/search/variables_17.html
 share/doc/qore/modules/FixedLengthUtil/html/search/variables_17.js
+share/doc/qore/modules/FixedLengthUtil/html/search/variables_18.html
+share/doc/qore/modules/FixedLengthUtil/html/search/variables_18.js
+share/doc/qore/modules/FixedLengthUtil/html/search/variables_19.html
+share/doc/qore/modules/FixedLengthUtil/html/search/variables_19.js
 share/doc/qore/modules/FixedLengthUtil/html/search/variables_2.html
 share/doc/qore/modules/FixedLengthUtil/html/search/variables_2.js
 share/doc/qore/modules/FixedLengthUtil/html/search/variables_3.html
@@ -4912,6 +7549,14 @@ share/doc/qore/modules/FreetdsSqlUtil/ht
 share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_11.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_12.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_12.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_13.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_13.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_14.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_14.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_15.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_15.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_16.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_16.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_2.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_2.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/classes_3.html
@@ -4963,6 +7608,8 @@ share/doc/qore/modules/FreetdsSqlUtil/ht
 share/doc/qore/modules/FreetdsSqlUtil/html/search/functions_17.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/functions_18.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/functions_18.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/functions_19.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/functions_19.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/functions_2.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/functions_2.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/functions_3.html
@@ -5057,6 +7704,8 @@ share/doc/qore/modules/FreetdsSqlUtil/ht
 share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_10.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_11.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_11.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_12.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_12.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_2.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_2.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/pages_3.html
@@ -5111,6 +7760,10 @@ share/doc/qore/modules/FreetdsSqlUtil/ht
 share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_16.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_17.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_17.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_18.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_18.js
+share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_19.html
+share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_19.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_2.html
 share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_2.js
 share/doc/qore/modules/FreetdsSqlUtil/html/search/variables_3.html
@@ -5195,16 +7848,18 @@ share/doc/qore/modules/HttpServer/html/g
 share/doc/qore/modules/HttpServer/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/HttpServer/html/group__call__type__constants.js
 share/doc/qore/modules/HttpServer/html/group__compression__constants.js
+share/doc/qore/modules/HttpServer/html/group__compression__transformations.js
 share/doc/qore/modules/HttpServer/html/group__compresssion__functions.js
 share/doc/qore/modules/HttpServer/html/group__context__functions.js
+share/doc/qore/modules/HttpServer/html/group__crypto__transformations.js
 share/doc/qore/modules/HttpServer/html/group__cryptographic__constants.js
 share/doc/qore/modules/HttpServer/html/group__cryptographic__functions.js
 share/doc/qore/modules/HttpServer/html/group__database__driver__constants.js
 share/doc/qore/modules/HttpServer/html/group__date__and__time__functions.js
 share/doc/qore/modules/HttpServer/html/group__dbi__capabilities.js
 share/doc/qore/modules/HttpServer/html/group__dbi__functions.js
-share/doc/qore/modules/HttpServer/html/group__debug__rc__options.js
-share/doc/qore/modules/HttpServer/html/group__debug__step__options.js
+share/doc/qore/modules/HttpServer/html/group__debug__flow__options.js
+share/doc/qore/modules/HttpServer/html/group__debug__rs__options.js
 share/doc/qore/modules/HttpServer/html/group__digest__functions.js
 share/doc/qore/modules/HttpServer/html/group__env__functions.js
 share/doc/qore/modules/HttpServer/html/group__error__constants.js
@@ -5228,6 +7883,7 @@ share/doc/qore/modules/HttpServer/html/g
 share/doc/qore/modules/HttpServer/html/group__network__address__information__constants.js
 share/doc/qore/modules/HttpServer/html/group__null__and__nothing__constants.js
 share/doc/qore/modules/HttpServer/html/group__number__formatting__constants.js
+share/doc/qore/modules/HttpServer/html/group__number__string__formatting__constants.js
 share/doc/qore/modules/HttpServer/html/group__object__functions.js
 share/doc/qore/modules/HttpServer/html/group__old__dbi__functions.js
 share/doc/qore/modules/HttpServer/html/group__option__constants.js
@@ -5240,10 +7896,10 @@ share/doc/qore/modules/HttpServer/html/g
 share/doc/qore/modules/HttpServer/html/group__signal__handling__functions.js
 share/doc/qore/modules/HttpServer/html/group__socket__type__constants.js
 share/doc/qore/modules/HttpServer/html/group__sql__constants.js
+share/doc/qore/modules/HttpServer/html/group__ssl__mode__constants.js
 share/doc/qore/modules/HttpServer/html/group__string__functions.js
 share/doc/qore/modules/HttpServer/html/group__string__type__constants.js
 share/doc/qore/modules/HttpServer/html/group__system__and__build__constants.js
-share/doc/qore/modules/HttpServer/html/group__t.js
 share/doc/qore/modules/HttpServer/html/group__tattr__control__character__constants.js
 share/doc/qore/modules/HttpServer/html/group__tattr__control__mode__constants.js
 share/doc/qore/modules/HttpServer/html/group__tattr__input__mode__constants.js
@@ -5288,6 +7944,7 @@ share/doc/qore/modules/HttpServer/html/n
 share/doc/qore/modules/HttpServer/html/navtreeindex3.js
 share/doc/qore/modules/HttpServer/html/navtreeindex4.js
 share/doc/qore/modules/HttpServer/html/navtreeindex5.js
+share/doc/qore/modules/HttpServer/html/navtreeindex6.js
 share/doc/qore/modules/HttpServer/html/open.png
 share/doc/qore/modules/HttpServer/html/pages.html
 share/doc/qore/modules/HttpServer/html/resize.js
@@ -5353,6 +8010,8 @@ share/doc/qore/modules/HttpServer/html/s
 share/doc/qore/modules/HttpServer/html/search/classes_10.js
 share/doc/qore/modules/HttpServer/html/search/classes_11.html
 share/doc/qore/modules/HttpServer/html/search/classes_11.js
+share/doc/qore/modules/HttpServer/html/search/classes_12.html
+share/doc/qore/modules/HttpServer/html/search/classes_12.js
 share/doc/qore/modules/HttpServer/html/search/classes_2.html
 share/doc/qore/modules/HttpServer/html/search/classes_2.js
 share/doc/qore/modules/HttpServer/html/search/classes_3.html
@@ -5477,10 +8136,6 @@ share/doc/qore/modules/HttpServer/html/s
 share/doc/qore/modules/HttpServer/html/search/namespaces_2.js
 share/doc/qore/modules/HttpServer/html/search/namespaces_3.html
 share/doc/qore/modules/HttpServer/html/search/namespaces_3.js
-share/doc/qore/modules/HttpServer/html/search/namespaces_4.html
-share/doc/qore/modules/HttpServer/html/search/namespaces_4.js
-share/doc/qore/modules/HttpServer/html/search/namespaces_5.html
-share/doc/qore/modules/HttpServer/html/search/namespaces_5.js
 share/doc/qore/modules/HttpServer/html/search/nomatches.html
 share/doc/qore/modules/HttpServer/html/search/pages_0.html
 share/doc/qore/modules/HttpServer/html/search/pages_0.js
@@ -5542,6 +8197,10 @@ share/doc/qore/modules/HttpServer/html/s
 share/doc/qore/modules/HttpServer/html/search/variables_14.js
 share/doc/qore/modules/HttpServer/html/search/variables_15.html
 share/doc/qore/modules/HttpServer/html/search/variables_15.js
+share/doc/qore/modules/HttpServer/html/search/variables_16.html
+share/doc/qore/modules/HttpServer/html/search/variables_16.js
+share/doc/qore/modules/HttpServer/html/search/variables_17.html
+share/doc/qore/modules/HttpServer/html/search/variables_17.js
 share/doc/qore/modules/HttpServer/html/search/variables_2.html
 share/doc/qore/modules/HttpServer/html/search/variables_2.js
 share/doc/qore/modules/HttpServer/html/search/variables_3.html
@@ -5659,16 +8318,18 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/HttpServerUtil/html/group__call__type__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__compression__constants.js
+share/doc/qore/modules/HttpServerUtil/html/group__compression__transformations.js
 share/doc/qore/modules/HttpServerUtil/html/group__compresssion__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__context__functions.js
+share/doc/qore/modules/HttpServerUtil/html/group__crypto__transformations.js
 share/doc/qore/modules/HttpServerUtil/html/group__cryptographic__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__cryptographic__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__database__driver__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__date__and__time__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__dbi__capabilities.js
 share/doc/qore/modules/HttpServerUtil/html/group__dbi__functions.js
-share/doc/qore/modules/HttpServerUtil/html/group__debug__rc__options.js
-share/doc/qore/modules/HttpServerUtil/html/group__debug__step__options.js
+share/doc/qore/modules/HttpServerUtil/html/group__debug__flow__options.js
+share/doc/qore/modules/HttpServerUtil/html/group__debug__rs__options.js
 share/doc/qore/modules/HttpServerUtil/html/group__digest__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__env__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__error__constants.js
@@ -5692,6 +8353,7 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/group__network__address__information__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__null__and__nothing__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__number__formatting__constants.js
+share/doc/qore/modules/HttpServerUtil/html/group__number__string__formatting__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__object__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__old__dbi__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__option__constants.js
@@ -5704,10 +8366,10 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/group__signal__handling__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__socket__type__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__sql__constants.js
+share/doc/qore/modules/HttpServerUtil/html/group__ssl__mode__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__string__functions.js
 share/doc/qore/modules/HttpServerUtil/html/group__string__type__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__system__and__build__constants.js
-share/doc/qore/modules/HttpServerUtil/html/group__t.js
 share/doc/qore/modules/HttpServerUtil/html/group__tattr__control__character__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__tattr__control__mode__constants.js
 share/doc/qore/modules/HttpServerUtil/html/group__tattr__input__mode__constants.js
@@ -5737,6 +8399,12 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/inherit_graph_3.map
 share/doc/qore/modules/HttpServerUtil/html/inherit_graph_3.md5
 share/doc/qore/modules/HttpServerUtil/html/inherit_graph_3.png
+share/doc/qore/modules/HttpServerUtil/html/inherit_graph_4.map
+share/doc/qore/modules/HttpServerUtil/html/inherit_graph_4.md5
+share/doc/qore/modules/HttpServerUtil/html/inherit_graph_4.png
+share/doc/qore/modules/HttpServerUtil/html/inherit_graph_5.map
+share/doc/qore/modules/HttpServerUtil/html/inherit_graph_5.md5
+share/doc/qore/modules/HttpServerUtil/html/inherit_graph_5.png
 share/doc/qore/modules/HttpServerUtil/html/inherits.html
 share/doc/qore/modules/HttpServerUtil/html/jquery.js
 share/doc/qore/modules/HttpServerUtil/html/menu.js
@@ -5762,6 +8430,7 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/navtreeindex3.js
 share/doc/qore/modules/HttpServerUtil/html/navtreeindex4.js
 share/doc/qore/modules/HttpServerUtil/html/navtreeindex5.js
+share/doc/qore/modules/HttpServerUtil/html/navtreeindex6.js
 share/doc/qore/modules/HttpServerUtil/html/open.png
 share/doc/qore/modules/HttpServerUtil/html/pages.html
 share/doc/qore/modules/HttpServerUtil/html/resize.js
@@ -5827,6 +8496,8 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/search/classes_10.js
 share/doc/qore/modules/HttpServerUtil/html/search/classes_11.html
 share/doc/qore/modules/HttpServerUtil/html/search/classes_11.js
+share/doc/qore/modules/HttpServerUtil/html/search/classes_12.html
+share/doc/qore/modules/HttpServerUtil/html/search/classes_12.js
 share/doc/qore/modules/HttpServerUtil/html/search/classes_2.html
 share/doc/qore/modules/HttpServerUtil/html/search/classes_2.js
 share/doc/qore/modules/HttpServerUtil/html/search/classes_3.html
@@ -5951,10 +8622,6 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/search/namespaces_2.js
 share/doc/qore/modules/HttpServerUtil/html/search/namespaces_3.html
 share/doc/qore/modules/HttpServerUtil/html/search/namespaces_3.js
-share/doc/qore/modules/HttpServerUtil/html/search/namespaces_4.html
-share/doc/qore/modules/HttpServerUtil/html/search/namespaces_4.js
-share/doc/qore/modules/HttpServerUtil/html/search/namespaces_5.html
-share/doc/qore/modules/HttpServerUtil/html/search/namespaces_5.js
 share/doc/qore/modules/HttpServerUtil/html/search/nomatches.html
 share/doc/qore/modules/HttpServerUtil/html/search/pages_0.html
 share/doc/qore/modules/HttpServerUtil/html/search/pages_0.js
@@ -6016,6 +8683,10 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/search/variables_14.js
 share/doc/qore/modules/HttpServerUtil/html/search/variables_15.html
 share/doc/qore/modules/HttpServerUtil/html/search/variables_15.js
+share/doc/qore/modules/HttpServerUtil/html/search/variables_16.html
+share/doc/qore/modules/HttpServerUtil/html/search/variables_16.js
+share/doc/qore/modules/HttpServerUtil/html/search/variables_17.html
+share/doc/qore/modules/HttpServerUtil/html/search/variables_17.js
 share/doc/qore/modules/HttpServerUtil/html/search/variables_2.html
 share/doc/qore/modules/HttpServerUtil/html/search/variables_2.js
 share/doc/qore/modules/HttpServerUtil/html/search/variables_3.html
@@ -6045,6 +8716,12 @@ share/doc/qore/modules/HttpServerUtil/ht
 share/doc/qore/modules/HttpServerUtil/html/search/variables_f.html
 share/doc/qore/modules/HttpServerUtil/html/search/variables_f.js
 share/doc/qore/modules/HttpServerUtil/html/splitbar.png
+share/doc/qore/modules/HttpServerUtil/html/struct_http_server_1_1_http_handler_response_info-members.html
+share/doc/qore/modules/HttpServerUtil/html/struct_http_server_1_1_http_handler_response_info.html
+share/doc/qore/modules/HttpServerUtil/html/struct_http_server_1_1_http_handler_response_info.js
+share/doc/qore/modules/HttpServerUtil/html/struct_http_server_1_1_http_response_info-members.html
+share/doc/qore/modules/HttpServerUtil/html/struct_http_server_1_1_http_response_info.html
+share/doc/qore/modules/HttpServerUtil/html/struct_http_server_1_1_http_response_info.js
 share/doc/qore/modules/HttpServerUtil/html/sync_off.png
 share/doc/qore/modules/HttpServerUtil/html/sync_on.png
 share/doc/qore/modules/HttpServerUtil/html/tab_a.png
@@ -6103,16 +8780,18 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/MailMessage/html/group__call__type__constants.js
 share/doc/qore/modules/MailMessage/html/group__compression__constants.js
+share/doc/qore/modules/MailMessage/html/group__compression__transformations.js
 share/doc/qore/modules/MailMessage/html/group__compresssion__functions.js
 share/doc/qore/modules/MailMessage/html/group__context__functions.js
+share/doc/qore/modules/MailMessage/html/group__crypto__transformations.js
 share/doc/qore/modules/MailMessage/html/group__cryptographic__constants.js
 share/doc/qore/modules/MailMessage/html/group__cryptographic__functions.js
 share/doc/qore/modules/MailMessage/html/group__database__driver__constants.js
 share/doc/qore/modules/MailMessage/html/group__date__and__time__functions.js
 share/doc/qore/modules/MailMessage/html/group__dbi__capabilities.js
 share/doc/qore/modules/MailMessage/html/group__dbi__functions.js
-share/doc/qore/modules/MailMessage/html/group__debug__rc__options.js
-share/doc/qore/modules/MailMessage/html/group__debug__step__options.js
+share/doc/qore/modules/MailMessage/html/group__debug__flow__options.js
+share/doc/qore/modules/MailMessage/html/group__debug__rs__options.js
 share/doc/qore/modules/MailMessage/html/group__digest__functions.js
 share/doc/qore/modules/MailMessage/html/group__env__functions.js
 share/doc/qore/modules/MailMessage/html/group__error__constants.js
@@ -6136,6 +8815,7 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/group__network__address__information__constants.js
 share/doc/qore/modules/MailMessage/html/group__null__and__nothing__constants.js
 share/doc/qore/modules/MailMessage/html/group__number__formatting__constants.js
+share/doc/qore/modules/MailMessage/html/group__number__string__formatting__constants.js
 share/doc/qore/modules/MailMessage/html/group__object__functions.js
 share/doc/qore/modules/MailMessage/html/group__old__dbi__functions.js
 share/doc/qore/modules/MailMessage/html/group__option__constants.js
@@ -6148,10 +8828,10 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/group__signal__handling__functions.js
 share/doc/qore/modules/MailMessage/html/group__socket__type__constants.js
 share/doc/qore/modules/MailMessage/html/group__sql__constants.js
+share/doc/qore/modules/MailMessage/html/group__ssl__mode__constants.js
 share/doc/qore/modules/MailMessage/html/group__string__functions.js
 share/doc/qore/modules/MailMessage/html/group__string__type__constants.js
 share/doc/qore/modules/MailMessage/html/group__system__and__build__constants.js
-share/doc/qore/modules/MailMessage/html/group__t.js
 share/doc/qore/modules/MailMessage/html/group__tattr__control__character__constants.js
 share/doc/qore/modules/MailMessage/html/group__tattr__control__mode__constants.js
 share/doc/qore/modules/MailMessage/html/group__tattr__input__mode__constants.js
@@ -6199,6 +8879,7 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/navtreeindex3.js
 share/doc/qore/modules/MailMessage/html/navtreeindex4.js
 share/doc/qore/modules/MailMessage/html/navtreeindex5.js
+share/doc/qore/modules/MailMessage/html/navtreeindex6.js
 share/doc/qore/modules/MailMessage/html/open.png
 share/doc/qore/modules/MailMessage/html/pages.html
 share/doc/qore/modules/MailMessage/html/resize.js
@@ -6384,10 +9065,6 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/search/namespaces_0.js
 share/doc/qore/modules/MailMessage/html/search/namespaces_1.html
 share/doc/qore/modules/MailMessage/html/search/namespaces_1.js
-share/doc/qore/modules/MailMessage/html/search/namespaces_2.html
-share/doc/qore/modules/MailMessage/html/search/namespaces_2.js
-share/doc/qore/modules/MailMessage/html/search/namespaces_3.html
-share/doc/qore/modules/MailMessage/html/search/namespaces_3.js
 share/doc/qore/modules/MailMessage/html/search/nomatches.html
 share/doc/qore/modules/MailMessage/html/search/pages_0.html
 share/doc/qore/modules/MailMessage/html/search/pages_0.js
@@ -6397,6 +9074,8 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/search/pages_10.js
 share/doc/qore/modules/MailMessage/html/search/pages_11.html
 share/doc/qore/modules/MailMessage/html/search/pages_11.js
+share/doc/qore/modules/MailMessage/html/search/pages_12.html
+share/doc/qore/modules/MailMessage/html/search/pages_12.js
 share/doc/qore/modules/MailMessage/html/search/pages_2.html
 share/doc/qore/modules/MailMessage/html/search/pages_2.js
 share/doc/qore/modules/MailMessage/html/search/pages_3.html
@@ -6447,6 +9126,10 @@ share/doc/qore/modules/MailMessage/html/
 share/doc/qore/modules/MailMessage/html/search/variables_14.js
 share/doc/qore/modules/MailMessage/html/search/variables_15.html
 share/doc/qore/modules/MailMessage/html/search/variables_15.js
+share/doc/qore/modules/MailMessage/html/search/variables_16.html
+share/doc/qore/modules/MailMessage/html/search/variables_16.js
+share/doc/qore/modules/MailMessage/html/search/variables_17.html
+share/doc/qore/modules/MailMessage/html/search/variables_17.js
 share/doc/qore/modules/MailMessage/html/search/variables_2.html
 share/doc/qore/modules/MailMessage/html/search/variables_2.js
 share/doc/qore/modules/MailMessage/html/search/variables_3.html
@@ -6730,10 +9413,6 @@ share/doc/qore/modules/Mapper/html/searc
 share/doc/qore/modules/Mapper/html/search/namespaces_0.js
 share/doc/qore/modules/Mapper/html/search/namespaces_1.html
 share/doc/qore/modules/Mapper/html/search/namespaces_1.js
-share/doc/qore/modules/Mapper/html/search/namespaces_2.html
-share/doc/qore/modules/Mapper/html/search/namespaces_2.js
-share/doc/qore/modules/Mapper/html/search/namespaces_3.html
-share/doc/qore/modules/Mapper/html/search/namespaces_3.js
 share/doc/qore/modules/Mapper/html/search/nomatches.html
 share/doc/qore/modules/Mapper/html/search/pages_0.html
 share/doc/qore/modules/Mapper/html/search/pages_0.js
@@ -6743,6 +9422,8 @@ share/doc/qore/modules/Mapper/html/searc
 share/doc/qore/modules/Mapper/html/search/pages_10.js
 share/doc/qore/modules/Mapper/html/search/pages_11.html
 share/doc/qore/modules/Mapper/html/search/pages_11.js
+share/doc/qore/modules/Mapper/html/search/pages_12.html
+share/doc/qore/modules/Mapper/html/search/pages_12.js
 share/doc/qore/modules/Mapper/html/search/pages_2.html
 share/doc/qore/modules/Mapper/html/search/pages_2.js
 share/doc/qore/modules/Mapper/html/search/pages_3.html
@@ -6791,6 +9472,12 @@ share/doc/qore/modules/Mapper/html/searc
 share/doc/qore/modules/Mapper/html/search/variables_13.js
 share/doc/qore/modules/Mapper/html/search/variables_14.html
 share/doc/qore/modules/Mapper/html/search/variables_14.js
+share/doc/qore/modules/Mapper/html/search/variables_15.html
+share/doc/qore/modules/Mapper/html/search/variables_15.js
+share/doc/qore/modules/Mapper/html/search/variables_16.html
+share/doc/qore/modules/Mapper/html/search/variables_16.js
+share/doc/qore/modules/Mapper/html/search/variables_17.html
+share/doc/qore/modules/Mapper/html/search/variables_17.js
 share/doc/qore/modules/Mapper/html/search/variables_2.html
 share/doc/qore/modules/Mapper/html/search/variables_2.js
 share/doc/qore/modules/Mapper/html/search/variables_3.html
@@ -6832,6 +9519,12 @@ share/doc/qore/modules/Mime/html/annotat
 share/doc/qore/modules/Mime/html/annotated_dup.js
 share/doc/qore/modules/Mime/html/bc_s.png
 share/doc/qore/modules/Mime/html/bdwn.png
+share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_form_data_message-members.html
+share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_form_data_message.html
+share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_form_data_message.js
+share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_form_data_message__inherit__graph.map
+share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_form_data_message__inherit__graph.md5
+share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_form_data_message__inherit__graph.png
 share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_message-members.html
 share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_message.html
 share/doc/qore/modules/Mime/html/class_mime_1_1_multi_part_message.js
@@ -6862,6 +9555,7 @@ share/doc/qore/modules/Mime/html/folderc
 share/doc/qore/modules/Mime/html/folderopen.png
 share/doc/qore/modules/Mime/html/functions.html
 share/doc/qore/modules/Mime/html/functions_func.html
+share/doc/qore/modules/Mime/html/functions_vars.html
 share/doc/qore/modules/Mime/html/graph_legend.html
 share/doc/qore/modules/Mime/html/graph_legend.md5
 share/doc/qore/modules/Mime/html/graph_legend.png
@@ -6884,16 +9578,18 @@ share/doc/qore/modules/Mime/html/group__
 share/doc/qore/modules/Mime/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/Mime/html/group__call__type__constants.js
 share/doc/qore/modules/Mime/html/group__compression__constants.js
+share/doc/qore/modules/Mime/html/group__compression__transformations.js
 share/doc/qore/modules/Mime/html/group__compresssion__functions.js
 share/doc/qore/modules/Mime/html/group__context__functions.js
+share/doc/qore/modules/Mime/html/group__crypto__transformations.js
 share/doc/qore/modules/Mime/html/group__cryptographic__constants.js
 share/doc/qore/modules/Mime/html/group__cryptographic__functions.js
 share/doc/qore/modules/Mime/html/group__database__driver__constants.js
 share/doc/qore/modules/Mime/html/group__date__and__time__functions.js
 share/doc/qore/modules/Mime/html/group__dbi__capabilities.js
 share/doc/qore/modules/Mime/html/group__dbi__functions.js
-share/doc/qore/modules/Mime/html/group__debug__rc__options.js
-share/doc/qore/modules/Mime/html/group__debug__step__options.js
+share/doc/qore/modules/Mime/html/group__debug__flow__options.js
+share/doc/qore/modules/Mime/html/group__debug__rs__options.js
 share/doc/qore/modules/Mime/html/group__digest__functions.js
 share/doc/qore/modules/Mime/html/group__env__functions.js
 share/doc/qore/modules/Mime/html/group__error__constants.js
@@ -6917,6 +9613,7 @@ share/doc/qore/modules/Mime/html/group__
 share/doc/qore/modules/Mime/html/group__network__address__information__constants.js
 share/doc/qore/modules/Mime/html/group__null__and__nothing__constants.js
 share/doc/qore/modules/Mime/html/group__number__formatting__constants.js
+share/doc/qore/modules/Mime/html/group__number__string__formatting__constants.js
 share/doc/qore/modules/Mime/html/group__object__functions.js
 share/doc/qore/modules/Mime/html/group__old__dbi__functions.js
 share/doc/qore/modules/Mime/html/group__option__constants.js
@@ -6929,10 +9626,10 @@ share/doc/qore/modules/Mime/html/group__
 share/doc/qore/modules/Mime/html/group__signal__handling__functions.js
 share/doc/qore/modules/Mime/html/group__socket__type__constants.js
 share/doc/qore/modules/Mime/html/group__sql__constants.js
+share/doc/qore/modules/Mime/html/group__ssl__mode__constants.js
 share/doc/qore/modules/Mime/html/group__string__functions.js
 share/doc/qore/modules/Mime/html/group__string__type__constants.js
 share/doc/qore/modules/Mime/html/group__system__and__build__constants.js
-share/doc/qore/modules/Mime/html/group__t.js
 share/doc/qore/modules/Mime/html/group__tattr__control__character__constants.js
 share/doc/qore/modules/Mime/html/group__tattr__control__mode__constants.js
 share/doc/qore/modules/Mime/html/group__tattr__input__mode__constants.js
@@ -6953,6 +9650,15 @@ share/doc/qore/modules/Mime/html/index.q
 share/doc/qore/modules/Mime/html/inherit_graph_0.map
 share/doc/qore/modules/Mime/html/inherit_graph_0.md5
 share/doc/qore/modules/Mime/html/inherit_graph_0.png
+share/doc/qore/modules/Mime/html/inherit_graph_1.map
+share/doc/qore/modules/Mime/html/inherit_graph_1.md5
+share/doc/qore/modules/Mime/html/inherit_graph_1.png
+share/doc/qore/modules/Mime/html/inherit_graph_2.map
+share/doc/qore/modules/Mime/html/inherit_graph_2.md5
+share/doc/qore/modules/Mime/html/inherit_graph_2.png
+share/doc/qore/modules/Mime/html/inherit_graph_3.map
+share/doc/qore/modules/Mime/html/inherit_graph_3.md5
+share/doc/qore/modules/Mime/html/inherit_graph_3.png
 share/doc/qore/modules/Mime/html/inherits.html
 share/doc/qore/modules/Mime/html/jquery.js
 share/doc/qore/modules/Mime/html/menu.js
@@ -6978,6 +9684,7 @@ share/doc/qore/modules/Mime/html/navtree
 share/doc/qore/modules/Mime/html/navtreeindex3.js
 share/doc/qore/modules/Mime/html/navtreeindex4.js
 share/doc/qore/modules/Mime/html/navtreeindex5.js
+share/doc/qore/modules/Mime/html/navtreeindex6.js
 share/doc/qore/modules/Mime/html/open.png
 share/doc/qore/modules/Mime/html/pages.html
 share/doc/qore/modules/Mime/html/resize.js
@@ -7163,10 +9870,6 @@ share/doc/qore/modules/Mime/html/search/
 share/doc/qore/modules/Mime/html/search/namespaces_0.js
 share/doc/qore/modules/Mime/html/search/namespaces_1.html
 share/doc/qore/modules/Mime/html/search/namespaces_1.js
-share/doc/qore/modules/Mime/html/search/namespaces_2.html
-share/doc/qore/modules/Mime/html/search/namespaces_2.js
-share/doc/qore/modules/Mime/html/search/namespaces_3.html
-share/doc/qore/modules/Mime/html/search/namespaces_3.js
 share/doc/qore/modules/Mime/html/search/nomatches.html
 share/doc/qore/modules/Mime/html/search/pages_0.html
 share/doc/qore/modules/Mime/html/search/pages_0.js
@@ -7176,6 +9879,8 @@ share/doc/qore/modules/Mime/html/search/
 share/doc/qore/modules/Mime/html/search/pages_10.js
 share/doc/qore/modules/Mime/html/search/pages_11.html
 share/doc/qore/modules/Mime/html/search/pages_11.js
+share/doc/qore/modules/Mime/html/search/pages_12.html
+share/doc/qore/modules/Mime/html/search/pages_12.js
 share/doc/qore/modules/Mime/html/search/pages_2.html
 share/doc/qore/modules/Mime/html/search/pages_2.js
 share/doc/qore/modules/Mime/html/search/pages_3.html
@@ -7226,6 +9931,10 @@ share/doc/qore/modules/Mime/html/search/
 share/doc/qore/modules/Mime/html/search/variables_14.js
 share/doc/qore/modules/Mime/html/search/variables_15.html
 share/doc/qore/modules/Mime/html/search/variables_15.js
+share/doc/qore/modules/Mime/html/search/variables_16.html
+share/doc/qore/modules/Mime/html/search/variables_16.js
+share/doc/qore/modules/Mime/html/search/variables_17.html
+share/doc/qore/modules/Mime/html/search/variables_17.js
 share/doc/qore/modules/Mime/html/search/variables_2.html
 share/doc/qore/modules/Mime/html/search/variables_2.js
 share/doc/qore/modules/Mime/html/search/variables_3.html
@@ -7255,6 +9964,15 @@ share/doc/qore/modules/Mime/html/search/
 share/doc/qore/modules/Mime/html/search/variables_f.html
 share/doc/qore/modules/Mime/html/search/variables_f.js
 share/doc/qore/modules/Mime/html/splitbar.png
+share/doc/qore/modules/Mime/html/struct_mime_1_1_form_data_message_info-members.html
+share/doc/qore/modules/Mime/html/struct_mime_1_1_form_data_message_info.html
+share/doc/qore/modules/Mime/html/struct_mime_1_1_form_data_message_info.js
+share/doc/qore/modules/Mime/html/struct_mime_1_1_message_info-members.html
+share/doc/qore/modules/Mime/html/struct_mime_1_1_message_info.html
+share/doc/qore/modules/Mime/html/struct_mime_1_1_message_info.js
+share/doc/qore/modules/Mime/html/struct_mime_1_1_message_part_info-members.html
+share/doc/qore/modules/Mime/html/struct_mime_1_1_message_part_info.html
+share/doc/qore/modules/Mime/html/struct_mime_1_1_message_part_info.js
 share/doc/qore/modules/Mime/html/sync_off.png
 share/doc/qore/modules/Mime/html/sync_on.png
 share/doc/qore/modules/Mime/html/tab_a.png
@@ -7458,6 +10176,14 @@ share/doc/qore/modules/MysqlSqlUtil/html
 share/doc/qore/modules/MysqlSqlUtil/html/search/classes_11.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/classes_12.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/classes_12.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/classes_13.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/classes_13.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/classes_14.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/classes_14.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/classes_15.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/classes_15.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/classes_16.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/classes_16.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/classes_2.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/classes_2.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/classes_3.html
@@ -7509,6 +10235,8 @@ share/doc/qore/modules/MysqlSqlUtil/html
 share/doc/qore/modules/MysqlSqlUtil/html/search/functions_17.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/functions_18.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/functions_18.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/functions_19.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/functions_19.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/functions_2.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/functions_2.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/functions_3.html
@@ -7601,6 +10329,8 @@ share/doc/qore/modules/MysqlSqlUtil/html
 share/doc/qore/modules/MysqlSqlUtil/html/search/pages_10.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/pages_11.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/pages_11.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/pages_12.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/pages_12.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/pages_2.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/pages_2.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/pages_3.html
@@ -7655,6 +10385,10 @@ share/doc/qore/modules/MysqlSqlUtil/html
 share/doc/qore/modules/MysqlSqlUtil/html/search/variables_16.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/variables_17.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/variables_17.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/variables_18.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/variables_18.js
+share/doc/qore/modules/MysqlSqlUtil/html/search/variables_19.html
+share/doc/qore/modules/MysqlSqlUtil/html/search/variables_19.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/variables_2.html
 share/doc/qore/modules/MysqlSqlUtil/html/search/variables_2.js
 share/doc/qore/modules/MysqlSqlUtil/html/search/variables_3.html
@@ -7934,6 +10668,14 @@ share/doc/qore/modules/OracleSqlUtil/htm
 share/doc/qore/modules/OracleSqlUtil/html/search/classes_11.js
 share/doc/qore/modules/OracleSqlUtil/html/search/classes_12.html
 share/doc/qore/modules/OracleSqlUtil/html/search/classes_12.js
+share/doc/qore/modules/OracleSqlUtil/html/search/classes_13.html
+share/doc/qore/modules/OracleSqlUtil/html/search/classes_13.js
+share/doc/qore/modules/OracleSqlUtil/html/search/classes_14.html
+share/doc/qore/modules/OracleSqlUtil/html/search/classes_14.js
+share/doc/qore/modules/OracleSqlUtil/html/search/classes_15.html
+share/doc/qore/modules/OracleSqlUtil/html/search/classes_15.js
+share/doc/qore/modules/OracleSqlUtil/html/search/classes_16.html
+share/doc/qore/modules/OracleSqlUtil/html/search/classes_16.js
 share/doc/qore/modules/OracleSqlUtil/html/search/classes_2.html
 share/doc/qore/modules/OracleSqlUtil/html/search/classes_2.js
 share/doc/qore/modules/OracleSqlUtil/html/search/classes_3.html
@@ -7985,6 +10727,8 @@ share/doc/qore/modules/OracleSqlUtil/htm
 share/doc/qore/modules/OracleSqlUtil/html/search/functions_17.js
 share/doc/qore/modules/OracleSqlUtil/html/search/functions_18.html
 share/doc/qore/modules/OracleSqlUtil/html/search/functions_18.js
+share/doc/qore/modules/OracleSqlUtil/html/search/functions_19.html
+share/doc/qore/modules/OracleSqlUtil/html/search/functions_19.js
 share/doc/qore/modules/OracleSqlUtil/html/search/functions_2.html
 share/doc/qore/modules/OracleSqlUtil/html/search/functions_2.js
 share/doc/qore/modules/OracleSqlUtil/html/search/functions_3.html
@@ -8079,6 +10823,8 @@ share/doc/qore/modules/OracleSqlUtil/htm
 share/doc/qore/modules/OracleSqlUtil/html/search/pages_10.js
 share/doc/qore/modules/OracleSqlUtil/html/search/pages_11.html
 share/doc/qore/modules/OracleSqlUtil/html/search/pages_11.js
+share/doc/qore/modules/OracleSqlUtil/html/search/pages_12.html
+share/doc/qore/modules/OracleSqlUtil/html/search/pages_12.js
 share/doc/qore/modules/OracleSqlUtil/html/search/pages_2.html
 share/doc/qore/modules/OracleSqlUtil/html/search/pages_2.js
 share/doc/qore/modules/OracleSqlUtil/html/search/pages_3.html
@@ -8133,6 +10879,10 @@ share/doc/qore/modules/OracleSqlUtil/htm
 share/doc/qore/modules/OracleSqlUtil/html/search/variables_16.js
 share/doc/qore/modules/OracleSqlUtil/html/search/variables_17.html
 share/doc/qore/modules/OracleSqlUtil/html/search/variables_17.js
+share/doc/qore/modules/OracleSqlUtil/html/search/variables_18.html
+share/doc/qore/modules/OracleSqlUtil/html/search/variables_18.js
+share/doc/qore/modules/OracleSqlUtil/html/search/variables_19.html
+share/doc/qore/modules/OracleSqlUtil/html/search/variables_19.js
 share/doc/qore/modules/OracleSqlUtil/html/search/variables_2.html
 share/doc/qore/modules/OracleSqlUtil/html/search/variables_2.js
 share/doc/qore/modules/OracleSqlUtil/html/search/variables_3.html
@@ -8395,6 +11145,14 @@ share/doc/qore/modules/PgsqlSqlUtil/html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_11.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_12.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_12.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_13.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_13.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_14.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_14.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_15.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_15.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_16.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_16.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_2.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_2.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/classes_3.html
@@ -8446,6 +11204,8 @@ share/doc/qore/modules/PgsqlSqlUtil/html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/functions_17.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/functions_18.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/functions_18.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/functions_19.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/functions_19.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/functions_2.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/functions_2.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/functions_3.html
@@ -8540,6 +11300,8 @@ share/doc/qore/modules/PgsqlSqlUtil/html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_10.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_11.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_11.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_12.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_12.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_2.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_2.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/pages_3.html
@@ -8594,6 +11356,10 @@ share/doc/qore/modules/PgsqlSqlUtil/html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_16.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_17.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_17.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_18.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_18.js
+share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_19.html
+share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_19.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_2.html
 share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_2.js
 share/doc/qore/modules/PgsqlSqlUtil/html/search/variables_3.html
@@ -8638,6 +11404,12 @@ share/doc/qore/modules/Pop3Client/html/b
 share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_client-members.html
 share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_client.html
 share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_client.js
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection-members.html
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection.html
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection.js
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection__inherit__graph.map
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection__inherit__graph.md5
+share/doc/qore/modules/Pop3Client/html/class_pop3_client_1_1_pop3_connection__inherit__graph.png
 share/doc/qore/modules/Pop3Client/html/classes.html
 share/doc/qore/modules/Pop3Client/html/closed.png
 share/doc/qore/modules/Pop3Client/html/dir_13add0083e006ac756009d5942a24d28.html
@@ -8654,8 +11426,17 @@ share/doc/qore/modules/Pop3Client/html/f
 share/doc/qore/modules/Pop3Client/html/graph_legend.html
 share/doc/qore/modules/Pop3Client/html/graph_legend.md5
 share/doc/qore/modules/Pop3Client/html/graph_legend.png
+share/doc/qore/modules/Pop3Client/html/hierarchy.html
+share/doc/qore/modules/Pop3Client/html/hierarchy.js
 share/doc/qore/modules/Pop3Client/html/index.html
 share/doc/qore/modules/Pop3Client/html/index.qhp
+share/doc/qore/modules/Pop3Client/html/inherit_graph_0.map
+share/doc/qore/modules/Pop3Client/html/inherit_graph_0.md5
+share/doc/qore/modules/Pop3Client/html/inherit_graph_0.png
+share/doc/qore/modules/Pop3Client/html/inherit_graph_1.map
+share/doc/qore/modules/Pop3Client/html/inherit_graph_1.md5
+share/doc/qore/modules/Pop3Client/html/inherit_graph_1.png
+share/doc/qore/modules/Pop3Client/html/inherits.html
 share/doc/qore/modules/Pop3Client/html/jquery.js
 share/doc/qore/modules/Pop3Client/html/menu.js
 share/doc/qore/modules/Pop3Client/html/menudata.js
@@ -8739,6 +11520,14 @@ share/doc/qore/modules/Pop3Client/html/s
 share/doc/qore/modules/Pop3Client/html/search/classes_11.js
 share/doc/qore/modules/Pop3Client/html/search/classes_12.html
 share/doc/qore/modules/Pop3Client/html/search/classes_12.js
+share/doc/qore/modules/Pop3Client/html/search/classes_13.html
+share/doc/qore/modules/Pop3Client/html/search/classes_13.js
+share/doc/qore/modules/Pop3Client/html/search/classes_14.html
+share/doc/qore/modules/Pop3Client/html/search/classes_14.js
+share/doc/qore/modules/Pop3Client/html/search/classes_15.html
+share/doc/qore/modules/Pop3Client/html/search/classes_15.js
+share/doc/qore/modules/Pop3Client/html/search/classes_16.html
+share/doc/qore/modules/Pop3Client/html/search/classes_16.js
 share/doc/qore/modules/Pop3Client/html/search/classes_2.html
 share/doc/qore/modules/Pop3Client/html/search/classes_2.js
 share/doc/qore/modules/Pop3Client/html/search/classes_3.html
@@ -8790,6 +11579,8 @@ share/doc/qore/modules/Pop3Client/html/s
 share/doc/qore/modules/Pop3Client/html/search/functions_17.js
 share/doc/qore/modules/Pop3Client/html/search/functions_18.html
 share/doc/qore/modules/Pop3Client/html/search/functions_18.js
+share/doc/qore/modules/Pop3Client/html/search/functions_19.html
+share/doc/qore/modules/Pop3Client/html/search/functions_19.js
 share/doc/qore/modules/Pop3Client/html/search/functions_2.html
 share/doc/qore/modules/Pop3Client/html/search/functions_2.js
 share/doc/qore/modules/Pop3Client/html/search/functions_3.html
@@ -8884,6 +11675,8 @@ share/doc/qore/modules/Pop3Client/html/s
 share/doc/qore/modules/Pop3Client/html/search/pages_10.js
 share/doc/qore/modules/Pop3Client/html/search/pages_11.html
 share/doc/qore/modules/Pop3Client/html/search/pages_11.js
+share/doc/qore/modules/Pop3Client/html/search/pages_12.html
+share/doc/qore/modules/Pop3Client/html/search/pages_12.js
 share/doc/qore/modules/Pop3Client/html/search/pages_2.html
 share/doc/qore/modules/Pop3Client/html/search/pages_2.js
 share/doc/qore/modules/Pop3Client/html/search/pages_3.html
@@ -8938,6 +11731,10 @@ share/doc/qore/modules/Pop3Client/html/s
 share/doc/qore/modules/Pop3Client/html/search/variables_16.js
 share/doc/qore/modules/Pop3Client/html/search/variables_17.html
 share/doc/qore/modules/Pop3Client/html/search/variables_17.js
+share/doc/qore/modules/Pop3Client/html/search/variables_18.html
+share/doc/qore/modules/Pop3Client/html/search/variables_18.js
+share/doc/qore/modules/Pop3Client/html/search/variables_19.html
+share/doc/qore/modules/Pop3Client/html/search/variables_19.js
 share/doc/qore/modules/Pop3Client/html/search/variables_2.html
 share/doc/qore/modules/Pop3Client/html/search/variables_2.js
 share/doc/qore/modules/Pop3Client/html/search/variables_3.html
@@ -9163,6 +11960,14 @@ share/doc/qore/modules/QUnit/html/search
 share/doc/qore/modules/QUnit/html/search/classes_11.js
 share/doc/qore/modules/QUnit/html/search/classes_12.html
 share/doc/qore/modules/QUnit/html/search/classes_12.js
+share/doc/qore/modules/QUnit/html/search/classes_13.html
+share/doc/qore/modules/QUnit/html/search/classes_13.js
+share/doc/qore/modules/QUnit/html/search/classes_14.html
+share/doc/qore/modules/QUnit/html/search/classes_14.js
+share/doc/qore/modules/QUnit/html/search/classes_15.html
+share/doc/qore/modules/QUnit/html/search/classes_15.js
+share/doc/qore/modules/QUnit/html/search/classes_16.html
+share/doc/qore/modules/QUnit/html/search/classes_16.js
 share/doc/qore/modules/QUnit/html/search/classes_2.html
 share/doc/qore/modules/QUnit/html/search/classes_2.js
 share/doc/qore/modules/QUnit/html/search/classes_3.html
@@ -9214,6 +12019,8 @@ share/doc/qore/modules/QUnit/html/search
 share/doc/qore/modules/QUnit/html/search/functions_17.js
 share/doc/qore/modules/QUnit/html/search/functions_18.html
 share/doc/qore/modules/QUnit/html/search/functions_18.js
+share/doc/qore/modules/QUnit/html/search/functions_19.html
+share/doc/qore/modules/QUnit/html/search/functions_19.js
 share/doc/qore/modules/QUnit/html/search/functions_2.html
 share/doc/qore/modules/QUnit/html/search/functions_2.js
 share/doc/qore/modules/QUnit/html/search/functions_3.html
@@ -9306,6 +12113,8 @@ share/doc/qore/modules/QUnit/html/search
 share/doc/qore/modules/QUnit/html/search/pages_10.js
 share/doc/qore/modules/QUnit/html/search/pages_11.html
 share/doc/qore/modules/QUnit/html/search/pages_11.js
+share/doc/qore/modules/QUnit/html/search/pages_12.html
+share/doc/qore/modules/QUnit/html/search/pages_12.js
 share/doc/qore/modules/QUnit/html/search/pages_2.html
 share/doc/qore/modules/QUnit/html/search/pages_2.js
 share/doc/qore/modules/QUnit/html/search/pages_3.html
@@ -9360,6 +12169,10 @@ share/doc/qore/modules/QUnit/html/search
 share/doc/qore/modules/QUnit/html/search/variables_16.js
 share/doc/qore/modules/QUnit/html/search/variables_17.html
 share/doc/qore/modules/QUnit/html/search/variables_17.js
+share/doc/qore/modules/QUnit/html/search/variables_18.html
+share/doc/qore/modules/QUnit/html/search/variables_18.js
+share/doc/qore/modules/QUnit/html/search/variables_19.html
+share/doc/qore/modules/QUnit/html/search/variables_19.js
 share/doc/qore/modules/QUnit/html/search/variables_2.html
 share/doc/qore/modules/QUnit/html/search/variables_2.js
 share/doc/qore/modules/QUnit/html/search/variables_3.html
@@ -9396,6 +12209,388 @@ share/doc/qore/modules/QUnit/html/tab_b.
 share/doc/qore/modules/QUnit/html/tab_h.png
 share/doc/qore/modules/QUnit/html/tab_s.png
 share/doc/qore/modules/QUnit/html/tabs.css
+share/doc/qore/modules/Qdx/html/_qdx_8qm_8dox_8h_source.html
+share/doc/qore/modules/Qdx/html/annotated.html
+share/doc/qore/modules/Qdx/html/annotated_dup.js
+share/doc/qore/modules/Qdx/html/bc_s.png
+share/doc/qore/modules/Qdx/html/bdwn.png
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_document_table_helper-members.html
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_document_table_helper.html
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_document_table_helper.js
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_document_table_input_stream_line_iterator-members.html
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_document_table_input_stream_line_iterator.html
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_document_table_input_stream_line_iterator.js
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_document_table_input_stream_line_iterator__inherit__graph.map
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_document_table_input_stream_line_iterator__inherit__graph.md5
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_document_table_input_stream_line_iterator__inherit__graph.png
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_input_stream_line_iterator-members.html
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_input_stream_line_iterator.html
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_input_stream_line_iterator.js
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_input_stream_line_iterator__inherit__graph.map
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_input_stream_line_iterator__inherit__graph.md5
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_input_stream_line_iterator__inherit__graph.png
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_tex_input_stream_line_iterator-members.html
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_tex_input_stream_line_iterator.html
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_tex_input_stream_line_iterator.js
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_tex_input_stream_line_iterator__inherit__graph.map
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_tex_input_stream_line_iterator__inherit__graph.md5
+share/doc/qore/modules/Qdx/html/class_qdx_1_1_qore_post_processing_tex_input_stream_line_iterator__inherit__graph.png
+share/doc/qore/modules/Qdx/html/classes.html
+share/doc/qore/modules/Qdx/html/closed.png
+share/doc/qore/modules/Qdx/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/Qdx/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/Qdx/html/doc.png
+share/doc/qore/modules/Qdx/html/doxygen.css
+share/doc/qore/modules/Qdx/html/doxygen.png
+share/doc/qore/modules/Qdx/html/dynsections.js
+share/doc/qore/modules/Qdx/html/folderclosed.png
+share/doc/qore/modules/Qdx/html/folderopen.png
+share/doc/qore/modules/Qdx/html/functions.html
+share/doc/qore/modules/Qdx/html/functions_func.html
+share/doc/qore/modules/Qdx/html/graph_legend.html
+share/doc/qore/modules/Qdx/html/graph_legend.md5
+share/doc/qore/modules/Qdx/html/graph_legend.png
+share/doc/qore/modules/Qdx/html/hierarchy.html
+share/doc/qore/modules/Qdx/html/hierarchy.js
+share/doc/qore/modules/Qdx/html/index.html
+share/doc/qore/modules/Qdx/html/index.qhp
+share/doc/qore/modules/Qdx/html/inherit_graph_0.map
+share/doc/qore/modules/Qdx/html/inherit_graph_0.md5
+share/doc/qore/modules/Qdx/html/inherit_graph_0.png
+share/doc/qore/modules/Qdx/html/inherit_graph_1.map
+share/doc/qore/modules/Qdx/html/inherit_graph_1.md5
+share/doc/qore/modules/Qdx/html/inherit_graph_1.png
+share/doc/qore/modules/Qdx/html/inherits.html
+share/doc/qore/modules/Qdx/html/jquery.js
+share/doc/qore/modules/Qdx/html/menu.js
+share/doc/qore/modules/Qdx/html/menudata.js
+share/doc/qore/modules/Qdx/html/namespace_qdx.html
+share/doc/qore/modules/Qdx/html/namespace_qdx.js
+share/doc/qore/modules/Qdx/html/namespaces.html
+share/doc/qore/modules/Qdx/html/namespaces.js
+share/doc/qore/modules/Qdx/html/nav_f.png
+share/doc/qore/modules/Qdx/html/nav_g.png
+share/doc/qore/modules/Qdx/html/nav_h.png
+share/doc/qore/modules/Qdx/html/navtree.css
+share/doc/qore/modules/Qdx/html/navtree.js
+share/doc/qore/modules/Qdx/html/navtreedata.js
+share/doc/qore/modules/Qdx/html/navtreeindex0.js
+share/doc/qore/modules/Qdx/html/open.png
+share/doc/qore/modules/Qdx/html/pages.html
+share/doc/qore/modules/Qdx/html/resize.js
+share/doc/qore/modules/Qdx/html/search/all_0.html
+share/doc/qore/modules/Qdx/html/search/all_0.js
+share/doc/qore/modules/Qdx/html/search/all_1.html
+share/doc/qore/modules/Qdx/html/search/all_1.js
+share/doc/qore/modules/Qdx/html/search/all_10.html
+share/doc/qore/modules/Qdx/html/search/all_10.js
+share/doc/qore/modules/Qdx/html/search/all_11.html
+share/doc/qore/modules/Qdx/html/search/all_11.js
+share/doc/qore/modules/Qdx/html/search/all_12.html
+share/doc/qore/modules/Qdx/html/search/all_12.js
+share/doc/qore/modules/Qdx/html/search/all_13.html
+share/doc/qore/modules/Qdx/html/search/all_13.js
+share/doc/qore/modules/Qdx/html/search/all_14.html
+share/doc/qore/modules/Qdx/html/search/all_14.js
+share/doc/qore/modules/Qdx/html/search/all_15.html
+share/doc/qore/modules/Qdx/html/search/all_15.js
+share/doc/qore/modules/Qdx/html/search/all_16.html
+share/doc/qore/modules/Qdx/html/search/all_16.js
+share/doc/qore/modules/Qdx/html/search/all_17.html
+share/doc/qore/modules/Qdx/html/search/all_17.js
+share/doc/qore/modules/Qdx/html/search/all_18.html
+share/doc/qore/modules/Qdx/html/search/all_18.js
+share/doc/qore/modules/Qdx/html/search/all_19.html
+share/doc/qore/modules/Qdx/html/search/all_19.js
+share/doc/qore/modules/Qdx/html/search/all_1a.html
+share/doc/qore/modules/Qdx/html/search/all_1a.js
+share/doc/qore/modules/Qdx/html/search/all_2.html
+share/doc/qore/modules/Qdx/html/search/all_2.js
+share/doc/qore/modules/Qdx/html/search/all_3.html
+share/doc/qore/modules/Qdx/html/search/all_3.js
+share/doc/qore/modules/Qdx/html/search/all_4.html
+share/doc/qore/modules/Qdx/html/search/all_4.js
+share/doc/qore/modules/Qdx/html/search/all_5.html
+share/doc/qore/modules/Qdx/html/search/all_5.js
+share/doc/qore/modules/Qdx/html/search/all_6.html
+share/doc/qore/modules/Qdx/html/search/all_6.js
+share/doc/qore/modules/Qdx/html/search/all_7.html
+share/doc/qore/modules/Qdx/html/search/all_7.js
+share/doc/qore/modules/Qdx/html/search/all_8.html
+share/doc/qore/modules/Qdx/html/search/all_8.js
+share/doc/qore/modules/Qdx/html/search/all_9.html
+share/doc/qore/modules/Qdx/html/search/all_9.js
+share/doc/qore/modules/Qdx/html/search/all_a.html
+share/doc/qore/modules/Qdx/html/search/all_a.js
+share/doc/qore/modules/Qdx/html/search/all_b.html
+share/doc/qore/modules/Qdx/html/search/all_b.js
+share/doc/qore/modules/Qdx/html/search/all_c.html
+share/doc/qore/modules/Qdx/html/search/all_c.js
+share/doc/qore/modules/Qdx/html/search/all_d.html
+share/doc/qore/modules/Qdx/html/search/all_d.js
+share/doc/qore/modules/Qdx/html/search/all_e.html
+share/doc/qore/modules/Qdx/html/search/all_e.js
+share/doc/qore/modules/Qdx/html/search/all_f.html
+share/doc/qore/modules/Qdx/html/search/all_f.js
+share/doc/qore/modules/Qdx/html/search/classes_0.html
+share/doc/qore/modules/Qdx/html/search/classes_0.js
+share/doc/qore/modules/Qdx/html/search/classes_1.html
+share/doc/qore/modules/Qdx/html/search/classes_1.js
+share/doc/qore/modules/Qdx/html/search/classes_10.html
+share/doc/qore/modules/Qdx/html/search/classes_10.js
+share/doc/qore/modules/Qdx/html/search/classes_11.html
+share/doc/qore/modules/Qdx/html/search/classes_11.js
+share/doc/qore/modules/Qdx/html/search/classes_12.html
+share/doc/qore/modules/Qdx/html/search/classes_12.js
+share/doc/qore/modules/Qdx/html/search/classes_13.html
+share/doc/qore/modules/Qdx/html/search/classes_13.js
+share/doc/qore/modules/Qdx/html/search/classes_14.html
+share/doc/qore/modules/Qdx/html/search/classes_14.js
+share/doc/qore/modules/Qdx/html/search/classes_15.html
+share/doc/qore/modules/Qdx/html/search/classes_15.js
+share/doc/qore/modules/Qdx/html/search/classes_16.html
+share/doc/qore/modules/Qdx/html/search/classes_16.js
+share/doc/qore/modules/Qdx/html/search/classes_2.html
+share/doc/qore/modules/Qdx/html/search/classes_2.js
+share/doc/qore/modules/Qdx/html/search/classes_3.html
+share/doc/qore/modules/Qdx/html/search/classes_3.js
+share/doc/qore/modules/Qdx/html/search/classes_4.html
+share/doc/qore/modules/Qdx/html/search/classes_4.js
+share/doc/qore/modules/Qdx/html/search/classes_5.html
+share/doc/qore/modules/Qdx/html/search/classes_5.js
+share/doc/qore/modules/Qdx/html/search/classes_6.html
+share/doc/qore/modules/Qdx/html/search/classes_6.js
+share/doc/qore/modules/Qdx/html/search/classes_7.html
+share/doc/qore/modules/Qdx/html/search/classes_7.js
+share/doc/qore/modules/Qdx/html/search/classes_8.html
+share/doc/qore/modules/Qdx/html/search/classes_8.js
+share/doc/qore/modules/Qdx/html/search/classes_9.html
+share/doc/qore/modules/Qdx/html/search/classes_9.js
+share/doc/qore/modules/Qdx/html/search/classes_a.html
+share/doc/qore/modules/Qdx/html/search/classes_a.js
+share/doc/qore/modules/Qdx/html/search/classes_b.html
+share/doc/qore/modules/Qdx/html/search/classes_b.js
+share/doc/qore/modules/Qdx/html/search/classes_c.html
+share/doc/qore/modules/Qdx/html/search/classes_c.js
+share/doc/qore/modules/Qdx/html/search/classes_d.html
+share/doc/qore/modules/Qdx/html/search/classes_d.js
+share/doc/qore/modules/Qdx/html/search/classes_e.html
+share/doc/qore/modules/Qdx/html/search/classes_e.js
+share/doc/qore/modules/Qdx/html/search/classes_f.html
+share/doc/qore/modules/Qdx/html/search/classes_f.js
+share/doc/qore/modules/Qdx/html/search/close.png
+share/doc/qore/modules/Qdx/html/search/functions_0.html
+share/doc/qore/modules/Qdx/html/search/functions_0.js
+share/doc/qore/modules/Qdx/html/search/functions_1.html
+share/doc/qore/modules/Qdx/html/search/functions_1.js
+share/doc/qore/modules/Qdx/html/search/functions_10.html
+share/doc/qore/modules/Qdx/html/search/functions_10.js
+share/doc/qore/modules/Qdx/html/search/functions_11.html
+share/doc/qore/modules/Qdx/html/search/functions_11.js
+share/doc/qore/modules/Qdx/html/search/functions_12.html
+share/doc/qore/modules/Qdx/html/search/functions_12.js
+share/doc/qore/modules/Qdx/html/search/functions_13.html
+share/doc/qore/modules/Qdx/html/search/functions_13.js
+share/doc/qore/modules/Qdx/html/search/functions_14.html
+share/doc/qore/modules/Qdx/html/search/functions_14.js
+share/doc/qore/modules/Qdx/html/search/functions_15.html
+share/doc/qore/modules/Qdx/html/search/functions_15.js
+share/doc/qore/modules/Qdx/html/search/functions_16.html
+share/doc/qore/modules/Qdx/html/search/functions_16.js
+share/doc/qore/modules/Qdx/html/search/functions_17.html
+share/doc/qore/modules/Qdx/html/search/functions_17.js
+share/doc/qore/modules/Qdx/html/search/functions_18.html
+share/doc/qore/modules/Qdx/html/search/functions_18.js
+share/doc/qore/modules/Qdx/html/search/functions_19.html
+share/doc/qore/modules/Qdx/html/search/functions_19.js
+share/doc/qore/modules/Qdx/html/search/functions_2.html
+share/doc/qore/modules/Qdx/html/search/functions_2.js
+share/doc/qore/modules/Qdx/html/search/functions_3.html
+share/doc/qore/modules/Qdx/html/search/functions_3.js
+share/doc/qore/modules/Qdx/html/search/functions_4.html
+share/doc/qore/modules/Qdx/html/search/functions_4.js
+share/doc/qore/modules/Qdx/html/search/functions_5.html
+share/doc/qore/modules/Qdx/html/search/functions_5.js
+share/doc/qore/modules/Qdx/html/search/functions_6.html
+share/doc/qore/modules/Qdx/html/search/functions_6.js
+share/doc/qore/modules/Qdx/html/search/functions_7.html
+share/doc/qore/modules/Qdx/html/search/functions_7.js
+share/doc/qore/modules/Qdx/html/search/functions_8.html
+share/doc/qore/modules/Qdx/html/search/functions_8.js
+share/doc/qore/modules/Qdx/html/search/functions_9.html
+share/doc/qore/modules/Qdx/html/search/functions_9.js
+share/doc/qore/modules/Qdx/html/search/functions_a.html
+share/doc/qore/modules/Qdx/html/search/functions_a.js
+share/doc/qore/modules/Qdx/html/search/functions_b.html
+share/doc/qore/modules/Qdx/html/search/functions_b.js
+share/doc/qore/modules/Qdx/html/search/functions_c.html
+share/doc/qore/modules/Qdx/html/search/functions_c.js
+share/doc/qore/modules/Qdx/html/search/functions_d.html
+share/doc/qore/modules/Qdx/html/search/functions_d.js
+share/doc/qore/modules/Qdx/html/search/functions_e.html
+share/doc/qore/modules/Qdx/html/search/functions_e.js
+share/doc/qore/modules/Qdx/html/search/functions_f.html
+share/doc/qore/modules/Qdx/html/search/functions_f.js
+share/doc/qore/modules/Qdx/html/search/groups_0.html
+share/doc/qore/modules/Qdx/html/search/groups_0.js
+share/doc/qore/modules/Qdx/html/search/groups_1.html
+share/doc/qore/modules/Qdx/html/search/groups_1.js
+share/doc/qore/modules/Qdx/html/search/groups_10.html
+share/doc/qore/modules/Qdx/html/search/groups_10.js
+share/doc/qore/modules/Qdx/html/search/groups_11.html
+share/doc/qore/modules/Qdx/html/search/groups_11.js
+share/doc/qore/modules/Qdx/html/search/groups_2.html
+share/doc/qore/modules/Qdx/html/search/groups_2.js
+share/doc/qore/modules/Qdx/html/search/groups_3.html
+share/doc/qore/modules/Qdx/html/search/groups_3.js
+share/doc/qore/modules/Qdx/html/search/groups_4.html
+share/doc/qore/modules/Qdx/html/search/groups_4.js
+share/doc/qore/modules/Qdx/html/search/groups_5.html
+share/doc/qore/modules/Qdx/html/search/groups_5.js
+share/doc/qore/modules/Qdx/html/search/groups_6.html
+share/doc/qore/modules/Qdx/html/search/groups_6.js
+share/doc/qore/modules/Qdx/html/search/groups_7.html
+share/doc/qore/modules/Qdx/html/search/groups_7.js
+share/doc/qore/modules/Qdx/html/search/groups_8.html
+share/doc/qore/modules/Qdx/html/search/groups_8.js
+share/doc/qore/modules/Qdx/html/search/groups_9.html
+share/doc/qore/modules/Qdx/html/search/groups_9.js
+share/doc/qore/modules/Qdx/html/search/groups_a.html
+share/doc/qore/modules/Qdx/html/search/groups_a.js
+share/doc/qore/modules/Qdx/html/search/groups_b.html
+share/doc/qore/modules/Qdx/html/search/groups_b.js
+share/doc/qore/modules/Qdx/html/search/groups_c.html
+share/doc/qore/modules/Qdx/html/search/groups_c.js
+share/doc/qore/modules/Qdx/html/search/groups_d.html
+share/doc/qore/modules/Qdx/html/search/groups_d.js
+share/doc/qore/modules/Qdx/html/search/groups_e.html
+share/doc/qore/modules/Qdx/html/search/groups_e.js
+share/doc/qore/modules/Qdx/html/search/groups_f.html
+share/doc/qore/modules/Qdx/html/search/groups_f.js
+share/doc/qore/modules/Qdx/html/search/mag_sel.png
+share/doc/qore/modules/Qdx/html/search/namespaces_0.html
+share/doc/qore/modules/Qdx/html/search/namespaces_0.js
+share/doc/qore/modules/Qdx/html/search/namespaces_1.html
+share/doc/qore/modules/Qdx/html/search/namespaces_1.js
+share/doc/qore/modules/Qdx/html/search/namespaces_2.html
+share/doc/qore/modules/Qdx/html/search/namespaces_2.js
+share/doc/qore/modules/Qdx/html/search/namespaces_3.html
+share/doc/qore/modules/Qdx/html/search/namespaces_3.js
+share/doc/qore/modules/Qdx/html/search/namespaces_4.html
+share/doc/qore/modules/Qdx/html/search/namespaces_4.js
+share/doc/qore/modules/Qdx/html/search/namespaces_5.html
+share/doc/qore/modules/Qdx/html/search/namespaces_5.js
+share/doc/qore/modules/Qdx/html/search/namespaces_6.html
+share/doc/qore/modules/Qdx/html/search/namespaces_6.js
+share/doc/qore/modules/Qdx/html/search/namespaces_7.html
+share/doc/qore/modules/Qdx/html/search/namespaces_7.js
+share/doc/qore/modules/Qdx/html/search/namespaces_8.html
+share/doc/qore/modules/Qdx/html/search/namespaces_8.js
+share/doc/qore/modules/Qdx/html/search/nomatches.html
+share/doc/qore/modules/Qdx/html/search/pages_0.html
+share/doc/qore/modules/Qdx/html/search/pages_0.js
+share/doc/qore/modules/Qdx/html/search/pages_1.html
+share/doc/qore/modules/Qdx/html/search/pages_1.js
+share/doc/qore/modules/Qdx/html/search/pages_10.html
+share/doc/qore/modules/Qdx/html/search/pages_10.js
+share/doc/qore/modules/Qdx/html/search/pages_11.html
+share/doc/qore/modules/Qdx/html/search/pages_11.js
+share/doc/qore/modules/Qdx/html/search/pages_12.html
+share/doc/qore/modules/Qdx/html/search/pages_12.js
+share/doc/qore/modules/Qdx/html/search/pages_2.html
+share/doc/qore/modules/Qdx/html/search/pages_2.js
+share/doc/qore/modules/Qdx/html/search/pages_3.html
+share/doc/qore/modules/Qdx/html/search/pages_3.js
+share/doc/qore/modules/Qdx/html/search/pages_4.html
+share/doc/qore/modules/Qdx/html/search/pages_4.js
+share/doc/qore/modules/Qdx/html/search/pages_5.html
+share/doc/qore/modules/Qdx/html/search/pages_5.js
+share/doc/qore/modules/Qdx/html/search/pages_6.html
+share/doc/qore/modules/Qdx/html/search/pages_6.js
+share/doc/qore/modules/Qdx/html/search/pages_7.html
+share/doc/qore/modules/Qdx/html/search/pages_7.js
+share/doc/qore/modules/Qdx/html/search/pages_8.html
+share/doc/qore/modules/Qdx/html/search/pages_8.js
+share/doc/qore/modules/Qdx/html/search/pages_9.html
+share/doc/qore/modules/Qdx/html/search/pages_9.js
+share/doc/qore/modules/Qdx/html/search/pages_a.html
+share/doc/qore/modules/Qdx/html/search/pages_a.js
+share/doc/qore/modules/Qdx/html/search/pages_b.html
+share/doc/qore/modules/Qdx/html/search/pages_b.js
+share/doc/qore/modules/Qdx/html/search/pages_c.html
+share/doc/qore/modules/Qdx/html/search/pages_c.js
+share/doc/qore/modules/Qdx/html/search/pages_d.html
+share/doc/qore/modules/Qdx/html/search/pages_d.js
+share/doc/qore/modules/Qdx/html/search/pages_e.html
+share/doc/qore/modules/Qdx/html/search/pages_e.js
+share/doc/qore/modules/Qdx/html/search/pages_f.html
+share/doc/qore/modules/Qdx/html/search/pages_f.js
+share/doc/qore/modules/Qdx/html/search/search.css
+share/doc/qore/modules/Qdx/html/search/search.js
+share/doc/qore/modules/Qdx/html/search/search_l.png
+share/doc/qore/modules/Qdx/html/search/search_m.png
+share/doc/qore/modules/Qdx/html/search/search_r.png
+share/doc/qore/modules/Qdx/html/search/searchdata.js
+share/doc/qore/modules/Qdx/html/search/variables_0.html
+share/doc/qore/modules/Qdx/html/search/variables_0.js
+share/doc/qore/modules/Qdx/html/search/variables_1.html
+share/doc/qore/modules/Qdx/html/search/variables_1.js
+share/doc/qore/modules/Qdx/html/search/variables_10.html
+share/doc/qore/modules/Qdx/html/search/variables_10.js
+share/doc/qore/modules/Qdx/html/search/variables_11.html
+share/doc/qore/modules/Qdx/html/search/variables_11.js
+share/doc/qore/modules/Qdx/html/search/variables_12.html
+share/doc/qore/modules/Qdx/html/search/variables_12.js
+share/doc/qore/modules/Qdx/html/search/variables_13.html
+share/doc/qore/modules/Qdx/html/search/variables_13.js
+share/doc/qore/modules/Qdx/html/search/variables_14.html
+share/doc/qore/modules/Qdx/html/search/variables_14.js
+share/doc/qore/modules/Qdx/html/search/variables_15.html
+share/doc/qore/modules/Qdx/html/search/variables_15.js
+share/doc/qore/modules/Qdx/html/search/variables_16.html
+share/doc/qore/modules/Qdx/html/search/variables_16.js
+share/doc/qore/modules/Qdx/html/search/variables_17.html
+share/doc/qore/modules/Qdx/html/search/variables_17.js
+share/doc/qore/modules/Qdx/html/search/variables_18.html
+share/doc/qore/modules/Qdx/html/search/variables_18.js
+share/doc/qore/modules/Qdx/html/search/variables_19.html
+share/doc/qore/modules/Qdx/html/search/variables_19.js
+share/doc/qore/modules/Qdx/html/search/variables_2.html
+share/doc/qore/modules/Qdx/html/search/variables_2.js
+share/doc/qore/modules/Qdx/html/search/variables_3.html
+share/doc/qore/modules/Qdx/html/search/variables_3.js
+share/doc/qore/modules/Qdx/html/search/variables_4.html
+share/doc/qore/modules/Qdx/html/search/variables_4.js
+share/doc/qore/modules/Qdx/html/search/variables_5.html
+share/doc/qore/modules/Qdx/html/search/variables_5.js
+share/doc/qore/modules/Qdx/html/search/variables_6.html
+share/doc/qore/modules/Qdx/html/search/variables_6.js
+share/doc/qore/modules/Qdx/html/search/variables_7.html
+share/doc/qore/modules/Qdx/html/search/variables_7.js
+share/doc/qore/modules/Qdx/html/search/variables_8.html
+share/doc/qore/modules/Qdx/html/search/variables_8.js
+share/doc/qore/modules/Qdx/html/search/variables_9.html
+share/doc/qore/modules/Qdx/html/search/variables_9.js
+share/doc/qore/modules/Qdx/html/search/variables_a.html
+share/doc/qore/modules/Qdx/html/search/variables_a.js
+share/doc/qore/modules/Qdx/html/search/variables_b.html
+share/doc/qore/modules/Qdx/html/search/variables_b.js
+share/doc/qore/modules/Qdx/html/search/variables_c.html
+share/doc/qore/modules/Qdx/html/search/variables_c.js
+share/doc/qore/modules/Qdx/html/search/variables_d.html
+share/doc/qore/modules/Qdx/html/search/variables_d.js
+share/doc/qore/modules/Qdx/html/search/variables_e.html
+share/doc/qore/modules/Qdx/html/search/variables_e.js
+share/doc/qore/modules/Qdx/html/search/variables_f.html
+share/doc/qore/modules/Qdx/html/search/variables_f.js
+share/doc/qore/modules/Qdx/html/splitbar.png
+share/doc/qore/modules/Qdx/html/sync_off.png
+share/doc/qore/modules/Qdx/html/sync_on.png
+share/doc/qore/modules/Qdx/html/tab_a.png
+share/doc/qore/modules/Qdx/html/tab_b.png
+share/doc/qore/modules/Qdx/html/tab_h.png
+share/doc/qore/modules/Qdx/html/tab_s.png
+share/doc/qore/modules/Qdx/html/tabs.css
 share/doc/qore/modules/Qorize/html/_qorize_8qm_8dox_8h_source.html
 share/doc/qore/modules/Qorize/html/bc_s.png
 share/doc/qore/modules/Qorize/html/bdwn.png
@@ -9431,16 +12626,18 @@ share/doc/qore/modules/Qorize/html/group
 share/doc/qore/modules/Qorize/html/group__call__type__constants.js
 share/doc/qore/modules/Qorize/html/group__closecodes.js
 share/doc/qore/modules/Qorize/html/group__compression__constants.js
+share/doc/qore/modules/Qorize/html/group__compression__transformations.js
 share/doc/qore/modules/Qorize/html/group__compresssion__functions.js
 share/doc/qore/modules/Qorize/html/group__context__functions.js
+share/doc/qore/modules/Qorize/html/group__crypto__transformations.js
 share/doc/qore/modules/Qorize/html/group__cryptographic__constants.js
 share/doc/qore/modules/Qorize/html/group__cryptographic__functions.js
 share/doc/qore/modules/Qorize/html/group__database__driver__constants.js
 share/doc/qore/modules/Qorize/html/group__date__and__time__functions.js
 share/doc/qore/modules/Qorize/html/group__dbi__capabilities.js
 share/doc/qore/modules/Qorize/html/group__dbi__functions.js
-share/doc/qore/modules/Qorize/html/group__debug__rc__options.js
-share/doc/qore/modules/Qorize/html/group__debug__step__options.js
+share/doc/qore/modules/Qorize/html/group__debug__flow__options.js
+share/doc/qore/modules/Qorize/html/group__debug__rs__options.js
 share/doc/qore/modules/Qorize/html/group__digest__functions.js
 share/doc/qore/modules/Qorize/html/group__env__functions.js
 share/doc/qore/modules/Qorize/html/group__error__constants.js
@@ -9465,6 +12662,7 @@ share/doc/qore/modules/Qorize/html/group
 share/doc/qore/modules/Qorize/html/group__network__address__information__constants.js
 share/doc/qore/modules/Qorize/html/group__null__and__nothing__constants.js
 share/doc/qore/modules/Qorize/html/group__number__formatting__constants.js
+share/doc/qore/modules/Qorize/html/group__number__string__formatting__constants.js
 share/doc/qore/modules/Qorize/html/group__object__functions.js
 share/doc/qore/modules/Qorize/html/group__old__dbi__functions.js
 share/doc/qore/modules/Qorize/html/group__opcodes.js
@@ -9479,6 +12677,7 @@ share/doc/qore/modules/Qorize/html/group
 share/doc/qore/modules/Qorize/html/group__socket__type__constants.js
 share/doc/qore/modules/Qorize/html/group__sql__constants.js
 share/doc/qore/modules/Qorize/html/group__sql__cop__funcs.js
+share/doc/qore/modules/Qorize/html/group__sql__cop__trunc__date__enum.js
 share/doc/qore/modules/Qorize/html/group__sql__cops.js
 share/doc/qore/modules/Qorize/html/group__sql__iop__funcs.js
 share/doc/qore/modules/Qorize/html/group__sql__iops.js
@@ -9488,10 +12687,10 @@ share/doc/qore/modules/Qorize/html/group
 share/doc/qore/modules/Qorize/html/group__sql__ops.js
 share/doc/qore/modules/Qorize/html/group__sql__uop__funcs.js
 share/doc/qore/modules/Qorize/html/group__sql__uops.js
+share/doc/qore/modules/Qorize/html/group__ssl__mode__constants.js
 share/doc/qore/modules/Qorize/html/group__string__functions.js
 share/doc/qore/modules/Qorize/html/group__string__type__constants.js
 share/doc/qore/modules/Qorize/html/group__system__and__build__constants.js
-share/doc/qore/modules/Qorize/html/group__t.js
 share/doc/qore/modules/Qorize/html/group__tattr__control__character__constants.js
 share/doc/qore/modules/Qorize/html/group__tattr__control__mode__constants.js
 share/doc/qore/modules/Qorize/html/group__tattr__input__mode__constants.js
@@ -9599,6 +12798,14 @@ share/doc/qore/modules/Qorize/html/searc
 share/doc/qore/modules/Qorize/html/search/classes_11.js
 share/doc/qore/modules/Qorize/html/search/classes_12.html
 share/doc/qore/modules/Qorize/html/search/classes_12.js
+share/doc/qore/modules/Qorize/html/search/classes_13.html
+share/doc/qore/modules/Qorize/html/search/classes_13.js
+share/doc/qore/modules/Qorize/html/search/classes_14.html
+share/doc/qore/modules/Qorize/html/search/classes_14.js
+share/doc/qore/modules/Qorize/html/search/classes_15.html
+share/doc/qore/modules/Qorize/html/search/classes_15.js
+share/doc/qore/modules/Qorize/html/search/classes_16.html
+share/doc/qore/modules/Qorize/html/search/classes_16.js
 share/doc/qore/modules/Qorize/html/search/classes_2.html
 share/doc/qore/modules/Qorize/html/search/classes_2.js
 share/doc/qore/modules/Qorize/html/search/classes_3.html
@@ -9746,6 +12953,8 @@ share/doc/qore/modules/Qorize/html/searc
 share/doc/qore/modules/Qorize/html/search/pages_10.js
 share/doc/qore/modules/Qorize/html/search/pages_11.html
 share/doc/qore/modules/Qorize/html/search/pages_11.js
+share/doc/qore/modules/Qorize/html/search/pages_12.html
+share/doc/qore/modules/Qorize/html/search/pages_12.js
 share/doc/qore/modules/Qorize/html/search/pages_2.html
 share/doc/qore/modules/Qorize/html/search/pages_2.js
 share/doc/qore/modules/Qorize/html/search/pages_3.html
@@ -9800,6 +13009,10 @@ share/doc/qore/modules/Qorize/html/searc
 share/doc/qore/modules/Qorize/html/search/variables_16.js
 share/doc/qore/modules/Qorize/html/search/variables_17.html
 share/doc/qore/modules/Qorize/html/search/variables_17.js
+share/doc/qore/modules/Qorize/html/search/variables_18.html
+share/doc/qore/modules/Qorize/html/search/variables_18.js
+share/doc/qore/modules/Qorize/html/search/variables_19.html
+share/doc/qore/modules/Qorize/html/search/variables_19.js
 share/doc/qore/modules/Qorize/html/search/variables_2.html
 share/doc/qore/modules/Qorize/html/search/variables_2.js
 share/doc/qore/modules/Qorize/html/search/variables_3.html
@@ -9847,6 +13060,12 @@ share/doc/qore/modules/RestClient/html/c
 share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_client__inherit__graph.map
 share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_client__inherit__graph.md5
 share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_client__inherit__graph.png
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection-members.html
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection.html
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection.js
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection__inherit__graph.map
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection__inherit__graph.md5
+share/doc/qore/modules/RestClient/html/class_rest_client_1_1_rest_connection__inherit__graph.png
 share/doc/qore/modules/RestClient/html/classes.html
 share/doc/qore/modules/RestClient/html/closed.png
 share/doc/qore/modules/RestClient/html/dir_13add0083e006ac756009d5942a24d28.html
@@ -9870,6 +13089,9 @@ share/doc/qore/modules/RestClient/html/i
 share/doc/qore/modules/RestClient/html/inherit_graph_0.map
 share/doc/qore/modules/RestClient/html/inherit_graph_0.md5
 share/doc/qore/modules/RestClient/html/inherit_graph_0.png
+share/doc/qore/modules/RestClient/html/inherit_graph_1.map
+share/doc/qore/modules/RestClient/html/inherit_graph_1.md5
+share/doc/qore/modules/RestClient/html/inherit_graph_1.png
 share/doc/qore/modules/RestClient/html/inherits.html
 share/doc/qore/modules/RestClient/html/jquery.js
 share/doc/qore/modules/RestClient/html/menu.js
@@ -9950,6 +13172,10 @@ share/doc/qore/modules/RestClient/html/s
 share/doc/qore/modules/RestClient/html/search/classes_10.js
 share/doc/qore/modules/RestClient/html/search/classes_11.html
 share/doc/qore/modules/RestClient/html/search/classes_11.js
+share/doc/qore/modules/RestClient/html/search/classes_12.html
+share/doc/qore/modules/RestClient/html/search/classes_12.js
+share/doc/qore/modules/RestClient/html/search/classes_13.html
+share/doc/qore/modules/RestClient/html/search/classes_13.js
 share/doc/qore/modules/RestClient/html/search/classes_2.html
 share/doc/qore/modules/RestClient/html/search/classes_2.js
 share/doc/qore/modules/RestClient/html/search/classes_3.html
@@ -10085,6 +13311,8 @@ share/doc/qore/modules/RestClient/html/s
 share/doc/qore/modules/RestClient/html/search/pages_10.js
 share/doc/qore/modules/RestClient/html/search/pages_11.html
 share/doc/qore/modules/RestClient/html/search/pages_11.js
+share/doc/qore/modules/RestClient/html/search/pages_12.html
+share/doc/qore/modules/RestClient/html/search/pages_12.js
 share/doc/qore/modules/RestClient/html/search/pages_2.html
 share/doc/qore/modules/RestClient/html/search/pages_2.js
 share/doc/qore/modules/RestClient/html/search/pages_3.html
@@ -10135,6 +13363,12 @@ share/doc/qore/modules/RestClient/html/s
 share/doc/qore/modules/RestClient/html/search/variables_14.js
 share/doc/qore/modules/RestClient/html/search/variables_15.html
 share/doc/qore/modules/RestClient/html/search/variables_15.js
+share/doc/qore/modules/RestClient/html/search/variables_16.html
+share/doc/qore/modules/RestClient/html/search/variables_16.js
+share/doc/qore/modules/RestClient/html/search/variables_17.html
+share/doc/qore/modules/RestClient/html/search/variables_17.js
+share/doc/qore/modules/RestClient/html/search/variables_18.html
+share/doc/qore/modules/RestClient/html/search/variables_18.js
 share/doc/qore/modules/RestClient/html/search/variables_2.html
 share/doc/qore/modules/RestClient/html/search/variables_2.js
 share/doc/qore/modules/RestClient/html/search/variables_3.html
@@ -10308,6 +13542,14 @@ share/doc/qore/modules/RestHandler/html/
 share/doc/qore/modules/RestHandler/html/search/classes_11.js
 share/doc/qore/modules/RestHandler/html/search/classes_12.html
 share/doc/qore/modules/RestHandler/html/search/classes_12.js
+share/doc/qore/modules/RestHandler/html/search/classes_13.html
+share/doc/qore/modules/RestHandler/html/search/classes_13.js
+share/doc/qore/modules/RestHandler/html/search/classes_14.html
+share/doc/qore/modules/RestHandler/html/search/classes_14.js
+share/doc/qore/modules/RestHandler/html/search/classes_15.html
+share/doc/qore/modules/RestHandler/html/search/classes_15.js
+share/doc/qore/modules/RestHandler/html/search/classes_16.html
+share/doc/qore/modules/RestHandler/html/search/classes_16.js
 share/doc/qore/modules/RestHandler/html/search/classes_2.html
 share/doc/qore/modules/RestHandler/html/search/classes_2.js
 share/doc/qore/modules/RestHandler/html/search/classes_3.html
@@ -10359,6 +13601,8 @@ share/doc/qore/modules/RestHandler/html/
 share/doc/qore/modules/RestHandler/html/search/functions_17.js
 share/doc/qore/modules/RestHandler/html/search/functions_18.html
 share/doc/qore/modules/RestHandler/html/search/functions_18.js
+share/doc/qore/modules/RestHandler/html/search/functions_19.html
+share/doc/qore/modules/RestHandler/html/search/functions_19.js
 share/doc/qore/modules/RestHandler/html/search/functions_2.html
 share/doc/qore/modules/RestHandler/html/search/functions_2.js
 share/doc/qore/modules/RestHandler/html/search/functions_3.html
@@ -10451,6 +13695,8 @@ share/doc/qore/modules/RestHandler/html/
 share/doc/qore/modules/RestHandler/html/search/pages_10.js
 share/doc/qore/modules/RestHandler/html/search/pages_11.html
 share/doc/qore/modules/RestHandler/html/search/pages_11.js
+share/doc/qore/modules/RestHandler/html/search/pages_12.html
+share/doc/qore/modules/RestHandler/html/search/pages_12.js
 share/doc/qore/modules/RestHandler/html/search/pages_2.html
 share/doc/qore/modules/RestHandler/html/search/pages_2.js
 share/doc/qore/modules/RestHandler/html/search/pages_3.html
@@ -10505,6 +13751,10 @@ share/doc/qore/modules/RestHandler/html/
 share/doc/qore/modules/RestHandler/html/search/variables_16.js
 share/doc/qore/modules/RestHandler/html/search/variables_17.html
 share/doc/qore/modules/RestHandler/html/search/variables_17.js
+share/doc/qore/modules/RestHandler/html/search/variables_18.html
+share/doc/qore/modules/RestHandler/html/search/variables_18.js
+share/doc/qore/modules/RestHandler/html/search/variables_19.html
+share/doc/qore/modules/RestHandler/html/search/variables_19.js
 share/doc/qore/modules/RestHandler/html/search/variables_2.html
 share/doc/qore/modules/RestHandler/html/search/variables_2.js
 share/doc/qore/modules/RestHandler/html/search/variables_3.html
@@ -10541,6 +13791,389 @@ share/doc/qore/modules/RestHandler/html/
 share/doc/qore/modules/RestHandler/html/tab_h.png
 share/doc/qore/modules/RestHandler/html/tab_s.png
 share/doc/qore/modules/RestHandler/html/tabs.css
+share/doc/qore/modules/RestSchemaValidator/html/_rest_schema_validator_8qm_8dox_8h_source.html
+share/doc/qore/modules/RestSchemaValidator/html/annotated.html
+share/doc/qore/modules/RestSchemaValidator/html/annotated_dup.js
+share/doc/qore/modules/RestSchemaValidator/html/bc_s.png
+share/doc/qore/modules/RestSchemaValidator/html/bdwn.png
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_abstract_rest_schema_validator-members.html
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_abstract_rest_schema_validator.html
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_abstract_rest_schema_validator.js
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_abstract_rest_schema_validator__inherit__graph.map
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_abstract_rest_schema_validator__inherit__graph.md5
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_abstract_rest_schema_validator__inherit__graph.png
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_null_rest_schema_validator-members.html
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_null_rest_schema_validator.html
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_null_rest_schema_validator.js
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_null_rest_schema_validator__inherit__graph.map
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_null_rest_schema_validator__inherit__graph.md5
+share/doc/qore/modules/RestSchemaValidator/html/class_rest_schema_validator_1_1_null_rest_schema_validator__inherit__graph.png
+share/doc/qore/modules/RestSchemaValidator/html/classes.html
+share/doc/qore/modules/RestSchemaValidator/html/closed.png
+share/doc/qore/modules/RestSchemaValidator/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/RestSchemaValidator/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/RestSchemaValidator/html/doc.png
+share/doc/qore/modules/RestSchemaValidator/html/doxygen.css
+share/doc/qore/modules/RestSchemaValidator/html/doxygen.png
+share/doc/qore/modules/RestSchemaValidator/html/dynsections.js
+share/doc/qore/modules/RestSchemaValidator/html/folderclosed.png
+share/doc/qore/modules/RestSchemaValidator/html/folderopen.png
+share/doc/qore/modules/RestSchemaValidator/html/functions.html
+share/doc/qore/modules/RestSchemaValidator/html/functions_func.html
+share/doc/qore/modules/RestSchemaValidator/html/functions_vars.html
+share/doc/qore/modules/RestSchemaValidator/html/graph_legend.html
+share/doc/qore/modules/RestSchemaValidator/html/graph_legend.md5
+share/doc/qore/modules/RestSchemaValidator/html/graph_legend.png
+share/doc/qore/modules/RestSchemaValidator/html/hierarchy.html
+share/doc/qore/modules/RestSchemaValidator/html/hierarchy.js
+share/doc/qore/modules/RestSchemaValidator/html/index.html
+share/doc/qore/modules/RestSchemaValidator/html/index.qhp
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_0.map
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_0.md5
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_0.png
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_1.map
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_1.md5
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_1.png
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_2.map
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_2.md5
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_2.png
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_3.map
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_3.md5
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_3.png
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_4.map
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_4.md5
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_4.png
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_5.map
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_5.md5
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_5.png
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_6.map
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_6.md5
+share/doc/qore/modules/RestSchemaValidator/html/inherit_graph_6.png
+share/doc/qore/modules/RestSchemaValidator/html/inherits.html
+share/doc/qore/modules/RestSchemaValidator/html/jquery.js
+share/doc/qore/modules/RestSchemaValidator/html/menu.js
+share/doc/qore/modules/RestSchemaValidator/html/menudata.js
+share/doc/qore/modules/RestSchemaValidator/html/namespace_rest_schema_validator.html
+share/doc/qore/modules/RestSchemaValidator/html/namespace_rest_schema_validator.js
+share/doc/qore/modules/RestSchemaValidator/html/namespaces.html
+share/doc/qore/modules/RestSchemaValidator/html/namespaces.js
+share/doc/qore/modules/RestSchemaValidator/html/nav_f.png
+share/doc/qore/modules/RestSchemaValidator/html/nav_g.png
+share/doc/qore/modules/RestSchemaValidator/html/nav_h.png
+share/doc/qore/modules/RestSchemaValidator/html/navtree.css
+share/doc/qore/modules/RestSchemaValidator/html/navtree.js
+share/doc/qore/modules/RestSchemaValidator/html/navtreedata.js
+share/doc/qore/modules/RestSchemaValidator/html/navtreeindex0.js
+share/doc/qore/modules/RestSchemaValidator/html/open.png
+share/doc/qore/modules/RestSchemaValidator/html/pages.html
+share/doc/qore/modules/RestSchemaValidator/html/resize.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_0.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_0.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_1.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_1.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_10.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_10.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_11.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_11.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_12.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_12.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_13.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_13.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_14.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_14.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_15.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_15.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_16.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_16.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_17.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_17.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_18.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_18.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_19.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_19.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_1a.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_1a.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_2.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_2.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_3.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_3.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_4.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_4.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_5.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_5.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_6.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_6.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_7.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_7.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_8.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_8.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_9.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_9.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_a.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_a.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_b.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_b.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_c.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_c.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_d.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_d.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_e.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_e.js
+share/doc/qore/modules/RestSchemaValidator/html/search/all_f.html
+share/doc/qore/modules/RestSchemaValidator/html/search/all_f.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_0.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_0.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_1.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_1.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_10.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_10.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_11.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_11.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_12.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_12.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_2.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_2.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_3.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_3.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_4.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_4.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_5.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_5.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_6.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_6.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_7.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_7.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_8.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_8.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_9.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_9.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_a.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_a.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_b.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_b.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_c.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_c.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_d.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_d.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_e.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_e.js
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_f.html
+share/doc/qore/modules/RestSchemaValidator/html/search/classes_f.js
+share/doc/qore/modules/RestSchemaValidator/html/search/close.png
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_0.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_0.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_1.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_1.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_10.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_10.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_11.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_11.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_12.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_12.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_13.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_13.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_14.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_14.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_15.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_15.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_16.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_16.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_17.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_17.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_18.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_18.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_2.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_2.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_3.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_3.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_4.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_4.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_5.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_5.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_6.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_6.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_7.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_7.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_8.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_8.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_9.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_9.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_a.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_a.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_b.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_b.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_c.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_c.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_d.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_d.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_e.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_e.js
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_f.html
+share/doc/qore/modules/RestSchemaValidator/html/search/functions_f.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_0.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_0.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_1.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_1.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_10.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_10.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_11.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_11.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_2.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_2.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_3.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_3.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_4.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_4.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_5.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_5.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_6.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_6.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_7.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_7.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_8.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_8.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_9.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_9.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_a.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_a.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_b.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_b.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_c.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_c.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_d.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_d.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_e.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_e.js
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_f.html
+share/doc/qore/modules/RestSchemaValidator/html/search/groups_f.js
+share/doc/qore/modules/RestSchemaValidator/html/search/mag_sel.png
+share/doc/qore/modules/RestSchemaValidator/html/search/namespaces_0.html
+share/doc/qore/modules/RestSchemaValidator/html/search/namespaces_0.js
+share/doc/qore/modules/RestSchemaValidator/html/search/namespaces_1.html
+share/doc/qore/modules/RestSchemaValidator/html/search/namespaces_1.js
+share/doc/qore/modules/RestSchemaValidator/html/search/namespaces_2.html
+share/doc/qore/modules/RestSchemaValidator/html/search/namespaces_2.js
+share/doc/qore/modules/RestSchemaValidator/html/search/nomatches.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_0.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_0.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_1.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_1.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_10.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_10.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_11.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_11.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_12.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_12.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_2.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_2.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_3.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_3.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_4.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_4.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_5.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_5.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_6.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_6.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_7.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_7.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_8.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_8.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_9.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_9.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_a.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_a.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_b.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_b.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_c.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_c.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_d.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_d.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_e.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_e.js
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_f.html
+share/doc/qore/modules/RestSchemaValidator/html/search/pages_f.js
+share/doc/qore/modules/RestSchemaValidator/html/search/search.css
+share/doc/qore/modules/RestSchemaValidator/html/search/search.js
+share/doc/qore/modules/RestSchemaValidator/html/search/search_l.png
+share/doc/qore/modules/RestSchemaValidator/html/search/search_m.png
+share/doc/qore/modules/RestSchemaValidator/html/search/search_r.png
+share/doc/qore/modules/RestSchemaValidator/html/search/searchdata.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_0.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_0.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_1.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_1.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_10.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_10.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_11.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_11.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_12.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_12.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_13.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_13.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_14.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_14.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_15.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_15.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_16.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_16.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_17.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_17.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_18.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_18.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_2.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_2.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_3.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_3.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_4.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_4.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_5.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_5.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_6.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_6.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_7.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_7.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_8.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_8.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_9.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_9.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_a.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_a.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_b.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_b.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_c.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_c.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_d.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_d.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_e.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_e.js
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_f.html
+share/doc/qore/modules/RestSchemaValidator/html/search/variables_f.js
+share/doc/qore/modules/RestSchemaValidator/html/splitbar.png
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_example_request_info-members.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_example_request_info.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_example_request_info.js
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_example_response_info-members.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_example_response_info.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_example_response_info.js
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_qore_example_code_info-members.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_qore_example_code_info.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_qore_example_code_info.js
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_request_client_info-members.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_request_client_info.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_request_client_info.js
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_request_server_info-members.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_request_server_info.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_request_server_info.js
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_response_client_info-members.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_response_client_info.html
+share/doc/qore/modules/RestSchemaValidator/html/struct_rest_schema_validator_1_1_rest_response_client_info.js
+share/doc/qore/modules/RestSchemaValidator/html/sync_off.png
+share/doc/qore/modules/RestSchemaValidator/html/sync_on.png
+share/doc/qore/modules/RestSchemaValidator/html/tab_a.png
+share/doc/qore/modules/RestSchemaValidator/html/tab_b.png
+share/doc/qore/modules/RestSchemaValidator/html/tab_h.png
+share/doc/qore/modules/RestSchemaValidator/html/tab_s.png
+share/doc/qore/modules/RestSchemaValidator/html/tabs.css
 share/doc/qore/modules/SalesforceRestClient/html/_salesforce_rest_client_8qm_8dox_8h_source.html
 share/doc/qore/modules/SalesforceRestClient/html/annotated.html
 share/doc/qore/modules/SalesforceRestClient/html/annotated_dup.js
@@ -10552,6 +14185,12 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_client__inherit__graph.map
 share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_client__inherit__graph.md5
 share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_client__inherit__graph.png
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection-members.html
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection.html
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection.js
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection__inherit__graph.map
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection__inherit__graph.md5
+share/doc/qore/modules/SalesforceRestClient/html/class_salesforce_rest_client_1_1_salesforce_rest_connection__inherit__graph.png
 share/doc/qore/modules/SalesforceRestClient/html/classes.html
 share/doc/qore/modules/SalesforceRestClient/html/closed.png
 share/doc/qore/modules/SalesforceRestClient/html/dir_13add0083e006ac756009d5942a24d28.html
@@ -10590,16 +14229,18 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/group__call__type__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__closecodes.js
 share/doc/qore/modules/SalesforceRestClient/html/group__compression__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__compression__transformations.js
 share/doc/qore/modules/SalesforceRestClient/html/group__compresssion__functions.js
 share/doc/qore/modules/SalesforceRestClient/html/group__context__functions.js
+share/doc/qore/modules/SalesforceRestClient/html/group__crypto__transformations.js
 share/doc/qore/modules/SalesforceRestClient/html/group__cryptographic__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__cryptographic__functions.js
 share/doc/qore/modules/SalesforceRestClient/html/group__database__driver__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__date__and__time__functions.js
 share/doc/qore/modules/SalesforceRestClient/html/group__dbi__capabilities.js
 share/doc/qore/modules/SalesforceRestClient/html/group__dbi__functions.js
-share/doc/qore/modules/SalesforceRestClient/html/group__debug__rc__options.js
-share/doc/qore/modules/SalesforceRestClient/html/group__debug__step__options.js
+share/doc/qore/modules/SalesforceRestClient/html/group__debug__flow__options.js
+share/doc/qore/modules/SalesforceRestClient/html/group__debug__rs__options.js
 share/doc/qore/modules/SalesforceRestClient/html/group__digest__functions.js
 share/doc/qore/modules/SalesforceRestClient/html/group__env__functions.js
 share/doc/qore/modules/SalesforceRestClient/html/group__error__constants.js
@@ -10624,6 +14265,7 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/group__network__address__information__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__null__and__nothing__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__number__formatting__constants.js
+share/doc/qore/modules/SalesforceRestClient/html/group__number__string__formatting__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__object__functions.js
 share/doc/qore/modules/SalesforceRestClient/html/group__old__dbi__functions.js
 share/doc/qore/modules/SalesforceRestClient/html/group__opcodes.js
@@ -10638,6 +14280,7 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/group__socket__type__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__sql__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__sql__cop__funcs.js
+share/doc/qore/modules/SalesforceRestClient/html/group__sql__cop__trunc__date__enum.js
 share/doc/qore/modules/SalesforceRestClient/html/group__sql__cops.js
 share/doc/qore/modules/SalesforceRestClient/html/group__sql__iop__funcs.js
 share/doc/qore/modules/SalesforceRestClient/html/group__sql__iops.js
@@ -10647,10 +14290,10 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/group__sql__ops.js
 share/doc/qore/modules/SalesforceRestClient/html/group__sql__uop__funcs.js
 share/doc/qore/modules/SalesforceRestClient/html/group__sql__uops.js
+share/doc/qore/modules/SalesforceRestClient/html/group__ssl__mode__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__string__functions.js
 share/doc/qore/modules/SalesforceRestClient/html/group__string__type__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__system__and__build__constants.js
-share/doc/qore/modules/SalesforceRestClient/html/group__t.js
 share/doc/qore/modules/SalesforceRestClient/html/group__tattr__control__character__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__tattr__control__mode__constants.js
 share/doc/qore/modules/SalesforceRestClient/html/group__tattr__input__mode__constants.js
@@ -10673,6 +14316,9 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_0.map
 share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_0.md5
 share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_0.png
+share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_1.map
+share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_1.md5
+share/doc/qore/modules/SalesforceRestClient/html/inherit_graph_1.png
 share/doc/qore/modules/SalesforceRestClient/html/inherits.html
 share/doc/qore/modules/SalesforceRestClient/html/jquery.js
 share/doc/qore/modules/SalesforceRestClient/html/menu.js
@@ -10698,6 +14344,7 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/navtreeindex4.js
 share/doc/qore/modules/SalesforceRestClient/html/navtreeindex5.js
 share/doc/qore/modules/SalesforceRestClient/html/navtreeindex6.js
+share/doc/qore/modules/SalesforceRestClient/html/navtreeindex7.js
 share/doc/qore/modules/SalesforceRestClient/html/open.png
 share/doc/qore/modules/SalesforceRestClient/html/pages.html
 share/doc/qore/modules/SalesforceRestClient/html/resize.js
@@ -10765,6 +14412,14 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/search/classes_11.js
 share/doc/qore/modules/SalesforceRestClient/html/search/classes_12.html
 share/doc/qore/modules/SalesforceRestClient/html/search/classes_12.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_13.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_13.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_14.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_14.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_15.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_15.js
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_16.html
+share/doc/qore/modules/SalesforceRestClient/html/search/classes_16.js
 share/doc/qore/modules/SalesforceRestClient/html/search/classes_2.html
 share/doc/qore/modules/SalesforceRestClient/html/search/classes_2.js
 share/doc/qore/modules/SalesforceRestClient/html/search/classes_3.html
@@ -10816,6 +14471,8 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/search/functions_17.js
 share/doc/qore/modules/SalesforceRestClient/html/search/functions_18.html
 share/doc/qore/modules/SalesforceRestClient/html/search/functions_18.js
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_19.html
+share/doc/qore/modules/SalesforceRestClient/html/search/functions_19.js
 share/doc/qore/modules/SalesforceRestClient/html/search/functions_2.html
 share/doc/qore/modules/SalesforceRestClient/html/search/functions_2.js
 share/doc/qore/modules/SalesforceRestClient/html/search/functions_3.html
@@ -10908,6 +14565,8 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/search/pages_10.js
 share/doc/qore/modules/SalesforceRestClient/html/search/pages_11.html
 share/doc/qore/modules/SalesforceRestClient/html/search/pages_11.js
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_12.html
+share/doc/qore/modules/SalesforceRestClient/html/search/pages_12.js
 share/doc/qore/modules/SalesforceRestClient/html/search/pages_2.html
 share/doc/qore/modules/SalesforceRestClient/html/search/pages_2.js
 share/doc/qore/modules/SalesforceRestClient/html/search/pages_3.html
@@ -10962,6 +14621,10 @@ share/doc/qore/modules/SalesforceRestCli
 share/doc/qore/modules/SalesforceRestClient/html/search/variables_16.js
 share/doc/qore/modules/SalesforceRestClient/html/search/variables_17.html
 share/doc/qore/modules/SalesforceRestClient/html/search/variables_17.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_18.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_18.js
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_19.html
+share/doc/qore/modules/SalesforceRestClient/html/search/variables_19.js
 share/doc/qore/modules/SalesforceRestClient/html/search/variables_2.html
 share/doc/qore/modules/SalesforceRestClient/html/search/variables_2.js
 share/doc/qore/modules/SalesforceRestClient/html/search/variables_3.html
@@ -11129,6 +14792,14 @@ share/doc/qore/modules/Schema/html/searc
 share/doc/qore/modules/Schema/html/search/classes_11.js
 share/doc/qore/modules/Schema/html/search/classes_12.html
 share/doc/qore/modules/Schema/html/search/classes_12.js
+share/doc/qore/modules/Schema/html/search/classes_13.html
+share/doc/qore/modules/Schema/html/search/classes_13.js
+share/doc/qore/modules/Schema/html/search/classes_14.html
+share/doc/qore/modules/Schema/html/search/classes_14.js
+share/doc/qore/modules/Schema/html/search/classes_15.html
+share/doc/qore/modules/Schema/html/search/classes_15.js
+share/doc/qore/modules/Schema/html/search/classes_16.html
+share/doc/qore/modules/Schema/html/search/classes_16.js
 share/doc/qore/modules/Schema/html/search/classes_2.html
 share/doc/qore/modules/Schema/html/search/classes_2.js
 share/doc/qore/modules/Schema/html/search/classes_3.html
@@ -11180,6 +14851,8 @@ share/doc/qore/modules/Schema/html/searc
 share/doc/qore/modules/Schema/html/search/functions_17.js
 share/doc/qore/modules/Schema/html/search/functions_18.html
 share/doc/qore/modules/Schema/html/search/functions_18.js
+share/doc/qore/modules/Schema/html/search/functions_19.html
+share/doc/qore/modules/Schema/html/search/functions_19.js
 share/doc/qore/modules/Schema/html/search/functions_2.html
 share/doc/qore/modules/Schema/html/search/functions_2.js
 share/doc/qore/modules/Schema/html/search/functions_3.html
@@ -11272,6 +14945,8 @@ share/doc/qore/modules/Schema/html/searc
 share/doc/qore/modules/Schema/html/search/pages_10.js
 share/doc/qore/modules/Schema/html/search/pages_11.html
 share/doc/qore/modules/Schema/html/search/pages_11.js
+share/doc/qore/modules/Schema/html/search/pages_12.html
+share/doc/qore/modules/Schema/html/search/pages_12.js
 share/doc/qore/modules/Schema/html/search/pages_2.html
 share/doc/qore/modules/Schema/html/search/pages_2.js
 share/doc/qore/modules/Schema/html/search/pages_3.html
@@ -11326,6 +15001,10 @@ share/doc/qore/modules/Schema/html/searc
 share/doc/qore/modules/Schema/html/search/variables_16.js
 share/doc/qore/modules/Schema/html/search/variables_17.html
 share/doc/qore/modules/Schema/html/search/variables_17.js
+share/doc/qore/modules/Schema/html/search/variables_18.html
+share/doc/qore/modules/Schema/html/search/variables_18.js
+share/doc/qore/modules/Schema/html/search/variables_19.html
+share/doc/qore/modules/Schema/html/search/variables_19.js
 share/doc/qore/modules/Schema/html/search/variables_2.html
 share/doc/qore/modules/Schema/html/search/variables_2.js
 share/doc/qore/modules/Schema/html/search/variables_3.html
@@ -11362,6 +15041,1239 @@ share/doc/qore/modules/Schema/html/tab_b
 share/doc/qore/modules/Schema/html/tab_h.png
 share/doc/qore/modules/Schema/html/tab_s.png
 share/doc/qore/modules/Schema/html/tabs.css
+share/doc/qore/modules/SchemaReverse/html/_schema_reverse_8qm_8dox_8h_source.html
+share/doc/qore/modules/SchemaReverse/html/annotated.html
+share/doc/qore/modules/SchemaReverse/html/annotated_dup.js
+share/doc/qore/modules/SchemaReverse/html/bc_s.png
+share/doc/qore/modules/SchemaReverse/html/bdwn.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_abstract_reverse_object-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_abstract_reverse_object.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_abstract_reverse_object.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_abstract_reverse_object__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_abstract_reverse_object__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_abstract_reverse_object__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_code_base_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_code_base_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_code_base_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_code_base_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_code_base_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_code_base_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_codes_base_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_codes_base_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_codes_base_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_codes_base_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_codes_base_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_codes_base_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_function_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_function_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_function_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_function_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_function_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_function_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_functions_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_functions_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_functions_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_functions_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_functions_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_functions_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_view_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_view_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_view_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_view_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_view_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_view_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_views_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_views_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_views_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_views_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_views_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_m_views_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_package_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_package_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_package_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_package_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_package_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_package_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_packages_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_packages_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_packages_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_packages_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_packages_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_packages_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedure_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedure_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedure_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedure_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedure_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedure_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedures_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedures_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedures_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedures_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedures_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_procedures_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_schema_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_schema_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_schema_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequence_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequence_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequence_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequence_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequence_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequence_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequences_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequences_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequences_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequences_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequences_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_sequences_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_table_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_table_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_table_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_table_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_table_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_table_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_tables_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_tables_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_tables_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_tables_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_tables_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_tables_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_type_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_type_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_type_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_type_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_type_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_type_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_types_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_types_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_types_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_types_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_types_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_types_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_view_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_view_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_view_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_view_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_view_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_view_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_views_reverse-members.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_views_reverse.html
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_views_reverse.js
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_views_reverse__inherit__graph.map
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_views_reverse__inherit__graph.md5
+share/doc/qore/modules/SchemaReverse/html/class_schema_reverse_1_1_views_reverse__inherit__graph.png
+share/doc/qore/modules/SchemaReverse/html/classes.html
+share/doc/qore/modules/SchemaReverse/html/closed.png
+share/doc/qore/modules/SchemaReverse/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/SchemaReverse/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/SchemaReverse/html/doc.png
+share/doc/qore/modules/SchemaReverse/html/doxygen.css
+share/doc/qore/modules/SchemaReverse/html/doxygen.png
+share/doc/qore/modules/SchemaReverse/html/dynsections.js
+share/doc/qore/modules/SchemaReverse/html/folderclosed.png
+share/doc/qore/modules/SchemaReverse/html/folderopen.png
+share/doc/qore/modules/SchemaReverse/html/functions.html
+share/doc/qore/modules/SchemaReverse/html/functions_func.html
+share/doc/qore/modules/SchemaReverse/html/graph_legend.html
+share/doc/qore/modules/SchemaReverse/html/graph_legend.md5
+share/doc/qore/modules/SchemaReverse/html/graph_legend.png
+share/doc/qore/modules/SchemaReverse/html/hierarchy.html
+share/doc/qore/modules/SchemaReverse/html/hierarchy.js
+share/doc/qore/modules/SchemaReverse/html/index.html
+share/doc/qore/modules/SchemaReverse/html/index.qhp
+share/doc/qore/modules/SchemaReverse/html/inherit_graph_0.map
+share/doc/qore/modules/SchemaReverse/html/inherit_graph_0.md5
+share/doc/qore/modules/SchemaReverse/html/inherit_graph_0.png
+share/doc/qore/modules/SchemaReverse/html/inherit_graph_1.map
+share/doc/qore/modules/SchemaReverse/html/inherit_graph_1.md5
+share/doc/qore/modules/SchemaReverse/html/inherit_graph_1.png
+share/doc/qore/modules/SchemaReverse/html/inherits.html
+share/doc/qore/modules/SchemaReverse/html/jquery.js
+share/doc/qore/modules/SchemaReverse/html/menu.js
+share/doc/qore/modules/SchemaReverse/html/menudata.js
+share/doc/qore/modules/SchemaReverse/html/namespace_schema_reverse.html
+share/doc/qore/modules/SchemaReverse/html/namespace_schema_reverse.js
+share/doc/qore/modules/SchemaReverse/html/namespacemembers.html
+share/doc/qore/modules/SchemaReverse/html/namespacemembers_func.html
+share/doc/qore/modules/SchemaReverse/html/namespacemembers_vars.html
+share/doc/qore/modules/SchemaReverse/html/namespaces.html
+share/doc/qore/modules/SchemaReverse/html/namespaces.js
+share/doc/qore/modules/SchemaReverse/html/nav_f.png
+share/doc/qore/modules/SchemaReverse/html/nav_g.png
+share/doc/qore/modules/SchemaReverse/html/nav_h.png
+share/doc/qore/modules/SchemaReverse/html/navtree.css
+share/doc/qore/modules/SchemaReverse/html/navtree.js
+share/doc/qore/modules/SchemaReverse/html/navtreedata.js
+share/doc/qore/modules/SchemaReverse/html/navtreeindex0.js
+share/doc/qore/modules/SchemaReverse/html/open.png
+share/doc/qore/modules/SchemaReverse/html/pages.html
+share/doc/qore/modules/SchemaReverse/html/resize.js
+share/doc/qore/modules/SchemaReverse/html/search/all_0.html
+share/doc/qore/modules/SchemaReverse/html/search/all_0.js
+share/doc/qore/modules/SchemaReverse/html/search/all_1.html
+share/doc/qore/modules/SchemaReverse/html/search/all_1.js
+share/doc/qore/modules/SchemaReverse/html/search/all_10.html
+share/doc/qore/modules/SchemaReverse/html/search/all_10.js
+share/doc/qore/modules/SchemaReverse/html/search/all_11.html
+share/doc/qore/modules/SchemaReverse/html/search/all_11.js
+share/doc/qore/modules/SchemaReverse/html/search/all_12.html
+share/doc/qore/modules/SchemaReverse/html/search/all_12.js
+share/doc/qore/modules/SchemaReverse/html/search/all_13.html
+share/doc/qore/modules/SchemaReverse/html/search/all_13.js
+share/doc/qore/modules/SchemaReverse/html/search/all_14.html
+share/doc/qore/modules/SchemaReverse/html/search/all_14.js
+share/doc/qore/modules/SchemaReverse/html/search/all_15.html
+share/doc/qore/modules/SchemaReverse/html/search/all_15.js
+share/doc/qore/modules/SchemaReverse/html/search/all_16.html
+share/doc/qore/modules/SchemaReverse/html/search/all_16.js
+share/doc/qore/modules/SchemaReverse/html/search/all_17.html
+share/doc/qore/modules/SchemaReverse/html/search/all_17.js
+share/doc/qore/modules/SchemaReverse/html/search/all_18.html
+share/doc/qore/modules/SchemaReverse/html/search/all_18.js
+share/doc/qore/modules/SchemaReverse/html/search/all_19.html
+share/doc/qore/modules/SchemaReverse/html/search/all_19.js
+share/doc/qore/modules/SchemaReverse/html/search/all_1a.html
+share/doc/qore/modules/SchemaReverse/html/search/all_1a.js
+share/doc/qore/modules/SchemaReverse/html/search/all_2.html
+share/doc/qore/modules/SchemaReverse/html/search/all_2.js
+share/doc/qore/modules/SchemaReverse/html/search/all_3.html
+share/doc/qore/modules/SchemaReverse/html/search/all_3.js
+share/doc/qore/modules/SchemaReverse/html/search/all_4.html
+share/doc/qore/modules/SchemaReverse/html/search/all_4.js
+share/doc/qore/modules/SchemaReverse/html/search/all_5.html
+share/doc/qore/modules/SchemaReverse/html/search/all_5.js
+share/doc/qore/modules/SchemaReverse/html/search/all_6.html
+share/doc/qore/modules/SchemaReverse/html/search/all_6.js
+share/doc/qore/modules/SchemaReverse/html/search/all_7.html
+share/doc/qore/modules/SchemaReverse/html/search/all_7.js
+share/doc/qore/modules/SchemaReverse/html/search/all_8.html
+share/doc/qore/modules/SchemaReverse/html/search/all_8.js
+share/doc/qore/modules/SchemaReverse/html/search/all_9.html
+share/doc/qore/modules/SchemaReverse/html/search/all_9.js
+share/doc/qore/modules/SchemaReverse/html/search/all_a.html
+share/doc/qore/modules/SchemaReverse/html/search/all_a.js
+share/doc/qore/modules/SchemaReverse/html/search/all_b.html
+share/doc/qore/modules/SchemaReverse/html/search/all_b.js
+share/doc/qore/modules/SchemaReverse/html/search/all_c.html
+share/doc/qore/modules/SchemaReverse/html/search/all_c.js
+share/doc/qore/modules/SchemaReverse/html/search/all_d.html
+share/doc/qore/modules/SchemaReverse/html/search/all_d.js
+share/doc/qore/modules/SchemaReverse/html/search/all_e.html
+share/doc/qore/modules/SchemaReverse/html/search/all_e.js
+share/doc/qore/modules/SchemaReverse/html/search/all_f.html
+share/doc/qore/modules/SchemaReverse/html/search/all_f.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_0.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_0.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_1.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_1.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_10.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_10.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_11.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_11.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_12.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_12.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_13.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_13.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_14.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_14.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_15.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_15.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_16.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_16.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_17.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_17.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_2.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_2.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_3.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_3.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_4.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_4.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_5.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_5.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_6.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_6.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_7.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_7.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_8.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_8.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_9.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_9.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_a.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_a.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_b.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_b.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_c.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_c.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_d.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_d.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_e.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_e.js
+share/doc/qore/modules/SchemaReverse/html/search/classes_f.html
+share/doc/qore/modules/SchemaReverse/html/search/classes_f.js
+share/doc/qore/modules/SchemaReverse/html/search/close.png
+share/doc/qore/modules/SchemaReverse/html/search/functions_0.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_0.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_1.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_1.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_10.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_10.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_11.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_11.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_12.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_12.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_13.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_13.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_14.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_14.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_15.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_15.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_16.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_16.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_17.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_17.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_18.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_18.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_19.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_19.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_2.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_2.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_3.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_3.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_4.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_4.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_5.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_5.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_6.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_6.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_7.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_7.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_8.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_8.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_9.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_9.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_a.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_a.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_b.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_b.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_c.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_c.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_d.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_d.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_e.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_e.js
+share/doc/qore/modules/SchemaReverse/html/search/functions_f.html
+share/doc/qore/modules/SchemaReverse/html/search/functions_f.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_0.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_0.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_1.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_1.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_10.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_10.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_11.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_11.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_2.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_2.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_3.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_3.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_4.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_4.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_5.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_5.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_6.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_6.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_7.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_7.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_8.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_8.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_9.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_9.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_a.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_a.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_b.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_b.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_c.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_c.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_d.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_d.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_e.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_e.js
+share/doc/qore/modules/SchemaReverse/html/search/groups_f.html
+share/doc/qore/modules/SchemaReverse/html/search/groups_f.js
+share/doc/qore/modules/SchemaReverse/html/search/mag_sel.png
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_0.html
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_0.js
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_1.html
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_1.js
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_2.html
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_2.js
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_3.html
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_3.js
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_4.html
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_4.js
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_5.html
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_5.js
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_6.html
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_6.js
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_7.html
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_7.js
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_8.html
+share/doc/qore/modules/SchemaReverse/html/search/namespaces_8.js
+share/doc/qore/modules/SchemaReverse/html/search/nomatches.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_0.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_0.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_1.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_1.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_10.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_10.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_11.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_11.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_12.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_12.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_2.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_2.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_3.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_3.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_4.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_4.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_5.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_5.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_6.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_6.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_7.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_7.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_8.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_8.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_9.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_9.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_a.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_a.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_b.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_b.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_c.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_c.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_d.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_d.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_e.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_e.js
+share/doc/qore/modules/SchemaReverse/html/search/pages_f.html
+share/doc/qore/modules/SchemaReverse/html/search/pages_f.js
+share/doc/qore/modules/SchemaReverse/html/search/search.css
+share/doc/qore/modules/SchemaReverse/html/search/search.js
+share/doc/qore/modules/SchemaReverse/html/search/search_l.png
+share/doc/qore/modules/SchemaReverse/html/search/search_m.png
+share/doc/qore/modules/SchemaReverse/html/search/search_r.png
+share/doc/qore/modules/SchemaReverse/html/search/searchdata.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_0.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_0.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_1.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_1.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_10.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_10.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_11.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_11.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_12.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_12.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_13.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_13.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_14.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_14.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_15.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_15.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_16.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_16.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_17.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_17.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_18.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_18.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_19.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_19.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_2.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_2.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_3.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_3.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_4.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_4.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_5.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_5.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_6.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_6.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_7.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_7.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_8.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_8.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_9.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_9.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_a.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_a.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_b.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_b.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_c.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_c.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_d.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_d.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_e.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_e.js
+share/doc/qore/modules/SchemaReverse/html/search/variables_f.html
+share/doc/qore/modules/SchemaReverse/html/search/variables_f.js
+share/doc/qore/modules/SchemaReverse/html/splitbar.png
+share/doc/qore/modules/SchemaReverse/html/sync_off.png
+share/doc/qore/modules/SchemaReverse/html/sync_on.png
+share/doc/qore/modules/SchemaReverse/html/tab_a.png
+share/doc/qore/modules/SchemaReverse/html/tab_b.png
+share/doc/qore/modules/SchemaReverse/html/tab_h.png
+share/doc/qore/modules/SchemaReverse/html/tab_s.png
+share/doc/qore/modules/SchemaReverse/html/tabs.css
+share/doc/qore/modules/SewioRestClient/html/_sewio_rest_client_8qm_8dox_8h_source.html
+share/doc/qore/modules/SewioRestClient/html/annotated.html
+share/doc/qore/modules/SewioRestClient/html/annotated_dup.js
+share/doc/qore/modules/SewioRestClient/html/bc_s.png
+share/doc/qore/modules/SewioRestClient/html/bdwn.png
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_client-members.html
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_client.html
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_client.js
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_client__inherit__graph.map
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_client__inherit__graph.md5
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_client__inherit__graph.png
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_connection-members.html
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_connection.html
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_connection.js
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_connection__inherit__graph.map
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_connection__inherit__graph.md5
+share/doc/qore/modules/SewioRestClient/html/class_sewio_rest_client_1_1_sewio_rest_connection__inherit__graph.png
+share/doc/qore/modules/SewioRestClient/html/classes.html
+share/doc/qore/modules/SewioRestClient/html/closed.png
+share/doc/qore/modules/SewioRestClient/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/SewioRestClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/SewioRestClient/html/doc.png
+share/doc/qore/modules/SewioRestClient/html/doxygen.css
+share/doc/qore/modules/SewioRestClient/html/doxygen.png
+share/doc/qore/modules/SewioRestClient/html/dynsections.js
+share/doc/qore/modules/SewioRestClient/html/folderclosed.png
+share/doc/qore/modules/SewioRestClient/html/folderopen.png
+share/doc/qore/modules/SewioRestClient/html/functions.html
+share/doc/qore/modules/SewioRestClient/html/functions_func.html
+share/doc/qore/modules/SewioRestClient/html/functions_vars.html
+share/doc/qore/modules/SewioRestClient/html/graph_legend.html
+share/doc/qore/modules/SewioRestClient/html/graph_legend.md5
+share/doc/qore/modules/SewioRestClient/html/graph_legend.png
+share/doc/qore/modules/SewioRestClient/html/hierarchy.html
+share/doc/qore/modules/SewioRestClient/html/hierarchy.js
+share/doc/qore/modules/SewioRestClient/html/index.html
+share/doc/qore/modules/SewioRestClient/html/index.qhp
+share/doc/qore/modules/SewioRestClient/html/inherit_graph_0.map
+share/doc/qore/modules/SewioRestClient/html/inherit_graph_0.md5
+share/doc/qore/modules/SewioRestClient/html/inherit_graph_0.png
+share/doc/qore/modules/SewioRestClient/html/inherit_graph_1.map
+share/doc/qore/modules/SewioRestClient/html/inherit_graph_1.md5
+share/doc/qore/modules/SewioRestClient/html/inherit_graph_1.png
+share/doc/qore/modules/SewioRestClient/html/inherits.html
+share/doc/qore/modules/SewioRestClient/html/jquery.js
+share/doc/qore/modules/SewioRestClient/html/menu.js
+share/doc/qore/modules/SewioRestClient/html/menudata.js
+share/doc/qore/modules/SewioRestClient/html/namespace_sewio_rest_client.html
+share/doc/qore/modules/SewioRestClient/html/namespace_sewio_rest_client.js
+share/doc/qore/modules/SewioRestClient/html/namespaces.html
+share/doc/qore/modules/SewioRestClient/html/namespaces.js
+share/doc/qore/modules/SewioRestClient/html/nav_f.png
+share/doc/qore/modules/SewioRestClient/html/nav_g.png
+share/doc/qore/modules/SewioRestClient/html/nav_h.png
+share/doc/qore/modules/SewioRestClient/html/navtree.css
+share/doc/qore/modules/SewioRestClient/html/navtree.js
+share/doc/qore/modules/SewioRestClient/html/navtreedata.js
+share/doc/qore/modules/SewioRestClient/html/navtreeindex0.js
+share/doc/qore/modules/SewioRestClient/html/open.png
+share/doc/qore/modules/SewioRestClient/html/pages.html
+share/doc/qore/modules/SewioRestClient/html/resize.js
+share/doc/qore/modules/SewioRestClient/html/search/all_0.html
+share/doc/qore/modules/SewioRestClient/html/search/all_0.js
+share/doc/qore/modules/SewioRestClient/html/search/all_1.html
+share/doc/qore/modules/SewioRestClient/html/search/all_1.js
+share/doc/qore/modules/SewioRestClient/html/search/all_10.html
+share/doc/qore/modules/SewioRestClient/html/search/all_10.js
+share/doc/qore/modules/SewioRestClient/html/search/all_11.html
+share/doc/qore/modules/SewioRestClient/html/search/all_11.js
+share/doc/qore/modules/SewioRestClient/html/search/all_12.html
+share/doc/qore/modules/SewioRestClient/html/search/all_12.js
+share/doc/qore/modules/SewioRestClient/html/search/all_13.html
+share/doc/qore/modules/SewioRestClient/html/search/all_13.js
+share/doc/qore/modules/SewioRestClient/html/search/all_14.html
+share/doc/qore/modules/SewioRestClient/html/search/all_14.js
+share/doc/qore/modules/SewioRestClient/html/search/all_15.html
+share/doc/qore/modules/SewioRestClient/html/search/all_15.js
+share/doc/qore/modules/SewioRestClient/html/search/all_16.html
+share/doc/qore/modules/SewioRestClient/html/search/all_16.js
+share/doc/qore/modules/SewioRestClient/html/search/all_17.html
+share/doc/qore/modules/SewioRestClient/html/search/all_17.js
+share/doc/qore/modules/SewioRestClient/html/search/all_18.html
+share/doc/qore/modules/SewioRestClient/html/search/all_18.js
+share/doc/qore/modules/SewioRestClient/html/search/all_19.html
+share/doc/qore/modules/SewioRestClient/html/search/all_19.js
+share/doc/qore/modules/SewioRestClient/html/search/all_1a.html
+share/doc/qore/modules/SewioRestClient/html/search/all_1a.js
+share/doc/qore/modules/SewioRestClient/html/search/all_2.html
+share/doc/qore/modules/SewioRestClient/html/search/all_2.js
+share/doc/qore/modules/SewioRestClient/html/search/all_3.html
+share/doc/qore/modules/SewioRestClient/html/search/all_3.js
+share/doc/qore/modules/SewioRestClient/html/search/all_4.html
+share/doc/qore/modules/SewioRestClient/html/search/all_4.js
+share/doc/qore/modules/SewioRestClient/html/search/all_5.html
+share/doc/qore/modules/SewioRestClient/html/search/all_5.js
+share/doc/qore/modules/SewioRestClient/html/search/all_6.html
+share/doc/qore/modules/SewioRestClient/html/search/all_6.js
+share/doc/qore/modules/SewioRestClient/html/search/all_7.html
+share/doc/qore/modules/SewioRestClient/html/search/all_7.js
+share/doc/qore/modules/SewioRestClient/html/search/all_8.html
+share/doc/qore/modules/SewioRestClient/html/search/all_8.js
+share/doc/qore/modules/SewioRestClient/html/search/all_9.html
+share/doc/qore/modules/SewioRestClient/html/search/all_9.js
+share/doc/qore/modules/SewioRestClient/html/search/all_a.html
+share/doc/qore/modules/SewioRestClient/html/search/all_a.js
+share/doc/qore/modules/SewioRestClient/html/search/all_b.html
+share/doc/qore/modules/SewioRestClient/html/search/all_b.js
+share/doc/qore/modules/SewioRestClient/html/search/all_c.html
+share/doc/qore/modules/SewioRestClient/html/search/all_c.js
+share/doc/qore/modules/SewioRestClient/html/search/all_d.html
+share/doc/qore/modules/SewioRestClient/html/search/all_d.js
+share/doc/qore/modules/SewioRestClient/html/search/all_e.html
+share/doc/qore/modules/SewioRestClient/html/search/all_e.js
+share/doc/qore/modules/SewioRestClient/html/search/all_f.html
+share/doc/qore/modules/SewioRestClient/html/search/all_f.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_0.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_0.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_1.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_1.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_10.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_10.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_11.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_11.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_12.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_12.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_13.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_13.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_14.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_14.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_15.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_15.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_16.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_16.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_2.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_2.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_3.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_3.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_4.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_4.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_5.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_5.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_6.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_6.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_7.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_7.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_8.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_8.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_9.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_9.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_a.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_a.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_b.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_b.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_c.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_c.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_d.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_d.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_e.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_e.js
+share/doc/qore/modules/SewioRestClient/html/search/classes_f.html
+share/doc/qore/modules/SewioRestClient/html/search/classes_f.js
+share/doc/qore/modules/SewioRestClient/html/search/close.png
+share/doc/qore/modules/SewioRestClient/html/search/functions_0.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_0.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_1.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_1.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_10.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_10.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_11.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_11.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_12.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_12.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_13.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_13.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_14.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_14.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_15.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_15.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_16.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_16.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_17.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_17.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_18.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_18.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_19.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_19.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_2.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_2.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_3.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_3.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_4.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_4.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_5.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_5.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_6.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_6.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_7.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_7.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_8.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_8.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_9.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_9.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_a.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_a.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_b.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_b.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_c.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_c.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_d.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_d.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_e.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_e.js
+share/doc/qore/modules/SewioRestClient/html/search/functions_f.html
+share/doc/qore/modules/SewioRestClient/html/search/functions_f.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_0.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_0.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_1.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_1.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_10.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_10.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_11.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_11.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_2.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_2.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_3.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_3.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_4.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_4.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_5.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_5.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_6.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_6.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_7.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_7.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_8.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_8.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_9.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_9.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_a.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_a.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_b.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_b.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_c.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_c.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_d.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_d.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_e.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_e.js
+share/doc/qore/modules/SewioRestClient/html/search/groups_f.html
+share/doc/qore/modules/SewioRestClient/html/search/groups_f.js
+share/doc/qore/modules/SewioRestClient/html/search/mag_sel.png
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_0.html
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_0.js
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_1.html
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_1.js
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_2.html
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_2.js
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_3.html
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_3.js
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_4.html
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_4.js
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_5.html
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_5.js
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_6.html
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_6.js
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_7.html
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_7.js
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_8.html
+share/doc/qore/modules/SewioRestClient/html/search/namespaces_8.js
+share/doc/qore/modules/SewioRestClient/html/search/nomatches.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_0.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_0.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_1.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_1.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_10.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_10.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_11.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_11.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_12.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_12.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_2.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_2.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_3.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_3.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_4.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_4.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_5.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_5.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_6.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_6.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_7.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_7.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_8.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_8.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_9.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_9.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_a.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_a.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_b.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_b.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_c.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_c.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_d.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_d.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_e.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_e.js
+share/doc/qore/modules/SewioRestClient/html/search/pages_f.html
+share/doc/qore/modules/SewioRestClient/html/search/pages_f.js
+share/doc/qore/modules/SewioRestClient/html/search/search.css
+share/doc/qore/modules/SewioRestClient/html/search/search.js
+share/doc/qore/modules/SewioRestClient/html/search/search_l.png
+share/doc/qore/modules/SewioRestClient/html/search/search_m.png
+share/doc/qore/modules/SewioRestClient/html/search/search_r.png
+share/doc/qore/modules/SewioRestClient/html/search/searchdata.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_0.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_0.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_1.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_1.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_10.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_10.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_11.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_11.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_12.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_12.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_13.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_13.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_14.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_14.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_15.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_15.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_16.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_16.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_17.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_17.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_18.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_18.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_19.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_19.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_2.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_2.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_3.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_3.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_4.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_4.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_5.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_5.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_6.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_6.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_7.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_7.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_8.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_8.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_9.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_9.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_a.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_a.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_b.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_b.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_c.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_c.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_d.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_d.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_e.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_e.js
+share/doc/qore/modules/SewioRestClient/html/search/variables_f.html
+share/doc/qore/modules/SewioRestClient/html/search/variables_f.js
+share/doc/qore/modules/SewioRestClient/html/splitbar.png
+share/doc/qore/modules/SewioRestClient/html/sync_off.png
+share/doc/qore/modules/SewioRestClient/html/sync_on.png
+share/doc/qore/modules/SewioRestClient/html/tab_a.png
+share/doc/qore/modules/SewioRestClient/html/tab_b.png
+share/doc/qore/modules/SewioRestClient/html/tab_h.png
+share/doc/qore/modules/SewioRestClient/html/tab_s.png
+share/doc/qore/modules/SewioRestClient/html/tabs.css
+share/doc/qore/modules/SewioWebSocketClient/html/_sewio_web_socket_client_8qm_8dox_8h_source.html
+share/doc/qore/modules/SewioWebSocketClient/html/annotated.html
+share/doc/qore/modules/SewioWebSocketClient/html/annotated_dup.js
+share/doc/qore/modules/SewioWebSocketClient/html/bc_s.png
+share/doc/qore/modules/SewioWebSocketClient/html/bdwn.png
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_client-members.html
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_client.html
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_client.js
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_client__inherit__graph.map
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_client__inherit__graph.md5
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_client__inherit__graph.png
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_connection-members.html
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_connection.html
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_connection.js
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_connection__inherit__graph.map
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_connection__inherit__graph.md5
+share/doc/qore/modules/SewioWebSocketClient/html/class_sewio_web_socket_client_1_1_sewio_web_socket_connection__inherit__graph.png
+share/doc/qore/modules/SewioWebSocketClient/html/classes.html
+share/doc/qore/modules/SewioWebSocketClient/html/closed.png
+share/doc/qore/modules/SewioWebSocketClient/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/SewioWebSocketClient/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/SewioWebSocketClient/html/doc.png
+share/doc/qore/modules/SewioWebSocketClient/html/doxygen.css
+share/doc/qore/modules/SewioWebSocketClient/html/doxygen.png
+share/doc/qore/modules/SewioWebSocketClient/html/dynsections.js
+share/doc/qore/modules/SewioWebSocketClient/html/folderclosed.png
+share/doc/qore/modules/SewioWebSocketClient/html/folderopen.png
+share/doc/qore/modules/SewioWebSocketClient/html/functions.html
+share/doc/qore/modules/SewioWebSocketClient/html/functions_func.html
+share/doc/qore/modules/SewioWebSocketClient/html/functions_vars.html
+share/doc/qore/modules/SewioWebSocketClient/html/graph_legend.html
+share/doc/qore/modules/SewioWebSocketClient/html/graph_legend.md5
+share/doc/qore/modules/SewioWebSocketClient/html/graph_legend.png
+share/doc/qore/modules/SewioWebSocketClient/html/hierarchy.html
+share/doc/qore/modules/SewioWebSocketClient/html/hierarchy.js
+share/doc/qore/modules/SewioWebSocketClient/html/index.html
+share/doc/qore/modules/SewioWebSocketClient/html/index.qhp
+share/doc/qore/modules/SewioWebSocketClient/html/inherit_graph_0.map
+share/doc/qore/modules/SewioWebSocketClient/html/inherit_graph_0.md5
+share/doc/qore/modules/SewioWebSocketClient/html/inherit_graph_0.png
+share/doc/qore/modules/SewioWebSocketClient/html/inherit_graph_1.map
+share/doc/qore/modules/SewioWebSocketClient/html/inherit_graph_1.md5
+share/doc/qore/modules/SewioWebSocketClient/html/inherit_graph_1.png
+share/doc/qore/modules/SewioWebSocketClient/html/inherits.html
+share/doc/qore/modules/SewioWebSocketClient/html/jquery.js
+share/doc/qore/modules/SewioWebSocketClient/html/menu.js
+share/doc/qore/modules/SewioWebSocketClient/html/menudata.js
+share/doc/qore/modules/SewioWebSocketClient/html/namespace_sewio_web_socket_client.html
+share/doc/qore/modules/SewioWebSocketClient/html/namespace_sewio_web_socket_client.js
+share/doc/qore/modules/SewioWebSocketClient/html/namespacemembers.html
+share/doc/qore/modules/SewioWebSocketClient/html/namespacemembers_vars.html
+share/doc/qore/modules/SewioWebSocketClient/html/namespaces.html
+share/doc/qore/modules/SewioWebSocketClient/html/namespaces.js
+share/doc/qore/modules/SewioWebSocketClient/html/nav_f.png
+share/doc/qore/modules/SewioWebSocketClient/html/nav_g.png
+share/doc/qore/modules/SewioWebSocketClient/html/nav_h.png
+share/doc/qore/modules/SewioWebSocketClient/html/navtree.css
+share/doc/qore/modules/SewioWebSocketClient/html/navtree.js
+share/doc/qore/modules/SewioWebSocketClient/html/navtreedata.js
+share/doc/qore/modules/SewioWebSocketClient/html/navtreeindex0.js
+share/doc/qore/modules/SewioWebSocketClient/html/open.png
+share/doc/qore/modules/SewioWebSocketClient/html/pages.html
+share/doc/qore/modules/SewioWebSocketClient/html/resize.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_0.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_0.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_1.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_1.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_10.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_10.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_11.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_11.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_12.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_12.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_13.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_13.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_14.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_14.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_15.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_15.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_16.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_16.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_17.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_17.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_18.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_18.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_19.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_19.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_1a.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_1a.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_2.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_2.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_3.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_3.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_4.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_4.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_5.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_5.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_6.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_6.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_7.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_7.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_8.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_8.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_9.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_9.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_a.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_a.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_b.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_b.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_c.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_c.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_d.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_d.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_e.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_e.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_f.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/all_f.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_0.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_0.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_1.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_1.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_10.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_10.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_11.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_11.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_12.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_12.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_13.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_13.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_14.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_14.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_15.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_15.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_16.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_16.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_2.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_2.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_3.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_3.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_4.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_4.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_5.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_5.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_6.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_6.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_7.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_7.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_8.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_8.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_9.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_9.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_a.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_a.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_b.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_b.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_c.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_c.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_d.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_d.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_e.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_e.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_f.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/classes_f.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/close.png
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_0.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_0.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_1.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_1.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_10.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_10.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_11.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_11.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_12.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_12.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_13.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_13.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_14.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_14.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_15.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_15.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_16.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_16.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_17.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_17.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_18.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_18.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_19.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_19.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_2.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_2.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_3.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_3.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_4.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_4.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_5.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_5.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_6.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_6.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_7.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_7.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_8.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_8.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_9.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_9.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_a.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_a.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_b.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_b.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_c.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_c.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_d.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_d.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_e.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_e.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_f.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/functions_f.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_0.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_0.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_1.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_1.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_10.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_10.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_11.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_11.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_2.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_2.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_3.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_3.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_4.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_4.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_5.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_5.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_6.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_6.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_7.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_7.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_8.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_8.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_9.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_9.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_a.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_a.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_b.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_b.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_c.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_c.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_d.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_d.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_e.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_e.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_f.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/groups_f.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/mag_sel.png
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_0.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_0.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_1.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_1.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_2.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_2.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_3.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_3.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_4.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_4.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_5.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_5.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_6.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_6.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_7.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_7.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_8.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/namespaces_8.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/nomatches.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_0.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_0.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_1.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_1.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_10.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_10.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_11.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_11.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_12.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_12.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_2.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_2.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_3.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_3.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_4.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_4.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_5.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_5.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_6.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_6.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_7.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_7.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_8.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_8.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_9.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_9.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_a.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_a.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_b.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_b.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_c.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_c.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_d.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_d.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_e.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_e.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_f.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/pages_f.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/search.css
+share/doc/qore/modules/SewioWebSocketClient/html/search/search.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/search_l.png
+share/doc/qore/modules/SewioWebSocketClient/html/search/search_m.png
+share/doc/qore/modules/SewioWebSocketClient/html/search/search_r.png
+share/doc/qore/modules/SewioWebSocketClient/html/search/searchdata.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_0.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_0.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_1.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_1.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_10.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_10.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_11.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_11.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_12.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_12.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_13.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_13.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_14.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_14.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_15.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_15.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_16.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_16.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_17.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_17.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_18.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_18.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_19.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_19.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_2.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_2.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_3.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_3.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_4.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_4.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_5.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_5.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_6.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_6.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_7.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_7.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_8.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_8.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_9.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_9.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_a.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_a.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_b.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_b.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_c.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_c.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_d.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_d.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_e.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_e.js
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_f.html
+share/doc/qore/modules/SewioWebSocketClient/html/search/variables_f.js
+share/doc/qore/modules/SewioWebSocketClient/html/splitbar.png
+share/doc/qore/modules/SewioWebSocketClient/html/sync_off.png
+share/doc/qore/modules/SewioWebSocketClient/html/sync_on.png
+share/doc/qore/modules/SewioWebSocketClient/html/tab_a.png
+share/doc/qore/modules/SewioWebSocketClient/html/tab_b.png
+share/doc/qore/modules/SewioWebSocketClient/html/tab_h.png
+share/doc/qore/modules/SewioWebSocketClient/html/tab_s.png
+share/doc/qore/modules/SewioWebSocketClient/html/tabs.css
 share/doc/qore/modules/SmtpClient/html/_smtp_client_8qm_8dox_8h_source.html
 share/doc/qore/modules/SmtpClient/html/annotated.html
 share/doc/qore/modules/SmtpClient/html/annotated_dup.js
@@ -11381,6 +16293,12 @@ share/doc/qore/modules/SmtpClient/html/c
 share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_client-members.html
 share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_client.html
 share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_client.js
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection-members.html
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection.html
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection.js
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection__inherit__graph.map
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection__inherit__graph.md5
+share/doc/qore/modules/SmtpClient/html/class_smtp_client_1_1_smtp_connection__inherit__graph.png
 share/doc/qore/modules/SmtpClient/html/classes.html
 share/doc/qore/modules/SmtpClient/html/closed.png
 share/doc/qore/modules/SmtpClient/html/dir_13add0083e006ac756009d5942a24d28.html
@@ -11410,6 +16328,9 @@ share/doc/qore/modules/SmtpClient/html/i
 share/doc/qore/modules/SmtpClient/html/inherit_graph_2.map
 share/doc/qore/modules/SmtpClient/html/inherit_graph_2.md5
 share/doc/qore/modules/SmtpClient/html/inherit_graph_2.png
+share/doc/qore/modules/SmtpClient/html/inherit_graph_3.map
+share/doc/qore/modules/SmtpClient/html/inherit_graph_3.md5
+share/doc/qore/modules/SmtpClient/html/inherit_graph_3.png
 share/doc/qore/modules/SmtpClient/html/inherits.html
 share/doc/qore/modules/SmtpClient/html/jquery.js
 share/doc/qore/modules/SmtpClient/html/menu.js
@@ -11494,6 +16415,14 @@ share/doc/qore/modules/SmtpClient/html/s
 share/doc/qore/modules/SmtpClient/html/search/classes_11.js
 share/doc/qore/modules/SmtpClient/html/search/classes_12.html
 share/doc/qore/modules/SmtpClient/html/search/classes_12.js
+share/doc/qore/modules/SmtpClient/html/search/classes_13.html
+share/doc/qore/modules/SmtpClient/html/search/classes_13.js
+share/doc/qore/modules/SmtpClient/html/search/classes_14.html
+share/doc/qore/modules/SmtpClient/html/search/classes_14.js
+share/doc/qore/modules/SmtpClient/html/search/classes_15.html
+share/doc/qore/modules/SmtpClient/html/search/classes_15.js
+share/doc/qore/modules/SmtpClient/html/search/classes_16.html
+share/doc/qore/modules/SmtpClient/html/search/classes_16.js
 share/doc/qore/modules/SmtpClient/html/search/classes_2.html
 share/doc/qore/modules/SmtpClient/html/search/classes_2.js
 share/doc/qore/modules/SmtpClient/html/search/classes_3.html
@@ -11545,6 +16474,8 @@ share/doc/qore/modules/SmtpClient/html/s
 share/doc/qore/modules/SmtpClient/html/search/functions_17.js
 share/doc/qore/modules/SmtpClient/html/search/functions_18.html
 share/doc/qore/modules/SmtpClient/html/search/functions_18.js
+share/doc/qore/modules/SmtpClient/html/search/functions_19.html
+share/doc/qore/modules/SmtpClient/html/search/functions_19.js
 share/doc/qore/modules/SmtpClient/html/search/functions_2.html
 share/doc/qore/modules/SmtpClient/html/search/functions_2.js
 share/doc/qore/modules/SmtpClient/html/search/functions_3.html
@@ -11637,6 +16568,8 @@ share/doc/qore/modules/SmtpClient/html/s
 share/doc/qore/modules/SmtpClient/html/search/pages_10.js
 share/doc/qore/modules/SmtpClient/html/search/pages_11.html
 share/doc/qore/modules/SmtpClient/html/search/pages_11.js
+share/doc/qore/modules/SmtpClient/html/search/pages_12.html
+share/doc/qore/modules/SmtpClient/html/search/pages_12.js
 share/doc/qore/modules/SmtpClient/html/search/pages_2.html
 share/doc/qore/modules/SmtpClient/html/search/pages_2.js
 share/doc/qore/modules/SmtpClient/html/search/pages_3.html
@@ -11691,6 +16624,10 @@ share/doc/qore/modules/SmtpClient/html/s
 share/doc/qore/modules/SmtpClient/html/search/variables_16.js
 share/doc/qore/modules/SmtpClient/html/search/variables_17.html
 share/doc/qore/modules/SmtpClient/html/search/variables_17.js
+share/doc/qore/modules/SmtpClient/html/search/variables_18.html
+share/doc/qore/modules/SmtpClient/html/search/variables_18.js
+share/doc/qore/modules/SmtpClient/html/search/variables_19.html
+share/doc/qore/modules/SmtpClient/html/search/variables_19.js
 share/doc/qore/modules/SmtpClient/html/search/variables_2.html
 share/doc/qore/modules/SmtpClient/html/search/variables_2.js
 share/doc/qore/modules/SmtpClient/html/search/variables_3.html
@@ -11890,6 +16827,7 @@ share/doc/qore/modules/SqlUtil/html/dyns
 share/doc/qore/modules/SqlUtil/html/folderclosed.png
 share/doc/qore/modules/SqlUtil/html/folderopen.png
 share/doc/qore/modules/SqlUtil/html/functions.html
+share/doc/qore/modules/SqlUtil/html/functions_a.html
 share/doc/qore/modules/SqlUtil/html/functions_b.html
 share/doc/qore/modules/SqlUtil/html/functions_c.html
 share/doc/qore/modules/SqlUtil/html/functions_d.html
@@ -11918,6 +16856,7 @@ share/doc/qore/modules/SqlUtil/html/func
 share/doc/qore/modules/SqlUtil/html/functions_g.html
 share/doc/qore/modules/SqlUtil/html/functions_h.html
 share/doc/qore/modules/SqlUtil/html/functions_i.html
+share/doc/qore/modules/SqlUtil/html/functions_j.html
 share/doc/qore/modules/SqlUtil/html/functions_k.html
 share/doc/qore/modules/SqlUtil/html/functions_l.html
 share/doc/qore/modules/SqlUtil/html/functions_m.html
@@ -11943,16 +16882,18 @@ share/doc/qore/modules/SqlUtil/html/grou
 share/doc/qore/modules/SqlUtil/html/group__breakpoint__policy__options.js
 share/doc/qore/modules/SqlUtil/html/group__call__type__constants.js
 share/doc/qore/modules/SqlUtil/html/group__compression__constants.js
+share/doc/qore/modules/SqlUtil/html/group__compression__transformations.js
 share/doc/qore/modules/SqlUtil/html/group__compresssion__functions.js
 share/doc/qore/modules/SqlUtil/html/group__context__functions.js
+share/doc/qore/modules/SqlUtil/html/group__crypto__transformations.js
 share/doc/qore/modules/SqlUtil/html/group__cryptographic__constants.js
 share/doc/qore/modules/SqlUtil/html/group__cryptographic__functions.js
 share/doc/qore/modules/SqlUtil/html/group__database__driver__constants.js
 share/doc/qore/modules/SqlUtil/html/group__date__and__time__functions.js
 share/doc/qore/modules/SqlUtil/html/group__dbi__capabilities.js
 share/doc/qore/modules/SqlUtil/html/group__dbi__functions.js
-share/doc/qore/modules/SqlUtil/html/group__debug__rc__options.js
-share/doc/qore/modules/SqlUtil/html/group__debug__step__options.js
+share/doc/qore/modules/SqlUtil/html/group__debug__flow__options.js
+share/doc/qore/modules/SqlUtil/html/group__debug__rs__options.js
 share/doc/qore/modules/SqlUtil/html/group__digest__functions.js
 share/doc/qore/modules/SqlUtil/html/group__env__functions.js
 share/doc/qore/modules/SqlUtil/html/group__error__constants.js
@@ -11978,6 +16919,7 @@ share/doc/qore/modules/SqlUtil/html/grou
 share/doc/qore/modules/SqlUtil/html/group__network__address__information__constants.js
 share/doc/qore/modules/SqlUtil/html/group__null__and__nothing__constants.js
 share/doc/qore/modules/SqlUtil/html/group__number__formatting__constants.js
+share/doc/qore/modules/SqlUtil/html/group__number__string__formatting__constants.js
 share/doc/qore/modules/SqlUtil/html/group__object__functions.js
 share/doc/qore/modules/SqlUtil/html/group__old__dbi__functions.js
 share/doc/qore/modules/SqlUtil/html/group__option__constants.js
@@ -11992,6 +16934,8 @@ share/doc/qore/modules/SqlUtil/html/grou
 share/doc/qore/modules/SqlUtil/html/group__sql__constants.js
 share/doc/qore/modules/SqlUtil/html/group__sql__cop__funcs.html
 share/doc/qore/modules/SqlUtil/html/group__sql__cop__funcs.js
+share/doc/qore/modules/SqlUtil/html/group__sql__cop__trunc__date__enum.html
+share/doc/qore/modules/SqlUtil/html/group__sql__cop__trunc__date__enum.js
 share/doc/qore/modules/SqlUtil/html/group__sql__cops.html
 share/doc/qore/modules/SqlUtil/html/group__sql__cops.js
 share/doc/qore/modules/SqlUtil/html/group__sql__iop__funcs.html
@@ -12010,10 +16954,10 @@ share/doc/qore/modules/SqlUtil/html/grou
 share/doc/qore/modules/SqlUtil/html/group__sql__uop__funcs.js
 share/doc/qore/modules/SqlUtil/html/group__sql__uops.html
 share/doc/qore/modules/SqlUtil/html/group__sql__uops.js
+share/doc/qore/modules/SqlUtil/html/group__ssl__mode__constants.js
 share/doc/qore/modules/SqlUtil/html/group__string__functions.js
 share/doc/qore/modules/SqlUtil/html/group__string__type__constants.js
 share/doc/qore/modules/SqlUtil/html/group__system__and__build__constants.js
-share/doc/qore/modules/SqlUtil/html/group__t.js
 share/doc/qore/modules/SqlUtil/html/group__tattr__control__character__constants.js
 share/doc/qore/modules/SqlUtil/html/group__tattr__control__mode__constants.js
 share/doc/qore/modules/SqlUtil/html/group__tattr__input__mode__constants.js
@@ -12048,6 +16992,24 @@ share/doc/qore/modules/SqlUtil/html/inhe
 share/doc/qore/modules/SqlUtil/html/inherit_graph_11.map
 share/doc/qore/modules/SqlUtil/html/inherit_graph_11.md5
 share/doc/qore/modules/SqlUtil/html/inherit_graph_11.png
+share/doc/qore/modules/SqlUtil/html/inherit_graph_12.map
+share/doc/qore/modules/SqlUtil/html/inherit_graph_12.md5
+share/doc/qore/modules/SqlUtil/html/inherit_graph_12.png
+share/doc/qore/modules/SqlUtil/html/inherit_graph_13.map
+share/doc/qore/modules/SqlUtil/html/inherit_graph_13.md5
+share/doc/qore/modules/SqlUtil/html/inherit_graph_13.png
+share/doc/qore/modules/SqlUtil/html/inherit_graph_14.map
+share/doc/qore/modules/SqlUtil/html/inherit_graph_14.md5
+share/doc/qore/modules/SqlUtil/html/inherit_graph_14.png
+share/doc/qore/modules/SqlUtil/html/inherit_graph_15.map
+share/doc/qore/modules/SqlUtil/html/inherit_graph_15.md5
+share/doc/qore/modules/SqlUtil/html/inherit_graph_15.png
+share/doc/qore/modules/SqlUtil/html/inherit_graph_16.map
+share/doc/qore/modules/SqlUtil/html/inherit_graph_16.md5
+share/doc/qore/modules/SqlUtil/html/inherit_graph_16.png
+share/doc/qore/modules/SqlUtil/html/inherit_graph_17.map
+share/doc/qore/modules/SqlUtil/html/inherit_graph_17.md5
+share/doc/qore/modules/SqlUtil/html/inherit_graph_17.png
 share/doc/qore/modules/SqlUtil/html/inherit_graph_2.map
 share/doc/qore/modules/SqlUtil/html/inherit_graph_2.md5
 share/doc/qore/modules/SqlUtil/html/inherit_graph_2.png
@@ -12100,6 +17062,7 @@ share/doc/qore/modules/SqlUtil/html/navt
 share/doc/qore/modules/SqlUtil/html/navtreeindex6.js
 share/doc/qore/modules/SqlUtil/html/navtreeindex7.js
 share/doc/qore/modules/SqlUtil/html/navtreeindex8.js
+share/doc/qore/modules/SqlUtil/html/navtreeindex9.js
 share/doc/qore/modules/SqlUtil/html/open.png
 share/doc/qore/modules/SqlUtil/html/pages.html
 share/doc/qore/modules/SqlUtil/html/resize.js
@@ -12168,6 +17131,10 @@ share/doc/qore/modules/SqlUtil/html/sear
 share/doc/qore/modules/SqlUtil/html/search/classes_11.js
 share/doc/qore/modules/SqlUtil/html/search/classes_12.html
 share/doc/qore/modules/SqlUtil/html/search/classes_12.js
+share/doc/qore/modules/SqlUtil/html/search/classes_13.html
+share/doc/qore/modules/SqlUtil/html/search/classes_13.js
+share/doc/qore/modules/SqlUtil/html/search/classes_14.html
+share/doc/qore/modules/SqlUtil/html/search/classes_14.js
 share/doc/qore/modules/SqlUtil/html/search/classes_2.html
 share/doc/qore/modules/SqlUtil/html/search/classes_2.js
 share/doc/qore/modules/SqlUtil/html/search/classes_3.html
@@ -12290,10 +17257,6 @@ share/doc/qore/modules/SqlUtil/html/sear
 share/doc/qore/modules/SqlUtil/html/search/namespaces_1.js
 share/doc/qore/modules/SqlUtil/html/search/namespaces_2.html
 share/doc/qore/modules/SqlUtil/html/search/namespaces_2.js
-share/doc/qore/modules/SqlUtil/html/search/namespaces_3.html
-share/doc/qore/modules/SqlUtil/html/search/namespaces_3.js
-share/doc/qore/modules/SqlUtil/html/search/namespaces_4.html
-share/doc/qore/modules/SqlUtil/html/search/namespaces_4.js
 share/doc/qore/modules/SqlUtil/html/search/nomatches.html
 share/doc/qore/modules/SqlUtil/html/search/pages_0.html
 share/doc/qore/modules/SqlUtil/html/search/pages_0.js
@@ -12303,6 +17266,8 @@ share/doc/qore/modules/SqlUtil/html/sear
 share/doc/qore/modules/SqlUtil/html/search/pages_10.js
 share/doc/qore/modules/SqlUtil/html/search/pages_11.html
 share/doc/qore/modules/SqlUtil/html/search/pages_11.js
+share/doc/qore/modules/SqlUtil/html/search/pages_12.html
+share/doc/qore/modules/SqlUtil/html/search/pages_12.js
 share/doc/qore/modules/SqlUtil/html/search/pages_2.html
 share/doc/qore/modules/SqlUtil/html/search/pages_2.js
 share/doc/qore/modules/SqlUtil/html/search/pages_3.html
@@ -12357,6 +17322,10 @@ share/doc/qore/modules/SqlUtil/html/sear
 share/doc/qore/modules/SqlUtil/html/search/variables_16.js
 share/doc/qore/modules/SqlUtil/html/search/variables_17.html
 share/doc/qore/modules/SqlUtil/html/search/variables_17.js
+share/doc/qore/modules/SqlUtil/html/search/variables_18.html
+share/doc/qore/modules/SqlUtil/html/search/variables_18.js
+share/doc/qore/modules/SqlUtil/html/search/variables_19.html
+share/doc/qore/modules/SqlUtil/html/search/variables_19.js
 share/doc/qore/modules/SqlUtil/html/search/variables_2.html
 share/doc/qore/modules/SqlUtil/html/search/variables_2.js
 share/doc/qore/modules/SqlUtil/html/search/variables_3.html
@@ -12387,6 +17356,24 @@ share/doc/qore/modules/SqlUtil/html/sear
 share/doc/qore/modules/SqlUtil/html/search/variables_f.js
 share/doc/qore/modules/SqlUtil/html/splitbar.png
 share/doc/qore/modules/SqlUtil/html/sql_operations.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_column_operator_info-members.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_column_operator_info.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_column_operator_info.js
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_generic_column_info-members.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_generic_column_info.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_generic_column_info.js
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_insert_operator_info-members.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_insert_operator_info.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_insert_operator_info.js
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_join_operator_info-members.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_join_operator_info.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_join_operator_info.js
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_operator_info-members.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_operator_info.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_operator_info.js
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_update_operator_info-members.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_update_operator_info.html
+share/doc/qore/modules/SqlUtil/html/struct_sql_util_1_1_update_operator_info.js
 share/doc/qore/modules/SqlUtil/html/sync_off.png
 share/doc/qore/modules/SqlUtil/html/sync_on.png
 share/doc/qore/modules/SqlUtil/html/tab_a.png
@@ -12394,6 +17381,518 @@ share/doc/qore/modules/SqlUtil/html/tab_
 share/doc/qore/modules/SqlUtil/html/tab_h.png
 share/doc/qore/modules/SqlUtil/html/tab_s.png
 share/doc/qore/modules/SqlUtil/html/tabs.css
+share/doc/qore/modules/Swagger/html/_swagger_8qm_8dox_8h_source.html
+share/doc/qore/modules/Swagger/html/annotated.html
+share/doc/qore/modules/Swagger/html/annotated_dup.js
+share/doc/qore/modules/Swagger/html/bc_s.png
+share/doc/qore/modules/Swagger/html/bdwn.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_abstract_parameter_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_abstract_parameter_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_abstract_parameter_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_abstract_parameter_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_abstract_parameter_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_abstract_parameter_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_body_parameter-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_body_parameter.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_body_parameter.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_body_parameter__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_body_parameter__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_body_parameter__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_contact_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_contact_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_contact_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_contact_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_contact_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_contact_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_external_documentation_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_external_documentation_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_external_documentation_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_external_documentation_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_external_documentation_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_external_documentation_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_header_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_header_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_header_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_header_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_header_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_header_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_info_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_info_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_info_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_info_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_info_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_info_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_license_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_license_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_license_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_license_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_license_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_license_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_object_base-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_object_base.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_object_base.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_object_base__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_object_base__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_object_base__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_operation_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_operation_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_operation_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_operation_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_operation_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_operation_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_other_parameter-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_other_parameter.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_other_parameter.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_other_parameter__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_other_parameter__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_other_parameter__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_parameter_items_schema_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_parameter_items_schema_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_parameter_items_schema_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_parameter_items_schema_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_parameter_items_schema_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_parameter_items_schema_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_path_component-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_path_component.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_path_component.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_path_item_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_path_item_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_path_item_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_path_item_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_path_item_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_path_item_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_paths_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_paths_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_paths_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_paths_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_paths_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_paths_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_response_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_response_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_response_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_response_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_response_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_response_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_responses_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_responses_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_responses_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_responses_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_responses_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_responses_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_base-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_base.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_base.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_base__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_base__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_base__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_schema_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_scopes_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_scopes_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_scopes_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_scopes_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_scopes_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_scopes_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_security_scheme_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_security_scheme_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_security_scheme_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_security_scheme_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_security_scheme_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_security_scheme_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_swagger_loader-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_swagger_loader.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_swagger_schema-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_swagger_schema.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_swagger_schema.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_swagger_schema__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_swagger_schema__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_swagger_schema__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_tag_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_tag_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_tag_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_tag_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_tag_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_tag_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_xml_object-members.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_xml_object.html
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_xml_object.js
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_xml_object__inherit__graph.map
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_xml_object__inherit__graph.md5
+share/doc/qore/modules/Swagger/html/class_swagger_1_1_xml_object__inherit__graph.png
+share/doc/qore/modules/Swagger/html/classes.html
+share/doc/qore/modules/Swagger/html/closed.png
+share/doc/qore/modules/Swagger/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/Swagger/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/Swagger/html/doc.png
+share/doc/qore/modules/Swagger/html/doxygen.css
+share/doc/qore/modules/Swagger/html/doxygen.png
+share/doc/qore/modules/Swagger/html/dynsections.js
+share/doc/qore/modules/Swagger/html/folderclosed.png
+share/doc/qore/modules/Swagger/html/folderopen.png
+share/doc/qore/modules/Swagger/html/functions.html
+share/doc/qore/modules/Swagger/html/functions_b.html
+share/doc/qore/modules/Swagger/html/functions_c.html
+share/doc/qore/modules/Swagger/html/functions_d.html
+share/doc/qore/modules/Swagger/html/functions_dup.js
+share/doc/qore/modules/Swagger/html/functions_e.html
+share/doc/qore/modules/Swagger/html/functions_f.html
+share/doc/qore/modules/Swagger/html/functions_func.html
+share/doc/qore/modules/Swagger/html/functions_g.html
+share/doc/qore/modules/Swagger/html/functions_h.html
+share/doc/qore/modules/Swagger/html/functions_i.html
+share/doc/qore/modules/Swagger/html/functions_l.html
+share/doc/qore/modules/Swagger/html/functions_m.html
+share/doc/qore/modules/Swagger/html/functions_n.html
+share/doc/qore/modules/Swagger/html/functions_o.html
+share/doc/qore/modules/Swagger/html/functions_p.html
+share/doc/qore/modules/Swagger/html/functions_r.html
+share/doc/qore/modules/Swagger/html/functions_s.html
+share/doc/qore/modules/Swagger/html/functions_t.html
+share/doc/qore/modules/Swagger/html/functions_u.html
+share/doc/qore/modules/Swagger/html/functions_v.html
+share/doc/qore/modules/Swagger/html/functions_vars.html
+share/doc/qore/modules/Swagger/html/functions_w.html
+share/doc/qore/modules/Swagger/html/functions_x.html
+share/doc/qore/modules/Swagger/html/graph_legend.html
+share/doc/qore/modules/Swagger/html/graph_legend.md5
+share/doc/qore/modules/Swagger/html/graph_legend.png
+share/doc/qore/modules/Swagger/html/hierarchy.html
+share/doc/qore/modules/Swagger/html/hierarchy.js
+share/doc/qore/modules/Swagger/html/index.html
+share/doc/qore/modules/Swagger/html/index.qhp
+share/doc/qore/modules/Swagger/html/inherit_graph_0.map
+share/doc/qore/modules/Swagger/html/inherit_graph_0.md5
+share/doc/qore/modules/Swagger/html/inherit_graph_0.png
+share/doc/qore/modules/Swagger/html/inherit_graph_1.map
+share/doc/qore/modules/Swagger/html/inherit_graph_1.md5
+share/doc/qore/modules/Swagger/html/inherit_graph_1.png
+share/doc/qore/modules/Swagger/html/inherit_graph_2.map
+share/doc/qore/modules/Swagger/html/inherit_graph_2.md5
+share/doc/qore/modules/Swagger/html/inherit_graph_2.png
+share/doc/qore/modules/Swagger/html/inherits.html
+share/doc/qore/modules/Swagger/html/jquery.js
+share/doc/qore/modules/Swagger/html/menu.js
+share/doc/qore/modules/Swagger/html/menudata.js
+share/doc/qore/modules/Swagger/html/namespace_swagger.html
+share/doc/qore/modules/Swagger/html/namespace_swagger.js
+share/doc/qore/modules/Swagger/html/namespacemembers.html
+share/doc/qore/modules/Swagger/html/namespacemembers_vars.html
+share/doc/qore/modules/Swagger/html/namespaces.html
+share/doc/qore/modules/Swagger/html/namespaces.js
+share/doc/qore/modules/Swagger/html/nav_f.png
+share/doc/qore/modules/Swagger/html/nav_g.png
+share/doc/qore/modules/Swagger/html/nav_h.png
+share/doc/qore/modules/Swagger/html/navtree.css
+share/doc/qore/modules/Swagger/html/navtree.js
+share/doc/qore/modules/Swagger/html/navtreedata.js
+share/doc/qore/modules/Swagger/html/navtreeindex0.js
+share/doc/qore/modules/Swagger/html/navtreeindex1.js
+share/doc/qore/modules/Swagger/html/open.png
+share/doc/qore/modules/Swagger/html/pages.html
+share/doc/qore/modules/Swagger/html/resize.js
+share/doc/qore/modules/Swagger/html/search/all_0.html
+share/doc/qore/modules/Swagger/html/search/all_0.js
+share/doc/qore/modules/Swagger/html/search/all_1.html
+share/doc/qore/modules/Swagger/html/search/all_1.js
+share/doc/qore/modules/Swagger/html/search/all_10.html
+share/doc/qore/modules/Swagger/html/search/all_10.js
+share/doc/qore/modules/Swagger/html/search/all_11.html
+share/doc/qore/modules/Swagger/html/search/all_11.js
+share/doc/qore/modules/Swagger/html/search/all_12.html
+share/doc/qore/modules/Swagger/html/search/all_12.js
+share/doc/qore/modules/Swagger/html/search/all_13.html
+share/doc/qore/modules/Swagger/html/search/all_13.js
+share/doc/qore/modules/Swagger/html/search/all_14.html
+share/doc/qore/modules/Swagger/html/search/all_14.js
+share/doc/qore/modules/Swagger/html/search/all_15.html
+share/doc/qore/modules/Swagger/html/search/all_15.js
+share/doc/qore/modules/Swagger/html/search/all_16.html
+share/doc/qore/modules/Swagger/html/search/all_16.js
+share/doc/qore/modules/Swagger/html/search/all_17.html
+share/doc/qore/modules/Swagger/html/search/all_17.js
+share/doc/qore/modules/Swagger/html/search/all_18.html
+share/doc/qore/modules/Swagger/html/search/all_18.js
+share/doc/qore/modules/Swagger/html/search/all_19.html
+share/doc/qore/modules/Swagger/html/search/all_19.js
+share/doc/qore/modules/Swagger/html/search/all_1a.html
+share/doc/qore/modules/Swagger/html/search/all_1a.js
+share/doc/qore/modules/Swagger/html/search/all_2.html
+share/doc/qore/modules/Swagger/html/search/all_2.js
+share/doc/qore/modules/Swagger/html/search/all_3.html
+share/doc/qore/modules/Swagger/html/search/all_3.js
+share/doc/qore/modules/Swagger/html/search/all_4.html
+share/doc/qore/modules/Swagger/html/search/all_4.js
+share/doc/qore/modules/Swagger/html/search/all_5.html
+share/doc/qore/modules/Swagger/html/search/all_5.js
+share/doc/qore/modules/Swagger/html/search/all_6.html
+share/doc/qore/modules/Swagger/html/search/all_6.js
+share/doc/qore/modules/Swagger/html/search/all_7.html
+share/doc/qore/modules/Swagger/html/search/all_7.js
+share/doc/qore/modules/Swagger/html/search/all_8.html
+share/doc/qore/modules/Swagger/html/search/all_8.js
+share/doc/qore/modules/Swagger/html/search/all_9.html
+share/doc/qore/modules/Swagger/html/search/all_9.js
+share/doc/qore/modules/Swagger/html/search/all_a.html
+share/doc/qore/modules/Swagger/html/search/all_a.js
+share/doc/qore/modules/Swagger/html/search/all_b.html
+share/doc/qore/modules/Swagger/html/search/all_b.js
+share/doc/qore/modules/Swagger/html/search/all_c.html
+share/doc/qore/modules/Swagger/html/search/all_c.js
+share/doc/qore/modules/Swagger/html/search/all_d.html
+share/doc/qore/modules/Swagger/html/search/all_d.js
+share/doc/qore/modules/Swagger/html/search/all_e.html
+share/doc/qore/modules/Swagger/html/search/all_e.js
+share/doc/qore/modules/Swagger/html/search/all_f.html
+share/doc/qore/modules/Swagger/html/search/all_f.js
+share/doc/qore/modules/Swagger/html/search/classes_0.html
+share/doc/qore/modules/Swagger/html/search/classes_0.js
+share/doc/qore/modules/Swagger/html/search/classes_1.html
+share/doc/qore/modules/Swagger/html/search/classes_1.js
+share/doc/qore/modules/Swagger/html/search/classes_10.html
+share/doc/qore/modules/Swagger/html/search/classes_10.js
+share/doc/qore/modules/Swagger/html/search/classes_11.html
+share/doc/qore/modules/Swagger/html/search/classes_11.js
+share/doc/qore/modules/Swagger/html/search/classes_12.html
+share/doc/qore/modules/Swagger/html/search/classes_12.js
+share/doc/qore/modules/Swagger/html/search/classes_13.html
+share/doc/qore/modules/Swagger/html/search/classes_13.js
+share/doc/qore/modules/Swagger/html/search/classes_14.html
+share/doc/qore/modules/Swagger/html/search/classes_14.js
+share/doc/qore/modules/Swagger/html/search/classes_2.html
+share/doc/qore/modules/Swagger/html/search/classes_2.js
+share/doc/qore/modules/Swagger/html/search/classes_3.html
+share/doc/qore/modules/Swagger/html/search/classes_3.js
+share/doc/qore/modules/Swagger/html/search/classes_4.html
+share/doc/qore/modules/Swagger/html/search/classes_4.js
+share/doc/qore/modules/Swagger/html/search/classes_5.html
+share/doc/qore/modules/Swagger/html/search/classes_5.js
+share/doc/qore/modules/Swagger/html/search/classes_6.html
+share/doc/qore/modules/Swagger/html/search/classes_6.js
+share/doc/qore/modules/Swagger/html/search/classes_7.html
+share/doc/qore/modules/Swagger/html/search/classes_7.js
+share/doc/qore/modules/Swagger/html/search/classes_8.html
+share/doc/qore/modules/Swagger/html/search/classes_8.js
+share/doc/qore/modules/Swagger/html/search/classes_9.html
+share/doc/qore/modules/Swagger/html/search/classes_9.js
+share/doc/qore/modules/Swagger/html/search/classes_a.html
+share/doc/qore/modules/Swagger/html/search/classes_a.js
+share/doc/qore/modules/Swagger/html/search/classes_b.html
+share/doc/qore/modules/Swagger/html/search/classes_b.js
+share/doc/qore/modules/Swagger/html/search/classes_c.html
+share/doc/qore/modules/Swagger/html/search/classes_c.js
+share/doc/qore/modules/Swagger/html/search/classes_d.html
+share/doc/qore/modules/Swagger/html/search/classes_d.js
+share/doc/qore/modules/Swagger/html/search/classes_e.html
+share/doc/qore/modules/Swagger/html/search/classes_e.js
+share/doc/qore/modules/Swagger/html/search/classes_f.html
+share/doc/qore/modules/Swagger/html/search/classes_f.js
+share/doc/qore/modules/Swagger/html/search/close.png
+share/doc/qore/modules/Swagger/html/search/functions_0.html
+share/doc/qore/modules/Swagger/html/search/functions_0.js
+share/doc/qore/modules/Swagger/html/search/functions_1.html
+share/doc/qore/modules/Swagger/html/search/functions_1.js
+share/doc/qore/modules/Swagger/html/search/functions_10.html
+share/doc/qore/modules/Swagger/html/search/functions_10.js
+share/doc/qore/modules/Swagger/html/search/functions_11.html
+share/doc/qore/modules/Swagger/html/search/functions_11.js
+share/doc/qore/modules/Swagger/html/search/functions_12.html
+share/doc/qore/modules/Swagger/html/search/functions_12.js
+share/doc/qore/modules/Swagger/html/search/functions_13.html
+share/doc/qore/modules/Swagger/html/search/functions_13.js
+share/doc/qore/modules/Swagger/html/search/functions_14.html
+share/doc/qore/modules/Swagger/html/search/functions_14.js
+share/doc/qore/modules/Swagger/html/search/functions_15.html
+share/doc/qore/modules/Swagger/html/search/functions_15.js
+share/doc/qore/modules/Swagger/html/search/functions_16.html
+share/doc/qore/modules/Swagger/html/search/functions_16.js
+share/doc/qore/modules/Swagger/html/search/functions_17.html
+share/doc/qore/modules/Swagger/html/search/functions_17.js
+share/doc/qore/modules/Swagger/html/search/functions_18.html
+share/doc/qore/modules/Swagger/html/search/functions_18.js
+share/doc/qore/modules/Swagger/html/search/functions_2.html
+share/doc/qore/modules/Swagger/html/search/functions_2.js
+share/doc/qore/modules/Swagger/html/search/functions_3.html
+share/doc/qore/modules/Swagger/html/search/functions_3.js
+share/doc/qore/modules/Swagger/html/search/functions_4.html
+share/doc/qore/modules/Swagger/html/search/functions_4.js
+share/doc/qore/modules/Swagger/html/search/functions_5.html
+share/doc/qore/modules/Swagger/html/search/functions_5.js
+share/doc/qore/modules/Swagger/html/search/functions_6.html
+share/doc/qore/modules/Swagger/html/search/functions_6.js
+share/doc/qore/modules/Swagger/html/search/functions_7.html
+share/doc/qore/modules/Swagger/html/search/functions_7.js
+share/doc/qore/modules/Swagger/html/search/functions_8.html
+share/doc/qore/modules/Swagger/html/search/functions_8.js
+share/doc/qore/modules/Swagger/html/search/functions_9.html
+share/doc/qore/modules/Swagger/html/search/functions_9.js
+share/doc/qore/modules/Swagger/html/search/functions_a.html
+share/doc/qore/modules/Swagger/html/search/functions_a.js
+share/doc/qore/modules/Swagger/html/search/functions_b.html
+share/doc/qore/modules/Swagger/html/search/functions_b.js
+share/doc/qore/modules/Swagger/html/search/functions_c.html
+share/doc/qore/modules/Swagger/html/search/functions_c.js
+share/doc/qore/modules/Swagger/html/search/functions_d.html
+share/doc/qore/modules/Swagger/html/search/functions_d.js
+share/doc/qore/modules/Swagger/html/search/functions_e.html
+share/doc/qore/modules/Swagger/html/search/functions_e.js
+share/doc/qore/modules/Swagger/html/search/functions_f.html
+share/doc/qore/modules/Swagger/html/search/functions_f.js
+share/doc/qore/modules/Swagger/html/search/groups_0.html
+share/doc/qore/modules/Swagger/html/search/groups_0.js
+share/doc/qore/modules/Swagger/html/search/groups_1.html
+share/doc/qore/modules/Swagger/html/search/groups_1.js
+share/doc/qore/modules/Swagger/html/search/groups_10.html
+share/doc/qore/modules/Swagger/html/search/groups_10.js
+share/doc/qore/modules/Swagger/html/search/groups_11.html
+share/doc/qore/modules/Swagger/html/search/groups_11.js
+share/doc/qore/modules/Swagger/html/search/groups_2.html
+share/doc/qore/modules/Swagger/html/search/groups_2.js
+share/doc/qore/modules/Swagger/html/search/groups_3.html
+share/doc/qore/modules/Swagger/html/search/groups_3.js
+share/doc/qore/modules/Swagger/html/search/groups_4.html
+share/doc/qore/modules/Swagger/html/search/groups_4.js
+share/doc/qore/modules/Swagger/html/search/groups_5.html
+share/doc/qore/modules/Swagger/html/search/groups_5.js
+share/doc/qore/modules/Swagger/html/search/groups_6.html
+share/doc/qore/modules/Swagger/html/search/groups_6.js
+share/doc/qore/modules/Swagger/html/search/groups_7.html
+share/doc/qore/modules/Swagger/html/search/groups_7.js
+share/doc/qore/modules/Swagger/html/search/groups_8.html
+share/doc/qore/modules/Swagger/html/search/groups_8.js
+share/doc/qore/modules/Swagger/html/search/groups_9.html
+share/doc/qore/modules/Swagger/html/search/groups_9.js
+share/doc/qore/modules/Swagger/html/search/groups_a.html
+share/doc/qore/modules/Swagger/html/search/groups_a.js
+share/doc/qore/modules/Swagger/html/search/groups_b.html
+share/doc/qore/modules/Swagger/html/search/groups_b.js
+share/doc/qore/modules/Swagger/html/search/groups_c.html
+share/doc/qore/modules/Swagger/html/search/groups_c.js
+share/doc/qore/modules/Swagger/html/search/groups_d.html
+share/doc/qore/modules/Swagger/html/search/groups_d.js
+share/doc/qore/modules/Swagger/html/search/groups_e.html
+share/doc/qore/modules/Swagger/html/search/groups_e.js
+share/doc/qore/modules/Swagger/html/search/groups_f.html
+share/doc/qore/modules/Swagger/html/search/groups_f.js
+share/doc/qore/modules/Swagger/html/search/mag_sel.png
+share/doc/qore/modules/Swagger/html/search/namespaces_0.html
+share/doc/qore/modules/Swagger/html/search/namespaces_0.js
+share/doc/qore/modules/Swagger/html/search/namespaces_1.html
+share/doc/qore/modules/Swagger/html/search/namespaces_1.js
+share/doc/qore/modules/Swagger/html/search/namespaces_2.html
+share/doc/qore/modules/Swagger/html/search/namespaces_2.js
+share/doc/qore/modules/Swagger/html/search/namespaces_3.html
+share/doc/qore/modules/Swagger/html/search/namespaces_3.js
+share/doc/qore/modules/Swagger/html/search/namespaces_4.html
+share/doc/qore/modules/Swagger/html/search/namespaces_4.js
+share/doc/qore/modules/Swagger/html/search/namespaces_5.html
+share/doc/qore/modules/Swagger/html/search/namespaces_5.js
+share/doc/qore/modules/Swagger/html/search/nomatches.html
+share/doc/qore/modules/Swagger/html/search/pages_0.html
+share/doc/qore/modules/Swagger/html/search/pages_0.js
+share/doc/qore/modules/Swagger/html/search/pages_1.html
+share/doc/qore/modules/Swagger/html/search/pages_1.js
+share/doc/qore/modules/Swagger/html/search/pages_10.html
+share/doc/qore/modules/Swagger/html/search/pages_10.js
+share/doc/qore/modules/Swagger/html/search/pages_11.html
+share/doc/qore/modules/Swagger/html/search/pages_11.js
+share/doc/qore/modules/Swagger/html/search/pages_12.html
+share/doc/qore/modules/Swagger/html/search/pages_12.js
+share/doc/qore/modules/Swagger/html/search/pages_2.html
+share/doc/qore/modules/Swagger/html/search/pages_2.js
+share/doc/qore/modules/Swagger/html/search/pages_3.html
+share/doc/qore/modules/Swagger/html/search/pages_3.js
+share/doc/qore/modules/Swagger/html/search/pages_4.html
+share/doc/qore/modules/Swagger/html/search/pages_4.js
+share/doc/qore/modules/Swagger/html/search/pages_5.html
+share/doc/qore/modules/Swagger/html/search/pages_5.js
+share/doc/qore/modules/Swagger/html/search/pages_6.html
+share/doc/qore/modules/Swagger/html/search/pages_6.js
+share/doc/qore/modules/Swagger/html/search/pages_7.html
+share/doc/qore/modules/Swagger/html/search/pages_7.js
+share/doc/qore/modules/Swagger/html/search/pages_8.html
+share/doc/qore/modules/Swagger/html/search/pages_8.js
+share/doc/qore/modules/Swagger/html/search/pages_9.html
+share/doc/qore/modules/Swagger/html/search/pages_9.js
+share/doc/qore/modules/Swagger/html/search/pages_a.html
+share/doc/qore/modules/Swagger/html/search/pages_a.js
+share/doc/qore/modules/Swagger/html/search/pages_b.html
+share/doc/qore/modules/Swagger/html/search/pages_b.js
+share/doc/qore/modules/Swagger/html/search/pages_c.html
+share/doc/qore/modules/Swagger/html/search/pages_c.js
+share/doc/qore/modules/Swagger/html/search/pages_d.html
+share/doc/qore/modules/Swagger/html/search/pages_d.js
+share/doc/qore/modules/Swagger/html/search/pages_e.html
+share/doc/qore/modules/Swagger/html/search/pages_e.js
+share/doc/qore/modules/Swagger/html/search/pages_f.html
+share/doc/qore/modules/Swagger/html/search/pages_f.js
+share/doc/qore/modules/Swagger/html/search/search.css
+share/doc/qore/modules/Swagger/html/search/search.js
+share/doc/qore/modules/Swagger/html/search/search_l.png
+share/doc/qore/modules/Swagger/html/search/search_m.png
+share/doc/qore/modules/Swagger/html/search/search_r.png
+share/doc/qore/modules/Swagger/html/search/searchdata.js
+share/doc/qore/modules/Swagger/html/search/variables_0.html
+share/doc/qore/modules/Swagger/html/search/variables_0.js
+share/doc/qore/modules/Swagger/html/search/variables_1.html
+share/doc/qore/modules/Swagger/html/search/variables_1.js
+share/doc/qore/modules/Swagger/html/search/variables_10.html
+share/doc/qore/modules/Swagger/html/search/variables_10.js
+share/doc/qore/modules/Swagger/html/search/variables_11.html
+share/doc/qore/modules/Swagger/html/search/variables_11.js
+share/doc/qore/modules/Swagger/html/search/variables_12.html
+share/doc/qore/modules/Swagger/html/search/variables_12.js
+share/doc/qore/modules/Swagger/html/search/variables_13.html
+share/doc/qore/modules/Swagger/html/search/variables_13.js
+share/doc/qore/modules/Swagger/html/search/variables_14.html
+share/doc/qore/modules/Swagger/html/search/variables_14.js
+share/doc/qore/modules/Swagger/html/search/variables_15.html
+share/doc/qore/modules/Swagger/html/search/variables_15.js
+share/doc/qore/modules/Swagger/html/search/variables_16.html
+share/doc/qore/modules/Swagger/html/search/variables_16.js
+share/doc/qore/modules/Swagger/html/search/variables_17.html
+share/doc/qore/modules/Swagger/html/search/variables_17.js
+share/doc/qore/modules/Swagger/html/search/variables_18.html
+share/doc/qore/modules/Swagger/html/search/variables_18.js
+share/doc/qore/modules/Swagger/html/search/variables_2.html
+share/doc/qore/modules/Swagger/html/search/variables_2.js
+share/doc/qore/modules/Swagger/html/search/variables_3.html
+share/doc/qore/modules/Swagger/html/search/variables_3.js
+share/doc/qore/modules/Swagger/html/search/variables_4.html
+share/doc/qore/modules/Swagger/html/search/variables_4.js
+share/doc/qore/modules/Swagger/html/search/variables_5.html
+share/doc/qore/modules/Swagger/html/search/variables_5.js
+share/doc/qore/modules/Swagger/html/search/variables_6.html
+share/doc/qore/modules/Swagger/html/search/variables_6.js
+share/doc/qore/modules/Swagger/html/search/variables_7.html
+share/doc/qore/modules/Swagger/html/search/variables_7.js
+share/doc/qore/modules/Swagger/html/search/variables_8.html
+share/doc/qore/modules/Swagger/html/search/variables_8.js
+share/doc/qore/modules/Swagger/html/search/variables_9.html
+share/doc/qore/modules/Swagger/html/search/variables_9.js
+share/doc/qore/modules/Swagger/html/search/variables_a.html
+share/doc/qore/modules/Swagger/html/search/variables_a.js
+share/doc/qore/modules/Swagger/html/search/variables_b.html
+share/doc/qore/modules/Swagger/html/search/variables_b.js
+share/doc/qore/modules/Swagger/html/search/variables_c.html
+share/doc/qore/modules/Swagger/html/search/variables_c.js
+share/doc/qore/modules/Swagger/html/search/variables_d.html
+share/doc/qore/modules/Swagger/html/search/variables_d.js
+share/doc/qore/modules/Swagger/html/search/variables_e.html
+share/doc/qore/modules/Swagger/html/search/variables_e.js
+share/doc/qore/modules/Swagger/html/search/variables_f.html
+share/doc/qore/modules/Swagger/html/search/variables_f.js
+share/doc/qore/modules/Swagger/html/splitbar.png
+share/doc/qore/modules/Swagger/html/sync_off.png
+share/doc/qore/modules/Swagger/html/sync_on.png
+share/doc/qore/modules/Swagger/html/tab_a.png
+share/doc/qore/modules/Swagger/html/tab_b.png
+share/doc/qore/modules/Swagger/html/tab_h.png
+share/doc/qore/modules/Swagger/html/tab_s.png
+share/doc/qore/modules/Swagger/html/tabs.css
 share/doc/qore/modules/TableMapper/html/_table_mapper_8qm_8dox_8h_source.html
 share/doc/qore/modules/TableMapper/html/annotated.html
 share/doc/qore/modules/TableMapper/html/annotated_dup.js
@@ -12550,6 +18049,14 @@ share/doc/qore/modules/TableMapper/html/
 share/doc/qore/modules/TableMapper/html/search/classes_11.js
 share/doc/qore/modules/TableMapper/html/search/classes_12.html
 share/doc/qore/modules/TableMapper/html/search/classes_12.js
+share/doc/qore/modules/TableMapper/html/search/classes_13.html
+share/doc/qore/modules/TableMapper/html/search/classes_13.js
+share/doc/qore/modules/TableMapper/html/search/classes_14.html
+share/doc/qore/modules/TableMapper/html/search/classes_14.js
+share/doc/qore/modules/TableMapper/html/search/classes_15.html
+share/doc/qore/modules/TableMapper/html/search/classes_15.js
+share/doc/qore/modules/TableMapper/html/search/classes_16.html
+share/doc/qore/modules/TableMapper/html/search/classes_16.js
 share/doc/qore/modules/TableMapper/html/search/classes_2.html
 share/doc/qore/modules/TableMapper/html/search/classes_2.js
 share/doc/qore/modules/TableMapper/html/search/classes_3.html
@@ -12697,6 +18204,8 @@ share/doc/qore/modules/TableMapper/html/
 share/doc/qore/modules/TableMapper/html/search/pages_10.js
 share/doc/qore/modules/TableMapper/html/search/pages_11.html
 share/doc/qore/modules/TableMapper/html/search/pages_11.js
+share/doc/qore/modules/TableMapper/html/search/pages_12.html
+share/doc/qore/modules/TableMapper/html/search/pages_12.js
 share/doc/qore/modules/TableMapper/html/search/pages_2.html
 share/doc/qore/modules/TableMapper/html/search/pages_2.js
 share/doc/qore/modules/TableMapper/html/search/pages_3.html
@@ -12751,6 +18260,10 @@ share/doc/qore/modules/TableMapper/html/
 share/doc/qore/modules/TableMapper/html/search/variables_16.js
 share/doc/qore/modules/TableMapper/html/search/variables_17.html
 share/doc/qore/modules/TableMapper/html/search/variables_17.js
+share/doc/qore/modules/TableMapper/html/search/variables_18.html
+share/doc/qore/modules/TableMapper/html/search/variables_18.js
+share/doc/qore/modules/TableMapper/html/search/variables_19.html
+share/doc/qore/modules/TableMapper/html/search/variables_19.js
 share/doc/qore/modules/TableMapper/html/search/variables_2.html
 share/doc/qore/modules/TableMapper/html/search/variables_2.js
 share/doc/qore/modules/TableMapper/html/search/variables_3.html
@@ -12795,6 +18308,12 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_client-members.html
 share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_client.html
 share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_client.js
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection-members.html
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection.html
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection.js
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection__inherit__graph.map
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection__inherit__graph.md5
+share/doc/qore/modules/TelnetClient/html/class_telnet_client_1_1_telnet_connection__inherit__graph.png
 share/doc/qore/modules/TelnetClient/html/classes.html
 share/doc/qore/modules/TelnetClient/html/closed.png
 share/doc/qore/modules/TelnetClient/html/dir_13add0083e006ac756009d5942a24d28.html
@@ -12833,16 +18352,18 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/group__call__type__constants.js
 share/doc/qore/modules/TelnetClient/html/group__closecodes.js
 share/doc/qore/modules/TelnetClient/html/group__compression__constants.js
+share/doc/qore/modules/TelnetClient/html/group__compression__transformations.js
 share/doc/qore/modules/TelnetClient/html/group__compresssion__functions.js
 share/doc/qore/modules/TelnetClient/html/group__context__functions.js
+share/doc/qore/modules/TelnetClient/html/group__crypto__transformations.js
 share/doc/qore/modules/TelnetClient/html/group__cryptographic__constants.js
 share/doc/qore/modules/TelnetClient/html/group__cryptographic__functions.js
 share/doc/qore/modules/TelnetClient/html/group__database__driver__constants.js
 share/doc/qore/modules/TelnetClient/html/group__date__and__time__functions.js
 share/doc/qore/modules/TelnetClient/html/group__dbi__capabilities.js
 share/doc/qore/modules/TelnetClient/html/group__dbi__functions.js
-share/doc/qore/modules/TelnetClient/html/group__debug__rc__options.js
-share/doc/qore/modules/TelnetClient/html/group__debug__step__options.js
+share/doc/qore/modules/TelnetClient/html/group__debug__flow__options.js
+share/doc/qore/modules/TelnetClient/html/group__debug__rs__options.js
 share/doc/qore/modules/TelnetClient/html/group__digest__functions.js
 share/doc/qore/modules/TelnetClient/html/group__env__functions.js
 share/doc/qore/modules/TelnetClient/html/group__error__constants.js
@@ -12867,6 +18388,7 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/group__network__address__information__constants.js
 share/doc/qore/modules/TelnetClient/html/group__null__and__nothing__constants.js
 share/doc/qore/modules/TelnetClient/html/group__number__formatting__constants.js
+share/doc/qore/modules/TelnetClient/html/group__number__string__formatting__constants.js
 share/doc/qore/modules/TelnetClient/html/group__object__functions.js
 share/doc/qore/modules/TelnetClient/html/group__old__dbi__functions.js
 share/doc/qore/modules/TelnetClient/html/group__opcodes.js
@@ -12881,6 +18403,7 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/group__socket__type__constants.js
 share/doc/qore/modules/TelnetClient/html/group__sql__constants.js
 share/doc/qore/modules/TelnetClient/html/group__sql__cop__funcs.js
+share/doc/qore/modules/TelnetClient/html/group__sql__cop__trunc__date__enum.js
 share/doc/qore/modules/TelnetClient/html/group__sql__cops.js
 share/doc/qore/modules/TelnetClient/html/group__sql__iop__funcs.js
 share/doc/qore/modules/TelnetClient/html/group__sql__iops.js
@@ -12890,10 +18413,10 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/group__sql__ops.js
 share/doc/qore/modules/TelnetClient/html/group__sql__uop__funcs.js
 share/doc/qore/modules/TelnetClient/html/group__sql__uops.js
+share/doc/qore/modules/TelnetClient/html/group__ssl__mode__constants.js
 share/doc/qore/modules/TelnetClient/html/group__string__functions.js
 share/doc/qore/modules/TelnetClient/html/group__string__type__constants.js
 share/doc/qore/modules/TelnetClient/html/group__system__and__build__constants.js
-share/doc/qore/modules/TelnetClient/html/group__t.js
 share/doc/qore/modules/TelnetClient/html/group__tattr__control__character__constants.js
 share/doc/qore/modules/TelnetClient/html/group__tattr__control__mode__constants.js
 share/doc/qore/modules/TelnetClient/html/group__tattr__input__mode__constants.js
@@ -12909,8 +18432,17 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/group__user__and__group__functions.js
 share/doc/qore/modules/TelnetClient/html/group__warning__constants.js
 share/doc/qore/modules/TelnetClient/html/group__x509__verification__constants.js
+share/doc/qore/modules/TelnetClient/html/hierarchy.html
+share/doc/qore/modules/TelnetClient/html/hierarchy.js
 share/doc/qore/modules/TelnetClient/html/index.html
 share/doc/qore/modules/TelnetClient/html/index.qhp
+share/doc/qore/modules/TelnetClient/html/inherit_graph_0.map
+share/doc/qore/modules/TelnetClient/html/inherit_graph_0.md5
+share/doc/qore/modules/TelnetClient/html/inherit_graph_0.png
+share/doc/qore/modules/TelnetClient/html/inherit_graph_1.map
+share/doc/qore/modules/TelnetClient/html/inherit_graph_1.md5
+share/doc/qore/modules/TelnetClient/html/inherit_graph_1.png
+share/doc/qore/modules/TelnetClient/html/inherits.html
 share/doc/qore/modules/TelnetClient/html/jquery.js
 share/doc/qore/modules/TelnetClient/html/menu.js
 share/doc/qore/modules/TelnetClient/html/menudata.js
@@ -12935,6 +18467,7 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/navtreeindex4.js
 share/doc/qore/modules/TelnetClient/html/navtreeindex5.js
 share/doc/qore/modules/TelnetClient/html/navtreeindex6.js
+share/doc/qore/modules/TelnetClient/html/navtreeindex7.js
 share/doc/qore/modules/TelnetClient/html/open.png
 share/doc/qore/modules/TelnetClient/html/pages.html
 share/doc/qore/modules/TelnetClient/html/resize.js
@@ -13002,6 +18535,14 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/search/classes_11.js
 share/doc/qore/modules/TelnetClient/html/search/classes_12.html
 share/doc/qore/modules/TelnetClient/html/search/classes_12.js
+share/doc/qore/modules/TelnetClient/html/search/classes_13.html
+share/doc/qore/modules/TelnetClient/html/search/classes_13.js
+share/doc/qore/modules/TelnetClient/html/search/classes_14.html
+share/doc/qore/modules/TelnetClient/html/search/classes_14.js
+share/doc/qore/modules/TelnetClient/html/search/classes_15.html
+share/doc/qore/modules/TelnetClient/html/search/classes_15.js
+share/doc/qore/modules/TelnetClient/html/search/classes_16.html
+share/doc/qore/modules/TelnetClient/html/search/classes_16.js
 share/doc/qore/modules/TelnetClient/html/search/classes_2.html
 share/doc/qore/modules/TelnetClient/html/search/classes_2.js
 share/doc/qore/modules/TelnetClient/html/search/classes_3.html
@@ -13053,6 +18594,8 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/search/functions_17.js
 share/doc/qore/modules/TelnetClient/html/search/functions_18.html
 share/doc/qore/modules/TelnetClient/html/search/functions_18.js
+share/doc/qore/modules/TelnetClient/html/search/functions_19.html
+share/doc/qore/modules/TelnetClient/html/search/functions_19.js
 share/doc/qore/modules/TelnetClient/html/search/functions_2.html
 share/doc/qore/modules/TelnetClient/html/search/functions_2.js
 share/doc/qore/modules/TelnetClient/html/search/functions_3.html
@@ -13147,6 +18690,8 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/search/pages_10.js
 share/doc/qore/modules/TelnetClient/html/search/pages_11.html
 share/doc/qore/modules/TelnetClient/html/search/pages_11.js
+share/doc/qore/modules/TelnetClient/html/search/pages_12.html
+share/doc/qore/modules/TelnetClient/html/search/pages_12.js
 share/doc/qore/modules/TelnetClient/html/search/pages_2.html
 share/doc/qore/modules/TelnetClient/html/search/pages_2.js
 share/doc/qore/modules/TelnetClient/html/search/pages_3.html
@@ -13203,6 +18748,8 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/search/variables_17.js
 share/doc/qore/modules/TelnetClient/html/search/variables_18.html
 share/doc/qore/modules/TelnetClient/html/search/variables_18.js
+share/doc/qore/modules/TelnetClient/html/search/variables_19.html
+share/doc/qore/modules/TelnetClient/html/search/variables_19.js
 share/doc/qore/modules/TelnetClient/html/search/variables_2.html
 share/doc/qore/modules/TelnetClient/html/search/variables_2.js
 share/doc/qore/modules/TelnetClient/html/search/variables_3.html
@@ -13239,9 +18786,373 @@ share/doc/qore/modules/TelnetClient/html
 share/doc/qore/modules/TelnetClient/html/tab_h.png
 share/doc/qore/modules/TelnetClient/html/tab_s.png
 share/doc/qore/modules/TelnetClient/html/tabs.css
+share/doc/qore/modules/TextWrap/html/_text_wrap_8qm_8dox_8h_source.html
+share/doc/qore/modules/TextWrap/html/annotated.html
+share/doc/qore/modules/TextWrap/html/annotated_dup.js
+share/doc/qore/modules/TextWrap/html/bc_s.png
+share/doc/qore/modules/TextWrap/html/bdwn.png
+share/doc/qore/modules/TextWrap/html/class_text_wrap_1_1_text_wrapper-members.html
+share/doc/qore/modules/TextWrap/html/class_text_wrap_1_1_text_wrapper.html
+share/doc/qore/modules/TextWrap/html/class_text_wrap_1_1_text_wrapper.js
+share/doc/qore/modules/TextWrap/html/classes.html
+share/doc/qore/modules/TextWrap/html/closed.png
+share/doc/qore/modules/TextWrap/html/dir_13add0083e006ac756009d5942a24d28.html
+share/doc/qore/modules/TextWrap/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
+share/doc/qore/modules/TextWrap/html/doc.png
+share/doc/qore/modules/TextWrap/html/doxygen.css
+share/doc/qore/modules/TextWrap/html/doxygen.png
+share/doc/qore/modules/TextWrap/html/dynsections.js
+share/doc/qore/modules/TextWrap/html/folderclosed.png
+share/doc/qore/modules/TextWrap/html/folderopen.png
+share/doc/qore/modules/TextWrap/html/functions.html
+share/doc/qore/modules/TextWrap/html/functions_func.html
+share/doc/qore/modules/TextWrap/html/graph_legend.html
+share/doc/qore/modules/TextWrap/html/graph_legend.md5
+share/doc/qore/modules/TextWrap/html/graph_legend.png
+share/doc/qore/modules/TextWrap/html/index.html
+share/doc/qore/modules/TextWrap/html/index.qhp
+share/doc/qore/modules/TextWrap/html/jquery.js
+share/doc/qore/modules/TextWrap/html/menu.js
+share/doc/qore/modules/TextWrap/html/menudata.js
+share/doc/qore/modules/TextWrap/html/namespace_text_wrap.html
+share/doc/qore/modules/TextWrap/html/namespace_text_wrap.js
+share/doc/qore/modules/TextWrap/html/namespacemembers.html
+share/doc/qore/modules/TextWrap/html/namespacemembers_func.html
+share/doc/qore/modules/TextWrap/html/namespaces.html
+share/doc/qore/modules/TextWrap/html/namespaces.js
+share/doc/qore/modules/TextWrap/html/nav_f.png
+share/doc/qore/modules/TextWrap/html/nav_g.png
+share/doc/qore/modules/TextWrap/html/nav_h.png
+share/doc/qore/modules/TextWrap/html/navtree.css
+share/doc/qore/modules/TextWrap/html/navtree.js
+share/doc/qore/modules/TextWrap/html/navtreedata.js
+share/doc/qore/modules/TextWrap/html/navtreeindex0.js
+share/doc/qore/modules/TextWrap/html/open.png
+share/doc/qore/modules/TextWrap/html/pages.html
+share/doc/qore/modules/TextWrap/html/resize.js
+share/doc/qore/modules/TextWrap/html/search/all_0.html
+share/doc/qore/modules/TextWrap/html/search/all_0.js
+share/doc/qore/modules/TextWrap/html/search/all_1.html
+share/doc/qore/modules/TextWrap/html/search/all_1.js
+share/doc/qore/modules/TextWrap/html/search/all_10.html
+share/doc/qore/modules/TextWrap/html/search/all_10.js
+share/doc/qore/modules/TextWrap/html/search/all_11.html
+share/doc/qore/modules/TextWrap/html/search/all_11.js
+share/doc/qore/modules/TextWrap/html/search/all_12.html
+share/doc/qore/modules/TextWrap/html/search/all_12.js
+share/doc/qore/modules/TextWrap/html/search/all_13.html
+share/doc/qore/modules/TextWrap/html/search/all_13.js
+share/doc/qore/modules/TextWrap/html/search/all_14.html
+share/doc/qore/modules/TextWrap/html/search/all_14.js
+share/doc/qore/modules/TextWrap/html/search/all_15.html
+share/doc/qore/modules/TextWrap/html/search/all_15.js
+share/doc/qore/modules/TextWrap/html/search/all_16.html
+share/doc/qore/modules/TextWrap/html/search/all_16.js
+share/doc/qore/modules/TextWrap/html/search/all_17.html
+share/doc/qore/modules/TextWrap/html/search/all_17.js
+share/doc/qore/modules/TextWrap/html/search/all_18.html
+share/doc/qore/modules/TextWrap/html/search/all_18.js
+share/doc/qore/modules/TextWrap/html/search/all_19.html
+share/doc/qore/modules/TextWrap/html/search/all_19.js
+share/doc/qore/modules/TextWrap/html/search/all_1a.html
+share/doc/qore/modules/TextWrap/html/search/all_1a.js
+share/doc/qore/modules/TextWrap/html/search/all_2.html
+share/doc/qore/modules/TextWrap/html/search/all_2.js
+share/doc/qore/modules/TextWrap/html/search/all_3.html
+share/doc/qore/modules/TextWrap/html/search/all_3.js
+share/doc/qore/modules/TextWrap/html/search/all_4.html
+share/doc/qore/modules/TextWrap/html/search/all_4.js
+share/doc/qore/modules/TextWrap/html/search/all_5.html
+share/doc/qore/modules/TextWrap/html/search/all_5.js
+share/doc/qore/modules/TextWrap/html/search/all_6.html
+share/doc/qore/modules/TextWrap/html/search/all_6.js
+share/doc/qore/modules/TextWrap/html/search/all_7.html
+share/doc/qore/modules/TextWrap/html/search/all_7.js
+share/doc/qore/modules/TextWrap/html/search/all_8.html
+share/doc/qore/modules/TextWrap/html/search/all_8.js
+share/doc/qore/modules/TextWrap/html/search/all_9.html
+share/doc/qore/modules/TextWrap/html/search/all_9.js
+share/doc/qore/modules/TextWrap/html/search/all_a.html
+share/doc/qore/modules/TextWrap/html/search/all_a.js
+share/doc/qore/modules/TextWrap/html/search/all_b.html
+share/doc/qore/modules/TextWrap/html/search/all_b.js
+share/doc/qore/modules/TextWrap/html/search/all_c.html
+share/doc/qore/modules/TextWrap/html/search/all_c.js
+share/doc/qore/modules/TextWrap/html/search/all_d.html
+share/doc/qore/modules/TextWrap/html/search/all_d.js
+share/doc/qore/modules/TextWrap/html/search/all_e.html
+share/doc/qore/modules/TextWrap/html/search/all_e.js
+share/doc/qore/modules/TextWrap/html/search/all_f.html
+share/doc/qore/modules/TextWrap/html/search/all_f.js
+share/doc/qore/modules/TextWrap/html/search/classes_0.html
+share/doc/qore/modules/TextWrap/html/search/classes_0.js
+share/doc/qore/modules/TextWrap/html/search/classes_1.html
+share/doc/qore/modules/TextWrap/html/search/classes_1.js
+share/doc/qore/modules/TextWrap/html/search/classes_10.html
+share/doc/qore/modules/TextWrap/html/search/classes_10.js
+share/doc/qore/modules/TextWrap/html/search/classes_11.html
+share/doc/qore/modules/TextWrap/html/search/classes_11.js
+share/doc/qore/modules/TextWrap/html/search/classes_12.html
+share/doc/qore/modules/TextWrap/html/search/classes_12.js
+share/doc/qore/modules/TextWrap/html/search/classes_13.html
+share/doc/qore/modules/TextWrap/html/search/classes_13.js
+share/doc/qore/modules/TextWrap/html/search/classes_14.html
+share/doc/qore/modules/TextWrap/html/search/classes_14.js
+share/doc/qore/modules/TextWrap/html/search/classes_15.html
+share/doc/qore/modules/TextWrap/html/search/classes_15.js
+share/doc/qore/modules/TextWrap/html/search/classes_16.html
+share/doc/qore/modules/TextWrap/html/search/classes_16.js
+share/doc/qore/modules/TextWrap/html/search/classes_2.html
+share/doc/qore/modules/TextWrap/html/search/classes_2.js
+share/doc/qore/modules/TextWrap/html/search/classes_3.html
+share/doc/qore/modules/TextWrap/html/search/classes_3.js
+share/doc/qore/modules/TextWrap/html/search/classes_4.html
+share/doc/qore/modules/TextWrap/html/search/classes_4.js
+share/doc/qore/modules/TextWrap/html/search/classes_5.html
+share/doc/qore/modules/TextWrap/html/search/classes_5.js
+share/doc/qore/modules/TextWrap/html/search/classes_6.html
+share/doc/qore/modules/TextWrap/html/search/classes_6.js
+share/doc/qore/modules/TextWrap/html/search/classes_7.html
+share/doc/qore/modules/TextWrap/html/search/classes_7.js
+share/doc/qore/modules/TextWrap/html/search/classes_8.html
+share/doc/qore/modules/TextWrap/html/search/classes_8.js
+share/doc/qore/modules/TextWrap/html/search/classes_9.html
+share/doc/qore/modules/TextWrap/html/search/classes_9.js
+share/doc/qore/modules/TextWrap/html/search/classes_a.html
+share/doc/qore/modules/TextWrap/html/search/classes_a.js
+share/doc/qore/modules/TextWrap/html/search/classes_b.html
+share/doc/qore/modules/TextWrap/html/search/classes_b.js
+share/doc/qore/modules/TextWrap/html/search/classes_c.html
+share/doc/qore/modules/TextWrap/html/search/classes_c.js
+share/doc/qore/modules/TextWrap/html/search/classes_d.html
+share/doc/qore/modules/TextWrap/html/search/classes_d.js
+share/doc/qore/modules/TextWrap/html/search/classes_e.html
+share/doc/qore/modules/TextWrap/html/search/classes_e.js
+share/doc/qore/modules/TextWrap/html/search/classes_f.html
+share/doc/qore/modules/TextWrap/html/search/classes_f.js
+share/doc/qore/modules/TextWrap/html/search/close.png
+share/doc/qore/modules/TextWrap/html/search/functions_0.html
+share/doc/qore/modules/TextWrap/html/search/functions_0.js
+share/doc/qore/modules/TextWrap/html/search/functions_1.html
+share/doc/qore/modules/TextWrap/html/search/functions_1.js
+share/doc/qore/modules/TextWrap/html/search/functions_10.html
+share/doc/qore/modules/TextWrap/html/search/functions_10.js
+share/doc/qore/modules/TextWrap/html/search/functions_11.html
+share/doc/qore/modules/TextWrap/html/search/functions_11.js
+share/doc/qore/modules/TextWrap/html/search/functions_12.html
+share/doc/qore/modules/TextWrap/html/search/functions_12.js
+share/doc/qore/modules/TextWrap/html/search/functions_13.html
+share/doc/qore/modules/TextWrap/html/search/functions_13.js
+share/doc/qore/modules/TextWrap/html/search/functions_14.html
+share/doc/qore/modules/TextWrap/html/search/functions_14.js
+share/doc/qore/modules/TextWrap/html/search/functions_15.html
+share/doc/qore/modules/TextWrap/html/search/functions_15.js
+share/doc/qore/modules/TextWrap/html/search/functions_16.html
+share/doc/qore/modules/TextWrap/html/search/functions_16.js
+share/doc/qore/modules/TextWrap/html/search/functions_17.html
+share/doc/qore/modules/TextWrap/html/search/functions_17.js
+share/doc/qore/modules/TextWrap/html/search/functions_18.html
+share/doc/qore/modules/TextWrap/html/search/functions_18.js
+share/doc/qore/modules/TextWrap/html/search/functions_19.html
+share/doc/qore/modules/TextWrap/html/search/functions_19.js
+share/doc/qore/modules/TextWrap/html/search/functions_1a.html
+share/doc/qore/modules/TextWrap/html/search/functions_1a.js
+share/doc/qore/modules/TextWrap/html/search/functions_2.html
+share/doc/qore/modules/TextWrap/html/search/functions_2.js
+share/doc/qore/modules/TextWrap/html/search/functions_3.html
+share/doc/qore/modules/TextWrap/html/search/functions_3.js
+share/doc/qore/modules/TextWrap/html/search/functions_4.html
+share/doc/qore/modules/TextWrap/html/search/functions_4.js
+share/doc/qore/modules/TextWrap/html/search/functions_5.html
+share/doc/qore/modules/TextWrap/html/search/functions_5.js
+share/doc/qore/modules/TextWrap/html/search/functions_6.html
+share/doc/qore/modules/TextWrap/html/search/functions_6.js
+share/doc/qore/modules/TextWrap/html/search/functions_7.html
+share/doc/qore/modules/TextWrap/html/search/functions_7.js
+share/doc/qore/modules/TextWrap/html/search/functions_8.html
+share/doc/qore/modules/TextWrap/html/search/functions_8.js
+share/doc/qore/modules/TextWrap/html/search/functions_9.html
+share/doc/qore/modules/TextWrap/html/search/functions_9.js
+share/doc/qore/modules/TextWrap/html/search/functions_a.html
+share/doc/qore/modules/TextWrap/html/search/functions_a.js
+share/doc/qore/modules/TextWrap/html/search/functions_b.html
+share/doc/qore/modules/TextWrap/html/search/functions_b.js
+share/doc/qore/modules/TextWrap/html/search/functions_c.html
+share/doc/qore/modules/TextWrap/html/search/functions_c.js
+share/doc/qore/modules/TextWrap/html/search/functions_d.html
+share/doc/qore/modules/TextWrap/html/search/functions_d.js
+share/doc/qore/modules/TextWrap/html/search/functions_e.html
+share/doc/qore/modules/TextWrap/html/search/functions_e.js
+share/doc/qore/modules/TextWrap/html/search/functions_f.html
+share/doc/qore/modules/TextWrap/html/search/functions_f.js
+share/doc/qore/modules/TextWrap/html/search/groups_0.html
+share/doc/qore/modules/TextWrap/html/search/groups_0.js
+share/doc/qore/modules/TextWrap/html/search/groups_1.html
+share/doc/qore/modules/TextWrap/html/search/groups_1.js
+share/doc/qore/modules/TextWrap/html/search/groups_10.html
+share/doc/qore/modules/TextWrap/html/search/groups_10.js
+share/doc/qore/modules/TextWrap/html/search/groups_11.html
+share/doc/qore/modules/TextWrap/html/search/groups_11.js
+share/doc/qore/modules/TextWrap/html/search/groups_2.html
+share/doc/qore/modules/TextWrap/html/search/groups_2.js
+share/doc/qore/modules/TextWrap/html/search/groups_3.html
+share/doc/qore/modules/TextWrap/html/search/groups_3.js
+share/doc/qore/modules/TextWrap/html/search/groups_4.html
+share/doc/qore/modules/TextWrap/html/search/groups_4.js
+share/doc/qore/modules/TextWrap/html/search/groups_5.html
+share/doc/qore/modules/TextWrap/html/search/groups_5.js
+share/doc/qore/modules/TextWrap/html/search/groups_6.html
+share/doc/qore/modules/TextWrap/html/search/groups_6.js
+share/doc/qore/modules/TextWrap/html/search/groups_7.html
+share/doc/qore/modules/TextWrap/html/search/groups_7.js
+share/doc/qore/modules/TextWrap/html/search/groups_8.html
+share/doc/qore/modules/TextWrap/html/search/groups_8.js
+share/doc/qore/modules/TextWrap/html/search/groups_9.html
+share/doc/qore/modules/TextWrap/html/search/groups_9.js
+share/doc/qore/modules/TextWrap/html/search/groups_a.html
+share/doc/qore/modules/TextWrap/html/search/groups_a.js
+share/doc/qore/modules/TextWrap/html/search/groups_b.html
+share/doc/qore/modules/TextWrap/html/search/groups_b.js
+share/doc/qore/modules/TextWrap/html/search/groups_c.html
+share/doc/qore/modules/TextWrap/html/search/groups_c.js
+share/doc/qore/modules/TextWrap/html/search/groups_d.html
+share/doc/qore/modules/TextWrap/html/search/groups_d.js
+share/doc/qore/modules/TextWrap/html/search/groups_e.html
+share/doc/qore/modules/TextWrap/html/search/groups_e.js
+share/doc/qore/modules/TextWrap/html/search/groups_f.html
+share/doc/qore/modules/TextWrap/html/search/groups_f.js
+share/doc/qore/modules/TextWrap/html/search/mag_sel.png
+share/doc/qore/modules/TextWrap/html/search/namespaces_0.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_0.js
+share/doc/qore/modules/TextWrap/html/search/namespaces_1.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_1.js
+share/doc/qore/modules/TextWrap/html/search/namespaces_2.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_2.js
+share/doc/qore/modules/TextWrap/html/search/namespaces_3.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_3.js
+share/doc/qore/modules/TextWrap/html/search/namespaces_4.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_4.js
+share/doc/qore/modules/TextWrap/html/search/namespaces_5.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_5.js
+share/doc/qore/modules/TextWrap/html/search/namespaces_6.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_6.js
+share/doc/qore/modules/TextWrap/html/search/namespaces_7.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_7.js
+share/doc/qore/modules/TextWrap/html/search/namespaces_8.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_8.js
+share/doc/qore/modules/TextWrap/html/search/namespaces_9.html
+share/doc/qore/modules/TextWrap/html/search/namespaces_9.js
+share/doc/qore/modules/TextWrap/html/search/nomatches.html
+share/doc/qore/modules/TextWrap/html/search/pages_0.html
+share/doc/qore/modules/TextWrap/html/search/pages_0.js
+share/doc/qore/modules/TextWrap/html/search/pages_1.html
+share/doc/qore/modules/TextWrap/html/search/pages_1.js
+share/doc/qore/modules/TextWrap/html/search/pages_10.html
+share/doc/qore/modules/TextWrap/html/search/pages_10.js
+share/doc/qore/modules/TextWrap/html/search/pages_11.html
+share/doc/qore/modules/TextWrap/html/search/pages_11.js
+share/doc/qore/modules/TextWrap/html/search/pages_12.html
+share/doc/qore/modules/TextWrap/html/search/pages_12.js
+share/doc/qore/modules/TextWrap/html/search/pages_2.html
+share/doc/qore/modules/TextWrap/html/search/pages_2.js
+share/doc/qore/modules/TextWrap/html/search/pages_3.html
+share/doc/qore/modules/TextWrap/html/search/pages_3.js
+share/doc/qore/modules/TextWrap/html/search/pages_4.html
+share/doc/qore/modules/TextWrap/html/search/pages_4.js
+share/doc/qore/modules/TextWrap/html/search/pages_5.html
+share/doc/qore/modules/TextWrap/html/search/pages_5.js
+share/doc/qore/modules/TextWrap/html/search/pages_6.html
+share/doc/qore/modules/TextWrap/html/search/pages_6.js
+share/doc/qore/modules/TextWrap/html/search/pages_7.html
+share/doc/qore/modules/TextWrap/html/search/pages_7.js
+share/doc/qore/modules/TextWrap/html/search/pages_8.html
+share/doc/qore/modules/TextWrap/html/search/pages_8.js
+share/doc/qore/modules/TextWrap/html/search/pages_9.html
+share/doc/qore/modules/TextWrap/html/search/pages_9.js
+share/doc/qore/modules/TextWrap/html/search/pages_a.html
+share/doc/qore/modules/TextWrap/html/search/pages_a.js
+share/doc/qore/modules/TextWrap/html/search/pages_b.html
+share/doc/qore/modules/TextWrap/html/search/pages_b.js
+share/doc/qore/modules/TextWrap/html/search/pages_c.html
+share/doc/qore/modules/TextWrap/html/search/pages_c.js
+share/doc/qore/modules/TextWrap/html/search/pages_d.html
+share/doc/qore/modules/TextWrap/html/search/pages_d.js
+share/doc/qore/modules/TextWrap/html/search/pages_e.html
+share/doc/qore/modules/TextWrap/html/search/pages_e.js
+share/doc/qore/modules/TextWrap/html/search/pages_f.html
+share/doc/qore/modules/TextWrap/html/search/pages_f.js
+share/doc/qore/modules/TextWrap/html/search/search.css
+share/doc/qore/modules/TextWrap/html/search/search.js
+share/doc/qore/modules/TextWrap/html/search/search_l.png
+share/doc/qore/modules/TextWrap/html/search/search_m.png
+share/doc/qore/modules/TextWrap/html/search/search_r.png
+share/doc/qore/modules/TextWrap/html/search/searchdata.js
+share/doc/qore/modules/TextWrap/html/search/variables_0.html
+share/doc/qore/modules/TextWrap/html/search/variables_0.js
+share/doc/qore/modules/TextWrap/html/search/variables_1.html
+share/doc/qore/modules/TextWrap/html/search/variables_1.js
+share/doc/qore/modules/TextWrap/html/search/variables_10.html
+share/doc/qore/modules/TextWrap/html/search/variables_10.js
+share/doc/qore/modules/TextWrap/html/search/variables_11.html
+share/doc/qore/modules/TextWrap/html/search/variables_11.js
+share/doc/qore/modules/TextWrap/html/search/variables_12.html
+share/doc/qore/modules/TextWrap/html/search/variables_12.js
+share/doc/qore/modules/TextWrap/html/search/variables_13.html
+share/doc/qore/modules/TextWrap/html/search/variables_13.js
+share/doc/qore/modules/TextWrap/html/search/variables_14.html
+share/doc/qore/modules/TextWrap/html/search/variables_14.js
+share/doc/qore/modules/TextWrap/html/search/variables_15.html
+share/doc/qore/modules/TextWrap/html/search/variables_15.js
+share/doc/qore/modules/TextWrap/html/search/variables_16.html
+share/doc/qore/modules/TextWrap/html/search/variables_16.js
+share/doc/qore/modules/TextWrap/html/search/variables_17.html
+share/doc/qore/modules/TextWrap/html/search/variables_17.js
+share/doc/qore/modules/TextWrap/html/search/variables_18.html
+share/doc/qore/modules/TextWrap/html/search/variables_18.js
+share/doc/qore/modules/TextWrap/html/search/variables_19.html
+share/doc/qore/modules/TextWrap/html/search/variables_19.js
+share/doc/qore/modules/TextWrap/html/search/variables_2.html
+share/doc/qore/modules/TextWrap/html/search/variables_2.js
+share/doc/qore/modules/TextWrap/html/search/variables_3.html
+share/doc/qore/modules/TextWrap/html/search/variables_3.js
+share/doc/qore/modules/TextWrap/html/search/variables_4.html
+share/doc/qore/modules/TextWrap/html/search/variables_4.js
+share/doc/qore/modules/TextWrap/html/search/variables_5.html
+share/doc/qore/modules/TextWrap/html/search/variables_5.js
+share/doc/qore/modules/TextWrap/html/search/variables_6.html
+share/doc/qore/modules/TextWrap/html/search/variables_6.js
+share/doc/qore/modules/TextWrap/html/search/variables_7.html
+share/doc/qore/modules/TextWrap/html/search/variables_7.js
+share/doc/qore/modules/TextWrap/html/search/variables_8.html
+share/doc/qore/modules/TextWrap/html/search/variables_8.js
+share/doc/qore/modules/TextWrap/html/search/variables_9.html
+share/doc/qore/modules/TextWrap/html/search/variables_9.js
+share/doc/qore/modules/TextWrap/html/search/variables_a.html
+share/doc/qore/modules/TextWrap/html/search/variables_a.js
+share/doc/qore/modules/TextWrap/html/search/variables_b.html
+share/doc/qore/modules/TextWrap/html/search/variables_b.js
+share/doc/qore/modules/TextWrap/html/search/variables_c.html
+share/doc/qore/modules/TextWrap/html/search/variables_c.js
+share/doc/qore/modules/TextWrap/html/search/variables_d.html
+share/doc/qore/modules/TextWrap/html/search/variables_d.js
+share/doc/qore/modules/TextWrap/html/search/variables_e.html
+share/doc/qore/modules/TextWrap/html/search/variables_e.js
+share/doc/qore/modules/TextWrap/html/search/variables_f.html
+share/doc/qore/modules/TextWrap/html/search/variables_f.js
+share/doc/qore/modules/TextWrap/html/splitbar.png
+share/doc/qore/modules/TextWrap/html/sync_off.png
+share/doc/qore/modules/TextWrap/html/sync_on.png
+share/doc/qore/modules/TextWrap/html/tab_a.png
+share/doc/qore/modules/TextWrap/html/tab_b.png
+share/doc/qore/modules/TextWrap/html/tab_h.png
+share/doc/qore/modules/TextWrap/html/tab_s.png
+share/doc/qore/modules/TextWrap/html/tabs.css
 share/doc/qore/modules/Util/html/_util_8qm_8dox_8h_source.html
+share/doc/qore/modules/Util/html/annotated.html
+share/doc/qore/modules/Util/html/annotated_dup.js
 share/doc/qore/modules/Util/html/bc_s.png
 share/doc/qore/modules/Util/html/bdwn.png
+share/doc/qore/modules/Util/html/classes.html
 share/doc/qore/modules/Util/html/closed.png
 share/doc/qore/modules/Util/html/dir_13add0083e006ac756009d5942a24d28.html
 share/doc/qore/modules/Util/html/dir_4e8d938e9ddb5a617c200d5739d1f41a.html
@@ -13251,6 +19162,8 @@ share/doc/qore/modules/Util/html/doxygen
 share/doc/qore/modules/Util/html/dynsections.js
 share/doc/qore/modules/Util/html/folderclosed.png
 share/doc/qore/modules/Util/html/folderopen.png
+share/doc/qore/modules/Util/html/functions.html
+share/doc/qore/modules/Util/html/functions_vars.html
 share/doc/qore/modules/Util/html/graph_legend.html
 share/doc/qore/modules/Util/html/graph_legend.md5
 share/doc/qore/modules/Util/html/graph_legend.png
@@ -13260,6 +19173,7 @@ share/doc/qore/modules/Util/html/jquery.
 share/doc/qore/modules/Util/html/menu.js
 share/doc/qore/modules/Util/html/menudata.js
 share/doc/qore/modules/Util/html/namespace_util.html
+share/doc/qore/modules/Util/html/namespace_util.js
 share/doc/qore/modules/Util/html/namespacemembers.html
 share/doc/qore/modules/Util/html/namespacemembers_func.html
 share/doc/qore/modules/Util/html/namespacemembers_vars.html
@@ -13337,6 +19251,8 @@ share/doc/qore/modules/Util/html/search/
 share/doc/qore/modules/Util/html/search/classes_10.js
 share/doc/qore/modules/Util/html/search/classes_11.html
 share/doc/qore/modules/Util/html/search/classes_11.js
+share/doc/qore/modules/Util/html/search/classes_12.html
+share/doc/qore/modules/Util/html/search/classes_12.js
 share/doc/qore/modules/Util/html/search/classes_2.html
 share/doc/qore/modules/Util/html/search/classes_2.js
 share/doc/qore/modules/Util/html/search/classes_3.html
@@ -13457,10 +19373,6 @@ share/doc/qore/modules/Util/html/search/
 share/doc/qore/modules/Util/html/search/namespaces_0.js
 share/doc/qore/modules/Util/html/search/namespaces_1.html
 share/doc/qore/modules/Util/html/search/namespaces_1.js
-share/doc/qore/modules/Util/html/search/namespaces_2.html
-share/doc/qore/modules/Util/html/search/namespaces_2.js
-share/doc/qore/modules/Util/html/search/namespaces_3.html
-share/doc/qore/modules/Util/html/search/namespaces_3.js
 share/doc/qore/modules/Util/html/search/nomatches.html
 share/doc/qore/modules/Util/html/search/pages_0.html
 share/doc/qore/modules/Util/html/search/pages_0.js
@@ -13472,6 +19384,8 @@ share/doc/qore/modules/Util/html/search/
 share/doc/qore/modules/Util/html/search/pages_11.js
 share/doc/qore/modules/Util/html/search/pages_12.html
 share/doc/qore/modules/Util/html/search/pages_12.js
+share/doc/qore/modules/Util/html/search/pages_13.html
+share/doc/qore/modules/Util/html/search/pages_13.js
 share/doc/qore/modules/Util/html/search/pages_2.html
 share/doc/qore/modules/Util/html/search/pages_2.js
 share/doc/qore/modules/Util/html/search/pages_3.html
@@ -13520,6 +19434,12 @@ share/doc/qore/modules/Util/html/search/
 share/doc/qore/modules/Util/html/search/variables_13.js
 share/doc/qore/modules/Util/html/search/variables_14.html
 share/doc/qore/modules/Util/html/search/variables_14.js
+share/doc/qore/modules/Util/html/search/variables_15.html
+share/doc/qore/modules/Util/html/search/variables_15.js
+share/doc/qore/modules/Util/html/search/variables_16.html
+share/doc/qore/modules/Util/html/search/variables_16.js
+share/doc/qore/modules/Util/html/search/variables_17.html
+share/doc/qore/modules/Util/html/search/variables_17.js
 share/doc/qore/modules/Util/html/search/variables_2.html
 share/doc/qore/modules/Util/html/search/variables_2.js
 share/doc/qore/modules/Util/html/search/variables_3.html
@@ -13549,6 +19469,9 @@ share/doc/qore/modules/Util/html/search/
 share/doc/qore/modules/Util/html/search/variables_f.html
 share/doc/qore/modules/Util/html/search/variables_f.js
 share/doc/qore/modules/Util/html/splitbar.png
+share/doc/qore/modules/Util/html/struct_util_1_1_uri_query_info-members.html
+share/doc/qore/modules/Util/html/struct_util_1_1_uri_query_info.html
+share/doc/qore/modules/Util/html/struct_util_1_1_uri_query_info.js
 share/doc/qore/modules/Util/html/sync_off.png
 share/doc/qore/modules/Util/html/sync_on.png
 share/doc/qore/modules/Util/html/tab_a.png
@@ -13564,6 +19487,12 @@ share/doc/qore/modules/WebSocketClient/h
 share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_client-members.html
 share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_client.html
 share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_client.js
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object-members.html
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object.html
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object.js
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object__inherit__graph.map
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object__inherit__graph.md5
+share/doc/qore/modules/WebSocketClient/html/class_web_socket_client_1_1_web_socket_connection_object__inherit__graph.png
 share/doc/qore/modules/WebSocketClient/html/classes.html
 share/doc/qore/modules/WebSocketClient/html/closed.png
 share/doc/qore/modules/WebSocketClient/html/dir_13add0083e006ac756009d5942a24d28.html
@@ -13580,8 +19509,17 @@ share/doc/qore/modules/WebSocketClient/h
 share/doc/qore/modules/WebSocketClient/html/graph_legend.html
 share/doc/qore/modules/WebSocketClient/html/graph_legend.md5
 share/doc/qore/modules/WebSocketClient/html/graph_legend.png
+share/doc/qore/modules/WebSocketClient/html/hierarchy.html
+share/doc/qore/modules/WebSocketClient/html/hierarchy.js
 share/doc/qore/modules/WebSocketClient/html/index.html
 share/doc/qore/modules/WebSocketClient/html/index.qhp
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_0.map
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_0.md5
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_0.png
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_1.map
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_1.md5
+share/doc/qore/modules/WebSocketClient/html/inherit_graph_1.png
+share/doc/qore/modules/WebSocketClient/html/inherits.html
 share/doc/qore/modules/WebSocketClient/html/jquery.js
 share/doc/qore/modules/WebSocketClient/html/menu.js
 share/doc/qore/modules/WebSocketClient/html/menudata.js
@@ -13791,16 +19729,6 @@ share/doc/qore/modules/WebSocketClient/h
 share/doc/qore/modules/WebSocketClient/html/search/namespaces_2.js
 share/doc/qore/modules/WebSocketClient/html/search/namespaces_3.html
 share/doc/qore/modules/WebSocketClient/html/search/namespaces_3.js
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_4.html
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_4.js
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_5.html
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_5.js
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_6.html
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_6.js
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_7.html
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_7.js
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_8.html
-share/doc/qore/modules/WebSocketClient/html/search/namespaces_8.js
 share/doc/qore/modules/WebSocketClient/html/search/nomatches.html
 share/doc/qore/modules/WebSocketClient/html/search/pages_0.html
 share/doc/qore/modules/WebSocketClient/html/search/pages_0.js
@@ -13810,6 +19738,8 @@ share/doc/qore/modules/WebSocketClient/h
 share/doc/qore/modules/WebSocketClient/html/search/pages_10.js
 share/doc/qore/modules/WebSocketClient/html/search/pages_11.html
 share/doc/qore/modules/WebSocketClient/html/search/pages_11.js
+share/doc/qore/modules/WebSocketClient/html/search/pages_12.html
+share/doc/qore/modules/WebSocketClient/html/search/pages_12.js
 share/doc/qore/modules/WebSocketClient/html/search/pages_2.html
 share/doc/qore/modules/WebSocketClient/html/search/pages_2.js
 share/doc/qore/modules/WebSocketClient/html/search/pages_3.html
@@ -14022,8 +19952,6 @@ share/doc/qore/modules/WebSocketHandler/
 share/doc/qore/modules/WebSocketHandler/html/search/classes_11.js
 share/doc/qore/modules/WebSocketHandler/html/search/classes_12.html
 share/doc/qore/modules/WebSocketHandler/html/search/classes_12.js
-share/doc/qore/modules/WebSocketHandler/html/search/classes_13.html
-share/doc/qore/modules/WebSocketHandler/html/search/classes_13.js
 share/doc/qore/modules/WebSocketHandler/html/search/classes_2.html
 share/doc/qore/modules/WebSocketHandler/html/search/classes_2.js
 share/doc/qore/modules/WebSocketHandler/html/search/classes_3.html
@@ -14148,18 +20076,6 @@ share/doc/qore/modules/WebSocketHandler/
 share/doc/qore/modules/WebSocketHandler/html/search/namespaces_1.js
 share/doc/qore/modules/WebSocketHandler/html/search/namespaces_2.html
 share/doc/qore/modules/WebSocketHandler/html/search/namespaces_2.js
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_3.html
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_3.js
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_4.html
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_4.js
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_5.html
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_5.js
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_6.html
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_6.js
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_7.html
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_7.js
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_8.html
-share/doc/qore/modules/WebSocketHandler/html/search/namespaces_8.js
 share/doc/qore/modules/WebSocketHandler/html/search/nomatches.html
 share/doc/qore/modules/WebSocketHandler/html/search/pages_0.html
 share/doc/qore/modules/WebSocketHandler/html/search/pages_0.js
@@ -14169,6 +20085,8 @@ share/doc/qore/modules/WebSocketHandler/
 share/doc/qore/modules/WebSocketHandler/html/search/pages_10.js
 share/doc/qore/modules/WebSocketHandler/html/search/pages_11.html
 share/doc/qore/modules/WebSocketHandler/html/search/pages_11.js
+share/doc/qore/modules/WebSocketHandler/html/search/pages_12.html
+share/doc/qore/modules/WebSocketHandler/html/search/pages_12.js
 share/doc/qore/modules/WebSocketHandler/html/search/pages_2.html
 share/doc/qore/modules/WebSocketHandler/html/search/pages_2.js
 share/doc/qore/modules/WebSocketHandler/html/search/pages_3.html
@@ -14283,16 +20201,18 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebSocketUtil/html/group__closecodes.html
 share/doc/qore/modules/WebSocketUtil/html/group__closecodes.js
 share/doc/qore/modules/WebSocketUtil/html/group__compression__constants.js
+share/doc/qore/modules/WebSocketUtil/html/group__compression__transformations.js
 share/doc/qore/modules/WebSocketUtil/html/group__compresssion__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__context__functions.js
+share/doc/qore/modules/WebSocketUtil/html/group__crypto__transformations.js
 share/doc/qore/modules/WebSocketUtil/html/group__cryptographic__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__cryptographic__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__database__driver__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__date__and__time__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__dbi__capabilities.js
 share/doc/qore/modules/WebSocketUtil/html/group__dbi__functions.js
-share/doc/qore/modules/WebSocketUtil/html/group__debug__rc__options.js
-share/doc/qore/modules/WebSocketUtil/html/group__debug__step__options.js
+share/doc/qore/modules/WebSocketUtil/html/group__debug__flow__options.js
+share/doc/qore/modules/WebSocketUtil/html/group__debug__rs__options.js
 share/doc/qore/modules/WebSocketUtil/html/group__digest__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__env__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__error__constants.js
@@ -14316,6 +20236,7 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebSocketUtil/html/group__network__address__information__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__null__and__nothing__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__number__formatting__constants.js
+share/doc/qore/modules/WebSocketUtil/html/group__number__string__formatting__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__object__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__old__dbi__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__opcodes.html
@@ -14330,10 +20251,10 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebSocketUtil/html/group__signal__handling__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__socket__type__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__sql__constants.js
+share/doc/qore/modules/WebSocketUtil/html/group__ssl__mode__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__string__functions.js
 share/doc/qore/modules/WebSocketUtil/html/group__string__type__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__system__and__build__constants.js
-share/doc/qore/modules/WebSocketUtil/html/group__t.js
 share/doc/qore/modules/WebSocketUtil/html/group__tattr__control__character__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__tattr__control__mode__constants.js
 share/doc/qore/modules/WebSocketUtil/html/group__tattr__input__mode__constants.js
@@ -14557,10 +20478,6 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebSocketUtil/html/search/namespaces_0.js
 share/doc/qore/modules/WebSocketUtil/html/search/namespaces_1.html
 share/doc/qore/modules/WebSocketUtil/html/search/namespaces_1.js
-share/doc/qore/modules/WebSocketUtil/html/search/namespaces_2.html
-share/doc/qore/modules/WebSocketUtil/html/search/namespaces_2.js
-share/doc/qore/modules/WebSocketUtil/html/search/namespaces_3.html
-share/doc/qore/modules/WebSocketUtil/html/search/namespaces_3.js
 share/doc/qore/modules/WebSocketUtil/html/search/nomatches.html
 share/doc/qore/modules/WebSocketUtil/html/search/pages_0.html
 share/doc/qore/modules/WebSocketUtil/html/search/pages_0.js
@@ -14570,6 +20487,8 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebSocketUtil/html/search/pages_10.js
 share/doc/qore/modules/WebSocketUtil/html/search/pages_11.html
 share/doc/qore/modules/WebSocketUtil/html/search/pages_11.js
+share/doc/qore/modules/WebSocketUtil/html/search/pages_12.html
+share/doc/qore/modules/WebSocketUtil/html/search/pages_12.js
 share/doc/qore/modules/WebSocketUtil/html/search/pages_2.html
 share/doc/qore/modules/WebSocketUtil/html/search/pages_2.js
 share/doc/qore/modules/WebSocketUtil/html/search/pages_3.html
@@ -14618,6 +20537,12 @@ share/doc/qore/modules/WebSocketUtil/htm
 share/doc/qore/modules/WebSocketUtil/html/search/variables_13.js
 share/doc/qore/modules/WebSocketUtil/html/search/variables_14.html
 share/doc/qore/modules/WebSocketUtil/html/search/variables_14.js
+share/doc/qore/modules/WebSocketUtil/html/search/variables_15.html
+share/doc/qore/modules/WebSocketUtil/html/search/variables_15.js
+share/doc/qore/modules/WebSocketUtil/html/search/variables_16.html
+share/doc/qore/modules/WebSocketUtil/html/search/variables_16.js
+share/doc/qore/modules/WebSocketUtil/html/search/variables_17.html
+share/doc/qore/modules/WebSocketUtil/html/search/variables_17.js
 share/doc/qore/modules/WebSocketUtil/html/search/variables_2.html
 share/doc/qore/modules/WebSocketUtil/html/search/variables_2.js
 share/doc/qore/modules/WebSocketUtil/html/search/variables_3.html
@@ -14806,6 +20731,14 @@ share/doc/qore/modules/WebUtil/html/sear
 share/doc/qore/modules/WebUtil/html/search/classes_11.js
 share/doc/qore/modules/WebUtil/html/search/classes_12.html
 share/doc/qore/modules/WebUtil/html/search/classes_12.js
+share/doc/qore/modules/WebUtil/html/search/classes_13.html
+share/doc/qore/modules/WebUtil/html/search/classes_13.js
+share/doc/qore/modules/WebUtil/html/search/classes_14.html
+share/doc/qore/modules/WebUtil/html/search/classes_14.js
+share/doc/qore/modules/WebUtil/html/search/classes_15.html
+share/doc/qore/modules/WebUtil/html/search/classes_15.js
+share/doc/qore/modules/WebUtil/html/search/classes_16.html
+share/doc/qore/modules/WebUtil/html/search/classes_16.js
 share/doc/qore/modules/WebUtil/html/search/classes_2.html
 share/doc/qore/modules/WebUtil/html/search/classes_2.js
 share/doc/qore/modules/WebUtil/html/search/classes_3.html
@@ -14857,6 +20790,8 @@ share/doc/qore/modules/WebUtil/html/sear
 share/doc/qore/modules/WebUtil/html/search/functions_17.js
 share/doc/qore/modules/WebUtil/html/search/functions_18.html
 share/doc/qore/modules/WebUtil/html/search/functions_18.js
+share/doc/qore/modules/WebUtil/html/search/functions_19.html
+share/doc/qore/modules/WebUtil/html/search/functions_19.js
 share/doc/qore/modules/WebUtil/html/search/functions_2.html
 share/doc/qore/modules/WebUtil/html/search/functions_2.js
 share/doc/qore/modules/WebUtil/html/search/functions_3.html
@@ -14949,6 +20884,8 @@ share/doc/qore/modules/WebUtil/html/sear
 share/doc/qore/modules/WebUtil/html/search/pages_10.js
 share/doc/qore/modules/WebUtil/html/search/pages_11.html
 share/doc/qore/modules/WebUtil/html/search/pages_11.js
+share/doc/qore/modules/WebUtil/html/search/pages_12.html
+share/doc/qore/modules/WebUtil/html/search/pages_12.js
 share/doc/qore/modules/WebUtil/html/search/pages_2.html
 share/doc/qore/modules/WebUtil/html/search/pages_2.js
 share/doc/qore/modules/WebUtil/html/search/pages_3.html
@@ -15003,6 +20940,10 @@ share/doc/qore/modules/WebUtil/html/sear
 share/doc/qore/modules/WebUtil/html/search/variables_16.js
 share/doc/qore/modules/WebUtil/html/search/variables_17.html
 share/doc/qore/modules/WebUtil/html/search/variables_17.js
+share/doc/qore/modules/WebUtil/html/search/variables_18.html
+share/doc/qore/modules/WebUtil/html/search/variables_18.js
+share/doc/qore/modules/WebUtil/html/search/variables_19.html
+share/doc/qore/modules/WebUtil/html/search/variables_19.js
 share/doc/qore/modules/WebUtil/html/search/variables_2.html
 share/doc/qore/modules/WebUtil/html/search/variables_2.js
 share/doc/qore/modules/WebUtil/html/search/variables_3.html
@@ -15039,33 +20980,47 @@ share/doc/qore/modules/WebUtil/html/tab_
 share/doc/qore/modules/WebUtil/html/tab_h.png
 share/doc/qore/modules/WebUtil/html/tab_s.png
 share/doc/qore/modules/WebUtil/html/tabs.css
-share/qore-modules/0.8.12/BulkSqlUtil.qm
-share/qore-modules/0.8.12/CsvUtil.qm
-share/qore-modules/0.8.12/Diff.qm
-share/qore-modules/0.8.12/FilePoller.qm
-share/qore-modules/0.8.12/FixedLengthUtil.qm
-share/qore-modules/0.8.12/FreetdsSqlUtil.qm
-share/qore-modules/0.8.12/HttpServer.qm
-share/qore-modules/0.8.12/HttpServerUtil.qm
-share/qore-modules/0.8.12/MailMessage.qm
-share/qore-modules/0.8.12/Mapper.qm
-share/qore-modules/0.8.12/Mime.qm
-share/qore-modules/0.8.12/MysqlSqlUtil.qm
-share/qore-modules/0.8.12/OracleSqlUtil.qm
-share/qore-modules/0.8.12/PgsqlSqlUtil.qm
-share/qore-modules/0.8.12/Pop3Client.qm
-share/qore-modules/0.8.12/QUnit.qm
-share/qore-modules/0.8.12/Qorize.qm
-share/qore-modules/0.8.12/RestClient.qm
-share/qore-modules/0.8.12/RestHandler.qm
-share/qore-modules/0.8.12/SalesforceRestClient.qm
-share/qore-modules/0.8.12/Schema.qm
-share/qore-modules/0.8.12/SmtpClient.qm
-share/qore-modules/0.8.12/SqlUtil.qm
-share/qore-modules/0.8.12/TableMapper.qm
-share/qore-modules/0.8.12/TelnetClient.qm
-share/qore-modules/0.8.12/Util.qm
-share/qore-modules/0.8.12/WebSocketClient.qm
-share/qore-modules/0.8.12/WebSocketHandler.qm
-share/qore-modules/0.8.12/WebSocketUtil.qm
-share/qore-modules/0.8.12/WebUtil.qm
+share/qore-modules/${PKGVERSION}/BulkSqlUtil.qm
+share/qore-modules/${PKGVERSION}/ConnectionProvider.qm
+share/qore-modules/${PKGVERSION}/CsvUtil.qm
+share/qore-modules/${PKGVERSION}/DatasourceProvider.qm
+share/qore-modules/${PKGVERSION}/DebugCmdLine.qm
+share/qore-modules/${PKGVERSION}/DebugHandler.qm
+share/qore-modules/${PKGVERSION}/DebugProgramControl.qm
+share/qore-modules/${PKGVERSION}/DebugUtil.qm
+share/qore-modules/${PKGVERSION}/Diff.qm
+share/qore-modules/${PKGVERSION}/FilePoller.qm
+share/qore-modules/${PKGVERSION}/FixedLengthUtil.qm
+share/qore-modules/${PKGVERSION}/FreetdsSqlUtil.qm
+share/qore-modules/${PKGVERSION}/HttpServer.qm
+share/qore-modules/${PKGVERSION}/HttpServerUtil.qm
+share/qore-modules/${PKGVERSION}/MailMessage.qm
+share/qore-modules/${PKGVERSION}/Mapper.qm
+share/qore-modules/${PKGVERSION}/Mime.qm
+share/qore-modules/${PKGVERSION}/MysqlSqlUtil.qm
+share/qore-modules/${PKGVERSION}/OracleSqlUtil.qm
+share/qore-modules/${PKGVERSION}/PgsqlSqlUtil.qm
+share/qore-modules/${PKGVERSION}/Pop3Client.qm
+share/qore-modules/${PKGVERSION}/QUnit.qm
+share/qore-modules/${PKGVERSION}/Qdx.qm
+share/qore-modules/${PKGVERSION}/Qorize.qm
+share/qore-modules/${PKGVERSION}/RestClient.qm
+share/qore-modules/${PKGVERSION}/RestHandler.qm
+share/qore-modules/${PKGVERSION}/RestSchemaValidator.qm
+share/qore-modules/${PKGVERSION}/SalesforceRestClient.qm
+share/qore-modules/${PKGVERSION}/Schema.qm
+share/qore-modules/${PKGVERSION}/SchemaReverse.qm
+share/qore-modules/${PKGVERSION}/SewioRestClient.qm
+share/qore-modules/${PKGVERSION}/SewioWebSocketClient.qm
+share/qore-modules/${PKGVERSION}/SmtpClient.qm
+share/qore-modules/${PKGVERSION}/SqlUtil.qm
+share/qore-modules/${PKGVERSION}/Swagger.qm
+share/qore-modules/${PKGVERSION}/TableMapper.qm
+share/qore-modules/${PKGVERSION}/TelnetClient.qm
+share/qore-modules/${PKGVERSION}/TextWrap.qm
+share/qore-modules/${PKGVERSION}/Util.qm
+share/qore-modules/${PKGVERSION}/WebSocketClient.qm
+share/qore-modules/${PKGVERSION}/WebSocketHandler.qm
+share/qore-modules/${PKGVERSION}/WebSocketUtil.qm
+share/qore-modules/${PKGVERSION}/WebUtil.qm
+share/qore/Doxyfile.in

Index: pkgsrc/lang/qore/distinfo
diff -u pkgsrc/lang/qore/distinfo:1.9 pkgsrc/lang/qore/distinfo:1.10
--- pkgsrc/lang/qore/distinfo:1.9       Sun Jul 30 19:27:08 2017
+++ pkgsrc/lang/qore/distinfo   Thu Oct 12 18:17:46 2017
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.9 2017/07/30 19:27:08 nros Exp $
+$NetBSD: distinfo,v 1.10 2017/10/12 18:17:46 nros Exp $
 
-SHA1 (qore-0.8.12.11.tar.bz2) = 32c2f4dc675347fb25a67216baaf2dcde344aa78
-RMD160 (qore-0.8.12.11.tar.bz2) = 4fc7718ab3162a6e19ff988d882aac44d62ffaaf
-SHA512 (qore-0.8.12.11.tar.bz2) = a20eac1a966d6a0862aa359c865c1f3cb05b2fcfefea15797185273cd941e811dd5a4a261547e38fca2db1c5852fff6ee5eac4bd6cbb62e40436ae85e63d50ae
-Size (qore-0.8.12.11.tar.bz2) = 22939924 bytes
+SHA1 (qore-0.8.13.tar.bz2) = 0056aaae57f7fadd87a63a6e8f2bbc161b0c40b6
+RMD160 (qore-0.8.13.tar.bz2) = d25bb8a9a3ef30c8e960a9a61fca079ac78503ac
+SHA512 (qore-0.8.13.tar.bz2) = 360efc9e062c04e6ade66a7d3c6a40b1944b81ac7bbc0fae781fe211739434daa83e86b09c626a39df5d7c61e9be681ff3fa1816a9a41952233d1fcc39d3195e
+Size (qore-0.8.13.tar.bz2) = 30024274 bytes
 SHA1 (patch-include_qore_ReferenceNode.h) = df2dbac13ed9bc5dff4949bc654817e4c5335dd2



Home | Main Index | Thread Index | Old Index