diff --git a/Dockerfile b/Dockerfile index 73c2842..b13b039 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,74 +1,88 @@ -FROM wordpress:php8.2-apache AS base +# ------------------------------------------------- +# Stage 1 – build Composer‑based plugins +# ------------------------------------------------- +FROM php:8.2-cli AS builder + +RUN apt-get update && \ + apt-get install -y --no-install-recommends unzip git && \ + rm -rf /var/lib/apt/lists/* + +WORKDIR /app +COPY composer.json composer.lock ./ +RUN curl -sS https://getcomposer.org/installer | php && \ + php composer.phar install --no-dev --optimize-autoloader && \ + rm -f composer.json composer.lock # ------------------------------------------------- -# 1️⃣ Remove bundled themes (keep only core) +# Stage 2 – prepare the Indy WP theme (tar.gz version) # ------------------------------------------------- -RUN rm -rf /usr/src/wordpress/wp-content/themes/* +FROM php:8.2-apache AS theme-preparer + +RUN apt-get update && \ + apt-get install -y --no-install-recommends wget tar && \ + rm -rf /var/lib/apt/lists/* + +ARG THEME_TAG=v1.0.0 +# expose the tag to the runtime (used by the entrypoint) +ENV THEME_TAG=${THEME_TAG} + +ARG TAR_URL=https://codeberg.org/radioparalelo/indy-wp-theme/archive/${THEME_TAG}.tar.gz + +RUN wget -O /tmp/indy-wp-theme.tar.gz "${TAR_URL}" && \ + tar -xzf /tmp/indy-wp-theme.tar.gz -C /tmp && \ + rm /tmp/indy-wp-theme.tar.gz # ------------------------------------------------- -# 2️⃣ Custom PHP config +# Stage 3 – final WordPress image # ------------------------------------------------- +FROM wordpress:php8.2-apache + +# ---- Custom PHP config ------------------------------------------------- COPY config/php.ini /usr/local/etc/php/conf.d/custom.ini -# ------------------------------------------------- -# 3️⃣ System utilities + Composer -# ------------------------------------------------- +# ---- Install unzip & WP‑CLI -------------------------------------------- RUN apt-get update && \ apt-get install -y --no-install-recommends unzip && \ rm -rf /var/lib/apt/lists/* && \ - curl -sS https://getcomposer.org/installer | \ - php -- --install-dir=/usr/local/bin --filename=composer - -# ------------------------------------------------- -# 4️⃣ WP‑CLI -# ------------------------------------------------- -RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \ + curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \ chmod +x wp-cli.phar && \ mv wp-cli.phar /usr/local/bin/wp WORKDIR /var/www/html -# ------------------------------------------------- -# Give www-data ownership of WP‑CLI cache folder -# ------------------------------------------------- -RUN mkdir -p /var/www/.wp-cli && chown -R www-data:www-data /var/www/.wp-cli +# ---- WP‑CLI cache folder ------------------------------------------------ +RUN mkdir -p /var/www/.wp-cli && \ + chown -R www-data:www-data /var/www/.wp-cli -# ------------------------------------------------- -# 5️⃣ (Removed) theme‑install step that caused the error -# ------------------------------------------------- +# ---- Copy plugins from builder ----------------------------------------- +COPY --from=builder \ + --chown=www-data:www-data \ + /app/wp-content/plugins /var/www/html/wp-content/plugins -# ------------------------------------------------- -# 6️⃣ Writable uploads folder -# ------------------------------------------------- -RUN mkdir -p wp-content/uploads && \ - chown -R www-data:www-data wp-content && \ - chmod -R 775 wp-content +# ---- Copy the theme ------------------------------------------------------ +COPY --from=theme-preparer \ + --chown=www-data:www-data \ + /tmp/indy-wp-theme* /var/www/html/wp-content/themes/indy-wp-theme -# ------------------------------------------------- -# 7️⃣ Composer‑based plugins (same as before) -# ------------------------------------------------- -COPY composer.json composer.lock ./ -RUN composer install --no-dev --optimize-autoloader && \ - rm composer.json composer.lock && \ - chown -R www-data:www-data wp-content/plugins && \ - chmod -R 755 wp-content/plugins +# ---- Permissions --------------------------------------------------------- +USER www-data +RUN mkdir -p /var/www/html/wp-content/uploads && \ + chmod -R 755 /var/www/html/wp-content/plugins && \ + chmod -R 755 /var/www/html/wp-content/themes && \ + chmod -R 775 /var/www/html/wp-content/uploads -# ------------------------------------------------- -# 8️⃣ Healthcheck -# ------------------------------------------------- +# ---- Healthcheck --------------------------------------------------------- HEALTHCHECK --interval=30s --timeout=5s \ CMD curl -f http://localhost/wp-admin/ || exit 1 EXPOSE 80 -# ------------------------------------------------- -# 📜 Custom entrypoint (calls official one first) -# ------------------------------------------------- +# ---- Custom entrypoint scripts ------------------------------------------- COPY entrypoint.sh /usr/local/bin/ -RUN chmod +x /usr/local/bin/entrypoint.sh - COPY entrypoint-theme.sh /usr/local/bin/ -RUN chmod +x /usr/local/bin/entrypoint-theme.sh +USER root +RUN chmod +x /usr/local/bin/entrypoint.sh /usr/local/bin/entrypoint-theme.sh +USER www-data -ENTRYPOINT ["entrypoint.sh"] +ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] CMD ["apache2-foreground"] diff --git a/docker-compose.yml b/docker-compose.yml index 44e9376..02fe54e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,10 +11,13 @@ services: WORDPRESS_DB_PASSWORD: wp_pass WORDPRESS_DB_NAME: wp_db volumes: - - ./wp-data/uploads:/var/www/html/wp-content/uploads + # Persist only the uploads folder – never overwrite the core + - uploads:/var/www/html/wp-content/uploads - ./config/php.ini:/usr/local/etc/php/conf.d/custom.ini:ro - ./theme/images:/var/www/html/wp-content/uploads/theme-images:ro -# entrypoint: ["/usr/local/bin/entrypoint-theme.sh"] + depends_on: + - db + db: image: mariadb:10.11 container_name: imc_db @@ -27,3 +30,5 @@ services: volumes: - ./db-data:/var/lib/mysql +volumes: + uploads: diff --git a/docker‑compose-override.yml b/docker‑compose-override.yml deleted file mode 100644 index ae3b8ed..0000000 --- a/docker‑compose-override.yml +++ /dev/null @@ -1 +0,0 @@ - image: wordpress:latest diff --git a/entrypoint-theme.sh b/entrypoint-theme.sh index 79e7a19..bc32139 100644 --- a/entrypoint-theme.sh +++ b/entrypoint-theme.sh @@ -1,43 +1,40 @@ #!/usr/bin/env bash -set -e +set -euo pipefail # ------------------------------------------------- -# Wait until WordPress core (wp-config.php) exists +# Wait for wp-config.php (core ready) # ------------------------------------------------- while [ ! -f /var/www/html/wp-config.php ]; do - echo "⏳ Waiting for WordPress core to be ready..." - sleep 2 + echo "⏳ Waiting for WordPress core to be ready..." + sleep 2 done # ------------------------------------------------- -# Download & install the custom theme +# Ensure theme directory ownership & permissions # ------------------------------------------------- -THEME_ZIP="https://codeberg.org/radioparalelo/indy-wp-theme/archive/main.zip" -TMP_DIR=$(mktemp -d) - -echo "🚀 Downloading Indy‑WP theme archive..." -curl -L "$THEME_ZIP" -o "$TMP_DIR/main.zip" - -echo "🔧 Extracting archive..." -unzip -q "$TMP_DIR/main.zip" -d "$TMP_DIR" - -EXTRACTED=$(find "$TMP_DIR" -maxdepth 1 -type d -name "indy-wp-theme*" | head -n1) -TARGET="/var/www/html/wp-content/themes/indywp" - -rm -rf "$TARGET" -mv "$EXTRACTED" "$TARGET" -rm -rf "$TMP_DIR" +chown -R www-data:www-data /var/www/html/wp-content/themes +chmod -R 755 /var/www/html/wp-content/themes # ------------------------------------------------- -# Activate the theme (force) +# Activate the theme that is already present # ------------------------------------------------- -su www-data -s /bin/bash -c "\ - wp theme activate indywp \ - --allow-root \ - --path=/var/www/html \ -" +THEME_SLUG="indy-wp-theme" -# ------------------------------------------------- -# Hand over to the official entrypoint (starts Apache) -# ------------------------------------------------- -exec /usr/local/bin/docker-entrypoint.sh "$@" +# If the theme folder is missing (e.g., a volume was mounted over it), +# fall back to the tarball that matches the build‑time tag. +if [ ! -d "/var/www/html/wp-content/themes/${THEME_SLUG}" ]; then + echo "⚠️ Theme folder missing – extracting the built‑in ${THEME_TAG} archive …" + # The archive was already extracted during the build, but if a volume + # overwrote the directory we can re‑extract it from the image’s copy: + tar -xzf "/tmp/indy-wp-theme.tar.gz" -C "/var/www/html/wp-content/themes" + chown -R www-data:www-data "/var/www/html/wp-content/themes/${THEME_SLUG}" + chmod -R 755 "/var/www/html/wp-content/themes/${THEME_SLUG}" +fi + +# Activate if not already active +if ! wp theme is-active "$THEME_SLUG" --allow-root --path=/var/www/html; then + echo "🚀 Activating Indy‑WP theme (${THEME_TAG}) …" + wp theme activate "$THEME_SLUG" \ + --allow-root \ + --path=/var/www/html +fi diff --git a/entrypoint.sh b/entrypoint.sh index 5b04585..540983b 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,33 +1,43 @@ #!/bin/bash -set -eu +set -euo pipefail # fail fast, treat unset vars as errors, propagate pipe failures # ------------------------------------------------- -# 0️⃣ Run the official WordPress entrypoint first +# 0️⃣ Source the official WordPress entrypoint # ------------------------------------------------- -docker-entrypoint.sh "$@" +# This runs the WordPress init *without* starting Apache. +. /usr/local/bin/docker-entrypoint.sh # ------------------------------------------------- -# 1️⃣ Verify core exists (optional safety net) +# 1️⃣ Verify core exists (safety net) # ------------------------------------------------- if [ ! -d /var/www/html/wp-admin ]; then - echo "❌ WordPress core missing after docker-entrypoint.sh" - exit 1 + echo "❌ WordPress core missing after docker-entrypoint.sh" + exit 1 fi # ------------------------------------------------- -# 2️⃣ wp-config.php (already created by the official entrypoint) +# 2️⃣ Ensure uploads folder is present & writable # ------------------------------------------------- -# No need to create it here – the official entrypoint does it. +mkdir -p /var/www/html/wp-content/uploads +chmod 775 /var/www/html/wp-content/uploads +chown -R www-data:www-data /var/www/html/wp-content/uploads # ------------------------------------------------- -# 3️⃣ Wait for DB to be ready (optional, the official entrypoint also does this) +# 3️⃣ Wait for DB to be ready (optional but cheap) # ------------------------------------------------- until wp db check --path=/var/www/html --allow-root > /dev/null 2>&1; do - echo "⏳ Waiting for database..." - sleep 2 + echo "⏳ Waiting for database..." + sleep 2 done # ------------------------------------------------- -# 4️⃣ Hand over to the theme‑installer (entrypoint-theme.sh will be called later) +# 4️⃣ Run the theme installer (once) +# ------------------------------------------------- +if ! wp theme is-installed indy-wp-theme --allow-root --path=/var/www/html; then + /usr/local/bin/entrypoint-theme.sh +fi + +# ------------------------------------------------- +# 5️⃣ Hand control back to the official entrypoint (starts Apache) # ------------------------------------------------- exec /usr/local/bin/docker-entrypoint.sh "$@" diff --git a/project-structure.txt b/project-structure.txt new file mode 100644 index 0000000..9fa7533 --- /dev/null +++ b/project-structure.txt @@ -0,0 +1,3949 @@ +. +├── composer.json +├── composer.lock +├── config +│   └── php.ini +├── config.json +├── db-data +│   ├── aria_log.00000001 +│   ├── aria_log_control +│   ├── ib_buffer_pool +│   ├── ibdata1 +│   ├── ib_logfile0 +│   ├── multi-master.info +│   ├── .my-healthcheck.cnf +│   ├── mysql [error opening dir] +│   ├── mysql_upgrade_info +│   ├── performance_schema [error opening dir] +│   ├── sys [error opening dir] +│   └── wp_db [error opening dir] +├── docker‑compose-override.yml +├── docker-compose.yml +├── Dockerfile +├── .dockerignore +├── entrypoint.sh +├── export +│   └── indymedia.WordPress.xml +├── functions.php +├── .git +│   ├── branches +│   ├── COMMIT_EDITMSG +│   ├── config +│   ├── description +│   ├── FETCH_HEAD +│   ├── HEAD +│   ├── hooks +│   │   ├── applypatch-msg.sample +│   │   ├── commit-msg.sample +│   │   ├── fsmonitor-watchman.sample +│   │   ├── post-update.sample +│   │   ├── pre-applypatch.sample +│   │   ├── pre-commit.sample +│   │   ├── pre-merge-commit.sample +│   │   ├── prepare-commit-msg.sample +│   │   ├── pre-push.sample +│   │   ├── pre-rebase.sample +│   │   ├── pre-receive.sample +│   │   ├── push-to-checkout.sample +│   │   └── update.sample +│   ├── index +│   ├── info +│   │   └── exclude +│   ├── logs +│   │   ├── HEAD +│   │   └── refs +│   │   ├── heads +│   │   │   └── main +│   │   └── remotes +│   │   └── origin +│   ├── objects +│   │   ├── 00 +│   │   │   └── ca2ec8c5a341a1c5c87a29d56eaf251ebab54c +│   │   ├── 02 +│   │   │   └── ec77ae66ece9a708e551f512af82af15d3713e +│   │   ├── 06 +│   │   │   ├── 27a4e0dc551ca674f7986ecc9a7861fa0558a4 +│   │   │   └── bb829da235c76a2f99972751ec51daf53c0d6b +│   │   ├── 09 +│   │   │   └── 6c6b8a15a66875c3be1315369e2a5e339b7ee2 +│   │   ├── 0e +│   │   │   └── ecfd62e46375eee3f285c179b1e42f264ff5de +│   │   ├── 0f +│   │   │   └── 2a0f10722d3fabffe8af5d5eed09866e25909a +│   │   ├── 11 +│   │   │   └── d4adbcc4b34e689558f74ea1d6f9cfa0ea1cdd +│   │   ├── 13 +│   │   │   └── b91baa2b21f4ba6fac47f42bcb13e1640018aa +│   │   ├── 14 +│   │   │   ├── 3879dacd166926fcc5b5d7787619e598e065d3 +│   │   │   └── 5f27b828d1d7435bd0fa7aeb767085c53364c9 +│   │   ├── 16 +│   │   │   └── 439d829b3cabd43356bc2bf387915f9622261f +│   │   ├── 17 +│   │   │   └── e4877e5d1fb1da4727c6ce5cd9adaa446e57ee +│   │   ├── 1e +│   │   │   ├── abb37813bda9f17178c513b25a5f393fb451b9 +│   │   │   └── fd8c6a9b4a946a9e6e39704f3ac2d58acd4a0d +│   │   ├── 20 +│   │   │   └── 675939192af85d9d7e7eda55f763c0a710349a +│   │   ├── 22 +│   │   │   └── 6779b46c2db39981c8bec92713a0076130eeef +│   │   ├── 23 +│   │   │   └── d5e365bcbe5509ad9ac363184e6685a10b4821 +│   │   ├── 24 +│   │   │   └── f0414c46b0e1a25218d5512cca17ef75542962 +│   │   ├── 25 +│   │   │   └── 77f0fb7fe1e1a8812029543fde5f32da9e28bf +│   │   ├── 26 +│   │   │   └── 06a59563136df3de8095f6759c91f762fbedd7 +│   │   ├── 27 +│   │   │   └── 4cecbc6e0e068ea4cfc34857eb62193f5ba9d1 +│   │   ├── 2a +│   │   │   ├── 5820f538587cc96e3e225ee63e26b720763246 +│   │   │   └── 5b2ff44b835f72984fe8b6b8596336eae1b67a +│   │   ├── 2b +│   │   │   └── 3aa9955b6853292f50cb81948ea4f34e9fd2bd +│   │   ├── 2c +│   │   │   └── 17ecc7d721ed1994d728555676bee8d0adde19 +│   │   ├── 2e +│   │   │   └── 58cb1dbd8425f1917fef74786e82858402679f +│   │   ├── 2f +│   │   │   └── 7726edf1bd8bf8ce3eafc0dc88a92942342922 +│   │   ├── 30 +│   │   │   └── 67c4cf646812c05009bde4927a6ed566561735 +│   │   ├── 35 +│   │   │   └── 154d14b50edc5df7ec16bccde22255258c7270 +│   │   ├── 36 +│   │   │   └── 2cc7cf2565e429c57bab7206617516af8d5b56 +│   │   ├── 37 +│   │   │   └── d9518e137c15f2a8f980cacf2efa5e1dcacfe5 +│   │   ├── 38 +│   │   │   ├── 05c48052b8cd28c6f099434e5c6eedf68bda96 +│   │   │   └── c2793a3a2f9d47759f19a382b516c5fecebff4 +│   │   ├── 3c +│   │   │   └── 58fb7a0c4b4f66dafc0b299ab623dc6dc79724 +│   │   ├── 3d +│   │   │   ├── 1c0a6e62dddbace5c98bba1b0a95804a99225d +│   │   │   └── d9a1dfee6af046ad991e8afd8c502002c6253c +│   │   ├── 41 +│   │   │   └── 391e3cefd1880436f54e595008541919e2c7cd +│   │   ├── 42 +│   │   │   └── 57e7da362c9175b9416a351ab83718b1631017 +│   │   ├── 45 +│   │   │   └── 81ebf3ee005eb2857f65af52efbe6ab186ac33 +│   │   ├── 4b +│   │   │   └── d3f100d4478d24043099d68b98bf9d6c3557d1 +│   │   ├── 4c +│   │   │   └── 0cad8d0e43a49de8f7dc1ecdbe5b2c83305f22 +│   │   ├── 50 +│   │   │   └── 5071fda3f373e970ee990710b950b7efd6748c +│   │   ├── 54 +│   │   │   └── cc9319e428c31666b6680cf378b697d26999c7 +│   │   ├── 55 +│   │   │   ├── 7791d267f71e47c79f2b9e8992cd406699fa61 +│   │   │   └── e3f16aaa4e9827c81420dc4dde607812987c62 +│   │   ├── 58 +│   │   │   ├── 70e2f84db57fa8f6579bab36ac83f4a2976fd6 +│   │   │   └── cffdde183f450f90bf335d08800531c2f73073 +│   │   ├── 59 +│   │   │   ├── 010914280cddd5bb9c77d80c1ebf3229a688af +│   │   │   └── 95fbb05c09dcc5461c4807f1f1fbe813b0d277 +│   │   ├── 5a +│   │   │   ├── 7f7c3be89325ad7de45f926e44a3fc8fee1ec5 +│   │   │   └── 85b566bb1a04f21d4b7fc49f390a7d750150da +│   │   ├── 5c +│   │   │   └── 587e69bcada7c520b8e04e4d301c4650e7af7b +│   │   ├── 5f +│   │   │   └── bb9b927c2d2822a665575b4170e8e983bd6878 +│   │   ├── 60 +│   │   │   └── 93a3b7023787231b542bf3ff5c5741cef161a8 +│   │   ├── 62 +│   │   │   ├── 463bd5a533a1a7ded42eada59e82d21a0d528a +│   │   │   ├── 6dd9364f12c6036ec8eae38c4fc73735b9ed23 +│   │   │   └── a6362d25b4a0f1f1769c383aab1ccacf0e9f64 +│   │   ├── 64 +│   │   │   └── 2f3b2c838bf6edaf124d15ccec61e03529817c +│   │   ├── 65 +│   │   │   └── ed2b7760785bc042e0de1ab6862b5c3e2841f3 +│   │   ├── 69 +│   │   │   └── b1740ae6717ca20d0037c970a214a9d213503f +│   │   ├── 6b +│   │   │   └── 1f0a45f4781d95269778a860ec9d66f680588c +│   │   ├── 6c +│   │   │   └── 135c32d4272357d3b06ef5a204ee560e2306c6 +│   │   ├── 6d +│   │   │   └── 64153e70100b4bd4cc773915bd95a887d4cf05 +│   │   ├── 6f +│   │   │   ├── 1c16615503d5cceebefdb101b79c0697aeab2f +│   │   │   └── f5fddd8565c4bb2f0892f83257d322235c3ddf +│   │   ├── 72 +│   │   │   └── 94199bbd58ec7697af3c3475c6a928296fd75e +│   │   ├── 74 +│   │   │   └── 4b1f80b2d48f2aff73c9bfa04d2ad6933eeb20 +│   │   ├── 76 +│   │   │   └── 6ebb5c0244494f23b1527871db09c17907fb18 +│   │   ├── 7f +│   │   │   └── bc0fcc605c86009e3c8da3bbfdb2b021c7a377 +│   │   ├── 81 +│   │   │   ├── 459c04b1a8d1c5093e812196a20c3bad50bb12 +│   │   │   └── 54062c8f19b46e80a85f3fc54dad46d1f8b2aa +│   │   ├── 82 +│   │   │   └── 5086c86bc8e00cc900855531aaa7d3f973c906 +│   │   ├── 83 +│   │   │   └── 79e61dcdb83d07c14ac2d8947c748b4792e259 +│   │   ├── 86 +│   │   │   ├── 436a8812a1d9c7b27ad03a9e727ac1ee461ea8 +│   │   │   └── e2bb27524620e9962f8cc032db1e915241957c +│   │   ├── 88 +│   │   │   ├── 897c859d74987b3ba5a430a3d51fe177d87b2d +│   │   │   └── c4e125a9d01069404350f0da8f1874ca43f679 +│   │   ├── 8a +│   │   │   └── 8b4dd22a3cca606717c4217d822898f0983079 +│   │   ├── 8b +│   │   │   └── 17617a201ada271fb5ed9abb80b09b8e199c03 +│   │   ├── 8d +│   │   │   └── 6dc7caa0fa8c3824d907fd1b60213b8371f33f +│   │   ├── 8e +│   │   │   └── a3fa03cbf71e11b8aafd5dd9330e7b6f1b5837 +│   │   ├── 8f +│   │   │   ├── 4a170473ed8c8ac502cb3a90418a4c3c9eed6f +│   │   │   └── ff352bcbb77edb9c1691fdb1687d80ae7e67ab +│   │   ├── 90 +│   │   │   └── 5cbca57d1ee9e473b666aca3bce732fdbbea83 +│   │   ├── 95 +│   │   │   └── 4620c29b4f78afe8b73885b955ac97467a688a +│   │   ├── 96 +│   │   │   └── 63b0f36023521cf302a8d4ed89ce2cad40b037 +│   │   ├── 98 +│   │   │   └── f85b5c26ccc491c1a2309f2c70c28e537e40f6 +│   │   ├── 99 +│   │   │   └── 9b13e427149549f894f21457dd4dcc818aa3cf +│   │   ├── 9b +│   │   │   └── 7ace3257cf61582ee5b0dfbe81b3bd6bd82491 +│   │   ├── a3 +│   │   │   └── 7985afe1e694eb7e8b55654d468d9e7f094dcb +│   │   ├── aa +│   │   │   └── 1bb6730ac9e9a4ab183e98da245cd36dcf0a54 +│   │   ├── ac +│   │   │   ├── 150b9788eac13e28e109c1723da369d8eb33d1 +│   │   │   ├── 21fb6c2864f0f0849ab0ffe634a9b74c51a6eb +│   │   │   ├── 312cb3107101a3afb5e49ccda72dc34643e2cc +│   │   │   └── 787ec274229b4dd7c3969a1b6b53b022ef0465 +│   │   ├── ad +│   │   │   └── 6c6cd12cb59324eec38b6947d5c9ae1fc17ce4 +│   │   ├── ae +│   │   │   └── 3b8ed9f7167561dbd4b15042231b35009d9f6b +│   │   ├── b3 +│   │   │   └── 5dc70a7a163012b1a53c0da042aaf6d98e301d +│   │   ├── b5 +│   │   │   └── 33d37b396b5ed45fb11459c8181e37bfcbf35b +│   │   ├── b6 +│   │   │   └── 97eb6a605b921a1869614ab6517051126a62e3 +│   │   ├── b9 +│   │   │   └── 9d881bb33994a9f8725398b49462c16267a2d6 +│   │   ├── bc +│   │   │   ├── 0753dc9e50772a650a2086d5419156936cba85 +│   │   │   ├── 14d192069b8356d6124e3ce024bbb87e07741e +│   │   │   └── 4429d4897cc8a0f8cf3b4257ea73a834c1f6f9 +│   │   ├── bd +│   │   │   └── 9640c9d23d43d722efe4bd8f21cd165fc3896f +│   │   ├── bf +│   │   │   └── bcd26b5593b23de315277a735638b1bd0be1c0 +│   │   ├── c0 +│   │   │   └── da32f322df448f461b0ff0779ef3d401950d09 +│   │   ├── c2 +│   │   │   └── 3900092d2f58b697edbf36b9ffe3bc3eab7203 +│   │   ├── c4 +│   │   │   ├── 256740193962cc8fa9a9386ee3fe28586f7f9b +│   │   │   └── b344a596d8f923da79255fbcae933ba3b87752 +│   │   ├── c7 +│   │   │   └── fbd91d918ec028e218edd570be6c7bebdb6307 +│   │   ├── c9 +│   │   │   └── b37a8ad019a59e44494b3e5a1379283cd0052b +│   │   ├── ca +│   │   │   └── 5dd5d917d5d1ddafeca3575bd46da710f0d3ab +│   │   ├── d1 +│   │   │   └── 07a8ca8fb2a25e5e87d97e1f5596f00ad7f73c +│   │   ├── d2 +│   │   │   └── ee0421b203ba2a5dfab7cb12fa501c1a2fd758 +│   │   ├── d3 +│   │   │   ├── 01c482b26b8f525a137a235bd256abba24950a +│   │   │   └── 3eccd2dce15763de68953a8e45073662499920 +│   │   ├── d6 +│   │   │   ├── 069811aff0ef9e69c083366d1f208e5f41fe4d +│   │   │   └── 4c669c7589d3a886682dbd1f3c83b716a420f5 +│   │   ├── d8 +│   │   │   ├── c8dbd9c99015d2eebf9603c78cf068a75e4a1a +│   │   │   └── edaadfddd249fa789c1850db980b008e5f2241 +│   │   ├── d9 +│   │   │   └── eb663e847b0730af6b071f31143cf5231a9567 +│   │   ├── da +│   │   │   ├── 2ec34d72d100d7fb53889571af518a4d3bca42 +│   │   │   └── ca819b95e55a41d2f70ab84dfd222f8cfe90eb +│   │   ├── db +│   │   │   └── 4d539f02d9dfbe3ecfb98744a36370479b0c3f +│   │   ├── dd +│   │   │   └── bad72f5284630d48db305a126d76b9af1b5f75 +│   │   ├── e1 +│   │   │   ├── 02cc7324174853a66228d7c772ccc5d79f69d1 +│   │   │   └── 793b67f7b1cc42c3e564ff445fac904b99660d +│   │   ├── e3 +│   │   │   ├── 0d03ebc392e41c74b7ba97f7841ca43827c655 +│   │   │   └── e26b3aa40dfcc8e09dcad0fd430292b0fe44ba +│   │   ├── e6 +│   │   │   └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +│   │   ├── ea +│   │   │   └── cb84d726cbc5a9340c31ec29afd93c777fea71 +│   │   ├── ec +│   │   │   └── e49d5053bb9c722d2e4c8c10583c04bf3289b0 +│   │   ├── ed +│   │   │   └── c194b8c5b20f439ac399eb3135ab97e9c310e8 +│   │   ├── ee +│   │   │   ├── 08809fa9c6a8eb83694532dade655aec9c19c9 +│   │   │   └── 7d6a54e91479b8b51312c8f603a2c10d53d1ee +│   │   ├── ef +│   │   │   └── a093e14dd26c7b1376660fdf6ad279fad06273 +│   │   ├── f0 +│   │   │   └── 8ebee671e7288e789e815ae6a3e5689f393ad9 +│   │   ├── f1 +│   │   │   └── 16438470ba9c59a2b8705e8f6e98013d2b7997 +│   │   ├── f2 +│   │   │   └── 473f9cce31f403f67588f01c7d70a1127db927 +│   │   ├── f6 +│   │   │   └── eaa0e641c989d4c6518be8fe83a7bd44f8da6c +│   │   ├── f7 +│   │   │   └── 71f5de779ca6b86c98e32017e744df17eb71cf +│   │   ├── f9 +│   │   │   ├── 1207cfdf7b703ec9678c8beb4409ba9868552f +│   │   │   └── 928fb8b5151da9453e8421c08007060344677c +│   │   ├── fc +│   │   │   ├── 204f701a12bfe1bc1f8dd5ec099b0339e3964e +│   │   │   └── dab8850b2af3104dee91e45d389744b995eaa3 +│   │   ├── ff +│   │   │   └── 8eaae68140626a7922ed15aabee61570056a44 +│   │   ├── info +│   │   └── pack +│   ├── ORIG_HEAD +│   └── refs +│   ├── heads +│   │   └── main +│   ├── remotes +│   │   └── origin +│   │   └── main +│   └── tags +├── .gitignore +├── indy-wp +│   └── indywp.zip +├── mu-plugins +├── plugin-list.txt +├── project-structure.txt +├── README.md +├── src +├── style.css +├── theme +│   └── images +├── vendor +│   ├── autoload.php +│   └── composer +│   ├── autoload_classmap.php +│   ├── autoload_namespaces.php +│   ├── autoload_psr4.php +│   ├── autoload_real.php +│   ├── autoload_static.php +│   ├── ClassLoader.php +│   ├── installed.json +│   ├── installed.php +│   ├── InstalledVersions.php +│   ├── installers +│   │   ├── composer.json +│   │   ├── .github +│   │   │   └── workflows +│   │   ├── LICENSE +│   │   └── src +│   │   ├── bootstrap.php +│   │   └── Composer +│   ├── LICENSE +│   └── platform_check.php +├── wp-content +│   ├── plugins +│   │   ├── activitypub +│   │   │   ├── activitypub.php +│   │   │   ├── assets +│   │   │   │   ├── css +│   │   │   │   ├── img +│   │   │   │   └── js +│   │   │   ├── build +│   │   │   │   ├── followers +│   │   │   │   ├── follow-me +│   │   │   │   └── remote-reply +│   │   │   ├── includes +│   │   │   │   ├── activity +│   │   │   │   ├── class-activity-dispatcher.php +│   │   │   │   ├── class-activitypub.php +│   │   │   │   ├── class-admin.php +│   │   │   │   ├── class-blocks.php +│   │   │   │   ├── class-comment.php +│   │   │   │   ├── class-debug.php +│   │   │   │   ├── class-handler.php +│   │   │   │   ├── class-hashtag.php +│   │   │   │   ├── class-health-check.php +│   │   │   │   ├── class-http.php +│   │   │   │   ├── class-mention.php +│   │   │   │   ├── class-migration.php +│   │   │   │   ├── class-notification.php +│   │   │   │   ├── class-scheduler.php +│   │   │   │   ├── class-shortcodes.php +│   │   │   │   ├── class-signature.php +│   │   │   │   ├── class-webfinger.php +│   │   │   │   ├── collection +│   │   │   │   ├── compat.php +│   │   │   │   ├── debug.php +│   │   │   │   ├── functions.php +│   │   │   │   ├── handler +│   │   │   │   ├── help.php +│   │   │   │   ├── model +│   │   │   │   ├── rest +│   │   │   │   ├── table +│   │   │   │   └── transformer +│   │   │   ├── integration +│   │   │   │   ├── class-buddypress.php +│   │   │   │   ├── class-enable-mastodon-apps.php +│   │   │   │   ├── class-jetpack.php +│   │   │   │   ├── class-nodeinfo.php +│   │   │   │   ├── class-opengraph.php +│   │   │   │   └── class-webfinger.php +│   │   │   ├── LICENSE +│   │   │   ├── readme.txt +│   │   │   └── templates +│   │   │   ├── admin-header.php +│   │   │   ├── author-json.php +│   │   │   ├── blog-json.php +│   │   │   ├── blog-user-followers-list.php +│   │   │   ├── comment-json.php +│   │   │   ├── post-json.php +│   │   │   ├── settings.php +│   │   │   ├── user-followers-list.php +│   │   │   ├── user-settings.php +│   │   │   └── welcome.php +│   │   ├── antispam-bee +│   │   │   ├── antispam_bee.php +│   │   │   ├── CHANGELOG.md +│   │   │   ├── css +│   │   │   │   ├── dashboard.css +│   │   │   │   ├── dashboard.min.css +│   │   │   │   ├── styles.css +│   │   │   │   └── styles.min.css +│   │   │   ├── inc +│   │   │   │   ├── columns.class.php +│   │   │   │   └── gui.class.php +│   │   │   ├── js +│   │   │   │   ├── dashboard.js +│   │   │   │   ├── dashboard.min.js +│   │   │   │   ├── raphael.helper.js +│   │   │   │   ├── raphael.helper.min.js +│   │   │   │   ├── raphael.min.js +│   │   │   │   ├── scripts.js +│   │   │   │   └── scripts.min.js +│   │   │   ├── LICENSE.txt +│   │   │   └── readme.txt +│   │   ├── archiveo-importer-wayback +│   │   │   ├── archiveo-importer-wayback.php +│   │   │   ├── assets +│   │   │   │   ├── archiveo.css +│   │   │   │   ├── archiveo.js +│   │   │   │   └── waybackpress-editor.js +│   │   │   ├── languages +│   │   │   └── readme.txt +│   │   ├── easyfonts +│   │   │   ├── assets +│   │   │   │   └── style.css +│   │   │   ├── easyfonts.php +│   │   │   ├── inc +│   │   │   │   ├── notices.php +│   │   │   │   └── options.php +│   │   │   ├── lib +│   │   │   │   └── simple_html_dom.php +│   │   │   └── readme.txt +│   │   ├── embed-privacy +│   │   │   ├── assets +│   │   │   │   ├── images +│   │   │   │   ├── js +│   │   │   │   └── style +│   │   │   ├── CONTRIBUTING.md +│   │   │   ├── embed-privacy.php +│   │   │   ├── .gitignore +│   │   │   ├── inc +│   │   │   │   ├── admin +│   │   │   │   ├── class-admin.php +│   │   │   │   ├── class-embed-privacy.php +│   │   │   │   ├── class-embed-privacy-widget-output-filter.php +│   │   │   │   ├── class-fields.php +│   │   │   │   ├── class-frontend.php +│   │   │   │   ├── class-migration.php +│   │   │   │   ├── class-system.php +│   │   │   │   ├── class-thumbnails.php +│   │   │   │   ├── data +│   │   │   │   ├── embed +│   │   │   │   ├── handler +│   │   │   │   ├── integration +│   │   │   │   └── thumbnail +│   │   │   ├── LICENSE.md +│   │   │   ├── README.md +│   │   │   ├── readme.txt +│   │   │   ├── SECURITY.md +│   │   │   └── uninstall.php +│   │   ├── exif-remover +│   │   │   ├── exif-remover.php +│   │   │   └── readme.txt +│   │   ├── frontend-post-submission-manager-lite +│   │   │   ├── assets +│   │   │   │   ├── css +│   │   │   │   ├── fontawesome +│   │   │   │   ├── font-face +│   │   │   │   ├── images +│   │   │   │   └── js +│   │   │   ├── frontend-post-submission-manager-lite.php +│   │   │   ├── includes +│   │   │   │   ├── classes +│   │   │   │   ├── cores +│   │   │   │   └── views +│   │   │   ├── index.php +│   │   │   ├── languages +│   │   │   └── readme.txt +│   │   ├── indieweb +│   │   │   ├── .gitattributes +│   │   │   ├── includes +│   │   │   │   ├── class-general-settings.php +│   │   │   │   ├── class-hcard-author-widget.php +│   │   │   │   ├── class-hcard-user.php +│   │   │   │   ├── class-integrations.php +│   │   │   │   ├── class-plugin-installer.php +│   │   │   │   ├── class-relme-domain-icon-map.php +│   │   │   │   ├── class-relme-widget.php +│   │   │   │   ├── getting-started.php +│   │   │   │   └── simple-icons.php +│   │   │   ├── indieweb.php +│   │   │   ├── readme.md +│   │   │   ├── static +│   │   │   │   ├── css +│   │   │   │   ├── genericons-neue +│   │   │   │   ├── img +│   │   │   │   ├── js +│   │   │   │   └── svg +│   │   │   ├── templates +│   │   │   │   └── h-card.php +│   │   │   └── .wp-env.json +│   │   ├── lh-wayback-machine +│   │   │   ├── index.php +│   │   │   ├── languages +│   │   │   ├── lh-wayback-machine.php +│   │   │   └── readme.txt +│   │   ├── og +│   │   │   ├── index.php +│   │   │   ├── LICENSE +│   │   │   ├── og.php +│   │   │   └── readme.txt +│   │   ├── pretty-rss-feeds +│   │   │   ├── pretty-rss.php +│   │   │   ├── readme.txt +│   │   │   └── xslt +│   │   │   └── pretty-feed.xsl +│   │   ├── remove-ip +│   │   │   ├── readme.txt +│   │   │   └── remove-ip.php +│   │   ├── safe-paste +│   │   │   ├── license.txt +│   │   │   ├── readme.txt +│   │   │   └── safe-paste.php +│   │   ├── syndication-links +│   │   │   ├── changelog.md +│   │   │   ├── css +│   │   │   │   ├── syn-admin.min.css +│   │   │   │   ├── syn-admin.min.css.map +│   │   │   │   ├── syn-bw-large.min.css +│   │   │   │   ├── syn-bw-large.min.css.map +│   │   │   │   ├── syn-bw-medium.min.css +│   │   │   │   ├── syn-bw-medium.min.css.map +│   │   │   │   ├── syn-bw.min.css +│   │   │   │   ├── syn-bw.min.css.map +│   │   │   │   ├── syn.css +│   │   │   │   ├── syn.css.map +│   │   │   │   ├── syn-large.min.css +│   │   │   │   ├── syn-large.min.css.map +│   │   │   │   ├── syn-medium.min.css +│   │   │   │   ├── syn-medium.min.css.map +│   │   │   │   ├── syn.min.css +│   │   │   │   ├── syn.min.css.map +│   │   │   │   ├── syn-minimal.min.css +│   │   │   │   └── syn-minimal.min.css.map +│   │   │   ├── .editorconfig +│   │   │   ├── .gitattributes +│   │   │   ├── .gitmodules +│   │   │   ├── includes +│   │   │   │   ├── apis +│   │   │   │   ├── class-post-syndication.php +│   │   │   │   ├── class-social-plugins.php +│   │   │   │   ├── class-syn-config.php +│   │   │   │   ├── class-syndication-provider.php +│   │   │   │   ├── class-syn-link-domain-icon-map.php +│   │   │   │   ├── class-syn-meta.php +│   │   │   │   ├── class-widget-original-of.php +│   │   │   │   ├── compat-functions.php +│   │   │   │   ├── functions.php +│   │   │   │   ├── micropub +│   │   │   │   ├── simple-icons.php +│   │   │   │   └── webmentions +│   │   │   ├── js +│   │   │   │   ├── password.js +│   │   │   │   └── synlinks.js +│   │   │   ├── languages +│   │   │   │   └── syndication-links.pot +│   │   │   ├── LICENSE +│   │   │   ├── readme.txt +│   │   │   ├── svgs +│   │   │   │   ├── bookwyrm.svg +│   │   │   │   ├── genericons-neue-license.md +│   │   │   │   ├── indieweb.svg +│   │   │   │   ├── nostr.svg +│   │   │   │   ├── simple-icons +│   │   │   │   └── simple-icons-license.md +│   │   │   └── syndication-links.php +│   │   ├── unpredictable-image-filenames +│   │   │   ├── readme.txt +│   │   │   └── unpredictable-image-filenames.php +│   │   ├── webmention +│   │   │   ├── assets +│   │   │   │   ├── css +│   │   │   │   └── img +│   │   │   ├── build +│   │   │   │   └── editor-plugin +│   │   │   ├── includes +│   │   │   │   ├── class-autoloader.php +│   │   │   │   ├── class-avatar.php +│   │   │   │   ├── class-avatar-store.php +│   │   │   │   ├── class-block.php +│   │   │   │   ├── class-cli.php +│   │   │   │   ├── class-comment.php +│   │   │   │   ├── class-comment-type.php +│   │   │   │   ├── class-comment-walker.php +│   │   │   │   ├── class-discovery.php +│   │   │   │   ├── class-handler.php +│   │   │   │   ├── class-http-gone.php +│   │   │   │   ├── class-receiver.php +│   │   │   │   ├── class-request.php +│   │   │   │   ├── class-response.php +│   │   │   │   ├── class-sender.php +│   │   │   │   ├── class-tools.php +│   │   │   │   ├── class-upgrade.php +│   │   │   │   ├── class-vouch.php +│   │   │   │   ├── class-webmention.php +│   │   │   │   ├── debug.php +│   │   │   │   ├── entity +│   │   │   │   ├── functions.php +│   │   │   │   ├── handler +│   │   │   │   └── wp-admin +│   │   │   ├── languages +│   │   │   │   └── webmention.pot +│   │   │   ├── libraries +│   │   │   │   ├── emoji-detector +│   │   │   │   └── mf2 +│   │   │   ├── readme.md +│   │   │   ├── templates +│   │   │   │   ├── api-message.php +│   │   │   │   ├── comment-form.php +│   │   │   │   ├── comment.php +│   │   │   │   ├── comments.php +│   │   │   │   ├── edit-comment-form.php +│   │   │   │   ├── edit-post-form.php +│   │   │   │   ├── endpoint-form.php +│   │   │   │   ├── settings.php +│   │   │   │   └── tools.php +│   │   │   ├── uninstall.php +│   │   │   ├── webmention.php +│   │   │   └── .wp-env.json +│   │   └── wp-super-cache +│   │   ├── advanced-cache.php +│   │   ├── assets +│   │   │   ├── automattic-airline.svg +│   │   │   ├── boost-install-card-main-2x.png +│   │   │   ├── boost-install-card-main.png +│   │   │   ├── jetpack-colors.svg +│   │   │   ├── jetpack-logo.svg +│   │   │   └── super-cache-icon.png +│   │   ├── CHANGELOG.md +│   │   ├── composer.json +│   │   ├── composer.lock +│   │   ├── inc +│   │   │   ├── boost.php +│   │   │   ├── delete-cache-button.js +│   │   │   ├── delete-cache-button.php +│   │   │   └── preload-notification.php +│   │   ├── js +│   │   │   ├── admin.js +│   │   │   └── preload-notification.js +│   │   ├── languages +│   │   │   ├── wp-super-cache-be_BY.mo +│   │   │   ├── wp-super-cache-be_BY.po +│   │   │   ├── wp-super-cache-de_DE.mo +│   │   │   ├── wp-super-cache-de_DE.po +│   │   │   ├── wp-super-cache-es_ES.mo +│   │   │   ├── wp-super-cache-es_ES.po +│   │   │   ├── wp-super-cache-fr_FR.mo +│   │   │   ├── wp-super-cache-fr_FR.po +│   │   │   ├── wp-super-cache-it_IT.mo +│   │   │   ├── wp-super-cache-it_IT.po +│   │   │   ├── wp-super-cache-ja.mo +│   │   │   ├── wp-super-cache-ja.po +│   │   │   ├── wp-super-cache-lt_LT.mo +│   │   │   ├── wp-super-cache-lt_LT.po +│   │   │   ├── wp-super-cache-ro_RO.mo +│   │   │   ├── wp-super-cache-ro_RO.po +│   │   │   ├── wp-super-cache-ru_RU.mo +│   │   │   ├── wp-super-cache-ru_RU.po +│   │   │   ├── wp-super-cache-sr_RS.mo +│   │   │   ├── wp-super-cache-sr_RS.po +│   │   │   ├── wp-super-cache-sv_SE.mo +│   │   │   ├── wp-super-cache-sv_SE.po +│   │   │   ├── wp-super-cache-tr_TR.mo +│   │   │   ├── wp-super-cache-tr_TR.po +│   │   │   ├── wp-super-cache-ua_UA.mo +│   │   │   ├── wp-super-cache-ua_UA.po +│   │   │   ├── wp-super-cache-uk.mo +│   │   │   ├── wp-super-cache-uk.po +│   │   │   ├── wp-super-cache-zh_CN.mo +│   │   │   ├── wp-super-cache-zh_CN.po +│   │   │   ├── wp-super-cache-zh_TW.mo +│   │   │   └── wp-super-cache-zh_TW.po +│   │   ├── LICENSE.txt +│   │   ├── ossdl-cdn.php +│   │   ├── package.json +│   │   ├── partials +│   │   │   ├── advanced.php +│   │   │   ├── debug.php +│   │   │   ├── easy.php +│   │   │   ├── lockdown.php +│   │   │   ├── preload.php +│   │   │   ├── rejected_user_agents.php +│   │   │   ├── restore.php +│   │   │   └── tracking_parameters.php +│   │   ├── plugins +│   │   │   ├── awaitingmoderation.php +│   │   │   ├── badbehaviour.php +│   │   │   ├── domain-mapping.php +│   │   │   ├── dynamic-cache-test.php +│   │   │   ├── jetpack.php +│   │   │   ├── multisite.php +│   │   │   └── wptouch.php +│   │   ├── README.md +│   │   ├── readme.txt +│   │   ├── rest +│   │   │   ├── class.wp-super-cache-rest-delete-cache.php +│   │   │   ├── class.wp-super-cache-rest-get-cache.php +│   │   │   ├── class.wp-super-cache-rest-get-plugins.php +│   │   │   ├── class.wp-super-cache-rest-get-settings.php +│   │   │   ├── class.wp-super-cache-rest-get-stats.php +│   │   │   ├── class.wp-super-cache-rest-get-status.php +│   │   │   ├── class.wp-super-cache-rest-preload.php +│   │   │   ├── class.wp-super-cache-rest-test-cache.php +│   │   │   ├── class.wp-super-cache-rest-update-plugins.php +│   │   │   ├── class.wp-super-cache-rest-update-settings.php +│   │   │   ├── class.wp-super-cache-settings-map.php +│   │   │   └── load.php +│   │   ├── SECURITY.md +│   │   ├── src +│   │   │   └── example.php +│   │   ├── styling +│   │   │   └── dashboard.css +│   │   ├── vendor +│   │   │   ├── autoload.php +│   │   │   ├── automattic +│   │   │   └── composer +│   │   ├── wp-cache-base.php +│   │   ├── wp-cache-config-sample.php +│   │   ├── wp-cache-phase1.php +│   │   ├── wp-cache-phase2.php +│   │   └── wp-cache.php +│   └── themes +└── wp-data + ├── .htaccess + ├── index.php + ├── license.txt + ├── readme.html + ├── uploads + │   ├── 2026 + │   │   └── 03 + │   │   ├── 70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5-150x150.jpg + │   │   ├── 70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5-300x243.jpg + │   │   ├── 70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5-768x621.jpg + │   │   ├── 70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg + │   │   ├── imcbannerlogo-150x124.gif + │   │   ├── imcbannerlogo-300x74.gif + │   │   ├── imcbannerlogo.gif + │   │   ├── imclogo2-135x150.gif + │   │   ├── imclogo2.gif + │   │   ├── indymedia-features.png + │   │   ├── indywp.zip + │   │   └── rss-feed.png + │   └── theme-images + ├── wp-activate.php + ├── wp-admin + │   ├── about.php + │   ├── admin-ajax.php + │   ├── admin-footer.php + │   ├── admin-functions.php + │   ├── admin-header.php + │   ├── admin.php + │   ├── admin-post.php + │   ├── async-upload.php + │   ├── authorize-application.php + │   ├── comment.php + │   ├── contribute.php + │   ├── credits.php + │   ├── css + │   │   ├── about.css + │   │   ├── about.min.css + │   │   ├── about-rtl.css + │   │   ├── about-rtl.min.css + │   │   ├── admin-menu.css + │   │   ├── admin-menu.min.css + │   │   ├── admin-menu-rtl.css + │   │   ├── admin-menu-rtl.min.css + │   │   ├── code-editor.css + │   │   ├── code-editor.min.css + │   │   ├── code-editor-rtl.css + │   │   ├── code-editor-rtl.min.css + │   │   ├── color-picker.css + │   │   ├── color-picker.min.css + │   │   ├── color-picker-rtl.css + │   │   ├── color-picker-rtl.min.css + │   │   ├── colors + │   │   │   ├── _admin.scss + │   │   │   ├── blue + │   │   │   ├── coffee + │   │   │   ├── ectoplasm + │   │   │   ├── light + │   │   │   ├── midnight + │   │   │   ├── _mixins.scss + │   │   │   ├── modern + │   │   │   ├── ocean + │   │   │   ├── sunrise + │   │   │   ├── _tokens.scss + │   │   │   └── _variables.scss + │   │   ├── common.css + │   │   ├── common.min.css + │   │   ├── common-rtl.css + │   │   ├── common-rtl.min.css + │   │   ├── customize-controls.css + │   │   ├── customize-controls.min.css + │   │   ├── customize-controls-rtl.css + │   │   ├── customize-controls-rtl.min.css + │   │   ├── customize-nav-menus.css + │   │   ├── customize-nav-menus.min.css + │   │   ├── customize-nav-menus-rtl.css + │   │   ├── customize-nav-menus-rtl.min.css + │   │   ├── customize-widgets.css + │   │   ├── customize-widgets.min.css + │   │   ├── customize-widgets-rtl.css + │   │   ├── customize-widgets-rtl.min.css + │   │   ├── dashboard.css + │   │   ├── dashboard.min.css + │   │   ├── dashboard-rtl.css + │   │   ├── dashboard-rtl.min.css + │   │   ├── deprecated-media.css + │   │   ├── deprecated-media.min.css + │   │   ├── deprecated-media-rtl.css + │   │   ├── deprecated-media-rtl.min.css + │   │   ├── edit.css + │   │   ├── edit.min.css + │   │   ├── edit-rtl.css + │   │   ├── edit-rtl.min.css + │   │   ├── farbtastic.css + │   │   ├── farbtastic.min.css + │   │   ├── farbtastic-rtl.css + │   │   ├── farbtastic-rtl.min.css + │   │   ├── forms.css + │   │   ├── forms.min.css + │   │   ├── forms-rtl.css + │   │   ├── forms-rtl.min.css + │   │   ├── install.css + │   │   ├── install.min.css + │   │   ├── install-rtl.css + │   │   ├── install-rtl.min.css + │   │   ├── l10n.css + │   │   ├── l10n.min.css + │   │   ├── l10n-rtl.css + │   │   ├── l10n-rtl.min.css + │   │   ├── list-tables.css + │   │   ├── list-tables.min.css + │   │   ├── list-tables-rtl.css + │   │   ├── list-tables-rtl.min.css + │   │   ├── login.css + │   │   ├── login.min.css + │   │   ├── login-rtl.css + │   │   ├── login-rtl.min.css + │   │   ├── media.css + │   │   ├── media.min.css + │   │   ├── media-rtl.css + │   │   ├── media-rtl.min.css + │   │   ├── nav-menus.css + │   │   ├── nav-menus.min.css + │   │   ├── nav-menus-rtl.css + │   │   ├── nav-menus-rtl.min.css + │   │   ├── revisions.css + │   │   ├── revisions.min.css + │   │   ├── revisions-rtl.css + │   │   ├── revisions-rtl.min.css + │   │   ├── site-health.css + │   │   ├── site-health.min.css + │   │   ├── site-health-rtl.css + │   │   ├── site-health-rtl.min.css + │   │   ├── site-icon.css + │   │   ├── site-icon.min.css + │   │   ├── site-icon-rtl.css + │   │   ├── site-icon-rtl.min.css + │   │   ├── themes.css + │   │   ├── themes.min.css + │   │   ├── themes-rtl.css + │   │   ├── themes-rtl.min.css + │   │   ├── view-transitions.css + │   │   ├── view-transitions.min.css + │   │   ├── widgets.css + │   │   ├── widgets.min.css + │   │   ├── widgets-rtl.css + │   │   ├── widgets-rtl.min.css + │   │   ├── wp-admin.css + │   │   ├── wp-admin.min.css + │   │   ├── wp-admin-rtl.css + │   │   └── wp-admin-rtl.min.css + │   ├── custom-background.php + │   ├── custom-header.php + │   ├── customize.php + │   ├── edit-comments.php + │   ├── edit-form-advanced.php + │   ├── edit-form-blocks.php + │   ├── edit-form-comment.php + │   ├── edit-link-form.php + │   ├── edit.php + │   ├── edit-tag-form.php + │   ├── edit-tags.php + │   ├── erase-personal-data.php + │   ├── export-personal-data.php + │   ├── export.php + │   ├── font-library.php + │   ├── freedoms.php + │   ├── images + │   │   ├── about-release-badge.svg + │   │   ├── about-release-logo.svg + │   │   ├── about-texture.png + │   │   ├── align-center-2x.png + │   │   ├── align-center.png + │   │   ├── align-left-2x.png + │   │   ├── align-left.png + │   │   ├── align-none-2x.png + │   │   ├── align-none.png + │   │   ├── align-right-2x.png + │   │   ├── align-right.png + │   │   ├── arrows-2x.png + │   │   ├── arrows.png + │   │   ├── browser.png + │   │   ├── browser-rtl.png + │   │   ├── bubble_bg-2x.gif + │   │   ├── bubble_bg.gif + │   │   ├── comment-grey-bubble-2x.png + │   │   ├── comment-grey-bubble.png + │   │   ├── contribute-code.svg + │   │   ├── contribute-main.svg + │   │   ├── contribute-no-code.svg + │   │   ├── dashboard-background.svg + │   │   ├── date-button-2x.gif + │   │   ├── date-button.gif + │   │   ├── freedom-1.svg + │   │   ├── freedom-2.svg + │   │   ├── freedom-3.svg + │   │   ├── freedom-4.svg + │   │   ├── generic.png + │   │   ├── icons32-2x.png + │   │   ├── icons32.png + │   │   ├── icons32-vs-2x.png + │   │   ├── icons32-vs.png + │   │   ├── imgedit-icons-2x.png + │   │   ├── imgedit-icons.png + │   │   ├── list-2x.png + │   │   ├── list.png + │   │   ├── loading.gif + │   │   ├── marker.png + │   │   ├── mask.png + │   │   ├── media-button-2x.png + │   │   ├── media-button-image.gif + │   │   ├── media-button-music.gif + │   │   ├── media-button-other.gif + │   │   ├── media-button.png + │   │   ├── media-button-video.gif + │   │   ├── menu-2x.png + │   │   ├── menu.png + │   │   ├── menu-vs-2x.png + │   │   ├── menu-vs.png + │   │   ├── no.png + │   │   ├── post-formats32.png + │   │   ├── post-formats32-vs.png + │   │   ├── post-formats.png + │   │   ├── post-formats-vs.png + │   │   ├── privacy.svg + │   │   ├── resize-2x.gif + │   │   ├── resize.gif + │   │   ├── resize-rtl-2x.gif + │   │   ├── resize-rtl.gif + │   │   ├── se.png + │   │   ├── sort-2x.gif + │   │   ├── sort.gif + │   │   ├── spinner-2x.gif + │   │   ├── spinner.gif + │   │   ├── stars-2x.png + │   │   ├── stars.png + │   │   ├── wheel.png + │   │   ├── w-logo-blue.png + │   │   ├── w-logo-white.png + │   │   ├── wordpress-logo.png + │   │   ├── wordpress-logo.svg + │   │   ├── wordpress-logo-white.svg + │   │   ├── wpspin_light-2x.gif + │   │   ├── wpspin_light.gif + │   │   ├── xit-2x.gif + │   │   ├── xit.gif + │   │   └── yes.png + │   ├── import.php + │   ├── includes + │   │   ├── admin-filters.php + │   │   ├── admin.php + │   │   ├── ajax-actions.php + │   │   ├── bookmark.php + │   │   ├── class-automatic-upgrader-skin.php + │   │   ├── class-bulk-plugin-upgrader-skin.php + │   │   ├── class-bulk-theme-upgrader-skin.php + │   │   ├── class-bulk-upgrader-skin.php + │   │   ├── class-core-upgrader.php + │   │   ├── class-custom-background.php + │   │   ├── class-custom-image-header.php + │   │   ├── class-file-upload-upgrader.php + │   │   ├── class-ftp.php + │   │   ├── class-ftp-pure.php + │   │   ├── class-ftp-sockets.php + │   │   ├── class-language-pack-upgrader.php + │   │   ├── class-language-pack-upgrader-skin.php + │   │   ├── class-pclzip.php + │   │   ├── class-plugin-installer-skin.php + │   │   ├── class-plugin-upgrader.php + │   │   ├── class-plugin-upgrader-skin.php + │   │   ├── class-theme-installer-skin.php + │   │   ├── class-theme-upgrader.php + │   │   ├── class-theme-upgrader-skin.php + │   │   ├── class-walker-category-checklist.php + │   │   ├── class-walker-nav-menu-checklist.php + │   │   ├── class-walker-nav-menu-edit.php + │   │   ├── class-wp-ajax-upgrader-skin.php + │   │   ├── class-wp-application-passwords-list-table.php + │   │   ├── class-wp-automatic-updater.php + │   │   ├── class-wp-comments-list-table.php + │   │   ├── class-wp-community-events.php + │   │   ├── class-wp-debug-data.php + │   │   ├── class-wp-filesystem-base.php + │   │   ├── class-wp-filesystem-direct.php + │   │   ├── class-wp-filesystem-ftpext.php + │   │   ├── class-wp-filesystem-ftpsockets.php + │   │   ├── class-wp-filesystem-ssh2.php + │   │   ├── class-wp-importer.php + │   │   ├── class-wp-internal-pointers.php + │   │   ├── class-wp-links-list-table.php + │   │   ├── class-wp-list-table-compat.php + │   │   ├── class-wp-list-table.php + │   │   ├── class-wp-media-list-table.php + │   │   ├── class-wp-ms-sites-list-table.php + │   │   ├── class-wp-ms-themes-list-table.php + │   │   ├── class-wp-ms-users-list-table.php + │   │   ├── class-wp-plugin-install-list-table.php + │   │   ├── class-wp-plugins-list-table.php + │   │   ├── class-wp-post-comments-list-table.php + │   │   ├── class-wp-posts-list-table.php + │   │   ├── class-wp-privacy-data-export-requests-list-table.php + │   │   ├── class-wp-privacy-data-removal-requests-list-table.php + │   │   ├── class-wp-privacy-policy-content.php + │   │   ├── class-wp-privacy-requests-table.php + │   │   ├── class-wp-screen.php + │   │   ├── class-wp-site-health-auto-updates.php + │   │   ├── class-wp-site-health.php + │   │   ├── class-wp-site-icon.php + │   │   ├── class-wp-terms-list-table.php + │   │   ├── class-wp-theme-install-list-table.php + │   │   ├── class-wp-themes-list-table.php + │   │   ├── class-wp-upgrader.php + │   │   ├── class-wp-upgrader-skin.php + │   │   ├── class-wp-upgrader-skins.php + │   │   ├── class-wp-users-list-table.php + │   │   ├── comment.php + │   │   ├── continents-cities.php + │   │   ├── credits.php + │   │   ├── dashboard.php + │   │   ├── deprecated.php + │   │   ├── edit-tag-messages.php + │   │   ├── export.php + │   │   ├── file.php + │   │   ├── image-edit.php + │   │   ├── image.php + │   │   ├── import.php + │   │   ├── list-table.php + │   │   ├── media.php + │   │   ├── menu.php + │   │   ├── meta-boxes.php + │   │   ├── misc.php + │   │   ├── ms-admin-filters.php + │   │   ├── ms-deprecated.php + │   │   ├── ms.php + │   │   ├── nav-menu.php + │   │   ├── network.php + │   │   ├── noop.php + │   │   ├── options.php + │   │   ├── plugin-install.php + │   │   ├── plugin.php + │   │   ├── post.php + │   │   ├── privacy-tools.php + │   │   ├── revision.php + │   │   ├── schema.php + │   │   ├── screen.php + │   │   ├── taxonomy.php + │   │   ├── template.php + │   │   ├── theme-install.php + │   │   ├── theme.php + │   │   ├── translation-install.php + │   │   ├── update-core.php + │   │   ├── update.php + │   │   ├── upgrade.php + │   │   ├── user.php + │   │   └── widgets.php + │   ├── index.php + │   ├── install-helper.php + │   ├── install.php + │   ├── js + │   │   ├── accordion.js + │   │   ├── accordion.min.js + │   │   ├── application-passwords.js + │   │   ├── application-passwords.min.js + │   │   ├── auth-app.js + │   │   ├── auth-app.min.js + │   │   ├── code-editor.js + │   │   ├── code-editor.min.js + │   │   ├── color-picker.js + │   │   ├── color-picker.min.js + │   │   ├── comment.js + │   │   ├── comment.min.js + │   │   ├── common.js + │   │   ├── common.min.js + │   │   ├── custom-background.js + │   │   ├── custom-background.min.js + │   │   ├── custom-header.js + │   │   ├── customize-controls.js + │   │   ├── customize-controls.min.js + │   │   ├── customize-nav-menus.js + │   │   ├── customize-nav-menus.min.js + │   │   ├── customize-widgets.js + │   │   ├── customize-widgets.min.js + │   │   ├── dashboard.js + │   │   ├── dashboard.min.js + │   │   ├── edit-comments.js + │   │   ├── edit-comments.min.js + │   │   ├── editor-expand.js + │   │   ├── editor-expand.min.js + │   │   ├── editor.js + │   │   ├── editor.min.js + │   │   ├── farbtastic.js + │   │   ├── gallery.js + │   │   ├── gallery.min.js + │   │   ├── image-edit.js + │   │   ├── image-edit.min.js + │   │   ├── inline-edit-post.js + │   │   ├── inline-edit-post.min.js + │   │   ├── inline-edit-tax.js + │   │   ├── inline-edit-tax.min.js + │   │   ├── iris.min.js + │   │   ├── language-chooser.js + │   │   ├── language-chooser.min.js + │   │   ├── link.js + │   │   ├── link.min.js + │   │   ├── media-gallery.js + │   │   ├── media-gallery.min.js + │   │   ├── media.js + │   │   ├── media.min.js + │   │   ├── media-upload.js + │   │   ├── media-upload.min.js + │   │   ├── nav-menu.js + │   │   ├── nav-menu.min.js + │   │   ├── password-strength-meter.js + │   │   ├── password-strength-meter.min.js + │   │   ├── password-toggle.js + │   │   ├── password-toggle.min.js + │   │   ├── plugin-install.js + │   │   ├── plugin-install.min.js + │   │   ├── postbox.js + │   │   ├── postbox.min.js + │   │   ├── post.js + │   │   ├── post.min.js + │   │   ├── privacy-tools.js + │   │   ├── privacy-tools.min.js + │   │   ├── revisions.js + │   │   ├── revisions.min.js + │   │   ├── set-post-thumbnail.js + │   │   ├── set-post-thumbnail.min.js + │   │   ├── site-health.js + │   │   ├── site-health.min.js + │   │   ├── site-icon.js + │   │   ├── site-icon.min.js + │   │   ├── svg-painter.js + │   │   ├── svg-painter.min.js + │   │   ├── tags-box.js + │   │   ├── tags-box.min.js + │   │   ├── tags.js + │   │   ├── tags.min.js + │   │   ├── tags-suggest.js + │   │   ├── tags-suggest.min.js + │   │   ├── theme.js + │   │   ├── theme.min.js + │   │   ├── theme-plugin-editor.js + │   │   ├── theme-plugin-editor.min.js + │   │   ├── updates.js + │   │   ├── updates.min.js + │   │   ├── user-profile.js + │   │   ├── user-profile.min.js + │   │   ├── user-suggest.js + │   │   ├── user-suggest.min.js + │   │   ├── widgets + │   │   │   ├── custom-html-widgets.js + │   │   │   ├── custom-html-widgets.min.js + │   │   │   ├── media-audio-widget.js + │   │   │   ├── media-audio-widget.min.js + │   │   │   ├── media-gallery-widget.js + │   │   │   ├── media-gallery-widget.min.js + │   │   │   ├── media-image-widget.js + │   │   │   ├── media-image-widget.min.js + │   │   │   ├── media-video-widget.js + │   │   │   ├── media-video-widget.min.js + │   │   │   ├── media-widgets.js + │   │   │   ├── media-widgets.min.js + │   │   │   ├── text-widgets.js + │   │   │   └── text-widgets.min.js + │   │   ├── widgets.js + │   │   ├── widgets.min.js + │   │   ├── word-count.js + │   │   ├── word-count.min.js + │   │   ├── xfn.js + │   │   └── xfn.min.js + │   ├── link-add.php + │   ├── link-manager.php + │   ├── link-parse-opml.php + │   ├── link.php + │   ├── load-scripts.php + │   ├── load-styles.php + │   ├── maint + │   │   └── repair.php + │   ├── media-new.php + │   ├── media.php + │   ├── media-upload.php + │   ├── menu-header.php + │   ├── menu.php + │   ├── moderation.php + │   ├── ms-admin.php + │   ├── ms-delete-site.php + │   ├── ms-edit.php + │   ├── ms-options.php + │   ├── ms-sites.php + │   ├── ms-themes.php + │   ├── ms-upgrade-network.php + │   ├── ms-users.php + │   ├── my-sites.php + │   ├── nav-menus.php + │   ├── network + │   │   ├── about.php + │   │   ├── admin.php + │   │   ├── contribute.php + │   │   ├── credits.php + │   │   ├── edit.php + │   │   ├── freedoms.php + │   │   ├── index.php + │   │   ├── menu.php + │   │   ├── plugin-editor.php + │   │   ├── plugin-install.php + │   │   ├── plugins.php + │   │   ├── privacy.php + │   │   ├── profile.php + │   │   ├── settings.php + │   │   ├── setup.php + │   │   ├── site-info.php + │   │   ├── site-new.php + │   │   ├── site-settings.php + │   │   ├── sites.php + │   │   ├── site-themes.php + │   │   ├── site-users.php + │   │   ├── theme-editor.php + │   │   ├── theme-install.php + │   │   ├── themes.php + │   │   ├── update-core.php + │   │   ├── update.php + │   │   ├── upgrade.php + │   │   ├── user-edit.php + │   │   ├── user-new.php + │   │   └── users.php + │   ├── network.php + │   ├── options-discussion.php + │   ├── options-general.php + │   ├── options-head.php + │   ├── options-media.php + │   ├── options-permalink.php + │   ├── options.php + │   ├── options-privacy.php + │   ├── options-reading.php + │   ├── options-writing.php + │   ├── plugin-editor.php + │   ├── plugin-install.php + │   ├── plugins.php + │   ├── post-new.php + │   ├── post.php + │   ├── press-this.php + │   ├── privacy.php + │   ├── privacy-policy-guide.php + │   ├── profile.php + │   ├── revision.php + │   ├── setup-config.php + │   ├── site-editor.php + │   ├── site-health-info.php + │   ├── site-health.php + │   ├── term.php + │   ├── theme-editor.php + │   ├── theme-install.php + │   ├── themes.php + │   ├── tools.php + │   ├── update-core.php + │   ├── update.php + │   ├── upgrade-functions.php + │   ├── upgrade.php + │   ├── upload.php + │   ├── user + │   │   ├── about.php + │   │   ├── admin.php + │   │   ├── contribute.php + │   │   ├── credits.php + │   │   ├── freedoms.php + │   │   ├── index.php + │   │   ├── menu.php + │   │   ├── privacy.php + │   │   ├── profile.php + │   │   └── user-edit.php + │   ├── user-edit.php + │   ├── user-new.php + │   ├── users.php + │   ├── widgets-form-blocks.php + │   ├── widgets-form.php + │   └── widgets.php + ├── wp-blog-header.php + ├── wp-comments-post.php + ├── wp-config-docker.php + ├── wp-config.php + ├── wp-config-sample.php + ├── wp-content + │   ├── index.php + │   ├── plugins + │   │   ├── akismet + │   │   │   ├── akismet.php + │   │   │   ├── changelog.txt + │   │   │   ├── class.akismet-admin.php + │   │   │   ├── class.akismet-cli.php + │   │   │   ├── class-akismet-compatible-plugins.php + │   │   │   ├── class.akismet.php + │   │   │   ├── class.akismet-rest-api.php + │   │   │   ├── class.akismet-widget.php + │   │   │   ├── .htaccess + │   │   │   ├── _inc + │   │   │   ├── index.php + │   │   │   ├── LICENSE.txt + │   │   │   ├── readme.txt + │   │   │   ├── views + │   │   │   └── wrapper.php + │   │   ├── index.php + │   │   └── wordpress-importer + │   │   ├── class-wp-import.php + │   │   ├── compat.php + │   │   ├── parsers + │   │   ├── parsers.php + │   │   ├── php-toolkit + │   │   ├── readme.txt + │   │   └── wordpress-importer.php + │   ├── themes + │   │   ├── index.php + │   │   ├── indymedia-2 + │   │   │   ├── assets + │   │   │   ├── functions.php + │   │   │   ├── parts + │   │   │   ├── patterns + │   │   │   ├── readme.txt + │   │   │   ├── screenshot.png + │   │   │   ├── style.css + │   │   │   ├── styles + │   │   │   ├── templates + │   │   │   └── theme.json + │   │   ├── twentytwentyfive + │   │   │   ├── assets + │   │   │   ├── contributing.txt + │   │   │   ├── functions.php + │   │   │   ├── package.json + │   │   │   ├── package-lock.json + │   │   │   ├── parts + │   │   │   ├── patterns + │   │   │   ├── readme.txt + │   │   │   ├── screenshot.png + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── styles + │   │   │   ├── templates + │   │   │   └── theme.json + │   │   ├── twentytwentyfour + │   │   │   ├── assets + │   │   │   ├── functions.php + │   │   │   ├── parts + │   │   │   ├── patterns + │   │   │   ├── readme.txt + │   │   │   ├── screenshot.png + │   │   │   ├── style.css + │   │   │   ├── styles + │   │   │   ├── templates + │   │   │   └── theme.json + │   │   ├── twentytwentythree + │   │   │   ├── assets + │   │   │   ├── parts + │   │   │   ├── patterns + │   │   │   ├── readme.txt + │   │   │   ├── screenshot.png + │   │   │   ├── style.css + │   │   │   ├── styles + │   │   │   ├── templates + │   │   │   └── theme.json + │   │   └── twentytwentytwo + │   │   ├── assets + │   │   ├── functions.php + │   │   ├── inc + │   │   ├── index.php + │   │   ├── parts + │   │   ├── readme.txt + │   │   ├── screenshot.png + │   │   ├── style.css + │   │   ├── styles + │   │   ├── templates + │   │   └── theme.json + │   ├── upgrade + │   └── uploads + │   └── 2026 + │   └── 03 + ├── wp-cron.php + ├── wp-includes + │   ├── abilities-api + │   │   ├── class-wp-abilities-registry.php + │   │   ├── class-wp-ability-categories-registry.php + │   │   ├── class-wp-ability-category.php + │   │   └── class-wp-ability.php + │   ├── abilities-api.php + │   ├── abilities.php + │   ├── admin-bar.php + │   ├── ai-client + │   │   ├── adapters + │   │   │   ├── class-wp-ai-client-cache.php + │   │   │   ├── class-wp-ai-client-discovery-strategy.php + │   │   │   ├── class-wp-ai-client-event-dispatcher.php + │   │   │   └── class-wp-ai-client-http-client.php + │   │   ├── class-wp-ai-client-ability-function-resolver.php + │   │   └── class-wp-ai-client-prompt-builder.php + │   ├── ai-client.php + │   ├── assets + │   │   ├── script-loader-packages.min.php + │   │   ├── script-loader-packages.php + │   │   ├── script-modules-packages.min.php + │   │   └── script-modules-packages.php + │   ├── atomlib.php + │   ├── author-template.php + │   ├── block-bindings + │   │   ├── pattern-overrides.php + │   │   ├── post-data.php + │   │   ├── post-meta.php + │   │   └── term-data.php + │   ├── block-bindings.php + │   ├── block-editor.php + │   ├── block-i18n.json + │   ├── block-patterns + │   │   ├── navigation-overlay-accent-bg.php + │   │   ├── navigation-overlay-black-bg.php + │   │   ├── navigation-overlay-centered.php + │   │   ├── navigation-overlay-centered-with-extras.php + │   │   ├── navigation-overlay.php + │   │   ├── query-grid-posts.php + │   │   ├── query-large-title-posts.php + │   │   ├── query-medium-posts.php + │   │   ├── query-offset-posts.php + │   │   ├── query-small-posts.php + │   │   ├── query-standard-posts.php + │   │   └── social-links-shared-background-color.php + │   ├── block-patterns.php + │   ├── blocks + │   │   ├── accordion + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── accordion-heading + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── accordion-item + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── accordion-item.php + │   │   ├── accordion-panel + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── accordion.php + │   │   ├── archives + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── archives.php + │   │   ├── audio + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── avatar + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── avatar.php + │   │   ├── block + │   │   │   └── block.json + │   │   ├── block.php + │   │   ├── blocks-json.php + │   │   ├── breadcrumbs + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── breadcrumbs.php + │   │   ├── button + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── button.php + │   │   ├── buttons + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── calendar + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── calendar.php + │   │   ├── categories + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── categories.php + │   │   ├── code + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── column + │   │   │   └── block.json + │   │   ├── columns + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── comment-author-name + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── comment-author-name.php + │   │   ├── comment-content + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── comment-content.php + │   │   ├── comment-date + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── comment-date.php + │   │   ├── comment-edit-link + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── comment-edit-link.php + │   │   ├── comment-reply-link + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── comment-reply-link.php + │   │   ├── comments + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── comments-pagination + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── comments-pagination-next + │   │   │   └── block.json + │   │   ├── comments-pagination-next.php + │   │   ├── comments-pagination-numbers + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── comments-pagination-numbers.php + │   │   ├── comments-pagination.php + │   │   ├── comments-pagination-previous + │   │   │   └── block.json + │   │   ├── comments-pagination-previous.php + │   │   ├── comments.php + │   │   ├── comments-title + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── comments-title.php + │   │   ├── comment-template + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── comment-template.php + │   │   ├── cover + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── cover.php + │   │   ├── details + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── embed + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── file + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── file.php + │   │   ├── footnotes + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── footnotes.php + │   │   ├── freeform + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── gallery + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── gallery.php + │   │   ├── group + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── heading + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── heading.php + │   │   ├── home-link + │   │   │   └── block.json + │   │   ├── home-link.php + │   │   ├── html + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── icon + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── icon.php + │   │   ├── image + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── image.php + │   │   ├── index.php + │   │   ├── latest-comments + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── latest-comments.php + │   │   ├── latest-posts + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── latest-posts.php + │   │   ├── legacy-widget + │   │   │   └── block.json + │   │   ├── legacy-widget.php + │   │   ├── list + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── list-item + │   │   │   └── block.json + │   │   ├── list.php + │   │   ├── loginout + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── loginout.php + │   │   ├── math + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── media-text + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── media-text.php + │   │   ├── missing + │   │   │   └── block.json + │   │   ├── more + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── navigation + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── navigation-link + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── shared + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── navigation-link.php + │   │   ├── navigation-overlay-close + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── navigation-overlay-close.php + │   │   ├── navigation.php + │   │   ├── navigation-submenu + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── navigation-submenu.php + │   │   ├── nextpage + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── page-list + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── page-list-item + │   │   │   └── block.json + │   │   ├── page-list-item.php + │   │   ├── page-list.php + │   │   ├── paragraph + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── paragraph.php + │   │   ├── pattern + │   │   │   └── block.json + │   │   ├── pattern.php + │   │   ├── post-author + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-author-biography + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-author-biography.php + │   │   ├── post-author-name + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-author-name.php + │   │   ├── post-author.php + │   │   ├── post-comments-count + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-comments-count.php + │   │   ├── post-comments-form + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-comments-form.php + │   │   ├── post-comments-link + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-comments-link.php + │   │   ├── post-content + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-content.php + │   │   ├── post-date + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-date.php + │   │   ├── post-excerpt + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-excerpt.php + │   │   ├── post-featured-image + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-featured-image.php + │   │   ├── post-navigation-link + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-navigation-link.php + │   │   ├── post-template + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-template.php + │   │   ├── post-terms + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-terms.php + │   │   ├── post-time-to-read + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-time-to-read.php + │   │   ├── post-title + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── post-title.php + │   │   ├── preformatted + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── pullquote + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── query + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── query-no-results + │   │   │   └── block.json + │   │   ├── query-no-results.php + │   │   ├── query-pagination + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── query-pagination-next + │   │   │   └── block.json + │   │   ├── query-pagination-next.php + │   │   ├── query-pagination-numbers + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── query-pagination-numbers.php + │   │   ├── query-pagination.php + │   │   ├── query-pagination-previous + │   │   │   └── block.json + │   │   ├── query-pagination-previous.php + │   │   ├── query.php + │   │   ├── query-title + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── query-title.php + │   │   ├── query-total + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── query-total.php + │   │   ├── quote + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── read-more + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── read-more.php + │   │   ├── require-dynamic-blocks.php + │   │   ├── require-static-blocks.php + │   │   ├── rss + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── rss.php + │   │   ├── search + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── search.php + │   │   ├── separator + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── shortcode + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── shortcode.php + │   │   ├── site-logo + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── site-logo.php + │   │   ├── site-tagline + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── site-tagline.php + │   │   ├── site-title + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── site-title.php + │   │   ├── social-link + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   └── editor-rtl.min.css + │   │   ├── social-link.php + │   │   ├── social-links + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── spacer + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── table + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── tag-cloud + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── tag-cloud.php + │   │   ├── template-part + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── template-part.php + │   │   ├── term-count + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── term-count.php + │   │   ├── term-description + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── term-description.php + │   │   ├── term-name + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── term-name.php + │   │   ├── terms-query + │   │   │   └── block.json + │   │   ├── term-template + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── term-template.php + │   │   ├── text-columns + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── verse + │   │   │   ├── block.json + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   └── style-rtl.min.css + │   │   ├── video + │   │   │   ├── block.json + │   │   │   ├── editor.css + │   │   │   ├── editor.min.css + │   │   │   ├── editor-rtl.css + │   │   │   ├── editor-rtl.min.css + │   │   │   ├── style.css + │   │   │   ├── style.min.css + │   │   │   ├── style-rtl.css + │   │   │   ├── style-rtl.min.css + │   │   │   ├── theme.css + │   │   │   ├── theme.min.css + │   │   │   ├── theme-rtl.css + │   │   │   └── theme-rtl.min.css + │   │   ├── video.php + │   │   ├── widget-group + │   │   │   └── block.json + │   │   └── widget-group.php + │   ├── blocks.php + │   ├── block-supports + │   │   ├── align.php + │   │   ├── anchor.php + │   │   ├── aria-label.php + │   │   ├── auto-register.php + │   │   ├── background.php + │   │   ├── block-style-variations.php + │   │   ├── block-visibility.php + │   │   ├── border.php + │   │   ├── colors.php + │   │   ├── custom-classname.php + │   │   ├── custom-css.php + │   │   ├── dimensions.php + │   │   ├── duotone.php + │   │   ├── elements.php + │   │   ├── generated-classname.php + │   │   ├── layout.php + │   │   ├── position.php + │   │   ├── settings.php + │   │   ├── shadow.php + │   │   ├── spacing.php + │   │   ├── typography.php + │   │   └── utils.php + │   ├── block-template.php + │   ├── block-template-utils.php + │   ├── bookmark.php + │   ├── bookmark-template.php + │   ├── build + │   │   ├── constants.php + │   │   ├── pages + │   │   │   ├── connectors + │   │   │   ├── font-library + │   │   │   ├── site-editor + │   │   │   └── site-editor-v2 + │   │   ├── pages.php + │   │   ├── routes + │   │   │   ├── connectors-home + │   │   │   ├── font-list + │   │   │   ├── fonts-home + │   │   │   ├── home + │   │   │   ├── index.php + │   │   │   ├── navigation + │   │   │   ├── navigation-edit + │   │   │   ├── navigation-list + │   │   │   ├── pattern + │   │   │   ├── pattern-list + │   │   │   ├── post + │   │   │   ├── post-edit + │   │   │   ├── post-list + │   │   │   ├── post-new + │   │   │   ├── registry.php + │   │   │   ├── styles + │   │   │   ├── template + │   │   │   ├── template-list + │   │   │   ├── template-part + │   │   │   └── template-part-list + │   │   └── routes.php + │   ├── cache-compat.php + │   ├── cache.php + │   ├── canonical.php + │   ├── capabilities.php + │   ├── category.php + │   ├── category-template.php + │   ├── certificates + │   │   └── ca-bundle.crt + │   ├── class-avif-info.php + │   ├── class-feed.php + │   ├── class-http.php + │   ├── class-IXR.php + │   ├── class-json.php + │   ├── class-oembed.php + │   ├── class-phpass.php + │   ├── class-phpmailer.php + │   ├── class-pop3.php + │   ├── class-requests.php + │   ├── class-simplepie.php + │   ├── class-smtp.php + │   ├── class-snoopy.php + │   ├── class-walker-category-dropdown.php + │   ├── class-walker-category.php + │   ├── class-walker-comment.php + │   ├── class-walker-nav-menu.php + │   ├── class-walker-page-dropdown.php + │   ├── class-walker-page.php + │   ├── class-wp-admin-bar.php + │   ├── class-wp-ajax-response.php + │   ├── class-wp-application-passwords.php + │   ├── class-wp-block-bindings-registry.php + │   ├── class-wp-block-bindings-source.php + │   ├── class-wp-block-editor-context.php + │   ├── class-wp-block-list.php + │   ├── class-wp-block-metadata-registry.php + │   ├── class-wp-block-parser-block.php + │   ├── class-wp-block-parser-frame.php + │   ├── class-wp-block-parser.php + │   ├── class-wp-block-pattern-categories-registry.php + │   ├── class-wp-block-patterns-registry.php + │   ├── class-wp-block.php + │   ├── class-wp-block-processor.php + │   ├── class-wp-block-styles-registry.php + │   ├── class-wp-block-supports.php + │   ├── class-wp-block-template.php + │   ├── class-wp-block-templates-registry.php + │   ├── class-wp-block-type.php + │   ├── class-wp-block-type-registry.php + │   ├── class-wp-classic-to-block-menu-converter.php + │   ├── class-wp-comment.php + │   ├── class-wp-comment-query.php + │   ├── class-wp-customize-control.php + │   ├── class-wp-customize-manager.php + │   ├── class-wp-customize-nav-menus.php + │   ├── class-wp-customize-panel.php + │   ├── class-wp-customize-section.php + │   ├── class-wp-customize-setting.php + │   ├── class-wp-customize-widgets.php + │   ├── class-wp-date-query.php + │   ├── class-wpdb.php + │   ├── class-wp-dependencies.php + │   ├── class.wp-dependencies.php + │   ├── class-wp-dependency.php + │   ├── class-wp-duotone.php + │   ├── class-wp-editor.php + │   ├── class-wp-embed.php + │   ├── class-wp-error.php + │   ├── class-wp-exception.php + │   ├── class-wp-fatal-error-handler.php + │   ├── class-wp-feed-cache.php + │   ├── class-wp-feed-cache-transient.php + │   ├── class-wp-hook.php + │   ├── class-wp-http-cookie.php + │   ├── class-wp-http-curl.php + │   ├── class-wp-http-encoding.php + │   ├── class-wp-http-ixr-client.php + │   ├── class-wp-http.php + │   ├── class-wp-http-proxy.php + │   ├── class-wp-http-requests-hooks.php + │   ├── class-wp-http-requests-response.php + │   ├── class-wp-http-response.php + │   ├── class-wp-http-streams.php + │   ├── class-wp-icons-registry.php + │   ├── class-wp-image-editor-gd.php + │   ├── class-wp-image-editor-imagick.php + │   ├── class-wp-image-editor.php + │   ├── class-wp-list-util.php + │   ├── class-wp-locale.php + │   ├── class-wp-locale-switcher.php + │   ├── class-wp-matchesmapregex.php + │   ├── class-wp-metadata-lazyloader.php + │   ├── class-wp-meta-query.php + │   ├── class-wp-navigation-fallback.php + │   ├── class-wp-network.php + │   ├── class-wp-network-query.php + │   ├── class-wp-object-cache.php + │   ├── class-wp-oembed-controller.php + │   ├── class-wp-oembed.php + │   ├── class-wp-paused-extensions-storage.php + │   ├── class-wp.php + │   ├── class-wp-phpmailer.php + │   ├── class-wp-plugin-dependencies.php + │   ├── class-wp-post.php + │   ├── class-wp-post-type.php + │   ├── class-wp-query.php + │   ├── class-wp-recovery-mode-cookie-service.php + │   ├── class-wp-recovery-mode-email-service.php + │   ├── class-wp-recovery-mode-key-service.php + │   ├── class-wp-recovery-mode-link-service.php + │   ├── class-wp-recovery-mode.php + │   ├── class-wp-rewrite.php + │   ├── class-wp-role.php + │   ├── class-wp-roles.php + │   ├── class-wp-script-modules.php + │   ├── class-wp-scripts.php + │   ├── class.wp-scripts.php + │   ├── class-wp-session-tokens.php + │   ├── class-wp-simplepie-file.php + │   ├── class-wp-simplepie-sanitize-kses.php + │   ├── class-wp-site.php + │   ├── class-wp-site-query.php + │   ├── class-wp-speculation-rules.php + │   ├── class-wp-styles.php + │   ├── class.wp-styles.php + │   ├── class-wp-taxonomy.php + │   ├── class-wp-tax-query.php + │   ├── class-wp-term.php + │   ├── class-wp-term-query.php + │   ├── class-wp-text-diff-renderer-inline.php + │   ├── class-wp-text-diff-renderer-table.php + │   ├── class-wp-textdomain-registry.php + │   ├── class-wp-theme-json-data.php + │   ├── class-wp-theme-json.php + │   ├── class-wp-theme-json-resolver.php + │   ├── class-wp-theme-json-schema.php + │   ├── class-wp-theme.php + │   ├── class-wp-token-map.php + │   ├── class-wp-url-pattern-prefixer.php + │   ├── class-wp-user-meta-session-tokens.php + │   ├── class-wp-user.php + │   ├── class-wp-user-query.php + │   ├── class-wp-user-request.php + │   ├── class-wp-walker.php + │   ├── class-wp-widget-factory.php + │   ├── class-wp-widget.php + │   ├── class-wp-xmlrpc-server.php + │   ├── collaboration + │   │   ├── class-wp-http-polling-sync-server.php + │   │   ├── class-wp-sync-post-meta-storage.php + │   │   └── interface-wp-sync-storage.php + │   ├── collaboration.php + │   ├── comment.php + │   ├── comment-template.php + │   ├── compat.php + │   ├── compat-utf8.php + │   ├── connectors.php + │   ├── cron.php + │   ├── css + │   │   ├── admin-bar.css + │   │   ├── admin-bar.min.css + │   │   ├── admin-bar-rtl.css + │   │   ├── admin-bar-rtl.min.css + │   │   ├── buttons.css + │   │   ├── buttons.min.css + │   │   ├── buttons-rtl.css + │   │   ├── buttons-rtl.min.css + │   │   ├── classic-themes.css + │   │   ├── classic-themes.min.css + │   │   ├── customize-preview.css + │   │   ├── customize-preview.min.css + │   │   ├── customize-preview-rtl.css + │   │   ├── customize-preview-rtl.min.css + │   │   ├── dashicons.css + │   │   ├── dashicons.min.css + │   │   ├── dist + │   │   │   ├── base-styles + │   │   │   ├── block-directory + │   │   │   ├── block-editor + │   │   │   ├── block-library + │   │   │   ├── commands + │   │   │   ├── components + │   │   │   ├── customize-widgets + │   │   │   ├── editor + │   │   │   ├── edit-post + │   │   │   ├── edit-site + │   │   │   ├── edit-widgets + │   │   │   ├── format-library + │   │   │   ├── index.php + │   │   │   ├── list-reusable-blocks + │   │   │   ├── media-utils + │   │   │   ├── nux + │   │   │   ├── patterns + │   │   │   ├── preferences + │   │   │   ├── registry.php + │   │   │   ├── reusable-blocks + │   │   │   ├── theme + │   │   │   └── widgets + │   │   ├── editor.css + │   │   ├── editor.min.css + │   │   ├── editor-rtl.css + │   │   ├── editor-rtl.min.css + │   │   ├── jquery-ui-dialog.css + │   │   ├── jquery-ui-dialog.min.css + │   │   ├── jquery-ui-dialog-rtl.css + │   │   ├── jquery-ui-dialog-rtl.min.css + │   │   ├── media-views.css + │   │   ├── media-views.min.css + │   │   ├── media-views-rtl.css + │   │   ├── media-views-rtl.min.css + │   │   ├── wp-auth-check.css + │   │   ├── wp-auth-check.min.css + │   │   ├── wp-auth-check-rtl.css + │   │   ├── wp-auth-check-rtl.min.css + │   │   ├── wp-block-template-skip-link.css + │   │   ├── wp-block-template-skip-link.min.css + │   │   ├── wp-block-template-skip-link-rtl.css + │   │   ├── wp-block-template-skip-link-rtl.min.css + │   │   ├── wp-embed-template.css + │   │   ├── wp-embed-template-ie.css + │   │   ├── wp-embed-template-ie.min.css + │   │   ├── wp-embed-template.min.css + │   │   ├── wp-empty-template-alert.css + │   │   ├── wp-empty-template-alert.min.css + │   │   ├── wp-pointer.css + │   │   ├── wp-pointer.min.css + │   │   ├── wp-pointer-rtl.css + │   │   └── wp-pointer-rtl.min.css + │   ├── customize + │   │   ├── class-wp-customize-background-image-control.php + │   │   ├── class-wp-customize-background-image-setting.php + │   │   ├── class-wp-customize-background-position-control.php + │   │   ├── class-wp-customize-code-editor-control.php + │   │   ├── class-wp-customize-color-control.php + │   │   ├── class-wp-customize-cropped-image-control.php + │   │   ├── class-wp-customize-custom-css-setting.php + │   │   ├── class-wp-customize-date-time-control.php + │   │   ├── class-wp-customize-filter-setting.php + │   │   ├── class-wp-customize-header-image-control.php + │   │   ├── class-wp-customize-header-image-setting.php + │   │   ├── class-wp-customize-image-control.php + │   │   ├── class-wp-customize-media-control.php + │   │   ├── class-wp-customize-nav-menu-auto-add-control.php + │   │   ├── class-wp-customize-nav-menu-control.php + │   │   ├── class-wp-customize-nav-menu-item-control.php + │   │   ├── class-wp-customize-nav-menu-item-setting.php + │   │   ├── class-wp-customize-nav-menu-location-control.php + │   │   ├── class-wp-customize-nav-menu-locations-control.php + │   │   ├── class-wp-customize-nav-menu-name-control.php + │   │   ├── class-wp-customize-nav-menu-section.php + │   │   ├── class-wp-customize-nav-menu-setting.php + │   │   ├── class-wp-customize-nav-menus-panel.php + │   │   ├── class-wp-customize-new-menu-control.php + │   │   ├── class-wp-customize-new-menu-section.php + │   │   ├── class-wp-customize-partial.php + │   │   ├── class-wp-customize-selective-refresh.php + │   │   ├── class-wp-customize-sidebar-section.php + │   │   ├── class-wp-customize-site-icon-control.php + │   │   ├── class-wp-customize-theme-control.php + │   │   ├── class-wp-customize-themes-panel.php + │   │   ├── class-wp-customize-themes-section.php + │   │   ├── class-wp-customize-upload-control.php + │   │   ├── class-wp-sidebar-block-editor-control.php + │   │   ├── class-wp-widget-area-customize-control.php + │   │   └── class-wp-widget-form-customize-control.php + │   ├── date.php + │   ├── default-constants.php + │   ├── default-filters.php + │   ├── default-widgets.php + │   ├── deprecated.php + │   ├── embed.php + │   ├── embed-template.php + │   ├── error-protection.php + │   ├── feed-atom-comments.php + │   ├── feed-atom.php + │   ├── feed.php + │   ├── feed-rdf.php + │   ├── feed-rss2-comments.php + │   ├── feed-rss2.php + │   ├── feed-rss.php + │   ├── fonts + │   │   ├── class-wp-font-collection.php + │   │   ├── class-wp-font-face.php + │   │   ├── class-wp-font-face-resolver.php + │   │   ├── class-wp-font-library.php + │   │   ├── class-wp-font-utils.php + │   │   ├── dashicons.eot + │   │   ├── dashicons.svg + │   │   ├── dashicons.ttf + │   │   ├── dashicons.woff + │   │   └── dashicons.woff2 + │   ├── fonts.php + │   ├── formatting.php + │   ├── functions.php + │   ├── functions.wp-scripts.php + │   ├── functions.wp-styles.php + │   ├── general-template.php + │   ├── global-styles-and-settings.php + │   ├── html-api + │   │   ├── class-wp-html-active-formatting-elements.php + │   │   ├── class-wp-html-attribute-token.php + │   │   ├── class-wp-html-decoder.php + │   │   ├── class-wp-html-doctype-info.php + │   │   ├── class-wp-html-open-elements.php + │   │   ├── class-wp-html-processor.php + │   │   ├── class-wp-html-processor-state.php + │   │   ├── class-wp-html-span.php + │   │   ├── class-wp-html-stack-event.php + │   │   ├── class-wp-html-tag-processor.php + │   │   ├── class-wp-html-text-replacement.php + │   │   ├── class-wp-html-token.php + │   │   ├── class-wp-html-unsupported-exception.php + │   │   └── html5-named-character-references.php + │   ├── http.php + │   ├── https-detection.php + │   ├── https-migration.php + │   ├── icons + │   │   ├── library + │   │   │   ├── accordion-heading.svg + │   │   │   ├── accordion-item.svg + │   │   │   ├── accordion.svg + │   │   │   ├── add-card.svg + │   │   │   ├── add-submenu.svg + │   │   │   ├── add-template.svg + │   │   │   ├── align-center.svg + │   │   │   ├── align-justify.svg + │   │   │   ├── align-left.svg + │   │   │   ├── align-none.svg + │   │   │   ├── align-right.svg + │   │   │   ├── archive.svg + │   │   │   ├── arrow-down-left.svg + │   │   │   ├── arrow-down-right.svg + │   │   │   ├── arrow-down.svg + │   │   │   ├── arrow-left.svg + │   │   │   ├── arrow-right.svg + │   │   │   ├── arrow-up-left.svg + │   │   │   ├── arrow-up-right.svg + │   │   │   ├── arrow-up.svg + │   │   │   ├── aspect-ratio.svg + │   │   │   ├── at-symbol.svg + │   │   │   ├── audio.svg + │   │   │   ├── background.svg + │   │   │   ├── backup.svg + │   │   │   ├── bell.svg + │   │   │   ├── bell-unread.svg + │   │   │   ├── block-default.svg + │   │   │   ├── block-meta.svg + │   │   │   ├── block-table.svg + │   │   │   ├── border.svg + │   │   │   ├── box.svg + │   │   │   ├── breadcrumbs.svg + │   │   │   ├── brush.svg + │   │   │   ├── bug.svg + │   │   │   ├── buttons.svg + │   │   │   ├── button.svg + │   │   │   ├── calendar.svg + │   │   │   ├── cancel-circle-filled.svg + │   │   │   ├── caption.svg + │   │   │   ├── capture-photo.svg + │   │   │   ├── capture-video.svg + │   │   │   ├── cart.svg + │   │   │   ├── category.svg + │   │   │   ├── caution-filled.svg + │   │   │   ├── caution.svg + │   │   │   ├── chart-bar.svg + │   │   │   ├── check.svg + │   │   │   ├── chevron-down-small.svg + │   │   │   ├── chevron-down.svg + │   │   │   ├── chevron-left-small.svg + │   │   │   ├── chevron-left.svg + │   │   │   ├── chevron-right-small.svg + │   │   │   ├── chevron-right.svg + │   │   │   ├── chevron-up-down.svg + │   │   │   ├── chevron-up-small.svg + │   │   │   ├── chevron-up.svg + │   │   │   ├── classic.svg + │   │   │   ├── close-small.svg + │   │   │   ├── close.svg + │   │   │   ├── cloud-download.svg + │   │   │   ├── cloud.svg + │   │   │   ├── cloud-upload.svg + │   │   │   ├── code.svg + │   │   │   ├── cog.svg + │   │   │   ├── color.svg + │   │   │   ├── columns.svg + │   │   │   ├── column.svg + │   │   │   ├── comment-author-avatar.svg + │   │   │   ├── comment-author-name.svg + │   │   │   ├── comment-content.svg + │   │   │   ├── comment-edit-link.svg + │   │   │   ├── comment-reply-link.svg + │   │   │   ├── comment.svg + │   │   │   ├── connection.svg + │   │   │   ├── contents.svg + │   │   │   ├── copy-small.svg + │   │   │   ├── copy.svg + │   │   │   ├── corner-all.svg + │   │   │   ├── corner-bottom-left.svg + │   │   │   ├── corner-bottom-right.svg + │   │   │   ├── corner-top-left.svg + │   │   │   ├── corner-top-right.svg + │   │   │   ├── cover.svg + │   │   │   ├── create.svg + │   │   │   ├── crop.svg + │   │   │   ├── currency-dollar.svg + │   │   │   ├── currency-euro.svg + │   │   │   ├── currency-pound.svg + │   │   │   ├── custom-link.svg + │   │   │   ├── custom-post-type.svg + │   │   │   ├── dashboard.svg + │   │   │   ├── desktop.svg + │   │   │   ├── details.svg + │   │   │   ├── download.svg + │   │   │   ├── drafts.svg + │   │   │   ├── drag-handle.svg + │   │   │   ├── drawer-left.svg + │   │   │   ├── drawer-right.svg + │   │   │   ├── envelope.svg + │   │   │   ├── error.svg + │   │   │   ├── external.svg + │   │   │   ├── file.svg + │   │   │   ├── filter.svg + │   │   │   ├── flip-horizontal.svg + │   │   │   ├── flip-vertical.svg + │   │   │   ├── footer.svg + │   │   │   ├── format-bold.svg + │   │   │   ├── format-capitalize.svg + │   │   │   ├── format-indent-rtl.svg + │   │   │   ├── format-indent.svg + │   │   │   ├── format-italic.svg + │   │   │   ├── format-list-bullets-rtl.svg + │   │   │   ├── format-list-bullets.svg + │   │   │   ├── format-list-numbered-rtl.svg + │   │   │   ├── format-list-numbered.svg + │   │   │   ├── format-lowercase.svg + │   │   │   ├── format-ltr.svg + │   │   │   ├── format-outdent-rtl.svg + │   │   │   ├── format-outdent.svg + │   │   │   ├── format-rtl.svg + │   │   │   ├── format-strikethrough.svg + │   │   │   ├── format-underline.svg + │   │   │   ├── format-uppercase.svg + │   │   │   ├── full-height.svg + │   │   │   ├── fullscreen.svg + │   │   │   ├── funnel.svg + │   │   │   ├── gallery.svg + │   │   │   ├── gift.svg + │   │   │   ├── globe.svg + │   │   │   ├── grid.svg + │   │   │   ├── group.svg + │   │   │   ├── handle.svg + │   │   │   ├── header.svg + │   │   │   ├── heading-level-1.svg + │   │   │   ├── heading-level-2.svg + │   │   │   ├── heading-level-3.svg + │   │   │   ├── heading-level-4.svg + │   │   │   ├── heading-level-5.svg + │   │   │   ├── heading-level-6.svg + │   │   │   ├── heading.svg + │   │   │   ├── help-filled.svg + │   │   │   ├── help.svg + │   │   │   ├── home-button.svg + │   │   │   ├── home.svg + │   │   │   ├── html.svg + │   │   │   ├── image.svg + │   │   │   ├── inbox.svg + │   │   │   ├── info.svg + │   │   │   ├── insert-after.svg + │   │   │   ├── insert-before.svg + │   │   │   ├── institution.svg + │   │   │   ├── justify-bottom.svg + │   │   │   ├── justify-center.svg + │   │   │   ├── justify-center-vertical.svg + │   │   │   ├── justify-left.svg + │   │   │   ├── justify-right.svg + │   │   │   ├── justify-space-between.svg + │   │   │   ├── justify-space-between-vertical.svg + │   │   │   ├── justify-stretch.svg + │   │   │   ├── justify-stretch-vertical.svg + │   │   │   ├── justify-top.svg + │   │   │   ├── keyboard-close.svg + │   │   │   ├── keyboard-return.svg + │   │   │   ├── keyboard.svg + │   │   │   ├── key.svg + │   │   │   ├── language.svg + │   │   │   ├── layout.svg + │   │   │   ├── level-up.svg + │   │   │   ├── lifesaver.svg + │   │   │   ├── line-dashed.svg + │   │   │   ├── line-dotted.svg + │   │   │   ├── line-solid.svg + │   │   │   ├── link-off.svg + │   │   │   ├── link.svg + │   │   │   ├── list-item.svg + │   │   │   ├── list.svg + │   │   │   ├── list-view.svg + │   │   │   ├── lock-outline.svg + │   │   │   ├── lock-small.svg + │   │   │   ├── lock.svg + │   │   │   ├── login.svg + │   │   │   ├── loop.svg + │   │   │   ├── map-marker.svg + │   │   │   ├── math.svg + │   │   │   ├── media-and-text.svg + │   │   │   ├── media.svg + │   │   │   ├── megaphone.svg + │   │   │   ├── menu.svg + │   │   │   ├── mobile.svg + │   │   │   ├── more-horizontal.svg + │   │   │   ├── more.svg + │   │   │   ├── more-vertical.svg + │   │   │   ├── move-to.svg + │   │   │   ├── navigation-overlay.svg + │   │   │   ├── navigation.svg + │   │   │   ├── next.svg + │   │   │   ├── not-allowed.svg + │   │   │   ├── not-found.svg + │   │   │   ├── offline.svg + │   │   │   ├── overlay-text.svg + │   │   │   ├── page-break.svg + │   │   │   ├── pages.svg + │   │   │   ├── page.svg + │   │   │   ├── paragraph.svg + │   │   │   ├── payment.svg + │   │   │   ├── pencil.svg + │   │   │   ├── pending.svg + │   │   │   ├── people.svg + │   │   │   ├── percent.svg + │   │   │   ├── pin-small.svg + │   │   │   ├── pin.svg + │   │   │   ├── plugins.svg + │   │   │   ├── plus-circle-filled.svg + │   │   │   ├── plus-circle.svg + │   │   │   ├── plus.svg + │   │   │   ├── position-center.svg + │   │   │   ├── position-left.svg + │   │   │   ├── position-right.svg + │   │   │   ├── post-author.svg + │   │   │   ├── post-categories.svg + │   │   │   ├── post-comments-count.svg + │   │   │   ├── post-comments-form.svg + │   │   │   ├── post-comments.svg + │   │   │   ├── post-content.svg + │   │   │   ├── post-date.svg + │   │   │   ├── post-excerpt.svg + │   │   │   ├── post-featured-image.svg + │   │   │   ├── post-list.svg + │   │   │   ├── post.svg + │   │   │   ├── post-terms.svg + │   │   │   ├── preformatted.svg + │   │   │   ├── previous.svg + │   │   │   ├── published.svg + │   │   │   ├── pull-left.svg + │   │   │   ├── pullquote.svg + │   │   │   ├── pull-right.svg + │   │   │   ├── query-pagination-next.svg + │   │   │   ├── query-pagination-numbers.svg + │   │   │   ├── query-pagination-previous.svg + │   │   │   ├── query-pagination.svg + │   │   │   ├── quote.svg + │   │   │   ├── receipt.svg + │   │   │   ├── redo.svg + │   │   │   ├── remove-bug.svg + │   │   │   ├── remove-submenu.svg + │   │   │   ├── replace.svg + │   │   │   ├── reset.svg + │   │   │   ├── resize-corner-n-e.svg + │   │   │   ├── reusable-block.svg + │   │   │   ├── rotate-left.svg + │   │   │   ├── rotate-right.svg + │   │   │   ├── row.svg + │   │   │   ├── rss.svg + │   │   │   ├── scheduled.svg + │   │   │   ├── search.svg + │   │   │   ├── seen.svg + │   │   │   ├── send.svg + │   │   │   ├── separator.svg + │   │   │   ├── settings.svg + │   │   │   ├── shadow.svg + │   │   │   ├── share.svg + │   │   │   ├── shield.svg + │   │   │   ├── shipping.svg + │   │   │   ├── shortcode.svg + │   │   │   ├── shuffle.svg + │   │   │   ├── sidebar.svg + │   │   │   ├── sides-all.svg + │   │   │   ├── sides-axial.svg + │   │   │   ├── sides-bottom.svg + │   │   │   ├── sides-horizontal.svg + │   │   │   ├── sides-left.svg + │   │   │   ├── sides-right.svg + │   │   │   ├── sides-top.svg + │   │   │   ├── sides-vertical.svg + │   │   │   ├── site-logo.svg + │   │   │   ├── square.svg + │   │   │   ├── stack.svg + │   │   │   ├── star-empty.svg + │   │   │   ├── star-filled.svg + │   │   │   ├── star-half.svg + │   │   │   ├── store.svg + │   │   │   ├── stretch-full-width.svg + │   │   │   ├── stretch-wide.svg + │   │   │   ├── styles.svg + │   │   │   ├── subscript.svg + │   │   │   ├── superscript.svg + │   │   │   ├── swatch.svg + │   │   │   ├── symbol-filled.svg + │   │   │   ├── symbol.svg + │   │   │   ├── table-column-after.svg + │   │   │   ├── table-column-before.svg + │   │   │   ├── table-column-delete.svg + │   │   │   ├── table-of-contents.svg + │   │   │   ├── table-row-after.svg + │   │   │   ├── table-row-before.svg + │   │   │   ├── table-row-delete.svg + │   │   │   ├── table.svg + │   │   │   ├── tablet.svg + │   │   │   ├── tabs-menu-item.svg + │   │   │   ├── tabs-menu.svg + │   │   │   ├── tabs.svg + │   │   │   ├── tab.svg + │   │   │   ├── tag.svg + │   │   │   ├── term-count.svg + │   │   │   ├── term-description.svg + │   │   │   ├── term-name.svg + │   │   │   ├── text-color.svg + │   │   │   ├── text-horizontal.svg + │   │   │   ├── text-vertical.svg + │   │   │   ├── thumbs-down.svg + │   │   │   ├── thumbs-up.svg + │   │   │   ├── time-to-read.svg + │   │   │   ├── tip.svg + │   │   │   ├── title.svg + │   │   │   ├── tool.svg + │   │   │   ├── trash.svg + │   │   │   ├── trending-down.svg + │   │   │   ├── trending-up.svg + │   │   │   ├── typography.svg + │   │   │   ├── undo.svg + │   │   │   ├── ungroup.svg + │   │   │   ├── unlock.svg + │   │   │   ├── unseen.svg + │   │   │   ├── update.svg + │   │   │   ├── upload.svg + │   │   │   ├── verse.svg + │   │   │   ├── video.svg + │   │   │   ├── widget.svg + │   │   │   ├── word-count.svg + │   │   │   └── wordpress.svg + │   │   └── manifest.php + │   ├── ID3 + │   │   ├── getid3.lib.php + │   │   ├── getid3.php + │   │   ├── license.txt + │   │   ├── module.audio.ac3.php + │   │   ├── module.audio.dts.php + │   │   ├── module.audio.flac.php + │   │   ├── module.audio.mp3.php + │   │   ├── module.audio.ogg.php + │   │   ├── module.audio-video.asf.php + │   │   ├── module.audio-video.flv.php + │   │   ├── module.audio-video.matroska.php + │   │   ├── module.audio-video.quicktime.php + │   │   ├── module.audio-video.riff.php + │   │   ├── module.tag.apetag.php + │   │   ├── module.tag.id3v1.php + │   │   ├── module.tag.id3v2.php + │   │   ├── module.tag.lyrics3.php + │   │   └── readme.txt + │   ├── images + │   │   ├── admin-bar-sprite-2x.png + │   │   ├── admin-bar-sprite.png + │   │   ├── arrow-pointer-blue-2x.png + │   │   ├── arrow-pointer-blue.png + │   │   ├── blank.gif + │   │   ├── crystal + │   │   │   ├── archive.png + │   │   │   ├── audio.png + │   │   │   ├── code.png + │   │   │   ├── default.png + │   │   │   ├── document.png + │   │   │   ├── interactive.png + │   │   │   ├── license.txt + │   │   │   ├── spreadsheet.png + │   │   │   ├── text.png + │   │   │   └── video.png + │   │   ├── down_arrow-2x.gif + │   │   ├── down_arrow.gif + │   │   ├── icon-pointer-flag-2x.png + │   │   ├── icon-pointer-flag.png + │   │   ├── media + │   │   │   ├── archive.png + │   │   │   ├── archive.svg + │   │   │   ├── audio.png + │   │   │   ├── audio.svg + │   │   │   ├── code.png + │   │   │   ├── code.svg + │   │   │   ├── default.png + │   │   │   ├── default.svg + │   │   │   ├── document.png + │   │   │   ├── document.svg + │   │   │   ├── interactive.png + │   │   │   ├── interactive.svg + │   │   │   ├── spreadsheet.png + │   │   │   ├── spreadsheet.svg + │   │   │   ├── text.png + │   │   │   ├── text.svg + │   │   │   ├── video.png + │   │   │   └── video.svg + │   │   ├── rss-2x.png + │   │   ├── rss.png + │   │   ├── smilies + │   │   │   ├── frownie.png + │   │   │   ├── icon_arrow.gif + │   │   │   ├── icon_biggrin.gif + │   │   │   ├── icon_confused.gif + │   │   │   ├── icon_cool.gif + │   │   │   ├── icon_cry.gif + │   │   │   ├── icon_eek.gif + │   │   │   ├── icon_evil.gif + │   │   │   ├── icon_exclaim.gif + │   │   │   ├── icon_idea.gif + │   │   │   ├── icon_lol.gif + │   │   │   ├── icon_mad.gif + │   │   │   ├── icon_mrgreen.gif + │   │   │   ├── icon_neutral.gif + │   │   │   ├── icon_question.gif + │   │   │   ├── icon_razz.gif + │   │   │   ├── icon_redface.gif + │   │   │   ├── icon_rolleyes.gif + │   │   │   ├── icon_sad.gif + │   │   │   ├── icon_smile.gif + │   │   │   ├── icon_surprised.gif + │   │   │   ├── icon_twisted.gif + │   │   │   ├── icon_wink.gif + │   │   │   ├── mrgreen.png + │   │   │   ├── rolleyes.png + │   │   │   └── simple-smile.png + │   │   ├── spinner-2x.gif + │   │   ├── spinner.gif + │   │   ├── toggle-arrow-2x.png + │   │   ├── toggle-arrow.png + │   │   ├── uploader-icons-2x.png + │   │   ├── uploader-icons.png + │   │   ├── w-logo-blue.png + │   │   ├── w-logo-blue-white-bg.png + │   │   ├── wpicons-2x.png + │   │   ├── wpicons.png + │   │   ├── wpspin-2x.gif + │   │   ├── wpspin.gif + │   │   ├── xit-2x.gif + │   │   └── xit.gif + │   ├── interactivity-api + │   │   ├── class-wp-interactivity-api-directives-processor.php + │   │   ├── class-wp-interactivity-api.php + │   │   └── interactivity-api.php + │   ├── IXR + │   │   ├── class-IXR-base64.php + │   │   ├── class-IXR-clientmulticall.php + │   │   ├── class-IXR-client.php + │   │   ├── class-IXR-date.php + │   │   ├── class-IXR-error.php + │   │   ├── class-IXR-introspectionserver.php + │   │   ├── class-IXR-message.php + │   │   ├── class-IXR-request.php + │   │   ├── class-IXR-server.php + │   │   └── class-IXR-value.php + │   ├── js + │   │   ├── admin-bar.js + │   │   ├── admin-bar.min.js + │   │   ├── api-request.js + │   │   ├── api-request.min.js + │   │   ├── autosave.js + │   │   ├── autosave.min.js + │   │   ├── backbone.js + │   │   ├── backbone.min.js + │   │   ├── clipboard.js + │   │   ├── clipboard.min.js + │   │   ├── codemirror + │   │   │   ├── codemirror.min.css + │   │   │   ├── codemirror.min.js + │   │   │   ├── csslint.js + │   │   │   ├── espree.min.js + │   │   │   ├── esprima.js + │   │   │   ├── fakejshint.js + │   │   │   ├── htmlhint.js + │   │   │   ├── htmlhint-kses.js + │   │   │   ├── javascript-lint.js + │   │   │   └── jsonlint.js + │   │   ├── colorpicker.js + │   │   ├── colorpicker.min.js + │   │   ├── comment-reply.js + │   │   ├── comment-reply.min.js + │   │   ├── crop + │   │   │   ├── cropper.css + │   │   │   ├── cropper.js + │   │   │   ├── marqueeHoriz.gif + │   │   │   └── marqueeVert.gif + │   │   ├── customize-base.js + │   │   ├── customize-base.min.js + │   │   ├── customize-loader.js + │   │   ├── customize-loader.min.js + │   │   ├── customize-models.js + │   │   ├── customize-models.min.js + │   │   ├── customize-preview.js + │   │   ├── customize-preview.min.js + │   │   ├── customize-preview-nav-menus.js + │   │   ├── customize-preview-nav-menus.min.js + │   │   ├── customize-preview-widgets.js + │   │   ├── customize-preview-widgets.min.js + │   │   ├── customize-selective-refresh.js + │   │   ├── customize-selective-refresh.min.js + │   │   ├── customize-views.js + │   │   ├── customize-views.min.js + │   │   ├── dist + │   │   │   ├── a11y.js + │   │   │   ├── a11y.min.asset.php + │   │   │   ├── a11y.min.js + │   │   │   ├── annotations.js + │   │   │   ├── annotations.min.asset.php + │   │   │   ├── annotations.min.js + │   │   │   ├── api-fetch.js + │   │   │   ├── api-fetch.min.asset.php + │   │   │   ├── api-fetch.min.js + │   │   │   ├── autop.js + │   │   │   ├── autop.min.asset.php + │   │   │   ├── autop.min.js + │   │   │   ├── base-styles.js + │   │   │   ├── base-styles.min.asset.php + │   │   │   ├── base-styles.min.js + │   │   │   ├── blob.js + │   │   │   ├── blob.min.asset.php + │   │   │   ├── blob.min.js + │   │   │   ├── block-directory.js + │   │   │   ├── block-directory.min.asset.php + │   │   │   ├── block-directory.min.js + │   │   │   ├── block-editor.js + │   │   │   ├── block-editor.min.asset.php + │   │   │   ├── block-editor.min.js + │   │   │   ├── block-library.js + │   │   │   ├── block-library.min.asset.php + │   │   │   ├── block-library.min.js + │   │   │   ├── block-serialization-default-parser.js + │   │   │   ├── block-serialization-default-parser.min.asset.php + │   │   │   ├── block-serialization-default-parser.min.js + │   │   │   ├── block-serialization-spec-parser.js + │   │   │   ├── block-serialization-spec-parser.min.asset.php + │   │   │   ├── block-serialization-spec-parser.min.js + │   │   │   ├── blocks.js + │   │   │   ├── blocks.min.asset.php + │   │   │   ├── blocks.min.js + │   │   │   ├── commands.js + │   │   │   ├── commands.min.asset.php + │   │   │   ├── commands.min.js + │   │   │   ├── components.js + │   │   │   ├── components.min.asset.php + │   │   │   ├── components.min.js + │   │   │   ├── compose.js + │   │   │   ├── compose.min.asset.php + │   │   │   ├── compose.min.js + │   │   │   ├── core-commands.js + │   │   │   ├── core-commands.min.asset.php + │   │   │   ├── core-commands.min.js + │   │   │   ├── core-data.js + │   │   │   ├── core-data.min.asset.php + │   │   │   ├── core-data.min.js + │   │   │   ├── customize-widgets.js + │   │   │   ├── customize-widgets.min.asset.php + │   │   │   ├── customize-widgets.min.js + │   │   │   ├── data-controls.js + │   │   │   ├── data-controls.min.asset.php + │   │   │   ├── data-controls.min.js + │   │   │   ├── data.js + │   │   │   ├── data.min.asset.php + │   │   │   ├── data.min.js + │   │   │   ├── date.js + │   │   │   ├── date.min.asset.php + │   │   │   ├── date.min.js + │   │   │   ├── deprecated.js + │   │   │   ├── deprecated.min.asset.php + │   │   │   ├── deprecated.min.js + │   │   │   ├── development + │   │   │   ├── dom.js + │   │   │   ├── dom.min.asset.php + │   │   │   ├── dom.min.js + │   │   │   ├── dom-ready.js + │   │   │   ├── dom-ready.min.asset.php + │   │   │   ├── dom-ready.min.js + │   │   │   ├── editor.js + │   │   │   ├── editor.min.asset.php + │   │   │   ├── editor.min.js + │   │   │   ├── edit-post.js + │   │   │   ├── edit-post.min.asset.php + │   │   │   ├── edit-post.min.js + │   │   │   ├── edit-site.js + │   │   │   ├── edit-site.min.asset.php + │   │   │   ├── edit-site.min.js + │   │   │   ├── edit-widgets.js + │   │   │   ├── edit-widgets.min.asset.php + │   │   │   ├── edit-widgets.min.js + │   │   │   ├── element.js + │   │   │   ├── element.min.asset.php + │   │   │   ├── element.min.js + │   │   │   ├── escape-html.js + │   │   │   ├── escape-html.min.asset.php + │   │   │   ├── escape-html.min.js + │   │   │   ├── format-library.js + │   │   │   ├── format-library.min.asset.php + │   │   │   ├── format-library.min.js + │   │   │   ├── hooks.js + │   │   │   ├── hooks.min.asset.php + │   │   │   ├── hooks.min.js + │   │   │   ├── html-entities.js + │   │   │   ├── html-entities.min.asset.php + │   │   │   ├── html-entities.min.js + │   │   │   ├── i18n.js + │   │   │   ├── i18n.min.asset.php + │   │   │   ├── i18n.min.js + │   │   │   ├── is-shallow-equal.js + │   │   │   ├── is-shallow-equal.min.asset.php + │   │   │   ├── is-shallow-equal.min.js + │   │   │   ├── keyboard-shortcuts.js + │   │   │   ├── keyboard-shortcuts.min.asset.php + │   │   │   ├── keyboard-shortcuts.min.js + │   │   │   ├── keycodes.js + │   │   │   ├── keycodes.min.asset.php + │   │   │   ├── keycodes.min.js + │   │   │   ├── list-reusable-blocks.js + │   │   │   ├── list-reusable-blocks.min.asset.php + │   │   │   ├── list-reusable-blocks.min.js + │   │   │   ├── media-utils.js + │   │   │   ├── media-utils.min.asset.php + │   │   │   ├── media-utils.min.js + │   │   │   ├── notices.js + │   │   │   ├── notices.min.asset.php + │   │   │   ├── notices.min.js + │   │   │   ├── nux.js + │   │   │   ├── nux.min.asset.php + │   │   │   ├── nux.min.js + │   │   │   ├── patterns.js + │   │   │   ├── patterns.min.asset.php + │   │   │   ├── patterns.min.js + │   │   │   ├── plugins.js + │   │   │   ├── plugins.min.asset.php + │   │   │   ├── plugins.min.js + │   │   │   ├── preferences.js + │   │   │   ├── preferences.min.asset.php + │   │   │   ├── preferences.min.js + │   │   │   ├── preferences-persistence.js + │   │   │   ├── preferences-persistence.min.asset.php + │   │   │   ├── preferences-persistence.min.js + │   │   │   ├── primitives.js + │   │   │   ├── primitives.min.asset.php + │   │   │   ├── primitives.min.js + │   │   │   ├── priority-queue.js + │   │   │   ├── priority-queue.min.asset.php + │   │   │   ├── priority-queue.min.js + │   │   │   ├── private-apis.js + │   │   │   ├── private-apis.min.asset.php + │   │   │   ├── private-apis.min.js + │   │   │   ├── react-i18n.js + │   │   │   ├── react-i18n.min.asset.php + │   │   │   ├── react-i18n.min.js + │   │   │   ├── react-refresh-entry.min.asset.php + │   │   │   ├── react-refresh-entry.min.js + │   │   │   ├── react-refresh-runtime.min.asset.php + │   │   │   ├── react-refresh-runtime.min.js + │   │   │   ├── redux-routine.js + │   │   │   ├── redux-routine.min.asset.php + │   │   │   ├── redux-routine.min.js + │   │   │   ├── reusable-blocks.js + │   │   │   ├── reusable-blocks.min.asset.php + │   │   │   ├── reusable-blocks.min.js + │   │   │   ├── rich-text.js + │   │   │   ├── rich-text.min.asset.php + │   │   │   ├── rich-text.min.js + │   │   │   ├── router.js + │   │   │   ├── router.min.asset.php + │   │   │   ├── router.min.js + │   │   │   ├── script-modules + │   │   │   ├── server-side-render.js + │   │   │   ├── server-side-render.min.asset.php + │   │   │   ├── server-side-render.min.js + │   │   │   ├── shortcode.js + │   │   │   ├── shortcode.min.asset.php + │   │   │   ├── shortcode.min.js + │   │   │   ├── style-engine.js + │   │   │   ├── style-engine.min.asset.php + │   │   │   ├── style-engine.min.js + │   │   │   ├── sync.js + │   │   │   ├── sync.min.asset.php + │   │   │   ├── sync.min.js + │   │   │   ├── theme.js + │   │   │   ├── theme.min.asset.php + │   │   │   ├── theme.min.js + │   │   │   ├── token-list.js + │   │   │   ├── token-list.min.asset.php + │   │   │   ├── token-list.min.js + │   │   │   ├── undo-manager.js + │   │   │   ├── undo-manager.min.asset.php + │   │   │   ├── undo-manager.min.js + │   │   │   ├── upload-media.js + │   │   │   ├── upload-media.min.asset.php + │   │   │   ├── upload-media.min.js + │   │   │   ├── url.js + │   │   │   ├── url.min.asset.php + │   │   │   ├── url.min.js + │   │   │   ├── vendor + │   │   │   ├── viewport.js + │   │   │   ├── viewport.min.asset.php + │   │   │   ├── viewport.min.js + │   │   │   ├── warning.js + │   │   │   ├── warning.min.asset.php + │   │   │   ├── warning.min.js + │   │   │   ├── widgets.js + │   │   │   ├── widgets.min.asset.php + │   │   │   ├── widgets.min.js + │   │   │   ├── wordcount.js + │   │   │   ├── wordcount.min.asset.php + │   │   │   └── wordcount.min.js + │   │   ├── heartbeat.js + │   │   ├── heartbeat.min.js + │   │   ├── hoverIntent.js + │   │   ├── hoverintent-js.min.js + │   │   ├── hoverIntent.min.js + │   │   ├── imagesloaded.min.js + │   │   ├── imgareaselect + │   │   │   ├── border-anim-h.gif + │   │   │   ├── border-anim-v.gif + │   │   │   ├── imgareaselect.css + │   │   │   ├── jquery.imgareaselect.js + │   │   │   └── jquery.imgareaselect.min.js + │   │   ├── jcrop + │   │   │   ├── Jcrop.gif + │   │   │   ├── jquery.Jcrop.min.css + │   │   │   └── jquery.Jcrop.min.js + │   │   ├── jquery + │   │   │   ├── jquery.color.min.js + │   │   │   ├── jquery.form.js + │   │   │   ├── jquery.form.min.js + │   │   │   ├── jquery.hotkeys.js + │   │   │   ├── jquery.hotkeys.min.js + │   │   │   ├── jquery.js + │   │   │   ├── jquery.masonry.min.js + │   │   │   ├── jquery-migrate.js + │   │   │   ├── jquery-migrate.min.js + │   │   │   ├── jquery.min.js + │   │   │   ├── jquery.query.js + │   │   │   ├── jquery.schedule.js + │   │   │   ├── jquery.serialize-object.js + │   │   │   ├── jquery.table-hotkeys.js + │   │   │   ├── jquery.table-hotkeys.min.js + │   │   │   ├── jquery.ui.touch-punch.js + │   │   │   ├── suggest.js + │   │   │   ├── suggest.min.js + │   │   │   └── ui + │   │   ├── json2.js + │   │   ├── json2.min.js + │   │   ├── masonry.min.js + │   │   ├── mce-view.js + │   │   ├── mce-view.min.js + │   │   ├── media-audiovideo.js + │   │   ├── media-audiovideo.min.js + │   │   ├── media-editor.js + │   │   ├── media-editor.min.js + │   │   ├── mediaelement + │   │   │   ├── mediaelement-and-player.js + │   │   │   ├── mediaelement-and-player.min.js + │   │   │   ├── mediaelement.js + │   │   │   ├── mediaelement-migrate.js + │   │   │   ├── mediaelement-migrate.min.js + │   │   │   ├── mediaelement.min.js + │   │   │   ├── mediaelementplayer.css + │   │   │   ├── mediaelementplayer-legacy.css + │   │   │   ├── mediaelementplayer-legacy.min.css + │   │   │   ├── mediaelementplayer.min.css + │   │   │   ├── mejs-controls.png + │   │   │   ├── mejs-controls.svg + │   │   │   ├── renderers + │   │   │   ├── wp-mediaelement.css + │   │   │   ├── wp-mediaelement.js + │   │   │   ├── wp-mediaelement.min.css + │   │   │   ├── wp-mediaelement.min.js + │   │   │   ├── wp-playlist.js + │   │   │   └── wp-playlist.min.js + │   │   ├── media-grid.js + │   │   ├── media-grid.min.js + │   │   ├── media-models.js + │   │   ├── media-models.min.js + │   │   ├── media-views.js + │   │   ├── media-views.min.js + │   │   ├── plupload + │   │   │   ├── handlers.js + │   │   │   ├── handlers.min.js + │   │   │   ├── license.txt + │   │   │   ├── moxie.js + │   │   │   ├── moxie.min.js + │   │   │   ├── plupload.js + │   │   │   ├── plupload.min.js + │   │   │   ├── wp-plupload.js + │   │   │   └── wp-plupload.min.js + │   │   ├── quicktags.js + │   │   ├── quicktags.min.js + │   │   ├── shortcode.js + │   │   ├── shortcode.min.js + │   │   ├── swfobject.js + │   │   ├── swfobject.min.js + │   │   ├── swfupload + │   │   │   ├── handlers.js + │   │   │   ├── handlers.min.js + │   │   │   ├── license.txt + │   │   │   └── swfupload.js + │   │   ├── thickbox + │   │   │   ├── loadingAnimation.gif + │   │   │   ├── macFFBgHack.png + │   │   │   ├── thickbox.css + │   │   │   └── thickbox.js + │   │   ├── tinymce + │   │   │   ├── langs + │   │   │   ├── license.txt + │   │   │   ├── plugins + │   │   │   ├── skins + │   │   │   ├── themes + │   │   │   ├── tinymce.min.js + │   │   │   ├── tiny_mce_popup.js + │   │   │   ├── utils + │   │   │   ├── wp-tinymce.js + │   │   │   └── wp-tinymce.php + │   │   ├── twemoji.js + │   │   ├── twemoji.min.js + │   │   ├── tw-sack.js + │   │   ├── tw-sack.min.js + │   │   ├── underscore.js + │   │   ├── underscore.min.js + │   │   ├── utils.js + │   │   ├── utils.min.js + │   │   ├── wp-ajax-response.js + │   │   ├── wp-ajax-response.min.js + │   │   ├── wp-api.js + │   │   ├── wp-api.min.js + │   │   ├── wp-auth-check.js + │   │   ├── wp-auth-check.min.js + │   │   ├── wp-backbone.js + │   │   ├── wp-backbone.min.js + │   │   ├── wp-custom-header.js + │   │   ├── wp-custom-header.min.js + │   │   ├── wpdialog.js + │   │   ├── wpdialog.min.js + │   │   ├── wp-embed.js + │   │   ├── wp-embed.min.js + │   │   ├── wp-embed-template.js + │   │   ├── wp-embed-template.min.js + │   │   ├── wp-emoji.js + │   │   ├── wp-emoji-loader.js + │   │   ├── wp-emoji-loader.min.js + │   │   ├── wp-emoji.min.js + │   │   ├── wp-emoji-release.min.js + │   │   ├── wplink.js + │   │   ├── wplink.min.js + │   │   ├── wp-list-revisions.js + │   │   ├── wp-list-revisions.min.js + │   │   ├── wp-lists.js + │   │   ├── wp-lists.min.js + │   │   ├── wp-pointer.js + │   │   ├── wp-pointer.min.js + │   │   ├── wp-sanitize.js + │   │   ├── wp-sanitize.min.js + │   │   ├── wp-util.js + │   │   ├── wp-util.min.js + │   │   ├── zxcvbn-async.js + │   │   ├── zxcvbn-async.min.js + │   │   └── zxcvbn.min.js + │   ├── kses.php + │   ├── l10n + │   │   ├── class-wp-translation-controller.php + │   │   ├── class-wp-translation-file-mo.php + │   │   ├── class-wp-translation-file.php + │   │   ├── class-wp-translation-file-php.php + │   │   └── class-wp-translations.php + │   ├── l10n.php + │   ├── link-template.php + │   ├── load.php + │   ├── locale.php + │   ├── media.php + │   ├── media-template.php + │   ├── meta.php + │   ├── ms-blogs.php + │   ├── ms-default-constants.php + │   ├── ms-default-filters.php + │   ├── ms-deprecated.php + │   ├── ms-files.php + │   ├── ms-functions.php + │   ├── ms-load.php + │   ├── ms-network.php + │   ├── ms-settings.php + │   ├── ms-site.php + │   ├── nav-menu.php + │   ├── nav-menu-template.php + │   ├── option.php + │   ├── php-ai-client + │   │   ├── autoload.php + │   │   ├── src + │   │   │   ├── AiClient.php + │   │   │   ├── Builders + │   │   │   ├── Common + │   │   │   ├── Events + │   │   │   ├── Files + │   │   │   ├── Messages + │   │   │   ├── Operations + │   │   │   ├── polyfills.php + │   │   │   ├── Providers + │   │   │   ├── Results + │   │   │   └── Tools + │   │   └── third-party + │   │   ├── Http + │   │   ├── Nyholm + │   │   └── Psr + │   ├── php-compat + │   │   └── readonly.php + │   ├── PHPMailer + │   │   ├── DSNConfigurator.php + │   │   ├── Exception.php + │   │   ├── OAuth.php + │   │   ├── OAuthTokenProvider.php + │   │   ├── PHPMailer.php + │   │   ├── POP3.php + │   │   └── SMTP.php + │   ├── pluggable-deprecated.php + │   ├── pluggable.php + │   ├── plugin.php + │   ├── pomo + │   │   ├── entry.php + │   │   ├── mo.php + │   │   ├── plural-forms.php + │   │   ├── po.php + │   │   ├── streams.php + │   │   └── translations.php + │   ├── post-formats.php + │   ├── post.php + │   ├── post-template.php + │   ├── post-thumbnail-template.php + │   ├── query.php + │   ├── registration-functions.php + │   ├── registration.php + │   ├── Requests + │   │   ├── library + │   │   │   └── Requests.php + │   │   └── src + │   │   ├── Auth + │   │   ├── Auth.php + │   │   ├── Autoload.php + │   │   ├── Capability.php + │   │   ├── Cookie + │   │   ├── Cookie.php + │   │   ├── Exception + │   │   ├── Exception.php + │   │   ├── HookManager.php + │   │   ├── Hooks.php + │   │   ├── IdnaEncoder.php + │   │   ├── Ipv6.php + │   │   ├── Iri.php + │   │   ├── Port.php + │   │   ├── Proxy + │   │   ├── Proxy.php + │   │   ├── Requests.php + │   │   ├── Response + │   │   ├── Response.php + │   │   ├── Session.php + │   │   ├── Ssl.php + │   │   ├── Transport + │   │   ├── Transport.php + │   │   └── Utility + │   ├── rest-api + │   │   ├── class-wp-rest-request.php + │   │   ├── class-wp-rest-response.php + │   │   ├── class-wp-rest-server.php + │   │   ├── endpoints + │   │   │   ├── class-wp-rest-abilities-v1-categories-controller.php + │   │   │   ├── class-wp-rest-abilities-v1-list-controller.php + │   │   │   ├── class-wp-rest-abilities-v1-run-controller.php + │   │   │   ├── class-wp-rest-application-passwords-controller.php + │   │   │   ├── class-wp-rest-attachments-controller.php + │   │   │   ├── class-wp-rest-autosaves-controller.php + │   │   │   ├── class-wp-rest-block-directory-controller.php + │   │   │   ├── class-wp-rest-block-pattern-categories-controller.php + │   │   │   ├── class-wp-rest-block-patterns-controller.php + │   │   │   ├── class-wp-rest-block-renderer-controller.php + │   │   │   ├── class-wp-rest-blocks-controller.php + │   │   │   ├── class-wp-rest-block-types-controller.php + │   │   │   ├── class-wp-rest-comments-controller.php + │   │   │   ├── class-wp-rest-controller.php + │   │   │   ├── class-wp-rest-edit-site-export-controller.php + │   │   │   ├── class-wp-rest-font-collections-controller.php + │   │   │   ├── class-wp-rest-font-faces-controller.php + │   │   │   ├── class-wp-rest-font-families-controller.php + │   │   │   ├── class-wp-rest-global-styles-controller.php + │   │   │   ├── class-wp-rest-global-styles-revisions-controller.php + │   │   │   ├── class-wp-rest-icons-controller.php + │   │   │   ├── class-wp-rest-menu-items-controller.php + │   │   │   ├── class-wp-rest-menu-locations-controller.php + │   │   │   ├── class-wp-rest-menus-controller.php + │   │   │   ├── class-wp-rest-navigation-fallback-controller.php + │   │   │   ├── class-wp-rest-pattern-directory-controller.php + │   │   │   ├── class-wp-rest-plugins-controller.php + │   │   │   ├── class-wp-rest-posts-controller.php + │   │   │   ├── class-wp-rest-post-statuses-controller.php + │   │   │   ├── class-wp-rest-post-types-controller.php + │   │   │   ├── class-wp-rest-revisions-controller.php + │   │   │   ├── class-wp-rest-search-controller.php + │   │   │   ├── class-wp-rest-settings-controller.php + │   │   │   ├── class-wp-rest-sidebars-controller.php + │   │   │   ├── class-wp-rest-site-health-controller.php + │   │   │   ├── class-wp-rest-taxonomies-controller.php + │   │   │   ├── class-wp-rest-template-autosaves-controller.php + │   │   │   ├── class-wp-rest-template-revisions-controller.php + │   │   │   ├── class-wp-rest-templates-controller.php + │   │   │   ├── class-wp-rest-terms-controller.php + │   │   │   ├── class-wp-rest-themes-controller.php + │   │   │   ├── class-wp-rest-url-details-controller.php + │   │   │   ├── class-wp-rest-users-controller.php + │   │   │   ├── class-wp-rest-widgets-controller.php + │   │   │   └── class-wp-rest-widget-types-controller.php + │   │   ├── fields + │   │   │   ├── class-wp-rest-comment-meta-fields.php + │   │   │   ├── class-wp-rest-meta-fields.php + │   │   │   ├── class-wp-rest-post-meta-fields.php + │   │   │   ├── class-wp-rest-term-meta-fields.php + │   │   │   └── class-wp-rest-user-meta-fields.php + │   │   └── search + │   │   ├── class-wp-rest-post-format-search-handler.php + │   │   ├── class-wp-rest-post-search-handler.php + │   │   ├── class-wp-rest-search-handler.php + │   │   └── class-wp-rest-term-search-handler.php + │   ├── rest-api.php + │   ├── revision.php + │   ├── rewrite.php + │   ├── robots-template.php + │   ├── rss-functions.php + │   ├── rss.php + │   ├── script-loader.php + │   ├── script-modules.php + │   ├── session.php + │   ├── shortcodes.php + │   ├── SimplePie + │   │   ├── autoloader.php + │   │   ├── library + │   │   │   ├── SimplePie + │   │   │   └── SimplePie.php + │   │   └── src + │   │   ├── Author.php + │   │   ├── Cache + │   │   ├── Cache.php + │   │   ├── Caption.php + │   │   ├── Category.php + │   │   ├── Content + │   │   ├── Copyright.php + │   │   ├── Credit.php + │   │   ├── Enclosure.php + │   │   ├── Exception.php + │   │   ├── File.php + │   │   ├── Gzdecode.php + │   │   ├── HTTP + │   │   ├── IRI.php + │   │   ├── Item.php + │   │   ├── Locator.php + │   │   ├── Misc.php + │   │   ├── Net + │   │   ├── Parse + │   │   ├── Parser.php + │   │   ├── Rating.php + │   │   ├── RegistryAware.php + │   │   ├── Registry.php + │   │   ├── Restriction.php + │   │   ├── Sanitize.php + │   │   ├── SimplePie.php + │   │   ├── Source.php + │   │   └── XML + │   ├── sitemaps + │   │   ├── class-wp-sitemaps-index.php + │   │   ├── class-wp-sitemaps.php + │   │   ├── class-wp-sitemaps-provider.php + │   │   ├── class-wp-sitemaps-registry.php + │   │   ├── class-wp-sitemaps-renderer.php + │   │   ├── class-wp-sitemaps-stylesheet.php + │   │   └── providers + │   │   ├── class-wp-sitemaps-posts.php + │   │   ├── class-wp-sitemaps-taxonomies.php + │   │   └── class-wp-sitemaps-users.php + │   ├── sitemaps.php + │   ├── sodium_compat + │   │   ├── autoload.php + │   │   ├── autoload-php7.php + │   │   ├── composer.json + │   │   ├── lib + │   │   │   ├── constants.php + │   │   │   ├── namespaced.php + │   │   │   ├── php72compat_const.php + │   │   │   ├── php72compat.php + │   │   │   ├── php84compat_const.php + │   │   │   ├── php84compat.php + │   │   │   ├── ristretto255.php + │   │   │   ├── sodium_compat.php + │   │   │   └── stream-xchacha20.php + │   │   ├── LICENSE + │   │   ├── namespaced + │   │   │   ├── Compat.php + │   │   │   ├── Core + │   │   │   ├── Crypto.php + │   │   │   └── File.php + │   │   └── src + │   │   ├── Compat.php + │   │   ├── Core + │   │   ├── Core32 + │   │   ├── Crypto32.php + │   │   ├── Crypto.php + │   │   ├── File.php + │   │   ├── PHP52 + │   │   └── SodiumException.php + │   ├── speculative-loading.php + │   ├── spl-autoload-compat.php + │   ├── style-engine + │   │   ├── class-wp-style-engine-css-declarations.php + │   │   ├── class-wp-style-engine-css-rule.php + │   │   ├── class-wp-style-engine-css-rules-store.php + │   │   ├── class-wp-style-engine.php + │   │   └── class-wp-style-engine-processor.php + │   ├── style-engine.php + │   ├── taxonomy.php + │   ├── template-canvas.php + │   ├── template-loader.php + │   ├── template.php + │   ├── Text + │   │   ├── Diff + │   │   │   ├── Engine + │   │   │   ├── Renderer + │   │   │   └── Renderer.php + │   │   ├── Diff.php + │   │   └── Exception.php + │   ├── theme-compat + │   │   ├── comments.php + │   │   ├── embed-404.php + │   │   ├── embed-content.php + │   │   ├── embed.php + │   │   ├── footer-embed.php + │   │   ├── footer.php + │   │   ├── header-embed.php + │   │   ├── header.php + │   │   └── sidebar.php + │   ├── theme-i18n.json + │   ├── theme.json + │   ├── theme.php + │   ├── theme-previews.php + │   ├── theme-templates.php + │   ├── update.php + │   ├── user.php + │   ├── utf8.php + │   ├── vars.php + │   ├── version.php + │   ├── view-transitions.php + │   ├── widgets + │   │   ├── class-wp-nav-menu-widget.php + │   │   ├── class-wp-widget-archives.php + │   │   ├── class-wp-widget-block.php + │   │   ├── class-wp-widget-calendar.php + │   │   ├── class-wp-widget-categories.php + │   │   ├── class-wp-widget-custom-html.php + │   │   ├── class-wp-widget-links.php + │   │   ├── class-wp-widget-media-audio.php + │   │   ├── class-wp-widget-media-gallery.php + │   │   ├── class-wp-widget-media-image.php + │   │   ├── class-wp-widget-media.php + │   │   ├── class-wp-widget-media-video.php + │   │   ├── class-wp-widget-meta.php + │   │   ├── class-wp-widget-pages.php + │   │   ├── class-wp-widget-recent-comments.php + │   │   ├── class-wp-widget-recent-posts.php + │   │   ├── class-wp-widget-rss.php + │   │   ├── class-wp-widget-search.php + │   │   ├── class-wp-widget-tag-cloud.php + │   │   └── class-wp-widget-text.php + │   ├── widgets.php + │   ├── wp-db.php + │   └── wp-diff.php + ├── wp-links-opml.php + ├── wp-load.php + ├── wp-login.php + ├── wp-mail.php + ├── wp-settings.php + ├── wp-signup.php + ├── wp-trackback.php + └── xmlrpc.php + +593 directories, 3353 files diff --git a/theme/indy-wp-theme/assets/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg b/theme/indy-wp-theme/assets/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg new file mode 100644 index 0000000..d107a8c Binary files /dev/null and b/theme/indy-wp-theme/assets/70E14994-6BDF-4C4A-A31F-E49FC8EFB9D5.jpg differ diff --git a/theme/indy-wp-theme/assets/DEF AFZ-01.png.webp b/theme/indy-wp-theme/assets/DEF AFZ-01.png.webp new file mode 100644 index 0000000..9663b0f Binary files /dev/null and b/theme/indy-wp-theme/assets/DEF AFZ-01.png.webp differ diff --git a/theme/indy-wp-theme/assets/by-nc-sa.png b/theme/indy-wp-theme/assets/by-nc-sa.png new file mode 100644 index 0000000..0f2a0f1 Binary files /dev/null and b/theme/indy-wp-theme/assets/by-nc-sa.png differ diff --git a/theme/indy-wp-theme/assets/imcbannerlogo.gif b/theme/indy-wp-theme/assets/imcbannerlogo.gif new file mode 100644 index 0000000..b99d881 Binary files /dev/null and b/theme/indy-wp-theme/assets/imcbannerlogo.gif differ diff --git a/theme/indy-wp-theme/assets/imclogo2.gif b/theme/indy-wp-theme/assets/imclogo2.gif new file mode 100644 index 0000000..eacb84d Binary files /dev/null and b/theme/indy-wp-theme/assets/imclogo2.gif differ diff --git a/theme/indy-wp-theme/assets/indymedia-features.png b/theme/indy-wp-theme/assets/indymedia-features.png new file mode 100644 index 0000000..02ec77a Binary files /dev/null and b/theme/indy-wp-theme/assets/indymedia-features.png differ diff --git a/theme/indy-wp-theme/assets/rss-feed.png b/theme/indy-wp-theme/assets/rss-feed.png new file mode 100644 index 0000000..d64c669 Binary files /dev/null and b/theme/indy-wp-theme/assets/rss-feed.png differ