git: dc6116557c25 - 2024Q4 - databases/couchdb3: update to 3.4.2, resolve PR282217

From: Dave Cottlehuber <dch_at_FreeBSD.org>
Date: Mon, 09 Dec 2024 21:55:52 UTC
The branch 2024Q4 has been updated by dch:

URL: https://cgit.FreeBSD.org/ports/commit/?id=dc6116557c250b1c5b75e902eb511fa2657089b0

commit dc6116557c250b1c5b75e902eb511fa2657089b0
Author:     Dave Cottlehuber <dch@FreeBSD.org>
AuthorDate: 2024-12-09 21:55:50 +0000
Commit:     Dave Cottlehuber <dch@FreeBSD.org>
CommitDate: 2024-12-09 21:55:50 +0000

    databases/couchdb3: update to 3.4.2, resolve PR282217
    
    - include QuickJS engine
    - support xxHash for data integrity checksums
    - improved mango keys-only indexes
    - https://blog.couchdb.org/2024/10/22/3-4-2/
    - https://docs.couchdb.org/en/stable/whatsnew/3.4.html
    
    - ensure snappy NIF is compiled without optimisations to avoid
        corrupted documents under newer clang versions, used in
        in 14.1-RELEASE (see PR282217 for details)
    
    Sponsored by:   SkunkWerks, GmbH
    
    PR:             282217
    (cherry picked from commit 6924dfdf7ea3b4b511c7f987727cb6933175765c)
---
 UPDATING                                           |  18 +
 databases/couchdb3/Makefile                        |  34 +-
 databases/couchdb3/distinfo                        |   6 +-
 databases/couchdb3/files/couchdb3.in               |  12 +-
 databases/couchdb3/files/patch-configure           |  21 +-
 .../couchdb3/files/patch-rel_overlay_etc_vm.args   |   4 +-
 databases/couchdb3/files/patch-rel_reltool.config  |  10 -
 .../couchdb3/files/patch-src_snappy_rebar.config   |  11 +
 databases/couchdb3/pkg-plist                       | 954 +++++++++++++++++----
 9 files changed, 849 insertions(+), 221 deletions(-)

diff --git a/UPDATING b/UPDATING
index 2ef7aa8403fc..4bf68a8166fd 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,24 @@ they are unavoidable.
 You should get into the habit of checking this file for changes each time
 you update your ports collection, before attempting any port upgrades.
 
+20241122
+  AFFECTS: users of databases/couchdb3
+  AUTHOR: dch@FreeBSD.org
+
+  Users who installed or upgraded to CouchDB 3.3.3 *after* 2024-09-30, and
+  who are also running 14.1-RELEASE or newer, will hit a nasty corruption bug,
+  causing all CPUs to lock up, possibly crashing, and generating a lot of
+  errors in log files.
+
+  This bug is caused by corrupt docs after decompression, due to a clash
+  between improved compiler optimisations in clang18, and a bug in snappy
+  itself. Given the above symptoms, all affected users will have noticed.
+
+  Upgrade to 3.4.2 in ports, to resolve this issue.
+
+  Please read more about this issue here:
+  https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=282217
+
 20241004:
   AFFECTS: users of www/c-icap
   AUTHOR: rodrigo@FreeBSD.org
diff --git a/databases/couchdb3/Makefile b/databases/couchdb3/Makefile
index 7f02129a4245..21f0ff18dc53 100644
--- a/databases/couchdb3/Makefile
+++ b/databases/couchdb3/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	couchdb3
-DISTVERSION=	3.3.3
-PORTREVISION=	1
+DISTVERSION=	3.4.2
 CATEGORIES=	databases
 MASTER_SITES=	APACHE/couchdb/source/${DISTVERSION}
 DISTNAME=	apache-couchdb-${DISTVERSION}
@@ -16,7 +15,6 @@ BUILD_DEPENDS=	erlang-runtime${_ERLVER}>=${_ERLVER}.0:lang/erlang-runtime${_ERLV
 		rebar:devel/rebar
 LIB_DEPENDS=	libicudata.so:devel/icu \
 		libmozjs-91.so:lang/spidermonkey91
-RUN_DEPENDS=	erlang-runtime${_ERLVER}>=${_ERLVER}.0:lang/erlang-runtime${_ERLVER}
 
 USES=		compiler:c++17-lang cpe gmake libtool ncurses
 CPE_VENDOR=	apache
@@ -51,7 +49,7 @@ OPTIONS_SUB=	yes
 
 _APPDIR=	${LOCALBASE}/libexec/${PORTNAME}
 _DBDIR?=	/var/db/${PORTNAME}
-_ERLVER?=	25
+_ERLVER?=	26
 _LOGDIR?=	/var/log/${PORTNAME}
 _LOGFILE?=	${_LOGDIR}/couch.log
 _RELDIR=	${_APPDIR}/releases/${DISTVERSION}
@@ -83,40 +81,48 @@ post-patch:
 .endif
 
 pre-install:
+# prune build artefacts and surplus headers
+	${FIND} -E ${WRKSRC} -type f \
+		-regex '.*\.(a|buildinfo|c|cc|cmd|d|o|orig|h|cpp)' -print -delete
+
+do-install:
 # relocate user-modifiable runtime configs to match hier(7)
-	${MKDIR} ${STAGEDIR}${ETCDIR}
+	${MKDIR} ${STAGEDIR}${ETCDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}
 	${INSTALL_DATA} ${WRKSRC}/rel/couchdb/etc/local.ini \
 		${STAGEDIR}${ETCDIR}/local.ini.sample
 	${INSTALL_DATA} ${WRKSRC}/rel/couchdb/etc/vm.args \
 		${STAGEDIR}${ETCDIR}/vm.args.sample
 	${INSTALL_MAN} ${WRKSRC}/share/docs/man/apachecouchdb.1 \
 		${STAGEDIR}${PREFIX}/share/man/man1
-# prune build artefacts and surplus headers
-	${FIND} -E ${WRKSRC} -type f \
-		-regex '.*\.(a|buildinfo|c|cc|cmd|d|o|orig|h|cpp)' -print -delete
-	@${CP} ${WRKSRC}/src/docs/images/favicon.ico ${WRKSRC}/share/www/
+	${CP} ${WRKSRC}/src/docs/images/favicon.ico ${WRKSRC}/share/www/
 # remove runtime dirs and files that were moved to match hier(7)
 	${RM} -rv \
+		${WRKSRC}/rel/couchdb/erts-*/include \
+		${WRKSRC}/rel/couchdb/erts-*/src \
 		${WRKSRC}/rel/couchdb/etc/*.d \
 		${WRKSRC}/rel/couchdb/etc/local.ini \
 		${WRKSRC}/rel/couchdb/etc/vm.args \
-		${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch*js \
+		${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch_js/1.8.5 \
+		${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch_js/60 \
+		${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch_js/68 \
+		${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch_js/86 \
+		${WRKSRC}/rel/couchdb/lib/couch-*/priv/priv/couchjs \
 		${WRKSRC}/rel/couchdb/releases/*/vm.args \
 		${WRKSRC}/rel/couchdb/share/docs \
 		${WRKSRC}/rel/couchdb/share/www \
 		${WRKSRC}/rel/couchdb/var
 	(cd ${WRKSRC}/rel/couchdb && ${COPYTREE_SHARE} . ${STAGEDIR}${_APPDIR})
-
+	${INSTALL_PROGRAM} ${WRKSRC}/rel/couchdb/bin/couchjs ${STAGEDIR}${_APPDIR}/bin/
+# fauxton UI is a required component
+	(cd ${WRKSRC}/share/www && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
 post-install:
 	@${FIND} -E ${STAGEDIR} -type f \
-		\( -name couchjs -o -name *.so \) \
+		\( -name couchjs* -o -name *.so \) \
 		-exec ${STRIP_CMD} {} +
 	@${MKDIR} \
 		${STAGEDIR}${_DBDIR} \
 		${STAGEDIR}${_LOGDIR} \
 		${STAGEDIR}${_RUNDIR}
-# fauxton UI is a required component
-	(cd ${WRKSRC}/share/www && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
 
 post-install-DOCS-on:
 	(cd ${WRKSRC}/share/docs/html && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/docs)
diff --git a/databases/couchdb3/distinfo b/databases/couchdb3/distinfo
index 8725b694427a..2e125627ad43 100644
--- a/databases/couchdb3/distinfo
+++ b/databases/couchdb3/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1702805372
-SHA256 (apache-couchdb-3.3.3.tar.gz) = 7a2007b5f673d4be22a25c9a111d9066919d872ddb9135a7dcec0122299bd39e
-SIZE (apache-couchdb-3.3.3.tar.gz) = 18899763
+TIMESTAMP = 1729600712
+SHA256 (apache-couchdb-3.4.2.tar.gz) = d27ff2a13356000296a98ab884caf3d175927cf21727963ff90fab3a747544cf
+SIZE (apache-couchdb-3.4.2.tar.gz) = 19242582
diff --git a/databases/couchdb3/files/couchdb3.in b/databases/couchdb3/files/couchdb3.in
index af3f2e27bea2..29ba0efc0fb8 100644
--- a/databases/couchdb3/files/couchdb3.in
+++ b/databases/couchdb3/files/couchdb3.in
@@ -26,15 +26,11 @@ load_rc_config $name
 : ${%%PORTNAME%%_erl_flags="-couch_ini %%APPDIR%%/etc/default.ini %%ETCDIR%%/local.ini"}
 : ${%%PORTNAME%%_chdir="/var/db/%%PORTNAME%%"}
 
-command="%%ERL_PATH%%"
+command="%%PREFIX%%/libexec/%%PORTNAME%%/bin/couchdb"
+
 pidfile="/var/run/${name}.pid"
 daemonpidfile="/var/run/${name}-daemon.pid"
 
-erl_sasl='-sasl releases_dir \"%%PORTNAME%%/releases\"'
-erl_boot='-boot %%RELDIR%%/couchdb -boot_var RELTOOL_EXT_LIB %%APPDIR%%/lib'
-erl_args='-args_file %%ETCDIR%%/vm.args'
-erl_flags="${erl_sasl} ${erl_boot} ${erl_args} ${%%PORTNAME%%_erl_flags}"
-
 %%PORTNAME%%_start()
 {
     # chdir manually as overriding _start() blocks rc.subr defaults
@@ -47,8 +43,8 @@ erl_flags="${erl_sasl} ${erl_boot} ${erl_args} ${%%PORTNAME%%_erl_flags}"
         HOME=/var/run/%%PORTNAME%% \
         ERL_CRASH_DUMP=/var/run/%%PORTNAME%%/erl_crash.dump \
         COUCHDB_FAUXTON_DOCROOT=%%WWWDIR%% \
-        COUCHDB_QUERY_SERVER_JAVASCRIPT="%%APPDIR%%/bin/couchjs %%APPDIR%%/share/server/main.js" \
-        COUCHDB_QUERY_SERVER_COFFEESCRIPT="%%APPDIR%%/bin/couchjs %%APPDIR%%/share/server/main-coffee.js" \
+        COUCHDB_ARGS_FILE=%%PREFIX%%/etc/couchdb3/vm.args \
+        COUCHDB_INI_FILES='%%PREFIX%%/libexec/couchdb3/etc/default.ini %%PREFIX%%/etc/couchdb3/local.ini' \
         ${command}
 }
 
diff --git a/databases/couchdb3/files/patch-configure b/databases/couchdb3/files/patch-configure
index c5547bc639c2..139124db7c10 100644
--- a/databases/couchdb3/files/patch-configure
+++ b/databases/couchdb3/files/patch-configure
@@ -1,4 +1,4 @@
---- configure.orig	2023-01-08 13:30:40 UTC
+--- configure.orig	2024-10-01 06:38:09 UTC
 +++ configure
 @@ -19,7 +19,7 @@ basename=`basename $0`
  rootdir="$(cd "${0%/*}" 2>/dev/null; echo "$PWD")"
@@ -7,24 +7,29 @@
 -PACKAGE_AUTHOR_NAME="The Apache Software Foundation"
 +PACKAGE_AUTHOR_NAME="FreeBSD"
  
- REBAR3_BRANCH="main"
- 
-@@ -247,12 +247,12 @@ cat > rel/couchdb.config << EOF
+ REBAR3_BRANCH="3.23.0"
+ ERLFMT_VERSION="v1.3.0"
+@@ -369,16 +369,16 @@ cat > rel/couchdb.config << EOF
  % The contents of this file are auto-generated by configure
  %
  {package_author_name, "$PACKAGE_AUTHOR_NAME"}.
 -{prefix, "."}.
 -{data_dir, "./data"}.
 -{view_index_dir, "./data"}.
--{state_dir, "./data"}.
--{log_file, "$LOG_FILE"}.
--{fauxton_root, "./share/www"}.
+-{nouveau_index_dir, "./data/nouveau"}.
 +{prefix, "%%APPDIR%%"}.
 +{data_dir, "%%DBDIR%%"}.
 +{view_index_dir, "%%DBDIR%%"}.
++{nouveau_index_dir, "%%DBDIR%%/nouveau"}.
+ {nouveau_url, "http://127.0.0.1:5987"}.
+ {nouveau_port, 5987}.
+ {nouveau_admin_port, 5988}.
+-{state_dir, "./data"}.
+-{log_file, "$LOG_FILE"}.
+-{fauxton_root, "./share/www"}.
 +{state_dir, "%%DBDIR%%"}.
 +{log_file, "%%LOG_FILE%%"}.
 +{fauxton_root, "%%WWWDIR%%"}.
  {user, "$COUCHDB_USER"}.
+ {js_engine, "$JS_ENGINE"}.
  {spidermonkey_version, "$SM_VSN"}.
- {node_name, "-name couchdb@127.0.0.1"}.
diff --git a/databases/couchdb3/files/patch-rel_overlay_etc_vm.args b/databases/couchdb3/files/patch-rel_overlay_etc_vm.args
index 2cc2ce50553d..5ae9d1da6880 100644
--- a/databases/couchdb3/files/patch-rel_overlay_etc_vm.args
+++ b/databases/couchdb3/files/patch-rel_overlay_etc_vm.args
@@ -1,6 +1,6 @@
---- rel/overlay/etc/vm.args.orig	2022-12-22 07:53:22 UTC
+--- rel/overlay/etc/vm.args.orig	2024-10-14 18:24:54 UTC
 +++ rel/overlay/etc/vm.args
-@@ -63,7 +63,7 @@ +Bd -noinput
+@@ -75,7 +75,7 @@ +Bd -noinput
  
  # Comment this line out to enable the interactive Erlang shell on startup
  +Bd -noinput
diff --git a/databases/couchdb3/files/patch-rel_reltool.config b/databases/couchdb3/files/patch-rel_reltool.config
deleted file mode 100644
index 9f377c4de794..000000000000
--- a/databases/couchdb3/files/patch-rel_reltool.config
+++ /dev/null
@@ -1,10 +0,0 @@
---- rel/reltool.config.orig	2018-08-20 14:11:32 UTC
-+++ rel/reltool.config
-@@ -11,6 +11,7 @@
- % the License.
- 
- {sys, [
-+    {excl_lib, otp_root}, %% require erts runtime from FreeBSD ports
-     {lib_dirs, ["../src"]},
-     {rel, "couchdb", "3.3.2", [
-         %% stdlib
diff --git a/databases/couchdb3/files/patch-src_snappy_rebar.config b/databases/couchdb3/files/patch-src_snappy_rebar.config
new file mode 100644
index 000000000000..5d21352d2da3
--- /dev/null
+++ b/databases/couchdb3/files/patch-src_snappy_rebar.config
@@ -0,0 +1,11 @@
+--- src/snappy/rebar.config.orig	2024-11-17 19:38:49 UTC
++++ src/snappy/rebar.config
+@@ -2,7 +2,7 @@
+ {port_sources, ["c_src/*.cc", 
+                 "c_src/snappy/*.cc"]}.
+ {port_env, [
+-    {"CXXFLAGS", "$CXXFLAGS -DNDEBUG"},
++    {"CXXFLAGS", "$CXXFLAGS -DNDEBUG -O0"},
+     {"(linux|solaris|freebsd|netbsd|openbsd|dragonfly|darwin)",
+      "LDFLAGS", "$LDFLAGS -lstdc++"}
+ ]}.
diff --git a/databases/couchdb3/pkg-plist b/databases/couchdb3/pkg-plist
index 782a4e62284b..8c90f44e07ef 100644
--- a/databases/couchdb3/pkg-plist
+++ b/databases/couchdb3/pkg-plist
@@ -1,24 +1,63 @@
-@dir libexec/couchdb3/lib/couch-%%VERSION%%/priv/couch_ejson_compare
 @dir(couchdb,couchdb,700) /var/db/couchdb3
 @dir(couchdb,couchdb,700) /var/log/couchdb3
 @dir(couchdb,couchdb,700) /var/run/couchdb3
+@comment @dir libexec/couchdb3/lib/couch-%%VERSION%%/priv/couch_ejson_compare
+@comment @dir libexec/couchdb3/lib/couch-%%VERSION%%/priv/couch_js
 @sample(couchdb,couchdb,640) %%ETCDIR%%/local.ini.sample
 @sample(couchdb,couchdb,640) %%ETCDIR%%/vm.args.sample
-libexec/couchdb3/LICENSE
 @mode 0755
 libexec/couchdb3/bin/couchdb
 libexec/couchdb3/bin/couchjs
 libexec/couchdb3/bin/remsh
 libexec/couchdb3/bin/weatherreport
-libexec/couchdb3/lib/couch-%%VERSION%%/priv/couchspawnkillable
-libexec/couchdb3/lib/couch-%%VERSION%%/priv/spawnkillable/couchspawnkillable.sh
+libexec/couchdb3/erts-14.2.5.4/bin/beam.smp
+libexec/couchdb3/erts-14.2.5.4/bin/ct_run
+libexec/couchdb3/erts-14.2.5.4/bin/epmd
+libexec/couchdb3/erts-14.2.5.4/bin/erl
+libexec/couchdb3/erts-14.2.5.4/bin/erl_call
+libexec/couchdb3/erts-14.2.5.4/bin/erl_child_setup
+libexec/couchdb3/erts-14.2.5.4/bin/erlc
+libexec/couchdb3/erts-14.2.5.4/bin/erlexec
+libexec/couchdb3/erts-14.2.5.4/bin/escript
+libexec/couchdb3/erts-14.2.5.4/bin/heart
+libexec/couchdb3/erts-14.2.5.4/bin/inet_gethost
+libexec/couchdb3/erts-14.2.5.4/bin/run_erl
+libexec/couchdb3/erts-14.2.5.4/bin/start
+libexec/couchdb3/erts-14.2.5.4/bin/to_erl
+libexec/couchdb3/erts-14.2.5.4/bin/yielding_c_fun
 @mode
 libexec/couchdb3/etc/default.ini
+libexec/couchdb3/etc/nouveau.yaml
+libexec/couchdb3/LICENSE
+libexec/couchdb3/erts-14.2.5.4/info
+libexec/couchdb3/erts-14.2.5.4/lib/internal/README
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1.app
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1.appup
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1_db.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_check.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_constructed_ber_bin_v2.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_constructed_per.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_eval_ext.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_func.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen_ber_bin_v2.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen_check.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen_jer.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen_per.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_imm.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_name.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_parser2.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_pretty_format.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_rtt.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_table.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_tok.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_value.beam
+libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1rt_nif.beam
+libexec/couchdb3/lib/asn1-5.2.2/priv/lib/asn1rt_nif.so
 libexec/couchdb3/lib/b64url-%%VERSION%%/ebin/b64url.app
 libexec/couchdb3/lib/b64url-%%VERSION%%/ebin/b64url.beam
 libexec/couchdb3/lib/b64url-%%VERSION%%/priv/b64url.so
-libexec/couchdb3/lib/bear-%%VERSION%%/ebin/bear.app
-libexec/couchdb3/lib/bear-%%VERSION%%/ebin/bear.beam
 libexec/couchdb3/lib/chttpd-%%VERSION%%/ebin/chttpd.app
 libexec/couchdb3/lib/chttpd-%%VERSION%%/ebin/chttpd.beam
 libexec/couchdb3/lib/chttpd-%%VERSION%%/ebin/chttpd_app.beam
@@ -46,6 +85,67 @@ libexec/couchdb3/lib/chttpd-%%VERSION%%/ebin/chttpd_xframe_options.beam
 libexec/couchdb3/lib/chttpd-%%VERSION%%/include/chttpd.hrl
 libexec/couchdb3/lib/chttpd-%%VERSION%%/include/chttpd_cors.hrl
 libexec/couchdb3/lib/chttpd-%%VERSION%%/priv/stats_descriptions.cfg
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_a.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_asm.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_block.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_bounds.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_call_types.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_clean.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_dict.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_digraph.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_disasm.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_flatten.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_jump.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_kernel_to_ssa.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_listing.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_opcodes.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_alias.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_bc_size.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_bool.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_bsm.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_check.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_codegen.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_dead.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_lint.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_opt.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_pp.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_pre_codegen.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_private_append.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_recv.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_share.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_throw.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_type.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_trim.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_types.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_utils.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_validator.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_z.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/cerl.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/cerl_clauses.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/cerl_inline.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/cerl_trees.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/compile.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/compiler.app
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/compiler.appup
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_lib.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_lint.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_parse.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_pp.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_scan.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/erl_bifs.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/rec_env.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_alias.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_bsm.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_fold.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_fold_lists.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_inline.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_prepare.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_messages.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_pre_attributes.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/v3_core.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/v3_kernel.beam
+libexec/couchdb3/lib/compiler-8.4.3.2/ebin/v3_kernel_pp.beam
 libexec/couchdb3/lib/config-%%VERSION%%/ebin/config.app
 libexec/couchdb3/lib/config-%%VERSION%%/ebin/config.beam
 libexec/couchdb3/lib/config-%%VERSION%%/ebin/config_app.beam
@@ -60,6 +160,7 @@ libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_app.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_att.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_auth_cache.beam
+libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_auth_lockout.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_base32.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_bt_engine.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_bt_engine_compactor.beam
@@ -71,11 +172,11 @@ libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_compress.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_engine.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_epi.beam
-libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_header.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_plugin.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_split.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_updater.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_debug.beam
+libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_disk_monitor.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_doc.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_ejson_compare.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_ejson_size.beam
@@ -94,7 +195,7 @@ libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_httpd_misc_handlers.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_httpd_multipart.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_httpd_rewrite.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_httpd_vhost.beam
-libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_io_logger.beam
+libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_hyper.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_key_tree.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_lru.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_multidb_changes.beam
@@ -103,10 +204,10 @@ libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_os_process.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_partition.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_password_hasher.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_passwords.beam
+libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_passwords_cache.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_primary_sup.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_proc_manager.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_query_servers.beam
-libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_rand.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_secondary_sup.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_server.beam
 libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_stream.beam
@@ -124,6 +225,7 @@ libexec/couchdb3/lib/couch-%%VERSION%%/include/couch_eunit.hrl
 libexec/couchdb3/lib/couch-%%VERSION%%/include/couch_eunit_proper.hrl
 libexec/couchdb3/lib/couch-%%VERSION%%/include/couch_js_functions.hrl
 libexec/couchdb3/lib/couch-%%VERSION%%/priv/couch_ejson_compare.so
+libexec/couchdb3/lib/couch-%%VERSION%%/priv/couchjs
 libexec/couchdb3/lib/couch-%%VERSION%%/priv/stats_descriptions.cfg
 libexec/couchdb3/lib/couch_dist-%%VERSION%%/ebin/couch_dist.app
 libexec/couchdb3/lib/couch_dist-%%VERSION%%/ebin/couch_dist.beam
@@ -145,7 +247,6 @@ libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event.beam
 libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_app.beam
 libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_listener.beam
 libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_listener_mfa.beam
-libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_os_listener.beam
 libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_server.beam
 libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_sup2.beam
 libexec/couchdb3/lib/couch_index-%%VERSION%%/ebin/couch_index.app
@@ -199,11 +300,18 @@ libexec/couchdb3/lib/couch_peruser-%%VERSION%%/ebin/couch_peruser.beam
 libexec/couchdb3/lib/couch_peruser-%%VERSION%%/ebin/couch_peruser_app.beam
 libexec/couchdb3/lib/couch_peruser-%%VERSION%%/ebin/couch_peruser_sup.beam
 libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus.app
+libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus.beam
 libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_app.beam
 libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_http.beam
-libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_server.beam
 libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_sup.beam
 libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_util.beam
+libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/ebin/couch_quickjs.app
+libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/ebin/couch_quickjs.beam
+libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/ebin/couch_quickjs_scanner_plugin.beam
+libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/priv/bundle_coffee.js
+libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/priv/bundle_mainjs.js
+libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/priv/couchjs_coffee
+libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/priv/couchjs_mainjs
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator.app
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_api_wrap.beam
@@ -212,9 +320,7 @@ libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_auth.bea
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_auth_noop.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_auth_session.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_changes_reader.beam
-libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_clustering.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_connection.beam
-libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_db_changes.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_doc_processor.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_doc_processor_worker.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_docs.beam
@@ -226,7 +332,6 @@ libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_httpc_po
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_httpd.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_httpd_util.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_ids.beam
-libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_job_sup.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_notifier.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_parse.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_pg.beam
@@ -234,7 +339,6 @@ libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_rate_lim
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_rate_limiter_tables.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_scheduler.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_scheduler_job.beam
-libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_scheduler_sup.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_share.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_stats.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_sup.beam
@@ -243,14 +347,38 @@ libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_worker.b
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/json_stream_parse.beam
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/include/couch_replicator_api_wrap.hrl
 libexec/couchdb3/lib/couch_replicator-%%VERSION%%/priv/stats_descriptions.cfg
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner.app
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_app.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_checkpoint.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_plugin.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_plugin_ddoc_features.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_plugin_find.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_rate_limiter.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_server.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_sup.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_util.beam
+libexec/couchdb3/lib/couch_scanner-%%VERSION%%/include/couch_scanner_plugin.hrl
 libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats.app
 libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats.beam
-libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_aggregator.beam
 libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_app.beam
+libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_counter.beam
+libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_gauge.beam
+libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_histogram.beam
 libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_httpd.beam
+libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_math.beam
 libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_process_tracker.beam
+libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_server.beam
 libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_sup.beam
+libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_util.beam
 libexec/couchdb3/lib/couch_stats-%%VERSION%%/priv/sample_descriptions.cfg
+libexec/couchdb3/lib/crypto-5.4.2.2/ebin/crypto.app
+libexec/couchdb3/lib/crypto-5.4.2.2/ebin/crypto.appup
+libexec/couchdb3/lib/crypto-5.4.2.2/ebin/crypto.beam
+libexec/couchdb3/lib/crypto-5.4.2.2/ebin/crypto_ec_curves.beam
+libexec/couchdb3/lib/crypto-5.4.2.2/priv/lib/crypto.so
+libexec/couchdb3/lib/crypto-5.4.2.2/priv/lib/crypto_callback.so
+libexec/couchdb3/lib/crypto-5.4.2.2/priv/lib/otp_test_engine.so
 libexec/couchdb3/lib/custodian-%%VERSION%%/ebin/custodian.app
 libexec/couchdb3/lib/custodian-%%VERSION%%/ebin/custodian.beam
 libexec/couchdb3/lib/custodian-%%VERSION%%/ebin/custodian_app.beam
@@ -298,14 +426,19 @@ libexec/couchdb3/lib/dreyfus-%%VERSION%%/include/dreyfus.hrl
 libexec/couchdb3/lib/dreyfus-%%VERSION%%/priv/stats_descriptions.cfg
 libexec/couchdb3/lib/ets_lru-%%VERSION%%/ebin/ets_lru.app
 libexec/couchdb3/lib/ets_lru-%%VERSION%%/ebin/ets_lru.beam
+libexec/couchdb3/lib/exxhash-%%VERSION%%/ebin/exxhash.app
+libexec/couchdb3/lib/exxhash-%%VERSION%%/ebin/exxhash.beam
+libexec/couchdb3/lib/exxhash-%%VERSION%%/priv/exxhash.so
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric.app
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric.beam
+libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_bench.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_create.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_delete.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_doc_count.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_info.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_meta.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_partition_info.beam
+libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_purged_infos.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_update_listener.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_uuids.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_design_doc_count.beam
@@ -327,36 +460,9 @@ libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_all_docs.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_changes.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_map.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_reduce.beam
+libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_row.beam
 libexec/couchdb3/lib/fabric-%%VERSION%%/include/fabric.hrl
 libexec/couchdb3/lib/fabric-%%VERSION%%/priv/stats_descriptions.cfg
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom.app
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_ets.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_ewma.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_meter_timer_server.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_counter.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_duration.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_gauge.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_histogram.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_histogram_ets.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_history.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_meter.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_meter_reader.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_spiral.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_exdec.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_none.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide_server.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide_sorted.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide_sup.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide_uniform.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_uniform.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sup.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_utils.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_vm_metrics.beam
-libexec/couchdb3/lib/folsom-%%VERSION%%/include/folsom.hrl
 libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes.app
 libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_app.beam
 libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_epi.beam
@@ -368,17 +474,6 @@ libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_server.beam
 libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_sup.beam
 libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_util.beam
 libexec/couchdb3/lib/global_changes-%%VERSION%%/priv/stats_descriptions.cfg
-libexec/couchdb3/lib/hyper-1.0/ebin/hyper.app
-libexec/couchdb3/lib/hyper-1.0/ebin/hyper.beam
-libexec/couchdb3/lib/hyper-1.0/ebin/hyper_array.beam
-libexec/couchdb3/lib/hyper-1.0/ebin/hyper_binary.beam
-libexec/couchdb3/lib/hyper-1.0/ebin/hyper_binary_rle.beam
-libexec/couchdb3/lib/hyper-1.0/ebin/hyper_carray.beam
-libexec/couchdb3/lib/hyper-1.0/ebin/hyper_const.beam
-libexec/couchdb3/lib/hyper-1.0/ebin/hyper_gb.beam
-libexec/couchdb3/lib/hyper-1.0/ebin/hyper_register.beam
-libexec/couchdb3/lib/hyper-1.0/priv/.keep
-libexec/couchdb3/lib/hyper-1.0/priv/hyper_carray.so
 libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse.app
 libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse.beam
 libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse_app.beam
@@ -389,14 +484,82 @@ libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse_socks5.beam
 libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse_sup.beam
 libexec/couchdb3/lib/ibrowse-4.4.2/include/ibrowse.hrl
 libexec/couchdb3/lib/ibrowse-4.4.2/priv/ibrowse.conf
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_chunk.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_request.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_response.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_transport.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_uri.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_util.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_cookie.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_handler.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_handler_sup.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_manager.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_profile_sup.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_request.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_response.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_sup.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_acceptor.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_acceptor_sup.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_cgi.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_conf.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_connection_sup.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_custom.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_custom_api.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_esi.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_example.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_file.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_instance_sup.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_log.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_logger.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_manager.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_misc_sup.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_request.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_request_handler.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_response.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_script_env.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_socket.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_sup.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_util.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets.app
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets.appup
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_app.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_lib.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_service.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_sup.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_trace.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_actions.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_alias.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth_dets.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth_mnesia.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth_plain.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth_server.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_cgi.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_dir.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_disk_log.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_esi.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_get.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_head.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_log.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_range.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_responsecontrol.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_security.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_security_server.beam
+libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_trace.beam
+libexec/couchdb3/lib/inets-9.1.0.1/include/httpd.hrl
+libexec/couchdb3/lib/inets-9.1.0.1/include/mod_auth.hrl
+libexec/couchdb3/lib/inets-9.1.0.1/priv/bin/runcgi.sh
 libexec/couchdb3/lib/ioq-%%VERSION%%/ebin/ioq.app
 libexec/couchdb3/lib/ioq-%%VERSION%%/ebin/ioq.beam
 libexec/couchdb3/lib/ioq-%%VERSION%%/ebin/ioq_app.beam
 libexec/couchdb3/lib/ioq-%%VERSION%%/ebin/ioq_sup.beam
-libexec/couchdb3/lib/jiffy-1.0.9/ebin/jiffy.app
-libexec/couchdb3/lib/jiffy-1.0.9/ebin/jiffy.beam
-libexec/couchdb3/lib/jiffy-1.0.9/ebin/jiffy_utf8.beam
-libexec/couchdb3/lib/jiffy-1.0.9/priv/jiffy.so
+libexec/couchdb3/lib/jiffy-1.1.2/ebin/jiffy.app
+libexec/couchdb3/lib/jiffy-1.1.2/ebin/jiffy.beam
+libexec/couchdb3/lib/jiffy-1.1.2/ebin/jiffy_utf8.beam
+libexec/couchdb3/lib/jiffy-1.1.2/priv/jiffy.so
 libexec/couchdb3/lib/jwtf-%%VERSION%%/ebin/jwtf.app
 libexec/couchdb3/lib/jwtf-%%VERSION%%/ebin/jwtf.beam
 libexec/couchdb3/lib/jwtf-%%VERSION%%/ebin/jwtf_app.beam
@@ -408,13 +571,119 @@ libexec/couchdb3/lib/ken-%%VERSION%%/ebin/ken_app.beam
 libexec/couchdb3/lib/ken-%%VERSION%%/ebin/ken_event_handler.beam
 libexec/couchdb3/lib/ken-%%VERSION%%/ebin/ken_server.beam
 libexec/couchdb3/lib/ken-%%VERSION%%/ebin/ken_sup.beam
-libexec/couchdb3/lib/khash-%%VERSION%%/ebin/khash.app
-libexec/couchdb3/lib/khash-%%VERSION%%/ebin/khash.beam
-libexec/couchdb3/lib/khash-%%VERSION%%/priv/khash.so
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/application.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/application_controller.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/application_master.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/application_starter.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/auth.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/code.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/code_server.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/disk_log.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/disk_log_1.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/disk_log_server.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/disk_log_sup.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/dist_ac.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/dist_util.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_boot_server.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_compile_server.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_ddll.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_distribution.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_epmd.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_erts_errors.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_kernel_errors.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_reply.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_signal_handler.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erpc.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/error_handler.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/error_logger.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erts_debug.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/file.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/file_io_server.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/file_server.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_sctp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_tcp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_tcp_socket.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_udp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_udp_socket.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/global.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/global_group.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/global_search.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/group.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/group_history.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/heart.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet6_sctp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet6_tcp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet6_tcp_dist.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet6_udp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_config.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_db.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_dns.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_epmd_dist.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_epmd_socket.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_gethost_native.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_hosts.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_parse.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_res.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_sctp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_tcp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_tcp_dist.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_udp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel.app
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel.appup
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel_config.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel_refc.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/local_tcp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/local_udp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_backend.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_config.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_disk_log_h.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_filters.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_formatter.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_h_common.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_handler_watcher.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_olp.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_proxy.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_server.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_simple_h.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_std_h.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_sup.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/net.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/net_adm.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/net_kernel.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/os.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/pg.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/pg2.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/prim_tty.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/ram_file.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_compressed.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_deflate.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_delayed.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_inflate.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_list.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/rpc.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/seq_trace.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/socket.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/standard_error.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/user_drv.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/user_sup.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/ebin/wrap_log_reader.beam
+libexec/couchdb3/lib/kernel-9.2.4.3/include/dist.hrl
+libexec/couchdb3/lib/kernel-9.2.4.3/include/dist_util.hrl
+libexec/couchdb3/lib/kernel-9.2.4.3/include/eep48.hrl
+libexec/couchdb3/lib/kernel-9.2.4.3/include/file.hrl
+libexec/couchdb3/lib/kernel-9.2.4.3/include/inet.hrl
+libexec/couchdb3/lib/kernel-9.2.4.3/include/inet_sctp.hrl
+libexec/couchdb3/lib/kernel-9.2.4.3/include/logger.hrl
+libexec/couchdb3/lib/kernel-9.2.4.3/include/net_address.hrl
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango.app
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_app.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_crud.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor.beam
+libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor_nouveau.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor_special.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor_text.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor_view.beam
@@ -426,6 +695,7 @@ libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_fields.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_httpd.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_httpd_handlers.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx.beam
+libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx_nouveau.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx_special.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx_text.beam
 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx_view.beam
@@ -473,49 +743,100 @@ libexec/couchdb3/lib/mem3-%%VERSION%%/ebin/mem3_sync_security.beam
 libexec/couchdb3/lib/mem3-%%VERSION%%/ebin/mem3_util.beam
 libexec/couchdb3/lib/mem3-%%VERSION%%/include/mem3.hrl
 libexec/couchdb3/lib/mem3-%%VERSION%%/priv/stats_descriptions.cfg
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochifmt.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochifmt_records.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochifmt_std.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiglobal.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochihex.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochijson.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochijson2.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochilists.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochilogfile2.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochinum.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochitemp.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiutf8.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb.app
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_acceptor.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_base64url.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_charref.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_clock.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_cookies.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_cover.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_echo.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_headers.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_html.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_http.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_io.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_mime.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_multipart.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_request.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_response.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_session.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_socket.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_socket_server.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_util.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_websocket.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/ebin/reloader.beam
-libexec/couchdb3/lib/mochiweb-3.2.0/include/internal.hrl
-libexec/couchdb3/lib/recon-2.5.3/ebin/recon.app
-libexec/couchdb3/lib/recon-2.5.3/ebin/recon.beam
-libexec/couchdb3/lib/recon-2.5.3/ebin/recon_alloc.beam
-libexec/couchdb3/lib/recon-2.5.3/ebin/recon_lib.beam
-libexec/couchdb3/lib/recon-2.5.3/ebin/recon_map.beam
-libexec/couchdb3/lib/recon-2.5.3/ebin/recon_rec.beam
-libexec/couchdb3/lib/recon-2.5.3/ebin/recon_trace.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochifmt.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochifmt_records.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochifmt_std.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiglobal.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochihex.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochijson.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochijson2.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochilists.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochilogfile2.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochinum.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochitemp.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiutf8.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb.app
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_acceptor.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_base64url.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_charref.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_clock.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_cookies.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_cover.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_echo.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_headers.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_html.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_http.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_io.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_mime.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_multipart.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_request.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_response.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_session.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_socket.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_socket_server.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_util.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_websocket.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/ebin/reloader.beam
+libexec/couchdb3/lib/mochiweb-3.2.2/include/internal.hrl
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau.app
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_api.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_app.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_bookmark.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_epi.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_fabric.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_fabric_cleanup.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_fabric_info.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_fabric_search.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_httpd.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_httpd_handlers.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_index_manager.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_index_updater.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_plugin_couch_db.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_rpc.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_sup.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_util.beam
+libexec/couchdb3/lib/nouveau-%%VERSION%%/include/nouveau.hrl
+libexec/couchdb3/lib/nouveau-%%VERSION%%/priv/stats_descriptions.cfg
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/cpu_sup.beam
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/disksup.beam
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/memsup.beam
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/nteventlog.beam
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon.app
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon.appup
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon.beam
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon_mib.beam
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon_sysinfo.beam
+libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_sup.beam
+@mode 0755
*** 602 LINES SKIPPED ***