diff --git a/server/latest/Nextcloud_Developer_Manual.epub b/server/latest/Nextcloud_Developer_Manual.epub index 0380ecfc5a6..10f09522afe 100644 Binary files a/server/latest/Nextcloud_Developer_Manual.epub and b/server/latest/Nextcloud_Developer_Manual.epub differ diff --git a/server/latest/Nextcloud_Server_Administration_Manual.epub b/server/latest/Nextcloud_Server_Administration_Manual.epub index b01489fd7c8..491d8722db8 100644 Binary files a/server/latest/Nextcloud_Server_Administration_Manual.epub and b/server/latest/Nextcloud_Server_Administration_Manual.epub differ diff --git a/server/latest/Nextcloud_Server_Administration_Manual.pdf b/server/latest/Nextcloud_Server_Administration_Manual.pdf index e2f067bae5e..3f248800ca0 100644 Binary files a/server/latest/Nextcloud_Server_Administration_Manual.pdf and b/server/latest/Nextcloud_Server_Administration_Manual.pdf differ diff --git a/server/latest/Nextcloud_User_Manual.epub b/server/latest/Nextcloud_User_Manual.epub index a55331eee3e..c8e023011b2 100644 Binary files a/server/latest/Nextcloud_User_Manual.epub and b/server/latest/Nextcloud_User_Manual.epub differ diff --git a/server/latest/Nextcloud_User_Manual.pdf b/server/latest/Nextcloud_User_Manual.pdf index 1b2f96a1015..8c17b6e13ff 100644 Binary files a/server/latest/Nextcloud_User_Manual.pdf and b/server/latest/Nextcloud_User_Manual.pdf differ diff --git a/server/latest/admin_manual/ai/app_context_agent.html b/server/latest/admin_manual/ai/app_context_agent.html index 4256ad0eb09..f7879e01a63 100644 --- a/server/latest/admin_manual/ai/app_context_agent.html +++ b/server/latest/admin_manual/ai/app_context_agent.html @@ -224,6 +224,7 @@

App: Context Agent (context_agent)The context_agent app is the app that provides AI agent functionality in Nextcloud’s “Chat with AI” feature and acts as a backend for the Nextcloud Assistant app. Nextcloud can provide customer support upon request, please talk to your account manager for the possibilities.

When the Context Agent app is installed the AI Chat in Nextcloud Assistant will be able to interact with your Nextcloud apps via virtual integrations that are called “tools”. They allow the Assistant to perform actions in your Nextcloud upon sending instructions in a chat message. Tool groups are only available if their requirements are met. They can be en- and disabled in the AI admin settings.

+

Additionally, the app makes all tools available via an MCP server that you can connect third-party agents to (see below).

Currently implemented tools

@@ -867,7 +868,7 @@

InstallationNextcloud Assistant app is installed

  • Install AppAPI and setup a Deploy Demon

  • Install the “Context Agent” ExApp via the “Apps” page in the Nextcloud web admin user interface

  • -
  • Install a text generation backend like llm2 or integration_openai via the “Apps” page in Nextcloud

  • +
  • If you want to use the agent in the Nextcloud UI, install a text generation backend like llm2 or integration_openai via the “Apps” page in Nextcloud; if you only want to use the MCP server you don’t need these.

  • Model requirements

    @@ -877,7 +878,6 @@

    Model requirementsllm2 documentation on how to configure alternate models.

    diff --git a/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html b/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html index bec83737513..f9991928a86 100644 --- a/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html +++ b/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html @@ -1128,19 +1128,36 @@

    remember_login_cookie_lifetime
    'remember_login_cookie_lifetime' => 60 * 60 * 24 * 15,
     
    -

    Lifetime of the remember login cookie. This should be larger than the -session_lifetime. If it is set to 0, remember me is disabled.

    -

    Defaults to 60*60*24*15 seconds (15 days)

    +

    Lifetime of logins where the user selected “Remember me”, in seconds.

    +

    A value >``0`` means “Remember me” is available. +To make “Remember me” unavailable to users, set to 0.

    +

    To avoid unexpected expiry, set this higher than session_lifetime.

    +

    Despite the key name, this also affects server-side expiration of remembered +login tokens. Clearing browser cookies removes remembered login on that +browser, but does not itself revoke server-side remember tokens.

    +

    Defaults to 60*60*24*15 seconds (15 days).

    session_lifetime

    'session_lifetime' => 60 * 60 * 24,
     
    -

    The lifetime of a session after inactivity.

    -

    The maximum possible time is limited by the session.gc_maxlifetime php.ini setting -which would overwrite this option if it is less than the value in the config.php

    -

    Defaults to 60*60*24 seconds (24 hours)

    +

    Lifetime of authenticated sessions after inactivity, in seconds.

    +

    When “Remember me” is enabled, users may be transparently +re-authenticated after session expiry/logout while the remember-login +cookie remains valid.

    +

    To avoid earlier-than-expected remembered-login expiry, set +remember_login_cookie_lifetime higher than this value.

    +

    Effective behavior also depends on related settings: +- session_keepalive can extend active Web UI sessions via heartbeat requests. +- session_relaxed_expiry may allow sessions to persist longer than this value. +- auto_logout can enforce logout behavior in the Web UI.

    +

    The effective maximum retention also depends on PHP settings and external +session-backend cleanup policies, including (but not limited to) PHP’s +session.gc_maxlifetime and environment-specific cleanup behavior (e.g., distro +cron/tmpfiles policies and handler-specific GC behavior). These may override this +value.

    +

    Defaults to 60*60*24 seconds (24 hours).

    davstorage.request_timeout

    diff --git a/server/latest/admin_manual/contents.html b/server/latest/admin_manual/contents.html index d1c028db74f..0c41e45e4b4 100644 --- a/server/latest/admin_manual/contents.html +++ b/server/latest/admin_manual/contents.html @@ -1515,7 +1515,9 @@

    Table of contentsbackground:cron
  • background-job:delete
  • background-job:execute
  • +
  • background-job:history
  • background-job:list
  • +
  • background-job:running
  • background-job:worker
  • diff --git a/server/latest/admin_manual/occ_system.html b/server/latest/admin_manual/occ_system.html index 99e596c59c0..c8d868c2e6e 100644 --- a/server/latest/admin_manual/occ_system.html +++ b/server/latest/admin_manual/occ_system.html @@ -293,10 +293,12 @@

    admin-delegation:showbackground:cron use cron to run background jobs background:webcron use webcron to run background jobs background-job - background-job:delete remove a background job from the database - background-job:execute execute a single background job manually - background-job:list list background jobs - background-job:worker run a background job worker + background-job:delete Remove a background job from database + background-job:execute Execute a single background job manually + background-job:history Show past jobs + background-job:list List background jobs + background-job:running Show currently running jobs + background-job:worker Run a background job worker
    @@ -343,6 +345,25 @@

    background-job:execute

    +
    +

    background-job:history

    +

    Show job history with their duration and peak memory usage:

    +
    sudo -E -u www-data php occ background-job:history -l 5
    ++-------------------+-----------+-------------------------------------------+---------------------+-----------+---------+-----------+--------------+
    +| Run ID            | Status    | Class                                     | Started at          | Server ID | PID     | Duration  | Memory usage |
    ++-------------------+-----------+-------------------------------------------+---------------------+-----------+---------+-----------+--------------+
    +| 98109593040965632 | Succeeded | OC\Command\CommandJob                     | 2026-06-22 09:15:19 | 30        | 3847229 | 284 ms    | 251.6 MB     |
    +| 98109592927719424 | Succeeded | OC\FilesMetadata\Job\UpdateSingleMetadata | 2026-06-22 09:15:19 | 30        | 3847229 | 16 ms     | 222 MB       |
    +| 98109592852221952 | Succeeded | OC\FilesMetadata\Job\UpdateSingleMetadata | 2026-06-22 09:15:19 | 30        | 3847229 | 8 ms      | 221.4 MB     |
    +| 98109588267847680 | Succeeded | OC\Command\CommandJob                     | 2026-06-22 09:15:18 | 30        | 3847229 | 909 ms    | 293 MB       |
    +| 97985889682313216 | Crashed   | OCA\Text\Cron\Cleanup                     | 2026-06-22 01:15:17 | 30        | 3733554 | 594627 ms | 0 B          |
    ++-------------------+-----------+-------------------------------------------+---------------------+-----------+---------+-----------+--------------+
    +
    +
    +

    Use -l/--limit to control how many jobs are shown (default: 200), one or multiple +-c/--class to filter by job class, and one or multiple -s/--status to +filter by status (0: running, 1: succeeded, 2: failed, 3: crashed).

    +

    background-job:list

    List all background jobs registered in the database:

    @@ -360,6 +381,19 @@

    background-job:list-o / --offset to page through results.

    +
    +

    background-job:running

    +

    List all currently running jobs:

    +
    sudo -E -u www-data php occ background-job:running
    ++-------------------+-----------------------+---------------------+-----------+---------+---------------+
    +| Run ID            | Class                 | Started at          | Server ID | PID     | Running since |
    ++-------------------+-----------------------+---------------------+-----------+---------+---------------+
    +| 98108257692012544 | OC\Command\CommandJob | 2026-06-22 09:10:08 | 30        | 3845056 | 1 seconds     |
    ++-------------------+-----------------------+---------------------+-----------+---------+---------------+
    +
    +
    +

    Use -l / --limit to limit the number of job shown (default: 200).

    +

    background-job:worker

    Run a continuous background job worker. This is an alternative to system cron diff --git a/server/latest/admin_manual/searchindex.js b/server/latest/admin_manual/searchindex.js index a85c79d7cb4..ef4afa46192 100644 --- a/server/latest/admin_manual/searchindex.js +++ b/server/latest/admin_manual/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {".htaccess": [[133, "htaccess"]], "/dev/urandom is not readable by PHP": [[70, "dev-urandom-is-not-readable-by-php"]], "1st login": [[133, "st-login"], [145, "st-login"]], "AI as a Service": [[0, null]], "AJAX": [[57, "ajax"]], "APCu": [[59, "apcu"]], "Account data": [[110, "account-data"]], "Account delegation": [[116, "account-delegation"]], "Activating": [[58, "activating"]], "Activities are missing for shared files or team folders": [[53, "activities-are-missing-for-shared-files-or-team-folders"]], "Activities in Team Folders or External Storages": [[53, "activities-in-team-folders-or-external-storages"]], "Activity": [[60, "activity"]], "Activity and audit logs": [[110, "activity-and-audit-logs"]], "Activity app": [[53, null]], "Activity log": [[107, "activity-log"]], "Add a new user": [[76, "add-a-new-user"]], "Add an OAuth2 Application": [[68, "add-an-oauth2-application"]], "Add repository:": [[167, "add-repository"]], "Add user to group": [[76, "add-user-to-group"]], "Addendum: Running with a fully open model": [[5, "addendum-running-with-a-fully-open-model"]], "Additional Apache configurations": [[133, "additional-apache-configurations"]], "Additional configuration options": [[159, "additional-configuration-options"]], "Additional configuration options via occ": [[81, "additional-configuration-options-via-occ"]], "Additional file-based logging parameters": [[67, "additional-file-based-logging-parameters"]], "Additional notes for Redis vs. APCu on memory caching": [[59, "additional-notes-for-redis-vs-apcu-on-memory-caching"]], "Additional options": [[97, "additional-options"]], "Additional requirements when using large AI models": [[12, "additional-requirements-when-using-large-ai-models"]], "Address Book Sync": [[113, "address-book-sync"]], "Adjust chunk size on Nextcloud side": [[26, "adjust-chunk-size-on-nextcloud-side"]], "Admin audit log (Optional)": [[67, "admin-audit-log-optional"]], "Admin delegation": [[156, "admin-delegation"]], "Admin settings": [[53, "admin-settings"]], "Administration interface": [[113, "administration-interface"]], "Administration privileges (Delegation)": [[54, null]], "Administrative Group mapping": [[81, "administrative-group-mapping"]], "Advanced Deploy Options": [[94, null], [98, "advanced-deploy-options"]], "Advanced Windows deployment options": [[92, "advanced-windows-deployment-options"]], "Advanced compound conditions (matches)": [[67, "advanced-compound-conditions-matches"]], "Advanced server settings": [[160, "advanced-server-settings"]], "Advanced settings": [[43, "advanced-settings"], [81, "advanced-settings"]], "Advantages of upgrading PHP": [[134, "advantages-of-upgrading-php"]], "All emails keep getting rejected even though only one email address is invalid.": [[63, "all-emails-keep-getting-rejected-even-though-only-one-email-address-is-invalid"]], "All other configuration options": [[60, "all-other-configuration-options"]], "All parameters": [[120, "all-parameters"]], "Allow Users to Mount External Storage": [[40, "allow-users-to-mount-external-storage"]], "Allow access to CIFS/SMB": [[131, "allow-access-to-cifs-smb"]], "Allow access to FuseFS": [[131, "allow-access-to-fusefs"]], "Allow access to GPG for Rainloop": [[131, "allow-access-to-gpg-for-rainloop"]], "Allow access to LDAP server": [[131, "allow-access-to-ldap-server"]], "Allow access to NFS": [[131, "allow-access-to-nfs"]], "Allow access to SMTP/sendmail": [[131, "allow-access-to-smtp-sendmail"]], "Allow access to a remote database": [[131, "allow-access-to-a-remote-database"]], "Allow access to network memcache": [[131, "allow-access-to-network-memcache"]], "Allow access to remote network": [[131, "allow-access-to-remote-network"]], "Allow for groups in your collectives": [[18, "allow-for-groups-in-your-collectives"]], "Allow subscriptions on local network": [[112, "allow-subscriptions-on-local-network"]], "Alternate Code Locations": [[60, "alternate-code-locations"]], "Amazon S3": [[31, null]], "Android 11 and Below": [[55, "android-11-and-below"]], "Android 12 and Above": [[55, "android-12-and-above"]], "Android Deep Link Handling": [[55, null]], "Anti-abuse alerts": [[116, "anti-abuse-alerts"]], "Antivirus": [[156, "antivirus"]], "Antivirus scanner": [[56, null]], "Apache": [[26, "apache"], [123, "apache"]], "Apache Web server configuration": [[133, "apache-web-server-configuration"]], "Apache with mod_fcgid": [[26, "apache-with-mod-fcgid"]], "Apache with mod_proxy_fcgi": [[26, "apache-with-mod-proxy-fcgi"]], "Apache2": [[69, "apache2"]], "App passwords": [[73, "app-passwords"]], "App store": [[1, "app-store"], [2, "app-store"], [3, "app-store"], [4, "app-store"], [5, "app-store"], [6, "app-store"], [7, "app-store"], [8, "app-store"], [9, "app-store"], [10, "app-store"], [11, "app-store"]], "App: Context Agent (context_agent)": [[2, null]], "App: Context Chat": [[3, null]], "App: Live Transcription and Translation in Nextcloud Talk (live_transcription)": [[4, null]], "App: Local Image Generation (text2image_stablediffusion2)": [[9, null]], "App: Local Machine translation 2 (translate2)": [[11, null]], "App: Local Text-To-Speech (text2speech_kokoro)": [[10, null]], "App: Local Whisper Speech-To-Text (stt_whisper2)": [[7, null]], "App: Local large language model (llm2)": [[5, null]], "App: Recognize": [[6, null]], "App: Summary Bot (Talk chat summarize bot)": [[8, null]], "AppAPI (app_api) is now a default app": [[181, "appapi-app-api-is-now-a-default-app"], [182, "appapi-app-api-is-now-a-default-app"]], "AppAPI (app_api) setup checks expanded": [[183, "appapi-app-api-setup-checks-expanded"]], "AppAPI and External Apps": [[95, null]], "Applying a patch": [[136, "applying-a-patch"]], "Approaching Upgrades": [[148, "approaching-upgrades"]], "Approval/Suspend steps": [[188, "approval-suspend-steps"]], "Apps": [[16, "apps"], [60, "apps"], [88, null]], "Apps commands": [[149, "apps-commands"]], "Apps management": [[16, null]], "Apps management API": [[17, null]], "Apps, background jobs & config commands": [[149, null]], "Arguments": [[97, "arguments"], [98, "arguments"], [98, "id1"], [98, "id3"]], "Artificial Intelligence": [[13, null]], "Artificial intelligence tools": [[2, "artificial-intelligence-tools"]], "Assigning restricted and invisible tags": [[102, "assigning-restricted-and-invisible-tags"]], "Assigning tags to files": [[157, "assigning-tags-to-files"]], "Assistant configuration": [[1, "assistant-configuration"]], "Attachment size limit": [[116, "attachment-size-limit"]], "Authentication": [[73, null], [188, "authentication"]], "Authentication in Nextcloud": [[84, "authentication-in-nextcloud"]], "Auto-indexing": [[3, "auto-indexing"]], "Autoconfig": [[128, "autoconfig"]], "Autoconfig for your mail domain fails": [[118, "autoconfig-for-your-mail-domain-fails"]], "Automated clean-up": [[73, "automated-clean-up"]], "Automated clean-up of app password": [[181, "automated-clean-up-of-app-password"]], "Automated tagging of files": [[102, null]], "Automatic configurations examples": [[120, "automatic-configurations-examples"]], "Automatic database user creation": [[128, "automatic-database-user-creation"]], "Automatic setup": [[120, null]], "Available Storage Backends": [[40, "available-storage-backends"]], "Available rules": [[101, "available-rules"], [102, "available-rules"]], "Backend apps": [[15, "backend-apps"], [15, "id39"], [15, "id45"], [15, "id54"], [15, "id59"], [15, "id64"], [15, "id69"], [15, "id73"], [15, "id79"], [15, "id86"]], "Background job": [[44, "background-job"], [49, "background-job"]], "Background jobs": [[57, null], [112, "background-jobs"], [156, "background-jobs"]], "Background jobs selector": [[149, "background-jobs-selector"]], "Background sync interval": [[81, "background-sync-interval"], [116, "background-sync-interval"]], "Backup": [[140, null]], "Backup database": [[140, "backup-database"]], "Backup folders": [[140, "backup-folders"]], "Backups": [[28, "backups"], [107, "backups"]], "Bad signature error": [[28, "bad-signature-error"]], "Basic conditions": [[67, "basic-conditions"]], "Batch mode for command line based updater": [[147, "batch-mode-for-command-line-based-updater"]], "Bearer token validation": [[84, "bearer-token-validation"]], "Before You Enable Encryption": [[28, "before-you-enable-encryption"]], "Behavior": [[92, "behavior"], [92, "id3"]], "Beta releases and Release candidates": [[186, "beta-releases-and-release-candidates"]], "Better scheduling of activity emails": [[53, "better-scheduling-of-activity-emails"]], "BigInt (64bit) identifiers": [[19, null]], "Birthday calendar": [[112, "birthday-calendar"]], "Blocking user groups": [[101, "blocking-user-groups"]], "Bookmarks tools": [[2, "bookmarks-tools"]], "Branded clients": [[72, "branded-clients"]], "Broadcast": [[156, "broadcast"]], "Brute force protection": [[58, null]], "Brute force protection and load balancers/reverse proxies": [[58, "brute-force-protection-and-load-balancers-reverse-proxies"]], "Brute force protection vs fail2ban": [[58, "brute-force-protection-vs-fail2ban"]], "Bug reporting": [[186, "bug-reporting"]], "Bugs": [[138, "bugs"]], "Building a workflow": [[188, "building-a-workflow"]], "CPU Architecture and OS": [[134, "cpu-architecture-and-os"]], "Cache Directory location": [[59, "cache-directory-location"]], "Cache Key Prefix for Redis or Memcached": [[59, "cache-key-prefix-for-redis-or-memcached"]], "Cache warnings": [[70, "cache-warnings"]], "Caching": [[81, "caching"], [132, "id1"]], "Caddy": [[69, "caddy"]], "Calendar": [[118, "calendar"]], "Calendar / CalDAV": [[112, null]], "Calendar Object Events": [[187, "calendar-object-events"]], "Calendar server settings": [[112, "calendar-server-settings"]], "Calendar tools": [[2, "calendar-tools"]], "Can I create a script?": [[188, "can-i-create-a-script"]], "Canonical webroot": [[159, "canonical-webroot"]], "Case sensitive file system": [[38, "case-sensitive-file-system"]], "Certification Extension 2025/2026": [[89, "certification-extension-2025-2026"]], "Changelog": [[177, "changelog"]], "Changing installed features": [[92, "changing-installed-features"]], "Changing the display of federated shares": [[41, "changing-the-display-of-federated-shares"]], "Chat": [[1, "chat"]], "Chat with AI": [[1, "chat-with-ai"]], "Check the block signatures": [[29, "check-the-block-signatures"]], "Check the signature": [[29, "check-the-signature"]], "Checking for old files": [[30, "checking-for-old-files"]], "Choosing the right approach": [[92, "choosing-the-right-approach"]], "Chroot": [[124, "chroot"]], "Circles/teams tools": [[2, "circles-teams-tools"]], "Citrix Workspace known issues": [[93, "citrix-workspace-known-issues"]], "Code signing": [[137, null]], "Collabora Online": [[158, null]], "Collabora Online Server": [[159, "collabora-online-server"]], "Collectives": [[18, null], [88, null]], "Collectives and group_everyone": [[18, "collectives-and-group-everyone"]], "Collectives and guest users": [[18, "collectives-and-guest-users"]], "Combining tools": [[2, "combining-tools"]], "Command Line": [[113, "command-line"]], "Command line": [[93, "command-line"]], "Command line installation": [[156, "command-line-installation"]], "Command line upgrade": [[156, "command-line-upgrade"]], "Command reference": [[150, "command-reference"]], "Commands (OCC)": [[3, "commands-occ"]], "Comments": [[60, "comments"], [132, "comments"]], "Common failure cases": [[92, "common-failure-cases"]], "Common misconfigurations": [[101, "common-misconfigurations"], [105, "common-misconfigurations"]], "Common problems / error messages": [[138, "common-problems-error-messages"]], "Common settings": [[160, "common-settings"]], "Common templates": [[160, "common-templates"]], "Completing Installation": [[128, "completing-installation"]], "Compression": [[132, "compression"]], "Conditional logging (log.condition)": [[67, "conditional-logging-log-condition"]], "Config commands": [[149, "config-commands"]], "Config file": [[93, "config-file"]], "Configuration": [[1, "configuration"], [18, "configuration"], [48, "configuration"], [77, "configuration"], [81, "configuration"], [88, null], [116, "configuration"], [133, "configuration"], [159, null], [160, null], [167, "configuration"]], "Configuration Options": [[3, "configuration-options"]], "Configuration Parameters": [[60, null]], "Configuration keys": [[82, "configuration-keys"]], "Configuration reference": [[53, "configuration-reference"]], "Configuration tips": [[41, "configuration-tips"]], "Configurations preventing embedding": [[64, "configurations-preventing-embedding"]], "Configure the app in Nextcloud": [[166, "configure-the-app-in-nextcloud"]], "Configure theming via CLI": [[72, "configure-theming-via-cli"]], "Configuring": [[40, "configuring"]], "Configuring ClamAV on Nextcloud": [[56, "configuring-clamav-on-nextcloud"]], "Configuring Federation Sharing": [[41, null]], "Configuring ICAP on Nextcloud": [[56, "configuring-icap-on-nextcloud"]], "Configuring Nextcloud": [[26, "configuring-nextcloud"]], "Configuring Object Storage as Primary Storage": [[48, null]], "Configuring PHP": [[26, "configuring-php"]], "Configuring Sendmail/qmail": [[63, "configuring-sendmail-qmail"]], "Configuring a MySQL or MariaDB database": [[22, "configuring-a-mysql-or-mariadb-database"]], "Configuring alternate models": [[5, "configuring-alternate-models"]], "Configuring an SMTP server": [[63, "configuring-an-smtp-server"]], "Configuring through admin_audit app settings (legacy)": [[67, "configuring-through-admin-audit-app-settings-legacy"]], "Configuring trusted Nextcloud servers": [[41, "configuring-trusted-nextcloud-servers"]], "Configuring your Nextcloud for the Activity app": [[53, "configuring-your-nextcloud-for-the-activity-app"]], "Configuring your Nextcloud for the dashboard app": [[61, "configuring-your-nextcloud-for-the-dashboard-app"]], "Configuring your Web server": [[26, "configuring-your-web-server"]], "Confirm everything is working": [[56, "confirm-everything-is-working"]], "Connecting to Redis cluster over TLS": [[59, "connecting-to-redis-cluster-over-tls"]], "Connecting to single Redis server over TCP": [[59, "connecting-to-single-redis-server-over-tcp"]], "Connecting to single Redis server over TLS": [[59, "connecting-to-single-redis-server-over-tls"]], "Connecting to single Redis server over UNIX socket": [[59, "connecting-to-single-redis-server-over-unix-socket"]], "Connection issues with the macOS client on \u201cinsecure\u201d connections": [[93, "connection-issues-with-the-macos-client-on-insecure-connections"]], "Connection settings": [[81, "connection-settings"]], "Connections to remote servers": [[126, "connections-to-remote-servers"]], "Consequences": [[50, "consequences"]], "Considerations for shared storage": [[32, "considerations-for-shared-storage"]], "Contacts": [[118, "contacts"]], "Contacts / CardDAV": [[113, null]], "Contacts Interaction": [[114, null]], "Contacts tools": [[2, "contacts-tools"]], "Container Started": [[99, "container-started"]], "Container log rotation": [[96, "container-log-rotation"]], "Context Agent": [[1, "context-agent"], [15, "context-agent"]], "Context Chat": [[1, "context-chat"], [15, "context-chat"]], "Context Chat Search": [[15, "context-chat-search"]], "Controlling file versions and aging": [[44, null]], "Converting database type": [[20, null]], "Cookbook tools": [[2, "cookbook-tools"]], "Cookies": [[106, null]], "Cookies stored by Nextcloud": [[106, "cookies-stored-by-nextcloud"]], "Core Components": [[119, "core-components"]], "Core Dumps": [[93, "core-dumps"]], "Create Debug Archive": [[93, "create-debug-archive"]], "Create a group": [[75, "create-a-group"]], "Creating Federation Shares via public Link Share": [[41, "creating-federation-shares-via-public-link-share"]], "Creating a configuration": [[82, "creating-a-configuration"]], "Creating a new Federation Share": [[41, "creating-a-new-federation-share"]], "Creating a new user": [[85, "creating-a-new-user"]], "Creating assetlinks.json": [[55, "creating-assetlinks-json"]], "Creating persistent file Shares": [[43, "creating-persistent-file-shares"]], "Critical changes": [[177, "critical-changes"]], "Cron": [[57, "cron"]], "Cron job": [[124, "cron-job"]], "Cron jobs": [[57, "cron-jobs"]], "Currently implemented tools": [[2, "currently-implemented-tools"]], "Custom Tools using MCP": [[2, "custom-tools-using-mcp"]], "Custom fonts": [[159, "custom-fonts"]], "Custom public calendars": [[112, "custom-public-calendars"]], "Customize the appearance of Nextcloud": [[72, "customize-the-appearance-of-nextcloud"]], "Cybersecurity and physical security of the hardware": [[12, "cybersecurity-and-physical-security-of-the-hardware"]], "DAV & database commands": [[151, null]], "DAV commands": [[151, "dav-commands"]], "DAV sync tokens retention": [[178, "dav-sync-tokens-retention"]], "Dashboard app": [[61, null]], "Data Backup and Recovery Implications": [[48, "data-backup-and-recovery-implications"]], "Data Directory": [[120, "data-directory"]], "Data Not Encrypted": [[28, "data-not-encrypted"]], "Data Request app": [[108, "data-request-app"]], "Data conversions": [[151, "data-conversions"]], "Data directory location": [[128, "data-directory-location"]], "Data held by third-party services": [[110, "data-held-by-third-party-services"]], "Data retention": [[107, null], [112, "data-retention"], [113, "data-retention"], [114, "data-retention"]], "Database": [[123, "database"], [124, "database"]], "Database choice": [[128, "database-choice"]], "Database commands": [[151, "database-commands"]], "Database configuration": [[21, null], [22, null], [182, "database-configuration"]], "Database growing large due to activity data": [[53, "database-growing-large-due-to-activity-data"]], "Database insert problems on MySQL": [[118, "database-insert-problems-on-mysql"]], "Database requirements for MySQL / MariaDB": [[134, "database-requirements-for-mysql-mariadb"]], "Database \u201cREAD COMMITTED\u201d transaction isolation level": [[22, "database-read-committed-transaction-isolation-level"]], "Debug Mode": [[132, "debug-mode"]], "Debugging": [[150, "debugging"]], "Debugging sync issues": [[138, "debugging-sync-issues"]], "Deck tools (require Deck)": [[2, "deck-tools-require-deck"]], "Declarations": [[90, null]], "Decrease sync delay": [[38, "decrease-sync-delay"]], "Decrypt the blocks": [[29, "decrypt-the-blocks"]], "Decrypt the private key": [[29, "decrypt-the-private-key"]], "Decrypt/unseal the file key": [[29, "decrypt-unseal-the-file-key"]], "Decrypting Files / Disabling Encryption": [[28, "decrypting-files-disabling-encryption"]], "Decryption: decrypt the file": [[29, "decryption-decrypt-the-file"]], "Decryption: read the file key": [[29, "decryption-read-the-file-key"]], "Decryption: read the private key": [[29, "decryption-read-the-private-key"]], "Dedicated audit logging configuration": [[67, "dedicated-audit-logging-configuration"]], "Default AIO Deploy Daemon (Docker Socket Proxy)": [[96, "default-aio-deploy-daemon-docker-socket-proxy"]], "Default Parameters": [[60, "default-parameters"]], "Default audit log location": [[67, "default-audit-log-location"]], "Default file extension": [[71, "default-file-extension"]], "Default file templates": [[27, "default-file-templates"]], "Default language": [[66, "default-language"]], "Default locale": [[66, "default-locale"]], "Default scope values (reference)": [[77, "default-scope-values-reference"]], "Default user agent for outgoing requests changed": [[184, "default-user-agent-for-outgoing-requests-changed"]], "Defaults": [[60, "defaults"], [77, "defaults"]], "Defining trusted proxies": [[69, "defining-trusted-proxies"]], "Definitions": [[28, "definitions"]], "Delete a group": [[75, "delete-a-group"]], "Delete a user": [[76, "delete-a-user"]], "Deleted Items (trash bin)": [[49, null], [60, "deleted-items-trash-bin"]], "Deleting a configuration": [[82, "deleting-a-configuration"]], "Deleting a single configuration value": [[149, "deleting-a-single-configuration-value"]], "Deleting local Nextcloud users": [[83, "deleting-local-nextcloud-users"]], "Deleting users": [[85, "deleting-users"]], "Demote user from subadmin": [[76, "demote-user-from-subadmin"]], "Denied access": [[101, "denied-access"]], "Denying access to folders": [[101, "denying-access-to-folders"]], "DeployConfig": [[97, "deployconfig"]], "DeployConfig options": [[97, "deployconfig-options"]], "Deployment": [[126, "deployment"]], "Deployment configurations": [[96, null]], "Deployment recommendations": [[122, null]], "Derive the decryption key": [[29, "derive-the-decryption-key"]], "Derive the encryption key": [[29, "derive-the-encryption-key"]], "Desktop Client Deployment and Setup": [[92, null]], "Desktop Clients": [[91, null]], "Desktop client": [[134, "desktop-client"]], "Detecting changes made outside Nextcloud": [[40, "detecting-changes-made-outside-nextcloud"]], "Differences from External Storage": [[48, "differences-from-external-storage"]], "Directory settings": [[81, "directory-settings"]], "Disable": [[98, "disable"]], "Disable 3rdparty / non-shipped apps": [[138, "disable-3rdparty-non-shipped-apps"]], "Disable Debug Mode": [[126, "disable-debug-mode"]], "Disable TLS verification for IMAP/SMTP": [[116, "disable-tls-verification-for-imap-smtp"]], "Disable a user": [[76, "disable-a-user"]], "Disable an app": [[17, "disable-an-app"]], "Disable and enable users": [[85, "disable-and-enable-users"]], "Disable creation of example events": [[151, "disable-creation-of-example-events"]], "Disable preview image generation": [[126, "disable-preview-image-generation"]], "Disable profiles globally": [[77, "disable-profiles-globally"]], "Disable rich text editing": [[71, "disable-rich-text-editing"]], "Disable rich workspaces globally": [[71, "disable-rich-workspaces-globally"]], "Disabling automatic updates": [[92, "disabling-automatic-updates"]], "Disabling background scan task": [[56, "disabling-background-scan-task"]], "Disabling previews:": [[47, "disabling-previews"]], "Disabling the \u201cYour email address [\u2026] was changed\u201d email": [[85, "disabling-the-your-email-address-was-changed-email"]], "Disabling two-factor authentication": [[80, "disabling-two-factor-authentication"]], "Disallow write access to the whole web directory": [[131, "disallow-write-access-to-the-whole-web-directory"]], "Disk space usage": [[6, "disk-space-usage"]], "Distinguish between max expiration date and default expiration date": [[43, "distinguish-between-max-expiration-date-and-default-expiration-date"]], "Do we lock down Nextcloud?": [[137, "do-we-lock-down-nextcloud"]], "Docker": [[96, "docker"]], "Docker / Reverse Proxy / Nextcloud on 3 independent hosts - with HaRP container": [[96, "docker-reverse-proxy-nextcloud-on-3-independent-hosts-with-harp-container"]], "Docker Deploy Daemon": [[96, "docker-deploy-daemon"]], "Docker Deploy Daemon (Docker Socket Proxy)": [[96, "docker-deploy-daemon-docker-socket-proxy"]], "Docker Deploy Daemon (HaRP)": [[96, "docker-deploy-daemon-harp"]], "Docker Socket Proxy": [[95, "docker-socket-proxy"]], "Docker Socket Proxy security": [[96, "docker-socket-proxy-security"]], "Docker Socket Proxy vs HaRP": [[95, "docker-socket-proxy-vs-harp"]], "Docker on a remote host": [[96, "docker-on-a-remote-host"]], "Docker on a remote host - with HaRP container on the local host": [[96, "docker-on-a-remote-host-with-harp-container-on-the-local-host"]], "Document generation": [[15, "document-generation"]], "Domain Change": [[62, null]], "Downgrading": [[186, "downgrading"]], "Download Logs": [[99, "download-logs"]], "Drop Account app": [[108, "drop-account-app"]], "Duplicating server configurations": [[81, "duplicating-server-configurations"]], "During Version Creation": [[44, "during-version-creation"]], "During the Regular Background Job": [[44, "during-the-regular-background-job"]], "Edit data of a single group": [[75, "edit-data-of-a-single-group"]], "Edit data of a single user": [[76, "edit-data-of-a-single-user"]], "Editions": [[119, "editions"]], "Editor customization settings": [[160, "editor-customization-settings"]], "Email": [[63, null]], "Emails are still being sent after disabling notification emails": [[53, "emails-are-still-being-sent-after-disabling-notification-emails"]], "Enable": [[98, "enable"]], "Enable HTTP Strict Transport Security": [[126, "enable-http-strict-transport-security"]], "Enable HTTP/2 for faster loading": [[132, "enable-http-2-for-faster-loading"]], "Enable PHP OPcache": [[132, "enable-php-opcache"]], "Enable a user": [[76, "enable-a-user"]], "Enable access for external apps": [[159, "enable-access-for-external-apps"]], "Enable an app": [[17, "enable-an-app"]], "Enable hardening modules such as SELinux": [[126, "enable-hardening-modules-such-as-selinux"]], "Enable updates via the web interface": [[131, "enable-updates-via-the-web-interface"]], "Enabled": [[99, "enabled"]], "Enabling": [[40, "enabling"]], "Enabling Encryption (Step-by-Step)": [[28, "enabling-encryption-step-by-step"]], "Enabling MySQL 4-byte support": [[23, null]], "Enabling SSL": [[133, "enabling-ssl"]], "Enabling Windows compatible filenames": [[50, "enabling-windows-compatible-filenames"]], "Enabling apps via occ command": [[16, "enabling-apps-via-occ-command"]], "Enabling autocompletion": [[150, "enabling-autocompletion"]], "Enabling debug mode": [[63, "enabling-debug-mode"]], "Enabling email notifications": [[53, "enabling-email-notifications"]], "Enabling the antivirus app for files": [[56, "enabling-the-antivirus-app-for-files"]], "Enabling the dashboard app": [[61, "enabling-the-dashboard-app"]], "Enabling two-factor authentication": [[80, "enabling-two-factor-authentication"]], "Encrypt and decrypt all data": [[152, "encrypt-and-decrypt-all-data"]], "Encrypt the blocks": [[29, "encrypt-the-blocks"]], "Encrypt the private key": [[29, "encrypt-the-private-key"]], "Encrypt/seal the file key": [[29, "encrypt-seal-the-file-key"]], "Encrypted File Detection Limitations with ClamAV": [[56, "encrypted-file-detection-limitations-with-clamav"]], "Encrypting All Files": [[28, "encrypting-all-files"]], "Encrypting External Mountpoints and Team Folders": [[28, "encrypting-external-mountpoints-and-team-folders"]], "Encryption Method Comparison": [[28, "encryption-method-comparison"]], "Encryption commands": [[152, null]], "Encryption format": [[30, "encryption-format"]], "Encryption key cannot be found": [[28, "encryption-key-cannot-be-found"]], "Encryption key cannot be found with external storage or group folders": [[28, "encryption-key-cannot-be-found-with-external-storage-or-group-folders"]], "Encryption modules": [[152, "encryption-modules"]], "Encryption: encrypt the file": [[29, "encryption-encrypt-the-file"]], "Encryption: generate the file key": [[29, "encryption-generate-the-file-key"]], "End-of-life": [[186, "end-of-life"]], "Energy consumption": [[89, null]], "Enforcing two-factor authentication": [[80, "enforcing-two-factor-authentication"]], "Ensure that your Nextcloud instance is installed in a DMZ": [[126, "ensure-that-your-nextcloud-instance-is-installed-in-a-dmz"]], "Environment Variables": [[60, "environment-variables"], [94, "environment-variables"]], "Environment variables": [[150, "environment-variables"], [164, "environment-variables"]], "Errors": [[137, "errors"]], "Establishing the target database": [[20, "establishing-the-target-database"]], "Ethical AI Rating": [[6, "ethical-ai-rating"], [8, "ethical-ai-rating"], [11, "ethical-ai-rating"], [15, "ethical-ai-rating"]], "Event alarm types": [[112, "event-alarm-types"]], "Events": [[112, "events"]], "ExApps management": [[100, null]], "Example": [[17, "example"], [17, "id1"], [17, "id3"], [17, "id5"], [75, "example"], [75, "id1"], [75, "id3"], [75, "id5"], [75, "id8"], [76, "example"], [76, "id1"], [76, "id3"], [76, "id8"], [76, "id10"], [76, "id12"], [76, "id14"], [76, "id16"], [76, "id18"], [76, "id20"], [76, "id22"], [76, "id24"], [76, "id26"], [82, "example"], [82, "id1"], [82, "id3"], [82, "id5"], [102, "example"], [105, "example"]], "Example configuration": [[132, "example-configuration"]], "Example contact": [[113, "example-contact"]], "Example event": [[112, "example-event"]], "Example installation on CentOS 8": [[123, null]], "Example installation on OpenBSD": [[124, null]], "Example installation on Ubuntu 24.04 LTS": [[125, null]], "Example log entries": [[67, "example-log-entries"]], "Example workflows": [[188, "example-workflows"]], "Example: The login page": [[58, "example-the-login-page"]], "Examples": [[60, "examples"], [69, "examples"], [75, "examples"], [76, "examples"], [76, "id6"], [92, "examples"], [92, "id4"], [101, "examples"]], "Excluding IP addresses from brute force protection": [[58, "excluding-ip-addresses-from-brute-force-protection"]], "Excluding users from activity expiration": [[53, "excluding-users-from-activity-expiration"]], "Executing actions": [[102, "executing-actions"]], "Expert settings": [[81, "expert-settings"]], "Export and import calendars": [[151, "export-and-import-calendars"]], "Export threading data": [[118, "export-threading-data"]], "Exposed system address book": [[179, "exposed-system-address-book"]], "External Storage": [[40, null]], "External Storage authentication mechanisms": [[32, null]], "External media": [[133, "external-media"]], "External storage": [[101, "external-storage"]], "FAQ": [[95, "faq"], [137, "faq"], [188, "faq"]], "FAQ: How to lock profile visibility down": [[77, "faq-how-to-lock-profile-visibility-down"]], "FTP/FTPS": [[33, null]], "Fail2ban introduction": [[126, "fail2ban-introduction"]], "Fair Use Policy": [[138, "fair-use-policy"]], "Features": [[92, "features"]], "Features used by other apps": [[15, "features-used-by-other-apps"]], "Federated Cloud Sharing": [[26, "federated-cloud-sharing"], [60, "federated-cloud-sharing"]], "Federated calendar shares": [[112, "federated-calendar-shares"]], "Federation sync": [[153, "federation-sync"]], "File Sharing": [[43, null]], "File access control rules not supported": [[3, "file-access-control-rules-not-supported"]], "File age": [[105, "file-age"]], "File conversion": [[42, null]], "File encodings": [[71, "file-encodings"]], "File format": [[29, "file-format"], [29, "id1"], [29, "id3"], [29, "id5"], [29, "id7"]], "File locations": [[29, "file-locations"], [29, "id2"], [29, "id4"], [29, "id6"], [29, "id8"]], "File operations": [[153, "file-operations"]], "File sharing": [[153, "file-sharing"]], "File sharing and management": [[46, null]], "File type: file": [[29, "file-type-file"]], "File type: file key file": [[29, "file-type-file-key-file"]], "File type: private key file": [[29, "file-type-private-key-file"]], "File type: public key file": [[29, "file-type-public-key-file"]], "File type: share key file": [[29, "file-type-share-key-file"]], "File versions": [[60, "file-versions"], [107, "file-versions"], [153, "file-versions"]], "Files": [[88, null]], "Files App": [[134, "files-app"]], "Files access control": [[101, null]], "Files and metadata": [[110, "files-and-metadata"]], "Files commands": [[153, null]], "Files external": [[153, "files-external"]], "Files tools": [[2, "files-tools"]], "Filters": [[187, "filters"]], "Fixing invalid code integrity messages": [[137, "fixing-invalid-code-integrity-messages"]], "Flow": [[104, null]], "Flow configuration": [[103, null]], "Folder name": [[40, "folder-name"]], "Follow-up reminders": [[116, "follow-up-reminders"]], "Force language": [[66, "force-language"]], "Force locale": [[66, "force-locale"]], "Format": [[60, "format"]], "Forms App Events": [[187, "forms-app-events"]], "Forms tools": [[2, "forms-tools"]], "FreeBusy": [[112, "freebusy"]], "Frequently Asked Questions": [[15, "frequently-asked-questions"]], "Frequently asked questions": [[172, "frequently-asked-questions"]], "Front-end": [[6, "front-end"]], "Frontend apps": [[15, "frontend-apps"], [15, "id31"], [15, "id41"], [15, "id47"], [15, "id57"], [15, "id62"], [15, "id67"], [15, "id71"], [15, "id77"], [15, "id84"]], "Further Reading": [[28, "further-reading"]], "Further Resources": [[119, "further-resources"], [130, "further-resources"]], "GDPR compliance": [[109, null]], "General troubleshooting": [[138, null], [138, "id1"]], "Generate the file key": [[29, "generate-the-file-key"]], "Get a notification before a share expires": [[43, "get-a-notification-before-a-share-expires"]], "Get a task by id": [[14, "get-a-task-by-id"]], "Get account IDs": [[118, "get-account-ids"]], "Get app info": [[17, "get-app-info"]], "Get data of a single user": [[76, "get-data-of-a-single-user"]], "Get info about files in the scan queue": [[56, "get-info-about-files-in-the-scan-queue"]], "Get list of apps": [[17, "get-list-of-apps"]], "Get members of a group": [[75, "get-members-of-a-group"]], "Get subadmins of a group": [[75, "get-subadmins-of-a-group"]], "Get user\u2019s groups": [[76, "get-user-s-groups"]], "Get user\u2019s subadmin groups": [[76, "get-user-s-subadmin-groups"]], "Getting Started": [[88, null], [119, "getting-started"]], "Getting a single configuration value": [[149, "getting-a-single-configuration-value"]], "Give PHP read access to /dev/urandom": [[126, "give-php-read-access-to-dev-urandom"]], "Globally": [[118, "globally"]], "Google OAuth": [[116, "google-oauth"]], "Granting administrator privileges to a user": [[85, "granting-administrator-privileges-to-a-user"]], "Group commands": [[157, "group-commands"]], "Groups tab": [[81, "groups-tab"]], "Groupware": [[88, null], [115, null]], "Groupware data": [[110, "groupware-data"]], "HAProxy": [[69, "haproxy"]], "HTTPD(8)": [[124, "httpd-8"]], "HTTPS encryption": [[133, "https-encryption"]], "HaRP": [[95, "harp"]], "Handling with backup server": [[81, "handling-with-backup-server"]], "Hardening and security guidance": [[126, null]], "Hashing": [[60, "hashing"]], "Heartbeat": [[99, "heartbeat"]], "Helpful apps": [[108, null]], "Hidden files upload failure or not shown": [[38, "hidden-files-upload-failure-or-not-shown"]], "Hide export buttons": [[112, "hide-export-buttons"]], "How can I determine if the SMTP server supports the SMTPS protocol?": [[63, "how-can-i-determine-if-the-smtp-server-supports-the-smtps-protocol"]], "How can I determine what authorization and encryption protocols the mail server supports?": [[63, "how-can-i-determine-what-authorization-and-encryption-protocols-the-mail-server-supports"]], "How can I find out if a created user can access a database?": [[22, "how-can-i-find-out-if-a-created-user-can-access-a-database"]], "How can I find out if an SMTP server is reachable?": [[63, "how-can-i-find-out-if-an-smtp-server-is-reachable"]], "How can I find out if my MySQL/PostgreSQL server is reachable?": [[22, "how-can-i-find-out-if-my-mysql-postgresql-server-is-reachable"]], "How can I find out if the SMTP server is listening on a specific TCP port?": [[63, "how-can-i-find-out-if-the-smtp-server-is-listening-on-a-specific-tcp-port"]], "How can I send mail using self-signed certificates or use STARTTLS with self signed certificates?": [[63, "how-can-i-send-mail-using-self-signed-certificates-or-use-starttls-with-self-signed-certificates"]], "How does it work?": [[174, "how-does-it-work"]], "How interactions are tracked": [[114, "how-interactions-are-tracked"]], "How it works": [[58, "how-it-works"]], "How the \u201cFilesystem check frequency\u201d option works": [[40, "how-the-filesystem-check-frequency-option-works"]], "How to make external changes reliably detectable": [[40, "how-to-make-external-changes-reliably-detectable"]], "How to upgrade": [[148, null]], "How to verify scope behavior": [[77, "how-to-verify-scope-behavior"]], "How to work around \u201cgeneral error: 2006 MySQL server has gone away\u201d": [[22, "how-to-work-around-general-error-2006-mysql-server-has-gone-away"]], "IBM watsonx.ai integration": [[0, "ibm-watsonx-ai-integration"]], "IMAP timeout": [[116, "imap-timeout"]], "Icon retrieval": [[51, "icon-retrieval"]], "Icon theming": [[72, "icon-theming"]], "Identifying Basic Functionality Problems": [[93, "identifying-basic-functionality-problems"]], "Image Pull": [[99, "image-pull"]], "Image generation": [[15, "image-generation"]], "Image storage": [[1, "image-storage"]], "Image tags": [[164, "image-tags"]], "Implementation of the transparency requirements": [[12, "implementation-of-the-transparency-requirements"]], "Import signing keys:": [[167, "import-signing-keys"]], "Important distinction from non-interactive provisioning": [[92, "important-distinction-from-non-interactive-provisioning"]], "Importing existing data": [[18, "importing-existing-data"]], "Importing from Dokuwiki": [[18, "importing-from-dokuwiki"]], "Imprint (Theming app)": [[108, "imprint-theming-app"]], "Improve AI task pickup speed": [[1, "improve-ai-task-pickup-speed"], [15, "improve-ai-task-pickup-speed"]], "Improve performance": [[0, "improve-performance"]], "Inconvertible tables": [[20, "inconvertible-tables"]], "Info": [[156, "info"]], "Init": [[99, "init"]], "Initial Certification 2024/2025": [[89, "initial-certification-2024-2025"]], "Initial Content for new collectives": [[18, "initial-content-for-new-collectives"]], "Initial loading of data": [[3, "initial-loading-of-data"]], "Initial splitting": [[25, "initial-splitting"]], "Insight and debugging": [[14, null]], "Install packages": [[167, "install-packages"]], "Install the Apache reverse proxy": [[166, "install-the-apache-reverse-proxy"]], "Install the Collabora Online server": [[166, "install-the-collabora-online-server"]], "Installation": [[0, "installation"], [1, "installation"], [2, "installation"], [3, "installation"], [4, "installation"], [5, "installation"], [6, "installation"], [7, "installation"], [8, "installation"], [9, "installation"], [10, "installation"], [11, "installation"], [88, null], [92, "installation"], [133, "installation"], [145, "installation"], [162, null], [169, null], [187, "installation"], [188, "installation"]], "Installation and server configuration": [[127, null]], "Installation example on Ubuntu 24.04": [[167, null]], "Installation example with Docker": [[166, null]], "Installation folder": [[92, "installation-folder"]], "Installation on Linux": [[133, null]], "Installation on TrueNAS": [[133, "installation-on-truenas"]], "Installation version": [[186, "installation-version"]], "Installation via install script": [[133, "installation-via-install-script"]], "Installation via web installer on a VPS or web space": [[133, "installation-via-web-installer-on-a-vps-or-web-space"]], "Installation wizard": [[128, null], [133, "installation-wizard"]], "Installing AppAPI": [[95, "installing-appapi"]], "Installing ClamAV": [[56, "installing-clamav"]], "Installing ExApps": [[95, "installing-exapps"]], "Installing Nextcloud": [[123, "installing-nextcloud"]], "Installing PHP and the required modules": [[123, "installing-php-and-the-required-modules"]], "Installing from command line": [[121, null]], "Installing on Debian 12": [[163, null]], "Installing on Ubuntu 24.04 LTS": [[165, null]], "Installing on Windows (virtual machine)": [[133, "installing-on-windows-virtual-machine"]], "Installing optional modules redis/imagick": [[123, "installing-optional-modules-redis-imagick"]], "Installing the connector app": [[160, "installing-the-connector-app"]], "Installing via Docker": [[164, null]], "Installing via Snap packages": [[133, "installing-via-snap-packages"]], "Instruction set for groups": [[75, null]], "Instruction set for users": [[76, null]], "Integrating into the web interface": [[67, "integrating-into-the-web-interface"]], "Integrity check": [[153, "integrity-check"]], "Interactive wizard preconfiguration": [[92, "interactive-wizard-preconfiguration"]], "Internal Server Errors": [[138, "internal-server-errors"]], "Interoperability": [[12, "interoperability"]], "Introduction": [[54, "introduction"], [58, "introduction"], [60, "introduction"], [119, null], [187, "introduction"]], "Invalid private key for encryption app": [[28, "invalid-private-key-for-encryption-app"]], "Invitations": [[112, "invitations"]], "Is code signing mandatory for apps?": [[137, "is-code-signing-mandatory-for-apps"]], "Isolating other issues": [[93, "isolating-other-issues"]], "Issues and troubleshooting": [[139, null]], "Issues connecting to Outlook.com": [[118, "issues-connecting-to-outlook-com"]], "JIT": [[132, "jit"]], "JPEG quality setting:": [[47, "jpeg-quality-setting"]], "JavaScript (.js) or CSS (.css) files not served properly": [[129, "javascript-js-or-css-css-files-not-served-properly"]], "Key Management Modes": [[28, "key-management-modes"]], "Key Points & Limitations": [[28, "key-points-limitations"]], "Key generation: generate the key pair": [[29, "key-generation-generate-the-key-pair"]], "Key generation: store the private key": [[29, "key-generation-store-the-private-key"]], "Key generation: store the public key": [[29, "key-generation-store-the-public-key"]], "Key parameters": [[132, "key-parameters"]], "Key slots": [[155, "key-slots"]], "Key storage": [[152, "key-storage"]], "Key type: master key": [[29, "key-type-master-key"]], "Key type: public sharing key": [[29, "key-type-public-sharing-key"]], "Key type: recovery key": [[29, "key-type-recovery-key"]], "Key type: user key": [[29, "key-type-user-key"]], "Keyboard shortcut": [[93, "keyboard-shortcut"]], "Known Limitations": [[2, "known-limitations"], [3, "known-limitations"], [5, "known-limitations"], [6, "known-limitations"], [7, "known-limitations"], [8, "known-limitations"], [9, "known-limitations"], [10, "known-limitations"], [11, "known-limitations"]], "Known Smart Picker providers": [[175, "known-smart-picker-providers"]], "Known backends": [[112, "known-backends"]], "Known link preview providers": [[174, "known-link-preview-providers"]], "Known-user rule for Private scope": [[77, "known-user-rule-for-private-scope"]], "Kubernetes": [[3, "kubernetes"], [96, "kubernetes"]], "LDAP": [[60, "ldap"]], "LDAP and External User Backends": [[28, "ldap-and-external-user-backends"]], "LDAP commands": [[154, null], [154, "ldap-commands-label"]], "LDAP user cleanup": [[83, null]], "LLM Processing": [[116, "llm-processing"]], "Language & Locale": [[66, null]], "Large file upload on object storage": [[26, "large-file-upload-on-object-storage"]], "Launch after installation": [[92, "launch-after-installation"]], "Legacy migration": [[152, "legacy-migration"]], "Legal: Compliance with EU AI Act": [[12, null]], "Length of support (\u201cmaintenance\u201d)": [[186, "length-of-support-maintenance"]], "Limit on password length": [[126, "limit-on-password-length"]], "Limitation: renames are not detected reliably": [[40, "limitation-renames-are-not-detected-reliably"]], "Limitations": [[4, "limitations"], [5, "limitations"]], "Limitations in maintenance mode": [[150, "limitations-in-maintenance-mode"]], "Link previews": [[174, null]], "Linking external sites": [[64, null]], "List ExApps": [[98, "list-exapps"]], "List and filter tasks": [[14, "list-and-filter-tasks"]], "List of editable data fields": [[76, "list-of-editable-data-fields"]], "List registered daemons": [[97, "list-registered-daemons"]], "Listening to events": [[187, "listening-to-events"]], "Listing keys": [[155, "listing-keys"]], "Listing registered webhooks": [[187, "listing-registered-webhooks"]], "Live transcription": [[15, "live-transcription"]], "Loading": [[60, "loading"]], "Local": [[34, null]], "Local IMAP and SMTP servers": [[116, "local-imap-and-smtp-servers"]], "Log Files": [[93, "log-files"]], "Log Levels": [[132, "log-levels"]], "Log field breakdown": [[67, "log-field-breakdown"]], "Log fields explained": [[67, "log-fields-explained"]], "Log level": [[67, "log-level"]], "Log level interaction": [[67, "log-level-interaction"]], "Log type": [[67, "log-type"]], "Logfiles": [[138, "logfiles"]], "Logging": [[60, "logging"], [67, null], [81, "logging"]], "Logging commands": [[156, "logging-commands"]], "Logging the IMAP/SMTP/Sieve connections": [[118, "logging-the-imap-smtp-sieve-connections"]], "Login attributes tab": [[81, "login-attributes-tab"]], "Login loop without any clue in access.log, error.log, nor nextcloud.log": [[129, "login-loop-without-any-clue-in-access-log-error-log-nor-nextcloud-log"]], "Logs": [[3, "logs"], [4, "logs"]], "Long running migration steps": [[148, "long-running-migration-steps"]], "Long term support": [[134, "long-term-support"]], "Machine translation": [[1, "machine-translation"], [15, "machine-translation"]], "Mail": [[116, null], [118, "mail"]], "Mail Parameters": [[60, "mail-parameters"]], "Mail Providers": [[63, "mail-providers"]], "Mail tools (require Mail)": [[2, "mail-tools-require-mail"]], "Mailbox Share": [[116, "mailbox-share"]], "Maintenance": [[60, "maintenance"], [88, null], [141, null], [151, "maintenance"]], "Maintenance and release schedule": [[186, null]], "Maintenance and repair": [[152, "maintenance-and-repair"]], "Maintenance commands": [[156, "maintenance-commands"]], "Maintenance mode": [[140, "maintenance-mode"], [148, "maintenance-mode"]], "Maintenance releases": [[186, "maintenance-releases"]], "Major releases": [[186, "major-releases"]], "Major version upgrades": [[186, "major-version-upgrades"]], "Manage absences (out-of-office)": [[151, "manage-absences-out-of-office"]], "Manage addressbooks": [[151, "manage-addressbooks"]], "Manage calendar subscriptions": [[151, "manage-calendar-subscriptions"]], "Manage calendars": [[151, "manage-calendars"]], "Manage the background scanner": [[56, "manage-the-background-scanner"]], "Managing Deploy Daemons": [[97, null]], "Managing Encryption via occ Commands": [[28, "managing-encryption-via-occ-commands"]], "Managing ExApps": [[98, null]], "Managing apps": [[16, "managing-apps"]], "Managing groups": [[85, "managing-groups"]], "Manual account synchronization and threading": [[118, "manual-account-synchronization-and-threading"]], "Manual steps during upgrade": [[148, "manual-steps-during-upgrade"]], "Manually scan a single file": [[56, "manually-scan-a-single-file"]], "Manually trigger the background scan": [[56, "manually-trigger-the-background-scan"]], "MariaDB": [[140, "mariadb"], [146, "mariadb"], [146, "id2"]], "Mark a file as scanned or unscanned": [[56, "mark-a-file-as-scanned-or-unscanned"]], "Master key": [[152, "master-key"]], "Maximum chunk size": [[182, "maximum-chunk-size"]], "Maximum memory for image generation:": [[47, "maximum-memory-for-image-generation"]], "Maximum preview size:": [[47, "maximum-preview-size"]], "Maximum scale factor:": [[47, "maximum-scale-factor"]], "Maximum upload size": [[133, "maximum-upload-size"]], "Memcached": [[59, "memcached"]], "Memcached configuration in Nextcloud (config.php)": [[59, "memcached-configuration-in-nextcloud-config-php"]], "Memory": [[134, "memory"]], "Memory caching": [[59, null]], "Memory caching backend configuration": [[60, "memory-caching-backend-configuration"]], "Microsoft Active Directory": [[81, "microsoft-active-directory"]], "Microsoft Azure Blob Storage": [[48, "microsoft-azure-blob-storage"]], "Migrating from ownCloud": [[144, null]], "Migrating to a different server": [[143, null]], "Migration from Collabora Online": [[170, null]], "Migrations on updates": [[25, "migrations-on-updates"]], "Mimetype aliases": [[51, "mimetype-aliases"]], "Mimetype mapping": [[51, "mimetype-mapping"]], "Mimetypes management": [[51, null]], "Miscellaneous tools": [[2, "miscellaneous-tools"]], "Missing Shared Calendars": [[118, "missing-shared-calendars"]], "Mobile apps": [[134, "mobile-apps"]], "Model Switch": [[11, "model-switch"]], "Model requirements": [[2, "model-requirements"]], "Modifying": [[60, "modifying"]], "Modifying a configuration": [[82, "modifying-a-configuration"]], "Modifying the look of emails beyond the theming app capabilities": [[63, "modifying-the-look-of-emails-beyond-the-theming-app-capabilities"]], "Monitoring": [[52, null], [180, "monitoring"]], "Monitoring: Counting of active users": [[181, "monitoring-counting-of-active-users"], [182, "monitoring-counting-of-active-users"], [183, "monitoring-counting-of-active-users"]], "Mount Options": [[40, "mount-options"]], "Mounts": [[94, "mounts"]], "Moving the data directory / changing the datadirectory path": [[138, "moving-the-data-directory-changing-the-datadirectory-path"]], "Multi-instance Object Store": [[48, "multi-instance-object-store"]], "Multibucket Object Store": [[48, "multibucket-object-store"]], "Multibucket Object Store with per Bucket configuration overrides": [[48, "multibucket-object-store-with-per-bucket-configuration-overrides"]], "Multilinguality": [[5, "multilinguality"]], "Multiple trusted domains and share link URLs": [[69, "multiple-trusted-domains-and-share-link-urls"]], "Multiple/Merged Configuration Files": [[60, "multiple-merged-configuration-files"]], "MySQL": [[140, "mysql"], [146, "mysql"], [146, "id4"]], "MySQL database": [[120, "mysql-database"]], "NC & Docker on the Same-Host": [[96, "nc-docker-on-the-same-host"]], "NC & ExApps in the same Docker": [[96, "nc-exapps-in-the-same-docker"]], "NC to ExApp Communication": [[96, "nc-to-exapp-communication"]], "NGINX": [[69, "nginx"]], "NGINX configuration": [[129, null]], "NOTE": [[124, "note"]], "Next steps": [[125, "next-steps"]], "Nextcloud": [[35, null]], "Nextcloud AIO": [[97, "nextcloud-aio"]], "Nextcloud Assistant": [[1, null]], "Nextcloud Configuration Limitation": [[55, "nextcloud-configuration-limitation"]], "Nextcloud LDAP internals": [[81, "nextcloud-ldap-internals"]], "Nextcloud Office": [[161, null]], "Nextcloud Office App Settings": [[159, "nextcloud-office-app-settings"]], "Nextcloud Scripts": [[188, "nextcloud-scripts"]], "Nextcloud Verifications": [[60, "nextcloud-verifications"]], "Nextcloud Webhook Events": [[187, "nextcloud-webhook-events"]], "Nextcloud accessible via multiple domains / conditional overwrite": [[69, "nextcloud-accessible-via-multiple-domains-conditional-overwrite"]], "Nextcloud and Docker on the same host - with Nextcloud bare metal": [[96, "nextcloud-and-docker-on-the-same-host-with-nextcloud-bare-metal"]], "Nextcloud and Docker on the same host - with Nextcloud in Docker": [[96, "nextcloud-and-docker-on-the-same-host-with-nextcloud-in-docker"]], "Nextcloud avatar integration": [[81, "nextcloud-avatar-integration"]], "Nextcloud behind a reverse proxy (subdirectory)": [[69, "nextcloud-behind-a-reverse-proxy-subdirectory"]], "Nextcloud configuration": [[65, null], [181, "nextcloud-configuration"], [182, "nextcloud-configuration"]], "Nextcloud final steps": [[124, "nextcloud-final-steps"]], "Nextcloud in Docker AIO (all-in-one)": [[96, "nextcloud-in-docker-aio-all-in-one"]], "Nextcloud in a subdir of the NGINX webroot": [[129, "nextcloud-in-a-subdir-of-the-nginx-webroot"]], "Nextcloud in the webroot of NGINX": [[129, "nextcloud-in-the-webroot-of-nginx"]], "Nextcloud log files": [[138, "nextcloud-log-files"]], "Nextcloud prerequisites": [[126, "nextcloud-prerequisites"]], "Nextcloud server Log File": [[93, "nextcloud-server-log-file"]], "No reboot after installation": [[92, "no-reboot-after-installation"]], "Node (Files / Folders) Events": [[187, "node-files-folders-events"]], "Non-interactive account provisioning": [[92, "non-interactive-account-provisioning"]], "Not open source anymore?": [[137, "not-open-source-anymore"]], "Note": [[81, "note"]], "Notes and troubleshooting": [[136, "notes-and-troubleshooting"]], "Notes on PHP ini Configuration": [[130, "notes-on-php-ini-configuration"]], "OAuth2": [[68, null], [156, "oauth2"]], "OCC CLI": [[97, "occ-cli"]], "OCM commands": [[155, null]], "Object store": [[153, "object-store"]], "Obtaining a patch": [[136, "obtaining-a-patch"]], "Obtaining the Client Log File": [[93, "obtaining-the-client-log-file"]], "Office": [[88, null], [168, null]], "OpenAI integration": [[0, "openai-integration"]], "OpenMetrics": [[52, "openmetrics"]], "OpenMetrics endpoint": [[184, "openmetrics-endpoint"]], "OpenStack Object Storage": [[36, null]], "OpenStack Swift": [[48, "openstack-swift"]], "Operating system": [[126, "operating-system"]], "Optional parameters": [[92, "optional-parameters"]], "Options": [[97, "options"], [98, "options"], [98, "id2"], [98, "id4"]], "Organizations with clustered setups": [[59, "organizations-with-clustered-setups"]], "Organizations with single-server": [[59, "organizations-with-single-server"]], "Other Web servers": [[133, "other-web-servers"]], "Other issues": [[138, "other-issues"]], "Out-of-office feature": [[117, null]], "Outdated NSS / OpenSSL version": [[70, "outdated-nss-openssl-version"]], "Override default scopes in config.php": [[77, "override-default-scopes-in-config-php"]], "Overview": [[15, null], [28, "overview"], [58, "overview"], [58, "id1"], [133, "overview"], [142, "overview"], [148, "overview"], [186, "overview"], [187, "overview"]], "Overview of AI features": [[15, "overview-of-ai-features"]], "Overwrite parameters": [[69, "overwrite-parameters"]], "PHP": [[123, "php"], [124, "php"]], "PHP Installation": [[130, "php-installation"]], "PHP Module Quick Reference Table": [[130, "php-module-quick-reference-table"]], "PHP Modules for Media Management": [[130, "php-modules-for-media-management"]], "PHP Modules for Specific Applications": [[130, "php-modules-for-specific-applications"]], "PHP configuration": [[182, "php-configuration"]], "PHP ini Settings": [[130, "php-ini-settings"]], "PHP version and information": [[138, "php-version-and-information"]], "PHP-FPM configuration": [[133, "php-fpm-configuration"]], "PHP-Handler Configuration / Avoiding \u201c502 Bad Gateway\u201d": [[129, "php-handler-configuration-avoiding-502-bad-gateway"]], "Parameters": [[22, "parameters"], [47, "parameters"], [57, "parameters"], [120, "parameters"]], "Passing values between blocks": [[188, "passing-values-between-blocks"]], "Password-based mechanisms": [[32, "password-based-mechanisms"]], "Passwords": [[126, "passwords"]], "Patching Nextcloud": [[136, null]], "Patching apps": [[136, "patching-apps"]], "Patching server": [[136, "patching-server"]], "Payload envelope": [[187, "payload-envelope"]], "Per mail account": [[118, "per-mail-account"]], "Performance Implications": [[48, "performance-implications"]], "Persistent data": [[164, "persistent-data"]], "Personal data stored": [[110, null]], "Place config directory outside of the web root": [[126, "place-config-directory-outside-of-the-web-root"]], "Place data directory outside of the web root": [[126, "place-data-directory-outside-of-the-web-root"]], "Podman": [[96, "podman"]], "Pomerium": [[69, "pomerium"]], "PostgreSQL": [[140, "postgresql"], [146, "postgresql"], [146, "id5"]], "PostgreSQL database": [[22, "postgresql-database"], [120, "postgresql-database"]], "Preparing PHP": [[130, null]], "Prerequisites": [[148, "prerequisites"], [164, "prerequisites"]], "Prerequisites for manual installation": [[133, "prerequisites-for-manual-installation"]], "Pretty URLs": [[133, "pretty-urls"]], "Prevent uploading of specific files": [[101, "prevent-uploading-of-specific-files"]], "Preview": [[153, "preview"]], "Previews": [[60, "previews"], [132, "previews"], [159, "previews"], [182, "previews"], [183, "previews"], [184, "previews"]], "Previews configuration": [[47, null]], "Previews for Office files using LibreOffice": [[180, "previews-for-office-files-using-libreoffice"]], "Previews for PDF files with Imaginary": [[181, "previews-for-pdf-files-with-imaginary"]], "Previous Nextcloud releases": [[142, "previous-nextcloud-releases"]], "Privacy and User Property Scopes": [[113, "privacy-and-user-property-scopes"]], "Process manager": [[133, "process-manager"]], "Process manager modes": [[132, "process-manager-modes"]], "Profile data": [[110, "profile-data"]], "Profile field visibility settings": [[77, "profile-field-visibility-settings"]], "Profiles": [[77, null]], "Promote user to subadmin": [[76, "promote-user-to-subadmin"]], "Proper SSL configuration": [[126, "proper-ssl-configuration"]], "Property visibility scopes": [[77, "property-visibility-scopes"]], "Provider apps": [[15, "provider-apps"], [15, "id70"], [15, "id75"], [15, "id81"]], "Provider removal": [[80, "provider-removal"]], "Providing default files": [[27, null]], "Proxy Configurations": [[60, "proxy-configurations"]], "Public collaborative tag": [[105, "public-collaborative-tag"]], "Public shares": [[18, "public-shares"]], "Public-key mechanisms": [[32, "public-key-mechanisms"]], "Quick start": [[128, "quick-start"], [164, "quick-start"]], "Rate limits": [[112, "rate-limits"], [113, "rate-limits"]], "Rating Music genre recognition: Yellow": [[6, "rating-music-genre-recognition-yellow"]], "Rating for Photo face recognition: Green": [[6, "rating-for-photo-face-recognition-green"]], "Rating for Photo object detection: Green": [[6, "rating-for-photo-object-detection-green"]], "Rating for Video action recognition: Green": [[6, "rating-for-video-action-recognition-green"]], "Rating: \ud83d\udfe2": [[11, "rating"]], "Read the envelope key": [[29, "read-the-envelope-key"]], "Read the file key": [[29, "read-the-file-key"]], "Read the private key file": [[29, "read-the-private-key-file"]], "Read the public key": [[29, "read-the-public-key"]], "Reading a configuration": [[82, "reading-a-configuration"]], "Recommendations": [[92, "recommendations"]], "Recommendations based on type of deployment": [[59, "recommendations-based-on-type-of-deployment"]], "Recommended General PHP Modules": [[130, "recommended-general-php-modules"]], "Recommended PHP CLI Modules": [[130, "recommended-php-cli-modules"]], "Recommended PHP Caching Modules": [[130, "recommended-php-caching-modules"]], "Redirect all unencrypted traffic to HTTPS": [[126, "redirect-all-unencrypted-traffic-to-https"]], "Redis": [[59, "redis"], [123, "redis"], [124, "redis"]], "Redis configuration in Nextcloud (config.php)": [[59, "redis-configuration-in-nextcloud-config-php"]], "Reducing system load": [[132, "reducing-system-load"]], "Reference management": [[173, null]], "Refresh rate": [[112, "refresh-rate"]], "Register": [[97, "register"], [98, "register"], [99, "register"]], "Related apps": [[1, "related-apps"]], "Release channels": [[186, "release-channels"]], "Release notes": [[88, null], [176, null], [177, null]], "Release schedule": [[186, "release-schedule"]], "Release types": [[186, "release-types"]], "Reliability and robustness": [[12, "reliability-and-robustness"]], "Remember-me cookies": [[106, "remember-me-cookies"]], "Remember-me tokens": [[107, "remember-me-tokens"]], "Reminder notifications": [[112, "reminder-notifications"]], "Remove user from group": [[76, "remove-user-from-group"]], "Renaming a user": [[85, "renaming-a-user"]], "Replacing SQLite": [[132, "replacing-sqlite"]], "Replication": [[24, null]], "Repository": [[1, "repository"], [2, "repository"], [3, "repository"], [4, "repository"], [5, "repository"], [6, "repository"], [7, "repository"], [8, "repository"], [9, "repository"], [10, "repository"], [11, "repository"]], "Required PHP Database Connectors": [[130, "required-php-database-connectors"]], "Required PHP Modules": [[130, "required-php-modules"]], "Required parameters": [[92, "required-parameters"]], "Requirements": [[2, "requirements"], [3, "requirements"], [4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [22, "requirements"]], "Rescans": [[137, "rescans"]], "Resend the welcome email": [[76, "resend-the-welcome-email"]], "Reset a user\u2019s password": [[85, "reset-a-user-s-password"]], "Resetting a lost admin password": [[78, null]], "Resetting a user password": [[79, null]], "Resources and rooms": [[112, "resources-and-rooms"]], "Responding to data subject requests": [[111, null]], "Restore database": [[146, "restore-database"]], "Restore folders": [[146, "restore-folders"]], "Restoring": [[146, "restoring"]], "Restoring backup": [[146, null]], "Restrict admin actions to a specific range of IP addresses": [[126, "restrict-admin-actions-to-a-specific-range-of-ip-addresses"]], "Restrict edit to specific groups": [[159, "restrict-edit-to-specific-groups"]], "Restrict usage to specific groups": [[159, "restrict-usage-to-specific-groups"]], "Retention of files": [[105, null]], "Revalidation": [[132, "revalidation"]], "Reverse proxy": [[69, null], [171, null]], "Reverting a patch": [[136, "reverting-a-patch"]], "Right of access (Article 15)": [[111, "right-of-access-article-15"]], "Right to data portability (Article 20)": [[111, "right-to-data-portability-article-20"]], "Right to erasure (Article 17)": [[111, "right-to-erasure-article-17"]], "Right to rectification (Article 16)": [[111, "right-to-rectification-article-16"]], "Right to restriction of processing (Article 18)": [[111, "right-to-restriction-of-processing-article-18"]], "Rotating keys": [[155, "rotating-keys"]], "Run the conversion": [[20, "run-the-conversion"]], "Running occ": [[150, "running-occ"]], "Runtime Dependencies": [[18, "runtime-dependencies"]], "S3 SSE-C encryption support": [[48, "s3-sse-c-encryption-support"]], "S3 integrity protections enabled, configuration update may be needed": [[183, "s3-integrity-protections-enabled-configuration-update-may-be-needed"]], "SELinux": [[123, "selinux"]], "SELinux configuration": [[131, null]], "SELinux configuration tips": [[133, "selinux-configuration-tips"]], "SFTP": [[37, null]], "SMB authentication": [[38, "smb-authentication"]], "SMB update notifications": [[38, "smb-update-notifications"]], "SMB/CIFS": [[38, null]], "SMTP": [[63, "smtp"]], "SMTP timeout": [[116, "smtp-timeout"]], "SQLite": [[140, "sqlite"], [146, "sqlite"]], "SQLite database": [[120, "sqlite-database"]], "SSL": [[60, "ssl"]], "SSL certificate verification (LDAPS, TLS)": [[81, "ssl-certificate-verification-ldaps-tls"]], "SSL for MySQL Database": [[22, "ssl-for-mysql-database"]], "Sanitizing invalid filenames": [[50, "sanitizing-invalid-filenames"]], "Scaling": [[2, "scaling"], [3, "scaling"], [5, "scaling"], [6, "scaling"], [7, "scaling"], [9, "scaling"], [10, "scaling"]], "Schema inspection": [[151, "schema-inspection"]], "Schema maintenance": [[151, "schema-maintenance"]], "Scope defaults and precedence": [[77, "scope-defaults-and-precedence"]], "Scope visibility matrix": [[77, "scope-visibility-matrix"]], "Scopes and existing users": [[77, "scopes-and-existing-users"]], "Screen or tmux session": [[15, "screen-or-tmux-session"], [187, "screen-or-tmux-session"]], "Search tools": [[2, "search-tools"]], "Search/get groups": [[75, "search-get-groups"]], "Search/get users": [[76, "search-get-users"]], "Secure view settings": [[159, "secure-view-settings"]], "Security": [[156, "security"], [160, "security"]], "Security considerations": [[68, "security-considerations"]], "See also": [[77, "see-also"]], "Send a test email": [[63, "send-a-test-email"]], "Sendmail": [[63, "sendmail"]], "Serve security related headers by the Web server": [[126, "serve-security-related-headers-by-the-web-server"]], "Server": [[134, "server"]], "Server and web server logs": [[107, "server-and-web-server-logs"], [110, "server-and-web-server-logs"]], "Server settings": [[160, "server-settings"]], "Server tab": [[81, "server-tab"]], "Server tuning": [[132, null]], "Server-side Encryption": [[28, null]], "Server-side encryption details": [[29, null]], "Server-side encryption migration": [[30, null]], "Service Discovery": [[69, "service-discovery"]], "Service discovery": [[138, "service-discovery"]], "Session data": [[110, "session-data"]], "Session lifetime": [[107, "session-lifetime"]], "Set the profile default for new users": [[77, "set-the-profile-default-for-new-users"]], "Setting a hierarchical configuration value": [[149, "setting-a-hierarchical-configuration-value"]], "Setting a single configuration value": [[149, "setting-a-single-configuration-value"]], "Setting an array configuration value": [[149, "setting-an-array-configuration-value"]], "Setting mail server parameters in config.php": [[63, "setting-mail-server-parameters-in-config-php"]], "Setting storage quotas": [[85, "setting-storage-quotas"]], "Setting up background jobs": [[133, "setting-up-background-jobs"]], "Setting up remirepo with PHP 8.2": [[123, "setting-up-remirepo-with-php-8-2"]], "Setting up the workspace connection": [[188, "setting-up-the-workspace-connection"]], "Settings": [[132, "settings"]], "Setup (Manual)": [[8, "setup-manual"]], "Setup (via App Store)": [[8, "setup-via-app-store"]], "Setup Checks": [[180, "setup-checks"]], "Setup a filter and a jail for Nextcloud": [[126, "setup-a-filter-and-a-jail-for-nextcloud"]], "Setup checks": [[156, "setup-checks"]], "Setup deploy daemon": [[95, "setup-deploy-daemon"]], "Setup fail2ban": [[126, "setup-fail2ban"]], "Share operations": [[156, "share-operations"]], "Share tools": [[2, "share-tools"]], "Shared items": [[113, "shared-items"]], "Sharing": [[60, "sharing"]], "Sieve timeout": [[116, "sieve-timeout"]], "Sign the blocks": [[29, "sign-the-blocks"]], "Sign the private key": [[29, "sign-the-private-key"]], "Signature verification": [[147, "signature-verification"]], "Simple Storage Service (S3)": [[48, "simple-storage-service-s3"]], "Sizing": [[132, "sizing"]], "Skipping pre-login warning": [[68, "skipping-pre-login-warning"]], "Slow log": [[132, "slow-log"]], "Small/Private home server": [[59, "small-private-home-server"]], "Snooze and scheduled sending": [[116, "snooze-and-scheduled-sending"]], "Snowflake IDs": [[156, "snowflake-ids"], [184, "snowflake-ids"]], "Some files have not passed the integrity check": [[70, "some-files-have-not-passed-the-integrity-check"]], "Sources": [[29, "sources"]], "Space usage": [[3, "space-usage"], [8, "space-usage"], [11, "space-usage"]], "Special attributes": [[81, "special-attributes"]], "Special mechanisms": [[32, "special-mechanisms"]], "Speech-To-Text": [[1, "speech-to-text"], [15, "speech-to-text"]], "Speeding up webhook dispatch": [[187, "speeding-up-webhook-dispatch"]], "Split the file": [[29, "split-the-file"], [29, "id9"]], "Splitting databases": [[25, null]], "Status": [[156, "status"]], "Status Checks": [[99, "status-checks"]], "Status and control": [[152, "status-and-control"]], "Status return code": [[156, "status-return-code"]], "Step 1 \u2014 Enable the contrib component": [[163, "step-1-enable-the-contrib-component"]], "Step 1 \u2014 Install prerequisites": [[165, "step-1-install-prerequisites"]], "Step 2 \u2014 Create the database": [[165, "step-2-create-the-database"]], "Step 2 \u2014 Install prerequisites": [[163, "step-2-install-prerequisites"]], "Step 3 \u2014 Create the database": [[163, "step-3-create-the-database"]], "Step 3 \u2014 Pre-seed the installer answers": [[165, "step-3-pre-seed-the-installer-answers"]], "Step 4 \u2014 Download the package": [[165, "step-4-download-the-package"]], "Step 4 \u2014 Pre-seed the installer answers": [[163, "step-4-pre-seed-the-installer-answers"]], "Step 5 \u2014 Download the package": [[163, "step-5-download-the-package"]], "Step 5 \u2014 Install the package": [[165, "step-5-install-the-package"]], "Step 6 \u2014 Install the package": [[163, "step-6-install-the-package"]], "Step 6 \u2014 Verify": [[165, "step-6-verify"]], "Step 7 \u2014 Verify": [[163, "step-7-verify"]], "Step-by-Step Manual Upgrade": [[142, "step-by-step-manual-upgrade"]], "Storage of access tokens": [[126, "storage-of-access-tokens"]], "Store the envelope keys": [[29, "store-the-envelope-keys"]], "Store the file": [[29, "store-the-file"]], "Store the file key": [[29, "store-the-file-key"]], "Store the private key": [[29, "store-the-private-key"]], "Subscriptions": [[112, "subscriptions"]], "Summary": [[92, "summary"]], "Summary table": [[107, "summary-table"]], "Supplying alternate models": [[5, "supplying-alternate-models"], [7, "supplying-alternate-models"]], "Suppressing log messages": [[129, "suppressing-log-messages"]], "Sync": [[151, "sync"]], "Sync tokens": [[112, "sync-tokens"], [113, "sync-tokens"]], "Synchronising with clients after data recovery": [[146, "synchronising-with-clients-after-data-recovery"]], "Synchronous indexing": [[3, "synchronous-indexing"]], "System & maintenance commands": [[156, null]], "System Address Book": [[113, "system-address-book"]], "System Tag Events": [[187, "system-tag-events"]], "System Tags": [[157, "system-tags"]], "System address book": [[183, "system-address-book"]], "System configuration": [[26, "system-configuration"]], "System email": [[178, "system-email"]], "System environment variables": [[133, "system-environment-variables"]], "System requirements": [[134, null], [163, "system-requirements"], [165, "system-requirements"], [178, "system-requirements"], [179, "system-requirements"], [180, "system-requirements"], [181, "system-requirements"], [182, "system-requirements"], [183, "system-requirements"], [184, "system-requirements"], [185, "system-requirements"]], "Systemd service": [[15, "systemd-service"], [187, "systemd-service"]], "TLS / encryption app": [[132, "tls-encryption-app"]], "Table of contents": [[88, null]], "Tables App Events": [[187, "tables-app-events"]], "Talk (chat and calls)": [[110, "talk-chat-and-calls"]], "Talk App": [[134, "talk-app"]], "Talk tools (require Talk)": [[2, "talk-tools-require-talk"]], "Target Audience": [[119, "target-audience"]], "Task processing": [[1, "task-processing"], [156, "task-processing"]], "Tasks tools": [[2, "tasks-tools"]], "Temporary overrides": [[67, "temporary-overrides"]], "Test Deploy Daemon": [[99, null]], "Testing the configuration": [[81, "testing-the-configuration"]], "Text app": [[71, null]], "Text processing": [[1, "text-processing"], [15, "text-processing"]], "Text-To-Image": [[1, "text-to-image"]], "Text-To-Speech": [[1, "text-to-speech"], [15, "text-to-speech"]], "The LDAP configuration API": [[82, null]], "The Smart Picker": [[175, null]], "The access token": [[68, "the-access-token"]], "The brute force settings app": [[58, "the-brute-force-settings-app"]], "The recently contacted address book": [[114, "the-recently-contacted-address-book"]], "The test with getenv(\"PATH\") only returns an empty response": [[70, "the-test-with-getenv-path-only-returns-an-empty-response"]], "The \u201cStrict-Transport-Security\u201d HTTP header is not configured": [[70, "the-strict-transport-security-http-header-is-not-configured"]], "The \u201c__Host-\u201d prefix is not used for the cookie name": [[70, "the-host-prefix-is-not-used-for-the-cookie-name"]], "Theming": [[72, null], [156, "theming"]], "Thread Summary": [[116, "thread-summary"]], "Timeout and other connectivity issues": [[118, "timeout-and-other-connectivity-issues"]], "Timeouts": [[116, "timeouts"]], "Tips and tricks": [[129, "tips-and-tricks"]], "Traefik 1": [[69, "traefik-1"]], "Traefik 2": [[69, "traefik-2"]], "Transactional file locking": [[45, null]], "Transactional file locking is disabled": [[70, "transactional-file-locking-is-disabled"]], "Transferring files to another user": [[43, "transferring-files-to-another-user"]], "Translation": [[116, "translation"]], "Trash bin": [[107, "trash-bin"], [112, "trash-bin"], [153, "trash-bin"]], "Trashbin": [[153, "trashbin"]], "Triggering the conversion": [[20, "triggering-the-conversion"]], "Troubleshooting": [[3, "troubleshooting"], [22, "troubleshooting"], [28, "troubleshooting"], [53, "troubleshooting"], [58, "troubleshooting"], [63, "troubleshooting"], [93, null], [118, null], [131, "troubleshooting"], [132, "troubleshooting"], [142, "troubleshooting"], [147, "troubleshooting"], [172, null]], "Troubleshooting File Name Encoding": [[40, "troubleshooting-file-name-encoding"]], "Troubleshooting Web server and PHP problems": [[138, "troubleshooting-web-server-and-php-problems"]], "Troubleshooting WebDAV": [[138, "troubleshooting-webdav"]], "Troubleshooting contacts & calendar": [[138, "troubleshooting-contacts-calendar"]], "Troubleshooting data-directory": [[138, "troubleshooting-data-directory"]], "Troubleshooting encrypted files": [[138, "troubleshooting-encrypted-files"]], "Troubleshooting quota or size issues": [[138, "troubleshooting-quota-or-size-issues"]], "Troubleshooting sharing": [[138, "troubleshooting-sharing"]], "Troubleshooting, tips and tricks": [[81, "troubleshooting-tips-and-tricks"]], "Trusted domains": [[128, "trusted-domains"]], "Trusted proxy not detected when using a Unix domain socket": [[129, "trusted-proxy-not-detected-when-using-a-unix-domain-socket"]], "Tune PHP-FPM": [[132, "tune-php-fpm"]], "Tuning your database": [[132, "tuning-your-database"]], "Two-factor authentication": [[80, null], [157, "two-factor-authentication"]], "Types of Values": [[60, "types-of-values"]], "Unable to update contacts or events": [[118, "unable-to-update-contacts-or-events"]], "Uninstallation": [[135, null]], "Uninstalling": [[163, "uninstalling"], [164, "uninstalling"], [165, "uninstalling"]], "Unregister": [[97, "unregister"], [98, "unregister"]], "Update": [[98, "update"]], "Update notifications": [[16, "update-notifications"], [148, "update-notifications"]], "Update the reverse proxy configuration": [[170, "update-the-reverse-proxy-configuration"]], "Updating": [[163, "updating"], [164, "updating"], [165, "updating"], [166, "updating"]], "Upgrade distribution packages": [[170, "upgrade-distribution-packages"]], "Upgrade manually": [[142, null]], "Upgrade quickstart": [[145, "upgrade-quickstart"]], "Upgrade the docker image": [[170, "upgrade-the-docker-image"]], "Upgrade tips": [[145, "upgrade-tips"]], "Upgrade to Nextcloud 26": [[178, null]], "Upgrade to Nextcloud 27": [[179, null]], "Upgrade to Nextcloud 28": [[180, null]], "Upgrade to Nextcloud 30": [[181, null]], "Upgrade to Nextcloud 31": [[182, null]], "Upgrade to Nextcloud 32": [[183, null]], "Upgrade to Nextcloud 33": [[184, null]], "Upgrade to Nextcloud 35": [[185, null]], "Upgrade via built-in updater": [[147, null]], "Upgrade via snap packages": [[145, null]], "Upload of files greater than 10 MiB fails": [[129, "upload-of-files-greater-than-10-mib-fails"]], "Uploading big files > 512MB": [[26, null]], "Usage": [[8, "usage"], [54, "usage"], [58, "usage"]], "Usage Examples": [[97, "usage-examples"]], "Usage of variables for mount paths": [[40, "usage-of-variables-for-mount-paths"]], "Use HTTPS": [[126, "use-https"]], "Use OOXML by default for new files": [[159, "use-ooxml-by-default-for-new-files"]], "Use a dedicated domain for Nextcloud": [[126, "use-a-dedicated-domain-for-nextcloud"]], "Use a specific attribute or turn off loading of images": [[81, "use-a-specific-attribute-or-turn-off-loading-of-images"]], "Use php-mail for sending mail": [[116, "use-php-mail-for-sending-mail"]], "Useful SQL commands": [[22, "useful-sql-commands"]], "User & group commands": [[157, null]], "User Experience": [[60, "user-experience"]], "User Interface Preference Defaults": [[116, "user-interface-preference-defaults"]], "User Keys: Sharing & Recovery": [[28, "user-keys-sharing-recovery"]], "User Profile attributes": [[81, "user-profile-attributes"]], "User and Group Permissions": [[40, "user-and-group-permissions"]], "User and group mapping": [[81, "user-and-group-mapping"]], "User authentication with LDAP": [[81, null]], "User authentication with OpenID Connect": [[84, null]], "User commands": [[157, "user-commands"]], "User deletion": [[114, "user-deletion"]], "User listing and login per nested groups": [[81, "user-listing-and-login-per-nested-groups"]], "User management": [[74, null], [85, null]], "User migration": [[116, "user-migration"]], "User password policy": [[86, null]], "User provisioning API": [[87, null]], "User session": [[60, "user-session"]], "Users": [[88, null]], "Users are not receiving notification emails": [[53, "users-are-not-receiving-notification-emails"]], "Users tab": [[81, "users-tab"]], "Users\u2019 Federated Cloud IDs not updated after a domain name change": [[138, "users-federated-cloud-ids-not-updated-after-a-domain-name-change"]], "Using File Drop Share links": [[43, "using-file-drop-share-links"]], "Using Nextcloud MCP Server": [[2, "using-nextcloud-mcp-server"]], "Using Nextcloud as an identity provider": [[84, "using-nextcloud-as-an-identity-provider"]], "Using Object Store with Nextcloud": [[60, "using-object-store-with-nextcloud"]], "Using Redis-based transactional file locking": [[132, "using-redis-based-transactional-file-locking"]], "Using Self-Signed Certificates": [[40, "using-self-signed-certificates"]], "Using a custom download URL": [[147, "using-a-custom-download-url"]], "Using a self hosted apps store": [[16, "using-a-self-hosted-apps-store"]], "Using a shared secret for on-demand debugging": [[67, "using-a-shared-secret-for-on-demand-debugging"]], "Using cron to perform background jobs": [[132, "using-cron-to-perform-background-jobs"]], "Using custom app directories": [[16, "using-custom-app-directories"]], "Using email templates": [[63, "using-email-templates"]], "Using private API": [[16, "using-private-api"]], "Using the Redis session handler": [[59, "using-the-redis-session-handler"]], "Using the command line based updater": [[147, "using-the-command-line-based-updater"]], "Using the occ command": [[50, "using-the-occ-command"], [150, null]], "Using the web based updater": [[147, "using-the-web-based-updater"]], "Using the web interface": [[50, "using-the-web-interface"]], "Versions": [[153, "versions"]], "Voice Chat": [[1, "voice-chat"]], "Warnings on admin page": [[70, null]], "Watermarks": [[160, "watermarks"]], "Web browser": [[134, "web-browser"]], "Web server and PHP modules": [[138, "web-server-and-php-modules"]], "Web server configuration": [[178, "web-server-configuration"], [179, "web-server-configuration"], [180, "web-server-configuration"], [181, "web-server-configuration"], [183, "web-server-configuration"]], "WebDAV": [[39, null]], "Webcron": [[57, "webcron"]], "Webhook Listeners": [[187, null]], "Webhook listeners": [[156, "webhook-listeners"]], "Webserver Log Files": [[93, "webserver-log-files"]], "What becomes limited when you lock it down?": [[77, "what-becomes-limited-when-you-lock-it-down"]], "What does the updater do?": [[147, "what-does-the-updater-do"]], "What local users can see": [[77, "what-local-users-can-see"]], "What makes OLMo a fully open model?": [[5, "what-makes-olmo-a-fully-open-model"]], "Where can it be used?": [[175, "where-can-it-be-used"]], "Where do they appear?": [[174, "where-do-they-appear"]], "Who develops Nextcloud?": [[119, null]], "Why desktop clients miss deep changes": [[40, "why-desktop-clients-miss-deep-changes"]], "Why did Nextcloud add code signing?": [[137, "why-did-nextcloud-add-code-signing"]], "Why don\u2019t I see the recovery key option in the Encryption settings?": [[28, "why-don-t-i-see-the-recovery-key-option-in-the-encryption-settings"]], "Why is my prompt slow?": [[15, "why-is-my-prompt-slow"]], "Why is my web domain different from my mail domain?": [[63, "why-is-my-web-domain-different-from-my-mail-domain"]], "Why we drop old PHP versions": [[134, "why-we-drop-old-php-versions"]], "Windmill Workflows": [[188, null]], "Windmill workflows": [[15, "windmill-workflows"]], "Windows compatible filenames": [[50, null]], "Wopi configuration": [[159, "id1"]], "Workflow log": [[67, "workflow-log"]], "Workflows": [[156, "workflows"]], "XML output": [[17, "xml-output"], [17, "id2"], [17, "id4"], [17, "id6"], [75, "xml-output"], [75, "id2"], [75, "id4"], [75, "id6"], [75, "id7"], [75, "id9"], [76, "xml-output"], [76, "id2"], [76, "id4"], [76, "id5"], [76, "id7"], [76, "id9"], [76, "id11"], [76, "id13"], [76, "id15"], [76, "id17"], [76, "id19"], [76, "id21"], [76, "id23"], [76, "id25"], [76, "id27"], [82, "xml-output"], [82, "id2"], [82, "id4"], [82, "id6"]], "XOAUTH2 Authentication with Microsoft Azure AD": [[116, "xoauth2-authentication-with-microsoft-azure-ad"]], "You are accessing this site via HTTP": [[70, "you-are-accessing-this-site-via-http"]], "Your Web server is not set up properly to resolve /.well-known/caldav/ or /.well-known/carddav/": [[70, "your-web-server-is-not-set-up-properly-to-resolve-well-known-caldav-or-well-known-carddav"]], "Your Web server is not yet set up properly to allow file synchronization": [[70, "your-web-server-is-not-yet-set-up-properly-to-allow-file-synchronization"]], "Your database does not run with \u201cREAD COMMITTED\u201d transaction isolation level": [[70, "your-database-does-not-run-with-read-committed-transaction-isolation-level"]], "account_manager.default_property_scope": [[60, "account-manager-default-property-scope"]], "activity_expire_days": [[60, "activity-expire-days"]], "activity_use_cached_mountpoints": [[60, "activity-use-cached-mountpoints"]], "admin-delegation:add": [[156, "admin-delegation-add"]], "admin-delegation:remove": [[156, "admin-delegation-remove"]], "admin-delegation:show": [[156, "admin-delegation-show"]], "allow_local_remote_servers": [[60, "allow-local-remote-servers"]], "allow_user_to_change_display_name": [[60, "allow-user-to-change-display-name"]], "allowed_admin_ranges": [[60, "allowed-admin-ranges"]], "appcodechecker": [[60, "appcodechecker"]], "apps_paths": [[60, "apps-paths"]], "appsallowlist": [[60, "appsallowlist"]], "appstoreenabled": [[60, "appstoreenabled"]], "appstoreurl": [[60, "appstoreurl"]], "auth.bruteforce.max-attempts": [[60, "auth-bruteforce-max-attempts"]], "auth.bruteforce.protection.enabled": [[60, "auth-bruteforce-protection-enabled"]], "auth.bruteforce.protection.force.database": [[60, "auth-bruteforce-protection-force-database"]], "auth.bruteforce.protection.testing": [[60, "auth-bruteforce-protection-testing"]], "auth.storeCryptedPassword": [[60, "auth-storecryptedpassword"]], "auth.webauthn.enabled": [[60, "auth-webauthn-enabled"]], "auto_logout": [[60, "auto-logout"]], "background-job:delete": [[156, "background-job-delete"]], "background-job:execute": [[156, "background-job-execute"]], "background-job:list": [[156, "background-job-list"]], "background-job:worker": [[156, "background-job-worker"]], "background:cron": [[156, "background-cron"]], "background_jobs_expiration_days": [[60, "background-jobs-expiration-days"]], "binary_search_paths": [[60, "binary-search-paths"]], "bulkupload.enabled": [[60, "bulkupload-enabled"]], "cache_app_config": [[60, "cache-app-config"]], "cache_chunk_gc_ttl": [[60, "cache-chunk-gc-ttl"]], "cache_path": [[60, "cache-path"]], "calendar:export": [[151, "calendar-export"]], "calendar:import": [[151, "calendar-import"]], "carddav_sync_request_timeout": [[60, "carddav-sync-request-timeout"]], "carddav_sync_request_truncation": [[60, "carddav-sync-request-truncation"]], "check_data_directory_permissions": [[60, "check-data-directory-permissions"]], "check_for_working_htaccess": [[60, "check-for-working-htaccess"]], "check_for_working_wellknown_setup": [[60, "check-for-working-wellknown-setup"]], "cipher": [[60, "cipher"]], "comments.managerFactory": [[60, "comments-managerfactory"]], "config.php": [[160, "config-php"]], "config_is_read_only": [[60, "config-is-read-only"]], "configfilemode": [[60, "configfilemode"]], "connectivity_check_domains": [[60, "connectivity-check-domains"]], "cookie_domain": [[60, "cookie-domain"]], "copied_sample_config": [[60, "copied-sample-config"]], "core.login_flow_v2.allowed_user_agents": [[60, "core-login-flow-v2-allowed-user-agents"]], "csrf.optout": [[60, "csrf-optout"]], "customclient_desktop": [[60, "customclient-desktop"]], "data-fingerprint": [[60, "data-fingerprint"]], "datadirectory": [[60, "datadirectory"]], "dav:absence:get": [[151, "dav-absence-get"]], "dav:absence:set": [[151, "dav-absence-set"]], "dav:clear-calendar-unshares": [[151, "dav-clear-calendar-unshares"]], "dav:clear-contacts-photo-cache": [[151, "dav-clear-contacts-photo-cache"]], "dav:create-addressbook": [[151, "dav-create-addressbook"]], "dav:create-calendar": [[151, "dav-create-calendar"]], "dav:create-subscription": [[151, "dav-create-subscription"]], "dav:delete-calendar": [[151, "dav-delete-calendar"]], "dav:delete-subscription": [[151, "dav-delete-subscription"]], "dav:fix-missing-caldav-changes": [[151, "dav-fix-missing-caldav-changes"]], "dav:list-addressbooks": [[151, "dav-list-addressbooks"]], "dav:list-calendar-shares": [[151, "dav-list-calendar-shares"]], "dav:list-calendars": [[151, "dav-list-calendars"]], "dav:list-subscriptions": [[151, "dav-list-subscriptions"]], "dav:move-calendar": [[151, "dav-move-calendar"]], "dav:remove-invalid-shares": [[151, "dav-remove-invalid-shares"]], "dav:retention:clean-up": [[151, "dav-retention-clean-up"]], "dav:send-event-reminders": [[151, "dav-send-event-reminders"]], "dav:sync-birthday-calendar": [[151, "dav-sync-birthday-calendar"]], "dav:sync-system-addressbook": [[151, "dav-sync-system-addressbook"]], "davstorage.request_timeout": [[60, "davstorage-request-timeout"]], "db.log_request_id": [[60, "db-log-request-id"]], "db:add-missing-columns": [[151, "db-add-missing-columns"]], "db:add-missing-indices": [[151, "db-add-missing-indices"]], "db:add-missing-primary-keys": [[151, "db-add-missing-primary-keys"]], "db:convert-filecache-bigint": [[151, "db-convert-filecache-bigint"]], "db:convert-mysql-charset": [[151, "db-convert-mysql-charset"]], "db:convert-type": [[151, "db-convert-type"]], "db:schema:expected": [[151, "db-schema-expected"]], "db:schema:export": [[151, "db-schema-export"]], "dbdriveroptions": [[60, "dbdriveroptions"]], "dbhost": [[60, "dbhost"]], "dbname": [[60, "dbname"]], "dbpassword": [[60, "dbpassword"]], "dbpersistent": [[60, "dbpersistent"]], "dbreplica": [[60, "dbreplica"]], "dbtableprefix": [[60, "dbtableprefix"]], "dbtype": [[60, "dbtype"]], "dbuser": [[60, "dbuser"]], "debug": [[60, "debug"]], "default_certificates_bundle_path": [[60, "default-certificates-bundle-path"]], "default_language": [[60, "default-language"]], "default_locale": [[60, "default-locale"]], "default_phone_region": [[60, "default-phone-region"]], "default_timezone": [[60, "default-timezone"]], "defaultapp": [[60, "defaultapp"]], "diagnostics.logging": [[60, "diagnostics-logging"]], "diagnostics.logging.threshold": [[60, "diagnostics-logging-threshold"]], "documentation_url.server_logs": [[60, "documentation-url-server-logs"]], "enable_lazy_objects": [[60, "enable-lazy-objects"]], "enable_non-accessible_features": [[60, "enable-non-accessible-features"]], "enable_previews": [[60, "enable-previews"]], "enabledPreviewProviders": [[60, "enabledpreviewproviders"]], "encryption.use_legacy_base64_encoding": [[60, "encryption-use-legacy-base64-encoding"]], "encryption:change-key-storage-root": [[152, "encryption-change-key-storage-root"]], "encryption:clean-orphaned-keys": [[152, "encryption-clean-orphaned-keys"]], "encryption:decrypt-all": [[152, "encryption-decrypt-all"]], "encryption:disable": [[152, "encryption-disable"]], "encryption:disable-master-key": [[152, "encryption-disable-master-key"]], "encryption:drop-legacy-filekey": [[152, "encryption-drop-legacy-filekey"]], "encryption:enable": [[152, "encryption-enable"]], "encryption:enable-master-key": [[152, "encryption-enable-master-key"]], "encryption:encrypt-all": [[152, "encryption-encrypt-all"]], "encryption:fix-encrypted-version": [[152, "encryption-fix-encrypted-version"]], "encryption:fix-key-location": [[152, "encryption-fix-key-location"]], "encryption:list-modules": [[152, "encryption-list-modules"]], "encryption:migrate-key-storage-format": [[152, "encryption-migrate-key-storage-format"]], "encryption:recover-user": [[152, "encryption-recover-user"]], "encryption:scan:legacy-format": [[152, "encryption-scan-legacy-format"]], "encryption:set-default-module": [[152, "encryption-set-default-module"]], "encryption:show-key-storage-root": [[152, "encryption-show-key-storage-root"]], "encryption:status": [[152, "encryption-status"]], "enforce_theme": [[60, "enforce-theme"]], "errorlog": [[67, "errorlog"]], "external_storage.auth_availability_delay": [[60, "external-storage-auth-availability-delay"]], "federation:sync-addressbooks": [[153, "federation-sync-addressbooks"]], "file": [[67, "file"]], "filelocking.debug": [[60, "filelocking-debug"]], "filelocking.ttl": [[60, "filelocking-ttl"]], "files.chunked_upload.max_parallel_count": [[60, "files-chunked-upload-max-parallel-count"]], "files.chunked_upload.max_size": [[60, "files-chunked-upload-max-size"]], "files.trash.delete": [[60, "files-trash-delete"]], "files:cleanup": [[153, "files-cleanup"]], "files:copy": [[153, "files-copy"]], "files:delete": [[153, "files-delete"]], "files:get": [[153, "files-get"]], "files:mount:list": [[153, "files-mount-list"]], "files:mount:refresh": [[153, "files-mount-refresh"]], "files:move": [[153, "files-move"]], "files:object:delete": [[153, "files-object-delete"]], "files:object:get": [[153, "files-object-get"]], "files:object:info": [[153, "files-object-info"]], "files:object:list": [[153, "files-object-list"]], "files:object:orphans": [[153, "files-object-orphans"]], "files:object:put": [[153, "files-object-put"]], "files:put": [[153, "files-put"]], "files:reminders": [[153, "files-reminders"]], "files:repair-tree": [[153, "files-repair-tree"]], "files:sanitize-filenames": [[153, "files-sanitize-filenames"]], "files:scan": [[153, "files-scan"]], "files:scan-app-data": [[153, "files-scan-app-data"]], "files:transfer-ownership": [[153, "files-transfer-ownership"]], "files:windows-compatible-filenames": [[153, "files-windows-compatible-filenames"]], "files_antivirus:background-scan": [[156, "files-antivirus-background-scan"]], "files_antivirus:mark": [[156, "files-antivirus-mark"]], "files_antivirus:scan": [[156, "files-antivirus-scan"]], "files_antivirus:status": [[156, "files-antivirus-status"]], "files_external:applicable": [[153, "files-external-applicable"]], "files_external:backends": [[153, "files-external-backends"]], "files_external:config": [[153, "files-external-config"]], "files_external:create": [[153, "files-external-create"]], "files_external:delete": [[153, "files-external-delete"]], "files_external:dependencies": [[153, "files-external-dependencies"]], "files_external:export": [[153, "files-external-export"]], "files_external:import": [[153, "files-external-import"]], "files_external:list": [[153, "files-external-list"]], "files_external:notify": [[153, "files-external-notify"]], "files_external:option": [[153, "files-external-option"]], "files_external:scan": [[153, "files-external-scan"]], "files_external:verify": [[153, "files-external-verify"]], "files_external_allow_create_new_local": [[60, "files-external-allow-create-new-local"]], "files_no_background_scan": [[60, "files-no-background-scan"]], "filesystem_cache_readonly": [[60, "filesystem-cache-readonly"]], "filesystem_check_changes": [[60, "filesystem-check-changes"]], "forbidden_filename_basenames": [[60, "forbidden-filename-basenames"]], "forbidden_filename_characters": [[60, "forbidden-filename-characters"]], "forbidden_filename_extensions": [[60, "forbidden-filename-extensions"]], "forbidden_filenames": [[60, "forbidden-filenames"]], "force_language": [[60, "force-language"]], "force_locale": [[60, "force-locale"]], "forwarded_for_headers": [[60, "forwarded-for-headers"]], "group:add": [[157, "group-add"]], "group:adduser and group:removeuser": [[157, "group-adduser-and-group-removeuser"]], "group:delete": [[157, "group-delete"]], "group:info": [[157, "group-info"]], "group:list": [[157, "group-list"]], "gs.enabled": [[60, "gs-enabled"]], "gs.federation": [[60, "gs-federation"]], "has_internet_connection": [[60, "has-internet-connection"]], "hashingCost": [[60, "hashingcost"]], "hashingMemoryCost": [[60, "hashingmemorycost"]], "hashingThreads": [[60, "hashingthreads"]], "hashingTimeCost": [[60, "hashingtimecost"]], "hashing_default_password": [[60, "hashing-default-password"]], "hide_login_form": [[60, "hide-login-form"]], "htaccess.IgnoreFrontController": [[60, "htaccess-ignorefrontcontroller"]], "htaccess.RewriteBase": [[60, "htaccess-rewritebase"]], "http_client_add_user_agent_url": [[60, "http-client-add-user-agent-url"]], "info:file": [[156, "info-file"]], "info:file:space": [[156, "info-file-space"]], "info:storage": [[156, "info-storage"]], "info:storages": [[156, "info-storages"]], "installed": [[60, "installed"]], "instanceid": [[60, "instanceid"]], "integrity:check-app": [[153, "integrity-check-app"]], "integrity:check-core": [[153, "integrity-check-core"]], "integrity:sign-app": [[153, "integrity-sign-app"]], "knowledgebase.embedded": [[60, "knowledgebase-embedded"]], "knowledgebaseenabled": [[60, "knowledgebaseenabled"]], "ldap:check-group": [[154, "ldap-check-group"]], "ldap:check-user": [[154, "ldap-check-user"]], "ldap:create-empty-config": [[154, "ldap-create-empty-config"]], "ldap:delete-config": [[154, "ldap-delete-config"]], "ldap:search": [[154, "ldap-search"]], "ldap:set-config": [[154, "ldap-set-config"]], "ldap:show-remnants": [[154, "ldap-show-remnants"]], "ldap:test-config": [[154, "ldap-test-config"]], "ldap:test-user-settings": [[154, "ldap-test-user-settings"]], "ldapUserCleanupInterval": [[60, "ldapusercleanupinterval"]], "ldap_log_file": [[60, "ldap-log-file"]], "localstorage.allowsymlinks": [[60, "localstorage-allowsymlinks"]], "localstorage.umask": [[60, "localstorage-umask"]], "localstorage.unlink_on_truncate": [[60, "localstorage-unlink-on-truncate"]], "log.backtrace": [[60, "log-backtrace"]], "log.condition": [[60, "log-condition"]], "log:file": [[156, "log-file"]], "log:manage": [[156, "log-manage"]], "log_query": [[60, "log-query"]], "log_rotate_size": [[60, "log-rotate-size"]], "log_type": [[60, "log-type"]], "log_type_audit": [[60, "log-type-audit"]], "logdateformat": [[60, "logdateformat"]], "logfile": [[60, "logfile"]], "logfile_audit": [[60, "logfile-audit"]], "logfilemode": [[60, "logfilemode"]], "login_form_autocomplete": [[60, "login-form-autocomplete"]], "login_form_timeout": [[60, "login-form-timeout"]], "loglevel": [[60, "loglevel"]], "loglevel_dirty_database_queries": [[60, "loglevel-dirty-database-queries"]], "loglevel_frontend": [[60, "loglevel-frontend"]], "logo_url": [[60, "logo-url"]], "logtimezone": [[60, "logtimezone"]], "lookup_server": [[60, "lookup-server"]], "lost_password_link": [[60, "lost-password-link"]], "mail_domain": [[60, "mail-domain"]], "mail_from_address": [[60, "mail-from-address"]], "mail_send_plaintext_only": [[60, "mail-send-plaintext-only"]], "mail_sendmailmode": [[60, "mail-sendmailmode"]], "mail_smtpauth": [[60, "mail-smtpauth"]], "mail_smtpdebug": [[60, "mail-smtpdebug"]], "mail_smtphost": [[60, "mail-smtphost"]], "mail_smtpmode": [[60, "mail-smtpmode"]], "mail_smtpname": [[60, "mail-smtpname"]], "mail_smtppassword": [[60, "mail-smtppassword"]], "mail_smtpport": [[60, "mail-smtpport"]], "mail_smtpsecure": [[60, "mail-smtpsecure"]], "mail_smtpstreamoptions": [[60, "mail-smtpstreamoptions"]], "mail_smtptimeout": [[60, "mail-smtptimeout"]], "mail_template_class": [[60, "mail-template-class"]], "maintenance": [[60, "id1"]], "maintenance:data-fingerprint": [[156, "maintenance-data-fingerprint"]], "maintenance:mimetype:update-db and maintenance:mimetype:update-js": [[156, "maintenance-mimetype-update-db-and-maintenance-mimetype-update-js"]], "maintenance:mode": [[156, "maintenance-mode"]], "maintenance:repair": [[156, "maintenance-repair"]], "maintenance:repair-share-owner": [[156, "maintenance-repair-share-owner"]], "maintenance:theme:update": [[156, "maintenance-theme-update"]], "maintenance:update:htaccess": [[156, "maintenance-update-htaccess"]], "maintenance_window_start": [[57, "maintenance-window-start"], [60, "maintenance-window-start"]], "max_file_conversion_filesize": [[60, "max-file-conversion-filesize"]], "max_filesize_animated_gifs_public_sharing": [[60, "max-filesize-animated-gifs-public-sharing"]], "maximum.supported.desktop.version": [[60, "maximum-supported-desktop-version"]], "memberOf / read memberof permissions": [[81, "memberof-read-memberof-permissions"]], "memcache.distributed": [[60, "memcache-distributed"]], "memcache.local": [[60, "memcache-local"]], "memcache.locking": [[60, "memcache-locking"]], "memcache_customprefix": [[60, "memcache-customprefix"]], "memcached_options": [[60, "memcached-options"]], "memcached_servers": [[60, "memcached-servers"]], "metadata_max_filesize": [[60, "metadata-max-filesize"]], "minimum.supported.desktop.version": [[60, "minimum-supported-desktop-version"]], "mysql.collation": [[60, "mysql-collation"]], "mysql.utf8mb4": [[60, "mysql-utf8mb4"]], "nginx": [[26, "nginx"]], "no_unsupported_browser_warning": [[60, "no-unsupported-browser-warning"]], "objectstore": [[60, "objectstore"], [60, "id2"], [60, "id3"]], "objectstore.multibucket.preview-distribution": [[60, "objectstore-multibucket-preview-distribution"]], "occ commands": [[58, "occ-commands"], [160, "occ-commands"]], "ocm:keys:activate": [[155, "ocm-keys-activate"]], "ocm:keys:list": [[155, "ocm-keys-list"]], "ocm:keys:retire": [[155, "ocm-keys-retire"]], "ocm:keys:stage": [[155, "ocm-keys-stage"]], "openmetrics_allowed_clients": [[60, "openmetrics-allowed-clients"]], "openmetrics_skipped_classes": [[60, "openmetrics-skipped-classes"]], "openssl": [[60, "openssl"]], "overwrite.cli.url": [[60, "overwrite-cli-url"]], "overwritecondaddr": [[60, "overwritecondaddr"]], "overwritehost": [[60, "overwritehost"]], "overwriteprotocol": [[60, "overwriteprotocol"]], "overwritewebroot": [[60, "overwritewebroot"]], "part_file_in_storage": [[60, "part-file-in-storage"]], "passwordsalt": [[60, "passwordsalt"]], "pgsql_ssl": [[60, "pgsql-ssl"]], "preview:cleanup": [[153, "preview-cleanup"]], "preview_concurrency_all": [[60, "preview-concurrency-all"]], "preview_concurrency_new": [[60, "preview-concurrency-new"]], "preview_expiration_days": [[60, "preview-expiration-days"]], "preview_ffmpeg_path": [[60, "preview-ffmpeg-path"]], "preview_ffprobe_path": [[60, "preview-ffprobe-path"]], "preview_imaginary_key": [[60, "preview-imaginary-key"]], "preview_imaginary_url": [[60, "preview-imaginary-url"]], "preview_libreoffice_path": [[60, "preview-libreoffice-path"]], "preview_max_filesize_image": [[60, "preview-max-filesize-image"]], "preview_max_memory": [[60, "preview-max-memory"]], "preview_max_x": [[60, "preview-max-x"]], "preview_max_y": [[60, "preview-max-y"]], "profile.enabled": [[60, "profile-enabled"]], "profiler": [[60, "profiler"]], "profiling.path": [[60, "profiling-path"]], "profiling.request": [[60, "profiling-request"]], "profiling.request.rate": [[60, "profiling-request-rate"]], "profiling.sample": [[60, "profiling-sample"]], "profiling.sample.rate": [[60, "profiling-sample-rate"]], "profiling.sample.rotation": [[60, "profiling-sample-rotation"]], "profiling.secret": [[60, "profiling-secret"]], "projects.enabled": [[60, "projects-enabled"]], "proxy": [[60, "proxy"]], "proxyexclude": [[60, "proxyexclude"]], "proxyuserpwd": [[60, "proxyuserpwd"]], "qmail": [[63, "qmail"]], "query_log_file": [[60, "query-log-file"]], "query_log_file_backtrace": [[60, "query-log-file-backtrace"]], "query_log_file_parameters": [[60, "query-log-file-parameters"]], "query_log_file_requestid": [[60, "query-log-file-requestid"]], "quota_include_external_storage": [[60, "quota-include-external-storage"]], "ratelimit.protection.enabled": [[60, "ratelimit-protection-enabled"]], "ratelimit_overwrite": [[60, "ratelimit-overwrite"]], "redis": [[60, "redis"]], "redis.cluster": [[60, "redis-cluster"]], "redis_log_file": [[60, "redis-log-file"]], "reduce_to_languages": [[60, "reduce-to-languages"]], "reference_opengraph": [[60, "reference-opengraph"]], "remember_login_cookie_lifetime": [[60, "remember-login-cookie-lifetime"]], "secret": [[60, "secret"]], "security.ipv6_normalized_subnet_size": [[60, "security-ipv6-normalized-subnet-size"]], "security:bruteforce:attempts": [[156, "security-bruteforce-attempts"]], "security:bruteforce:reset": [[156, "security-bruteforce-reset"]], "security:certificates": [[156, "security-certificates"]], "security:certificates:export": [[156, "security-certificates-export"]], "security:certificates:import": [[156, "security-certificates-import"]], "security:certificates:remove": [[156, "security-certificates-remove"]], "serverid": [[60, "serverid"]], "session_keepalive": [[60, "session-keepalive"]], "session_lifetime": [[60, "session-lifetime"]], "session_relaxed_expiry": [[60, "session-relaxed-expiry"]], "share:list": [[153, "share-list"], [156, "share-list"]], "share_folder": [[60, "share-folder"]], "sharing.allow_custom_share_folder": [[60, "sharing-allow-custom-share-folder"]], "sharing.allow_disabled_password_enforcement_groups": [[60, "sharing-allow-disabled-password-enforcement-groups"]], "sharing.enable_mail_link_password_expiration": [[60, "sharing-enable-mail-link-password-expiration"]], "sharing.enable_share_accept": [[60, "sharing-enable-share-accept"]], "sharing.enable_share_mail": [[60, "sharing-enable-share-mail"]], "sharing.federation.allowSelfSignedCertificates": [[60, "sharing-federation-allowselfsignedcertificates"]], "sharing.force_share_accept": [[60, "sharing-force-share-accept"]], "sharing.mail_link_password_expiration_interval": [[60, "sharing-mail-link-password-expiration-interval"]], "sharing.managerFactory": [[60, "sharing-managerfactory"]], "sharing.maxAutocompleteResults": [[60, "sharing-maxautocompleteresults"]], "sharing.minSearchStringLength": [[60, "sharing-minsearchstringlength"]], "sharing:cleanup-remote-storages": [[153, "sharing-cleanup-remote-storages"]], "sharing:delete-orphan-shares": [[153, "sharing-delete-orphan-shares"]], "sharing:expiration-notification": [[153, "sharing-expiration-notification"]], "sharing:fix-share-owners": [[153, "sharing-fix-share-owners"]], "simpleSignUpLink.shown": [[60, "simplesignuplink-shown"]], "skeletondirectory": [[60, "skeletondirectory"]], "sort_groups_by_name": [[60, "sort-groups-by-name"]], "sqlite.journal_mode": [[60, "sqlite-journal-mode"]], "supportedDatabases": [[60, "supporteddatabases"]], "syslog": [[67, "syslog"]], "syslog_tag": [[60, "syslog-tag"]], "syslog_tag_audit": [[60, "syslog-tag-audit"]], "systemd": [[57, "systemd"], [67, "systemd"]], "tag:add": [[157, "tag-add"]], "tag:delete": [[157, "tag-delete"]], "tag:edit": [[157, "tag-edit"]], "tag:list": [[157, "tag-list"]], "taskprocessing:task-type:set-enabled": [[156, "taskprocessing-task-type-set-enabled"]], "taskprocessing:task:cleanup": [[156, "taskprocessing-task-cleanup"]], "taskprocessing:task:get": [[156, "taskprocessing-task-get"]], "taskprocessing:task:list": [[156, "taskprocessing-task-list"]], "taskprocessing:task:stats": [[156, "taskprocessing-task-stats"]], "taskprocessing:worker": [[156, "taskprocessing-worker"]], "tempdirectory": [[60, "tempdirectory"]], "templatedirectory": [[60, "templatedirectory"]], "theme": [[60, "theme"]], "theming.standalone_window.enabled": [[60, "theming-standalone-window-enabled"]], "theming:config": [[156, "theming-config"]], "token_auth_activity_update": [[60, "token-auth-activity-update"]], "token_auth_enforced": [[60, "token-auth-enforced"]], "transferIncomingShares": [[60, "transferincomingshares"]], "trashbin:cleanup": [[153, "trashbin-cleanup"], [153, "id1"]], "trashbin:expire": [[153, "trashbin-expire"], [153, "id2"]], "trashbin:restore": [[153, "trashbin-restore"]], "trashbin:size": [[153, "trashbin-size"], [153, "id3"]], "trashbin_retention_obligation": [[60, "trashbin-retention-obligation"]], "trusted_domains": [[60, "trusted-domains"]], "trusted_proxies": [[60, "trusted-proxies"]], "twofactorauth:cleanup": [[157, "twofactorauth-cleanup"]], "twofactorauth:disable and twofactorauth:enable": [[157, "twofactorauth-disable-and-twofactorauth-enable"]], "twofactorauth:enforce": [[157, "twofactorauth-enforce"]], "twofactorauth:state": [[157, "twofactorauth-state"]], "unified_search.enabled": [[60, "unified-search-enabled"]], "updatechecker": [[60, "updatechecker"]], "updatedirectory": [[60, "updatedirectory"]], "updater.release.channel": [[60, "updater-release-channel"]], "updater.server.url": [[60, "updater-server-url"]], "upgrade.cli-upgrade-link": [[60, "upgrade-cli-upgrade-link"]], "upgrade.disable-web": [[60, "upgrade-disable-web"]], "user:add": [[157, "user-add"]], "user:auth-tokens:add": [[157, "user-auth-tokens-add"]], "user:auth-tokens:delete": [[157, "user-auth-tokens-delete"]], "user:auth-tokens:list": [[157, "user-auth-tokens-list"]], "user:clear-avatar-cache": [[157, "user-clear-avatar-cache"]], "user:delete": [[157, "user-delete"]], "user:disable and user:enable": [[157, "user-disable-and-user-enable"]], "user:info": [[157, "user-info"]], "user:keys:verify": [[157, "user-keys-verify"]], "user:lastseen": [[157, "user-lastseen"]], "user:list": [[157, "user-list"]], "user:profile": [[157, "user-profile"]], "user:report": [[157, "user-report"]], "user:resetpassword": [[157, "user-resetpassword"]], "user:setting": [[157, "user-setting"]], "user:sync-account-data": [[157, "user-sync-account-data"]], "user:welcome": [[157, "user-welcome"]], "user_ini_additional_lines": [[60, "user-ini-additional-lines"]], "version": [[60, "version"]], "versions:cleanup": [[153, "versions-cleanup"], [153, "id4"]], "versions:expire": [[153, "versions-expire"], [153, "id5"]], "versions_retention_obligation": [[60, "versions-retention-obligation"]], "workflows:list": [[156, "workflows-list"]], "\u201cAccess through untrusted domain\u201d error with HTTP/3": [[129, "access-through-untrusted-domain-error-with-http-3"]], "\u201cCSync unknown error\u201d": [[93, "csync-unknown-error"]], "\u201cConnection closed\u201d message when syncing files": [[93, "connection-closed-message-when-syncing-files"]]}, "docnames": ["ai/ai_as_a_service", "ai/app_assistant", "ai/app_context_agent", "ai/app_context_chat", "ai/app_live_transcription", "ai/app_llm2", "ai/app_recognize", "ai/app_stt_whisper2", "ai/app_summary_bot", "ai/app_text2image_stablediffusion2", "ai/app_text2speech_kokoro", "ai/app_translate2", "ai/eu_ai_act", "ai/index", "ai/insight_and_debugging", "ai/overview", "apps_management", "apps_management_api", "collectives/index", "configuration_database/bigint_identifiers", "configuration_database/db_conversion", "configuration_database/index", "configuration_database/linux_database_configuration", "configuration_database/mysql_4byte_support", "configuration_database/replication", "configuration_database/splitting", "configuration_files/big_file_upload_configuration", "configuration_files/default_files_configuration", "configuration_files/encryption_configuration", "configuration_files/encryption_details", "configuration_files/encryption_migration", "configuration_files/external_storage/amazons3", "configuration_files/external_storage/auth_mechanisms", "configuration_files/external_storage/ftp", "configuration_files/external_storage/local", "configuration_files/external_storage/nextcloud", "configuration_files/external_storage/openstack", "configuration_files/external_storage/sftp", "configuration_files/external_storage/smb", "configuration_files/external_storage/webdav", "configuration_files/external_storage_configuration_gui", "configuration_files/federated_cloud_sharing_configuration", "configuration_files/file_conversion", "configuration_files/file_sharing_configuration", "configuration_files/file_versioning", "configuration_files/files_locking_transactional", "configuration_files/index", "configuration_files/previews_configuration", "configuration_files/primary_storage", "configuration_files/trashbin_configuration", "configuration_files/windows_compatible_filenames", "configuration_mimetypes/index", "configuration_monitoring/index", "configuration_server/activity_configuration", "configuration_server/admin_delegation_configuration", "configuration_server/android_deep_link_handling", "configuration_server/antivirus_configuration", "configuration_server/background_jobs_configuration", "configuration_server/bruteforce_configuration", "configuration_server/caching_configuration", "configuration_server/config_sample_php_parameters", "configuration_server/dashboard_configuration", "configuration_server/domain_change", "configuration_server/email_configuration", "configuration_server/external_sites", "configuration_server/index", "configuration_server/language_configuration", "configuration_server/logging_configuration", "configuration_server/oauth2", "configuration_server/reverse_proxy_configuration", "configuration_server/security_setup_warnings", "configuration_server/text_configuration", "configuration_server/theming", "configuration_user/authentication", "configuration_user/index", "configuration_user/instruction_set_for_groups", "configuration_user/instruction_set_for_users", "configuration_user/profile_configuration", "configuration_user/reset_admin_password", "configuration_user/reset_user_password", "configuration_user/two_factor-auth", "configuration_user/user_auth_ldap", "configuration_user/user_auth_ldap_api", "configuration_user/user_auth_ldap_cleanup", "configuration_user/user_auth_oidc", "configuration_user/user_configuration", "configuration_user/user_password_policy", "configuration_user/user_provisioning_api", "contents", "declarations/energy_consumption", "declarations/index", "desktop/index", "desktop/massdeployment", "desktop/troubleshooting", "exapps_management/AdvancedDeployOptions", "exapps_management/AppAPIAndExternalApps", "exapps_management/DeployConfigurations", "exapps_management/ManagingDeployDaemons", "exapps_management/ManagingExApps", "exapps_management/TestDeploy", "exapps_management/index", "file_workflows/access_control", "file_workflows/automated_tagging", "file_workflows/configuration", "file_workflows/index", "file_workflows/retention", "gdpr/cookies", "gdpr/data_retention", "gdpr/helpful_apps", "gdpr/index", "gdpr/personal_data", "gdpr/subject_rights", "groupware/calendar", "groupware/contacts", "groupware/contactsinteraction", "groupware/index", "groupware/mail", "groupware/out_of_office", "groupware/troubleshooting", "index", "installation/automatic_configuration", "installation/command_line_installation", "installation/deployment_recommendations", "installation/example_centos", "installation/example_openbsd", "installation/example_ubuntu", "installation/harden_server", "installation/index", "installation/installation_wizard", "installation/nginx", "installation/php_configuration", "installation/selinux_configuration", "installation/server_tuning", "installation/source_installation", "installation/system_requirements", "installation/uninstallation", "issues/applying_patch", "issues/code_signing", "issues/general_troubleshooting", "issues/index", "maintenance/backup", "maintenance/index", "maintenance/manual_upgrade", "maintenance/migrating", "maintenance/migrating_owncloud", "maintenance/package_upgrade", "maintenance/restore", "maintenance/update", "maintenance/upgrade", "occ_apps", "occ_command", "occ_database", "occ_encryption", "occ_files", "occ_ldap", "occ_ocm", "occ_system", "occ_users", "office/collabora_online", "office/configuration", "office/euro-office/configuration", "office/euro-office/index", "office/euro-office/installation", "office/euro-office/installation_debian", "office/euro-office/installation_docker", "office/euro-office/installation_ubuntu", "office/example-docker", "office/example-ubuntu", "office/index", "office/installation", "office/migration", "office/proxy", "office/troubleshooting", "reference/index", "reference/link_previews", "reference/smart_picker", "release_notes", "release_notes/index", "release_notes/upgrade_to_26", "release_notes/upgrade_to_27", "release_notes/upgrade_to_28", "release_notes/upgrade_to_30", "release_notes/upgrade_to_31", "release_notes/upgrade_to_32", "release_notes/upgrade_to_33", "release_notes/upgrade_to_35", "release_schedule", "webhook_listeners/index", "windmill_workflows/index"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2}, "filenames": ["ai/ai_as_a_service.rst", "ai/app_assistant.rst", "ai/app_context_agent.rst", "ai/app_context_chat.rst", "ai/app_live_transcription.rst", "ai/app_llm2.rst", "ai/app_recognize.rst", "ai/app_stt_whisper2.rst", "ai/app_summary_bot.rst", "ai/app_text2image_stablediffusion2.rst", "ai/app_text2speech_kokoro.rst", "ai/app_translate2.rst", "ai/eu_ai_act.rst", "ai/index.rst", "ai/insight_and_debugging.rst", "ai/overview.rst", "apps_management.rst", "apps_management_api.rst", "collectives/index.rst", "configuration_database/bigint_identifiers.rst", "configuration_database/db_conversion.rst", "configuration_database/index.rst", "configuration_database/linux_database_configuration.rst", "configuration_database/mysql_4byte_support.rst", "configuration_database/replication.rst", "configuration_database/splitting.rst", "configuration_files/big_file_upload_configuration.rst", "configuration_files/default_files_configuration.rst", "configuration_files/encryption_configuration.rst", "configuration_files/encryption_details.rst", "configuration_files/encryption_migration.rst", "configuration_files/external_storage/amazons3.rst", "configuration_files/external_storage/auth_mechanisms.rst", "configuration_files/external_storage/ftp.rst", "configuration_files/external_storage/local.rst", "configuration_files/external_storage/nextcloud.rst", "configuration_files/external_storage/openstack.rst", "configuration_files/external_storage/sftp.rst", "configuration_files/external_storage/smb.rst", "configuration_files/external_storage/webdav.rst", "configuration_files/external_storage_configuration_gui.rst", "configuration_files/federated_cloud_sharing_configuration.rst", "configuration_files/file_conversion.rst", "configuration_files/file_sharing_configuration.rst", "configuration_files/file_versioning.rst", "configuration_files/files_locking_transactional.rst", "configuration_files/index.rst", "configuration_files/previews_configuration.rst", "configuration_files/primary_storage.rst", "configuration_files/trashbin_configuration.rst", "configuration_files/windows_compatible_filenames.rst", "configuration_mimetypes/index.rst", "configuration_monitoring/index.rst", "configuration_server/activity_configuration.rst", "configuration_server/admin_delegation_configuration.rst", "configuration_server/android_deep_link_handling.rst", "configuration_server/antivirus_configuration.rst", "configuration_server/background_jobs_configuration.rst", "configuration_server/bruteforce_configuration.rst", "configuration_server/caching_configuration.rst", "configuration_server/config_sample_php_parameters.rst", "configuration_server/dashboard_configuration.rst", "configuration_server/domain_change.rst", "configuration_server/email_configuration.rst", "configuration_server/external_sites.rst", "configuration_server/index.rst", "configuration_server/language_configuration.rst", "configuration_server/logging_configuration.rst", "configuration_server/oauth2.rst", "configuration_server/reverse_proxy_configuration.rst", "configuration_server/security_setup_warnings.rst", "configuration_server/text_configuration.rst", "configuration_server/theming.rst", "configuration_user/authentication.rst", "configuration_user/index.rst", "configuration_user/instruction_set_for_groups.rst", "configuration_user/instruction_set_for_users.rst", "configuration_user/profile_configuration.rst", "configuration_user/reset_admin_password.rst", "configuration_user/reset_user_password.rst", "configuration_user/two_factor-auth.rst", "configuration_user/user_auth_ldap.rst", "configuration_user/user_auth_ldap_api.rst", "configuration_user/user_auth_ldap_cleanup.rst", "configuration_user/user_auth_oidc.rst", "configuration_user/user_configuration.rst", "configuration_user/user_password_policy.rst", "configuration_user/user_provisioning_api.rst", "contents.rst", "declarations/energy_consumption.rst", "declarations/index.rst", "desktop/index.rst", "desktop/massdeployment.rst", "desktop/troubleshooting.rst", "exapps_management/AdvancedDeployOptions.rst", "exapps_management/AppAPIAndExternalApps.rst", "exapps_management/DeployConfigurations.rst", "exapps_management/ManagingDeployDaemons.rst", "exapps_management/ManagingExApps.rst", "exapps_management/TestDeploy.rst", "exapps_management/index.rst", "file_workflows/access_control.rst", "file_workflows/automated_tagging.rst", "file_workflows/configuration.rst", "file_workflows/index.rst", "file_workflows/retention.rst", "gdpr/cookies.rst", "gdpr/data_retention.rst", "gdpr/helpful_apps.rst", "gdpr/index.rst", "gdpr/personal_data.rst", "gdpr/subject_rights.rst", "groupware/calendar.rst", "groupware/contacts.rst", "groupware/contactsinteraction.rst", "groupware/index.rst", "groupware/mail.rst", "groupware/out_of_office.rst", "groupware/troubleshooting.rst", "index.rst", "installation/automatic_configuration.rst", "installation/command_line_installation.rst", "installation/deployment_recommendations.rst", "installation/example_centos.rst", "installation/example_openbsd.rst", "installation/example_ubuntu.rst", "installation/harden_server.rst", "installation/index.rst", "installation/installation_wizard.rst", "installation/nginx.rst", "installation/php_configuration.rst", "installation/selinux_configuration.rst", "installation/server_tuning.rst", "installation/source_installation.rst", "installation/system_requirements.rst", "installation/uninstallation.rst", "issues/applying_patch.rst", "issues/code_signing.rst", "issues/general_troubleshooting.rst", "issues/index.rst", "maintenance/backup.rst", "maintenance/index.rst", "maintenance/manual_upgrade.rst", "maintenance/migrating.rst", "maintenance/migrating_owncloud.rst", "maintenance/package_upgrade.rst", "maintenance/restore.rst", "maintenance/update.rst", "maintenance/upgrade.rst", "occ_apps.rst", "occ_command.rst", "occ_database.rst", "occ_encryption.rst", "occ_files.rst", "occ_ldap.rst", "occ_ocm.rst", "occ_system.rst", "occ_users.rst", "office/collabora_online.rst", "office/configuration.rst", "office/euro-office/configuration.rst", "office/euro-office/index.rst", "office/euro-office/installation.rst", "office/euro-office/installation_debian.rst", "office/euro-office/installation_docker.rst", "office/euro-office/installation_ubuntu.rst", "office/example-docker.rst", "office/example-ubuntu.rst", "office/index.rst", "office/installation.rst", "office/migration.rst", "office/proxy.rst", "office/troubleshooting.rst", "reference/index.rst", "reference/link_previews.rst", "reference/smart_picker.rst", "release_notes.rst", "release_notes/index.rst", "release_notes/upgrade_to_26.rst", "release_notes/upgrade_to_27.rst", "release_notes/upgrade_to_28.rst", "release_notes/upgrade_to_30.rst", "release_notes/upgrade_to_31.rst", "release_notes/upgrade_to_32.rst", "release_notes/upgrade_to_33.rst", "release_notes/upgrade_to_35.rst", "release_schedule.rst", "webhook_listeners/index.rst", "windmill_workflows/index.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 20, 22, 26, 27, 28, 29, 31, 37, 38, 40, 41, 44, 45, 48, 49, 56, 57, 58, 59, 60, 62, 63, 64, 67, 69, 72, 74, 77, 81, 83, 84, 88, 92, 93, 95, 96, 98, 99, 101, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 118, 124, 126, 129, 130, 131, 132, 133, 136, 137, 138, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 156, 157, 159, 160, 161, 163, 167, 172, 180, 183, 184, 186, 187], "0": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 15, 17, 22, 23, 24, 26, 28, 29, 33, 41, 45, 48, 52, 53, 59, 60, 63, 67, 69, 70, 71, 75, 76, 77, 81, 82, 85, 92, 93, 95, 96, 98, 99, 107, 112, 113, 116, 117, 118, 124, 126, 128, 129, 130, 132, 134, 138, 144, 147, 148, 149, 150, 151, 153, 154, 156, 157, 159, 166, 172, 179, 180, 181, 182, 183, 185, 186, 187], "00": [22, 23, 55, 59, 60, 67, 153, 156, 157], "000": [29, 112, 113, 119], "0000": 156, "001": 60, "0022": 60, "00679e": 156, "0082c9": [72, 156], "00am": [57, 60], "00iv00": 29, "00sig00": 29, "01": [57, 60, 67, 83, 134, 151, 153, 156, 157], "0100": 63, "0123": 76, "01t00": 153, "01t08": 157, "01t09": 153, "01t12": 153, "01t14": 156, "02": [6, 59, 67, 153], "03": [55, 67, 157], "04": [22, 72, 88, 127, 133, 134, 153, 161, 162, 169, 185], "05": [57, 60, 129, 151, 153], "050": 156, "055": 22, "06": [129, 156], "062": 22, "0640": [60, 67], "07": 60, "0750": 34, "0770": 28, "079e7bc89d69792839a5e1831b1cbc80": 118, "08": [60, 153], "09": [67, 129], "09563164f9904a837f9ca0b5f626db56c838e5098e0ccc1d8b": 137, "0e": 55, "1": [1, 2, 3, 4, 5, 6, 8, 9, 11, 14, 15, 16, 17, 22, 23, 24, 26, 28, 29, 31, 33, 43, 47, 48, 53, 56, 57, 58, 59, 60, 63, 66, 67, 70, 71, 75, 76, 77, 81, 82, 88, 92, 93, 95, 96, 98, 99, 107, 112, 113, 116, 118, 124, 126, 128, 129, 130, 132, 133, 136, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 162, 164, 166, 172, 178, 179, 181, 182, 183, 184, 186, 187], "10": [1, 2, 4, 5, 6, 7, 9, 10, 12, 15, 22, 23, 24, 41, 44, 47, 55, 56, 58, 60, 63, 67, 69, 72, 81, 85, 86, 88, 93, 96, 112, 113, 116, 123, 132, 134, 144, 153, 156, 157, 159, 162, 163, 164, 165, 181, 182, 185, 187], "100": [7, 17, 26, 29, 47, 57, 60, 67, 75, 76, 116, 119, 132, 156, 172, 180, 186], "1000": [5, 53, 81, 93, 124, 132], "10000": [59, 124], "1000000": 93, "10000000": 93, "1002": 187, "100mb": [3, 8, 76, 93], "100mib": 182, "100px": 47, "101": [17, 75, 76], "102": [75, 76], "1024": [32, 60, 67, 116, 132], "103": [75, 76], "103f": 154, "104": 76, "1040": 138, "10485760": [56, 96], "104857600": [26, 48, 60, 67], "105": 76, "106": 76, "107": 76, "1071": 60, "108": 76, "108082": 28, "109": 76, "10gb": [26, 153], "10m": [96, 156], "10mib": 182, "10min": 82, "10t15": 67, "10x100": 26, "11": [6, 15, 65, 88, 118, 134, 148, 153, 156, 157, 170, 185, 187], "110": [63, 76], "111": [60, 76], "1110": 157, "112": [60, 76], "11211": [59, 60], "1125420102": [60, 72], "113": [60, 76], "113556": 81, "114": 67, "11g": 184, "12": [60, 65, 76, 81, 88, 106, 129, 134, 149, 150, 156, 157, 161, 162, 181, 185], "120": 9, "123": [18, 60, 187], "1234": 4, "12345": [8, 76, 156], "1255": 132, "127": [59, 60, 63, 96, 99, 126, 128, 129, 151, 156, 166, 172], "128": [60, 81], "128m": [22, 59], "128mb": 134, "12b": 2, "12gb": [3, 5], "13": [28, 60, 67, 72, 108, 134, 144, 157, 184, 185], "1319": 60, "1393": 118, "14": [22, 43, 67, 83, 105, 108, 134, 144, 153, 156], "143": 63, "1465910968": 157, "15": [29, 38, 40, 48, 55, 60, 67, 81, 82, 88, 106, 107, 110, 112, 113, 116, 134, 144, 151, 156, 157, 185], "1524": 63, "155": 60, "15552000": [70, 126], "1575981518": 156, "15768000": 124, "15778463": 129, "15857": 56, "15m": 116, "15t15": 60, "16": [4, 22, 29, 52, 60, 67, 88, 126, 132, 134, 144], "16000": 8, "162409623552": 157, "162409624662": 157, "164": 81, "168": [22, 41, 52, 60, 63, 67, 96, 126, 128, 156], "16g": 26, "17": [88, 134, 147, 157, 187], "1700001000": 187, "1700001200": 187, "1700001234": 187, "1700054321": 187, "1700099500": 187, "1700100000": 187, "1700100500": 187, "1702606600": 187, "1711971024": 187, "1736283": 187, "1759739453": 14, "1759739455": 14, "1759739466": 14, "1759739513": 14, "1759740266": 14, "1759743900": 14, "18": [88, 134, 148, 156, 157], "180": [53, 107], "1800": [60, 112, 113], "19": [60, 148, 149, 150], "192": [22, 41, 52, 60, 63, 67, 96, 126, 128, 156], "1941": 81, "19417": 118, "19563": 59, "1970": 134, "198": 60, "19c": 134, "19fa45b394": 187, "19t08": 157, "1d": [70, 116], "1d4725ae1ac4e4798b541ca3f3cdce6": 118, "1gb": [2, 6, 26], "1h": [116, 156], "1st": [88, 141, 187], "1und1": 116, "2": [2, 3, 4, 5, 7, 8, 9, 13, 15, 22, 24, 25, 26, 29, 44, 48, 56, 59, 60, 63, 67, 70, 73, 77, 81, 88, 95, 96, 105, 116, 118, 121, 124, 126, 127, 128, 129, 130, 134, 144, 147, 148, 149, 150, 151, 152, 155, 156, 157, 162, 173, 178, 179, 180, 183, 184, 185, 187, 188], "20": [4, 5, 6, 7, 9, 30, 67, 82, 83, 88, 106, 116, 118, 144, 148, 157, 164], "200": [53, 82, 83, 153], "2000": 22, "2001": 60, "2002": 138, "2005": 60, "2006": [88, 138], "20080704": 22, "2013": [60, 63, 67], "2014": 60, "2016": 26, "2019": [83, 156], "2020": 118, "2021": [67, 123], "2024": [88, 90, 129, 157, 187], "2025": [4, 88, 90, 156, 187], "20251111t100000z": 187, "2026": [88, 90, 129, 151, 153, 156], "203": 60, "2038": 134, "2048": [5, 81], "204800": [153, 156], "20971520": 26, "20mb": 26, "20t17": 157, "21": [33, 60, 67, 129, 149, 170], "2100": 106, "215": 89, "21a7": 60, "21c": 134, "22": [37, 55, 63, 134, 153, 187], "220": [63, 187], "221": 63, "222": 60, "22203": 59, "2245": 63, "23000": 95, "2323": 60, "233": 60, "2375": [96, 97], "23999": 95, "23ai": 134, "23t07": 156, "23t08": 156, "23t09": 156, "23t10": 156, "24": [3, 43, 44, 58, 60, 72, 73, 88, 93, 96, 106, 107, 110, 114, 127, 133, 134, 148, 161, 162, 169, 182, 185], "24000": [96, 97], "24001": 96, "24099": 96, "24b": 2, "25": [12, 15, 28, 55, 58, 60, 63, 67, 113, 129, 144, 148, 156], "250": 63, "2500": 60, "252": 60, "255": 60, "256": [29, 47, 60, 129], "256mb": 134, "2592000": [73, 112, 156], "26": [6, 63, 88, 112, 113, 116, 134, 144, 148, 157, 177, 186], "261535": 118, "262086": 118, "262087": 118, "26396": 136, "2668": 156, "27": [88, 113, 142, 144, 148, 156, 177, 186], "28": [7, 18, 60, 88, 117, 142, 144, 147, 148, 177, 179, 186], "28451": 60, "288": 57, "28800": 60, "29": [16, 18, 24, 60, 67, 142, 144, 147, 148], "2b": 70, "2c5778476346786306303": 60, "2d": 55, "2def0f3597806ecb886da1d9cc323a7c": 118, "2f": 82, "2fa": [80, 116, 157], "2fldap": 82, "2g": 18, "2gb": [3, 26, 153], "2h": 156, "2k": 22, "2m": 22, "2nd": 81, "2x": 182, "3": [1, 2, 3, 5, 7, 8, 10, 14, 15, 16, 17, 22, 24, 29, 56, 60, 63, 67, 77, 88, 93, 95, 116, 121, 126, 128, 130, 132, 133, 134, 138, 144, 147, 148, 150, 153, 156, 157, 162, 164, 174, 180, 181, 182, 183, 185, 186, 187], "30": [3, 8, 11, 26, 41, 44, 49, 53, 58, 60, 63, 73, 81, 85, 88, 95, 96, 107, 110, 112, 113, 116, 118, 132, 144, 147, 156, 157, 177, 182, 183], "300": [60, 83, 96, 116, 129], "30000": [112, 113], "301": [69, 124, 126, 129, 138], "3010": 92, "302": 129, "30566": 51, "3060": 95, "31": [10, 50, 55, 60, 88, 106, 118, 123, 144, 177], "3100": 183, "31308": 38, "31536000": 129, "3166": 60, "31d4a230559d4f3e2c471d3ea094": 137, "32": [15, 22, 26, 29, 31, 48, 50, 60, 88, 112, 113, 134, 177, 188], "32b": 5, "32bit": 26, "32m": [22, 59], "33": [4, 52, 88, 112, 147, 152, 153, 177, 188], "3306": [20, 63, 128], "34": [147, 187], "34262": 132, "35": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 186, 187, 188], "36": [22, 67], "3600": [26, 60, 81, 116, 124, 156], "365": [53, 60, 73, 107, 110], "37": [60, 67, 118], "38": 156, "389": [81, 82], "39": 63, "399": 187, "3a": 82, "3mb": 116, "3rd": [60, 63, 138, 142, 148, 159, 173, 175], "3rdparti": [88, 123, 129, 131], "4": [1, 2, 3, 4, 5, 11, 15, 17, 21, 22, 26, 38, 48, 57, 59, 60, 63, 67, 70, 81, 88, 116, 118, 123, 126, 129, 130, 132, 134, 140, 142, 148, 150, 156, 159, 162, 164, 170, 178, 181, 182, 183, 185, 186, 187], "40": 55, "400": [11, 119], "4000": 5, "40000": 8, "404": 129, "4086": 126, "4096": [5, 60, 187], "41": 96, "41395": 180, "42": [14, 60, 153, 156, 157, 187], "4200": 48, "425": 63, "429": [58, 60], "42cad8d2494d5735e6bfa0d8642b2762c62ca5be49f9bf4ec2": 137, "43200": 126, "437": 187, "438": 187, "4389": 67, "44": 157, "441": 156, "4418": 63, "443": [48, 60, 124, 126, 129, 166], "444": 124, "45": 60, "450": 6, "456": 76, "46": 157, "465": 63, "46cfa6e729ff329e6ede076853154113": 118, "47": [56, 157], "48": [58, 93], "483": 118, "49": [60, 118], "4966612345678": 81, "497": 118, "4a87e94522a3cf26dba8977ae901094d": 118, "4gb": [6, 7, 26], "4h": [7, 10], "4k": 129, "5": [0, 1, 2, 3, 15, 16, 48, 57, 59, 60, 67, 85, 88, 96, 101, 107, 112, 113, 116, 118, 124, 126, 132, 133, 134, 138, 147, 148, 149, 150, 153, 156, 157, 162, 164, 181, 184, 187], "50": [41, 44, 60, 83, 85, 93, 112, 113, 116, 128, 132, 153, 156], "500": [28, 53, 60, 82, 85, 132, 138, 156, 157], "5000": [60, 112, 113, 183], "50000000": 93, "500mb": 3, "501": 118, "502": [88, 132], "504": [26, 129, 132], "50m": 60, "51": [60, 83, 187], "511": 60, "512": [38, 118, 124, 147, 153], "512k": 129, "512m": 129, "512mb": [46, 88, 129, 130, 134], "512x512": 9, "513": 118, "513m": 124, "515a13302a6b3950a9d0fdb970191a": 60, "51747": 26, "52": 60, "5226": 93, "52428800": 63, "524288000": [48, 60], "5242880000": 48, "53": 26, "537": 67, "537919488": 124, "5432": [128, 163, 165], "55": [63, 67, 153], "5545": 151, "56": [22, 60, 63, 67], "5646": 60, "57b58edb6637fe3059b3595cf9c41b9": [60, 67], "587": [63, 118], "599": 187, "5e": 55, "5f": 55, "5gb": [6, 153], "5min": 57, "5pm": 101, "6": [3, 4, 11, 14, 23, 29, 30, 56, 59, 60, 70, 72, 88, 112, 116, 118, 124, 130, 143, 150, 156, 162, 170, 182, 185], "60": [15, 22, 47, 60, 73, 106, 107, 119, 129, 132, 187], "600": [81, 82], "6000": 93, "6072": 29, "61": 55, "6226r": [7, 10], "6238": 80, "62mb": 118, "62x34": 72, "63072000": 73, "631": 63, "6321": 151, "636": 81, "6379": [45, 59, 60, 123, 124], "639": 66, "64": [22, 26, 29, 48, 55, 59, 60, 63, 129, 134], "640": 142, "64bit": [21, 88], "64m": [22, 63], "67336bcdf7630dd80b2b81a413d07": 60, "6768789079123765868": 156, "68": 67, "6f": 55, "7": [3, 15, 29, 43, 53, 56, 60, 67, 72, 88, 107, 114, 116, 123, 129, 130, 134, 143, 144, 153, 156, 162, 178, 185, 186, 187], "7000": [59, 60], "7001": [59, 60], "7002": 59, "7003": 59, "7004": 59, "7005": 59, "70b": 5, "71d5": 154, "72": 126, "7200": 116, "7265": 151, "73": 55, "750": 142, "767": 60, "77": 11, "770": 59, "78": 183, "789": 76, "7b": [5, 11, 55], "7d": 129, "7urtvsj": 48, "7zip": 56, "8": [3, 4, 6, 7, 10, 11, 22, 23, 60, 71, 72, 88, 95, 116, 118, 126, 127, 129, 130, 132, 133, 134, 138, 144, 156, 162, 178, 179, 180, 181, 182, 183, 184, 185], "80": [6, 47, 55, 63, 123, 126, 129, 132, 133, 164], "8000": 5, "800mb": 10, "8080": [60, 96, 133], "8081": 60, "8088": 60, "8096": 29, "8147": 29, "8192": 29, "8283": 28, "83": 118, "83379f9bc36915d5024de878386060b5": 118, "84": [22, 63], "840": 81, "8443": 48, "8546": 28, "85a3": 60, "86": 157, "8601": 60, "86400": 126, "8651a9ac37674907606c936ced1333d7": 118, "8780": [96, 97], "8781": 96, "8782": [96, 97], "8802": 129, "88a3a92c11db91dec1ac3be0e1c87f862c95ba6ffaaaa3f2c3": 137, "89": 67, "8a": 55, "8a20": 60, "8b": [1, 2, 5], "8bitmim": 63, "8d3": 60, "8dd0e0ef2f7ab100b75922489ff26306": 118, "8e9f60369dce3d8b2b27430bd50ec46d": 118, "8gb": [3, 5, 9], "8m": 132, "9": [15, 17, 22, 28, 41, 60, 81, 85, 101, 116, 134, 150, 163, 164, 165, 181, 185, 187], "90": [1, 22, 53, 107, 132], "9000": [129, 132], "9031": 8, "935f68fa03a25c5ec6f6b2d9e44a868e8b85764dafd1605522": 137, "94": 118, "9421": 155, "95": [11, 55, 60], "95a8": 154, "95af": 154, "9651": 187, "97": [55, 118], "98": 157, "9825679": 2, "9839": 118, "98543234": 2, "9876": 81, "99": 60, "993": [63, 118], "995": 63, "9980": [166, 171], "9999": [48, 81], "9_": 81, "9am": 101, "9e": 55, "A": [3, 4, 5, 7, 9, 11, 22, 25, 28, 33, 35, 36, 40, 41, 43, 48, 53, 57, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 86, 93, 95, 96, 106, 107, 111, 112, 114, 116, 118, 119, 124, 126, 128, 129, 132, 133, 134, 137, 138, 142, 143, 146, 150, 153, 156, 160, 161, 162, 163, 165, 166, 168, 169, 174, 178, 186], "AND": [67, 111, 138], "And": [31, 38, 48, 57, 59, 63, 124, 142, 147, 154, 186], "As": [12, 15, 22, 26, 43, 47, 48, 50, 53, 56, 59, 60, 77, 83, 93, 95, 101, 111, 112, 118, 123, 124, 126, 143, 144, 180, 186, 188], "At": [0, 1, 2, 3, 5, 6, 9, 11, 63, 67, 70, 80, 81, 112, 113, 143], "BY": [22, 125], "Be": [8, 15, 23, 43, 59, 60, 63, 81, 92, 95, 96, 112, 129, 138, 172], "But": [47, 50, 58, 60, 96, 182], "By": [16, 26, 28, 34, 41, 47, 48, 50, 51, 52, 53, 54, 56, 57, 59, 60, 67, 72, 77, 80, 81, 85, 94, 98, 112, 116, 126, 129, 133, 137, 145, 146, 149, 151, 156, 157, 159, 164, 167, 186, 187], "For": [1, 6, 7, 8, 12, 14, 15, 16, 22, 23, 25, 26, 28, 29, 33, 37, 38, 40, 41, 44, 45, 49, 51, 53, 55, 56, 57, 58, 59, 60, 64, 69, 70, 72, 77, 81, 83, 85, 92, 93, 94, 95, 96, 99, 107, 108, 111, 112, 113, 114, 118, 119, 120, 123, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 155, 159, 166, 169, 170, 180, 183, 184, 186, 187, 188], "IF": [22, 125], "IT": 133, "If": [3, 5, 6, 12, 14, 15, 16, 18, 20, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 38, 40, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 66, 67, 69, 70, 77, 78, 80, 81, 84, 85, 92, 93, 95, 96, 97, 101, 107, 111, 112, 113, 114, 116, 117, 118, 120, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 166, 172, 180, 181, 182, 183, 184, 186, 187, 188], "In": [0, 1, 3, 5, 6, 12, 14, 15, 16, 18, 22, 23, 25, 26, 28, 29, 31, 34, 40, 41, 42, 43, 48, 53, 56, 57, 58, 59, 60, 63, 66, 68, 69, 70, 72, 77, 79, 80, 81, 84, 85, 86, 92, 93, 95, 96, 97, 99, 101, 102, 112, 116, 118, 123, 124, 126, 128, 129, 130, 132, 133, 134, 135, 137, 138, 142, 144, 146, 147, 149, 150, 159, 169, 172, 174, 180, 187, 188], "It": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 19, 20, 22, 25, 26, 28, 31, 36, 38, 40, 41, 44, 45, 48, 49, 53, 58, 59, 60, 61, 63, 64, 68, 70, 80, 81, 82, 92, 93, 94, 95, 96, 97, 101, 102, 108, 109, 112, 113, 114, 117, 118, 119, 121, 124, 126, 128, 129, 130, 131, 132, 133, 135, 137, 138, 142, 143, 146, 147, 148, 149, 152, 155, 156, 159, 161, 172, 178, 180, 182, 183, 186, 187, 188], "Its": [58, 107, 132], "NO": 143, "NOT": [22, 59, 60, 96, 125], "No": [2, 15, 25, 28, 38, 60, 70, 77, 88, 95, 102, 106, 108, 132, 138, 147, 151, 152, 153, 156, 157, 172], "Not": [3, 22, 46, 54, 58, 60, 77, 88, 93, 118, 132, 157], "ON": [22, 23, 60, 125], "OR": 67, "Of": [106, 128, 138, 188], "On": [3, 20, 22, 30, 38, 40, 41, 53, 56, 57, 58, 59, 63, 64, 69, 77, 81, 85, 92, 93, 96, 106, 123, 125, 133, 138, 143, 145, 151, 156, 166, 186], "One": [3, 8, 12, 43, 48, 93, 95, 133, 169], "Or": [1, 94, 133], "TO": [22, 60, 125], "That": [22, 27, 56, 60, 62, 63, 81, 112, 113, 116, 142, 166], "The": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 39, 40, 41, 43, 44, 47, 48, 49, 50, 53, 56, 57, 59, 60, 61, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 83, 84, 85, 87, 88, 89, 92, 93, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 140, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 162, 163, 164, 165, 166, 167, 168, 170, 171, 172, 173, 174, 176, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188], "Their": [151, 157], "Then": [22, 28, 29, 56, 60, 63, 64, 67, 81, 83, 124, 125, 126, 132, 133, 142, 143, 147, 148, 151, 154, 163, 186], "There": [3, 26, 28, 31, 40, 43, 47, 48, 58, 59, 60, 63, 64, 70, 77, 81, 83, 93, 96, 97, 98, 105, 107, 121, 126, 133, 135, 137, 138, 143, 148, 152, 156, 169, 174], "These": [1, 2, 3, 27, 28, 29, 32, 34, 38, 40, 57, 60, 70, 77, 80, 81, 83, 92, 93, 96, 110, 111, 116, 123, 126, 130, 132, 133, 136, 142, 147, 148, 149, 153, 154, 155, 156, 159, 160, 177, 186, 188], "To": [3, 4, 13, 16, 22, 28, 31, 33, 38, 40, 44, 45, 48, 49, 50, 53, 56, 57, 59, 60, 63, 67, 68, 69, 70, 72, 77, 80, 81, 83, 85, 88, 92, 93, 98, 107, 108, 111, 112, 113, 116, 117, 118, 119, 120, 124, 125, 126, 129, 131, 132, 133, 134, 135, 137, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 156, 157, 159, 166, 175, 180, 186, 187, 188], "WITH": [22, 163, 165], "Will": [43, 154], "With": [0, 29, 43, 60, 63, 77, 96, 119, 129, 138, 148, 156, 174, 182], "_": [81, 85, 153, 163, 165], "__host": [65, 88, 106], "_arm64": 129, "_bin": 60, "_complet": 150, "_groupsr": 126, "_ping": 96, "_postgresql": 124, "_static": 60, "a2enmod": [133, 166], "a2ensit": 133, "a3b30430b1ccb41089170eecbe315d3a": 118, "a4": 55, "a92c": 60, "aaliyah": 83, "aaliyah_brown": 83, "aaliyah_hamm": 83, "aaliyah_johnston": 83, "aaliyah_kunz": 83, "aavx": 140, "aax": 146, "abbrevi": 85, "abc123": [153, 156], "abc123def456": 187, "abil": [6, 14, 58, 103, 128, 133, 159], "abl": [2, 3, 8, 16, 23, 29, 32, 38, 43, 50, 54, 57, 60, 63, 66, 76, 81, 85, 93, 95, 97, 99, 101, 102, 112, 116, 126, 130, 133, 145, 162, 171, 172], "abort": [60, 80], "about": [1, 2, 3, 6, 7, 8, 11, 16, 28, 36, 40, 45, 48, 51, 58, 60, 67, 70, 76, 77, 78, 80, 81, 83, 85, 88, 93, 96, 112, 116, 117, 118, 123, 126, 129, 132, 133, 136, 137, 138, 143, 148, 149, 152, 153, 154, 156, 157, 172, 180, 182, 183, 184, 188], "abov": [1, 3, 4, 5, 15, 18, 20, 22, 26, 43, 44, 48, 59, 60, 65, 67, 69, 72, 77, 81, 87, 88, 93, 96, 97, 112, 118, 121, 123, 126, 128, 129, 133, 137, 138, 142, 147, 149, 150, 180, 187], "absenc": [81, 88], "absent": [151, 187], "absolut": [16, 60, 69, 81, 98, 138, 149], "absorb": 132, "abstract": [132, 135], "abund": 138, "abus": 88, "abuse_detect": 116, "abuse_number_of_messages_per_15m": 116, "abuse_number_of_messages_per_1d": 116, "abuse_number_of_messages_per_1h": 116, "abuse_number_of_recipients_per_message_threshold": 116, "acc": 56, "accel": 26, "accent": [4, 7, 60], "accept": [14, 31, 32, 40, 41, 48, 60, 63, 66, 67, 69, 70, 84, 93, 96, 97, 111, 116, 117, 150, 153, 156, 172, 187, 188], "access": [0, 2, 8, 12, 13, 14, 15, 16, 18, 26, 28, 31, 32, 33, 34, 38, 40, 41, 43, 48, 52, 53, 54, 57, 58, 59, 60, 63, 64, 65, 72, 77, 80, 81, 84, 85, 88, 92, 93, 95, 96, 97, 99, 102, 104, 105, 106, 107, 108, 110, 113, 114, 118, 119, 123, 127, 128, 132, 133, 138, 143, 146, 147, 152, 153, 156, 157, 160, 172, 175, 186, 187], "access_log": [93, 129], "accessible_featur": 88, "accident": [98, 107, 147], "acclaim": 5, "accommod": [93, 142, 148], "accomplish": 112, "accord": [12, 44, 60, 81, 89, 107, 110, 144, 153, 159, 169], "accordingli": [12, 18, 22, 26, 28, 59, 60, 77, 81, 96, 138], "account": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 29, 36, 43, 53, 54, 57, 58, 60, 63, 68, 73, 77, 80, 81, 83, 85, 88, 93, 107, 111, 114, 115, 128, 130, 133, 150, 153, 154, 156, 187, 188], "account_kei": 48, "account_manag": [77, 81, 88], "account_nam": 48, "accountid": 118, "accountmanag": [60, 77], "accumul": 93, "accur": [138, 148, 180], "accuraci": [4, 5, 7, 8, 10, 48], "accuweath": 14, "achiev": [9, 117, 126], "acl": [53, 59, 60, 69, 116], "acm": [72, 96, 129, 156], "acquir": [59, 118], "across": [1, 2, 7, 10, 32, 53, 59, 60, 77, 95, 106, 107, 114, 116, 130, 151, 153], "act": [1, 2, 5, 7, 9, 10, 11, 13, 53, 67, 88, 108, 112, 187], "action": [1, 2, 3, 15, 19, 40, 41, 53, 56, 57, 58, 60, 70, 88, 95, 96, 104, 108, 110, 116, 127, 138, 147, 156, 157, 188], "actionjob": 3, "activ": [16, 17, 19, 25, 29, 40, 43, 44, 45, 49, 56, 57, 59, 61, 63, 65, 67, 77, 79, 80, 82, 85, 88, 111, 112, 113, 124, 126, 130, 132, 133, 134, 138, 143, 147, 149, 152, 153, 154, 156, 157, 159, 163, 165, 186, 187], "activity_": 25, "activity_dbdriveropt": 25, "activity_dbhost": 25, "activity_dbnam": 25, "activity_dbpassword": 25, "activity_dbport": 25, "activity_dbus": 25, "activity_expire_dai": [53, 88, 107, 110], "activity_expire_exclude_us": 53, "activity_use_cached_mountpoint": [53, 88], "actor": [58, 126], "actor_id": 111, "actor_typ": 111, "actual": [1, 4, 22, 26, 29, 53, 58, 60, 67, 70, 92, 96, 130, 138, 147, 156, 183, 187], "ad": [2, 4, 6, 8, 12, 18, 20, 24, 27, 28, 29, 40, 43, 52, 53, 57, 58, 59, 60, 63, 64, 67, 69, 70, 73, 81, 85, 88, 92, 108, 112, 113, 115, 117, 118, 124, 126, 132, 133, 134, 147, 157, 159, 178, 181, 182, 183, 187, 188], "ad2dab17b2f9": 154, "adapt": [59, 96, 126, 129, 138, 143, 170, 186, 188], "add": [0, 2, 6, 12, 18, 22, 23, 25, 40, 41, 43, 54, 58, 59, 60, 61, 63, 64, 65, 67, 72, 75, 77, 80, 81, 85, 88, 92, 93, 95, 96, 97, 108, 110, 112, 113, 116, 118, 119, 123, 124, 126, 129, 132, 133, 138, 140, 143, 144, 148, 149, 150, 153, 159, 163, 166, 172, 173, 179, 180, 181, 184, 187, 188], "add_head": [26, 129], "adddefault": 92, "addendum": [13, 88], "addit": [1, 3, 4, 13, 16, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 44, 48, 54, 55, 56, 58, 60, 72, 74, 77, 80, 82, 85, 88, 91, 93, 94, 95, 96, 98, 99, 100, 110, 112, 123, 125, 126, 128, 130, 131, 132, 134, 135, 137, 138, 142, 150, 153, 156, 157, 160, 186, 187, 188], "addition": [12, 41, 59, 81, 83, 112, 113, 138, 183, 188], "additional_opt": 96, "address": [2, 8, 22, 28, 41, 43, 56, 57, 60, 67, 69, 70, 74, 76, 77, 78, 81, 82, 88, 93, 95, 96, 97, 99, 101, 107, 108, 110, 115, 116, 127, 128, 129, 133, 143, 145, 148, 151, 153, 156, 157, 159, 160, 186], "address_of_remote_machin": 96, "addressbook": [41, 60, 88, 113, 114, 126, 138], "addressbookchang": 113, "addressbookid": 138, "addressscop": 77, "addserv": 60, "addus": 88, "adequ": [26, 81, 112, 113, 134], "adjust": [1, 8, 12, 15, 22, 23, 40, 44, 46, 47, 48, 50, 58, 60, 67, 81, 88, 92, 93, 96, 107, 124, 129, 130, 131, 132, 133, 134, 138, 142, 144, 170, 181, 182, 183, 186, 187], "adm": 75, "admin": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 16, 17, 18, 28, 34, 40, 41, 43, 45, 48, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 71, 74, 75, 76, 77, 80, 81, 82, 85, 87, 88, 92, 93, 95, 96, 99, 111, 112, 113, 116, 117, 118, 120, 121, 123, 127, 132, 133, 137, 138, 142, 143, 145, 147, 148, 149, 150, 151, 152, 153, 157, 159, 160, 166, 167, 180, 186, 187, 188], "admin_": 187, "admin_audit": [53, 88, 107, 110, 111], "admin_manu": 60, "administ": [119, 156], "administr": [0, 1, 2, 6, 14, 16, 22, 28, 29, 40, 43, 50, 51, 53, 57, 58, 60, 61, 63, 64, 65, 67, 68, 72, 74, 77, 80, 86, 88, 92, 93, 96, 101, 103, 105, 107, 108, 109, 110, 111, 112, 116, 119, 126, 128, 133, 138, 145, 148, 153, 156, 157, 160, 172, 173, 180, 183, 186, 187], "adminlogin": 120, "adminpass": 120, "adminw": [166, 171], "advanc": [38, 46, 53, 60, 69, 72, 74, 88, 97, 100, 120, 133, 169, 188], "advantag": [29, 32, 57, 88, 120], "advertis": [57, 60, 155], "advic": [60, 109], "advis": [8, 159, 182, 188], "ae": [3, 29, 60, 132], "aegi": 80, "affect": [12, 15, 25, 26, 27, 28, 38, 40, 60, 61, 67, 77, 81, 92, 93, 96, 101, 118, 132, 134, 151, 153, 170], "after": [1, 3, 4, 8, 14, 15, 16, 18, 20, 22, 27, 28, 32, 37, 38, 44, 45, 47, 48, 49, 50, 57, 58, 59, 60, 62, 63, 64, 67, 68, 73, 77, 78, 79, 81, 85, 88, 93, 95, 96, 98, 99, 101, 102, 105, 107, 108, 110, 113, 114, 120, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 137, 141, 142, 143, 144, 145, 147, 148, 150, 151, 152, 153, 155, 156, 157, 159, 160, 166, 167, 172, 180, 185, 186, 187, 188], "afterward": [58, 80, 81, 116, 133, 144, 146, 147, 152, 166], "ag": [7, 46, 60, 85, 88, 104, 107, 124, 126, 129, 153, 156], "again": [3, 16, 20, 28, 30, 40, 43, 44, 53, 60, 70, 76, 77, 80, 81, 85, 92, 93, 96, 101, 112, 114, 117, 118, 123, 124, 142, 144, 147, 148, 149, 152, 172], "against": [0, 28, 40, 58, 59, 69, 73, 77, 81, 85, 86, 102, 132, 147, 151, 153, 186, 187, 188], "agenda": 116, "agent": [5, 12, 13, 60, 64, 67, 88, 101], "aggreg": 60, "aggress": 186, "agpl": 17, "agplv3": 16, "agre": 126, "agreement": 12, "ahead": 186, "ai": [2, 3, 4, 5, 7, 13, 14, 88, 95, 116, 156, 188], "ai_provid": 8, "aim": [126, 170], "aio": [2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 40, 88, 95, 100, 130, 132, 133, 187], "air": 147, "ajax": [53, 88, 116, 129, 149, 156, 159], "aka": 133, "akiaiosfodnn7exampl": 153, "alarm": [88, 115], "albert": 157, "alert": [56, 88], "alertencrypt": 56, "alertencryptedarch": 56, "alertencrypteddoc": 56, "algorithm": [60, 96, 97, 118, 126, 146], "alia": [81, 116, 133, 157], "alias": 88, "aliasgroup1": 166, "aliasgroup2": 166, "alic": [18, 40, 77, 81, 187], "alice_1337": 81, "align": [63, 107], "aliv": [60, 132], "all": [1, 2, 3, 5, 6, 7, 9, 10, 12, 14, 15, 16, 18, 19, 20, 22, 23, 26, 27, 29, 33, 34, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 53, 55, 56, 57, 58, 59, 61, 64, 65, 67, 69, 71, 72, 77, 80, 81, 82, 83, 85, 87, 88, 92, 93, 95, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 128, 129, 131, 132, 133, 135, 137, 138, 142, 143, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 159, 160, 163, 165, 169, 170, 173, 180, 183, 186, 187, 188], "allenai": [5, 11], "alloc": [47, 60, 132], "allow": [1, 2, 3, 5, 7, 12, 15, 16, 22, 25, 26, 27, 29, 31, 32, 38, 41, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 58, 59, 60, 63, 64, 65, 68, 69, 73, 76, 77, 81, 82, 84, 85, 88, 94, 95, 96, 98, 101, 102, 105, 106, 108, 113, 114, 116, 117, 126, 127, 128, 129, 130, 132, 133, 134, 147, 149, 150, 153, 155, 156, 157, 159, 160, 164, 169, 172, 173, 181, 187, 188], "allow_custom_share_fold": 88, "allow_disabled_password_enforcement_group": 88, "allow_local_infil": 22, "allow_local_remote_serv": [88, 116], "allow_persist": 22, "allow_private_ip_address": 164, "allow_self_sign": 63, "allow_url_fopen": 33, "allow_user_to_change_display_nam": 88, "allowcleanup": 14, "allowed_admin_rang": [88, 126], "allowed_user_ag": 88, "allowencodedslash": 166, "allowlist": 184, "allowoverrid": [123, 133, 138], "allowselfsignedcertif": 88, "allowsymlink": 88, "almalinux": 96, "almost": [60, 81, 133], "alon": [77, 188], "along": [3, 5, 20, 44, 60, 119, 126, 128], "alongsid": [60, 129, 151], "alpin": 134, "alreadi": [3, 8, 16, 19, 20, 23, 28, 47, 53, 60, 61, 67, 75, 76, 77, 81, 92, 93, 96, 99, 113, 114, 116, 120, 124, 126, 128, 130, 131, 132, 133, 138, 144, 147, 149, 151, 152, 153, 155, 156, 170, 180, 186, 188], "also": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 22, 23, 25, 26, 28, 36, 38, 40, 41, 42, 43, 47, 48, 50, 51, 53, 54, 57, 58, 59, 60, 64, 67, 69, 72, 74, 76, 80, 81, 83, 84, 85, 87, 88, 92, 93, 95, 96, 98, 99, 101, 102, 105, 107, 108, 110, 112, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 150, 152, 153, 154, 156, 157, 160, 170, 172, 173, 180, 181, 182, 183, 184, 186, 187, 188], "alter": [12, 22, 23, 44, 49, 81, 182], "altern": [2, 26, 50, 57, 65, 88, 93, 130, 133, 136, 140, 149, 150, 156, 160, 168], "although": [43, 132, 150], "altitud": 126, "altogeth": 59, "alwai": [1, 3, 5, 7, 12, 15, 16, 29, 39, 40, 43, 44, 53, 56, 58, 60, 66, 67, 69, 71, 72, 77, 80, 81, 91, 92, 96, 97, 119, 124, 126, 128, 129, 130, 132, 137, 138, 142, 147, 148, 152, 153, 155, 156, 166, 180, 186, 187], "am": 151, "amazon": [40, 48, 60, 88, 183], "amazonaw": 48, "amazons3": 153, "amd": 99, "amd64": [162, 163, 165], "american": 10, "among": [0, 3, 84, 119, 130, 186], "amongst": 95, "amount": [8, 28, 47, 59, 60, 81, 83, 93, 126, 133, 153, 183], "amp": 82, "amqp_host": 164, "an": [0, 1, 2, 3, 5, 7, 9, 10, 11, 12, 14, 15, 16, 18, 22, 26, 28, 29, 31, 32, 33, 36, 38, 40, 41, 43, 44, 45, 48, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 66, 67, 69, 72, 74, 76, 77, 78, 79, 80, 81, 82, 85, 87, 88, 92, 93, 95, 96, 98, 101, 103, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 123, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 142, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 166, 167, 169, 172, 174, 178, 180, 182, 183, 186, 187, 188], "analysi": 12, "analyt": 15, "analyz": [60, 116], "andrew": 2, "android": [60, 64, 65, 72, 88, 101, 119, 134], "android_app": 55, "androidclienturl": 72, "angel": 89, "ani": [0, 1, 2, 3, 5, 7, 12, 14, 15, 16, 20, 22, 25, 26, 27, 28, 29, 32, 34, 37, 38, 39, 40, 41, 43, 45, 48, 53, 54, 56, 57, 58, 59, 60, 63, 64, 67, 69, 70, 80, 81, 83, 84, 85, 87, 88, 92, 93, 94, 95, 96, 97, 98, 99, 101, 105, 107, 110, 111, 112, 113, 114, 116, 120, 126, 132, 133, 134, 137, 138, 143, 147, 148, 150, 151, 152, 153, 155, 156, 157, 160, 162, 172, 173, 178, 180, 184, 186, 187, 188], "anim": [6, 60], "anna": 2, "anniversari": 186, "announc": [12, 63, 81, 126], "annual": 187, "anon": 60, "anonym": [81, 111, 126], "anoth": [12, 22, 28, 39, 46, 48, 69, 70, 77, 78, 80, 85, 88, 93, 111, 114, 116, 126, 128, 129, 131, 135, 137, 138, 148, 151, 153, 155, 166, 180, 181, 186], "ansi": 150, "answer": [1, 2, 60, 81, 88, 162, 184, 188], "anti": [56, 60, 88], "anticip": 186, "antiviru": [65, 88, 150], "anymor": [76, 81, 88, 154, 183], "anyon": [12, 43, 67, 77, 160], "anyth": [14, 22, 31, 56, 58, 60, 112, 113, 142, 143], "anytim": [49, 60], "anywai": [92, 151], "anywher": [32, 124, 128, 156], "apach": [19, 41, 59, 60, 68, 70, 88, 93, 96, 110, 125, 126, 127, 128, 129, 132, 134, 138, 145, 150, 162, 180], "apache2": [59, 88, 93, 125, 126, 130, 133, 138, 166], "apache2ctl": 133, "apart": 123, "apc": [59, 60, 150, 182], "apcu": [60, 65, 70, 88, 123, 130, 132, 150, 182], "api": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 28, 36, 43, 58, 59, 60, 68, 74, 77, 84, 86, 88, 93, 95, 96, 99, 116, 126, 129, 132, 156, 159, 174, 180, 187, 188], "apirequest": [17, 75, 76, 77, 82, 87, 188], "app": [0, 12, 13, 14, 18, 20, 25, 27, 40, 41, 42, 43, 44, 47, 49, 54, 55, 57, 59, 62, 64, 65, 68, 70, 72, 74, 77, 80, 81, 82, 83, 84, 85, 87, 92, 93, 94, 98, 99, 100, 101, 102, 103, 105, 107, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 126, 127, 129, 130, 131, 133, 140, 142, 144, 145, 147, 148, 150, 151, 152, 154, 156, 157, 158, 161, 164, 168, 169, 172, 173, 174, 175, 180, 183, 186, 188], "app1": 149, "app2": 149, "app3": 149, "app_": 18, "app_api": [2, 3, 4, 8, 88, 96, 97, 98], "app_api_haproxy_us": 96, "app_container_nam": 96, "app_display_nam": 8, "app_host": 8, "app_id": [8, 97, 99], "app_port": 8, "app_python_skeleton": 98, "app_secret": 8, "app_upd": 16, "app_vers": 8, "appapi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 88, 94, 96, 97, 98, 99, 100], "apparmor": 60, "appcodecheck": [16, 88], "appconfig": [85, 149], "appdata": [93, 153], "appdata_instanceid": 60, "appear": [6, 22, 27, 28, 34, 40, 58, 60, 63, 64, 65, 67, 70, 77, 78, 81, 85, 88, 92, 93, 95, 108, 114, 120, 125, 128, 129, 132, 137, 153, 154, 156, 173, 187], "appelman": 17, "append": [1, 19, 29, 43, 57, 60, 67, 77, 81, 128, 136, 147, 150], "appframework": 99, "appid": [14, 17, 96, 98, 136, 137, 156], "appimag": 134, "appinfo": [17, 137], "appl": [60, 72, 93, 134], "applewebkit": 67, "appli": [8, 12, 23, 25, 26, 27, 29, 41, 43, 44, 53, 60, 63, 66, 67, 69, 70, 76, 77, 81, 85, 88, 96, 102, 106, 107, 118, 119, 120, 126, 133, 139, 146, 147, 148, 149, 150, 153, 156, 157, 160, 187], "applianc": [133, 143], "applic": [0, 2, 8, 12, 16, 17, 28, 40, 48, 55, 58, 59, 60, 65, 67, 73, 77, 81, 83, 87, 88, 93, 95, 96, 101, 107, 110, 112, 116, 127, 129, 132, 133, 135, 137, 138, 142, 143, 146, 148, 150, 152, 156, 159, 160, 186], "appnam": 149, "appoint": [61, 112], "apppassword": 92, "appreci": [5, 7, 9, 10], "approach": [28, 40, 57, 58, 67, 88, 107, 141, 142, 186], "appropri": [12, 29, 40, 43, 58, 59, 60, 66, 77, 96, 107, 111, 112, 116, 121, 125, 129, 132, 133, 136, 142, 143, 150, 156, 186], "approv": 88, "approve_link": 188, "approxim": [60, 81, 93, 152, 186], "apps_path": [16, 88], "appsallowlist": 88, "appstor": [16, 60], "appstoreen": [16, 88], "appstoreurl": [16, 88], "april": [67, 187], "apt": [56, 125, 126, 163, 165, 166, 167], "ar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83, 85, 88, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 163, 164, 165, 166, 167, 169, 170, 172, 173, 174, 180, 181, 183, 186, 187, 188], "arab": 4, "arbitrari": [1, 40, 60, 129], "arch": [150, 163, 165], "architectur": [26, 60, 88, 96, 99, 133, 145, 162], "archiv": [56, 60, 88, 107, 111, 118, 123, 125, 133, 142, 147, 148, 153, 156], "area": [54, 69, 133, 175], "arg": 129, "arg_v": 129, "argon2": [60, 130], "argument": [17, 19, 38, 48, 53, 60, 67, 75, 76, 81, 82, 88, 129, 138, 150, 152, 153, 156, 157], "aris": [60, 143, 186], "ark": 132, "arm32v7": 150, "arm64": [162, 163, 165], "around": [10, 15, 16, 88, 101, 102, 186], "arrai": [16, 45, 48, 51, 53, 60, 63, 67, 68, 69, 76, 77, 81, 82, 88, 96, 112, 120, 123, 124, 128, 137, 187, 188], "arrang": 186, "arraycach": 60, "arriv": [40, 69, 108, 132], "art": 126, "articl": [63, 88, 107, 108, 110, 138], "artifact": 11, "artifici": [0, 1, 12, 15, 88, 95], "asc": [123, 125], "ascii": [60, 71, 81, 130, 137], "asdf": 67, "asid": 183, "ask": [1, 2, 3, 13, 14, 19, 20, 43, 63, 78, 81, 84, 85, 88, 108, 116, 138, 146, 147, 148, 150, 152, 153, 156, 174, 180], "aspect": [60, 72], "assembl": 26, "assembli": 26, "assess": 53, "asset": [69, 72, 126, 129, 181], "asset_immut": 129, "assetlink": 88, "assign": [2, 38, 77, 81, 83, 85, 88, 101, 104, 105, 132, 153, 154, 188], "assignable\u00b2": 157, "assigne": 2, "assist": [0, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 60, 88, 93, 102, 116, 147], "assistant_en": 1, "associ": [20, 40, 43, 55, 58, 80, 81, 93, 111, 138, 143, 156, 157, 186, 187], "assum": [8, 12, 22, 38, 58, 60, 63, 81, 96, 112, 113, 124, 126, 129, 133, 138, 143, 145, 146, 147], "assumpt": 129, "asterisk": 154, "astroc": 151, "astronomi": 151, "async": 188, "asynchron": [3, 188], "atom": [60, 129], "attach": [1, 15, 18, 38, 81, 88, 97, 187], "attack": [29, 58, 106, 126, 183], "attempt": [25, 28, 58, 78, 81, 88, 92, 93, 99, 101, 110, 126, 128, 138, 151, 152], "attend": 2, "attende": [110, 112], "attr": 82, "attr_persist": 60, "attribut": [40, 75, 76, 77, 82, 87, 88, 111, 154], "attributenam": 82, "auckland": 60, "audienc": [12, 77, 88, 160], "audio": [1, 2, 4, 6, 12, 15, 51, 60, 179, 180], "audit": [12, 53, 60, 65, 88, 107, 111, 126, 131, 156], "auth": [58, 63, 80, 87, 88, 96, 107, 129, 153], "auth_availability_delai": 88, "authent": [2, 17, 22, 28, 29, 31, 33, 34, 35, 36, 37, 39, 40, 46, 48, 58, 60, 63, 67, 68, 74, 75, 76, 77, 79, 82, 85, 88, 92, 93, 96, 106, 107, 110, 111, 115, 126, 130, 133, 138, 143, 150, 153, 156, 164, 178, 187], "authmiddlewar": 188, "author": [2, 17, 25, 54, 68, 75, 76, 84, 85, 88, 112, 116, 119, 130, 133, 137, 160, 164, 188], "authorit": [69, 77, 146], "authorized_kei": [32, 37], "authtyp": 133, "auto": [4, 19, 28, 41, 43, 44, 49, 60, 72, 81, 82, 88, 107, 123, 126, 153, 154], "auto_index": 3, "auto_logout": 88, "auto_reset_persist": 22, "autocomplet": [43, 60, 77, 81, 88, 113, 114], "autoconfig": [60, 88, 120], "autoconfigur": [60, 118], "autocr": [48, 60], "autofil": 95, "autom": [3, 59, 60, 67, 81, 88, 92, 101, 104, 105, 118, 133, 147, 156, 157, 187, 188], "automat": [2, 3, 6, 15, 18, 20, 28, 38, 40, 43, 44, 49, 50, 53, 56, 57, 58, 59, 60, 63, 64, 66, 69, 71, 72, 79, 80, 81, 83, 85, 87, 88, 91, 93, 95, 96, 97, 105, 107, 108, 110, 111, 112, 113, 114, 116, 126, 127, 130, 133, 138, 145, 146, 147, 150, 151, 152, 153, 154, 155, 156, 157, 178, 180, 182, 187, 188], "autotest": 129, "autumn": 15, "aux": 50, "av_background_scan": 56, "avail": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 20, 22, 28, 31, 33, 34, 36, 42, 43, 44, 45, 46, 47, 49, 53, 56, 58, 59, 60, 62, 63, 64, 70, 72, 76, 77, 81, 83, 85, 88, 91, 92, 93, 94, 96, 97, 98, 99, 104, 105, 107, 108, 111, 112, 114, 118, 119, 123, 124, 126, 128, 130, 132, 133, 136, 138, 142, 143, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 158, 160, 163, 168, 169, 170, 173, 174, 180, 181, 186, 187, 188], "available_ram_for_php": 132, "avatar": [63, 74, 77, 82, 88, 110, 151, 153], "avatarscop": 77, "avconv": 130, "averag": [26, 112, 113, 132, 156], "average_worker_rss": 132, "avoid": [3, 19, 22, 25, 26, 40, 45, 56, 57, 60, 81, 82, 88, 92, 93, 98, 102, 107, 128, 130, 147, 156, 187], "avx": [3, 5], "avx2": [3, 5], "aw": [31, 48, 60, 123, 131, 183], "awai": [18, 88, 112, 132, 138, 143], "await": 188, "awar": [8, 77, 81, 93, 108, 126], "awk": 132, "ax": 59, "axi": 47, "azur": [88, 115], "b": [40, 60, 96, 153], "b2": 55, "b34b09cca5176397a89fc27381cbb1f72855fa18b69b6f87d7": 137, "b4af8db0ae269d73432e9a01e63a": 137, "b6": 55, "b8f682187c66f07af3a3b557a868342ef4a271218fe1c1e300": 137, "back": [3, 25, 26, 28, 38, 56, 58, 60, 63, 96, 101, 113, 114, 128, 129, 135, 138, 140, 142, 143, 147, 148, 152, 160], "backend": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 26, 32, 37, 38, 39, 45, 46, 48, 53, 56, 58, 59, 65, 67, 75, 76, 79, 81, 83, 84, 85, 88, 93, 111, 113, 119, 126, 128, 129, 132, 133, 143, 154, 156, 157, 183], "background": [0, 3, 6, 15, 32, 40, 46, 53, 60, 61, 65, 70, 72, 83, 88, 111, 114, 127, 144, 148, 150, 151, 153, 160, 187, 188], "background_color": [72, 156], "background_job_expire_trash": 49, "background_job_expire_vers": 44, "background_jobs_expiration_dai": 88, "backgroundcolor": 72, "backgroundjob": [3, 156, 187], "backport": [136, 186], "backportbot": 136, "backslash": 187, "backtrac": [67, 88, 132], "backup": [23, 46, 47, 60, 80, 88, 111, 116, 133, 135, 138, 141, 142, 143, 144, 147, 148, 149, 153, 156, 157, 170, 186], "backup_cod": 157, "backward": [22, 82], "bad": [5, 88, 126, 132], "badger": 64, "bak": [140, 146], "balanc": [26, 40, 59, 69, 81, 88, 128, 132], "ban": 126, "bandwidth": [26, 129], "banner": [81, 148], "bantim": 126, "bar": [1, 44, 49, 72], "barcelona": 81, "bare": [88, 135], "barracuda": [22, 60], "base": [1, 3, 4, 5, 7, 9, 10, 12, 15, 20, 28, 29, 38, 41, 43, 46, 56, 57, 58, 60, 65, 66, 69, 72, 77, 81, 82, 87, 88, 92, 96, 99, 101, 102, 107, 123, 124, 126, 127, 129, 130, 133, 134, 141, 142, 143, 148, 150, 153, 156, 168, 170, 186, 187, 188], "base64": [29, 31, 48, 60, 147, 152], "base64_signature_her": 147, "basenam": [60, 181], "baseurl": 188, "bash": [34, 123, 133, 150], "bash_profil": 150, "basi": [57, 106], "basic": [17, 50, 53, 60, 63, 75, 76, 77, 81, 82, 85, 87, 88, 96, 123, 126, 132, 133, 138, 178, 188], "batch": [11, 81, 88, 141, 154, 157], "bc95cbaff3abbed716e1d40bbdaa58a0": 118, "bcrypt": [126, 130], "bearer": [2, 68, 74, 88], "beauti": 188, "becaus": [19, 20, 22, 26, 27, 28, 29, 32, 38, 40, 43, 45, 48, 54, 55, 56, 57, 59, 60, 62, 64, 67, 70, 77, 81, 84, 85, 93, 106, 112, 116, 118, 120, 123, 126, 128, 131, 132, 133, 134, 138, 142, 147, 149, 152, 153, 157, 187], "becom": [40, 43, 60, 69, 88, 132, 133, 138, 151, 152, 153, 155, 160, 183], "been": [2, 3, 12, 29, 32, 38, 41, 48, 54, 56, 57, 60, 63, 67, 70, 83, 92, 93, 101, 105, 106, 114, 120, 137, 144, 149, 150, 155, 156, 157, 163, 165, 170, 176, 178, 183, 185, 186], "befor": [1, 3, 5, 7, 8, 14, 19, 20, 22, 23, 32, 46, 47, 48, 51, 53, 56, 57, 58, 60, 63, 68, 81, 88, 93, 95, 96, 105, 108, 111, 112, 116, 117, 118, 124, 128, 129, 130, 132, 133, 134, 135, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 155, 156, 157, 165, 166, 181, 186, 187], "beforehand": [135, 186], "beforenodecopiedev": 187, "beforenodecreatedev": 187, "beforenodedeletedev": 187, "beforenodereadev": 187, "beforenoderenamedev": 187, "beforenoderestoredev": 187, "beforenodetouchedev": 187, "beforenodewrittenev": 187, "begin": [2, 3, 5, 7, 81, 106, 131, 138, 142, 143, 154, 180], "begin_of_text": 5, "behalf": [1, 12, 77, 153], "behav": [40, 81, 92], "behavior": [2, 26, 32, 38, 40, 41, 53, 56, 58, 60, 63, 81, 82, 88, 93, 132, 138], "behaviour": [52, 81, 85, 126, 129, 151, 153], "behind": [15, 26, 58, 60, 70, 88, 93, 133, 137, 153, 160], "being": [3, 4, 29, 38, 43, 48, 58, 59, 60, 77, 88, 95, 99, 101, 102, 112, 116, 123, 126, 129, 132, 136, 143, 149, 153, 154, 156, 181, 186], "believ": 138, "belong": [2, 81, 85, 110, 118, 153, 159, 160], "below": [1, 3, 8, 26, 28, 38, 43, 48, 58, 59, 60, 63, 65, 67, 69, 70, 77, 80, 81, 82, 85, 88, 93, 95, 96, 101, 106, 107, 118, 128, 129, 130, 138, 142, 144, 148, 154, 157, 166, 187], "benchmark": [4, 12, 60, 118], "bender": 154, "benefici": 132, "benefit": [48, 60, 95, 96, 119, 126, 132, 133, 138, 186], "berlin": [2, 14, 60, 67, 117, 149, 157], "besid": [58, 60, 81, 95, 129], "best": [14, 15, 47, 58, 59, 63, 92, 101, 116, 126, 128, 130, 133, 134, 138, 142, 143, 148, 167, 187], "beta": [16, 60, 88], "better": [1, 5, 6, 7, 9, 10, 11, 20, 25, 28, 48, 56, 65, 81, 88, 138, 186], "between": [14, 25, 28, 29, 38, 41, 46, 48, 55, 57, 60, 69, 81, 88, 91, 93, 95, 96, 97, 101, 132, 142, 144, 146, 148, 152, 153, 155, 159, 164, 186], "bewar": [18, 40, 57], "beyond": [22, 48, 53, 55, 88, 107], "bia": [6, 11], "bias": 9, "big": [19, 46, 58, 88, 93, 129, 130, 138, 182, 186], "big_temp_fil": 26, "bigger": [57, 60, 148], "bigint": [21, 25, 88, 144], "bin": [15, 28, 46, 56, 57, 59, 65, 85, 88, 96, 110, 115, 124, 133, 150, 187], "binari": [29, 38, 47, 60, 63, 96, 134, 137, 152, 153], "binary_search_path": 88, "bind": [81, 96, 97, 130, 133, 154], "bind_address": 96, "bing": 174, "binlog_format": [22, 134], "bio": 132, "biographi": [77, 81, 110], "biographyscop": 77, "birth": 81, "birthdai": [88, 115], "birthdat": [77, 81], "birthdatescop": 77, "bit": [1, 22, 23, 26, 32, 60, 81, 124, 134, 169], "bitmap": 60, "black": 2, "blacklisted_fil": 181, "blank": 160, "blob": [15, 63, 88], "block": [1, 8, 28, 38, 40, 56, 58, 60, 64, 81, 88, 99, 124, 126, 129, 132, 172, 181], "blocker": 64, "blog": [6, 8, 11, 28, 60, 119, 123, 129], "blue": 89, "blueski": [77, 110], "blueskyscop": 77, "blurri": 47, "bmp": [60, 129], "board": [2, 174, 175], "bob": [77, 157, 187], "bock": 181, "bodi": [60, 124, 187, 188], "bodyparamet": 188, "bold": 186, "book": [11, 43, 60, 77, 85, 88, 112, 115, 151, 153, 156], "bookmark": [15, 88], "bookworm": [162, 163], "bool": [112, 118, 129], "boolean": [16, 20, 23, 41, 60, 149, 151, 160], "boolval": 96, "boot": [57, 59, 123, 132], "bootstrap": [59, 60], "border": 40, "borrow": 129, "bot": [13, 15, 88], "both": [3, 12, 15, 22, 25, 28, 37, 40, 41, 44, 47, 48, 49, 56, 58, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 92, 96, 99, 102, 108, 114, 116, 118, 119, 126, 129, 130, 132, 133, 143, 148, 150, 152, 153, 157, 159, 160, 164, 168, 172, 173, 187, 188], "bottleneck": 132, "bottom": [53, 111, 142], "bound": [3, 60, 93, 96], "bounti": 12, "box": [28, 54, 58, 63, 81, 93, 95, 118, 169, 178, 188], "bpxrficyexamplekei": 153, "bracket": [81, 82], "branch": 137, "brand": [64, 65, 88, 119, 167], "brazilian": 4, "breach": [86, 126], "break": [15, 60, 129, 134, 138, 149, 186], "breakdown": [88, 156], "breton": 4, "bridg": [96, 97, 108], "brief": [151, 178], "briefli": 96, "bring": [15, 173], "british": 10, "broadcast": [88, 150], "broaden": 154, "broken": [23, 28, 70, 129, 138, 152, 153, 180], "brown": 83, "brows": 40, "browser": [41, 60, 64, 66, 67, 70, 77, 88, 92, 93, 101, 106, 107, 123, 124, 126, 127, 128, 129, 132, 133, 138, 143, 145, 147, 156, 160, 161, 166, 170, 171, 172, 180, 183], "brute": [60, 65, 88, 107, 110, 126, 156], "bruteforc": [58, 88], "bruteforce_attempt": 58, "bruteforceset": 58, "bsd": 124, "bt": 11, "btoa": 188, "bucket": [31, 36, 46, 60, 88, 143, 153], "bucketnam": 48, "buffer": [26, 93, 129, 132], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 26, 60, 70, 88, 93, 118, 119, 132, 134, 139, 148, 149, 151], "bugtrack": 138, "build": [6, 8, 12, 56, 88, 92, 118, 129, 136, 164], "built": [1, 2, 5, 7, 9, 10, 11, 28, 32, 54, 58, 60, 67, 70, 88, 93, 107, 108, 109, 111, 112, 129, 130, 133, 134, 138, 141, 142, 144, 148, 156, 158, 161, 166, 168, 169, 172], "builtin": 153, "bulk": [6, 60, 77], "bulkupload": 88, "bump": 185, "bun": 188, "bundl": [3, 16, 40, 59, 60, 130, 156, 187], "burst": 132, "busi": [60, 132, 133, 138, 172], "bust": 129, "button": [1, 16, 32, 40, 41, 60, 63, 72, 81, 85, 88, 93, 94, 95, 108, 113, 116, 138, 147, 160, 188], "byedvluwkxkmflpbgvxc": 67, "bypass": [3, 48, 54, 56, 60, 81, 93, 126, 147, 153, 160], "byte": [21, 22, 26, 29, 31, 48, 56, 60, 63, 67, 88, 93, 116, 118, 124, 134, 138, 140, 156], "bytecod": 132, "bz2": [123, 125, 142], "bzip2": 123, "c": [6, 18, 22, 28, 31, 46, 60, 67, 88, 92, 93, 96, 118, 123, 125, 126, 130, 132, 133, 138, 146, 147, 156, 163, 165], "c2521b050955d9d452769f61454c9ddfa9c308146ade10546c": 137, "c478e6c156c5955ed53c40d06585": 137, "c5994f2a42b8a348af92d3acb4edff1328ad8ce1": 60, "c5a03bacae8dedf8b239997901ba1fffd2fe51271d13a00cc4": 137, "ca": [22, 59, 60, 96, 156], "ca_cert": 60, "cach": [8, 38, 45, 58, 65, 69, 82, 88, 112, 127, 129, 135, 138, 143, 149, 150, 152, 153, 154, 155, 156, 163, 164, 165, 180], "cache_app_config": 88, "cache_chunk_gc_ttl": 88, "cache_path": [59, 88], "cache_s": 22, "cadav": [93, 138], "caddi": [88, 129], "cadenc": 186, "cafil": [59, 60], "cal": 69, "calcul": [5, 6, 7, 9, 10, 29, 60, 85, 132], "caldav": [60, 65, 69, 88, 113, 115, 118, 124, 129, 133, 138, 178, 187], "caldav_external_attendees_dis": 112, "calendar": [12, 16, 23, 61, 63, 88, 108, 110, 111, 114, 115, 117, 137, 139, 144, 150], "calendarchang": [112, 151], "calendardata": 187, "calendarid": 187, "calendarobjectcreatedev": 187, "calendarobjectdeletedev": 187, "calendarobjectmovedev": 187, "calendarobjectmovedtotrashev": 187, "calendarobjectrestoredev": 187, "calendarobjectupdatedev": 187, "calendarretentionoblig": 112, "calendarserv": 187, "calendarsubscriptionrefreshr": 112, "call": [2, 3, 4, 12, 15, 29, 41, 43, 57, 59, 60, 67, 68, 75, 81, 87, 88, 93, 95, 114, 116, 120, 129, 131, 133, 134, 138, 146, 147, 151, 153, 157, 159, 173, 187, 188], "callback": [160, 188], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 64, 66, 67, 68, 69, 70, 71, 72, 73, 76, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 103, 105, 106, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 160, 162, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 180, 181, 182, 183, 184, 186, 187], "can_instal": 124, "cancel": [138, 156], "candid": 88, "cannot": [0, 3, 5, 8, 9, 12, 26, 29, 32, 34, 38, 40, 45, 50, 51, 53, 55, 56, 60, 63, 70, 76, 77, 81, 85, 88, 92, 107, 111, 114, 118, 126, 129, 130, 134, 136, 137, 142, 146, 147, 148, 150, 152, 153, 156, 157, 178, 186], "canon": [60, 69, 88], "cantonbeck": 151, "cap": [132, 153, 166], "cap_add": 132, "capabl": [2, 4, 12, 15, 60, 81, 88, 96, 109, 112, 132, 153, 157, 166, 171, 172, 173], "capac": [5, 7, 9, 10, 48, 132], "captur": 187, "carbonara": 2, "card": [2, 15, 69, 77, 85, 95, 113, 174, 175], "carddav": [43, 65, 69, 88, 112, 114, 115, 124, 129, 133, 138, 178], "carddav_sync_request_timeout": 88, "carddav_sync_request_trunc": 88, "care": [3, 25, 56, 57, 60, 84, 92, 96, 97, 124, 129], "carefulli": [138, 149], "carol": 187, "carri": [2, 60, 106, 153, 156, 160, 164], "cartoon": 2, "case": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 20, 22, 23, 25, 28, 29, 42, 43, 50, 56, 57, 58, 60, 63, 66, 70, 79, 81, 85, 86, 88, 93, 95, 96, 97, 99, 101, 102, 116, 118, 123, 126, 128, 130, 132, 133, 134, 138, 142, 143, 144, 146, 147, 149, 150, 152, 157, 159, 172, 178, 180, 186, 187, 188], "cast": [2, 60], "cat": [2, 31, 151, 153], "catalan": 4, "catch": [56, 138], "categori": [2, 16, 95, 107, 110, 114, 156], "caus": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 28, 38, 40, 58, 59, 60, 70, 81, 93, 129, 131, 132, 133, 137, 138, 143, 146, 147, 150, 151, 153, 156, 180, 182, 183], "causal": 24, "caution": [8, 118, 129], "cautiou": [60, 63], "caveat": 53, "cc_em_api_kei": 3, "cc_em_base_url": 3, "cc_em_model_nam": 3, "cc_em_password": 3, "cc_em_usernam": 3, "ccb": 3, "cd": [8, 15, 23, 28, 34, 121, 124, 167, 187], "ce08bf30bcbb879a18b49239a9bec6b8702f52452f88a9d321": 137, "ce6cd914": 154, "ce8b61c2": 154, "ce9e248333c44a5a64ccad26f2550f95": 118, "ceas": 186, "ceil": 132, "center": 63, "cento": [56, 59, 88, 127, 129, 133, 134, 150], "central": [28, 29, 59, 153], "ceph": 48, "cert": [22, 59, 60, 94, 96, 124, 166], "certain": [3, 9, 26, 47, 53, 58, 60, 67, 69, 81, 85, 93, 105, 112, 113, 126, 129, 133, 147, 154, 172], "certfil": 96, "certif": [32, 33, 46, 60, 64, 82, 88, 90, 93, 96, 116, 124, 126, 129, 133, 134, 137, 153, 160, 166, 167, 178], "certifi": 89, "cfb": 60, "cfg": 93, "cgi": 129, "challeng": [126, 129, 132], "chanc": [118, 138, 186], "chang": [1, 2, 3, 4, 8, 11, 12, 14, 15, 16, 18, 19, 20, 23, 25, 27, 28, 38, 39, 43, 45, 46, 47, 48, 51, 52, 53, 56, 59, 60, 61, 63, 65, 66, 67, 71, 72, 74, 77, 81, 82, 88, 93, 95, 96, 101, 107, 112, 113, 116, 118, 121, 123, 125, 126, 129, 130, 132, 133, 137, 140, 142, 143, 146, 148, 149, 153, 156, 157, 160, 170, 172, 178, 179, 180, 181, 182, 186, 187, 188], "changelog": [16, 88, 142, 147], "channel": [16, 88, 108, 119, 138, 147], "chapter": [92, 109, 130, 133, 138, 186], "char": [81, 153], "charact": [8, 22, 23, 40, 50, 60, 63, 81, 82, 86, 93, 125, 126, 130, 140, 146, 153], "character_set_serv": 22, "characterist": 60, "charg": [84, 111, 188], "charli": 77, "charset": [25, 60, 88], "chart": [85, 133], "chat": [2, 5, 13, 14, 61, 88, 101, 111, 151, 160], "chat_last_n_messag": 1, "chat_user_instruct": 1, "chat_user_instructions_titl": 1, "chatgpt": [0, 15], "chatroom": 8, "chatti": 14, "cheap": 60, "cheat": 183, "check": [2, 3, 5, 6, 7, 11, 12, 14, 15, 22, 28, 33, 38, 41, 43, 44, 52, 53, 56, 57, 58, 59, 60, 63, 65, 66, 76, 77, 80, 81, 83, 85, 86, 88, 95, 96, 98, 100, 101, 114, 116, 118, 124, 126, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 147, 148, 150, 160, 163, 164, 165, 172, 181, 182, 186, 187, 188], "check_data_directory_permiss": 88, "check_for_working_htaccess": 88, "check_for_working_wellknown_setup": 88, "checkbox": [31, 40, 41, 53, 72, 81, 85, 92, 96, 112, 113, 160], "checker": [60, 70], "checkout": 3, "checksum": [81, 123, 125, 147, 151, 183], "children": 156, "chines": 4, "chmod": [28, 34, 96, 142], "choic": [8, 22, 56, 60, 80, 81, 88, 126, 127, 130, 143, 148], "choos": [1, 5, 7, 16, 28, 43, 54, 58, 59, 60, 67, 69, 81, 88, 95, 96, 112, 113, 124, 128, 129, 130, 133, 138, 142, 162, 166, 173, 186, 188], "chooser": 60, "chose": [116, 148], "chosen": [1, 20, 22, 40, 59, 60, 128], "chown": [28, 34, 121, 123, 125, 129, 133, 142], "christoph": 118, "chrome": [67, 134], "chromium": [134, 183], "chroot": [88, 127], "chunk": [3, 43, 46, 60, 88, 93, 118, 129], "chunked_upload": [26, 88], "chunksiz": 93, "ci": [60, 157], "cidr": [60, 69], "cif": [40, 88, 127, 130], "cipher": [29, 88, 93, 126], "circl": [18, 88], "circumst": [47, 58, 81], "circumv": 60, "cisco": 56, "citi": 81, "citrix": 88, "claim": [0, 12], "clam": 56, "clamav": [65, 88], "clamd": 56, "clamp": 81, "clamscan": 56, "clarif": 14, "class": [31, 48, 52, 60, 63, 81, 137, 156, 187], "class_nam": 156, "classic": 133, "classif": [156, 187], "classifi": [6, 93, 118], "clean": [1, 49, 53, 57, 60, 80, 88, 99, 108, 111, 112, 133, 153, 154, 156, 157, 178], "cleanli": 156, "cleanup": [1, 44, 47, 74, 80, 81, 88, 107, 108, 114, 154, 180], "cleanupjobchunks": 83, "clear": [6, 20, 53, 58, 59, 60, 81, 82, 88, 106, 118, 132, 156], "clear_env": 133, "cli": [57, 63, 65, 67, 69, 88, 94, 98, 100, 112, 123, 126, 127, 132, 133, 143, 148, 150, 156, 180], "click": [16, 40, 41, 54, 60, 63, 64, 78, 81, 85, 93, 95, 116, 128, 137, 138, 147, 160, 188], "clickjack": [64, 126], "client": [12, 15, 19, 22, 26, 28, 31, 32, 38, 43, 45, 48, 50, 55, 58, 60, 63, 64, 65, 67, 68, 69, 73, 80, 81, 85, 88, 96, 97, 101, 110, 111, 112, 113, 114, 116, 118, 119, 126, 127, 128, 129, 131, 132, 133, 137, 138, 141, 143, 147, 151, 156, 159, 166, 171, 188], "client_body_buffer_s": 129, "client_body_temp_path": 26, "client_body_timeout": 129, "client_max_body_s": [26, 129], "clientreqid": 67, "clone": [7, 8], "close": [2, 7, 8, 10, 43, 60, 63, 69, 88, 106, 107, 138, 147, 160], "cloud": [0, 1, 2, 4, 8, 15, 17, 18, 41, 43, 46, 55, 65, 67, 68, 69, 70, 72, 75, 76, 77, 87, 88, 92, 93, 94, 96, 114, 119, 126, 129, 133, 153, 155, 156, 157, 166, 172, 188], "cloud2": 166, "cloud_id": 157, "cloudfil": [36, 60], "cloudflar": [60, 93, 129, 138], "clue": 88, "cluster": [0, 3, 6, 88, 143], "cmd": [92, 96, 123], "cn": [60, 81, 82, 154], "cname": 143, "cnf": [22, 60, 124], "co": [5, 11], "co2": [6, 11], "coauthor": 160, "code": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 15, 17, 28, 29, 47, 51, 63, 65, 66, 69, 70, 75, 76, 77, 80, 81, 88, 92, 93, 119, 121, 126, 129, 132, 135, 138, 139, 147, 148, 151, 153, 158, 166, 167, 168, 169, 170, 172, 187], "code_docker_imag": 169, "codebas": [60, 144], "cold": 132, "collabor": [32, 88, 101, 102, 119, 161, 168], "collabora": [32, 88, 133, 167, 168, 169, 171, 172, 175, 180], "collaboraoffic": [167, 169, 170], "collaboraonlin": [159, 166, 167, 169, 170, 171], "collaps": 128, "collat": [22, 23, 88, 125, 146], "collation_serv": 22, "colleagu": 151, "collect": [15, 57, 60, 118, 126, 132, 174, 175], "collectiveid": 18, "collis": [59, 60, 81, 82], "colon": [60, 63], "color": [40, 72, 151, 157, 160], "column": [19, 25, 85, 88, 116, 144, 148], "com": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 20, 22, 28, 35, 41, 48, 55, 56, 59, 60, 63, 67, 69, 72, 75, 76, 77, 81, 82, 83, 86, 87, 88, 92, 93, 96, 110, 112, 116, 119, 121, 123, 125, 126, 128, 129, 130, 132, 133, 134, 136, 137, 138, 142, 147, 149, 151, 154, 156, 159, 160, 163, 165, 166, 167, 169, 170, 171, 172, 180, 183, 184, 187], "combin": [12, 13, 15, 32, 44, 58, 60, 67, 70, 88, 93, 130, 133, 145, 147, 153, 154, 157, 188], "combo": 54, "come": [2, 4, 5, 15, 26, 40, 43, 47, 51, 58, 60, 69, 95, 96, 123, 133, 134, 138, 150, 156, 169, 187, 188], "comma": [60, 61, 81, 157], "command": [1, 4, 6, 13, 14, 15, 18, 19, 20, 30, 34, 38, 40, 41, 43, 46, 47, 48, 51, 52, 53, 56, 57, 60, 61, 63, 67, 69, 72, 77, 78, 81, 83, 88, 92, 96, 97, 98, 99, 103, 111, 112, 116, 117, 118, 123, 125, 127, 130, 131, 132, 133, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 148, 161, 164, 182, 183, 187], "comment": [2, 23, 26, 40, 43, 56, 65, 88, 108, 111, 133, 136, 142, 147, 160, 174, 175], "commentsmanag": 60, "commerci": [119, 133, 138], "commit": [60, 65, 88, 134], "common": [11, 28, 51, 55, 58, 60, 70, 77, 81, 86, 88, 95, 104, 111, 116, 123, 126, 129, 132, 133, 147, 150, 156, 161, 171, 188], "commonli": [28, 48, 58, 59, 130, 138], "commonnam": [60, 133, 187], "commun": [1, 15, 16, 35, 59, 70, 81, 84, 88, 95, 97, 100, 118, 119, 121, 125, 130, 133, 138, 147, 150, 156, 160, 171, 173, 182, 186], "compact": 160, "compani": [2, 12, 64, 72, 81, 147], "compar": [20, 57, 81, 120, 142, 151], "comparison": [46, 60, 81, 88, 187], "comparison_of_file_system": 60, "compat": [0, 3, 5, 16, 22, 28, 31, 38, 40, 46, 48, 59, 60, 80, 82, 88, 130, 132, 144, 148, 152, 166, 186, 187], "compens": 38, "compil": [22, 59, 132], "complain": 149, "complementari": 58, "complet": [1, 2, 3, 11, 12, 15, 20, 26, 28, 41, 43, 53, 56, 60, 68, 81, 85, 88, 92, 101, 110, 121, 123, 124, 126, 130, 131, 132, 133, 135, 144, 146, 147, 148, 150, 153, 156, 174, 177, 187], "completionexpectedat": 14, "complex": [28, 60, 96, 107, 111], "compli": [60, 111, 153], "complianc": [13, 53, 60, 88, 107, 138], "compliant": [80, 126, 134], "compon": [12, 60, 88, 129, 132, 133, 138, 162, 173, 178, 185, 187], "component_classic_hash": 185, "compos": [56, 129, 132, 160], "composit": [114, 175], "compound": 88, "comprehens": 138, "compress": [56, 60, 85, 88, 93, 101, 107, 126, 127, 130, 182], "compris": 60, "compromis": [28, 60], "comput": [40, 50, 60, 85, 86, 91, 95, 96, 97, 99], "compute_devic": 97, "computedevic": 97, "concaten": [29, 38], "concept": [25, 124, 149], "concern": [8, 26, 28, 29, 47, 60, 129, 186], "concert": 2, "concurr": [3, 4, 48, 60, 132, 180], "condit": [14, 15, 65, 70, 81, 88, 102, 138, 186, 187, 188], "condition": 60, "conf": [22, 56, 59, 81, 96, 123, 124, 126, 129, 133, 138], "confdir": 92, "confer": [2, 119], "confid": 155, "confidenti": [68, 101, 157, 159], "config": [1, 2, 3, 5, 11, 16, 20, 22, 23, 25, 26, 27, 28, 29, 30, 41, 43, 44, 45, 47, 48, 49, 50, 51, 53, 56, 57, 58, 60, 61, 65, 66, 67, 68, 69, 70, 71, 72, 73, 79, 81, 82, 83, 84, 85, 88, 95, 96, 97, 98, 103, 106, 107, 112, 113, 116, 117, 118, 120, 123, 124, 128, 129, 131, 132, 133, 135, 138, 140, 142, 143, 144, 146, 147, 148, 150, 151, 157, 161, 164, 166, 172, 180, 181, 182, 183, 184], "config_is_read_onli": 88, "configdata": 82, "configfilemod": 88, "configid": [81, 82, 154], "configur": [2, 4, 12, 13, 16, 20, 23, 25, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 43, 44, 45, 46, 50, 52, 54, 57, 58, 66, 68, 69, 71, 73, 74, 80, 83, 85, 86, 92, 93, 94, 95, 97, 99, 100, 101, 102, 104, 106, 107, 108, 110, 112, 113, 114, 115, 117, 118, 123, 125, 128, 134, 135, 138, 142, 143, 144, 146, 147, 150, 152, 153, 154, 155, 156, 157, 158, 161, 164, 165, 168, 171, 175, 177, 184, 187, 188], "configuration_serv": 60, "confin": [43, 133], "confirm": [4, 19, 22, 41, 48, 65, 68, 70, 77, 78, 81, 88, 108, 109, 123, 125, 130, 132, 133, 142, 143, 152, 153, 156, 157, 160], "conflict": [16, 38, 60, 81, 118, 146, 151], "confus": [28, 38], "congratul": [116, 163, 165, 166], "conjunct": [5, 15], "connect": [0, 2, 3, 5, 12, 22, 24, 25, 31, 32, 33, 36, 38, 40, 41, 45, 48, 58, 60, 63, 68, 69, 70, 73, 74, 82, 83, 88, 92, 95, 96, 97, 111, 112, 113, 116, 124, 127, 128, 129, 131, 132, 133, 134, 138, 143, 153, 154, 156, 159, 160, 161, 163, 165, 171, 172, 180, 184, 187], "connect_timeout": [22, 48], "connectivity_check_domain": 88, "connector": [2, 3, 5, 6, 7, 8, 9, 10, 11, 88, 127, 128, 151, 161, 164], "consecut": 34, "consent": [106, 116], "consequ": [46, 88, 126, 129, 152], "conserv": 132, "consid": [1, 8, 16, 28, 31, 41, 47, 48, 60, 63, 67, 77, 80, 81, 93, 107, 108, 110, 112, 113, 118, 126, 133, 134, 138, 146, 172, 186], "consider": [46, 60, 65, 85, 88, 186], "consist": [20, 29, 40, 44, 60, 101, 116, 129, 138, 142, 150], "consol": [19, 53, 64, 98, 129, 133, 138, 142, 150, 166], "const": 188, "constant": [60, 77], "constitut": 109, "constrain": 92, "constraint": [77, 133, 147, 153], "consult": [16, 26, 28, 56, 59, 60, 109, 111, 126, 130, 134, 187], "consum": [8, 26, 58, 60, 77, 148], "consumpt": [5, 6, 7, 11, 26, 88, 90, 132], "contact": [3, 16, 43, 72, 77, 81, 85, 88, 108, 110, 111, 112, 115, 121, 133, 137, 139, 144, 149, 153, 160, 184], "contactinteractedwithev": 114, "contactsinteract": 114, "contain": [3, 4, 5, 7, 8, 11, 12, 15, 16, 18, 22, 28, 29, 30, 31, 43, 48, 56, 60, 63, 67, 69, 70, 81, 82, 85, 88, 89, 92, 93, 94, 95, 97, 98, 100, 101, 106, 107, 110, 111, 113, 114, 116, 118, 126, 129, 132, 133, 135, 136, 138, 147, 150, 152, 156, 159, 160, 164, 166, 169, 172, 180, 187, 188], "container": 133, "container_id": 166, "container_nam": 56, "containerlogmaxfil": 96, "containerlogmaxs": 96, "content": [2, 3, 11, 12, 15, 20, 28, 29, 31, 40, 43, 48, 52, 55, 60, 64, 87, 93, 96, 102, 110, 112, 113, 119, 123, 124, 125, 126, 129, 137, 138, 142, 146, 149, 152, 153, 156, 174, 187], "context": [5, 8, 13, 28, 38, 58, 60, 67, 77, 88, 92, 101, 130, 150, 175, 183], "context_ag": [1, 13, 15, 88], "context_chat": [1, 3, 15], "context_chat_backend": [1, 3, 15], "contextchat": 3, "continu": [3, 19, 44, 53, 67, 85, 96, 98, 106, 126, 134, 144, 147, 151, 152, 156, 172], "contract": 106, "contrast": 18, "contrib": [88, 162], "contribut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 138], "control": [13, 28, 40, 41, 43, 46, 53, 60, 63, 69, 77, 81, 85, 88, 92, 95, 102, 104, 105, 107, 109, 110, 112, 113, 126, 129, 132, 133, 145, 149, 150, 151, 153, 156, 157, 160, 180], "convei": [11, 152], "conveni": [77, 121], "convent": 29, "convers": [1, 2, 8, 14, 19, 21, 46, 60, 88, 110, 111, 118, 159, 174, 175], "convert": [12, 19, 21, 23, 25, 60, 71, 81, 88, 102, 132, 138, 144, 152, 163, 165, 166], "cookbook": 88, "cooki": [60, 65, 88, 107, 109, 110], "cookie_domain": 88, "cool": [166, 170, 171], "coolconfig": [159, 167], "coolwsd": [159, 166, 167, 169, 170, 171], "cooper": 119, "coordin": [2, 130], "copi": [2, 3, 5, 7, 18, 25, 27, 32, 37, 41, 60, 63, 69, 81, 85, 88, 96, 107, 108, 114, 116, 123, 125, 129, 140, 142, 143, 146, 155, 156, 187], "copied_sample_config": 88, "copyright": 112, "copysizelimit": 48, "core": [3, 5, 6, 7, 9, 10, 11, 12, 14, 27, 43, 58, 59, 61, 72, 88, 107, 124, 125, 129, 130, 132, 133, 137, 142, 145, 152, 155, 156, 157, 180, 186, 187], "coreinfo": 132, "corpor": [72, 133], "correct": [5, 6, 9, 11, 12, 22, 28, 58, 60, 63, 69, 81, 92, 93, 95, 111, 118, 126, 128, 129, 130, 133, 136, 137, 138, 142, 144, 150, 153, 154, 186, 188], "correctli": [22, 26, 40, 41, 45, 53, 58, 64, 70, 81, 83, 92, 93, 94, 99, 114, 117, 123, 129, 133, 138, 151, 153, 156, 181], "correspond": [26, 45, 47, 48, 77, 81, 83, 123, 125, 129, 130, 135, 138, 142, 152, 153, 157, 175, 187], "corrupt": [45, 59, 60, 143, 147, 148, 153], "cost": [60, 129], "could": [1, 3, 20, 22, 26, 40, 43, 48, 52, 57, 59, 60, 63, 76, 80, 81, 92, 93, 101, 118, 124, 126, 129, 134, 137, 138, 140, 146, 149, 154, 156, 172], "couldn": 99, "counsel": 109, "count": [2, 60, 85, 88, 105, 126, 132, 138, 156, 157], "counter": 152, "countri": [2, 60, 81], "courier": 63, "cours": [60, 80, 101, 128, 138, 147, 166, 188], "court": 81, "cover": [22, 96, 101, 116, 128, 129, 137, 148, 153, 156, 163, 165, 177, 182, 183, 184], "coverag": [5, 9, 11], "cp": [3, 4, 123, 124, 125, 153], "cpanel": 39, "cpp": [5, 12], "cpu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 56, 60, 88, 95, 96, 97, 126, 132], "cpuinfo": [3, 132], "cr": 81, "cram": 63, "crammd5": 63, "crash": 93, "crawler": 184, "crc32": 183, "creat": [0, 1, 2, 12, 14, 15, 16, 18, 20, 28, 29, 31, 33, 34, 36, 40, 44, 46, 47, 48, 50, 51, 53, 54, 56, 57, 59, 60, 64, 67, 71, 74, 76, 77, 81, 84, 87, 88, 92, 95, 96, 97, 99, 101, 102, 105, 110, 112, 113, 114, 116, 118, 119, 120, 123, 124, 125, 126, 128, 133, 135, 138, 142, 143, 144, 145, 146, 147, 149, 152, 155, 156, 157, 159, 160, 162, 180, 187], "create_example_ev": [112, 151], "createcli": 188, "createdb": 22, "createrol": 128, "creation": [3, 5, 7, 29, 43, 46, 60, 88, 92, 96, 105, 110, 112, 113, 133, 156, 157, 184], "credenti": [20, 29, 32, 38, 40, 48, 58, 60, 63, 81, 93, 116, 120, 126, 128, 143, 151, 152, 153, 159, 188], "crew": 154, "criteria": [7, 25, 67, 101, 187], "critic": [3, 5, 7, 8, 12, 60, 88, 126, 134, 138, 142, 148, 186], "crl": 60, "crlf": 81, "cromwel": 130, "cron": [3, 6, 38, 40, 41, 44, 49, 53, 56, 60, 65, 88, 107, 112, 114, 116, 126, 127, 129, 130, 138, 142, 144, 148, 149, 151, 153, 160, 187], "cronjob": [43, 57, 58, 124], "crontab": [53, 57, 112, 138, 142, 144], "crop": 81, "cross": [60, 106, 110, 119, 129, 132], "crt": [59, 60, 96, 129, 153, 156], "crucial": [60, 159], "crypto": 96, "cryptograph": 126, "cryptographi": 3, "csrf": [70, 88, 106], "css": [69, 88, 132, 153], "csync": 88, "ct2": 11, "ctl": 56, "ctr": [29, 60], "ctrl": [93, 130], "ctype": 130, "cuda": [3, 4, 5, 6, 7, 9, 11, 95, 97], "cudnn": 6, "culprit": 132, "cupsd": 63, "curl": [17, 52, 67, 70, 75, 76, 77, 82, 87, 96, 123, 125, 130, 163, 164, 165, 172, 180], "current": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 22, 29, 32, 43, 44, 53, 57, 58, 59, 60, 62, 64, 66, 67, 68, 77, 80, 81, 88, 93, 95, 96, 97, 101, 107, 112, 116, 121, 123, 124, 126, 132, 133, 134, 137, 142, 144, 148, 149, 150, 151, 152, 153, 155, 156, 160, 172, 184, 186, 187], "currentvers": 147, "cursor": [81, 85], "custom": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 27, 48, 51, 53, 59, 60, 61, 64, 65, 69, 79, 83, 85, 88, 92, 93, 95, 96, 102, 110, 113, 116, 119, 122, 129, 130, 131, 132, 133, 137, 140, 141, 143, 153, 156, 161, 174, 181, 182, 187, 188], "customclient_android": 60, "customclient_desktop": 88, "customclient_fdroid": 60, "customclient_io": 60, "customclient_ios_appid": 60, "customid": [14, 156], "custompath": 27, "cut": 15, "cybersecur": [13, 88, 107], "cycl": [40, 81, 119], "czech": 4, "d": [18, 22, 28, 29, 44, 49, 56, 60, 67, 75, 76, 77, 81, 82, 83, 92, 96, 107, 123, 124, 126, 129, 131, 132, 133, 140, 142, 146, 147, 163, 164, 165, 166, 167], "d1": [44, 49, 60, 107], "d2": [44, 49, 60, 107], "d5685c3b45aee373b09be54742ea": 137, "d7": 55, "daemon": [3, 4, 56, 59, 60, 67, 88, 98, 100, 171], "daemon_config_nam": 8, "daemonconfig": [96, 97], "dai": [1, 2, 3, 19, 43, 44, 49, 53, 57, 60, 61, 73, 81, 85, 93, 105, 106, 107, 110, 112, 114, 116, 119, 123, 151, 153, 186, 187], "daili": [12, 53, 58, 60, 107, 119, 153], "daisi": 157, "dall": 175, "danger": 64, "dark": [60, 160], "dash": [67, 85, 153], "dashboard": [60, 65, 88, 116], "data": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 19, 20, 22, 23, 25, 26, 27, 29, 34, 40, 45, 46, 51, 56, 57, 59, 63, 67, 68, 73, 77, 78, 80, 81, 82, 83, 84, 85, 88, 93, 94, 96, 98, 106, 109, 115, 116, 121, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 154, 155, 159, 160, 162, 173, 175, 180, 183, 186, 187, 188], "data_request": 108, "databas": [3, 12, 14, 19, 23, 24, 29, 32, 38, 40, 44, 45, 48, 56, 57, 58, 65, 67, 81, 83, 88, 93, 112, 113, 114, 121, 125, 126, 127, 133, 135, 138, 141, 142, 143, 144, 147, 148, 150, 153, 156, 157, 162, 164, 174, 175, 185, 187], "databaseid": 118, "datacent": [31, 48], "datadir": [28, 60, 131], "datadirectori": [29, 67, 88, 120, 135, 143, 147], "dataintegr": [60, 183], "dataloss": 146, "dataset": 11, "date": [2, 14, 19, 41, 46, 57, 60, 66, 67, 70, 81, 83, 88, 110, 112, 116, 122, 123, 130, 132, 134, 138, 140, 146, 153, 156, 157, 160, 177, 186], "dateinterv": 112, "datepattern": 126, "datetim": 60, "datetimeinterfac": 60, "dav": [35, 60, 69, 70, 81, 88, 93, 108, 111, 112, 113, 114, 117, 118, 123, 124, 129, 133, 138, 150, 156], "davclnt": 129, "david": 187, "davstorag": [26, 41, 88], "davx5": 114, "davx\u2075": 118, "db": [3, 19, 20, 22, 25, 51, 56, 83, 88, 93, 124, 128, 138, 140, 144, 146, 148, 157, 163, 165], "db8": 60, "db_": 129, "db_host": 164, "db_name": [140, 146, 164], "db_user": 164, "dbal": 60, "dbdriveropt": [22, 25, 88], "dbhost": [22, 25, 88, 120, 135, 143], "dbindex": [59, 60, 149], "dbname": [22, 24, 25, 88, 120, 143], "dbpass": 120, "dbpassword": [22, 25, 88, 120, 128, 143], "dbpersist": 88, "dbport": 25, "dbreplica": [24, 88], "dbtableprefix": [22, 88, 120], "dbtype": [20, 22, 88, 120, 135], "dbuser": [22, 25, 88, 120, 128, 143], "dc": [81, 82, 83, 154], "dd": [81, 151], "ddl": 182, "de": [60, 66, 69, 89], "de_d": [60, 66], "deactiv": [20, 44, 49, 112, 116, 181, 182, 183], "deal": [118, 133], "deb": [125, 160, 163, 165, 167], "debconf": [163, 165], "debian": [22, 56, 59, 72, 88, 121, 130, 132, 133, 134, 138, 150, 161, 162, 166, 185], "debug": [12, 13, 70, 81, 88, 118, 127, 129, 137, 143, 147, 151, 153, 156], "decemb": 123, "decid": [12, 22, 28, 92, 95, 105, 129, 148, 186], "decim": 48, "decis": [28, 135], "deck": [15, 28, 88, 153, 156, 174, 175], "declar": [81, 88], "decod": 156, "decompress": 130, "decreas": [60, 88, 93], "decrement": 152, "decrypt": [46, 48, 60, 88, 96, 106, 126, 132, 138, 150], "dedic": [2, 3, 6, 25, 26, 60, 72, 81, 88, 112, 119, 127, 128, 129, 132, 135, 147, 151, 153, 156, 161, 169], "deem": 47, "deep": [28, 65, 88], "deeper": 11, "deepl": [1, 4, 15], "default": [1, 2, 3, 4, 5, 7, 9, 10, 11, 15, 16, 18, 20, 22, 23, 24, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 63, 65, 68, 69, 72, 80, 81, 82, 83, 85, 86, 87, 88, 92, 93, 94, 95, 97, 98, 106, 107, 110, 112, 113, 114, 115, 117, 118, 123, 124, 126, 128, 129, 130, 131, 132, 133, 134, 138, 140, 145, 146, 148, 149, 150, 151, 153, 156, 157, 160, 163, 164, 167, 168, 169, 171, 174, 183, 186, 187, 188], "default_certificates_bundle_path": 88, "default_en": 17, "default_file_extens": 71, "default_host": 22, "default_languag": [66, 88], "default_local": [66, 88], "default_password": 22, "default_phone_region": [81, 88], "default_port": 22, "default_property_scop": [77, 81, 88], "default_scop": 77, "default_socket": 22, "default_timezon": [88, 117], "default_us": 22, "defaultapp": 88, "defaultmodul": 152, "defaultpag": 61, "defaulttemplatedirectori": 27, "defenc": 107, "defin": [16, 28, 29, 32, 36, 45, 48, 49, 50, 57, 59, 60, 65, 66, 67, 77, 81, 85, 88, 93, 94, 96, 101, 102, 103, 112, 126, 129, 137, 150, 151, 153, 159, 160, 180, 186, 187, 188], "definit": [20, 46, 88, 126, 186], "defunct": 81, "degrad": [60, 132, 151], "degre": 135, "delai": [0, 15, 40, 41, 53, 57, 58, 60, 88, 112, 156], "deleg": [65, 88, 115, 150, 187], "delegate_permiss": 55, "delet": [1, 2, 3, 17, 27, 40, 43, 44, 46, 50, 53, 56, 57, 65, 73, 74, 81, 87, 88, 93, 98, 101, 105, 107, 108, 110, 111, 112, 113, 115, 117, 118, 135, 137, 138, 142, 146, 147, 150, 152, 155, 187], "delete_timestamp": 29, "deliber": [96, 107, 186], "delimit": [31, 81], "deliv": [12, 53, 108, 129, 186], "deliveri": [53, 60], "delta": 60, "demand": [8, 15, 56, 57, 81, 88, 107, 126, 153], "demo": [60, 156], "demograph": 7, "demon": [2, 5, 7, 9, 10, 11], "demonstr": 20, "demot": [81, 88], "deni": [3, 60, 88, 92, 104, 129, 131, 157], "denial": [58, 126, 131], "denot": 29, "depart": 82, "depend": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 19, 29, 32, 40, 43, 47, 57, 58, 59, 60, 64, 69, 70, 72, 77, 81, 88, 92, 95, 114, 116, 123, 124, 126, 128, 129, 133, 134, 135, 138, 142, 143, 145, 148, 150, 152, 166, 175, 181, 182, 183, 187], "deploi": [2, 3, 4, 5, 7, 9, 10, 11, 22, 77, 88, 92, 100, 119, 123, 124, 129, 132, 138, 169, 186], "deploy": [3, 28, 60, 65, 77, 88, 91, 95, 97, 99, 100, 109, 119, 123, 127, 130, 132, 133, 134, 135, 138, 148, 162, 169, 186], "deployconfig": [88, 96], "deploydaemon": 96, "deprec": [60, 76, 134, 157, 179, 181, 182, 183, 184, 188], "deprovis": 135, "deriv": [72, 77, 81, 88, 126, 129, 133, 152, 153, 156], "describ": [12, 26, 29, 41, 43, 53, 57, 60, 63, 67, 70, 77, 80, 81, 92, 95, 96, 97, 101, 102, 105, 107, 108, 109, 111, 120, 138, 144, 166], "descript": [2, 15, 16, 17, 28, 53, 57, 81, 82, 92, 94, 110, 112, 116, 123, 130, 132, 133, 156, 160, 164, 174, 187], "design": [2, 12, 28, 45, 53, 63, 72, 81, 86, 109, 119, 133, 145, 148, 172], "desir": [8, 25, 26, 38, 59, 60, 63, 67, 83, 102, 128, 129, 133, 143], "desktop": [15, 28, 32, 50, 64, 72, 81, 88, 93, 101, 119, 127, 132], "desktopshortcut": 92, "despit": [43, 129, 152, 153], "destin": [2, 32, 37, 39, 60, 111, 125, 151, 153], "destruct": 151, "detail": [2, 3, 4, 7, 12, 22, 28, 40, 43, 46, 53, 60, 63, 67, 68, 72, 77, 81, 84, 88, 92, 93, 95, 99, 108, 110, 118, 123, 125, 126, 128, 129, 130, 132, 133, 138, 142, 143, 150, 151, 153, 156, 157, 165, 169, 170, 172, 181, 182, 183, 184, 186, 188], "detect": [14, 15, 38, 46, 58, 59, 60, 65, 66, 69, 70, 71, 81, 82, 83, 88, 96, 106, 128, 130, 153, 154, 156], "detect_ord": 71, "determin": [2, 43, 60, 77, 80, 81, 88, 93, 96, 118, 133, 152, 153], "dev": [60, 65, 67, 88, 124, 134, 150, 164, 188], "develop": [12, 15, 16, 54, 60, 80, 91, 93, 94, 95, 118, 126, 128, 133, 134, 136, 137, 138, 145, 148, 153, 158, 164, 168, 186, 187], "developer_manu": 60, "deviat": 126, "devic": [28, 40, 58, 60, 64, 69, 72, 80, 91, 93, 95, 96, 97, 99, 126, 132, 133, 145], "diagnos": [67, 81, 132, 150, 156, 157, 180], "diagnost": [3, 88], "diagram": [15, 96, 188], "dialect": [7, 60], "dialog": [41, 43, 77, 81, 114, 153, 160], "dialogu": [81, 146], "dictat": 96, "did": [20, 28, 30, 88, 99, 138, 149], "diff": 136, "differ": [2, 3, 5, 7, 15, 22, 25, 28, 29, 31, 32, 40, 46, 55, 56, 57, 58, 59, 60, 64, 66, 69, 77, 80, 81, 85, 88, 92, 93, 95, 96, 98, 99, 112, 113, 120, 126, 128, 129, 133, 135, 137, 138, 141, 146, 150, 151, 152, 153, 156, 157, 159, 180, 187], "differenti": [15, 112, 113], "difficult": [60, 128, 137], "difficulti": [2, 146], "diffus": [15, 175], "digestmail": 156, "digit": 134, "dimens": 60, "diminish": 60, "dir": [23, 28, 93, 133, 138, 147, 156], "dirbkp": 146, "dirbkp_": 140, "direct": [26, 40, 59, 60, 77, 79, 81, 101, 129, 132, 133, 138, 182, 186], "directli": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 25, 26, 28, 32, 40, 48, 53, 55, 57, 60, 63, 69, 81, 92, 93, 96, 101, 106, 108, 111, 128, 129, 133, 135, 138, 147, 148, 149, 153, 156, 160, 161, 174, 188], "directori": [3, 5, 7, 8, 18, 26, 27, 28, 29, 33, 34, 37, 38, 39, 40, 41, 43, 45, 48, 53, 55, 56, 57, 60, 65, 67, 77, 79, 83, 88, 91, 92, 93, 101, 102, 111, 118, 121, 123, 124, 125, 127, 129, 132, 133, 135, 136, 139, 140, 142, 143, 144, 146, 147, 149, 150, 152, 153, 154, 156, 157], "directory2": 81, "dirti": [60, 67], "disabl": [1, 2, 3, 16, 18, 23, 25, 26, 29, 30, 31, 32, 38, 40, 41, 44, 46, 49, 50, 52, 58, 63, 65, 67, 72, 74, 81, 88, 93, 95, 96, 97, 100, 101, 103, 107, 110, 111, 112, 113, 114, 117, 118, 129, 130, 131, 132, 133, 134, 142, 144, 147, 148, 149, 150, 153, 154, 156, 160, 167, 181, 182, 183, 184], "disable_act": 85, "disable_email": 85, "disable_funct": 130, "disablefreebusi": 112, "disadvantag": [29, 57], "disallow": [3, 60, 88, 127], "disappear": [43, 45, 58, 59, 123], "disapprov": 188, "discard": 116, "disclaim": 43, "disclos": 107, "disconnect": [41, 60, 83], "discontinu": 63, "discourag": [47, 58, 60, 70, 128, 143, 150], "discov": [60, 187], "discover": [7, 10, 77], "discoveri": [59, 60, 65, 70, 77, 88, 110, 133, 139, 166, 171, 172], "discret": [58, 186], "discuss": [12, 22, 43, 93, 119, 183, 186], "disk": [3, 28, 39, 44, 60, 85, 88, 93, 96, 129, 132, 138, 152, 153, 160, 162, 163, 164, 165, 182], "dispar": 7, "dispatch": [88, 114], "displai": [15, 28, 43, 46, 47, 51, 53, 60, 63, 64, 66, 75, 76, 77, 79, 81, 82, 83, 85, 88, 94, 95, 96, 97, 98, 110, 111, 112, 114, 116, 118, 128, 129, 137, 150, 151, 153, 156, 157, 160], "display_nam": 157, "displaynam": [75, 76, 81, 82, 111, 112, 151, 154, 157, 187], "displaynamescop": 77, "disregard": 138, "disrupt": 148, "dist": [51, 101], "distinct": [48, 77, 88, 107, 111, 187], "distinguish": [46, 60, 88], "distribut": [26, 27, 38, 45, 48, 51, 56, 58, 59, 70, 81, 88, 91, 93, 95, 96, 119, 123, 126, 129, 130, 131, 133, 134, 137, 138, 143, 148, 150, 153, 162, 169], "distro": [38, 60, 96, 131, 133, 138, 145], "dive": 28, "diverg": 151, "divid": 60, "dmz": [88, 127], "dn": [59, 81, 82, 83, 96, 143, 160, 172, 180], "dnextcloud": 22, "dnf": 123, "do": [0, 2, 3, 4, 5, 7, 9, 10, 14, 15, 16, 19, 20, 22, 25, 26, 28, 32, 40, 43, 47, 51, 53, 56, 58, 59, 60, 63, 64, 69, 70, 72, 80, 81, 82, 85, 88, 92, 93, 95, 96, 98, 101, 102, 107, 117, 118, 120, 123, 124, 126, 128, 129, 131, 132, 133, 134, 138, 141, 142, 143, 144, 146, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 166, 173, 180, 181, 182, 183, 185, 186, 187, 188], "do_not_schedule_reboot": 92, "doc": [15, 60, 93, 99, 119, 124, 134, 152, 159, 166, 167, 168, 169, 170, 171, 183], "docker": [3, 4, 5, 7, 8, 11, 15, 40, 56, 60, 69, 81, 88, 97, 99, 100, 130, 132, 133, 148, 150, 152, 160, 161, 162, 169, 172, 180, 187], "docker_aio": 96, "docker_instal": [95, 97], "docker_local_sock": [97, 98], "docker_socket_port": 97, "dockerfil": 8, "dockersocketproxi": 96, "docservic": [163, 165], "doctrin": 60, "document": [1, 2, 3, 12, 22, 23, 26, 29, 31, 32, 35, 40, 43, 45, 47, 51, 56, 59, 60, 62, 64, 67, 70, 88, 92, 93, 96, 102, 109, 117, 118, 119, 123, 125, 126, 128, 129, 130, 132, 133, 134, 137, 138, 144, 145, 150, 152, 153, 154, 156, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 171, 172, 173, 174, 175, 182, 183, 187, 188], "document_root": 129, "documentation_url": 88, "documentroot": [123, 133, 138], "documentserv": [160, 163, 164, 165], "documentserver_": [163, 165], "documentserverurl": 160, "docx": [161, 168], "doe": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 20, 22, 28, 29, 31, 32, 33, 36, 38, 40, 43, 45, 48, 53, 55, 56, 57, 58, 59, 60, 63, 65, 66, 68, 69, 75, 76, 77, 81, 85, 88, 92, 95, 96, 97, 98, 101, 108, 109, 113, 116, 117, 118, 120, 124, 126, 128, 129, 131, 132, 133, 137, 138, 141, 142, 144, 146, 148, 149, 150, 152, 153, 156, 157, 162, 173, 180, 183, 186, 188], "doesn": [18, 22, 28, 76, 81, 118, 123, 129, 147, 172, 188], "doesnotexist": 149, "doku2md": 18, "dokuwiki": 88, "dokuwiki2markdown": 18, "dollar": 81, "dom": [56, 63, 130], "domain": [2, 31, 38, 41, 48, 52, 55, 57, 60, 65, 70, 88, 95, 124, 127, 133, 149, 166, 172, 184], "don": [6, 14, 26, 31, 44, 45, 56, 57, 59, 60, 62, 63, 81, 88, 95, 112, 118, 129, 131, 133, 137, 140, 142, 149], "done": [1, 3, 4, 15, 17, 18, 40, 57, 60, 62, 63, 68, 75, 76, 81, 82, 96, 98, 123, 124, 133, 143, 144, 147, 151, 152, 159, 166, 180, 184, 187], "dora": 157, "dot": [8, 38, 40, 50, 95, 96, 129, 138, 181, 187], "doubl": [12, 60, 138], "dow": 56, "down": [3, 40, 59, 88, 93, 112, 113, 116, 118, 132, 188], "downgrad": [88, 147, 148], "download": [4, 5, 6, 16, 26, 28, 38, 41, 56, 60, 69, 85, 88, 89, 93, 96, 100, 101, 106, 108, 110, 111, 121, 123, 125, 126, 133, 136, 138, 141, 142, 143, 144, 148, 149, 152, 153, 156, 159, 160, 162, 166, 167], "downsid": [48, 180], "downstream": [5, 12, 15], "downtim": 81, "dozen": 168, "draft": [2, 3, 5, 7, 118, 138, 153], "draw": [2, 58], "drawback": [32, 133], "drawn": 60, "drive": [26, 60, 132], "driven": [40, 133], "driver": [6, 22, 60, 96, 99, 128], "droid": 60, "drop": [3, 22, 46, 58, 63, 88, 124, 126, 138, 146, 151, 163, 165, 185, 188], "drop_account": 108, "dropbox": 93, "dropdown": [40, 43, 85], "dry": [148, 151, 152, 153], "dsheurist": 81, "dsnap": 124, "dsp": [95, 96, 97], "dst_path": 98, "duckduckgo": [2, 174], "due": [2, 4, 12, 26, 38, 47, 49, 55, 60, 64, 71, 81, 88, 93, 99, 101, 110, 126, 129, 132, 138, 142, 151, 153, 156, 157, 160, 170], "dummi": 147, "dump": [88, 140, 143], "duplic": [3, 11, 88, 114, 129, 138, 156], "durat": [60, 93], "dure": [3, 4, 16, 26, 28, 29, 32, 40, 45, 46, 56, 57, 60, 81, 84, 88, 92, 96, 99, 123, 129, 132, 133, 141, 143, 147, 152, 156, 163, 164, 165, 182, 183], "dutch": 4, "dynam": [23, 60, 82, 93, 132, 182], "e": [1, 2, 5, 8, 12, 15, 18, 19, 20, 22, 23, 26, 28, 31, 32, 34, 40, 48, 51, 53, 54, 55, 56, 57, 58, 59, 60, 63, 64, 67, 68, 69, 72, 73, 77, 78, 80, 81, 82, 83, 93, 95, 96, 97, 98, 99, 101, 106, 107, 108, 111, 112, 113, 114, 116, 118, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 163, 164, 165, 166, 167, 170, 175, 186, 187, 188], "e2e": 28, "eacceler": 138, "each": [1, 2, 3, 6, 9, 14, 15, 28, 29, 32, 40, 43, 44, 55, 56, 57, 58, 60, 64, 67, 69, 77, 81, 85, 93, 95, 96, 99, 101, 108, 110, 114, 116, 120, 130, 132, 133, 138, 148, 150, 152, 153, 155, 156, 157, 160, 162, 163, 180, 186, 187, 188], "ear": 1, "earli": [12, 81], "earlier": [57, 60, 81, 123, 138, 186], "eas": [60, 186], "easi": [56, 59, 60, 63, 83, 85, 133, 144, 145, 169, 187], "easier": [55, 60, 93, 118, 132, 133, 144], "easiest": [22, 58, 60, 63, 101, 126, 133, 138, 146, 148], "easili": [15, 41, 60, 63, 64, 133, 144, 145, 171, 188], "east": [48, 60], "easycron": 57, "ecdsa": 155, "echo": [15, 156, 163, 165, 167, 187], "ecosystem": [12, 54, 58, 95, 119, 185], "ed": 55, "edg": [15, 43, 116, 134], "edit": [2, 11, 22, 32, 33, 41, 43, 45, 56, 65, 77, 81, 82, 85, 87, 88, 110, 112, 121, 129, 132, 133, 137, 138, 140, 148, 150, 156, 158, 160, 161, 163, 167, 168, 169, 186, 188], "editor": [60, 85, 88, 112, 161], "edri": [60, 126], "edu": 60, "eff": [60, 126], "effect": [15, 41, 58, 59, 60, 77, 81, 92, 93, 96, 106, 131, 132, 147, 153, 180, 187], "effici": [8, 60, 132, 134], "effort": [12, 186], "efss": 135, "eg": [52, 150], "egress": 124, "ehlo": 63, "eicar": 56, "eicar_hdb": 56, "either": [1, 3, 5, 8, 14, 26, 42, 50, 54, 59, 60, 63, 81, 85, 93, 95, 96, 101, 123, 125, 129, 133, 135, 137, 142, 147, 148, 153, 156, 186, 188], "ej39ityzeuh5bgwdrufi": 48, "elasticsearch": 143, "elect": 81, "element": [17, 75, 76, 151], "elig": 77, "elimin": [81, 120], "els": [14, 81, 96, 111, 132, 133, 137], "elseif": 96, "elsewher": [58, 60, 96, 129], "email": [2, 41, 43, 60, 61, 65, 74, 77, 78, 81, 82, 88, 108, 110, 111, 112, 114, 116, 119, 153, 156, 157, 160, 175], "email_address_changed_by_admin": 85, "email_configur": 60, "emailscop": 77, "emailtempl": [60, 63], "emb": [60, 64, 159], "embed": [3, 65, 88, 126, 156, 160, 182, 183, 184], "embrac": [133, 145], "emf": [60, 180], "emit": 150, "emoji": [2, 23, 134, 140, 146, 151], "emot": 11, "emploi": [3, 8, 72, 81, 86, 119, 186], "employe": [12, 187], "empti": [3, 22, 27, 29, 58, 60, 65, 67, 69, 76, 77, 81, 82, 85, 88, 92, 96, 107, 110, 133, 138, 142, 143, 153, 187, 188], "en": [2, 7, 8, 60, 66, 123, 134, 156, 157], "en_u": [60, 66], "enabl": [1, 2, 3, 6, 8, 15, 18, 19, 20, 21, 22, 25, 29, 31, 38, 39, 41, 42, 43, 46, 47, 49, 54, 57, 58, 59, 64, 65, 67, 68, 70, 72, 73, 74, 77, 81, 83, 87, 88, 91, 92, 93, 94, 95, 96, 100, 101, 106, 110, 111, 112, 113, 114, 116, 117, 118, 123, 124, 127, 129, 130, 134, 137, 138, 140, 142, 144, 147, 148, 149, 153, 154, 160, 161, 162, 164, 166, 167, 168, 169, 170, 172, 175, 178, 180, 181, 182, 184, 187, 188], "enable_cli": 150, "enable_encrypt": 28, "enable_lazy_object": 88, "enable_mail_link_password_expir": 88, "enable_non": 88, "enable_oc_cli": 156, "enable_preview": [47, 88, 126], "enable_shar": 153, "enable_share_accept": 88, "enable_share_mail": 88, "enablecalendarfeder": 112, "enabledefaultcontact": 113, "enabledpreviewprovid": [47, 88, 126, 132, 180, 181], "encapsul": 129, "encf": 131, "encod": [22, 29, 31, 46, 48, 65, 82, 83, 88, 129, 147, 152], "encount": [2, 3, 41, 50, 60, 118, 130, 137, 138, 142], "encourag": [86, 126, 133, 186], "encrypt": [31, 32, 40, 41, 45, 46, 65, 81, 85, 88, 107, 110, 126, 127, 129, 139, 143, 150, 153, 156, 157, 172, 178], "end": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 28, 29, 51, 60, 81, 88, 112, 120, 123, 129, 132, 143, 144, 148, 150, 151, 157, 160, 163, 165, 180], "end_header_id": 5, "endeavor": 119, "endedat": 14, "endedbefor": [14, 156], "endpoint": [2, 15, 31, 35, 36, 48, 52, 58, 60, 68, 70, 76, 77, 87, 88, 96, 113, 138, 143, 147, 155, 156, 166, 180, 187, 188], "energi": [5, 6, 7, 8, 11, 88, 90], "enforc": [9, 22, 41, 43, 50, 60, 63, 64, 72, 74, 77, 81, 86, 88, 95, 110, 112, 123, 126, 129, 137, 153, 156, 159, 178, 187], "enforce_home_folder_naming_rul": 81, "enforce_them": 88, "engin": [22, 56, 96, 99, 101, 132, 134, 140, 146, 156, 164, 186, 188], "english": [2, 4, 5, 7, 8, 9, 10, 11, 60, 66], "enhanc": [8, 16, 45, 58, 60, 70, 81, 86, 119, 132], "enlarg": 64, "enough": [0, 1, 4, 11, 26, 59, 60, 81, 93, 99, 112, 126, 132, 138, 166, 170, 182], "ensembl": 3, "ensur": [8, 12, 16, 22, 26, 28, 38, 44, 52, 53, 55, 57, 59, 60, 67, 69, 70, 81, 88, 92, 93, 95, 107, 108, 112, 114, 116, 124, 127, 129, 130, 132, 133, 134, 137, 138, 142, 143, 150, 151, 152, 153, 157, 159, 172], "enter": [18, 22, 26, 28, 31, 32, 33, 34, 36, 37, 38, 41, 43, 45, 60, 63, 68, 78, 79, 81, 85, 92, 93, 116, 124, 125, 126, 128, 133, 145, 147, 152, 157], "enterpris": [12, 22, 56, 72, 119, 121, 122, 123, 126, 133, 134, 138, 156, 168, 185, 186], "entir": [3, 5, 6, 7, 9, 10, 11, 12, 18, 40, 43, 58, 67, 77, 92, 117, 121, 138, 140, 147, 186], "entri": [1, 22, 38, 40, 41, 53, 58, 59, 60, 69, 81, 83, 88, 107, 111, 112, 113, 114, 124, 129, 132, 133, 135, 137, 138, 142, 143, 144, 147, 149, 151, 153, 156, 160, 175, 180], "entrypoint": [58, 171], "entryuuid": 154, "enumer": [77, 113, 179], "env": [4, 96, 97, 98, 126, 133, 157], "env_nam": 98, "env_valu": 98, "envelop": 88, "environ": [3, 4, 8, 12, 22, 26, 43, 58, 65, 70, 81, 88, 92, 93, 96, 98, 100, 118, 119, 126, 129, 130, 132, 134, 138, 140, 142, 143, 145, 146, 147, 148, 156, 157, 160, 162, 169, 184, 186], "eof": 63, "eot_id": 5, "epel": [56, 123], "epoch": 134, "equal": [8, 29, 47, 60, 96], "equival": [40, 49, 59, 60, 81, 132, 156], "eras": 93, "erasur": [88, 107], "err": 4, "error": [3, 4, 7, 14, 26, 40, 53, 56, 59, 60, 67, 69, 80, 81, 88, 92, 98, 99, 110, 118, 121, 123, 126, 128, 130, 131, 132, 133, 136, 139, 142, 143, 147, 149, 150, 151, 153, 156, 172, 183, 188], "error_log": [60, 67, 93, 138], "error_messag": 14, "error_success_reboot_requir": 92, "errorlog": [60, 88, 156], "escal": 54, "escap": [63, 92, 187], "esmtp": 63, "especi": [28, 57, 58, 77, 81, 96, 102, 133, 136, 138, 142, 143, 144, 148, 180, 187], "esperanto": 4, "essenti": [8, 60, 68, 81, 132, 138, 188], "establish": [41, 43, 55, 63, 77, 88, 93, 130, 134, 153, 154], "estim": [4, 132], "esx": 133, "etag": [40, 129, 156, 187], "etc": [3, 8, 12, 15, 22, 25, 43, 48, 56, 57, 59, 60, 67, 69, 77, 81, 85, 96, 111, 123, 124, 126, 128, 129, 130, 131, 133, 138, 143, 144, 152, 153, 157, 160, 163, 164, 166, 167, 170, 172, 174, 178, 180, 187, 188], "ethic": [5, 13, 88], "eu": [13, 31, 48, 88, 153], "euc": 71, "euro": [160, 161, 162, 163, 164, 165, 168], "eurooffic": [160, 164], "europ": [60, 67, 117, 149], "eval": 150, "evalu": [67, 77, 186, 187], "even": [1, 3, 16, 20, 22, 26, 31, 32, 38, 48, 58, 59, 60, 69, 77, 81, 88, 95, 96, 98, 101, 107, 112, 114, 126, 129, 131, 133, 138, 142, 146, 148, 186], "event": [2, 12, 23, 40, 53, 60, 67, 81, 88, 93, 107, 110, 111, 114, 115, 116, 126, 128, 150, 153, 156, 188], "eventfilt": 187, "eventu": 107, "everi": [3, 5, 15, 22, 32, 38, 40, 44, 48, 49, 54, 55, 56, 57, 59, 60, 63, 67, 68, 69, 80, 81, 85, 93, 96, 108, 110, 112, 113, 114, 119, 123, 132, 134, 143, 144, 147, 148, 150, 152, 153, 156, 174, 175, 184, 186, 187, 188], "everybodi": 138, "everyon": [18, 52, 77, 80, 119, 154, 186], "everyth": [59, 60, 63, 65, 81, 88, 92, 133, 138, 186, 188], "everywher": [81, 175], "evict": 60, "ex": [2, 92, 93, 95, 144, 150], "ex_app_port": 96, "exact": [38, 57, 60, 70, 77, 81, 147, 187], "exactli": [48, 123, 132, 148], "examin": [12, 83], "exampl": [0, 1, 2, 3, 4, 5, 7, 8, 12, 14, 15, 16, 18, 20, 22, 26, 28, 32, 33, 34, 35, 38, 40, 41, 43, 45, 47, 48, 50, 51, 53, 55, 56, 57, 59, 63, 64, 65, 68, 72, 77, 79, 81, 83, 85, 87, 88, 93, 94, 95, 96, 98, 104, 115, 116, 118, 121, 126, 127, 128, 129, 131, 133, 135, 136, 137, 138, 140, 142, 147, 148, 149, 150, 153, 154, 155, 156, 157, 160, 169, 171, 172, 178, 186, 187], "exapp": [1, 2, 3, 5, 7, 9, 10, 11, 15, 88, 94, 97, 99, 181, 182, 183], "exapp_direct": 97, "exapphost": 96, "exce": [4, 44, 49, 60, 85, 132, 153, 183], "exceed": [26, 44, 49, 60, 151, 153], "excel": 59, "except": [59, 60, 67, 76, 80, 81, 92, 129, 132, 137, 142, 143, 147, 150, 156], "excerpt": 93, "excess": [111, 132], "exchang": [0, 5, 7, 41, 63, 178], "excim": 60, "exclud": [43, 60, 65, 77, 80, 88, 93, 102, 156, 157], "exclus": [36, 40, 48, 58, 60, 70, 93, 96, 138, 153], "exec": [4, 15, 40, 142, 152, 187], "execcondit": 57, "execstart": [15, 57, 187], "execut": [1, 3, 4, 6, 8, 15, 19, 25, 38, 41, 53, 56, 57, 60, 67, 70, 81, 88, 92, 96, 104, 116, 126, 129, 131, 137, 142, 147, 148, 150, 151, 154, 160, 187], "exempt": [58, 60], "exhibit": [7, 8, 129], "exif": [130, 153], "exim": 63, "exim4": 63, "exist": [6, 12, 16, 20, 22, 23, 27, 28, 31, 33, 36, 38, 44, 48, 51, 53, 54, 60, 61, 63, 67, 74, 75, 76, 81, 83, 85, 88, 92, 93, 95, 96, 107, 112, 114, 116, 118, 125, 128, 129, 130, 133, 137, 138, 142, 143, 146, 147, 148, 149, 151, 152, 153, 154, 155, 156, 157, 170, 177, 180, 186, 187, 188], "exit": [92, 124, 152, 153, 156], "expand": [88, 119, 128, 160], "expect": [6, 14, 59, 60, 63, 77, 81, 85, 88, 116, 136, 137, 147, 156, 159, 163, 165, 180, 181, 182, 183, 186], "expedit": 8, "expens": [40, 112], "experi": [4, 16, 57, 65, 88, 113, 116, 119, 126, 132, 134, 138, 172], "experienc": 93, "experiment": [60, 81, 85], "expert": [12, 28, 60, 74, 88, 116], "expertis": [138, 186], "expir": [2, 32, 41, 44, 46, 49, 57, 58, 60, 65, 81, 86, 88, 93, 106, 107, 112, 116, 129, 187], "expiri": [44, 81, 107], "explain": [38, 56, 65, 88, 108, 111, 119, 123, 130], "explan": 40, "explicit": 114, "explicitli": [5, 14, 29, 49, 59, 60, 67, 69, 77, 87, 92, 106, 128, 129, 138, 150, 153, 157, 160, 178], "explod": [60, 96], "explor": [12, 92], "exponenti": 126, "export": [52, 60, 88, 93, 108, 111, 116, 126, 149, 150, 157, 188], "expos": [2, 28, 40, 41, 52, 56, 60, 77, 88, 95, 96, 97, 126, 128, 130, 138, 162], "exposur": [77, 107, 126, 138], "express": [60, 69, 101, 187, 188], "ext4": 38, "extapp": 159, "extend": [2, 8, 43, 60, 63, 107, 111, 119, 134, 173, 186], "extendedsupport": 156, "extens": [3, 22, 51, 59, 60, 63, 65, 67, 70, 88, 90, 92, 111, 118, 119, 123, 126, 129, 130, 132, 133, 138, 143, 145, 153, 179, 180, 181, 186], "extern": [2, 3, 5, 6, 7, 9, 10, 11, 15, 31, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47, 57, 60, 65, 68, 81, 84, 85, 87, 88, 100, 102, 108, 110, 112, 126, 130, 131, 132, 134, 135, 142, 143, 149, 150, 152, 156, 157, 160, 164, 180, 187, 188], "external_db": 3, "external_storag": 88, "externalapp": 3, "externaldr": 152, "extra": [12, 16, 56, 60, 72, 81, 99, 123, 124, 137, 142, 152, 163], "extra_fil": 137, "extract": [1, 3, 29, 60, 96, 123, 125, 129, 147, 156], "extrem": [58, 70, 128, 132], "extstoragemount": 61, "f": [2, 4, 8, 15, 53, 57, 60, 67, 99, 112, 140, 142, 146, 148, 151, 153, 156, 187], "f12": [93, 138], "f1c5e2630d784bc9cb02d5a28f55d6f24d06dae2a0fee685f3": 137, "f6": 55, "fa829794448eaffbc9a04a29d216": 137, "face": [7, 9, 12, 14, 15, 77, 88, 92, 129], "facebook": 60, "facebook100000123456789": 60, "facilit": [80, 132, 186], "fact": 126, "facto": 69, "factor": [4, 8, 15, 26, 58, 73, 74, 88, 118, 126, 132, 150], "factori": 60, "fail": [3, 14, 16, 26, 38, 41, 58, 59, 60, 67, 69, 75, 76, 78, 81, 88, 92, 93, 99, 107, 110, 112, 121, 126, 130, 137, 138, 145, 147, 150, 151, 152, 153, 155, 156, 157, 180], "fail2ban": [65, 88, 127], "failov": [60, 81], "failover_distribut": 60, "failover_error": [59, 60], "failover_mod": [59, 60], "failover_non": 60, "failregex": 126, "failur": [60, 75, 76, 88, 93, 99, 138, 143, 150], "fair": [88, 139], "fairli": 93, "fall": [25, 26, 38, 60, 114, 128, 129], "fallback": [51, 67, 129, 160, 174], "fallen": 156, "fals": [2, 3, 5, 6, 7, 8, 9, 10, 11, 16, 30, 41, 47, 48, 53, 58, 59, 60, 63, 67, 77, 81, 85, 96, 97, 112, 116, 118, 126, 128, 132, 138, 140, 148, 149, 151, 152, 156, 164, 167, 180, 187], "familiar": [60, 133], "faq": [3, 70, 88, 100, 133, 138, 139, 145], "far": [2, 15, 85, 116, 186], "farsi": 4, "fast": [5, 63, 116, 149], "fastcgi": [124, 129, 133], "fastcgi_buff": 129, "fastcgi_connect_timeout": 129, "fastcgi_hide_head": 129, "fastcgi_intercept_error": 129, "fastcgi_max_temp_file_s": 129, "fastcgi_param": [126, 129], "fastcgi_pass": 129, "fastcgi_path_info": 129, "fastcgi_read_timeout": [26, 129, 132], "fastcgi_request_buff": 129, "fastcgi_script_nam": 129, "fastcgi_send_timeout": 129, "fastcgi_split_path_info": 129, "faster": [0, 3, 7, 11, 15, 59, 88, 127, 133, 186], "fastest": 132, "fat": 38, "fatal": [60, 67, 121, 156], "fault": 26, "faulti": 63, "favicon": [72, 156], "favor": 60, "favorit": 186, "fb": 55, "fcgid": 133, "fcgidmaxrequestinmem": 26, "fcgidmaxrequestlen": 26, "fcontext": [123, 131], "fd00": 126, "fd9e": 60, "fe80": [60, 128], "featur": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 29, 38, 40, 43, 50, 57, 58, 60, 62, 63, 70, 72, 77, 81, 83, 88, 108, 110, 112, 113, 115, 116, 118, 120, 123, 126, 130, 132, 133, 134, 138, 150, 153, 156, 166, 169, 173, 177, 183, 186, 187], "februari": 26, "feder": [18, 43, 46, 65, 70, 77, 88, 110, 111, 113, 114, 115, 126, 150, 155, 156], "fedivers": [77, 81, 110], "fediversescop": 77, "fedora": [59, 132, 133, 150], "fee": 111, "feedback": [5, 7, 9, 10, 15, 147, 160, 186, 187], "feel": [72, 96], "fell": 156, "fetch": [2, 16, 60, 81, 82, 124, 146, 148, 154, 159, 164, 188], "few": [32, 41, 58, 60, 81, 85, 97, 116, 132, 133, 142, 147, 148], "fewer": 107, "ff5733": 151, "ffmpeg": [47, 60, 130], "ffprobe": 60, "ffri": 69, "fidel": [161, 168], "field": [1, 14, 16, 29, 31, 32, 33, 34, 35, 36, 37, 40, 41, 56, 60, 65, 74, 75, 81, 82, 85, 88, 95, 96, 108, 110, 111, 126, 128, 133, 138, 154, 156, 186, 187, 188], "figur": 148, "file": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 22, 23, 32, 33, 34, 37, 41, 47, 48, 49, 50, 51, 55, 57, 58, 59, 61, 63, 65, 68, 69, 72, 77, 79, 81, 85, 91, 92, 96, 98, 99, 104, 106, 108, 111, 112, 113, 114, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 133, 135, 136, 137, 139, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 160, 161, 164, 167, 170, 174, 175, 179, 182, 183, 184, 185], "filecach": [19, 25, 40, 51, 60, 88, 144, 156], "fileformat": 187, "fileid": [60, 156, 159, 187], "fileinfo": [130, 138], "filekei": [29, 88], "filelist": 38, "filelock": 88, "filenam": [28, 29, 46, 48, 60, 88, 93, 110, 146, 149, 156, 181], "filepart": 60, "filepath": [34, 131, 133, 149], "files_accesscontrol": 3, "files_antiviru": [56, 88, 93], "files_encrypt": [28, 29, 152], "files_extern": [3, 38, 40, 60, 88, 149], "files_external_allow_create_new_loc": 88, "files_no_background_scan": [88, 153], "files_pdfview": 147, "files_shar": [41, 60, 85, 149, 156], "files_texteditor": 17, "files_trashbin": [29, 49, 153, 187], "files_vers": [18, 29, 44, 153], "filesbytyp": [52, 60], "filescan": 57, "filesmatch": 133, "filesync": 17, "filesystem": [17, 26, 28, 38, 44, 45, 48, 60, 81, 88, 92, 131, 153, 157, 187], "filesystem_cache_readonli": 88, "filesystem_check_chang": [88, 153], "filetyp": [47, 60, 126], "fill": [2, 3, 5, 35, 40, 41, 56, 63, 81, 85, 95, 96, 108, 112, 116, 128, 188], "filter": [13, 16, 17, 44, 58, 60, 77, 81, 82, 85, 88, 130, 132, 151, 153, 154, 156, 157, 172, 183, 188], "final": [3, 5, 7, 26, 38, 60, 63, 88, 96, 116, 123, 125, 126, 127, 133, 147, 160, 186], "financ": 157, "financi": 138, "find": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 26, 28, 33, 38, 40, 48, 56, 58, 60, 70, 77, 80, 81, 85, 88, 91, 93, 108, 111, 116, 122, 130, 132, 133, 136, 138, 142, 148, 154, 182, 186, 188], "finder": [60, 138], "findtim": 126, "fine": [5, 11, 60, 102, 126, 131, 133, 160, 188], "fingerprint": [88, 143, 146], "finish": [3, 4, 8, 14, 56, 57, 96, 98, 99, 120, 128, 138, 140, 142, 147, 148, 156], "firefox": [134, 157], "firewal": [16, 58, 96, 99, 123, 126, 172, 180], "firm": 107, "first": [4, 20, 22, 25, 27, 28, 32, 44, 48, 56, 58, 60, 62, 81, 82, 83, 84, 85, 92, 93, 96, 98, 99, 101, 111, 112, 113, 114, 118, 120, 123, 125, 126, 129, 132, 133, 135, 136, 137, 138, 142, 143, 144, 145, 148, 150, 151, 152, 154, 155, 156, 161, 163, 165, 181, 186], "first_seen": 157, "fit": [1, 6, 38, 59, 95, 133, 145, 162, 178], "five": [132, 140], "fix": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 26, 28, 57, 58, 70, 88, 96, 114, 129, 130, 132, 134, 136, 138, 139, 156, 186], "fix_pathinfo": 129, "flac": [129, 179, 180], "flag": [53, 60, 83, 84, 97, 132, 149, 150, 152, 156, 157], "flash": 56, "flat": 60, "flexibl": [133, 135, 186], "flight": 155, "flite": 60, "float": [12, 60, 149], "flood": 67, "floor": 132, "flow": [60, 67, 68, 84, 88, 92, 101, 105, 188], "flow_input": 188, "flowchart": 15, "fluentd": 96, "flush": 125, "fn": 114, "focu": [0, 1], "focus": [28, 119, 148, 186], "folder": [2, 7, 8, 16, 20, 26, 27, 31, 33, 34, 38, 39, 41, 43, 44, 46, 48, 49, 60, 65, 69, 72, 81, 82, 83, 88, 93, 94, 96, 102, 104, 123, 124, 129, 131, 133, 137, 138, 141, 142, 147, 153, 156], "follow": [1, 2, 3, 4, 5, 6, 7, 8, 10, 14, 15, 16, 18, 20, 22, 23, 25, 26, 28, 38, 39, 40, 41, 43, 47, 48, 52, 53, 56, 57, 58, 59, 60, 61, 63, 64, 67, 68, 69, 70, 71, 72, 77, 80, 81, 83, 85, 88, 92, 93, 95, 96, 97, 101, 103, 110, 112, 113, 114, 115, 117, 118, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 142, 144, 149, 150, 152, 153, 154, 160, 166, 171, 172, 174, 180, 186, 187, 188], "followsymlink": [123, 133], "font": [60, 88, 129, 163, 164, 165], "fontobject": 129, "foo": [60, 81], "foobar": 76, "food": 6, "foolproof": [60, 132], "footer": 108, "footprint": 107, "forbid": [50, 86, 112], "forbidden": 60, "forbidden_char": 181, "forbidden_filenam": [88, 181], "forbidden_filename_basenam": [50, 88, 181], "forbidden_filename_charact": [50, 88, 181], "forbidden_filename_extens": [50, 88, 181], "forc": [8, 43, 65, 67, 69, 81, 88, 92, 98, 107, 110, 113, 118, 126, 149, 150, 151, 153, 154, 156], "force_languag": [66, 88], "force_local": [66, 88], "force_share_accept": 88, "forceeventalarmtyp": 112, "forcesav": 160, "foreign": 63, "forest": 2, "forev": [49, 60, 156], "forgeri": 126, "forget": [28, 29, 60, 63, 132, 133, 140, 145], "forgot": 80, "form": [56, 60, 81, 87, 88, 95, 99, 111, 123, 128, 138, 188], "formal": [59, 60, 66], "format": [2, 5, 12, 32, 46, 47, 65, 66, 67, 71, 81, 82, 83, 88, 118, 132, 134, 150, 151, 153, 159, 160, 161, 168, 182, 187, 188], "formid": 187, "formsubmittedev": 187, "forum": [70, 119, 138, 147, 148, 186], "forward": [15, 60, 69, 70, 96, 128, 129, 133, 138, 142, 150, 171], "forwarded_for_head": [58, 69, 88], "found": [0, 1, 3, 4, 6, 18, 44, 47, 51, 56, 58, 59, 60, 67, 70, 80, 81, 88, 93, 95, 96, 99, 114, 123, 126, 128, 129, 130, 132, 133, 136, 137, 138, 145, 148, 151, 152, 156, 159, 166, 167, 169, 170, 171, 172, 180, 183, 186], "foundat": 0, "four": [15, 56, 81, 146, 156, 186, 187], "fourth": 186, "fpm": [26, 60, 70, 88, 124, 126, 127, 129, 130, 134], "fr": [60, 66], "frame": [64, 112, 126, 129], "franc": 60, "frank": [75, 76], "franksnewemail": 76, "frankspassword": 76, "fred": [151, 153, 156, 157], "freda": 41, "free": [2, 15, 20, 44, 80, 96, 118, 119, 126, 133, 138, 151, 157], "free_prompt_picker_en": 1, "freebsd": 130, "freebusi": [88, 115], "freed": 153, "freedom": 174, "freeli": [6, 11, 15, 63, 64], "french": [4, 5, 10, 11, 60, 66], "frequenc": [41, 88, 132], "frequent": [13, 56, 59, 60, 88, 107, 138, 186], "fresh": [3, 40, 81, 129, 142, 148, 151, 152], "freshclam": 56, "fridai": 2, "from": [0, 1, 2, 3, 4, 5, 6, 8, 11, 15, 16, 22, 26, 28, 29, 30, 32, 37, 38, 39, 40, 41, 43, 44, 45, 46, 50, 54, 55, 56, 57, 59, 60, 64, 65, 67, 69, 70, 72, 75, 77, 80, 81, 82, 83, 85, 86, 88, 93, 94, 95, 96, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 141, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 163, 164, 165, 166, 168, 172, 174, 175, 180, 181, 182, 183, 184, 186, 187, 188], "front": [2, 3, 5, 7, 8, 9, 10, 11, 13, 88, 118, 129, 162, 169], "front_controller_act": [129, 133], "frontend": [26, 60, 67, 69, 88, 95, 173, 174], "frontend1": 69, "frp": [95, 96, 97], "frp_address": 97, "frpc": [96, 97], "fry": 154, "fss": 96, "ftp": [40, 88, 124, 130, 137], "fulfil": [2, 107, 111, 128, 138], "full": [3, 28, 34, 40, 43, 47, 51, 53, 54, 58, 59, 60, 63, 67, 68, 85, 101, 107, 108, 110, 111, 113, 126, 132, 133, 134, 143, 145, 149, 150, 151, 152, 153, 156, 157, 166, 167, 171, 186, 187], "fulli": [0, 1, 12, 13, 28, 41, 53, 60, 63, 88, 109, 133, 147, 148, 153, 156, 158, 168, 170, 186, 187], "fullscreen": 166, "function": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 29, 39, 45, 54, 60, 63, 64, 67, 77, 87, 88, 92, 95, 96, 102, 106, 116, 119, 126, 130, 131, 133, 134, 135, 138, 142, 143, 148, 159, 170, 172, 186, 188], "fund": 119, "fundament": [60, 70, 81], "further": [22, 43, 46, 48, 53, 59, 60, 63, 67, 70, 76, 77, 81, 88, 93, 108, 111, 123, 127, 133, 142, 144, 145, 169, 186], "furthermor": [29, 59, 60], "fuse": 131, "fusef": [88, 127], "fuserpwdsupport": 81, "futur": [4, 25, 43, 58, 70, 112, 126, 156, 181, 182, 183, 187], "g": [2, 5, 12, 15, 18, 22, 26, 28, 31, 32, 48, 53, 55, 57, 58, 59, 63, 64, 67, 69, 72, 77, 81, 82, 83, 88, 95, 96, 97, 98, 99, 101, 106, 107, 112, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 138, 142, 143, 146, 147, 148, 149, 150, 151, 153, 156, 157, 159, 163, 165, 166, 170, 186, 187, 188], "gain": [3, 14, 126], "galleri": [47, 60, 147, 156], "gap": 147, "garbag": [57, 60], "garbl": 5, "garm": [16, 126], "gatewai": [48, 88, 132, 133], "gather": [81, 138, 180], "gb": [3, 4, 11, 26, 60, 81, 85, 95, 132, 156, 162, 163, 164, 165], "gc_maxlifetim": 60, "gcc": 22, "gd": [47, 123, 125, 130], "gdpr": [88, 106, 107, 108, 110, 111], "gear": 85, "gecko": 67, "gemma": 2, "gender": 7, "gener": [1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 18, 28, 31, 32, 36, 37, 40, 46, 48, 51, 52, 53, 58, 59, 60, 63, 69, 72, 77, 80, 81, 82, 88, 92, 93, 96, 106, 109, 112, 114, 116, 123, 127, 128, 129, 131, 132, 133, 135, 139, 143, 148, 149, 150, 153, 155, 156, 157, 159, 160, 163, 165, 173, 174, 175, 180, 181, 182, 183, 186], "generalizedtim": 81, "generate_font": 164, "genr": [15, 88], "geo": 129, "german": [4, 5, 60, 66], "germani": [2, 60], "get": [1, 2, 13, 16, 22, 26, 28, 29, 32, 38, 46, 47, 51, 60, 62, 67, 69, 80, 81, 82, 92, 105, 123, 124, 126, 129, 131, 133, 134, 136, 137, 138, 142, 147, 150, 152, 157, 160, 163, 165, 166, 169, 172, 175, 180, 188], "get_lin": 63, "getctag": 187, "getenv": [60, 65, 88, 133], "getpath": [136, 149], "gguf": [5, 12], "ghcr": [96, 132, 164], "gib": 26, "gid": 157, "gidnumb": [82, 154], "gif": [60, 98, 129, 174, 175], "giphi": [174, 175], "git": [7, 8, 136], "github": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 29, 56, 59, 60, 63, 81, 93, 119, 126, 129, 132, 133, 136, 145, 163, 165, 174, 175, 180, 183, 186], "githubusercont": 126, "gitlab": [174, 175], "give": [1, 2, 15, 31, 32, 40, 45, 56, 61, 70, 73, 81, 88, 103, 107, 108, 110, 124, 131, 133, 137, 147, 155, 156, 186], "given": [2, 29, 40, 51, 57, 58, 60, 63, 64, 66, 80, 81, 82, 96, 101, 105, 118, 126, 133, 138, 152, 153, 156, 157, 159, 160, 180], "givennam": [82, 154], "glanc": 132, "global": [32, 53, 60, 65, 67, 81, 88, 96, 112, 116, 117, 119, 129, 150, 153, 157, 175], "gmail": 116, "gmbh": [12, 16, 72, 102, 119, 126, 133, 138, 186], "gmp": [125, 130], "gnu": [6, 22], "go": [2, 3, 6, 16, 28, 40, 41, 43, 54, 56, 58, 60, 61, 64, 69, 80, 81, 92, 95, 96, 97, 108, 112, 123, 125, 132, 136, 142, 143, 147, 166, 186, 188], "goal": [28, 77, 81, 92, 133], "goe": [14, 85, 96, 144], "gold": [7, 10], "gone": [85, 88, 138], "good": [1, 2, 4, 5, 20, 56, 59, 63, 81, 126, 132, 133, 142, 148, 186], "googl": [2, 15, 60, 72, 80, 88, 134, 174], "got": [2, 18, 102, 186], "govern": 77, "gpg": [88, 123, 125, 127, 167], "gpt": [1, 175], "gpu": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 95, 96, 97, 99], "grab": 123, "grace": 81, "gracefulli": 128, "gradual": 48, "grain": [131, 160, 188], "granit": 15, "grant": [22, 53, 54, 74, 81, 88, 111, 118, 123, 125, 133, 156], "graph": [15, 60], "graphic": [1, 15, 47, 92, 95, 121, 133], "great": 123, "greater": [60, 88], "greatli": [3, 133, 134], "green": [5, 15, 40, 41, 81, 88, 89, 160], "grep": [3, 15, 20, 56, 59, 99, 130, 132, 133, 187], "groceri": 2, "groqcloud": [0, 15], "group": [2, 6, 16, 31, 33, 34, 36, 38, 43, 46, 54, 56, 59, 60, 64, 67, 74, 80, 82, 83, 87, 88, 110, 111, 113, 118, 133, 149, 150, 151, 153, 156, 160, 172, 187], "group1": 76, "group2": 76, "group_admin": 53, "group_everyon": 88, "groupfold": [28, 48, 102, 153], "groupid": [75, 76, 81, 157], "groupofnam": 154, "groupwar": [111, 112, 113, 116, 138], "grow": [88, 96, 119, 132], "growth": [53, 132], "gt": 187, "gte": 187, "guacamol": 2, "guarante": [0, 1, 5, 12, 14, 45, 49, 59, 60, 77, 107, 187], "guard": 132, "guess": 58, "guest": [16, 88], "gui": [3, 32, 66, 92, 132], "guid": [23, 28, 60, 63, 92, 95, 116, 119, 123, 125, 126, 130, 132, 133, 146, 152, 156, 163, 165, 169, 170, 177, 178, 183], "guidanc": [28, 88, 109, 110, 111, 119, 127, 128, 130, 132, 133], "guidelin": 129, "guooq": 157, "guzzl": 60, "gz": [60, 118], "gzip": [118, 129], "gzip_comp_level": 129, "gzip_min_length": 129, "gzip_proxi": 129, "gzip_typ": 129, "gzip_vari": 129, "h": [17, 22, 56, 60, 67, 75, 76, 77, 82, 96, 126, 133, 140, 146, 150], "h2non": 60, "ha": [3, 5, 7, 9, 10, 12, 14, 15, 16, 19, 26, 28, 29, 32, 38, 40, 41, 43, 47, 48, 51, 53, 54, 56, 57, 58, 60, 63, 64, 66, 67, 68, 70, 77, 80, 81, 85, 88, 93, 95, 96, 97, 101, 106, 110, 111, 112, 114, 116, 117, 118, 120, 123, 126, 128, 131, 132, 133, 135, 137, 138, 143, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 163, 165, 166, 170, 178, 183, 185, 186, 187, 188], "hackeron": [12, 28], "had": [29, 53, 60, 92, 178, 180, 183], "half": 32, "hallucin": [5, 8], "halt": 60, "hamm": 83, "hand": [102, 186], "handl": [1, 2, 8, 20, 29, 40, 47, 58, 60, 64, 65, 67, 69, 79, 88, 92, 93, 94, 96, 108, 110, 112, 116, 126, 129, 130, 132, 138, 151, 153, 171, 172, 187], "handle_all_url": 55, "handler": [63, 88, 160], "hanson": 154, "hansson": 133, "happen": [25, 28, 40, 43, 48, 58, 60, 80, 81, 82, 101, 112, 116, 129, 137, 138, 143, 147, 166, 187, 188], "happi": [14, 31, 48], "haproxi": [88, 95, 96, 129], "haproxy_host": 96, "haproxy_password": [96, 97], "haproxypass": 96, "hard": [26, 43, 64, 126], "hardcod": [126, 129], "harden": [60, 88, 127, 128, 130], "harder": 58, "hardest": 56, "hardwar": [1, 3, 4, 13, 15, 28, 88, 95, 99, 132, 133, 143], "harp": [88, 97, 99, 100], "harp_docker_socket_port": 97, "harp_exapp_direct": 97, "harp_frp_address": 97, "harp_proxy_dock": 97, "harp_proxy_host": 97, "harp_shared_kei": 97, "has_internet_connect": 88, "hash": [29, 65, 81, 82, 86, 88, 110, 130, 137, 187, 188], "hash_equ": 29, "hash_hmac": 29, "hashing_default_password": 88, "hashingcost": 88, "hashingmemorycost": 88, "hashingthread": 88, "hashingtimecost": 88, "hashtag": 175, "hasmemberoffiltersupport": 82, "hasn": [60, 66], "haspagedresultsupport": 82, "hat": [59, 133, 134], "hauptbahnhof": 2, "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 22, 25, 26, 28, 29, 30, 32, 33, 34, 38, 40, 41, 43, 47, 48, 50, 51, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 77, 78, 80, 81, 83, 85, 88, 91, 92, 93, 95, 96, 97, 99, 101, 103, 105, 107, 108, 112, 113, 114, 116, 118, 123, 124, 126, 128, 129, 131, 132, 133, 134, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 166, 167, 170, 171, 172, 174, 176, 180, 182, 186, 187, 188], "haveibeenpwnd": 86, "hbegin": 29, "hdr": 60, "head": [58, 68, 70, 123], "header": [2, 17, 26, 29, 30, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 82, 87, 88, 96, 127, 128, 129, 132, 133, 138, 156, 160, 164, 180, 183, 188], "headless": 121, "headlin": [1, 77, 81], "headlinescop": 77, "headroom": 132, "health": [99, 163, 164, 165], "healthcheck": [163, 164, 165], "healthi": [99, 138], "heartbeat": [60, 88], "heartbeat_count": 99, "heavi": [0, 1, 19, 45, 59, 96, 130], "heavili": [58, 60], "heic": [60, 132, 133], "heif": [60, 133], "height": 60, "held": [88, 111], "hello": [1, 63], "helm": 133, "help": [2, 3, 4, 8, 14, 28, 29, 58, 59, 60, 63, 67, 81, 88, 93, 101, 102, 106, 109, 110, 112, 113, 118, 119, 123, 131, 132, 133, 136, 138, 142, 146, 147, 148, 150, 152, 156, 160, 186], "helper": [15, 106, 128], "henc": [80, 150], "hend": 29, "her": 2, "here": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 18, 20, 22, 28, 31, 43, 56, 60, 63, 67, 68, 69, 81, 91, 95, 96, 116, 118, 126, 128, 129, 132, 133, 148, 150, 174, 188], "hetzner": 12, "heurist": [56, 70], "hex": 151, "hexadecim": 29, "hf_model_path": 11, "hidden": [43, 77, 81, 88, 93, 112, 118, 126, 129, 138, 160], "hide": [38, 60, 77, 88, 106, 117, 118, 129, 160], "hide_absence_set": 117, "hide_disabled_user_shar": 85, "hide_login_form": 88, "hideeventexport": 112, "hierarch": 88, "hierarchi": 40, "high": [4, 5, 6, 7, 11, 12, 15, 22, 26, 28, 38, 53, 56, 57, 111, 116, 126, 132, 133, 134, 135, 161, 168, 182, 186], "highcontrast": 60, "higher": [2, 5, 6, 7, 9, 11, 26, 45, 60, 63, 110, 113, 144, 186], "highest": [2, 81, 132, 148, 186], "highli": [58, 60, 70, 81, 118, 119, 126, 128, 130, 132, 137, 159, 169, 186], "highlight": [15, 133, 142, 148, 186], "hike": 2, "him": 2, "hinder": 57, "hindi": [4, 5, 10], "hint": [60, 70, 76, 128, 129, 148], "hintexcept": 150, "histor": 28, "histori": [14, 15, 40, 58, 86, 111, 153], "hit": [1, 56, 58, 81], "hlocalhost": 22, "hmac": 29, "hog": [5, 7, 9, 10], "hold": [26, 29, 32, 48, 81, 95, 101, 107, 110, 129, 187], "holidai": [112, 151], "home": [28, 40, 63, 81, 83, 88, 92, 93, 133, 138, 153, 156, 172], "homefoldernamingrul": 82, "homepag": 2, "hood": [5, 7, 10, 186], "hook": 150, "hope": 25, "hopefulli": 147, "hord": 118, "horde_": 118, "horde_imap": 118, "horizon": 160, "hors": 56, "host": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 15, 22, 24, 31, 37, 38, 45, 48, 55, 56, 59, 60, 63, 69, 70, 81, 82, 88, 94, 95, 97, 112, 116, 118, 123, 124, 126, 128, 129, 133, 138, 142, 143, 147, 149, 156, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 171, 172, 180, 187], "host2": 96, "host3": 96, "hoster": [22, 60, 116], "hostnam": [20, 22, 31, 48, 56, 60, 63, 69, 81, 95, 116, 128, 129, 133, 143, 145, 156, 172], "hour": [2, 5, 9, 19, 43, 44, 53, 56, 57, 58, 60, 81, 93, 107, 108, 110, 112, 113, 114, 116, 142, 143, 148, 155, 188], "hourli": 53, "hous": [31, 142], "housekeep": [57, 142], "hover": [81, 85, 174], "how": [2, 6, 7, 10, 12, 15, 18, 26, 28, 31, 32, 33, 35, 38, 41, 48, 53, 56, 60, 65, 66, 67, 70, 81, 82, 85, 88, 92, 95, 107, 111, 112, 113, 115, 116, 118, 119, 123, 126, 128, 129, 130, 132, 133, 137, 138, 141, 143, 147, 156, 157, 166, 173, 177, 178, 182, 183, 184, 186], "howev": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 22, 29, 30, 56, 57, 58, 59, 60, 71, 79, 80, 96, 112, 117, 126, 132, 133, 134, 144, 145, 148, 169, 171, 180], "hp_frp_address": 96, "hp_shared_kei": [95, 96], "hp_trusted_proxy_ip": 96, "href": 187, "hst": [70, 124, 126, 129], "hstspreload": 129, "htaccess": [26, 88, 123, 126, 128, 129, 131, 138, 180, 181, 183], "htaccesstest": 129, "htdoc": 120, "html": [60, 63, 67, 93, 123, 129, 130, 131, 134, 138, 147, 150, 159, 166, 167, 169, 170, 171, 183], "htop": 132, "http": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17, 20, 26, 28, 31, 34, 35, 36, 39, 40, 41, 45, 48, 52, 55, 56, 57, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 77, 79, 81, 82, 83, 87, 88, 92, 93, 94, 95, 96, 97, 99, 106, 111, 112, 116, 118, 121, 123, 124, 125, 127, 128, 130, 131, 134, 136, 137, 138, 140, 142, 144, 145, 147, 148, 150, 155, 156, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 180, 183, 187, 188], "http2": 129, "http_author": 133, "http_client_add_user_agent_url": 88, "http_forwarded_for": 60, "http_host": 129, "http_proxi": 60, "http_user_ag": 129, "http_x_forward": 60, "http_x_forwarded_for": [60, 69], "httpd": [88, 93, 101, 102, 123, 127, 133], "httpd_can_connect_ldap": 131, "httpd_can_network_connect": [123, 131], "httpd_can_network_connect_db": 131, "httpd_can_network_memcach": 131, "httpd_can_sendmail": 131, "httpd_sys_rw_content_t": [123, 131], "httpd_unifi": 131, "httpd_use_cif": 131, "httpd_use_fusef": 131, "httpd_use_gpg": 131, "httpd_use_nf": 131, "httpdavmodul": 138, "https_proxi": 60, "hub": [0, 2, 15, 170, 188], "hug": 7, "huge": [19, 60, 132], "huggingfac": [5, 11], "human": [6, 11, 81, 153, 188], "hundr": 138, "hurri": 63, "hy000": 138, "hybrid": 119, "hyperlink": 43, "hypervisor": 133, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 71, 72, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 178, 179, 180, 183, 184, 185, 186, 187], "i686": 22, "iaccountmanag": [60, 77], "iana": [60, 117], "ibm": [1, 8, 12, 13, 15, 88], "ic": [111, 112, 151, 187], "ical": 151, "icalendar": 151, "icap": [65, 88], "icmp_req": [22, 63], "ico": [129, 156], "icon": [40, 41, 47, 60, 64, 65, 85, 88, 92, 129, 156], "id": [2, 3, 8, 13, 16, 17, 28, 31, 38, 40, 43, 53, 59, 60, 63, 67, 72, 76, 81, 82, 84, 85, 88, 92, 96, 97, 106, 114, 116, 126, 150, 151, 153, 154, 155, 157, 160, 166, 172, 187, 188], "id1125420102": [60, 72], "idea": [2, 56, 119, 142, 148], "ideal": [1, 133, 138, 145, 187], "idelegatedset": 156, "ident": [36, 48, 60, 72, 74, 81, 88, 133, 143], "identif": 81, "identifi": [21, 22, 29, 44, 48, 60, 61, 67, 68, 81, 82, 88, 99, 106, 110, 114, 117, 118, 125, 126, 132, 137, 138, 143, 151, 153, 156, 157, 159, 188], "idl": 132, "ie": [1, 3, 123], "ie11": 26, "ie6": 26, "ie8": 26, "ie9": 26, "iemailtempl": 63, "ietf": 187, "ifmodul": [123, 126, 133, 138], "ifram": [60, 64, 126], "igbinari": 60, "ignor": [3, 20, 28, 31, 43, 48, 49, 59, 60, 63, 85, 93, 114, 130, 136, 154, 159], "ignore_notic": 22, "ignorefrontcontrol": [88, 133], "illustr": [47, 60, 133], "im_end": 5, "im_start": 5, "imag": [2, 8, 12, 13, 28, 33, 51, 56, 60, 69, 72, 88, 129, 130, 132, 133, 153, 156, 157, 162, 166, 169, 172, 174, 175, 181, 182, 183, 184], "imagegd": 60, "imagemagick": 47, "imagick": [72, 88, 125, 130, 132], "imagin": 43, "imaginari": [60, 88, 132, 133], "imaginarypdf": [60, 181], "imap": [63, 88, 130], "imap4": 63, "immedi": [40, 53, 56, 60, 63, 85, 106, 107, 151, 153, 156, 157], "immut": [81, 129], "impact": [28, 40, 48, 58, 60, 63, 96, 103, 132, 186], "imperson": 126, "implement": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 28, 29, 32, 48, 54, 56, 60, 63, 68, 80, 81, 88, 96, 112, 118, 133, 134, 143, 150, 156, 174], "impli": 77, "implic": [60, 77, 88], "import": [32, 34, 40, 57, 58, 60, 64, 72, 88, 112, 113, 116, 123, 125, 128, 129, 130, 132, 133, 135, 138, 143, 149, 177, 187, 188], "importantli": [119, 133], "impos": 15, "impract": 107, "imprint": 88, "imprinturl": [72, 156], "improv": [2, 3, 13, 26, 38, 45, 59, 60, 70, 81, 88, 95, 119, 123, 129, 130, 132, 134, 148, 169], "in_arrai": 96, "inaccess": [23, 28, 48, 152], "inaccur": 8, "inact": 60, "inadvert": [58, 132], "inbox": [2, 15, 118], "inc": 72, "incid": 67, "inclin": 186, "includ": [1, 4, 7, 11, 12, 16, 20, 29, 31, 38, 40, 43, 47, 54, 56, 58, 60, 63, 68, 72, 77, 81, 85, 92, 93, 97, 99, 108, 110, 114, 116, 117, 118, 119, 126, 128, 129, 130, 132, 133, 135, 136, 138, 140, 147, 148, 151, 153, 156, 157, 159, 161, 164, 168, 169, 181, 182, 183, 184, 186, 187, 188], "includedir": 22, "includesubdomain": [126, 129], "inclus": 151, "incom": [12, 60, 61, 69, 108, 153], "incoming_server2server_share_en": 149, "incompat": [60, 132, 144], "incomplet": [151, 153], "inconsist": [38, 140, 151, 153, 156], "inconvert": [21, 88], "incorpor": [48, 60], "incorrect": [60, 79, 92, 93], "incorrectli": [60, 69, 118], "increas": [18, 26, 32, 38, 41, 59, 60, 63, 67, 99, 116, 124, 126, 129, 132, 133, 134, 138, 150, 160, 182], "increment": [19, 152], "indefinit": [58, 107, 110, 156], "independ": [3, 29, 67, 77, 88, 93, 101, 110, 119, 147], "index": [2, 28, 29, 40, 41, 60, 67, 68, 69, 88, 96, 101, 124, 126, 129, 133, 137, 138, 147, 149, 163, 169], "indexerjob": 3, "indi": 129, "indic": [16, 25, 40, 41, 60, 63, 81, 82, 88, 99, 106, 116, 128, 131, 138, 144, 148, 160, 186, 187], "indirectli": 102, "individu": [26, 28, 32, 40, 54, 58, 60, 92, 93, 111, 118, 119, 126, 132, 150, 152, 153, 156], "industri": [12, 143], "inetorgperson": [81, 82, 154], "inevit": [126, 134], "infect": 56, "infer": [5, 6, 11, 60], "inferenc": [6, 15], "influenc": [8, 32, 92, 112, 113], "info": [8, 43, 60, 67, 70, 77, 81, 88, 93, 98, 108, 111, 129, 138, 150], "inform": [0, 1, 3, 4, 5, 7, 8, 12, 14, 16, 17, 22, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 45, 48, 52, 53, 58, 59, 60, 63, 64, 66, 67, 69, 70, 72, 76, 77, 81, 85, 88, 91, 92, 93, 98, 101, 106, 108, 111, 112, 113, 116, 117, 118, 119, 120, 121, 124, 126, 129, 130, 132, 133, 134, 137, 142, 145, 147, 148, 150, 153, 154, 156, 157, 174, 178, 180, 182, 183, 184, 188], "infrastructur": [12, 60, 96, 138, 156, 162], "inher": [57, 106], "ini": [22, 26, 33, 59, 60, 71, 88, 123, 124, 126, 127, 129, 131, 132, 133, 138, 150, 182], "init": [56, 88], "initdb": 124, "initi": [13, 21, 27, 28, 29, 49, 60, 77, 85, 88, 90, 92, 96, 98, 99, 102, 110, 120, 153, 186, 188], "initialcontentimportjob": 3, "initialis": [124, 133, 145, 153], "inject": 60, "inlin": 15, "innodb": [23, 60, 134], "innodb_buffer_pool_inst": 22, "innodb_buffer_pool_s": 22, "innodb_file_format": [22, 60], "innodb_file_per_t": [22, 23, 60], "innodb_flush_log_at_trx_commit": 22, "innodb_large_prefix": [22, 60], "innodb_log_buffer_s": 22, "innodb_max_dirty_pages_pct": 22, "inotifi": 153, "input": [3, 5, 7, 12, 14, 17, 32, 43, 60, 75, 81, 149, 151, 153, 156, 175, 188], "insecur": [63, 88, 134, 160], "insensit": [38, 50, 60, 101], "insert": [15, 60, 88, 129, 151, 175], "insid": [3, 5, 7, 8, 15, 26, 38, 40, 45, 57, 60, 64, 66, 67, 69, 81, 93, 96, 102, 112, 124, 132, 147, 152, 153, 156, 160, 187], "insight": [1, 12, 13, 88], "inspect": [4, 56, 88, 153, 155, 156], "inspector": 70, "instal": [13, 15, 16, 17, 18, 20, 22, 23, 26, 29, 30, 35, 38, 39, 40, 41, 45, 49, 54, 57, 59, 63, 64, 65, 67, 70, 72, 80, 81, 84, 93, 94, 96, 97, 98, 99, 100, 101, 102, 105, 108, 112, 113, 116, 119, 120, 129, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 158, 159, 161, 168, 170, 171, 173, 175, 177, 178, 180, 185], "installdir": 92, "installed_vers": 149, "instanc": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16, 18, 19, 20, 22, 23, 28, 29, 43, 46, 47, 53, 57, 59, 60, 63, 67, 68, 69, 72, 77, 81, 84, 88, 92, 93, 95, 96, 107, 110, 111, 112, 113, 114, 116, 118, 119, 120, 123, 127, 128, 129, 132, 133, 134, 138, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 153, 156, 157, 159, 160, 169, 172, 182, 184, 186, 187, 188], "instance_id": [18, 106], "instanceid": [29, 88, 143, 147], "instancesecret": 29, "instanti": 60, "instantli": 60, "instead": [3, 5, 15, 18, 23, 26, 31, 32, 38, 47, 48, 51, 53, 57, 60, 63, 64, 66, 67, 70, 72, 76, 81, 82, 83, 92, 116, 118, 123, 126, 129, 133, 137, 138, 144, 145, 147, 148, 149, 151, 152, 153, 156, 160, 166, 178, 184], "instruct": [1, 2, 3, 5, 12, 20, 22, 56, 58, 64, 70, 74, 81, 87, 88, 118, 125, 126, 130, 132, 133, 135, 142, 144, 148, 188], "insuffici": [76, 93], "int": [26, 60, 73, 75, 76, 82, 96, 118], "int8_float32": 11, "intact": 111, "integ": [1, 19, 48, 57, 60, 96, 112, 113, 149, 151, 187], "integr": [1, 2, 3, 4, 8, 12, 13, 15, 43, 56, 58, 60, 65, 74, 77, 82, 88, 92, 114, 116, 117, 119, 130, 133, 138, 139, 147, 150, 166, 174, 175, 181, 182, 184, 187, 188], "integration_deepl": 1, "integration_openai": [0, 1, 2, 5, 8, 116], "integration_repl": [0, 1, 15], "integration_watsonx": [0, 1], "integritycheck": 137, "intel": [7, 10, 132], "intellig": [0, 1, 12, 15, 88, 95], "intend": [60, 77, 80, 81, 92, 126, 152, 156], "intens": [18, 28, 57, 132], "intention": [60, 77, 92, 110, 118], "interact": [1, 2, 3, 12, 19, 20, 41, 56, 57, 59, 60, 77, 81, 88, 115, 147, 150, 152, 157, 165, 188], "intercept": 126, "interchang": [28, 63, 130], "interest": [106, 186], "interfac": [1, 2, 5, 7, 9, 10, 11, 15, 16, 22, 28, 41, 43, 48, 58, 60, 63, 70, 72, 78, 85, 88, 92, 93, 95, 96, 108, 112, 114, 115, 117, 118, 125, 126, 127, 133, 134, 138, 148, 150, 153, 156, 157, 160, 183, 188], "intermedi": [148, 160], "intern": [3, 12, 14, 28, 40, 41, 48, 57, 60, 69, 70, 74, 82, 85, 88, 96, 97, 101, 116, 129, 132, 133, 147, 152, 159, 160, 175, 187], "internal_defaultexpdai": 43, "interned_strings_buff": 124, "internet": [57, 60, 63, 126, 128, 133, 156, 184], "interoper": [13, 88], "interpret": [92, 95, 126], "interrupt": [28, 45, 57, 130], "interv": [38, 40, 56, 57, 60, 83, 88, 110, 112, 114, 132, 156, 186, 187], "intervent": [6, 56, 126, 187], "intl": [123, 125, 130], "introduc": [15, 50, 81, 95, 129, 184, 186], "introduct": [65, 88, 96, 123], "invalid": [17, 46, 58, 60, 64, 70, 75, 76, 81, 88, 92, 107, 126, 129, 132, 139, 153, 157, 180], "invalid_hash": 137, "invalidsignatur": 137, "invalidsignatureexcept": 137, "invert": 101, "investig": [60, 153, 156], "invis": [40, 88, 101, 104, 105, 157], "invit": [63, 88, 110, 114, 115, 178], "invite": 112, "invoc": [60, 126, 156, 180], "invok": [60, 92, 108, 147, 150, 180], "involv": [26, 106, 132, 134, 180], "io": [45, 60, 64, 72, 96, 101, 119, 129, 132, 133, 134, 138, 145, 164], "iono": [0, 12, 15], "iosclienturl": 72, "iot": [133, 145], "iotop": 132, "ip": [8, 22, 41, 56, 60, 63, 67, 69, 70, 81, 88, 95, 96, 97, 99, 101, 107, 110, 116, 127, 128, 129, 133, 143, 145, 156, 159, 164, 172], "ip_host2_dock": 96, "ipad": 69, "ipaddress": 129, "iphon": 69, "iptabl": [58, 126, 172], "ipv4": [58, 60, 69], "ipv6": [58, 60, 69], "ipv6_normalized_subnet_s": 88, "irrevers": 80, "is_arg": 129, "isanonym": 187, "isn": [23, 28, 60, 77, 81, 118, 133], "iso": [60, 66], "iso_639": 60, "isol": [59, 60, 65, 88, 107, 132, 133, 134, 147], "isset": 96, "issu": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 19, 28, 40, 50, 53, 58, 59, 60, 70, 81, 88, 99, 112, 113, 125, 126, 128, 129, 132, 134, 136, 137, 145, 147, 148, 150, 156, 157, 166, 172, 174, 175, 182, 183], "isvfsen": 92, "italian": [4, 5, 10], "item": [2, 3, 43, 46, 65, 83, 88, 102, 112, 115, 132, 142, 153, 156], "iter": [58, 60], "ithem": 60, "its": [0, 1, 2, 3, 8, 12, 14, 15, 20, 26, 29, 31, 37, 40, 41, 53, 55, 56, 60, 67, 70, 73, 77, 81, 82, 92, 93, 96, 111, 114, 116, 123, 125, 131, 132, 133, 137, 138, 142, 147, 151, 153, 155, 156, 157, 173, 180, 183], "itself": [5, 22, 32, 38, 40, 58, 60, 84, 92, 95, 96, 101, 117, 125, 133, 137, 138, 145, 147, 149, 150, 152, 165, 172, 180], "itun": [60, 72], "itunesappid": 72, "iv": 29, "j": [51, 60, 69, 88, 154, 163, 165, 166, 180], "jail": [88, 124], "jan": 63, "jane": 67, "januari": 67, "japanes": [4, 10], "javascript": [88, 126, 132, 138, 179, 180, 188], "jcal": 151, "jeffmatson": 69, "jeroboam": 154, "ji": 71, "jit": 88, "jit_buffer_s": 132, "jliy12356785jxnha2zciz9mx48ncecwdso95pq3a5habjy34zvhzixrpfpkwug7aohax5": 92, "job": [3, 6, 15, 38, 40, 41, 46, 53, 56, 60, 65, 81, 88, 107, 111, 114, 116, 127, 130, 138, 142, 144, 148, 150, 151, 153, 160, 187, 188], "joe": 187, "johnston": 83, "join": [2, 25], "joke": 2, "jone": 157, "journal": [60, 67], "journal_mod": 88, "journalctl": [15, 99, 187], "journald": [96, 99], "jp": 71, "jpeg": [60, 88, 132], "jpeg_qual": 47, "jpegphoto": 81, "jpg": [129, 156], "json": [2, 4, 5, 8, 11, 14, 16, 51, 60, 82, 83, 88, 96, 98, 99, 101, 112, 118, 123, 126, 129, 137, 149, 150, 151, 152, 153, 155, 156, 157, 160, 187, 188], "json_pretti": [14, 150, 151, 152, 153, 155, 156, 157], "jump": [92, 142], "just": [22, 27, 53, 57, 63, 64, 81, 85, 92, 101, 112, 118, 124, 126, 128, 129, 132, 133, 138, 142, 143, 147, 166, 186, 187], "jwfcftvztglwtje": 41, "jwk": 155, "jwt": [160, 164], "jwt_enabl": 164, "jwt_header": 164, "jwt_secret": [160, 164], "k": 76, "k7mdeng": 153, "karlsruh": 14, "kazakh": 4, "kb": [60, 153], "keep": [3, 15, 18, 28, 41, 44, 49, 50, 53, 57, 58, 59, 60, 67, 69, 70, 77, 80, 81, 88, 92, 93, 96, 99, 101, 107, 109, 112, 113, 116, 118, 120, 123, 124, 125, 132, 133, 134, 138, 142, 143, 147, 148, 149, 157, 160, 177, 186, 187], "keepal": [60, 138], "keepalive_timeout": 129, "keepalivetimeout": 138, "kei": [2, 3, 11, 16, 19, 22, 25, 31, 36, 37, 40, 41, 45, 46, 48, 60, 65, 67, 74, 75, 76, 77, 81, 85, 88, 95, 96, 97, 107, 116, 124, 125, 126, 129, 133, 135, 138, 144, 148, 149, 150, 153, 156, 160, 163, 165, 175, 187], "kept": [49, 59, 60, 107, 132, 147, 155], "keyboard": 88, "keydb": 59, "keyfil": 96, "keyformat": 29, "keypair": 32, "keyr": 167, "keyston": [36, 48, 60], "keyvalu": 48, "kfrh9": 157, "khtml": 67, "kib": 60, "kick": [58, 60], "kid": 155, "kill": 132, "killmod": 57, "kind": [1, 14, 69, 96, 126, 188], "kink": 56, "kitchen": 2, "know": [29, 31, 40, 60, 67, 81, 84, 112, 118, 138, 154, 156, 166], "knowledg": [11, 138], "knowledgebas": 88, "knowledgebaseen": 88, "known": [13, 20, 28, 38, 48, 55, 56, 58, 60, 63, 65, 69, 81, 88, 101, 114, 118, 124, 129, 134, 138, 149, 154, 157, 160, 173], "kokoro": 10, "korean": 4, "kovh8": 157, "krita": [60, 132], "kubectl": 3, "kubelet": 96, "kubernet": 88, "kunz": 83, "kvm": 133, "l": [22, 57, 59, 69, 93, 124, 138, 156], "lab": 126, "label": [2, 15, 41, 69, 81, 97, 131, 138, 157], "labeleduri": 81, "lack": [128, 129], "lamp": 133, "lan": [22, 41, 63], "land": 18, "landmark": 6, "landscap": 6, "lang": [60, 157], "languag": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 27, 60, 64, 65, 76, 88, 95, 116, 119, 130, 134, 188], "laptop": 2, "larg": [2, 3, 7, 8, 9, 13, 14, 15, 22, 28, 38, 41, 46, 56, 60, 67, 88, 93, 112, 116, 118, 119, 129, 132, 133, 138, 148, 151, 156, 157], "larger": [3, 11, 12, 26, 28, 38, 56, 60, 70, 85, 132, 157], "largest": [95, 156], "last": [1, 2, 14, 29, 57, 58, 60, 83, 85, 99, 105, 110, 111, 114, 128, 144, 145, 147, 151, 153, 154, 156, 157, 186], "last_run": 156, "last_seen": 157, "lastact": 157, "lastjpegphotolookup": 82, "lastli": [31, 48], "lastlogin": 157, "lastmodifi": 187, "lastprofilechecksum": 81, "lastseen": 88, "lastupd": [14, 187], "latenc": 132, "later": [17, 20, 43, 60, 83, 92, 102, 116, 118, 133, 134, 138, 144, 159, 164, 172], "latest": [1, 2, 4, 12, 26, 44, 48, 60, 61, 77, 91, 119, 123, 125, 132, 133, 134, 142, 145, 148, 163, 164, 165, 170, 177, 183, 186], "latitud": 126, "latter": 59, "launch": [2, 55, 56, 59, 88, 93, 95, 97, 120, 142, 187], "law": 107, "lawyer": 12, "lax": 106, "layer": [28, 58, 60, 77, 80, 132, 137], "layla": [151, 152, 153, 156, 157], "layout": [60, 61, 148, 156, 161], "lazi": [60, 149], "ld": [81, 129], "ldap": [40, 46, 65, 74, 79, 85, 88, 111, 123, 127, 130, 132, 133, 143, 150, 156, 157], "ldap_group_map": 81, "ldap_log_fil": 88, "ldap_matching_rule_in_chain": 81, "ldap_opt_network_timeout": 82, "ldap_user_map": 81, "ldapadmingroup": 81, "ldapagentnam": 82, "ldapagentpassword": 82, "ldapattributesforgroupsearch": 82, "ldapattributesforusersearch": [82, 154], "ldapbackuphost": 82, "ldapbackupport": 82, "ldapbas": 82, "ldapbasegroup": 82, "ldapbaseus": 82, "ldapcachettl": [81, 82], "ldapconfigurationact": 82, "ldapconnectiontimeout": 82, "ldapdefaultppolicydn": 82, "ldapdynamicgroupmemberurl": 82, "ldapemailattribut": [82, 154], "ldapexperiencedadmin": 82, "ldapexpertusernameattr": [82, 154], "ldapexpertuuidgroupattr": 82, "ldapexpertuuiduserattr": 82, "ldapgidnumb": 82, "ldapgroupdisplaynam": 82, "ldapgroupfilt": [82, 154], "ldapgroupfiltergroup": 82, "ldapgroupfiltermod": 82, "ldapgroupfilterobjectclass": 82, "ldapgroupmemberassocattr": [82, 154], "ldaphost": 82, "ldapignorenamingrul": 82, "ldaploginfilt": 82, "ldaploginfilterattribut": 82, "ldaploginfilteremail": 82, "ldaploginfiltermod": 82, "ldaploginfilterusernam": 82, "ldapnestedgroup": 82, "ldapoverridemainserv": 82, "ldappagings": 82, "ldapport": 82, "ldapquotaattribut": 82, "ldapquotadefault": 82, "ldaptl": 82, "ldapuseravatarrul": [81, 82], "ldapusercleanupinterv": [83, 88], "ldapuserdisplaynam": [82, 154], "ldapuserdisplayname2": 82, "ldapuserfilt": 82, "ldapuserfiltergroup": 82, "ldapuserfiltermod": 82, "ldapuserfilterobjectclass": 82, "ldapuuidgroupattribut": 82, "ldapuuiduserattribut": [82, 154], "lead": [33, 38, 52, 53, 57, 58, 59, 60, 70, 93, 112, 113, 126, 129, 132, 133, 138], "leak": [53, 60, 129, 132, 138, 187], "leakag": 126, "leaki": 132, "leap": 134, "learn": [5, 6, 8, 11, 33, 35, 45, 47, 51, 59, 78, 83, 85, 126, 137, 148, 149], "least": [2, 3, 4, 5, 6, 7, 9, 11, 12, 16, 22, 26, 44, 49, 57, 60, 70, 77, 80, 81, 107, 114, 128, 130, 132, 134, 144, 148, 154, 155, 157, 159, 180, 186, 187], "leav": [2, 27, 28, 31, 33, 39, 58, 60, 69, 76, 81, 85, 116, 132, 143, 151, 156, 160], "lectur": 156, "leela": 154, "left": [40, 48, 57, 60, 63, 81, 85, 111, 132, 137, 147, 149, 153], "leftov": 81, "legaci": [30, 31, 32, 48, 60, 88, 150, 153, 156], "legacy_auth": 48, "legacy_format_support": 30, "legal": [11, 13, 72, 88, 106, 107, 109, 111], "legibl": 9, "legitim": [28, 58, 106, 107, 110], "length": [8, 32, 48, 56, 60, 86, 88, 129], "less": [6, 7, 10, 11, 12, 48, 56, 58, 60, 67, 126, 130, 132, 134, 186], "let": [15, 20, 40, 58, 63, 72, 85, 92, 96, 108, 129, 133, 143, 147, 153, 156, 160, 166], "letsencrypt": 129, "letter": [38, 85, 188], "level": [4, 15, 24, 25, 28, 40, 43, 45, 56, 58, 60, 63, 65, 77, 85, 88, 93, 110, 126, 127, 134, 138, 147, 150, 153, 156, 157, 187], "leverag": 8, "lf": 81, "lib": [6, 16, 22, 56, 60, 63, 129, 164], "libapache2": [125, 133], "libargon2": 130, "liber": 93, "libmagickcor": 72, "librari": [11, 47, 60, 63, 87, 93, 126, 132, 178], "libreoffic": [47, 60, 88, 130], "libsmbclient": 38, "libxml": 130, "libxml2": 130, "licenc": 17, "licens": [15, 16, 126], "life": [88, 123, 144, 148], "lifetim": [60, 81, 88, 106, 110, 155], "lift": 96, "light": [41, 60, 81, 160], "lighter": 186, "lighttpd": 138, "lightweight": 60, "like": [1, 2, 3, 4, 5, 6, 7, 8, 12, 14, 15, 16, 20, 22, 23, 27, 28, 31, 32, 38, 41, 45, 48, 50, 53, 54, 57, 59, 60, 61, 64, 67, 80, 81, 83, 86, 87, 92, 93, 95, 96, 102, 112, 113, 116, 117, 118, 121, 123, 126, 128, 129, 132, 133, 138, 140, 142, 144, 145, 147, 148, 149, 150, 154, 156, 172, 173, 174, 175, 180, 188], "likelihood": 60, "limit": [0, 1, 12, 13, 15, 18, 26, 38, 43, 44, 46, 47, 49, 53, 54, 57, 59, 60, 63, 65, 67, 75, 76, 81, 88, 93, 95, 96, 107, 108, 115, 118, 123, 124, 128, 132, 133, 134, 138, 143, 147, 151, 152, 153, 154, 156, 157, 180, 183, 186], "limitrequestbodi": 26, "line": [20, 22, 26, 30, 57, 59, 60, 63, 67, 69, 81, 88, 92, 96, 111, 112, 116, 118, 125, 127, 129, 130, 132, 133, 138, 141, 142, 148, 150, 153, 163, 183, 187], "liner": 151, "link": [2, 16, 18, 46, 65, 72, 76, 78, 79, 85, 88, 101, 108, 116, 126, 128, 133, 136, 137, 138, 147, 153, 156, 157, 160, 173, 175, 188], "link_defaultexpdai": 43, "linux": [22, 28, 34, 38, 50, 51, 56, 59, 67, 83, 88, 91, 92, 93, 96, 119, 121, 123, 125, 126, 127, 128, 129, 130, 131, 134, 138, 140, 142, 148, 150, 157, 162, 169, 185], "list": [1, 2, 3, 4, 11, 13, 15, 16, 18, 19, 20, 23, 28, 38, 40, 41, 43, 47, 54, 58, 59, 60, 61, 63, 66, 67, 69, 71, 75, 86, 87, 88, 92, 94, 95, 100, 101, 106, 108, 110, 112, 118, 123, 126, 128, 129, 130, 133, 134, 137, 138, 142, 148, 149, 150, 154, 159, 163, 166, 167, 172, 177, 179, 180, 185, 186, 188], "listen": [38, 40, 45, 56, 59, 88, 96, 99, 114, 124, 129, 150, 153, 166, 171, 188], "listexapp": 98, "liter": 129, "literaci": 12, "littl": [4, 15, 70, 85, 96], "live": [0, 2, 7, 13, 60, 81, 88, 106, 107, 110, 119, 132, 155, 156, 160, 163], "live_transcript": [13, 15, 88], "ll": [2, 16, 22, 28, 38, 43, 60, 63, 81, 85, 112, 116, 129, 133, 142, 154, 166, 186], "llama": [1, 5, 12, 15], "llama3": 5, "llm": [2, 5, 8, 12, 14, 15, 88, 115], "llm2": [1, 2, 8, 13, 15, 88], "ln": [16, 124], "load": [5, 7, 13, 22, 26, 28, 38, 40, 45, 52, 56, 59, 63, 65, 69, 80, 88, 92, 96, 106, 126, 127, 128, 130, 138, 149, 150, 160, 185], "loadbalanc": 26, "loader": 11, "loader_config": 5, "local": [1, 3, 8, 12, 13, 15, 16, 18, 22, 26, 28, 31, 33, 38, 39, 40, 41, 43, 59, 63, 65, 69, 72, 73, 74, 81, 85, 88, 92, 93, 95, 97, 98, 101, 110, 113, 114, 119, 123, 124, 126, 129, 132, 133, 136, 138, 143, 145, 147, 149, 150, 153, 160, 166, 180], "local_cert": [59, 60], "local_dock": 97, "local_pk": [59, 60], "local_summary_bot": 8, "localai": [0, 1, 3, 4, 8, 15], "localdir": 34, "localdirpath": 92, "localdomain": [133, 145], "localhost": [22, 45, 52, 59, 60, 63, 69, 96, 97, 99, 116, 120, 123, 124, 125, 128, 133, 138, 145, 149, 156, 163, 164, 165, 166, 184], "localitynam": 81, "localrootmountprovid": 153, "localsocket": 56, "localstorag": 88, "localtim": 8, "locat": [2, 3, 8, 16, 23, 26, 28, 57, 58, 65, 69, 81, 85, 88, 91, 92, 93, 95, 96, 101, 102, 110, 124, 126, 127, 129, 133, 135, 138, 140, 142, 143, 147, 148, 151, 153, 170, 174, 175], "lock": [32, 46, 59, 65, 67, 88, 101, 123, 127, 129, 130, 138, 140, 143, 148, 156], "lock_retri": 59, "lock_wait_tim": 59, "locking_en": 59, "lockout": [60, 86], "log": [12, 13, 14, 15, 22, 28, 32, 36, 40, 41, 53, 54, 56, 58, 63, 65, 68, 69, 77, 80, 85, 88, 92, 100, 101, 106, 108, 111, 112, 113, 116, 123, 126, 127, 128, 130, 131, 133, 134, 135, 140, 143, 145, 147, 148, 150, 153, 154, 157, 164, 172, 183, 187], "log_driv": 96, "log_error": 138, "log_not_found": 129, "log_notic": 22, "log_queri": [67, 88], "log_request_id": 88, "log_rotate_s": [67, 88], "log_secret": [60, 67], "log_size_max": 96, "log_typ": [67, 88], "log_type_audit": [67, 88], "logdateformat": [67, 88], "logdebug": 93, "logdir": 93, "logexpir": 93, "logfil": [3, 26, 67, 88, 93, 124, 129, 135, 143, 156], "logfile_audit": [67, 88, 135], "logfilemod": [67, 88, 126], "logic": [53, 67, 80, 98, 99, 146, 187], "login": [15, 22, 27, 28, 32, 37, 38, 57, 60, 63, 64, 65, 67, 72, 73, 76, 78, 79, 80, 83, 84, 85, 86, 88, 92, 106, 107, 108, 110, 111, 125, 126, 138, 140, 141, 142, 148, 151, 152, 156, 157], "login_flow_v2": 88, "login_form_autocomplet": 88, "login_form_timeout": 88, "loginfailexit": 96, "logist": 119, "loglevel": [58, 63, 67, 81, 88, 118, 126, 132], "loglevel_dirty_database_queri": [67, 88], "loglevel_frontend": [67, 88], "logo": [60, 72, 156], "logo_url": 88, "logohead": [72, 156], "logon": 38, "logout": 60, "logpath": 126, "logread": 67, "logrot": 107, "logtimezon": [67, 88, 149], "logwindow": 93, "loleaflet": 170, "long": [3, 6, 12, 16, 22, 45, 52, 59, 60, 81, 82, 88, 93, 105, 107, 110, 112, 113, 128, 129, 132, 133, 142, 147, 152, 153, 182, 186], "long_query_tim": 22, "longer": [26, 44, 48, 58, 60, 63, 66, 67, 85, 112, 123, 129, 132, 152, 153, 155, 178, 180, 181, 184, 185, 187], "longest": 26, "longitud": 126, "look": [2, 3, 15, 20, 22, 23, 48, 51, 57, 58, 60, 70, 72, 81, 83, 88, 96, 101, 116, 118, 128, 129, 133, 136, 137, 142, 147, 149, 150, 152, 159, 167, 174, 188], "lookup": [38, 60, 69, 77, 110, 126], "lookup_serv": [88, 110], "lool": [166, 170], "loolwsd": 170, "loop": [88, 96], "loopback": [60, 128], "lose": [28, 45, 60, 152, 157], "loss": [22, 28, 40, 60, 85, 93, 134, 138, 152, 160], "lost": [28, 29, 74, 80, 88, 107, 138, 151, 152, 153, 157, 164], "lost_password_link": [79, 88], "lostpassword": 60, "lot": [15, 47, 58, 59, 60, 67, 81, 118, 132, 138, 142, 148, 188], "love": 81, "low": [7, 10, 26, 44, 48, 59, 60, 107, 132, 133, 134], "lower": [4, 5, 7, 10, 29, 53, 57, 60, 67, 85, 86, 107, 132, 133], "lowest": [132, 134, 186], "lsof": 99, "lt": [4, 88, 127, 133, 134, 161, 162, 185, 187], "lt_hpb_url": 4, "lt_internal_secret": 4, "ltd": [16, 126], "lte": 187, "luk": 28, "m": [14, 22, 56, 59, 83, 124, 126, 129, 130, 132, 133, 140], "m5mrxtrjkymaxxpe2frxmtftfbkenzcu": 48, "mac": [40, 56], "machin": [3, 5, 6, 7, 9, 10, 12, 13, 22, 50, 60, 63, 88, 95, 96, 126, 127, 135, 143, 151, 152, 153, 155, 156, 157], "macintosh": 81, "maco": [88, 91, 92, 114, 119, 134, 138], "macro": 160, "made": [3, 15, 20, 38, 46, 47, 51, 58, 60, 88, 93, 111, 118, 132, 133, 135, 143, 160, 186, 188], "madlad": [11, 15], "madlad400": 11, "madrid": 81, "mageia": 130, "mai": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 41, 42, 43, 44, 48, 49, 51, 53, 56, 57, 58, 59, 60, 63, 64, 67, 69, 76, 77, 79, 80, 81, 82, 83, 85, 88, 92, 93, 95, 99, 107, 108, 110, 111, 112, 113, 116, 117, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 145, 146, 147, 148, 150, 151, 152, 153, 154, 156, 157, 159, 160, 170, 172, 180, 182, 186, 187, 188], "mail": [5, 12, 15, 53, 65, 76, 81, 82, 88, 114, 115, 117, 131, 143, 154, 156, 160, 175, 178], "mail_domain": [63, 88], "mail_from_address": 88, "mail_link_password_expiration_interv": 88, "mail_max_item": 53, "mail_send_plaintext_onli": 88, "mail_sendmailmod": 88, "mail_smtpauth": [63, 88], "mail_smtpauthtyp": 63, "mail_smtpdebug": [63, 88], "mail_smtphost": [63, 88, 143], "mail_smtpmod": [63, 88], "mail_smtpnam": [63, 88], "mail_smtppassword": [63, 88], "mail_smtpport": [63, 88, 143], "mail_smtpsecur": [63, 88], "mail_smtpstreamopt": [63, 88], "mail_smtptimeout": [63, 88], "mail_template_class": [63, 88], "mailbox": [88, 115, 118], "mailcow": 116, "mailer": [60, 63, 178], "mailprimaryaddress": 81, "mailqueuehandl": 53, "mailto": 187, "main": [4, 11, 15, 22, 60, 67, 81, 82, 95, 96, 99, 102, 129, 138, 140, 146, 147, 163, 164, 166, 170, 188], "mainli": [4, 16, 28, 62, 148], "maintain": [1, 12, 28, 40, 41, 44, 60, 70, 72, 93, 113, 119, 126, 133, 138, 145, 147, 148, 150, 186], "mainten": [3, 19, 23, 25, 28, 51, 65, 85, 121, 132, 133, 134, 142, 143, 146, 147, 149, 153, 169, 182], "maintenance_window_start": 88, "major": [3, 12, 42, 56, 88, 126, 129, 133, 138, 142, 144, 147, 148, 169], "make": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 14, 15, 16, 18, 22, 23, 25, 26, 28, 31, 33, 34, 38, 41, 43, 47, 48, 53, 54, 55, 58, 59, 60, 64, 66, 68, 73, 76, 81, 83, 84, 88, 92, 93, 96, 101, 105, 108, 112, 114, 116, 118, 123, 124, 126, 129, 130, 132, 133, 134, 135, 137, 138, 142, 143, 144, 145, 146, 147, 148, 150, 152, 153, 156, 159, 166, 172, 173, 178, 179, 180, 181, 185, 186, 187, 188], "malform": 153, "malfunct": 60, "malici": [28, 58], "malwar": [56, 60, 63], "man": [56, 57, 126], "manag": [1, 2, 5, 6, 7, 8, 9, 10, 11, 18, 41, 44, 45, 53, 54, 55, 58, 59, 60, 65, 69, 81, 84, 87, 88, 92, 94, 95, 101, 102, 105, 107, 112, 119, 123, 126, 127, 147, 148, 150, 152, 153, 155, 157, 160, 169, 181, 182, 183, 187], "managerfactori": 88, "mandarin": 10, "mandatori": [57, 73, 81, 88, 157], "mani": [6, 11, 12, 15, 18, 22, 23, 53, 54, 56, 58, 60, 81, 93, 112, 113, 118, 129, 132, 133, 138, 147, 150, 156, 157, 161, 168, 180, 186], "manifest": [55, 129], "manifestli": 111, "manipul": [153, 154, 156], "manner": [1, 181, 182, 183], "manual": [3, 4, 6, 16, 19, 20, 22, 25, 26, 28, 32, 50, 53, 54, 57, 59, 60, 64, 69, 77, 81, 82, 83, 88, 91, 93, 95, 96, 97, 102, 107, 108, 111, 116, 119, 123, 125, 126, 127, 132, 135, 136, 137, 138, 141, 144, 145, 147, 151, 153, 156, 159, 169, 181, 186, 187, 188], "manual_instal": [8, 95, 97], "manual_install_harp": 97, "map": [2, 48, 60, 83, 88, 129, 132, 144, 154, 174], "march": 26, "marco": 2, "margin": 132, "mariadb": [20, 23, 25, 60, 88, 121, 123, 125, 128, 130, 132, 133, 151, 156, 181, 182, 185], "mark": [2, 40, 60, 63, 77, 83, 88, 152, 153, 154, 188], "markdown": [18, 60, 71, 132], "market": [2, 11, 144], "markup": 160, "martin": 2, "mask": 118, "master": [28, 46, 60, 63, 88, 150], "master_": 29, "mastodon": [174, 175], "match": [3, 25, 38, 43, 48, 59, 60, 63, 69, 72, 75, 76, 77, 81, 82, 88, 92, 96, 101, 107, 113, 114, 118, 124, 129, 132, 133, 138, 143, 150, 153, 154, 155, 157, 160, 170, 172, 187], "math": 5, "matrix": 88, "matter": [43, 151, 180], "max": [1, 26, 46, 56, 88, 96, 124, 126, 129, 156], "max_accelerated_fil": 124, "max_allowed_packet": 22, "max_children": [132, 133], "max_execution_tim": [26, 60, 130], "max_file_conversion_files": 88, "max_filesize_animated_gifs_public_shar": 88, "max_heap_table_s": 22, "max_image_generation_idle_tim": 1, "max_input_tim": 26, "max_link": 22, "max_parallel_count": 88, "max_persist": 22, "max_request": 132, "max_siz": [26, 88], "max_spare_serv": 132, "max_token": 5, "maxautocompleteresult": 88, "maxchunks": 93, "maxim": [43, 58], "maximum": [8, 26, 28, 43, 44, 48, 49, 53, 58, 77, 81, 85, 88, 93, 107, 112, 113, 129, 132, 153, 156], "maximumadressbook": 113, "maximumcalendarssubscript": 112, "maxkeepaliverequest": 138, "maxretri": 126, "mayb": 93, "mb": [38, 47, 60, 67, 82, 85, 93, 96, 132], "mb4": 60, "mbstring": [71, 123, 125, 130], "mcp": [12, 13, 88], "md": [2, 18, 28, 71], "md5": [63, 123, 124, 125, 185], "md5sum": [123, 125], "mdm": 92, "me": [2, 14, 60, 88, 110], "mean": [11, 14, 15, 41, 50, 58, 60, 68, 69, 70, 77, 80, 81, 85, 92, 96, 107, 116, 123, 126, 128, 129, 132, 134, 137, 148, 152, 180, 186, 187, 188], "meaningless": 129, "meant": [58, 60, 186], "measur": [7, 10, 12, 60, 70, 132], "mechan": [12, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 57, 58, 60, 63, 77, 88, 178], "media": [1, 2, 6, 7, 88, 101, 107, 127], "medium": 7, "meet": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 31, 44, 48, 108, 109, 142, 186, 187], "megabyt": [56, 60], "member": [2, 18, 43, 54, 64, 76, 80, 81, 82, 85, 88, 101, 119, 151, 154, 157, 159, 174, 175], "memberof": [82, 88, 154], "membership": [43, 81, 82, 85, 101, 110, 118, 154, 157], "memberuid": 82, "memcach": [26, 45, 65, 70, 81, 88, 123, 124, 127, 130, 135, 143, 150], "memcache_customprefix": [59, 88, 123], "memcached_opt": 88, "memcached_serv": [59, 88, 143], "memori": [6, 18, 26, 28, 45, 56, 58, 65, 70, 81, 88, 99, 118, 129, 130, 132, 133, 182, 187], "memory_consumpt": [124, 132], "memory_limit": [18, 26, 56, 130], "mention": [1, 3, 14, 77, 93, 95, 101, 123, 124, 126, 137, 147], "menu": [1, 8, 15, 40, 57, 60, 64, 72, 85, 92, 95, 96, 138, 153, 156, 160, 175, 181, 182, 183], "mere": [20, 186], "merg": [12, 65, 67, 88, 116, 174, 175], "mermaid": 15, "mesh": 155, "messag": [1, 2, 8, 14, 15, 19, 28, 29, 60, 61, 63, 67, 69, 70, 75, 76, 79, 81, 82, 88, 110, 111, 116, 117, 118, 121, 126, 136, 139, 142, 143, 150, 151, 153, 155, 172, 173, 174, 175, 188], "met": [2, 15, 49, 60, 67, 81, 126, 133], "meta": [15, 17, 75, 76, 81, 82, 130], "metadata": [12, 40, 43, 48, 60, 77, 85, 88, 96, 111, 118, 129, 135, 138, 153, 156, 160], "metadata_max_files": 88, "metal": [88, 135], "method": [17, 22, 25, 29, 32, 40, 46, 57, 60, 63, 67, 75, 76, 80, 82, 88, 93, 95, 96, 97, 118, 130, 133, 138, 143, 148, 150, 153, 156, 162, 188], "metric": [52, 60, 89, 163, 165, 184], "mg": 124, "mib": [4, 26, 60, 88, 132], "micro": 133, "microservic": 132, "microsoft": [50, 56, 60, 63, 88, 93, 115, 129, 134, 178], "mid": [12, 132], "middl": 126, "middlewar": [69, 188], "might": [0, 2, 3, 11, 15, 16, 20, 22, 25, 32, 38, 40, 47, 48, 50, 51, 53, 56, 57, 59, 60, 63, 70, 77, 81, 82, 93, 95, 96, 99, 103, 113, 116, 118, 125, 126, 129, 131, 132, 134, 136, 138, 143, 144, 150, 159, 172, 173, 179, 183, 185], "migrat": [19, 20, 21, 32, 46, 48, 49, 60, 81, 88, 95, 115, 118, 130, 141, 147, 150, 151, 153, 156, 157, 158, 168, 182], "milli": 157, "million": 119, "millisecond": [48, 60, 93, 156], "milliwai": [153, 156, 157], "mime": [101, 110, 116, 129, 133, 153, 180], "mimetyp": [47, 60, 88, 101, 126, 129, 153], "mimetypealias": [51, 101], "mimetypelist": 156, "mimetypemap": [51, 156], "min_spare_serv": 132, "minchunks": 93, "mind": [3, 18, 59, 60, 95, 101, 120, 124, 125, 133, 147, 188], "minif": 60, "minim": [3, 4, 7, 8, 10, 11, 56, 58, 86, 107, 114, 123, 124, 128, 132, 134, 138, 186], "minimis": 107, "minimum": [6, 48, 49, 53, 70, 77, 81, 88, 93, 95, 98, 107, 116, 134, 143, 162, 163, 164, 165, 185, 186], "minio": 48, "miniredir": 60, "minor": [3, 132, 142], "minsearchstringlength": 88, "mint": [56, 59, 133], "minut": [0, 3, 7, 10, 15, 38, 40, 44, 49, 56, 57, 58, 60, 81, 83, 93, 112, 113, 116, 142, 143, 148, 153, 157, 163, 165, 187], "mirror": [126, 129, 147], "misbehav": 58, "misbehavior": 70, "misbehaviour": 156, "miscellan": 88, "misconfigur": [58, 60, 88, 93, 99, 104, 118, 126, 129], "misformat": 81, "mismatch": [132, 153, 157, 183], "miss": [25, 43, 80, 81, 88, 92, 99, 126, 130, 133, 144, 146, 148, 153, 187], "missing_fil": 137, "missingok": 107, "mission": [138, 186], "mistak": [60, 81, 138], "mistakenli": 118, "mistral": 2, "mistralai": [0, 15], "mit": 60, "mitig": [59, 63, 126], "mitm": 126, "mix": [41, 48], "mixer": 126, "mixtur": 60, "mj": [129, 179, 180], "mkdir": [28, 34, 96, 123, 124], "mknod": 166, "mkv": 47, "mlocat": 123, "mm": [81, 151], "mnt": [81, 133], "mobil": [28, 32, 40, 43, 58, 69, 72, 77, 81, 88, 91, 101, 119, 126, 127, 132], "mod": [125, 133, 187], "mod_dav": [123, 133, 138], "mod_defl": 138, "mod_dir": 133, "mod_env": [60, 68, 126, 133], "mod_evas": 138, "mod_fastcgi": 138, "mod_fcgi": 133, "mod_fcgid": [88, 138], "mod_head": [68, 126, 133], "mod_mim": 133, "mod_pagespe": 138, "mod_php": [132, 133, 134, 138], "mod_proxy_fcgi": [88, 138], "mod_reqtimeout": [26, 138], "mod_rewrit": [41, 60, 68, 133, 138], "mod_secur": 138, "mod_spdi": 138, "mod_webdav": 133, "mod_xsendfil": 138, "modal": 94, "mode": [6, 19, 22, 23, 25, 26, 29, 30, 40, 46, 53, 56, 57, 60, 67, 81, 82, 88, 97, 98, 112, 118, 123, 125, 127, 137, 141, 142, 143, 146, 149, 151, 152, 160], "model": [0, 1, 3, 4, 6, 8, 9, 10, 13, 14, 15, 88, 95, 116, 126, 130, 135], "model_nam": 11, "moder": 43, "modern": [4, 50, 59, 64], "modheadersavail": 129, "modif": [12, 22, 43, 63, 93, 105, 110, 112, 113, 133, 142], "modifi": [31, 38, 40, 44, 48, 50, 51, 58, 59, 65, 66, 74, 81, 85, 88, 93, 101, 102, 105, 107, 110, 112, 113, 114, 118, 126, 132, 133, 137, 138, 153, 154, 156, 157], "modul": [22, 26, 28, 29, 38, 45, 59, 60, 72, 81, 88, 124, 125, 127, 128, 129, 133, 134, 150, 166, 179, 180], "modular": [1, 15], "module_nam": 130, "molli": 81, "moment": [8, 172], "momentj": 66, "mon": [53, 56], "mondai": [2, 53], "monitor": [16, 58, 59, 88, 126, 132, 156, 184, 187], "monterei": 134, "month": [1, 2, 14, 111, 126, 129, 133, 156], "monument": 6, "moodl": 68, "more": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 22, 23, 26, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 56, 58, 59, 60, 61, 63, 67, 70, 72, 76, 77, 78, 81, 83, 84, 91, 92, 93, 94, 95, 96, 99, 101, 107, 112, 113, 116, 117, 118, 119, 121, 123, 124, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 142, 143, 146, 148, 149, 150, 153, 155, 156, 157, 160, 161, 166, 168, 169, 171, 172, 178, 180, 182, 183, 184, 186, 187, 188], "moreov": 16, "morn": 53, "most": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 28, 44, 48, 57, 58, 59, 60, 63, 64, 67, 69, 70, 77, 81, 95, 96, 110, 111, 118, 119, 126, 129, 130, 131, 132, 133, 134, 138, 144, 145, 148, 150, 156, 157, 164, 169, 170, 171, 177, 178, 186, 188], "mostli": [133, 188], "mount": [28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 45, 46, 48, 56, 57, 60, 88, 92, 96, 98, 100, 101, 110, 133, 152, 164], "mount_id": [38, 40], "mountpoint": [31, 33, 38, 39, 46, 60, 88], "move": [2, 26, 28, 60, 69, 88, 107, 126, 128, 142, 143, 147, 148, 152, 155, 182, 186], "movi": [47, 60, 174, 175], "mozilla": [67, 118, 126, 129, 134], "mp3": [51, 60, 182, 183, 184], "mp4": [129, 156], "mpeg": 51, "mrtumnu": 69, "mscorefont": 163, "msi": 92, "msiexec": 92, "msoffice2003": 60, "msoffice2007": 60, "msofficedoc": [47, 60], "mt": [11, 60, 72], "mtime": [43, 153], "much": [26, 61, 93, 96, 128, 131, 132, 138, 146, 156], "multi": [3, 15, 46, 58, 59, 81, 88, 143, 162, 187], "multibucket": [46, 88], "multibyt": [130, 146], "multilingu": [7, 12, 13, 88], "multipart": 48, "multipartupload": 26, "multipl": [2, 5, 6, 9, 12, 15, 20, 26, 32, 40, 45, 48, 56, 57, 58, 59, 65, 67, 70, 73, 81, 82, 83, 84, 88, 92, 95, 96, 98, 116, 120, 126, 130, 132, 133, 144, 146, 149, 151, 153, 157, 159, 169, 186, 187], "multiview": [123, 133], "music": [15, 88, 92], "must": [3, 4, 5, 6, 8, 16, 18, 26, 28, 29, 31, 33, 34, 36, 40, 41, 45, 48, 56, 57, 59, 60, 63, 67, 68, 69, 70, 72, 77, 80, 81, 82, 83, 85, 92, 93, 95, 96, 98, 107, 108, 111, 112, 116, 120, 121, 126, 128, 129, 130, 131, 132, 133, 134, 135, 138, 140, 142, 143, 144, 146, 147, 148, 150, 151, 152, 153, 156, 157, 160, 162, 164, 187], "mutual": [58, 153], "mx": [116, 118], "my": [2, 16, 48, 51, 72, 75, 81, 88, 95, 97, 112, 151, 153, 156, 172], "myapp": [63, 153], "myapplic": 68, "myclass": 63, "mycloud": [2, 60], "mycustomprefix": 60, "myfil": 187, "mygroup": [75, 154], "myisam": 134, "mylogfil": 131, "mylogo": 72, "mynextcloudprefix": 59, "mypictur": 40, "myserv": [41, 156], "mysql": [20, 21, 25, 88, 121, 123, 125, 128, 130, 132, 133, 138, 145, 156, 182, 185], "mysql_attr_init_command": 60, "mysql_attr_ssl_ca": [22, 60], "mysql_attr_ssl_cert": [22, 60], "mysql_attr_ssl_kei": [22, 60], "mysql_attr_ssl_verify_server_cert": [22, 60], "mysql_secure_instal": 123, "mysql_user_password": 20, "mysqld": [22, 23, 60, 63], "mysqldump": [23, 140], "mysqlnd": 123, "n": [1, 5, 15, 19, 20, 29, 81, 99, 150, 152, 153, 156, 187], "n400": 4, "n_ctx": 5, "name": [1, 2, 3, 4, 5, 8, 11, 16, 17, 20, 22, 23, 28, 31, 32, 33, 34, 36, 38, 39, 41, 43, 44, 46, 48, 50, 52, 55, 56, 59, 60, 63, 65, 67, 68, 72, 75, 76, 77, 81, 82, 83, 85, 88, 92, 93, 95, 96, 97, 98, 101, 106, 110, 111, 112, 114, 116, 118, 120, 121, 123, 124, 125, 126, 128, 129, 132, 133, 137, 149, 151, 153, 154, 156, 157, 160, 163, 164, 165, 170, 187], "namespac": [14, 55, 60, 63, 156], "nat": 160, "nation": 107, "nativ": [24, 38, 160, 188], "natur": [12, 15, 84, 159], "navig": [1, 55, 60, 93, 95, 101, 102, 105, 106, 112, 113, 116, 124, 136], "nc": [60, 63, 88, 100, 129], "nc_app_": 99, "nc_app_context_chat_backend": 3, "nc_app_context_chat_backend_data": 3, "nc_app_context_chat_contain": 3, "nc_app_live_transcript": 4, "nc_app_live_transcription_data": 4, "nc_app_live_transcription_log": 4, "nc_app_llm2_data": 5, "nc_app_stt_whisper2_data": 7, "nc_app_translate2": 11, "nc_debug": 150, "nc_domain": 96, "nc_instance_url": [95, 96], "nc_loglevel": 150, "nc_pass": 157, "nc_samesitecookielax": [70, 106], "nc_samesitecookiestrict": [70, 106], "nc_serverid": [60, 143], "nc_session_id": 106, "nc_token": 106, "nc_usernam": 106, "ncdata": 138, "ncp": 130, "ncvm": 133, "ne": 187, "nearli": [123, 180], "necessari": [2, 16, 22, 25, 26, 36, 47, 57, 59, 60, 63, 77, 84, 96, 106, 107, 116, 118, 123, 128, 129, 130, 133, 138, 159, 182, 188], "necessarili": [58, 77, 95, 96, 138], "need": [0, 1, 3, 4, 6, 8, 11, 12, 15, 16, 18, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 36, 37, 38, 39, 40, 41, 43, 44, 45, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 69, 70, 80, 81, 82, 84, 85, 88, 92, 93, 95, 96, 97, 99, 101, 102, 108, 111, 112, 113, 116, 118, 120, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 155, 156, 157, 159, 162, 166, 172, 173, 178, 181, 182, 184, 185, 186, 187, 188], "needsdbupgrad": 156, "neg": [6, 126], "neither": 78, "nest": [82, 88, 153, 156, 187], "net": [60, 96, 97, 123, 144, 156, 159], "netdata": 132, "netstat": [56, 63], "network": [15, 22, 40, 58, 60, 69, 88, 92, 93, 95, 96, 97, 99, 101, 126, 127, 133, 134, 145, 156, 160, 162, 180, 187], "never": [28, 40, 44, 53, 60, 77, 81, 96, 107, 110, 126, 132, 152, 153, 157], "nevertheless": 148, "new": [2, 3, 5, 6, 11, 12, 20, 23, 25, 26, 27, 28, 30, 32, 33, 37, 40, 44, 45, 46, 48, 53, 57, 60, 63, 67, 68, 74, 75, 78, 80, 81, 82, 83, 88, 92, 93, 95, 96, 98, 108, 111, 112, 114, 116, 118, 119, 124, 126, 128, 130, 131, 132, 133, 134, 138, 140, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 163, 165, 166, 170, 178, 180, 181, 182, 185, 186, 187, 188], "newer": [23, 38, 70, 95, 113, 116, 118, 132, 134, 146, 152, 186], "newest": [44, 144, 186], "newgroup": [75, 76], "newli": [20, 28, 40, 48, 53, 56, 57, 60, 77, 81, 105, 133, 155, 186, 188], "newnam": 187, "newpassword": 157, "newus": 157, "next": [1, 2, 16, 22, 27, 28, 40, 41, 43, 53, 56, 59, 81, 82, 83, 88, 92, 94, 95, 112, 113, 123, 127, 138, 147, 148, 151, 152, 153, 156, 169, 174, 186, 188], "nextcloud": [0, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 57, 58, 62, 63, 64, 66, 67, 68, 70, 73, 74, 75, 76, 77, 78, 79, 80, 85, 87, 88, 91, 92, 95, 98, 99, 100, 101, 102, 105, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 120, 121, 125, 127, 128, 130, 131, 132, 133, 134, 135, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 162, 164, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 186], "nextcloud_": 48, "nextcloud_1": 48, "nextcloud_admin": 81, "nextcloud_cento": 123, "nextcloud_config_dir": [60, 126], "nextcloud_docker_network_nam": 96, "nextcloud_host": 69, "nextcloud_imaginari": 132, "nextcloud_install_product": 133, "nextcloud_log": 93, "nextcloud_redirectregex": 69, "nextcloud_url": [8, 96, 97], "nextcloudcron": 57, "nextclouden": 82, "nextcloudgroup": 82, "nextcloudpi": 133, "nextcloudquota": 81, "nextcloudsystemus": 81, "nextcloudtemp": 60, "nextcloudus": [81, 82], "nf": [60, 88, 127], "nfc": 40, "nfd": 40, "nftabl": 58, "nginx": [19, 70, 88, 96, 110, 126, 127, 128, 132, 133, 134, 138, 162, 163, 164, 165, 178, 179, 180], "nginx_worker_process": 164, "ngo": 138, "ngx_pagespe": [129, 138], "ni": 132, "nice": 51, "night": 3, "nightli": 164, "nin": 187, "nix": [57, 63], "no_desktop_shortcut": 92, "no_etag": 129, "no_last_modifi": 129, "no_proxi": 60, "no_shell_extens": 92, "no_start_menu_shortcut": 92, "no_unsupported_browser_warn": 88, "nobl": [162, 165], "nobodi": 137, "nocanon": 166, "node": [6, 60, 88, 96], "nodecod": 166, "nodecopiedev": 187, "nodecreatedev": 187, "nodedeletedev": 187, "nodeinfo": 138, "noderenamedev": 187, "noderestoredev": 187, "nodetouchedev": 187, "nodewrittenev": 187, "nofollow": [126, 129], "noindex": [126, 129], "nologon": 150, "nomatim": 2, "nominatim": 126, "non": [3, 8, 20, 26, 28, 31, 34, 40, 48, 60, 76, 77, 81, 88, 95, 97, 128, 130, 143, 147, 149, 151, 153, 156, 157, 159, 165, 187], "none": [15, 32, 58, 60, 63, 81, 82, 85, 129, 142, 151, 152, 153, 155, 156, 157, 166, 178], "nonexist": [81, 129], "nonexistingfil": 187, "nonexistingfold": 187, "noon": 2, "nor": [38, 57, 88, 95, 147, 187], "norepli": 60, "normal": [3, 6, 19, 25, 26, 40, 45, 53, 57, 60, 66, 78, 81, 85, 92, 120, 135, 138, 143, 147, 148, 150, 153, 155, 156], "nosniff": [126, 129], "notabl": 38, "notat": [60, 67, 69, 187], "note": [0, 1, 2, 3, 5, 12, 14, 15, 18, 22, 31, 38, 40, 43, 47, 48, 49, 57, 60, 63, 68, 74, 77, 87, 93, 96, 102, 108, 112, 113, 121, 126, 127, 129, 133, 134, 138, 139, 142, 148, 149, 150, 152, 157, 160, 172, 174, 186, 187], "noth": [3, 19, 153], "notic": [45, 47, 58, 72, 110, 128, 143, 157], "notif": [12, 40, 46, 60, 63, 69, 80, 81, 85, 88, 105, 108, 110, 115, 126, 131, 133, 138, 141, 147, 149, 151, 156, 160, 178, 187, 188], "notifempti": 107, "notifi": [16, 28, 38, 40, 53, 63, 88, 105, 108, 149, 187], "notify_guest": 16, "notion": [174, 175], "notori": [5, 6, 7, 11], "now": [15, 22, 23, 25, 26, 41, 56, 57, 60, 68, 81, 85, 88, 95, 96, 112, 113, 116, 118, 121, 123, 124, 125, 128, 130, 133, 138, 142, 147, 166, 178, 179, 180, 183, 184, 185, 187, 188], "nowadai": [60, 183], "nsign": 167, "nss": [65, 88], "nsuit": 167, "ntf": 38, "ntlm": [63, 178], "nuanc": 28, "nuisanc": 58, "null": [14, 47, 60, 67, 97, 124, 149, 183, 187, 188], "num_bucket": 48, "num_nucket": 48, "number": [1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 15, 19, 26, 33, 43, 48, 49, 53, 56, 58, 59, 60, 63, 77, 81, 82, 85, 93, 107, 110, 112, 113, 116, 120, 123, 125, 126, 128, 132, 134, 138, 142, 147, 151, 152, 156, 157, 164, 170, 180, 186, 187], "numer": [47, 60, 86, 128, 153, 156], "numeric_id": 29, "nuri": 167, "nvidia": [3, 4, 5, 6, 7, 9, 11, 95, 97, 99], "o": [26, 28, 58, 60, 81, 88, 124, 129, 130, 132, 133, 138, 143, 156, 163, 165], "o9d3q9thcpmv6tiph53msxaumy91yhezrwuihwcfrss": 48, "oauth": [32, 88, 188], "oauth2": [65, 88, 150], "object": [11, 15, 31, 40, 45, 46, 59, 65, 81, 88, 112, 126, 130, 132, 143, 150, 151, 174, 183, 184, 188], "object_typ": 111, "objectclass": [81, 82, 154], "objectdata": 187, "objectid": 187, "objectprefix": 60, "objectstor": [48, 88, 135, 143], "objecttyp": 187, "oblig": [107, 108, 109], "obscur": 138, "observ": 12, "obsolet": 47, "obtain": [63, 68, 88, 139, 153], "obviou": [58, 180], "oc": [16, 17, 45, 47, 48, 52, 59, 60, 63, 67, 75, 76, 77, 82, 87, 123, 124, 129, 132, 137, 147, 150, 153, 156, 180, 181, 187, 188], "oc8c0fd71e03": 60, "oc_": [22, 60], "oc_act": [25, 53], "oc_activity_mq": [25, 53], "oc_addressbook": 138, "oc_admin": 128, "oc_admin1": 128, "oc_admin2": 128, "oc_calendar_calendar": 20, "oc_calendar_object": 20, "oc_calendar_share_calendar": 20, "oc_calendar_share_ev": 20, "oc_cards_properti": 138, "oc_carla": 60, "oc_com": 111, "oc_comments_read_mark": 111, "oc_databas": 151, "oc_dav_shar": 118, "oc_dbus": 151, "oc_default_modul": [29, 152], "oc_filecach": [29, 138, 151], "oc_fscach": 20, "oc_log": 20, "oc_mail_messag": 118, "oc_mail_recipi": 118, "oc_media_album": 20, "oc_media_artist": 20, "oc_media_sess": 20, "oc_media_song": 20, "oc_media_us": 20, "oc_oauth2_cli": 156, "oc_pass": 157, "oc_permiss": 20, "oc_prefer": 83, "oc_privatedata": 20, "oc_queuedtask": 20, "oc_sessionpassphras": 106, "oc_shar": 20, "oc_storag": [29, 83, 138], "oca": [3, 60, 63, 156, 180, 187], "occ": [1, 4, 6, 8, 13, 14, 15, 18, 19, 20, 23, 25, 26, 27, 29, 30, 38, 40, 41, 43, 44, 46, 47, 48, 49, 51, 53, 56, 57, 60, 61, 67, 68, 71, 72, 73, 74, 77, 78, 80, 83, 85, 88, 98, 100, 103, 107, 108, 111, 112, 113, 116, 117, 118, 121, 126, 129, 132, 133, 136, 137, 138, 140, 142, 144, 147, 148, 149, 151, 152, 153, 154, 155, 156, 157, 161, 181, 182, 183, 187, 188], "occ6f7365735": 60, "occ_command": 67, "occasion": [8, 142, 166], "occupi": 155, "occur": [2, 26, 59, 63, 96, 98, 132, 138, 143, 147, 156, 183, 187], "occurr": 26, "ocdownloadstart": 106, "oci": [20, 60, 121, 156], "ocm": [88, 150], "ocp": [60, 77, 150, 187], "ocsp": 129, "octal": [60, 67], "od": 161, "odd": 132, "odf": [159, 168], "odp": 161, "odt": 161, "off": [22, 23, 25, 26, 30, 33, 53, 56, 60, 71, 82, 88, 96, 116, 118, 123, 129, 131, 133, 142, 147, 150, 154, 156, 157, 166], "offend": 58, "offer": [0, 1, 12, 15, 16, 28, 56, 60, 64, 72, 114, 116, 118, 126, 133, 135, 138, 147, 186], "offic": [2, 15, 42, 47, 51, 58, 109, 115, 133, 158, 160, 162, 163, 164, 165, 166, 169, 170, 171, 172, 174, 175], "offici": [2, 56, 58, 60, 72, 81, 96, 119, 123, 124, 126, 129, 130, 132, 133, 134, 137, 138, 147, 164, 177, 185, 186], "offlin": [81, 93, 112, 113, 143, 147], "offload": [0, 1, 96, 132, 156], "offset": [75, 76, 154, 156, 157], "offsit": 2, "often": [1, 26, 57, 58, 60, 93, 107, 112, 113, 116, 126, 130, 133, 180, 182, 186], "ogg": [129, 179, 180], "oid": [60, 153], "oidc": 84, "oidc_provider_bearer_valid": 84, "ok": [17, 56, 75, 76, 82, 152, 153], "okai": 142, "old": [1, 15, 20, 28, 40, 44, 60, 81, 88, 137, 138, 142, 147, 152, 153, 155, 156, 178, 183], "older": [1, 4, 15, 28, 29, 44, 49, 53, 60, 70, 85, 93, 107, 130, 132, 136, 138, 144, 147, 148, 153, 156], "oldest": [44, 85], "oldfil": 187, "oldgroup": 76, "oldtim": 59, "ollama": [0, 15], "olmo": 88, "omit": [20, 60, 69, 70, 81, 92, 106, 149, 151, 152, 153], "onbootsec": 57, "onc": [2, 14, 18, 26, 30, 40, 43, 48, 51, 57, 60, 80, 81, 93, 95, 108, 112, 118, 123, 125, 126, 129, 142, 143, 147, 149, 151, 152, 153, 154, 155, 156, 157, 160, 166, 177, 180, 186, 187, 188], "ondemand": 132, "one": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 14, 15, 16, 20, 22, 28, 29, 32, 36, 40, 41, 43, 44, 47, 56, 58, 59, 60, 67, 68, 69, 70, 76, 77, 80, 81, 82, 85, 88, 91, 92, 95, 97, 101, 102, 108, 110, 111, 112, 114, 116, 118, 123, 128, 129, 130, 133, 134, 135, 136, 138, 142, 143, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 159, 166, 169, 174, 180, 186, 187, 188], "ones": [20, 44, 53, 54, 59, 60, 107, 132, 133, 142, 144, 147, 152, 174, 180, 186], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 22, 23, 24, 27, 28, 29, 31, 32, 34, 38, 40, 43, 48, 50, 52, 53, 54, 56, 57, 58, 59, 60, 64, 65, 66, 67, 68, 69, 77, 78, 79, 80, 81, 83, 84, 85, 88, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 106, 108, 112, 113, 114, 116, 117, 118, 121, 123, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 143, 144, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 159, 160, 172, 174, 180, 183, 184, 186, 187, 188], "onlin": [32, 60, 88, 118, 119, 123, 133, 143, 148, 167, 168, 169, 171, 172], "onlyoffic": [32, 133], "onrequest": 188, "ons": [119, 132], "onunitactivesec": 57, "ooxml": 88, "opaqu": 187, "opcach": [59, 60, 88, 123, 124, 127, 129, 130], "opcod": [59, 132], "open": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 23, 32, 40, 45, 56, 59, 60, 71, 81, 88, 92, 93, 96, 116, 119, 126, 130, 133, 138, 147, 155, 159, 160, 172, 188], "open_basedir": [26, 126, 130], "openai": [1, 3, 4, 5, 7, 8, 12, 13, 15, 88, 175], "openapi": [12, 60, 188], "openbsd": [88, 127], "opendocu": [47, 60, 132, 159], "opendyslex": 60, "opengraph": 174, "openid": [74, 88], "openldap": [81, 82], "openmetr": [60, 88], "openmetrics_allowed_cli": [52, 88], "openmetrics_skipped_class": [52, 88], "openoffic": [60, 130], "openproject": 2, "openshift": 60, "openssl": [48, 65, 88, 118, 124, 130, 132], "openssl_decrypt": 29, "openssl_encrypt": 29, "openssl_open": 29, "openssl_pkey_export": 29, "openssl_pkey_new": 29, "openssl_s": 29, "openstack": [40, 88], "openstreetmap": [126, 174, 175], "opensus": [134, 150], "opentopodata": 126, "opentyp": 129, "openweathermap": 14, "oper": [3, 6, 8, 12, 22, 24, 26, 28, 40, 45, 50, 56, 57, 58, 60, 67, 70, 80, 81, 83, 88, 92, 93, 101, 108, 109, 121, 127, 132, 133, 134, 135, 138, 142, 147, 148, 150, 152, 155, 157, 159, 166, 185, 186, 187], "operand": 129, "opinion": [133, 145], "opportunist": 63, "opt": [15, 29, 40, 60, 96, 116, 123, 128, 135, 150, 156, 183, 187], "opt_binary_protocol": 60, "opt_compress": 60, "opt_connect_timeout": 60, "opt_libketama_compat": 60, "opt_poll_timeout": 60, "opt_recv_timeout": 60, "opt_retry_timeout": 60, "opt_send_timeout": 60, "opt_seri": 60, "optim": [0, 1, 2, 6, 26, 35, 119, 126, 129, 130, 132, 133, 186], "optimis": [6, 11, 138], "option": [0, 1, 2, 4, 13, 14, 15, 16, 17, 18, 20, 22, 23, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47, 48, 53, 56, 57, 58, 59, 63, 64, 65, 68, 69, 71, 72, 74, 75, 76, 77, 78, 80, 82, 83, 84, 85, 88, 93, 95, 96, 99, 100, 101, 105, 108, 110, 112, 113, 114, 116, 117, 118, 119, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 147, 148, 149, 150, 151, 152, 154, 156, 157, 160, 167, 169, 174, 180, 181, 186, 187, 188], "optout": 88, "oracl": [20, 22, 25, 60, 121, 128, 134, 156, 184], "orang": 15, "orchestr": 96, "order": [0, 1, 14, 15, 18, 22, 23, 25, 43, 63, 71, 77, 80, 81, 95, 96, 116, 126, 133, 134, 140, 149, 156, 159, 186, 188], "org": [56, 60, 68, 76, 79, 93, 126, 129, 133, 156, 163, 187], "organ": [60, 72, 85, 88, 119, 134, 156], "organis": [77, 81, 109, 134, 138], "organisationscop": 77, "organiz": [81, 85, 116], "organizationnam": 81, "orient": 130, "origin": [11, 27, 41, 44, 47, 60, 67, 69, 81, 85, 106, 110, 118, 126, 138, 142, 143, 150, 153, 160, 187], "orphan": [44, 88, 138, 156], "otf": 129, "other": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 22, 25, 26, 27, 28, 32, 36, 38, 40, 41, 42, 43, 44, 45, 47, 49, 54, 56, 57, 58, 59, 64, 65, 66, 67, 77, 80, 81, 84, 85, 87, 88, 92, 96, 97, 98, 106, 107, 110, 111, 112, 113, 114, 116, 117, 119, 124, 125, 126, 127, 128, 129, 130, 132, 137, 139, 142, 145, 147, 149, 150, 151, 152, 156, 157, 159, 160, 162, 169, 179, 180, 181, 182, 183, 184, 186, 187, 188], "otherdomain": 60, "otherwis": [19, 23, 26, 57, 58, 59, 60, 69, 81, 95, 101, 105, 108, 112, 116, 129, 132, 133, 138, 143, 153, 187], "ou": [81, 82, 83, 154], "our": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 23, 60, 63, 70, 81, 95, 96, 101, 102, 122, 123, 124, 126, 130, 132, 133, 134, 137, 138, 144, 180, 186, 188], "out": [16, 25, 26, 28, 48, 53, 56, 58, 60, 70, 88, 93, 95, 101, 106, 107, 115, 129, 131, 133, 134, 137, 138, 142, 143, 147, 148, 156, 157, 169, 178, 180, 185, 186, 188], "outbound": [63, 155, 180], "outdat": [44, 60, 65, 88, 112, 113, 123, 146, 156], "outdoor": 2, "outgo": [63, 88, 116, 118], "outlin": [2, 56], "outlook": [63, 88, 116], "output": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 26, 38, 60, 67, 83, 88, 93, 111, 118, 130, 132, 133, 137, 148, 149, 150, 151, 152, 153, 155, 156, 157, 163, 165, 187], "output_buff": 26, "outright": [58, 134], "outsid": [16, 29, 34, 38, 41, 46, 48, 56, 60, 64, 88, 96, 101, 110, 112, 125, 128, 129, 132, 133, 135, 138, 140, 142], "outstand": [2, 7, 156], "ova": 133, "over": [22, 25, 31, 33, 48, 51, 58, 60, 63, 68, 70, 77, 81, 85, 88, 93, 96, 106, 111, 119, 123, 126, 132, 133, 134, 142, 156, 160, 162, 174, 179], "overal": 132, "overcom": 60, "overflow": 40, "overhead": [60, 93, 132], "overlai": 81, "overlaid": 160, "overlap": [38, 186], "overload": 138, "overrid": [26, 27, 31, 46, 60, 63, 65, 72, 81, 82, 88, 92, 96, 97, 107, 129, 143, 147, 151, 156], "overridden": 69, "override_app_host": [96, 97, 99], "overridelocaldir": 92, "overriden": 60, "overrideserverurl": 92, "overseen": 119, "overview": [0, 1, 2, 3, 13, 16, 46, 59, 61, 88, 110, 119, 137, 138, 141, 144, 151, 178, 180, 188], "overwrit": [27, 63, 65, 88, 112, 133, 143, 153, 180], "overwritecondaddr": [69, 88], "overwritehost": [69, 88, 143], "overwriteprotocol": [69, 70, 88, 143], "overwritewebroot": [69, 88, 143], "overwritten": [27, 60, 67, 73, 77, 81, 112], "owasp": 183, "own": [0, 1, 3, 4, 12, 15, 16, 26, 28, 29, 40, 42, 43, 51, 53, 54, 55, 58, 60, 63, 64, 66, 72, 77, 85, 93, 101, 103, 107, 108, 111, 112, 113, 114, 124, 128, 133, 138, 148, 153, 166, 180, 187, 188], "owncloud": [30, 70, 88, 93, 138, 140, 141, 146, 150, 153, 156, 187], "owncloud_core_dump": 93, "owner": [22, 43, 77, 88, 101, 102, 105, 108, 110, 118, 123, 151, 160, 163, 165, 188], "ownerid": 187, "ownership": [3, 34, 43, 60, 88, 108, 111, 121, 125, 133, 142, 150, 156], "p": [8, 22, 59, 96, 99, 123, 124, 131, 132, 136, 140, 146, 152, 164, 166], "p256": 155, "pacif": 60, "packag": [2, 56, 59, 60, 88, 92, 119, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 141, 148, 153, 156, 159, 162, 169, 188], "package_nam": 55, "packet": 22, "pad": 29, "page": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 18, 22, 27, 28, 34, 40, 41, 43, 53, 54, 56, 57, 59, 60, 61, 63, 64, 65, 67, 72, 77, 78, 81, 82, 85, 88, 89, 93, 94, 95, 99, 107, 108, 110, 111, 112, 116, 123, 125, 126, 129, 130, 132, 133, 137, 138, 142, 144, 147, 148, 149, 152, 153, 156, 157, 160, 174, 175, 177, 188], "pagespe": 129, "paid": [147, 148], "pain": 95, "pair": [28, 37, 46, 60, 88, 97, 106, 116, 153], "pandoc": 42, "pane": [15, 85, 187], "panel": [56, 60, 66, 81, 85, 111, 132, 133, 156, 160, 188], "pant": 63, "paper": 7, "paragraph": [126, 174], "parallel": [15, 22, 26, 60, 70, 95, 138, 187], "param": [187, 188], "paramet": [3, 5, 14, 16, 20, 21, 25, 26, 27, 31, 32, 43, 46, 48, 52, 58, 59, 65, 66, 76, 81, 82, 88, 93, 96, 107, 112, 126, 127, 129, 130, 133, 143, 150, 156, 180, 184, 186, 187, 188], "parameter_nam": 130, "paramount": [15, 81], "parent": [40, 45, 101, 133, 138, 153, 156], "pars": [3, 29, 60, 129, 130], "parser": 132, "part": [3, 5, 14, 15, 16, 41, 48, 50, 51, 57, 59, 60, 63, 81, 85, 92, 93, 111, 121, 123, 126, 133, 134, 137, 149, 155, 166, 171, 185, 186, 188], "part_file_in_storag": 88, "parti": [6, 12, 15, 16, 22, 28, 29, 57, 60, 63, 88, 106, 134, 138, 142, 148, 159, 160, 173, 175], "partial": [63, 118, 187], "particip": [110, 112, 119], "particular": [1, 7, 22, 38, 48, 54, 81, 129, 132, 186], "particularli": [58, 186], "partit": [26, 60], "partner": [110, 119], "pass": [2, 5, 22, 32, 38, 56, 60, 65, 67, 81, 88, 92, 96, 97, 98, 121, 124, 129, 137, 138, 147, 150, 151, 153, 155, 156, 157, 159, 186, 187], "passiv": 92, "passphras": [29, 110], "passwd": 56, "password": [2, 3, 20, 22, 24, 28, 29, 33, 36, 37, 38, 39, 40, 41, 43, 45, 46, 48, 56, 58, 59, 60, 63, 74, 76, 77, 80, 81, 82, 88, 92, 93, 95, 96, 97, 106, 108, 110, 111, 116, 118, 120, 121, 123, 124, 125, 127, 128, 130, 133, 138, 140, 145, 146, 149, 150, 152, 153, 156, 157, 163, 165, 167, 178, 188], "password1": [24, 60], "password2": [24, 60], "password_argon2_default_memory_cost": 60, "password_argon2_default_thread": 60, "password_argon2_default_time_cost": 60, "password_default": 60, "passwordsalt": 88, "past": [56, 60, 70, 137, 151], "pasta": 2, "patch": [63, 70, 88, 118, 139, 147, 186], "path": [8, 15, 16, 18, 22, 27, 28, 29, 30, 31, 34, 35, 38, 46, 56, 57, 65, 67, 69, 77, 81, 88, 92, 93, 96, 97, 98, 110, 118, 124, 126, 128, 129, 131, 133, 136, 143, 144, 149, 150, 151, 152, 153, 156, 157, 164, 170, 187, 188], "path_info": 129, "path_redirect": 69, "pathparamet": 188, "pattern": [44, 49, 58, 60, 69, 128, 132], "pauvo": 69, "payload": [88, 110, 188], "payment": 0, "pbkdf2": 29, "pc": [22, 142], "pcntl": 130, "pcntl_signal": 130, "pcntl_signal_dispatch": 130, "pdf": [2, 3, 47, 56, 60, 88, 102, 130, 133, 152, 153, 156, 157, 187], "pdo": [22, 60], "pdo_mysql": [22, 130], "pdo_pgsql": [22, 124, 130], "pdo_sqlit": 130, "pecl": [38, 59, 60, 123], "pecl82": 124, "peer": [22, 63, 116, 119, 129, 155], "peertub": [174, 175], "pem": [22, 29, 60, 124], "pencil": 85, "pend": [126, 151, 155, 156], "peopl": [6, 9, 43, 53, 58, 83, 102, 114, 138, 154, 174, 175], "per": [4, 5, 7, 9, 10, 15, 28, 40, 46, 57, 60, 77, 82, 88, 96, 107, 108, 110, 112, 113, 134, 143, 152, 153, 157, 160, 174, 176, 180, 187], "perbucket": 48, "percentag": 186, "perfect": [4, 9, 133, 145], "perfectli": 186, "perform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 19, 20, 23, 25, 26, 28, 32, 38, 40, 45, 47, 56, 57, 58, 59, 60, 67, 70, 81, 87, 88, 93, 95, 96, 99, 103, 106, 108, 118, 119, 126, 127, 128, 129, 130, 133, 134, 143, 144, 147, 148, 150, 151, 152, 153, 156, 169, 182, 183, 184, 186, 188], "period": [40, 44, 57, 58, 60, 81, 85, 86, 105, 107, 111, 112, 113, 114, 116, 117, 134, 142, 148, 151, 153, 156, 160, 186], "peripher": 133, "perman": [28, 29, 40, 43, 49, 60, 69, 81, 85, 96, 106, 111, 123, 126, 152, 153, 156, 157], "permiss": [2, 34, 43, 46, 53, 59, 60, 67, 68, 88, 101, 107, 118, 124, 129, 131, 133, 138, 142, 143, 147, 150, 156, 160], "permit": [54, 60, 126, 129, 153, 186], "persian": 4, "persist": [22, 46, 60, 85, 88, 93, 98, 106, 118, 135, 156, 162, 172], "person": [2, 28, 40, 41, 53, 60, 63, 66, 72, 77, 78, 80, 81, 85, 88, 106, 107, 108, 109, 111, 112, 114, 116, 133, 137, 151, 152, 153, 169, 175], "personnel": 93, "perspect": 15, "pertain": [26, 93], "pg_ctl": [3, 124], "pg_dump": 140, "pg_hba": 22, "pg_user": 22, "pgp": [123, 125, 131], "pgpassword": [140, 146], "pgsql": [3, 20, 22, 60, 120, 121, 156], "pgsql_ssl": 88, "pgvector": 3, "phar": [130, 147, 156], "phase": [147, 156], "philip": 154, "phone": [43, 60, 76, 77, 80, 81, 110, 113, 119, 157], "phonebook": 43, "phonescop": 77, "photo": [16, 27, 31, 81, 88, 92, 110, 153], "photor": 9, "photoshop": 60, "php": [1, 2, 3, 6, 8, 15, 16, 17, 18, 19, 20, 22, 23, 27, 28, 29, 30, 33, 35, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 56, 57, 58, 60, 65, 66, 67, 68, 69, 71, 72, 73, 75, 76, 78, 79, 80, 81, 82, 83, 85, 87, 88, 93, 95, 96, 106, 107, 108, 110, 111, 112, 113, 114, 117, 118, 120, 121, 125, 127, 128, 131, 136, 137, 139, 140, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 161, 172, 178, 179, 180, 181, 183, 184, 185, 187, 188], "php7": 22, "php70": 150, "php74": 123, "php8": [129, 132], "php82_fpm": 124, "php_valu": 26, "phpdoc": 187, "phpinfo": [130, 138], "phpredi": [59, 60, 130], "physic": [13, 28, 56, 88, 96, 110, 128, 143], "pi": [60, 119, 133], "pick": [15, 22, 40, 66, 93, 143, 153, 155, 175], "picker": [1, 2, 15, 88, 173], "pickup": [0, 3, 13, 88], "pictur": [38, 47, 81, 110, 130], "pin": [147, 164], "ping": [22, 63], "pipe": [60, 118, 149], "pipelin": 63, "pix": 9, "pixel": [47, 60], "pkg": 124, "pkg_add": 124, "pki": 129, "place": [1, 26, 27, 45, 56, 60, 63, 88, 114, 116, 118, 121, 124, 128, 129, 131, 132, 136, 137, 138, 142, 147, 171, 173, 174, 187], "placehold": [29, 32, 60, 81, 160], "plai": [60, 72, 132], "plain": [14, 60, 63, 70, 71, 101, 106, 129, 133, 138, 150], "plaintext": [81, 110], "plan": [2, 8, 25, 81, 125, 130, 133, 134, 148, 186], "planetexpress": 154, "platform": [31, 48, 92, 93, 119, 123, 132, 134, 135, 187], "plausibl": 2, "pleas": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 18, 22, 26, 40, 47, 56, 57, 58, 60, 66, 68, 70, 81, 85, 93, 96, 101, 102, 113, 117, 118, 123, 126, 128, 132, 133, 134, 137, 138, 142, 144, 147, 148, 150, 151, 152, 172, 180, 186, 188], "plu": [67, 187, 188], "plug": 132, "pluggabl": 80, "plugin": [96, 160, 187], "plusserv": [0, 15], "pm": [132, 133], "png": [31, 60, 72, 129, 156], "pod": 3, "pod_nam": 3, "podman": [3, 88, 133], "point": [6, 12, 15, 16, 22, 25, 26, 32, 40, 43, 46, 58, 59, 60, 61, 67, 72, 88, 95, 101, 107, 112, 113, 128, 129, 132, 133, 134, 138, 143, 147, 148, 153], "poison": 60, "polici": [12, 43, 49, 60, 64, 72, 74, 76, 81, 88, 106, 107, 108, 110, 126, 129, 130, 131, 139, 153], "policycoreutil": 123, "polish": 4, "polit": [1, 14], "poll": [2, 40, 132, 156, 187], "pomerium": 88, "pool": [59, 126, 129, 132, 133, 155], "poor": [5, 9], "pop": 81, "pop3": 63, "popul": [2, 81, 110, 133, 142, 155], "popular": [45, 95, 96], "popup": 116, "port": [8, 20, 31, 33, 37, 45, 48, 56, 59, 60, 69, 81, 82, 88, 95, 96, 97, 99, 123, 124, 126, 128, 132, 149, 151, 156, 159, 163, 165, 171], "portabl": 88, "portal": [48, 63, 102, 116, 122], "portion": 138, "portugues": [4, 5, 10], "pose": 60, "posgresql": 60, "posit": [6, 11, 29, 58, 60, 180, 186], "posix": [50, 130], "posixgroup": 81, "possibl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 22, 25, 28, 41, 43, 44, 48, 49, 50, 54, 55, 58, 59, 60, 61, 63, 64, 77, 80, 81, 82, 84, 92, 93, 95, 96, 97, 99, 101, 102, 112, 113, 116, 118, 121, 126, 129, 130, 131, 132, 133, 134, 137, 138, 142, 143, 144, 146, 147, 149, 152, 159, 166, 172, 186, 188], "possibli": [60, 118, 126, 138], "post": [11, 17, 28, 56, 67, 75, 76, 82, 87, 118, 128, 129, 136, 149, 159, 163, 165, 187, 188], "post_allow": 159, "post_max_s": [26, 124, 133], "postaladdress": 81, "postfix": [48, 60, 63], "postgr": [22, 124, 163, 165], "postgresql": [3, 20, 60, 88, 121, 124, 128, 130, 132, 134, 151, 156, 163, 164, 165, 181, 184], "postrgresql": 25, "postscript": 60, "potenti": [12, 25, 40, 58, 60, 67, 132], "power": [3, 5, 6, 7, 9, 10, 14, 60, 101, 129, 133, 143, 161, 168], "powerpoint": 2, "powershel": 92, "ppolici": [81, 82], "ppolicy_hash_cleartext": 81, "ppt": 168, "pptx": [2, 161, 168], "pr": 136, "practic": [47, 60, 77, 107, 118, 126, 143], "pre": [50, 60, 65, 72, 88, 95, 99, 126, 128, 130, 138, 148, 152, 162, 186], "preced": [51, 60, 80, 88, 153, 160], "precis": [48, 81, 94], "precompil": 132, "preconfigur": [88, 101], "predefin": [50, 92, 93], "predict": [107, 132, 186], "prefer": [15, 20, 22, 31, 38, 53, 57, 59, 60, 63, 66, 67, 81, 83, 85, 88, 93, 115, 117, 118, 121, 129, 130, 133, 138, 156, 187], "prefil": 92, "prefix": [25, 31, 60, 65, 67, 88, 106, 114, 129, 133, 154, 156], "preinstal": 169, "preliminari": 156, "preload": [124, 126, 129], "prem": 15, "prematur": [112, 113], "premis": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 109, 119], "premium": 134, "prepar": [15, 88, 95, 110, 127, 133], "prepend": [1, 60, 129, 138, 150], "prereleas": 22, "prerequisist": 41, "prerequisit": [83, 88, 125, 127, 128, 141, 143, 162], "preseed": 60, "presenc": 187, "present": [2, 51, 54, 60, 63, 64, 67, 81, 96, 110, 119, 132, 133, 136, 147, 153, 161, 166, 167, 168, 187], "preserv": [0, 1, 4, 40, 43, 44, 85, 123, 132, 142, 146, 157, 161], "preset": 85, "press": [2, 41, 63, 93, 112, 113, 138, 175], "pretrain": 5, "pretti": [68, 88, 125, 127, 129, 188], "prettier": 133, "prevent": [26, 28, 29, 43, 45, 53, 58, 59, 60, 65, 72, 88, 93, 104, 106, 112, 116, 126, 128, 129, 132, 134, 137, 138, 140, 146, 148, 154, 180, 183], "preview": [28, 40, 46, 65, 88, 127, 130, 133, 150, 151, 160, 173], "preview_concurrency_al": [88, 180], "preview_concurrency_new": [88, 180], "preview_expiration_dai": 88, "preview_ffmpeg_path": 88, "preview_ffprobe_path": 88, "preview_format": 132, "preview_imaginary_kei": [88, 132], "preview_imaginary_url": [88, 132], "preview_libreoffice_path": 88, "preview_max_filesize_imag": 88, "preview_max_i": [47, 88], "preview_max_memori": [47, 88], "preview_max_scale_factor": 47, "preview_max_x": [47, 88], "preview_office_cl_paramet": 180, "previews_hpb": 60, "previou": [8, 22, 40, 43, 44, 81, 88, 96, 107, 110, 118, 137, 141, 146, 147, 148, 151, 155, 170, 188], "previous": [53, 67, 95, 130, 138, 170, 180, 182], "previousnam": 187, "previousvalu": 187, "primari": [1, 25, 26, 31, 46, 58, 72, 81, 82, 88, 144, 148, 153, 154], "primarili": [77, 119], "primary_color": [72, 156], "princip": [138, 151, 187], "principaluri": 138, "principl": 107, "print": [98, 132, 160, 187], "printenv": 133, "prior": [12, 26, 58, 93, 144, 187], "priorit": 12, "prioriti": [2, 16, 71, 132], "privaci": [0, 1, 4, 15, 60, 64, 70, 72, 77, 88, 106, 107, 108, 110], "privacyurl": [72, 156], "privat": [15, 32, 37, 46, 60, 63, 67, 88, 110, 113, 116, 119, 124, 126, 129, 149, 153, 157, 164], "privatedata": 20, "privatekei": [29, 153], "privileg": [22, 65, 74, 76, 81, 88, 125, 128, 156, 188], "proactiv": 43, "probabl": [48, 81, 129, 167], "probe": 126, "problem": [2, 3, 5, 6, 7, 8, 9, 10, 11, 28, 33, 43, 58, 59, 60, 67, 70, 81, 88, 112, 113, 129, 131, 132, 133, 137, 139, 143, 147, 156, 186], "problemat": [2, 3, 5, 6, 7, 8, 9, 10, 11, 58, 147], "proc": [3, 132], "proce": [29, 108, 116, 123, 147, 151, 165], "procedur": [12, 28, 77, 93, 107, 147, 156], "proceed": [28, 142, 148, 153], "process": [2, 3, 4, 5, 6, 7, 8, 12, 14, 18, 22, 26, 28, 38, 44, 51, 57, 60, 81, 83, 88, 92, 93, 95, 97, 99, 110, 115, 123, 126, 129, 130, 134, 137, 138, 142, 147, 148, 150, 152, 153, 155, 157, 164, 187], "process_idle_timeout": 132, "processor": 132, "produc": [5, 8, 11, 67, 107, 111, 132, 153], "product": [2, 3, 4, 5, 7, 12, 20, 28, 58, 60, 67, 81, 107, 123, 126, 128, 131, 132, 133, 138, 151, 156, 161, 162, 164], "productnam": 156, "profession": [11, 15, 28, 134, 138], "profil": [40, 43, 74, 84, 88, 93, 111, 113, 114, 126, 131, 150, 180], "profile_en": 157, "profile_enabled_by_default": 77, "profile_secret": 60, "profilepag": 60, "profit": 138, "program": [12, 57, 63, 92, 93, 95, 143, 150], "programm": 81, "programmat": 83, "progress": [14, 28, 44, 49, 56, 58, 60, 150], "project": [2, 48, 84, 88, 119, 125, 137, 153, 156, 186, 187], "prometheu": 184, "promin": [182, 188], "promot": [81, 88, 155], "prompt": [0, 2, 3, 5, 12, 22, 32, 81, 88, 93, 116, 125, 133, 145, 150, 151, 152, 153, 165, 188], "pronoun": [77, 157], "pronounsscop": 77, "proof": 25, "propag": [40, 51], "proper": [58, 60, 68, 88, 132, 137, 138, 147, 151, 153, 180], "properli": [9, 28, 55, 58, 60, 65, 66, 86, 88, 93, 99, 126, 130, 137, 138, 142, 152, 156, 166], "properti": [60, 74, 81, 85, 88, 92, 93, 157, 187, 188], "property_address": 77, "property_avatar": 77, "property_biographi": 77, "property_birthd": 77, "property_blueski": 77, "property_displaynam": 77, "property_email": 77, "property_fedivers": 77, "property_headlin": 77, "property_organis": 77, "property_phon": [60, 77], "property_pronoun": 77, "property_rol": 77, "property_twitt": 77, "property_websit": 77, "propfind": [40, 67, 93, 132], "propget": 93, "propos": 12, "proprietari": [8, 15], "prospect": 186, "protect": [3, 28, 29, 41, 43, 56, 63, 64, 65, 69, 70, 88, 102, 107, 109, 110, 133, 147, 156, 160], "proto": 63, "protocol": [2, 8, 12, 36, 37, 56, 60, 69, 82, 88, 93, 95, 96, 97, 99, 118, 126, 159, 164, 172], "prototyp": 96, "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 22, 25, 28, 29, 31, 32, 34, 36, 38, 40, 42, 46, 47, 48, 50, 56, 58, 59, 60, 61, 65, 67, 68, 69, 70, 72, 74, 76, 81, 82, 85, 88, 92, 93, 94, 97, 106, 109, 112, 113, 114, 116, 119, 120, 123, 124, 126, 128, 129, 130, 132, 133, 134, 137, 138, 143, 145, 147, 153, 156, 157, 159, 160, 169, 173, 178, 180, 181, 182, 183, 184, 186, 187, 188], "provider_id": [80, 157], "providerfactori": 60, "provis": [48, 74, 77, 84, 88, 116], "provisioning_api": [17, 149], "proxi": [2, 16, 48, 65, 70, 88, 97, 99, 100, 110, 128, 133, 143, 147, 160, 162, 167, 169], "proxy_add_x_forwarded_for": 129, "proxy_buff": 26, "proxy_connect_timeout": [96, 129], "proxy_fcgi": 133, "proxy_hide_head": 69, "proxy_http": 166, "proxy_max_temp_file_s": 26, "proxy_pass": 96, "proxy_protocol": 96, "proxy_read_timeout": 129, "proxy_send_timeout": 129, "proxy_set": [166, 167, 170, 171], "proxy_set_head": 129, "proxy_timeout": 96, "proxy_wstunnel": 166, "proxyexclud": 88, "proxyfcgibackendtyp": 133, "proxypass": [96, 166], "proxypassmatch": 166, "proxypassrevers": [96, 166], "proxypreservehost": 166, "proxytimeout": [26, 132], "proxyuserpwd": 88, "prune": [44, 99, 107, 118], "pseudo": 126, "psql": [22, 146, 163, 165], "pt6h": 112, "public": [2, 16, 17, 22, 37, 40, 43, 46, 58, 60, 63, 69, 70, 77, 81, 85, 88, 96, 99, 101, 108, 110, 119, 123, 124, 126, 129, 133, 155, 157, 160, 174, 175], "public_html": 33, "publiccalendar": 112, "publickei": 29, "publicli": [5, 12, 18, 29, 118, 133, 149], "publish": [2, 12, 60, 77, 96, 110, 155, 186], "pubshare_": 29, "pull": [81, 88, 129, 136, 164, 166, 170, 174, 175, 180], "punctuat": 4, "pure": 3, "purg": [107, 112, 163, 165], "purpos": [12, 20, 43, 48, 49, 57, 58, 60, 106, 107], "push": [40, 53, 110, 112, 126, 137, 153, 156], "pushfe": 126, "put": [2, 18, 23, 26, 28, 48, 60, 63, 69, 75, 76, 77, 81, 82, 88, 118, 124, 128, 133, 138, 140, 142, 143, 148, 188], "putsizelimit": 48, "pwa": 60, "pwd": [96, 163, 165], "px": 72, "px65ty5drhqkype5hrsdvyfhlzzhcm": 128, "py": 18, "python": [3, 123], "q": [22, 63, 150], "q16": 72, "q3": 2, "qmail": [60, 65, 88], "quali": 126, "qualifi": [12, 41, 63, 156, 187], "qualiti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 57, 88, 132, 153, 186], "quantiz": [5, 7], "queri": [1, 3, 15, 24, 25, 43, 60, 67, 76, 81, 87, 111, 112, 114, 128, 132, 138, 148, 150, 187, 188], "query_cache_limit": 22, "query_cache_min_res_unit": 22, "query_cache_s": 22, "query_cache_typ": 22, "query_log_fil": 88, "query_log_file_backtrac": 88, "query_log_file_paramet": 88, "query_log_file_requestid": 88, "question": [1, 2, 3, 13, 20, 22, 60, 77, 81, 88, 118, 147, 150], "queu": [53, 132, 156], "queue": [3, 53, 88, 132], "quic": 129, "quick": [2, 56, 64, 88, 116, 127, 133, 162], "quickest": 164, "quickli": [16, 50, 85, 93, 154], "quickstart": [88, 141], "quiet": [44, 49, 56, 92, 150, 153], "quit": [19, 22, 56, 63, 125, 144, 148, 152], "quot": [60, 82, 96], "quota": [26, 28, 44, 49, 60, 74, 76, 81, 82, 87, 88, 107, 111, 139, 157], "quota_include_external_storag": [85, 88], "qwen": 2, "r": [7, 10, 28, 34, 69, 82, 121, 123, 125, 130, 133, 136, 138, 142], "rabbitmq": [163, 164, 165], "race": [7, 70], "rackspac": 36, "rainloop": [88, 127], "rais": [12, 22, 26, 60, 132, 138], "ralph": 2, "ram": [2, 3, 4, 5, 6, 9, 10, 11, 132, 134, 162, 163, 164, 165], "ramdisk": 60, "ran": [6, 70, 180], "rand": 48, "random": [29, 40, 48, 81, 106, 110, 118, 126, 128, 164], "random_byt": 29, "randomli": [60, 106], "rang": [48, 58, 60, 67, 69, 88, 95, 96, 101, 127, 132, 148, 161, 164], "rank": 156, "rapid": 186, "rapidli": 186, "rar": 56, "rare": [28, 31, 48, 60, 146], "raspberri": [60, 119], "rate": [0, 5, 7, 13, 88, 108, 115, 128], "ratelimit": 88, "ratelimit_overwrit": 88, "ratelimitaddressbookcr": 113, "ratelimitcalendarcr": 112, "ratelimitperiodaddressbookcr": 113, "ratelimitperiodcalendarcr": 112, "rather": [16, 32, 35, 41, 45, 60, 63, 81, 92, 111, 114, 129, 132, 138, 147, 153, 156, 180], "ration": 60, "raw": [15, 29, 71, 81, 96, 137, 138], "rc4": 152, "rcctl": 124, "re": [4, 18, 22, 26, 28, 31, 40, 43, 48, 53, 54, 56, 58, 59, 60, 63, 70, 77, 81, 85, 92, 94, 96, 101, 107, 111, 116, 118, 128, 129, 133, 134, 138, 142, 143, 147, 148, 152, 153, 157, 164, 182, 183, 186], "reach": [40, 43, 58, 60, 67, 70, 81, 95, 99, 123, 126, 133, 134, 138, 143, 144, 145, 147, 148, 151, 160, 162, 172, 180, 186], "reachabl": [8, 58, 60, 69, 77, 88, 95, 96, 99, 129, 133, 138, 143, 156, 160, 180, 188], "react": [2, 150, 188], "reaction": [2, 110], "read": [2, 24, 26, 36, 40, 46, 53, 56, 59, 60, 61, 65, 67, 68, 69, 72, 74, 77, 79, 88, 101, 107, 112, 113, 114, 118, 123, 124, 129, 133, 134, 135, 137, 151, 152, 153, 156, 157, 159, 160, 182, 183, 184], "read_timeout": [59, 60], "readabl": [12, 27, 34, 60, 65, 81, 88, 129, 151, 152, 153, 155, 156, 157], "reader": [20, 156], "readi": [40, 60, 81, 99, 133, 164, 172, 186], "readili": 28, "readm": [3, 18, 84, 95, 96, 99, 124, 133], "readonli": 187, "real": [1, 4, 5, 7, 9, 10, 12, 14, 38, 69, 118, 128, 129, 132, 156, 161, 168, 186, 187], "real_ip_head": 129, "realiz": 15, "realli": [126, 152, 156], "reallysuppress": 92, "realtim": 58, "reappear": 107, "reason": [5, 15, 48, 52, 58, 60, 63, 64, 70, 81, 92, 107, 110, 118, 120, 126, 128, 130, 131, 132, 133, 134, 138, 143, 166, 180, 182, 183, 184], "reassign": 101, "reboot": 88, "rebuild": 156, "recalcul": 81, "receiv": [15, 41, 43, 54, 60, 63, 69, 81, 84, 85, 88, 108, 111, 116, 123, 134, 137, 148, 150, 153, 186, 187, 188], "recent": [26, 43, 44, 58, 81, 88, 107, 110, 115, 132, 143, 156, 157, 164, 166, 170], "recid": 126, "recip": 2, "recipi": [29, 41, 60, 111, 114, 116, 118, 153, 156], "reclaim": 44, "recogn": [8, 13, 15, 60, 64, 77, 81, 88], "recognis": 32, "recognit": [15, 88], "recommend": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 22, 26, 27, 28, 30, 38, 39, 40, 42, 45, 53, 57, 58, 60, 64, 65, 67, 68, 69, 70, 77, 81, 88, 93, 95, 96, 101, 107, 118, 124, 125, 126, 127, 128, 129, 132, 133, 134, 137, 138, 140, 144, 145, 146, 148, 149, 151, 152, 156, 159, 162, 166, 169, 173, 178, 179, 180, 182, 183, 186, 187, 188], "recommended": 186, "recommended_fil": 15, "reconcili": 60, "record": [12, 53, 60, 67, 80, 82, 93, 107, 110, 111, 114, 118, 132, 143, 151, 153, 156], "recov": [28, 29, 78, 85, 88, 146, 153], "recoveri": [46, 80, 88, 107, 141, 152, 153], "recoverykey_": 29, "recreat": [96, 146], "rectif": 88, "recurs": [153, 156], "recv": 63, "recycl": 132, "red": [15, 40, 41, 59, 93, 133, 134], "redact": [93, 118], "reddit": [174, 175], "redeploi": 3, "redhat": 56, "redi": [26, 45, 65, 70, 88, 127, 130, 135, 143, 149, 163, 164, 165], "redir": 69, "redirect": [60, 64, 67, 68, 69, 70, 88, 92, 95, 96, 99, 116, 129, 133, 138], "redirectregex": 69, "redis_log_fil": 88, "redis_server_host": 164, "redisclust": [59, 60], "reduc": [5, 7, 40, 58, 60, 77, 81, 88, 107, 118, 127, 129, 138, 186], "reduce_to_languag": 88, "redund": 44, "refer": [3, 12, 22, 28, 29, 40, 43, 56, 57, 59, 60, 63, 65, 70, 81, 88, 99, 107, 117, 118, 123, 127, 128, 136, 138, 148, 174, 180, 187, 188], "referenc": [14, 18, 29, 138, 155], "reference_opengraph": 88, "referr": [126, 129], "refil": 59, "reflect": [60, 69, 129, 143, 156], "refman": [60, 134], "reformat": 81, "reformul": 1, "refresh": [59, 60, 81, 88, 145, 155, 156], "refus": 153, "regard": [84, 118, 130, 135, 186], "regardless": [15, 31, 43, 48, 58, 60, 67, 69, 77, 81, 107, 128, 149, 156, 186], "regener": [32, 143, 153, 156, 164], "regex": [69, 126, 129], "region": [31, 36, 48, 60, 153], "regionon": [48, 60], "regist": [3, 4, 8, 15, 57, 60, 88, 95, 96, 100, 112, 116, 143, 153, 156, 157, 173, 174], "registr": [57, 116], "registrar": 133, "regress": 134, "regul": 109, "regular": [26, 29, 46, 56, 57, 60, 69, 88, 92, 101, 114, 147, 148, 169, 187], "regularli": [12, 15, 53, 57, 107, 133, 148, 151, 186], "regulatori": 109, "reinforc": 5, "reinstal": [3, 92, 138, 144, 163, 165], "reject": [38, 88], "rel": [18, 29, 133, 157], "relai": 143, "relat": [3, 13, 15, 26, 53, 55, 56, 58, 60, 67, 72, 75, 76, 77, 81, 88, 93, 95, 96, 113, 118, 127, 130, 132, 133, 135, 136, 143, 151, 154, 181, 182, 183, 186], "relationship": [55, 77], "relax": 60, "releas": [2, 4, 12, 16, 45, 56, 93, 96, 123, 125, 126, 130, 132, 133, 134, 136, 137, 141, 144, 145, 147, 148, 149, 150, 163, 164, 165, 166, 167, 170, 184, 185], "relev": [0, 1, 3, 15, 26, 28, 51, 59, 77, 81, 93, 116, 124, 126, 129, 143, 186], "reli": [12, 15, 18, 28, 40, 53, 84, 92, 117, 134, 173, 175, 185, 186], "reliabl": [13, 14, 38, 53, 56, 57, 59, 60, 70, 81, 88, 92, 130, 134, 138, 142, 143, 172], "reliev": 45, "reload": [40, 64, 96, 123, 132, 133], "remain": [3, 28, 40, 43, 60, 77, 81, 85, 96, 108, 111, 116, 124, 129, 143, 152, 153], "remedi": [60, 113, 138], "rememb": [60, 81, 85, 88, 92, 110, 123, 124, 131, 188], "remember_login_cookie_lifetim": [88, 106, 107, 110], "remi": 123, "remind": [88, 115], "remirepo": 88, "remnant": [20, 60, 81, 83, 88], "remot": [2, 3, 17, 22, 33, 35, 37, 38, 39, 41, 43, 56, 59, 60, 63, 67, 69, 70, 73, 81, 88, 92, 93, 95, 97, 101, 110, 111, 112, 114, 116, 118, 124, 127, 129, 133, 134, 138, 147, 149, 156, 184], "remote_addr": [60, 129], "remoteaddr": [67, 126], "remotedirpath": 92, "remoteport": [96, 97], "remov": [2, 3, 11, 16, 20, 26, 28, 30, 43, 44, 53, 54, 58, 60, 63, 70, 74, 75, 77, 81, 83, 85, 87, 88, 92, 96, 98, 99, 101, 102, 105, 107, 108, 111, 112, 113, 114, 116, 118, 120, 126, 129, 131, 133, 135, 137, 147, 149, 152, 153, 155, 157, 163, 164, 165, 166, 170, 172, 179, 180, 183], "removeus": 88, "renam": [38, 45, 50, 60, 74, 88, 142, 153, 157, 170, 187], "render": [9, 60, 71, 161, 168, 173, 174], "renew": 133, "rep": 153, "repair": [2, 23, 28, 51, 60, 88, 142, 148, 150], "repeat": [31, 58, 99, 143, 156], "repeatedli": [6, 126, 129, 132], "replac": [11, 15, 22, 28, 29, 48, 51, 57, 60, 61, 63, 69, 72, 81, 88, 96, 111, 112, 123, 125, 126, 127, 130, 133, 137, 138, 143, 147, 148, 149, 151, 153, 156, 163, 164, 165, 166, 178, 181, 187], "repli": [2, 63, 116], "replic": [0, 1, 15, 21, 25, 88, 153, 175], "replica": [24, 60, 81, 82], "replica1": 60, "replica2": 60, "repo": 167, "report": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 58, 60, 70, 81, 88, 89, 93, 119, 131, 132, 138, 149, 152, 153, 155, 156, 172, 181, 182, 183], "repositori": [13, 29, 56, 58, 88, 119, 123, 163, 170, 174, 175, 186], "repres": [29, 44, 47, 118, 187, 188], "represent": 156, "reproduc": 70, "reqid": 67, "request": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 22, 26, 31, 32, 36, 40, 48, 58, 59, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 88, 92, 93, 95, 96, 97, 99, 101, 106, 107, 109, 110, 118, 120, 124, 126, 129, 130, 132, 134, 136, 137, 138, 155, 159, 160, 171, 174, 175, 180, 187, 188], "request_checksum_calcul": [60, 183], "request_slowlog_timeout": 132, "request_terminate_timeout": 132, "request_timeout": [26, 41, 88], "request_uri": 129, "requestreadtimeout": 26, "requir": [1, 13, 15, 16, 17, 18, 21, 23, 26, 28, 29, 31, 32, 33, 36, 37, 38, 40, 41, 42, 45, 47, 48, 49, 50, 53, 55, 56, 57, 58, 59, 60, 63, 67, 70, 72, 76, 77, 80, 81, 82, 87, 88, 93, 95, 96, 97, 99, 106, 107, 108, 110, 116, 120, 125, 126, 127, 128, 129, 131, 132, 133, 137, 138, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 159, 160, 161, 162, 166, 168, 169, 170, 172, 186, 187], "rerun": 28, "rescan": [40, 88, 139, 142, 153, 156], "resembl": 12, "resend": 88, "reserv": [50, 114, 182], "reset": [26, 28, 58, 59, 60, 63, 67, 74, 81, 88, 110, 112, 113, 118, 123, 129, 132, 138, 147, 152, 153, 157, 178], "resetpassword": [78, 88], "reshar": 43, "resid": [22, 96, 131], "resist": 58, "resiz": 81, "resolut": [9, 172, 180], "resolv": [28, 40, 58, 60, 65, 88, 93, 96, 114, 124, 126, 147, 148, 174, 180], "resolveexappurl": 96, "resourc": [0, 1, 7, 10, 15, 28, 29, 43, 47, 51, 57, 58, 60, 72, 88, 95, 113, 115, 118, 126, 127, 132, 133, 138, 142, 145, 188], "respect": [0, 3, 7, 12, 15, 22, 44, 53, 57, 60, 77, 95, 96, 112, 116, 187], "respond": [52, 60, 88, 99, 101, 108, 109, 132], "respons": [2, 12, 14, 29, 65, 67, 88, 92, 96, 110, 119, 126, 129, 138, 147, 174, 183, 188], "response_checksum_valid": [60, 183], "rest": [28, 118, 123, 132, 138, 156], "restart": [3, 5, 7, 11, 15, 22, 23, 56, 59, 93, 96, 123, 126, 129, 130, 132, 133, 138, 142, 164, 166, 167, 187], "restor": [23, 29, 44, 60, 88, 107, 138, 140, 141, 142, 143, 147, 148, 151, 156, 186, 187], "restorecon": [123, 131], "restrict": [3, 16, 33, 40, 43, 60, 68, 76, 77, 82, 88, 92, 101, 104, 105, 110, 112, 113, 118, 127, 138, 149, 156, 157, 160, 179, 184], "result": [2, 6, 9, 12, 23, 28, 29, 53, 60, 63, 77, 81, 82, 92, 93, 95, 96, 116, 118, 128, 129, 132, 133, 137, 151, 153, 156, 160, 180, 187, 188], "resum": [60, 188], "resync": 113, "retain": [12, 14, 40, 43, 44, 53, 77, 106, 107, 110, 111, 140], "retent": [44, 49, 60, 88, 102, 104, 109, 110, 111, 115, 153, 157], "rethink": 107, "retir": 88, "retrain": 186, "retreat": 2, "retri": [60, 147, 166], "retriesmaxattempt": 60, "retriev": [2, 29, 59, 60, 69, 75, 76, 81, 82, 88, 111, 156, 188], "retroact": [53, 60], "return": [17, 26, 28, 29, 40, 41, 56, 57, 58, 59, 60, 63, 65, 69, 75, 76, 81, 82, 88, 92, 96, 112, 123, 124, 129, 132, 133, 138, 149, 157, 164, 174, 188], "reus": 118, "revalid": 88, "revalidate_freq": [124, 132], "reveal": 172, "revers": [28, 60, 65, 70, 88, 95, 99, 128, 133, 136, 143, 152, 160, 162, 167, 169], "reverse_proxi": 69, "revert": [88, 93, 112, 139, 145, 147, 148, 152], "review": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 56, 58, 60, 67, 126, 138, 142, 143, 148, 157, 160, 180, 182, 186], "revis": [142, 148], "revisit": [132, 142, 148], "revok": [54, 107], "rewrit": [113, 129, 133, 138, 156, 180], "rewritebas": [88, 133], "rewriteengin": [69, 138], "rewriterul": [69, 138], "rewritten": 129, "rf": 131, "rfc": [60, 80, 126, 151, 155], "rfc6749": 68, "rh": [123, 150], "rhel": [132, 133], "rich": [65, 88, 174], "rich_editing_en": 71, "richdocu": 180, "richdocumentscod": 129, "rid": [47, 152], "right": [1, 25, 33, 59, 60, 76, 81, 85, 88, 107, 108, 112, 129, 133, 142, 147, 180, 187], "rim": 129, "risk": [12, 28, 34, 60, 63, 126, 129, 132, 138, 147, 148, 186], "riski": 12, "rm": [98, 146, 164, 166], "rmi": 164, "rmm": 92, "ro": 8, "roadmap": 12, "roam": 93, "rob": 154, "robbi": 154, "robert": 154, "roberta": 154, "robin": [17, 154], "robot": [126, 129], "robust": [13, 88, 133, 145], "rocm": [95, 97, 99], "role": [60, 77, 81, 85], "rolescop": 77, "roll": 186, "rollout": 92, "roman": 2, "room": [8, 88, 115, 153, 156], "root": [16, 22, 28, 33, 35, 37, 39, 40, 48, 60, 82, 85, 88, 92, 102, 118, 120, 121, 123, 124, 125, 128, 129, 131, 132, 133, 136, 137, 138, 147, 150, 153], "rootcert": 60, "ropa": 110, "rotat": [4, 67, 88, 100, 107, 110, 130, 150, 156], "rough": [5, 7, 9, 10, 15, 60], "round": 29, "rout": [2, 60, 96, 110, 129], "router": [60, 69], "routin": [150, 153, 186], "row": [22, 23, 40, 118, 134, 151, 182, 187], "row_format": [23, 60], "rowaddedev": 187, "rowdeletedev": 187, "rowid": 187, "rowupdatedev": 187, "rpm": [123, 160], "rsa": [29, 32, 40], "rss": [129, 132], "rsync": [93, 140, 143, 146], "rt": 188, "rtrim": 96, "rtx": 95, "rule": [13, 44, 60, 81, 82, 86, 88, 96, 103, 104, 105, 123, 126, 129, 133, 147, 156, 159, 171], "ruleset": 131, "run": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 19, 21, 22, 23, 26, 28, 30, 38, 40, 44, 45, 47, 48, 49, 50, 53, 56, 57, 58, 59, 60, 63, 65, 69, 80, 81, 83, 88, 92, 93, 95, 96, 97, 107, 111, 112, 113, 114, 117, 118, 119, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 137, 138, 140, 142, 143, 144, 146, 147, 149, 151, 152, 153, 154, 155, 156, 160, 162, 163, 164, 165, 166, 167, 169, 172, 180, 185, 186, 187], "runner": [15, 157], "runtim": [82, 88, 92, 134, 156], "runus": 150, "russian": 4, "rv": 131, "rw": 82, "s01": [81, 82, 154], "s02": 82, "s1_nextcloud": 48, "s2_nextcloud_": 48, "s3": [26, 28, 40, 46, 60, 88, 143, 153], "s_time": 118, "sabr": 138, "sabredav": [133, 138, 187], "safari": [67, 134], "safe": [15, 19, 20, 28, 44, 59, 60, 63, 68, 95, 123, 125, 129, 130, 138, 143, 147, 152, 153, 156], "safest": 101, "safeti": 64, "sai": [2, 63, 147], "said": [12, 15], "sake": 123, "sale": [16, 149], "salt": [29, 60], "samaccountnam": 81, "samba": [28, 38], "same": [2, 3, 5, 12, 14, 15, 20, 22, 25, 26, 28, 29, 32, 38, 41, 43, 45, 48, 51, 56, 58, 59, 60, 63, 67, 69, 70, 77, 81, 87, 88, 92, 93, 95, 97, 98, 101, 106, 110, 112, 113, 114, 118, 123, 124, 126, 129, 133, 135, 136, 138, 143, 145, 147, 148, 149, 150, 151, 153, 156, 157, 159, 160, 162, 164, 166, 172, 180, 181, 182, 183, 187, 188], "sameorigin": [126, 129], "samesit": [60, 106], "saml": [29, 32, 85, 111, 132, 157], "sampl": [26, 45, 88, 120, 124, 149], "sandbox": 133, "sanit": [46, 88], "sapi": 130, "satisfi": [56, 67, 77, 128, 133], "saturdai": 2, "save": [32, 38, 40, 44, 45, 48, 58, 63, 64, 71, 81, 93, 95, 108, 114, 116, 118, 129, 152, 160, 188], "save_com": [124, 132], "sbin": [60, 63, 133], "scalabl": [48, 119, 132, 133, 145, 169, 172], "scale": [13, 20, 25, 48, 60, 88, 107, 119, 134, 138], "scan": [3, 30, 32, 38, 40, 60, 65, 70, 88, 93, 137, 138, 142, 146, 150], "scanfil": 156, "scanner": [40, 60, 63, 65, 88, 156], "scenario": [8, 15, 22, 28, 48, 53, 60, 89, 92, 126, 135, 146, 169, 187], "scene": 15, "schedul": [2, 8, 14, 15, 44, 56, 57, 60, 65, 81, 88, 92, 107, 112, 115, 117, 148, 149, 151, 156, 187], "scheduledaft": [14, 156], "scheduledat": 14, "schema": [20, 22, 25, 88, 135, 144, 147, 153, 156], "scheme": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 69, 96], "school": 138, "scl": 150, "scope": [8, 22, 48, 60, 68, 74, 81, 88, 98, 110, 137, 153, 156, 157], "scope_feder": 77, "scope_priv": [60, 77], "score": 5, "scratch": [80, 133, 147], "screen": [41, 63, 78, 79, 88, 108, 120, 133, 147, 156, 188], "screenshar": 134, "screenshot": [27, 64], "script": [15, 48, 57, 59, 60, 67, 88, 92, 121, 127, 129, 132, 150, 156, 157, 159, 163, 165, 187], "script_filenam": 129, "scriptnam": 67, "scroll": [41, 85, 111, 112, 113, 116, 147], "sdk": [6, 123, 131, 159, 166, 167, 169, 170, 171, 183], "sdkref": [60, 183], "seal": 88, "sealert": 131, "seamless": [81, 187], "search": [3, 20, 28, 43, 51, 60, 77, 81, 82, 83, 88, 95, 112, 126, 130, 132, 133, 138, 143, 157, 160, 173], "sec": [22, 23, 82, 118], "second": [1, 15, 26, 36, 41, 43, 44, 48, 58, 60, 68, 70, 73, 77, 80, 81, 85, 101, 106, 112, 116, 118, 126, 132, 133, 137, 138, 149, 156, 157, 166, 187], "second_admin": 53, "secondari": [40, 80], "secr3tpasswordt7": [48, 60], "secret": [8, 17, 28, 29, 31, 32, 37, 48, 68, 75, 76, 82, 88, 116, 126, 132, 143, 149, 152, 153, 156, 159, 160, 164], "secretvalu": 48, "section": [0, 1, 3, 4, 6, 8, 12, 15, 26, 28, 32, 41, 43, 48, 50, 54, 57, 59, 60, 63, 70, 72, 81, 85, 86, 92, 93, 96, 99, 101, 102, 111, 112, 113, 116, 117, 118, 119, 120, 128, 129, 132, 133, 138, 144, 147, 148, 149, 153, 156, 160, 166, 172, 186], "secur": [8, 13, 16, 22, 28, 29, 32, 33, 34, 39, 41, 45, 47, 58, 59, 63, 64, 65, 69, 80, 86, 88, 93, 97, 107, 108, 110, 111, 112, 118, 123, 127, 128, 129, 130, 131, 133, 134, 137, 138, 144, 145, 148, 150, 157, 161, 163, 166, 184, 186], "see": [0, 1, 2, 3, 4, 7, 11, 15, 16, 18, 22, 23, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45, 47, 48, 51, 53, 54, 56, 58, 59, 60, 63, 67, 68, 70, 74, 78, 81, 82, 83, 85, 88, 92, 93, 95, 96, 99, 101, 102, 107, 108, 110, 111, 112, 113, 114, 116, 118, 119, 121, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 169, 172, 177, 178, 179, 181, 182, 183, 184, 187, 188], "seed": [59, 60, 88, 162], "seem": [3, 60, 63, 70, 147], "seen": [60, 93, 95, 102, 113, 137, 154], "segment": 26, "segreg": 126, "select": [1, 2, 3, 4, 5, 7, 8, 12, 22, 28, 29, 31, 40, 41, 43, 54, 57, 58, 59, 60, 63, 64, 80, 81, 85, 92, 106, 107, 110, 111, 116, 128, 132, 138, 147, 149, 151, 153, 160, 163, 165, 188], "selector": [88, 150], "self": [0, 1, 2, 12, 15, 33, 46, 60, 88, 93, 96, 108, 114, 116, 133, 156, 158, 168, 178], "selfiephoto": 81, "selinux": [40, 60, 81, 88, 127], "semanag": [123, 131], "semant": 3, "semaphor": 130, "semi": 59, "semicolon": 60, "send": [2, 8, 12, 17, 18, 41, 43, 53, 60, 65, 66, 67, 68, 75, 76, 82, 85, 88, 93, 96, 108, 112, 114, 115, 126, 128, 131, 133, 147, 153, 156, 157, 160, 173, 178, 187, 188], "send_timeout": 129, "sendemail": 157, "sender": [63, 116], "sendeventremindersmod": [112, 151], "sendfil": 138, "sendmail": [60, 65, 88, 127], "sens": [25, 53], "sensibl": 47, "sensit": [15, 50, 53, 57, 58, 60, 81, 88, 93, 118, 126, 133, 138, 149], "sent": [12, 40, 60, 63, 67, 81, 88, 96, 110, 112, 116, 118, 151, 156, 157, 188], "sentri": 118, "separ": [3, 5, 7, 9, 10, 15, 22, 25, 26, 38, 41, 60, 61, 63, 67, 81, 82, 93, 95, 99, 111, 120, 148, 149, 156, 157, 188], "septemb": 4, "sequenc": [156, 184], "seri": [174, 175, 183], "serial": 60, "serializer_igbinari": 60, "seriou": 138, "serious": 70, "serv": [3, 5, 7, 26, 60, 63, 69, 70, 81, 88, 101, 119, 127, 133, 143, 147, 159, 166, 180, 181, 183], "server": [0, 1, 3, 4, 5, 6, 7, 12, 13, 15, 16, 17, 18, 19, 20, 23, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 45, 46, 47, 48, 50, 51, 52, 56, 57, 58, 64, 65, 67, 68, 69, 72, 75, 76, 77, 78, 79, 82, 83, 85, 88, 91, 92, 95, 96, 97, 99, 105, 106, 111, 115, 117, 118, 119, 120, 121, 123, 124, 125, 128, 129, 130, 135, 137, 139, 140, 141, 142, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 161, 162, 163, 164, 165, 168, 169, 171, 172, 174, 177, 184, 185, 186, 187], "server0": 59, "server1": [48, 59, 128], "server2": [48, 59], "server3": 48, "server_log": 88, "server_nam": [69, 96, 124, 129], "server_token": 129, "serveraddr": 96, "serverid": [88, 143], "serverinfo": [59, 138, 180], "servernam": [96, 123, 126, 133], "servernotavailableexcept": 156, "serverport": 96, "serverroot": [16, 60], "serverurl": 92, "servic": [1, 2, 3, 5, 12, 13, 22, 31, 32, 36, 40, 56, 57, 58, 59, 60, 63, 65, 67, 68, 70, 72, 81, 82, 84, 88, 93, 99, 106, 108, 123, 124, 126, 132, 133, 139, 143, 153, 156, 157, 159, 160, 163, 165, 167, 169, 170, 173, 175, 186], "servicenam": [48, 60], "session": [32, 38, 40, 43, 65, 77, 88, 92, 93, 106, 118, 129, 130, 140, 143, 148, 150, 153, 156, 157], "session_keepal": 88, "session_lifetim": [26, 88], "session_relaxed_expiri": 88, "sessioncredenti": 153, "set": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 15, 16, 18, 20, 22, 23, 26, 27, 30, 31, 32, 33, 34, 36, 38, 40, 41, 44, 45, 46, 48, 49, 50, 54, 55, 56, 57, 59, 60, 61, 62, 64, 65, 66, 68, 69, 71, 72, 73, 74, 80, 82, 83, 84, 86, 87, 88, 92, 93, 94, 95, 96, 97, 99, 101, 102, 103, 105, 106, 107, 108, 110, 111, 113, 114, 115, 116, 117, 118, 120, 124, 125, 126, 127, 128, 129, 131, 134, 137, 138, 140, 142, 143, 144, 146, 147, 148, 150, 153, 155, 161, 163, 164, 165, 167, 172, 178, 179, 180, 182, 186, 187], "set_real_ip_from": 129, "setenv": [126, 133], "setenvif": 133, "setroubleshoot": 131, "setsebool": [123, 131], "settingclass": 156, "settl": 22, "setup": [0, 2, 3, 4, 5, 7, 9, 10, 11, 16, 22, 28, 32, 40, 44, 48, 49, 57, 58, 60, 62, 63, 69, 80, 81, 88, 91, 93, 96, 97, 100, 123, 127, 128, 129, 132, 133, 134, 138, 143, 144, 148, 149, 150, 151, 152, 166, 167, 169, 170, 171, 178, 181, 182], "setup_create_db_us": 128, "setupcheck": 156, "sever": [3, 12, 26, 28, 58, 60, 63, 77, 92, 96, 98, 107, 108, 111, 116, 126, 129, 130, 132, 133, 138, 143, 148, 153, 156, 169, 186], "sf": [16, 124], "sftp": [32, 40, 60, 88, 130, 153], "sgi": 60, "sh": [15, 133, 187], "sha": 147, "sha256": [29, 123, 125, 155], "sha256_cert_fingerprint": 55, "sha256sum": [123, 125], "sha512": [29, 147], "sha512sum": 147, "shall": [60, 66, 81], "shallow": [40, 153], "share": [3, 22, 38, 40, 45, 59, 63, 65, 70, 77, 81, 85, 88, 93, 95, 96, 97, 101, 102, 107, 108, 110, 111, 114, 115, 119, 124, 126, 131, 133, 135, 139, 142, 146, 147, 150, 155, 157, 159, 160, 164, 167, 175, 187], "share20": [60, 156], "share_fold": 88, "shareabl": 114, "shareapi_restrict_user_enumeration_full_match_email": 43, "shareapi_restrict_user_enumeration_full_match_ignore_second_display_nam": 43, "shareapi_restrict_user_enumeration_full_match_userid": 43, "sharebymail": 60, "shared_secret": [60, 67], "sharekei": 29, "sharer": [110, 153], "shares_extern": 153, "sharescount": 60, "sharesreminderjob": 156, "sheet": 183, "shell": [15, 23, 57, 60, 150, 187], "shellextens": 92, "shibbol": 159, "ship": [4, 5, 16, 17, 18, 27, 51, 53, 54, 58, 60, 61, 72, 81, 88, 113, 114, 123, 126, 129, 132, 147, 149, 153, 154, 156, 173, 181, 184], "shm_size": [59, 182], "shop": 2, "short": [60, 77, 81, 83, 95, 106, 112, 113, 116, 138, 151], "shortcut": [88, 92], "shorten": 106, "shorter": [29, 133], "shortli": 105, "should": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 19, 20, 22, 23, 27, 29, 36, 38, 39, 40, 41, 45, 51, 56, 57, 59, 60, 63, 66, 67, 68, 69, 71, 77, 81, 82, 85, 92, 93, 95, 96, 97, 99, 101, 105, 112, 113, 116, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 138, 143, 144, 147, 148, 150, 151, 159, 166, 171, 178, 179, 182, 184, 186, 187, 188], "shouldn": 60, "show": [1, 2, 3, 7, 10, 19, 22, 23, 27, 28, 38, 43, 47, 48, 51, 53, 56, 59, 60, 63, 64, 77, 80, 81, 82, 83, 85, 88, 93, 98, 99, 111, 112, 113, 118, 128, 129, 132, 137, 138, 142, 147, 148, 149, 150, 151, 153, 155, 157, 160, 180, 187, 188], "show_federated_shares_as_intern": 41, "show_users_onli": 77, "showcas": [15, 188], "showexpir": 187, "shown": [26, 32, 43, 47, 68, 77, 81, 88, 110, 126, 128, 129, 130, 137, 138, 142, 147, 148, 151, 152, 153, 156, 157, 160], "showonli": 149, "showpassword": 82, "shred": 107, "shutdown": 19, "sick": 2, "side": [31, 40, 46, 48, 60, 63, 77, 81, 85, 88, 107, 110, 112, 126, 128, 129, 132, 138, 147, 152, 153, 154, 156, 180, 182], "sidebar": [85, 94], "siev": 88, "sign": [28, 33, 46, 60, 81, 85, 88, 93, 116, 123, 129, 133, 134, 138, 139, 155, 156, 178], "signal": [4, 106], "signatur": [56, 88, 116, 123, 125, 137, 153, 155], "signific": [8, 12, 34, 45, 53, 137, 186], "significantli": [8, 12, 26, 59, 60, 67, 134, 148], "signup": [2, 60], "silent": [92, 98, 108, 131, 152, 153], "similar": [0, 6, 19, 26, 36, 60, 81, 93, 102, 105, 118, 123, 126, 131, 132, 133, 135, 137, 149], "similarli": [143, 149, 159, 183], "simpl": [15, 20, 51, 60, 88, 102, 119, 133, 145, 188], "simplesignuplink": 88, "simplest": [96, 138], "simplexml": 130, "simpli": [3, 8, 16, 40, 43, 48, 56, 60, 61, 63, 69, 80, 81, 85, 92, 95, 101, 102, 142, 146, 147, 187], "simplifi": [96, 152], "simul": 153, "simultan": [45, 132, 133, 149, 186], "sinc": [2, 5, 15, 16, 18, 20, 28, 32, 34, 57, 58, 59, 60, 63, 93, 101, 103, 105, 114, 124, 129, 134, 144, 147, 153, 155, 157, 170, 180, 182, 186, 188], "singl": [3, 20, 26, 28, 41, 57, 58, 60, 67, 69, 81, 85, 88, 116, 118, 123, 125, 129, 131, 132, 133, 140, 151, 152, 154, 156, 157, 187], "sink": 2, "site": [26, 65, 88, 106, 126, 133, 138], "situat": [3, 5, 7, 48, 58, 60, 69, 93, 123, 126, 138], "sixteen": 186, "sixti": 60, "size": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 28, 29, 43, 46, 53, 59, 60, 63, 67, 72, 81, 85, 88, 93, 95, 96, 101, 110, 119, 124, 126, 129, 139, 142, 143, 152, 156, 178, 187], "sji": 71, "skeleton": [18, 27, 60, 188], "skeletondirectori": [27, 88], "skill": [133, 145], "skip": [3, 40, 53, 57, 60, 65, 81, 88, 92, 97, 118, 120, 147, 148, 150, 151, 153, 156], "skip_name_resolv": 22, "skipapp": 180, "skipauthpickerappl": 68, "skipautoupd": 92, "sky": 1, "skydriv": 93, "sl": 59, "sla": 12, "slash": [33, 40, 51, 93, 138, 187], "slave": [60, 81], "sleep": 60, "slide": 2, "slightli": [5, 29, 58, 98], "slogan": [72, 156], "slot": [2, 88, 150], "slow": [3, 6, 22, 28, 56, 58, 59, 60, 88, 93], "slow_query_log": 22, "slow_query_log_fil": 22, "slower": [38, 57, 58, 152, 169], "slowlog": 132, "sluggish": 132, "small": [2, 12, 43, 47, 57, 60, 88, 112, 113, 129, 138, 169, 186], "smaller": [4, 5, 7, 12, 26, 60, 147], "smallest": [11, 81], "smart": [1, 2, 15, 88, 116, 173], "smb": [40, 60, 88, 127, 130, 153], "smbclient": [38, 130], "sme": 133, "smili": 23, "smith": [151, 157], "smtp": [60, 65, 88, 127, 143], "sn": [82, 154], "snap": [88, 127, 130, 141, 148], "snapcraft": [133, 145], "snapd": [133, 145], "snapshot": [81, 96, 107], "sni": 70, "sniff": 126, "snip": 57, "snooz": [88, 115], "snowflak": [88, 150], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 20, 22, 26, 27, 28, 29, 30, 35, 38, 40, 41, 43, 45, 48, 50, 51, 53, 56, 58, 59, 60, 63, 67, 68, 76, 78, 81, 83, 84, 85, 92, 93, 94, 95, 96, 97, 101, 102, 105, 107, 111, 112, 116, 117, 118, 123, 124, 126, 129, 130, 131, 132, 133, 137, 138, 142, 143, 144, 146, 147, 148, 149, 150, 153, 154, 155, 165, 167, 170, 173, 180, 185, 186, 187, 188], "sock": [22, 45, 59, 60, 96, 97, 124, 129, 149], "socket": [22, 45, 56, 60, 88, 97, 99, 100, 124, 128, 132, 171], "sodium": 130, "softwar": [0, 4, 6, 11, 12, 15, 22, 69, 89, 92, 93, 134, 178], "soldier": 2, "solid": 28, "solut": [1, 15, 26, 43, 69, 93, 116, 133, 137, 138, 143, 158, 161, 168, 170, 172], "solv": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 131, 136, 147, 183], "some": [0, 1, 2, 15, 16, 22, 25, 28, 29, 31, 32, 40, 43, 47, 48, 51, 52, 57, 58, 59, 60, 63, 65, 73, 77, 81, 85, 87, 88, 93, 94, 95, 96, 98, 101, 110, 112, 113, 116, 118, 123, 124, 126, 128, 129, 130, 132, 133, 134, 137, 138, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 156, 157, 159, 160, 166, 169, 173, 174, 177, 180, 182, 185, 187, 188], "some_secure_password": 97, "some_very_secure_password": [96, 97], "someon": 28, "someth": [2, 3, 14, 41, 43, 60, 81, 95, 96, 129, 132, 137, 144, 172, 187], "sometim": [2, 5, 15, 43, 48, 57, 85, 132, 138, 142, 147, 186], "somewher": [81, 96, 129, 133, 188], "soon": [4, 15, 62, 112, 132, 186], "sooner": [107, 186, 187], "sophist": [58, 93], "sorri": 172, "sort": [44, 60, 114, 130, 169], "sort_groups_by_nam": 88, "sortbi": 60, "sound": 142, "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 32, 46, 51, 56, 58, 59, 60, 63, 77, 88, 112, 119, 123, 126, 129, 130, 132, 133, 135, 138, 146, 147, 150, 153, 159, 163, 167, 187], "sourcecalendardata": 187, "sourcecalendarid": 187, "sourcecod": 29, "sourceshar": 187, "sovereignti": [0, 1, 4], "sp7": [134, 185], "space": [4, 26, 44, 49, 50, 60, 81, 85, 88, 93, 127, 138, 149, 152, 153, 160, 162, 163, 164, 165, 182], "spaghetti": 2, "spam": [60, 63, 116], "span": [73, 101], "spanish": [4, 5, 10, 11], "spawn": [38, 132], "speaker": [4, 7], "spec": [12, 60], "special": [1, 11, 22, 35, 40, 43, 46, 60, 64, 69, 80, 85, 86, 88, 112, 133, 138, 187], "specialis": 51, "specif": [1, 2, 5, 6, 7, 9, 10, 11, 14, 16, 17, 22, 28, 29, 32, 33, 38, 40, 42, 43, 48, 53, 54, 55, 58, 59, 60, 61, 66, 68, 69, 77, 85, 88, 92, 93, 96, 104, 107, 108, 109, 112, 113, 118, 119, 127, 133, 143, 147, 149, 150, 151, 152, 153, 156, 157, 160, 164, 174, 180, 181, 186, 187, 188], "specifi": [1, 17, 20, 22, 25, 31, 32, 33, 36, 38, 39, 48, 51, 57, 58, 59, 60, 67, 69, 76, 79, 81, 82, 83, 91, 92, 93, 96, 112, 120, 126, 128, 129, 132, 133, 137, 149, 150, 151, 153, 157, 159, 160, 166, 187, 188], "speech": [4, 13, 88, 156, 175], "speech_to_text_picker_en": 1, "speed": [3, 6, 13, 81, 88, 93, 95, 129, 132], "speedscop": 60, "split": [21, 24, 88, 129, 160, 176], "spoof": [60, 69], "sporad": 93, "spread": 133, "spreadsheet": [2, 51, 161, 168], "spreed": [4, 8], "sprintf": 96, "sql": [60, 88, 111, 138, 148, 151], "sqlbkp": 146, "sqlbkp_": 140, "sqlite": [20, 25, 88, 121, 127, 128, 134, 135, 138, 151, 156], "sqlite3": [20, 60, 121, 140, 146], "sqlstate": 138, "squeez": 22, "src": [123, 131], "src_path": 98, "sse": [28, 31, 46, 88, 156], "sse_c_kei": 48, "ssh": [32, 37], "ssl": [28, 31, 33, 41, 59, 63, 64, 65, 69, 70, 88, 94, 118, 124, 127, 129, 156, 166, 167, 171], "ssl_certif": 129, "ssl_certificate_kei": 129, "ssl_context": [59, 60], "ssl_stapl": 129, "ssl_stapling_verifi": 129, "sslproxycheckpeercn": 166, "sslproxycheckpeernam": 166, "sslproxyengin": 166, "sslproxyverifi": 166, "sslrenegbuffers": 26, "sso": [32, 60], "ssrf": 126, "stabil": [12, 70, 134, 182, 183, 184], "stabilityai": 15, "stabl": [15, 60, 124, 133, 134, 137, 145, 168, 175, 186], "stable_bas": 56, "stablediffus": 15, "stack": [58, 133, 169], "stage": [60, 88, 121, 147, 186], "stai": [133, 148, 150, 155, 186], "stale": [40, 60, 143, 151, 153, 157], "stall": [60, 132], "stand": 188, "standalon": [4, 17, 169], "standalone_window": 88, "standard": [12, 20, 40, 48, 59, 60, 67, 69, 81, 85, 89, 92, 112, 120, 123, 126, 130, 133, 134, 142, 143, 150, 151, 153, 181, 182, 183, 187], "standup": 2, "staroffic": 60, "start": [3, 14, 15, 16, 18, 22, 29, 30, 38, 48, 53, 55, 56, 57, 58, 59, 60, 61, 66, 81, 92, 93, 96, 106, 112, 118, 123, 124, 125, 127, 130, 132, 133, 138, 142, 143, 145, 147, 148, 151, 152, 154, 162, 166, 170, 172, 180, 181, 182, 183, 184, 187, 188], "start_header_id": 5, "start_serv": 132, "startedat": 14, "startlimitburst": [15, 187], "startlimitinterv": [15, 187], "startmenushortcut": 92, "startpag": 60, "starttl": [60, 82, 88, 178], "startup": [59, 96, 99, 143, 164], "stat": [1, 3, 88], "state": [28, 44, 63, 77, 80, 85, 88, 118, 126, 146, 150, 151, 153, 156, 187], "statement": 151, "static": [12, 29, 60, 69, 126, 129, 132, 166, 179, 180, 181, 188], "statist": [1, 3, 118, 126, 153, 156], "statu": [14, 15, 17, 28, 41, 56, 57, 58, 59, 67, 75, 76, 80, 82, 88, 92, 98, 100, 110, 117, 126, 129, 136, 148, 150, 151, 153, 160, 167, 172, 186, 187], "status": 149, "status_cancel": 14, "status_fail": 14, "status_run": 14, "status_schedul": 14, "status_success": 14, "status_unknown": 14, "statuscod": [17, 75, 76, 82], "stdin": [60, 150], "stdout": [4, 153, 156], "step": [3, 8, 20, 22, 23, 41, 46, 55, 58, 60, 62, 63, 68, 80, 81, 88, 93, 95, 96, 98, 99, 108, 116, 118, 123, 127, 128, 132, 133, 136, 138, 141, 143, 147, 155, 156, 162, 166, 169, 170], "stephani": 157, "stereotyp": 9, "stick": 60, "still": [2, 3, 8, 20, 23, 25, 26, 30, 43, 47, 48, 50, 56, 57, 58, 59, 60, 64, 67, 80, 81, 83, 85, 88, 92, 95, 118, 126, 129, 130, 138, 143, 147, 152, 153, 154, 155, 180, 181, 182, 183, 184, 186, 187], "stilli": 185, "stolen": [80, 107], "stop": [5, 6, 26, 53, 56, 60, 67, 93, 96, 102, 138, 142, 143, 147, 156, 164, 166, 170], "stop_aft": 156, "storag": [3, 29, 31, 33, 34, 35, 37, 38, 39, 44, 45, 46, 57, 60, 65, 74, 81, 87, 88, 93, 98, 102, 110, 128, 130, 131, 132, 133, 134, 135, 138, 143, 149, 150, 157, 167], "storage43": 81, "storageclass": 48, "storagecrawljob": 3, "store": [0, 13, 19, 22, 28, 31, 32, 38, 40, 44, 45, 46, 47, 53, 59, 61, 64, 65, 67, 68, 70, 72, 77, 80, 81, 82, 88, 92, 95, 107, 108, 109, 111, 113, 116, 126, 128, 129, 131, 132, 135, 138, 149, 150, 151, 152, 157, 160, 181, 182, 183], "storecryptedpassword": 88, "str_ends_with": 96, "straight": [18, 92], "straightforward": 55, "strain": 118, "strategi": [23, 48, 107], "stream": [26, 40, 53, 56, 60, 96, 123, 134], "streamable_http": 2, "street": 2, "strength": 128, "strengthen": 70, "strict": [14, 58, 65, 88, 106, 129], "strictest": 77, "strictli": [96, 132, 133], "string": [1, 3, 5, 17, 29, 48, 50, 56, 60, 63, 69, 75, 76, 81, 96, 98, 110, 129, 149, 151, 157, 160, 163, 164, 165, 186, 187], "strip": [68, 77, 133, 157], "strive": 15, "strong": [86, 128, 164], "stronger": 131, "strongli": [38, 60, 64, 70, 93, 132, 133, 134, 143, 186], "strtotim": 153, "structur": [28, 29, 48, 60, 67, 81, 96, 151, 153, 187], "stt_whisper2": [1, 13, 15, 88], "stuck": 142, "studio": 60, "stuff": 99, "stuttgart": 157, "style": [11, 31, 60, 72, 174, 187], "su": [124, 150], "sub": [6, 76, 81, 177, 188], "subadmin": 88, "subdir": [88, 127], "subdirectori": [36, 40, 88, 129, 133, 153], "subdomain": [60, 69, 124, 126, 133, 166], "subfold": [33, 37, 38, 39, 92, 133, 138], "subgroup": 81, "subject": [28, 77, 88, 107, 108, 109, 112, 118], "submiss": [63, 187, 188], "submissionmessag": 187, "submit": 126, "submitcontentjob": 3, "submitmultipl": 187, "subnet": [60, 96], "subpag": 176, "subpath": 96, "subreddit": [174, 175], "subscrib": 112, "subscript": [12, 88, 115, 121, 126, 134, 168, 172, 186], "subsecond": 48, "subsequ": [92, 118, 133, 145, 154], "subset": 43, "substitut": [40, 60, 78], "substr": [60, 67, 96], "subsystem": 156, "subtitl": 15, "succe": [67, 92, 96], "succeed": [15, 147], "success": [17, 19, 20, 41, 58, 60, 67, 75, 76, 81, 95, 107, 110, 123, 124, 126, 128, 138, 142, 147, 153, 156, 160, 163, 165], "successfulli": [14, 41, 60, 78, 99, 134, 147, 152, 156, 157, 163, 165, 188], "suddenli": 3, "sudo": [1, 8, 15, 19, 20, 22, 23, 26, 28, 34, 40, 51, 56, 68, 73, 78, 80, 81, 83, 96, 107, 108, 111, 112, 113, 118, 121, 125, 130, 132, 133, 136, 138, 140, 142, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 163, 165, 167, 187], "suexec": 60, "suffer": 11, "suffici": [77, 123, 128, 132, 133, 138, 144, 156], "suffix": 128, "suggest": [14, 43, 60, 70, 96, 114, 119, 123, 131, 132, 133, 186], "suit": [12, 28, 96, 126], "suitabl": [45, 57, 59, 60, 95, 126, 132, 151, 156, 186], "sum": [123, 125, 132], "summar": [1, 5, 13, 15, 53, 88, 116, 156], "summari": [13, 15, 88, 111, 115, 132], "summaris": 53, "summary_bot": 8, "sun": 81, "super": [81, 85], "supersed": [60, 151], "superus": 124, "supervisor": [153, 163, 165], "supplement": 60, "supplementari": 133, "suppli": [59, 81, 88, 112, 116, 133, 147], "support": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 21, 22, 25, 28, 30, 31, 37, 38, 40, 41, 42, 45, 46, 47, 50, 54, 58, 59, 62, 66, 67, 68, 70, 72, 73, 75, 76, 77, 80, 81, 82, 88, 92, 93, 94, 95, 96, 97, 99, 101, 112, 116, 118, 119, 121, 123, 124, 126, 128, 129, 130, 131, 132, 133, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 151, 153, 156, 157, 158, 160, 161, 164, 168, 172, 173, 174, 178, 179, 180, 181, 182, 183, 184, 185, 187], "supporteddatabas": 88, "suppress": [19, 60, 67, 88, 153], "sure": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 18, 22, 23, 25, 26, 28, 33, 34, 38, 41, 43, 48, 58, 59, 60, 66, 68, 81, 83, 92, 93, 96, 101, 105, 108, 112, 114, 118, 123, 124, 126, 129, 132, 133, 134, 137, 138, 142, 143, 144, 146, 148, 150, 157, 166, 172, 178, 179, 180, 181, 182, 185, 186, 187], "surfac": 77, "surfer": 64, "surnam": [81, 96], "surround": 60, "surveyserv": 126, "surviv": 85, "suse": [134, 185], "suspect": 186, "suspend": [88, 111], "suspici": [15, 57, 58, 60], "sustain": [8, 138], "sv1b7krauqmf8qq": 133, "svg": [47, 60, 72, 129, 132, 133], "swap": [26, 29, 132], "swift": [36, 60, 88, 143, 153], "switch": [13, 16, 60, 81, 88, 113, 118, 126, 132, 150, 151, 152, 156, 169, 188], "symbol": 16, "symfoni": 150, "symlink": [60, 138], "symmetr": 29, "sync": [3, 18, 19, 22, 26, 40, 41, 43, 45, 60, 72, 85, 88, 91, 92, 114, 118, 128, 132, 143, 146, 150, 156, 187], "sync_xxxxxxx": 93, "synchron": [50, 60, 65, 88, 91, 93, 101, 112, 113, 119, 151, 153, 156], "synchronis": [88, 141], "syntax": [17, 51, 57, 60, 75, 76, 81, 82, 134, 150, 154, 157], "sys_nic": 132, "sysadmin": 121, "syslog": [60, 88, 96, 156], "syslog_tag": [67, 88], "syslog_tag_audit": [67, 88], "system": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 20, 22, 23, 28, 32, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 56, 57, 58, 59, 60, 63, 67, 70, 73, 77, 80, 81, 85, 87, 88, 92, 93, 99, 103, 107, 110, 111, 112, 114, 115, 118, 123, 124, 125, 127, 130, 131, 138, 142, 143, 144, 149, 150, 153, 159, 160, 162, 173, 174, 186], "system_addressbook_expos": 113, "system_prompt": [5, 14], "systemctl": [15, 56, 57, 59, 96, 123, 132, 163, 165, 166, 167, 187], "systemd": [53, 56, 60, 88, 99, 153, 156, 167], "systempl": 159, "systemtag": 187, "systran": 7, "sysus": 81, "sysvar_innodb_large_prefix": 60, "sysvsem": [130, 180], "t": [2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 18, 22, 23, 26, 31, 43, 44, 45, 56, 57, 59, 60, 62, 63, 66, 76, 77, 81, 88, 95, 99, 112, 118, 123, 126, 129, 131, 133, 137, 138, 140, 142, 143, 147, 149, 153, 166, 172, 187, 188], "tab": [88, 150, 160, 188], "tabl": [15, 19, 21, 22, 23, 25, 28, 29, 53, 58, 60, 63, 81, 82, 83, 92, 108, 112, 113, 118, 125, 127, 138, 144, 146, 151, 153, 154, 156, 157, 174, 175, 182], "tableid": 187, "tablespac": 128, "tag": [2, 6, 12, 16, 40, 43, 88, 101, 104, 126, 129, 137, 150, 153, 159, 160, 162], "tagassignedev": 187, "tagid": 187, "tagunassignedev": 187, "tail": [4, 129, 156], "tajik": 4, "take": [3, 6, 19, 22, 26, 29, 32, 41, 47, 52, 56, 57, 58, 59, 60, 69, 70, 80, 81, 82, 84, 85, 93, 96, 97, 120, 121, 124, 126, 129, 132, 133, 137, 142, 143, 145, 147, 148, 151, 152, 153, 160, 163, 165, 182, 187, 188], "taken": [3, 43, 57, 63, 70, 81, 96, 113, 151], "talk": [1, 5, 6, 7, 9, 10, 11, 13, 15, 16, 43, 59, 77, 88, 111, 133, 138, 173, 174, 175, 180, 188], "talk_bot": 8, "talo": 56, "tamper": [28, 147], "tape": 107, "tar": [60, 123, 125, 133, 142], "tarbal": [121, 133, 142, 156], "target": [15, 16, 28, 29, 55, 57, 60, 77, 81, 88, 92, 93, 126, 142, 150, 151, 152, 153, 156, 172, 187], "targetcalendardata": 187, "targetcalendarid": 187, "targetchunkuploaddur": 93, "targetshar": 187, "task": [0, 3, 4, 5, 6, 8, 10, 13, 20, 32, 44, 57, 65, 88, 110, 112, 119, 124, 133, 150], "task_id": 1, "task_type_id": 1, "taskprocess": [1, 14, 15, 88, 187], "tasktyp": 156, "tb": 85, "tbsua2ue86diod0s8f9j": 67, "tcp": [88, 96, 126, 129, 132], "te": 154, "team": [16, 18, 46, 48, 60, 65, 88, 111, 133, 145, 169], "team1": 76, "teamfoldernam": 48, "technic": [11, 12, 28, 40, 60, 81, 107, 137, 152, 188], "techniqu": 138, "technologi": [15, 70, 133, 145], "telegu": 4, "telephonenumb": 81, "tell": [20, 26, 30, 38, 70, 81, 96, 129, 138, 142], "telnet": 63, "temp": [26, 60, 93, 133], "tempdirectori": [26, 88, 143], "temperatur": 5, "templat": [5, 22, 46, 60, 65, 85, 88, 96, 129, 159, 161, 175], "template0": 22, "template1": [22, 146], "templatedirectori": 88, "temporari": [26, 57, 60, 65, 85, 88, 105, 157, 188], "temporarili": [58, 63, 67, 81, 83, 110, 153, 156], "tempt": 1, "ten": [40, 56, 80, 81, 119, 151], "tenant": [3, 36, 116], "tenantnam": [48, 60], "term": [12, 16, 36, 77, 88], "termin": [6, 28, 69, 70, 125, 129, 133, 152, 153, 167, 171], "terri": 154, "test": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 20, 22, 28, 53, 56, 58, 59, 65, 74, 77, 88, 93, 95, 96, 98, 100, 101, 118, 119, 126, 129, 131, 134, 136, 137, 138, 151, 153, 156, 160, 180, 184, 186, 187], "tester": 101, "testfil": 56, "testgroup": 76, "tex2image_stablediffusion2": 1, "text": [2, 3, 4, 5, 8, 9, 11, 12, 13, 18, 28, 43, 47, 51, 60, 63, 65, 81, 82, 88, 101, 110, 116, 126, 129, 133, 137, 138, 143, 150, 151, 156, 160, 161, 166, 168, 173, 174, 175, 180], "text2image_stablediffusion2": [13, 88], "text2speech_kokoro": [1, 13, 88], "text2text": [14, 156], "text_to_image_picker_en": 1, "textbas": 23, "textual": 3, "tflite": 129, "tga": 60, "thai": 5, "than": [1, 2, 3, 4, 5, 7, 8, 9, 12, 16, 26, 35, 38, 41, 43, 44, 45, 47, 48, 49, 53, 56, 58, 59, 60, 81, 85, 88, 92, 93, 107, 111, 112, 114, 116, 119, 123, 126, 128, 130, 132, 133, 134, 137, 138, 142, 146, 147, 150, 153, 156, 166, 169, 180, 182, 183, 186, 188], "thank": [2, 69, 186], "theft": 28, "thei": [0, 1, 2, 3, 4, 5, 8, 12, 15, 16, 18, 25, 27, 28, 30, 40, 41, 42, 43, 44, 45, 47, 50, 52, 53, 58, 59, 60, 61, 62, 63, 69, 71, 80, 81, 84, 85, 87, 88, 91, 92, 93, 95, 96, 101, 102, 103, 106, 107, 108, 110, 111, 112, 116, 118, 119, 125, 126, 128, 129, 132, 133, 134, 136, 138, 142, 143, 149, 151, 153, 155, 156, 157, 159, 160, 173, 182, 186], "them": [6, 7, 14, 15, 16, 22, 23, 26, 27, 28, 38, 41, 43, 47, 50, 52, 54, 60, 63, 64, 67, 69, 70, 71, 72, 81, 83, 85, 86, 92, 93, 95, 96, 101, 102, 107, 108, 110, 111, 112, 114, 118, 123, 125, 126, 129, 132, 133, 137, 138, 142, 143, 146, 148, 149, 151, 152, 153, 155, 156, 157, 159, 164, 165, 180, 188], "theme": [64, 65, 88, 140, 142, 146, 147, 150, 151, 160], "themingnam": 160, "themself": 77, "themselv": [43, 54, 57, 60, 70, 77, 101, 114], "theori": [5, 9], "therefor": [8, 12, 22, 26, 29, 32, 43, 47, 60, 67, 77, 81, 101, 102, 112, 113, 133, 135, 146, 148, 150, 174], "therein": 12, "thereof": 129, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 38, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 72, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 92, 93, 95, 96, 97, 98, 99, 101, 102, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 163, 164, 165, 166, 169, 170, 172, 174, 178, 180, 181, 182, 183, 184, 185, 186, 187, 188], "thing": [15, 60, 80, 126, 133, 140, 146, 147, 186], "think": [36, 138], "third": [12, 15, 16, 22, 28, 57, 78, 88, 106, 134, 142, 148, 160], "thisisanimportantvalu": 60, "thorough": 4, "thoroughli": 5, "those": [6, 12, 15, 16, 25, 26, 27, 28, 32, 38, 40, 43, 47, 48, 50, 53, 56, 60, 64, 68, 69, 70, 81, 85, 93, 96, 102, 108, 111, 112, 123, 126, 128, 129, 130, 134, 137, 138, 147, 148, 151, 152, 153, 156, 157, 173, 184, 186, 187], "though": [38, 39, 43, 56, 59, 88, 126, 129, 133, 137, 180], "thought": 18, "thousand": [119, 138], "thread": [4, 7, 10, 15, 60, 88, 115, 138], "threat": [28, 126], "three": [8, 40, 56, 57, 63, 67, 80, 95, 96, 116, 118, 121, 128, 146, 155, 157], "threshold": [58, 88, 116], "throttl": [58, 156], "through": [3, 4, 8, 12, 15, 26, 32, 40, 43, 47, 51, 58, 60, 63, 68, 69, 77, 81, 88, 92, 93, 95, 96, 103, 108, 110, 112, 116, 118, 123, 133, 138, 147, 150, 153, 156, 157, 168, 169, 171, 172, 186], "throughout": [29, 58, 186], "throughput": [7, 10, 60], "throw": 93, "thrown": 150, "thu": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 60, 63, 95, 126, 129, 133, 134, 148, 185], "thumbnail": [28, 41, 47, 60, 85, 160], "thumbnailphoto": 81, "thunderbird": [112, 113, 114, 118], "ti": [8, 43, 143], "ticket": [61, 147, 148, 174, 175], "tidewai": 138, "tiff": [47, 60, 133], "tighter": 77, "time": [2, 3, 6, 8, 14, 15, 22, 25, 26, 29, 38, 41, 43, 44, 45, 47, 49, 53, 54, 56, 57, 58, 59, 60, 63, 67, 69, 73, 77, 81, 83, 85, 93, 95, 101, 105, 107, 110, 111, 112, 113, 116, 117, 118, 123, 125, 126, 128, 129, 132, 133, 134, 142, 143, 145, 147, 148, 150, 151, 152, 153, 155, 156, 160, 161, 168, 182, 184, 186, 187], "timeout": [15, 26, 36, 41, 45, 48, 59, 60, 63, 88, 99, 124, 129, 132, 133, 142, 147, 149, 156, 187], "timer": 57, "timestamp": [14, 29, 67, 110, 114, 143, 156, 187], "timezon": [8, 57, 60, 67, 101, 130, 156], "tip": [46, 70, 74, 88, 127, 141, 182], "titl": [1, 2, 81, 110, 174, 187], "tl": [28, 60, 63, 69, 70, 82, 88, 95, 96, 118, 124, 126, 127, 129, 133, 160], "tld": [60, 70, 82, 96, 118, 124, 126, 149, 157], "tld_fullchain": 124, "tld_privat": 124, "tls_reqcert": 81, "tmp": [3, 4, 60, 72, 93, 118, 133, 147, 151, 153, 163, 165], "tmp_table_s": 22, "tmpdir": [60, 133], "tmux": 88, "to_gif_exampl": 98, "tocker": 60, "todai": 14, "togeth": [0, 2, 3, 49, 58, 60, 134, 138], "toggl": [53, 60, 72, 77, 81, 112, 113, 132, 138, 153], "token": [1, 2, 32, 58, 60, 65, 74, 88, 96, 106, 110, 111, 159, 160, 187, 188], "token_auth_activity_upd": 88, "token_auth_enforc": 88, "token_auth_token_retent": 73, "token_auth_wipe_token_retent": 73, "tom": 75, "toml": [69, 96], "tomorrow": 2, "too": [1, 22, 26, 38, 40, 52, 58, 59, 60, 93, 112, 113, 126, 128, 132, 133, 138, 142, 145, 180], "took": 118, "tool": [5, 12, 13, 15, 18, 20, 28, 29, 58, 64, 69, 70, 77, 81, 88, 89, 92, 93, 95, 98, 111, 116, 126, 131, 132, 138, 148, 164, 187], "toolbar": 160, "toolkit": 6, "tooltip": 81, "toot": [174, 175], "top": [1, 12, 16, 60, 64, 67, 70, 85, 138, 147, 148, 175, 187], "topic": [1, 28, 45, 60, 119, 133, 138], "total": [6, 29, 36, 60, 67, 81, 85, 87, 156, 157], "totalnumberofsynctokenstokeep": [112, 113], "totalsizelimit": 60, "totp": [80, 157], "touch": [124, 142], "toward": 60, "town": 76, "trace": [67, 132, 150], "trace_mod": 22, "track": [53, 88, 92, 93, 112, 113, 115, 118, 153, 160], "trade": 60, "traefik": 88, "traffic": [41, 58, 81, 88, 133, 166], "trail": [40, 50, 53, 154], "train": [5, 6, 7, 9, 10, 11, 12, 15, 57, 60], "transact": [26, 46, 59, 65, 88, 127, 130, 134, 138, 140], "transaction_isol": 22, "transaction_read_commit": 22, "transcrib": [2, 15, 175], "transcript": [1, 7, 10, 13, 88], "transfer": [37, 46, 60, 88, 107, 108, 111, 129, 132, 137, 142, 147], "transferincomingshar": [88, 153], "transient": 132, "transifex": 66, "transit": [60, 133, 138], "translat": [13, 27, 88, 115, 119, 130, 175], "translate2": [1, 4, 13, 15, 88], "transmit": [106, 110, 126, 188], "transp": 187, "transpar": [13, 15, 29, 58, 88], "transport": [2, 65, 81, 88, 93, 96, 116, 129, 134], "trash": [28, 29, 41, 46, 65, 85, 88, 110, 115, 118, 150, 151], "trashbin": [43, 49, 60, 88, 107, 138, 150, 151], "trashbin_retention_oblig": [49, 88, 107, 153], "trashcan": 40, "travers": 187, "treat": [38, 60, 69, 70, 81, 128, 129, 138], "tree": [2, 40, 81, 88, 132, 156], "tremend": 93, "tri": [18, 126, 128, 151, 152], "triag": 119, "trick": [74, 88, 127, 182], "tricki": 92, "trigger": [19, 40, 44, 53, 57, 58, 67, 76, 81, 85, 88, 113, 118, 132, 137, 138, 147, 153, 156, 180, 187, 188], "triplecheck": 172, "trixi": [134, 185], "trojan": 56, "troubl": [81, 138, 180], "troubleshoot": [13, 21, 46, 60, 65, 74, 88, 91, 115, 126, 127, 133, 141, 143, 148, 158, 168], "true": [3, 14, 15, 16, 17, 20, 22, 23, 28, 31, 41, 48, 53, 60, 63, 66, 67, 69, 75, 76, 77, 82, 84, 85, 87, 93, 101, 116, 118, 126, 129, 133, 138, 140, 148, 149, 150, 153, 156, 157, 160, 163, 164, 165, 167, 187, 188], "truena": [88, 127], "truncat": [29, 53, 60], "trust": [28, 46, 58, 60, 65, 68, 77, 88, 96, 110, 116, 126, 127, 147, 149, 156], "trusted_domain": [41, 69, 88, 128, 129, 143, 149, 180], "trusted_proxi": [58, 69, 88], "trustedcafil": 96, "try": [2, 25, 28, 40, 58, 59, 60, 63, 64, 70, 81, 93, 95, 96, 101, 118, 129, 131, 134, 137, 138, 142, 146, 147, 151, 172, 178, 186], "try_fil": 129, "trystack": 60, "ttf": [129, 163], "ttl": [22, 63, 88], "tty": 152, "tue": 63, "tuesdai": 2, "tune": [5, 88, 126, 127, 129, 130, 133], "tunisian": 4, "tunnel": [95, 96, 97], "turbo": 7, "turkish": 4, "turn": [26, 51, 53, 60, 71, 82, 88, 116, 133, 147, 156, 186, 188], "turnkei": [130, 133], "turnoffcertcheck": 82, "turnonpasswordchang": 82, "turnov": 53, "tutori": [119, 123, 124], "tweak": [23, 81], "tweet": 61, "twice": [60, 81], "twitter": [76, 77, 81], "twitterscop": 77, "two": [3, 4, 20, 26, 28, 36, 40, 41, 44, 47, 49, 56, 57, 58, 59, 60, 67, 69, 73, 74, 83, 85, 88, 92, 93, 95, 96, 108, 111, 112, 118, 119, 120, 126, 133, 147, 148, 149, 150, 153, 160, 163, 165, 168, 186, 187, 188], "twofactor_totp": 149, "twofactorauth": [80, 88], "txk4": 157, "txt": [28, 38, 50, 60, 71, 129, 131, 132, 187], "ty": 132, "type": [1, 2, 3, 10, 14, 15, 16, 17, 21, 23, 25, 26, 28, 40, 41, 42, 43, 46, 47, 48, 56, 57, 58, 63, 65, 68, 73, 80, 85, 87, 88, 96, 97, 101, 106, 110, 111, 113, 115, 116, 118, 125, 126, 129, 130, 132, 138, 142, 148, 149, 153, 157, 160, 163, 165, 167, 174, 178, 180, 183, 187, 188], "typescript": 188, "typic": [3, 28, 40, 57, 59, 60, 77, 81, 89, 92, 93, 106, 112, 118, 125, 128, 130, 132, 138, 143, 157, 186, 187], "u": [1, 2, 8, 12, 14, 15, 18, 19, 20, 22, 23, 26, 28, 34, 40, 48, 51, 53, 56, 57, 59, 60, 68, 72, 73, 77, 78, 80, 81, 83, 99, 107, 108, 111, 112, 113, 118, 121, 124, 130, 133, 136, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 163, 165, 180, 187], "ubo": 60, "ubuntu": [22, 28, 34, 51, 56, 59, 72, 81, 83, 88, 121, 127, 130, 132, 133, 134, 138, 140, 142, 145, 148, 150, 161, 162, 166, 169, 185], "uc": 133, "udp": 63, "ui": [12, 15, 40, 58, 60, 77, 82, 85, 92, 95, 97, 98, 114, 116, 138, 147, 148, 151, 156, 160], "uid": [29, 80, 81, 82, 83, 107, 108, 111, 118, 151, 154, 157, 187], "uid1": 157, "uid2": 157, "uidn": 157, "ukrainian": 4, "ultim": 58, "umask": 88, "un": [8, 28, 41], "unabl": [48, 60, 63, 66, 81, 88, 153], "unaffect": 60, "unansw": 116, "unauthent": [43, 77], "unauthor": [28, 172], "unavail": [3, 40, 51, 60, 80, 96, 130, 150, 156], "unavoid": 40, "unban": 126, "unchang": 3, "uncheck": [39, 81], "unclear": [7, 10], "uncom": [59, 129, 133], "uncondition": 69, "unconfigur": 48, "undefin": [2, 60], "under": [1, 2, 5, 6, 7, 10, 15, 16, 18, 22, 40, 47, 50, 54, 57, 58, 59, 60, 63, 67, 69, 77, 80, 81, 89, 93, 95, 106, 107, 109, 110, 123, 128, 129, 130, 132, 133, 136, 137, 138, 148, 153, 160, 172, 180, 186], "underli": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 53, 58, 60, 63, 130, 132, 133, 153], "underscor": [31, 48, 85, 153], "undershoot": 60, "understand": [1, 8, 11, 14, 28, 60, 120, 135, 138], "undertak": 6, "underutil": 133, "undesir": 60, "undetect": 138, "undo": 85, "unencrypt": [28, 63, 85, 88], "unencrypted_s": 138, "unevenli": [7, 10], "unexpect": [59, 60, 138, 172, 186], "unexpectedli": [60, 92], "unexplain": 133, "unfavor": 180, "unforeseen": 143, "unfortun": 57, "unfound": 111, "unhandl": 150, "unicod": [40, 60, 151], "unicodepwd": 81, "unifi": [1, 60, 171], "unified_search": 88, "uninstal": [3, 4, 88, 92, 127, 131, 157, 162], "uniqu": [48, 59, 60, 61, 64, 81, 85, 95, 96, 97, 98, 110, 126, 138, 156, 157, 187], "uniquememb": [81, 82], "unison": 93, "unit": [15, 57, 116, 156, 187], "univent": 133, "unix": [14, 45, 56, 60, 81, 88, 101, 102, 128, 132, 134, 187], "unix_domain_socket": 96, "unixpath": 96, "unixsocketperm": 59, "unknown": [75, 76, 88, 111, 153, 156, 160], "unless": [28, 29, 31, 48, 56, 58, 60, 63, 67, 77, 81, 92, 96, 107, 111, 116, 130, 133, 138, 150, 153, 164], "unlik": [59, 69, 93, 153], "unlimit": [26, 60], "unlink_on_trunc": 88, "unload": 92, "unlock": 28, "unnecessari": [20, 38, 47, 60, 81, 126], "unnecessarili": 57, "unoffici": 145, "unpack": [121, 125, 133, 142, 156], "unpredict": [12, 28], "unprotect": 160, "unreach": 81, "unrecover": 28, "unregist": [8, 88, 100], "unreli": [40, 60, 93, 116], "unrequir": 137, "unscan": [38, 60, 88, 153, 156], "unscann": 56, "unseal": 88, "unselect": 31, "unset": [60, 69, 81], "unshar": [88, 118, 153], "unsign": 153, "unspecifi": [60, 120], "unstabl": 149, "unsuccess": 60, "unsuccessfulli": 14, "unsupport": [31, 47, 60, 129, 148, 172, 174], "unsur": [3, 26, 129], "until": [1, 6, 15, 28, 40, 44, 49, 53, 56, 58, 60, 81, 85, 93, 96, 98, 106, 111, 125, 126, 128, 132, 146, 148, 151, 152, 153, 155, 156, 180, 183, 186], "untouch": 149, "untrust": [88, 126], "unus": [60, 73, 99, 181], "unusu": [1, 132], "unwant": [118, 132, 138], "unzip": [123, 125, 142], "up": [0, 1, 2, 3, 5, 14, 15, 19, 20, 22, 26, 28, 32, 40, 44, 49, 53, 56, 57, 58, 59, 60, 62, 65, 67, 80, 81, 85, 88, 93, 95, 96, 99, 108, 111, 112, 115, 118, 120, 122, 126, 127, 128, 132, 134, 135, 138, 142, 143, 146, 147, 153, 154, 155, 156, 157, 160, 167, 177, 178, 180, 182, 186], "upcom": [12, 61, 112, 186], "updat": [2, 3, 12, 14, 19, 20, 21, 27, 28, 30, 40, 43, 48, 51, 56, 57, 59, 62, 63, 70, 75, 76, 77, 81, 82, 88, 96, 100, 111, 112, 113, 114, 116, 119, 123, 125, 126, 127, 129, 130, 133, 134, 137, 141, 142, 143, 144, 145, 146, 149, 151, 152, 153, 154, 157, 159, 160, 162, 167, 180, 182, 185, 186, 187], "updatecheck": 88, "updatedirectori": 88, "updatenotif": 16, "updater_serv": 60, "upfront": 152, "upgrad": [23, 30, 51, 63, 69, 70, 88, 92, 124, 125, 130, 132, 137, 138, 141, 144, 150, 151, 152, 166, 177], "upload": [18, 28, 40, 41, 43, 45, 46, 48, 56, 60, 64, 77, 81, 85, 88, 93, 102, 104, 105, 110, 116, 124, 130, 132, 137, 138, 143, 145, 153, 160, 166, 180, 182, 183, 187], "upload_max_files": [26, 124, 133], "upload_tmp_dir": [26, 130], "uploadparts": [48, 60], "upon": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 81, 83, 107, 110, 126, 133, 138, 145], "upostgr": 22, "upper": 86, "upscal": [47, 48, 98], "upscaler_exampl": 98, "upstream": [111, 129, 132, 134], "upward": 132, "urandom": [65, 88], "urg": [12, 144], "urgent": [2, 61, 151], "uri": [60, 69, 81, 116, 118, 129, 138, 151, 156, 187], "url": [2, 3, 8, 16, 17, 33, 35, 36, 38, 39, 41, 48, 55, 57, 59, 63, 64, 67, 68, 70, 72, 75, 76, 79, 81, 82, 85, 87, 88, 92, 95, 96, 97, 98, 101, 108, 110, 112, 123, 124, 125, 127, 128, 129, 132, 136, 138, 141, 143, 151, 156, 159, 160, 166, 170, 172, 180, 184, 188], "url_discoveri": 69, "urlencod": 87, "urltyp": [48, 60], "urn": [60, 153, 187], "uroot": 22, "us": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 19, 20, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 48, 51, 53, 54, 55, 56, 57, 58, 61, 64, 65, 66, 68, 69, 71, 72, 74, 76, 77, 78, 79, 80, 82, 83, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 108, 110, 111, 112, 113, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 130, 131, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 151, 152, 153, 154, 155, 156, 157, 160, 161, 164, 165, 166, 168, 169, 170, 171, 172, 173, 174, 178, 181, 182, 183, 184, 186, 187, 188], "usabl": [12, 77], "usag": [4, 5, 7, 10, 12, 13, 28, 29, 46, 53, 56, 57, 60, 65, 67, 73, 77, 81, 88, 89, 107, 110, 126, 130, 132, 146, 150, 154, 156, 157, 172, 186], "use_legacy_base64_encod": 88, "use_path_styl": 48, "use_ssl": [48, 60], "usememberoftodetectmembership": 82, "usemultipartcopi": 48, "user": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 20, 24, 26, 27, 31, 32, 33, 34, 36, 38, 39, 41, 44, 45, 46, 48, 49, 50, 54, 55, 56, 57, 58, 59, 61, 63, 64, 65, 66, 67, 68, 69, 72, 73, 75, 78, 80, 82, 91, 92, 93, 96, 97, 98, 102, 103, 105, 106, 107, 108, 110, 111, 112, 115, 117, 118, 119, 120, 121, 123, 124, 125, 126, 129, 130, 131, 133, 134, 135, 137, 140, 143, 145, 146, 147, 148, 149, 150, 151, 153, 156, 159, 160, 162, 163, 164, 165, 168, 172, 173, 179, 180, 186, 187, 188], "user1": 43, "user123": 118, "user2": 43, "user_directori": 157, "user_id": [3, 111, 153, 157], "user_ini_additional_lin": 88, "user_ldap": [81, 82, 83, 154], "user_oidc": 84, "user_prompt": 5, "user_scope_dis": 103, "userag": 67, "userdeletedev": 150, "userdirectori": 40, "userdisplaynam": 160, "userid": [2, 14, 18, 28, 76, 81, 92, 111, 114, 118, 138, 160, 187, 188], "useridfilt": [14, 156], "usermod": [59, 133], "usernam": [3, 20, 22, 29, 32, 33, 36, 38, 39, 40, 41, 43, 48, 58, 60, 63, 76, 78, 81, 82, 85, 93, 106, 110, 111, 113, 120, 123, 125, 128, 133, 138, 140, 145, 146, 150, 153, 157], "userpassword": [81, 157], "usr": [56, 57, 59, 60, 63, 96, 124, 133, 150, 167], "usual": [3, 5, 7, 9, 10, 15, 25, 38, 43, 47, 48, 55, 58, 59, 60, 63, 64, 81, 95, 126, 130, 133, 135, 136, 137, 138, 142, 148, 180, 186, 187], "utc": [57, 60, 67, 117, 153, 156], "utf": 71, "utf8": [22, 60, 124, 134, 146], "utf8mb4": [20, 22, 23, 25, 88, 125, 140, 146, 151], "utf8mb4_0900_as_ci": 60, "utf8mb4_bin": [22, 60], "utf8mb4_general_ci": [23, 125, 146], "util": [6, 8, 54, 60, 67, 118, 123, 150, 186], "uuid": [81, 82, 154], "uusernam": 22, "uz": 89, "uzbek": 4, "v": [8, 15, 29, 38, 40, 56, 65, 77, 88, 96, 100, 129, 130, 132, 150, 153, 156, 163, 164, 165, 187], "v1": [3, 16, 17, 60, 67, 68, 75, 76, 82, 87, 96, 118, 129, 132, 147], "v12": [3, 4, 5, 7, 9, 11], "v2": [3, 7, 10, 31, 36, 48, 60, 77, 82, 129, 188], "v27": [142, 148], "v28": [15, 142, 148], "v3": [2, 5, 7, 9, 11, 48, 60], "v30": 15, "v4": [31, 101], "v6": 101, "v9": 28, "valid": [12, 22, 38, 50, 60, 66, 70, 74, 77, 81, 82, 88, 92, 93, 108, 128, 129, 130, 137, 143, 151, 153, 154, 156, 166, 180, 188], "valkei": 59, "valu": [1, 3, 8, 14, 15, 16, 20, 22, 23, 25, 26, 27, 28, 29, 41, 43, 44, 45, 47, 48, 49, 53, 56, 57, 59, 61, 63, 66, 67, 68, 69, 71, 72, 73, 75, 76, 81, 82, 83, 85, 88, 92, 95, 96, 97, 98, 103, 107, 112, 113, 116, 117, 118, 125, 126, 128, 129, 132, 133, 135, 138, 143, 151, 153, 154, 156, 160, 163, 164, 165, 180, 182, 183, 187], "value1": 60, "value2": 60, "vanish": 118, "var": [16, 22, 23, 26, 53, 56, 57, 60, 67, 78, 81, 83, 93, 96, 97, 107, 112, 121, 123, 124, 125, 126, 129, 130, 131, 132, 133, 135, 138, 142, 147, 148, 149, 150, 153, 156, 157, 164], "vari": [3, 4, 59, 77, 130, 133], "variabl": [3, 4, 5, 8, 22, 23, 29, 46, 58, 59, 65, 70, 88, 93, 98, 100, 126, 132, 134, 143, 157, 160, 162, 184, 187, 188], "variable_nam": [22, 23], "variant": 56, "varieti": [1, 71, 188], "variou": [1, 15, 47, 56, 58, 60, 64, 67, 70, 80, 81, 91, 93, 132, 138, 150, 159, 170, 173], "vboxsf": 133, "vcard": [110, 113, 114, 129], "vcf": [111, 113], "ve": [118, 132, 133, 177, 186], "vector": [3, 29, 51, 126, 183], "vector_db_data": 3, "vectordb": 3, "vehicl": 6, "veloc": 186, "vendor": 132, "verbatim": 143, "verbos": [56, 67, 93, 132, 150, 153, 156], "veri": [4, 57, 58, 59, 60, 64, 67, 81, 93, 138, 154, 188], "verif": [58, 63, 65, 88, 118, 137, 160], "verifi": [8, 12, 22, 23, 41, 53, 55, 56, 57, 59, 60, 64, 83, 88, 92, 93, 95, 99, 116, 123, 125, 126, 130, 131, 132, 133, 136, 137, 142, 143, 144, 147, 152, 155, 156, 160, 162, 172, 180, 186], "verify_bucket_exist": 48, "verify_p": 63, "verify_peer_nam": [59, 63], "verify_peer_off": 160, "versatil": 119, "version": [2, 3, 4, 6, 7, 8, 10, 11, 12, 15, 17, 22, 23, 24, 26, 28, 29, 30, 32, 33, 46, 48, 49, 52, 56, 57, 59, 63, 65, 67, 72, 73, 75, 76, 77, 81, 82, 85, 88, 95, 98, 110, 112, 113, 116, 117, 118, 123, 124, 125, 126, 129, 130, 132, 133, 136, 137, 142, 143, 144, 145, 147, 148, 149, 150, 151, 156, 160, 163, 164, 165, 166, 170, 175, 183, 184, 185, 187], "version_timestamp": 29, "versions_retention_oblig": [44, 88, 107, 153], "versionstr": [150, 156], "vevent": 187, "vhd": 133, "vhdx": 133, "vhost": 138, "via": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 27, 40, 43, 44, 46, 48, 49, 53, 56, 57, 58, 59, 60, 63, 65, 67, 68, 74, 77, 80, 83, 84, 85, 86, 87, 88, 92, 93, 94, 96, 101, 106, 107, 108, 110, 111, 112, 114, 116, 118, 121, 126, 127, 128, 129, 130, 132, 135, 136, 138, 141, 143, 148, 151, 153, 155, 157, 159, 160, 161, 162, 167, 174, 180, 181, 182, 183, 186, 187, 188], "video": [2, 15, 47, 60, 88, 119, 130, 134, 156, 174, 175], "vietnames": 4, "view": [1, 4, 16, 20, 52, 58, 60, 67, 85, 88, 93, 111, 138, 154, 156, 160], "viewer": [18, 60, 67, 160, 188], "virtual": [2, 48, 60, 88, 92, 96, 126, 127, 132, 135, 143], "virtualbox": 133, "virtualhost": [123, 124, 126, 133, 166], "viru": [56, 93], "virus": 56, "virus_db": 56, "visibl": [3, 15, 40, 53, 60, 69, 74, 81, 85, 88, 99, 110, 114, 117, 138, 146, 160, 180, 181, 182, 183, 186, 187], "visible\u00b9": 157, "visit": [57, 101, 116, 123, 133, 145, 147, 148], "visitor": [77, 126], "visual": 12, "vm": [132, 133, 148], "vmdk": 133, "vmp": 133, "vmware": 133, "vnd": 129, "vo": 124, "voic": 88, "volum": [56, 60, 98, 111, 134, 164], "volunt": 186, "vosk": 4, "vote": 2, "vp": [88, 127], "vpn": 96, "vram": [1, 3, 4, 5, 6, 7, 9, 11, 95], "vtodo": 187, "vtt": 129, "vulner": [126, 186], "vv": [150, 153], "vvv": [118, 138, 150, 153], "w": [28, 124, 126, 166, 171], "wa": [7, 8, 10, 12, 14, 15, 18, 20, 28, 40, 43, 50, 53, 57, 58, 60, 67, 69, 74, 76, 81, 88, 95, 96, 105, 110, 113, 116, 117, 118, 130, 133, 137, 138, 143, 144, 145, 146, 147, 148, 149, 152, 156, 157, 180, 181, 182, 183, 184, 187], "wai": [1, 7, 15, 22, 25, 32, 41, 43, 48, 56, 57, 58, 60, 63, 64, 68, 78, 81, 92, 93, 95, 96, 101, 108, 110, 112, 126, 129, 132, 133, 138, 142, 146, 148, 152, 164, 169, 181, 182, 183], "wait": [4, 8, 53, 60, 98, 132, 143, 148, 153, 155, 186, 188], "wait_timeout": [22, 60], "wal": 60, "walk": [123, 133], "walkthrough": 151, "want": [3, 5, 6, 7, 15, 16, 20, 22, 26, 31, 34, 40, 41, 43, 45, 47, 48, 51, 52, 53, 56, 58, 59, 60, 62, 63, 66, 67, 69, 72, 81, 83, 84, 85, 91, 92, 93, 95, 96, 99, 103, 108, 111, 113, 116, 119, 120, 123, 124, 126, 128, 131, 133, 134, 135, 136, 137, 138, 147, 148, 149, 150, 152, 153, 156, 157, 166, 172, 173, 177, 183, 186, 187, 188], "wantedbi": [15, 57, 187], "warm": 132, "warn": [4, 12, 28, 59, 60, 65, 67, 80, 81, 88, 93, 110, 123, 126, 128, 129, 132, 133, 137, 138, 144, 145, 150, 152, 153, 156, 172, 182], "wasm": 129, "watch": [58, 156], "watermark": [88, 159], "watsonx": [1, 8, 12, 13, 15, 88], "watt": 2, "we": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 20, 22, 25, 26, 38, 39, 44, 47, 57, 60, 63, 70, 81, 88, 93, 96, 118, 123, 124, 126, 128, 129, 130, 132, 133, 138, 144, 148, 150, 166, 172, 180, 182, 186, 188], "weak": 128, "weaken": 64, "weather": [2, 14, 126], "web": [2, 5, 7, 9, 10, 11, 16, 28, 39, 40, 41, 43, 46, 57, 58, 59, 64, 65, 66, 69, 72, 78, 82, 85, 88, 93, 95, 96, 99, 108, 114, 116, 118, 119, 123, 124, 125, 127, 128, 129, 130, 132, 139, 141, 142, 143, 148, 150, 152, 153, 155, 156, 157, 171], "webauthn": 88, "webcal": [60, 151], "webcalallowlocalaccess": 112, "webcron": [53, 88, 149, 156], "webdav": [17, 18, 26, 35, 40, 60, 70, 81, 88, 92, 93, 108, 111, 118, 126, 129, 133, 139, 156], "webdavf": 60, "webfing": [124, 138], "webhook": [88, 150, 188], "webhook_listen": [156, 187, 188], "webhookcal": 187, "webhooklisten": 187, "webinterfac": 129, "webm": 129, "webmail": 131, "webp": [60, 129, 132, 133, 181], "webp_qual": 132, "webpag": 129, "webroot": [8, 60, 69, 88, 127], "webserv": [26, 27, 57, 59, 60, 69, 88, 123, 126, 129, 133, 134, 169, 183], "websit": [14, 55, 64, 70, 76, 77, 81, 110, 126, 138], "websitescop": 77, "websocket": [95, 166], "webspac": 133, "wednesdai": 2, "week": [2, 44, 56, 186], "weekend": 3, "weekli": 53, "weight": [12, 15, 60], "welcom": [12, 88, 119], "well": [0, 1, 2, 3, 4, 5, 6, 12, 15, 29, 43, 47, 55, 56, 58, 59, 60, 63, 65, 69, 81, 85, 88, 118, 123, 124, 129, 131, 132, 133, 135, 138, 142, 143, 145, 147, 172, 177, 186, 187, 188], "went": [142, 143], "were": [2, 12, 14, 20, 28, 41, 53, 60, 63, 69, 112, 117, 130, 137, 138, 147, 148, 152, 153, 156, 180], "west": [31, 48], "wget": [123, 125, 136, 163, 165, 167, 180], "what": [2, 14, 26, 31, 40, 45, 48, 58, 60, 62, 70, 81, 83, 85, 88, 93, 95, 96, 108, 110, 111, 120, 126, 132, 138, 141, 153, 156, 188], "whatev": [20, 43, 60, 129, 147], "whatsoev": [29, 32], "when": [1, 2, 3, 4, 8, 13, 14, 15, 16, 18, 19, 20, 22, 26, 28, 29, 32, 33, 35, 38, 40, 41, 43, 44, 45, 48, 49, 51, 53, 56, 57, 58, 59, 60, 63, 66, 67, 69, 70, 71, 72, 80, 81, 82, 84, 85, 88, 92, 94, 95, 96, 101, 102, 105, 106, 107, 108, 110, 112, 113, 114, 116, 118, 120, 123, 125, 126, 128, 130, 131, 132, 133, 135, 136, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 164, 166, 172, 174, 180, 183, 186, 187, 188], "when_requir": [60, 183], "when_support": 60, "whenev": [40, 43, 44, 132, 138, 186, 187], "where": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 28, 29, 30, 32, 38, 56, 57, 58, 59, 60, 63, 67, 77, 81, 88, 92, 93, 95, 96, 111, 112, 114, 116, 123, 125, 126, 133, 135, 136, 138, 142, 144, 147, 150, 151, 152, 153, 155, 156, 160, 172, 173, 184, 186, 187, 188], "wherev": [91, 143], "whether": [2, 3, 5, 6, 7, 9, 10, 11, 22, 38, 40, 60, 63, 77, 80, 82, 85, 92, 95, 101, 106, 114, 116, 126, 129, 132, 135, 149, 152, 153, 154, 156, 157, 186], "which": [1, 2, 3, 5, 7, 8, 12, 15, 16, 20, 22, 25, 26, 28, 29, 31, 32, 38, 40, 41, 43, 44, 45, 48, 49, 50, 51, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 67, 68, 69, 70, 71, 73, 76, 80, 81, 82, 85, 92, 93, 95, 96, 97, 99, 101, 108, 110, 114, 116, 118, 123, 124, 126, 129, 130, 131, 132, 133, 134, 137, 138, 143, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 163, 167, 169, 173, 174, 182, 183, 184, 186, 187, 188], "whichev": [60, 69, 153], "while": [1, 4, 11, 15, 19, 28, 38, 40, 44, 47, 48, 54, 56, 58, 60, 69, 77, 81, 101, 118, 126, 132, 133, 143, 145, 147, 148, 149, 150, 151, 155, 186, 187], "whisper": [13, 15, 88, 175], "whiteboard": 15, "whitelist": [16, 58, 92, 128], "whitespac": [92, 154], "who": [2, 3, 12, 14, 28, 31, 34, 38, 40, 43, 53, 60, 67, 69, 77, 81, 85, 110, 113, 114, 121, 138, 151, 156, 157, 160, 187], "whole": [39, 88, 95, 96, 112, 118, 123, 127, 146], "whom": [12, 110], "whose": [44, 53, 67, 153, 187], "why": [38, 64, 88, 111, 118, 153], "wide": [28, 60, 80, 110, 126, 132, 156, 161], "widenetworkaddress": 96, "wider": 95, "widespread": 186, "widget": [61, 173, 174], "width": 60, "wiki": [60, 133, 145], "wikipedia": 60, "wildcard": [60, 128, 154], "win": 56, "windmil": 88, "window": [3, 15, 38, 44, 46, 56, 60, 81, 85, 88, 91, 93, 107, 119, 127, 134, 182, 187], "wipe": 73, "wise": 118, "wish": [22, 28, 37, 54, 59, 60, 85, 93, 112, 128], "within": [12, 22, 29, 32, 40, 43, 50, 55, 58, 60, 67, 69, 70, 72, 81, 93, 97, 111, 112, 113, 114, 119, 126, 129, 130, 132, 134, 135, 137, 138, 142, 150, 151, 153, 157, 160, 186], "without": [6, 15, 27, 28, 29, 38, 40, 43, 44, 49, 53, 54, 56, 57, 58, 60, 67, 68, 69, 70, 71, 73, 81, 85, 88, 92, 94, 95, 96, 97, 102, 106, 107, 108, 111, 112, 113, 116, 126, 128, 130, 132, 133, 138, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 165, 169, 174, 178, 180, 181, 187], "wizard": [22, 41, 60, 63, 82, 88, 121, 123, 124, 127], "wjalrxutnfemi": 153, "woff2": 129, "won": [15, 43, 60, 81, 112], "wopi": [88, 163, 164, 165, 166, 167, 172], "wopi_en": 164, "word": [7, 51, 77, 92, 130], "work": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 15, 16, 18, 23, 28, 32, 38, 43, 45, 50, 53, 57, 59, 60, 63, 64, 65, 66, 69, 70, 78, 79, 80, 81, 85, 88, 92, 93, 95, 98, 101, 102, 112, 119, 124, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 142, 144, 145, 148, 149, 150, 151, 154, 156, 157, 169, 172, 173, 178, 187], "workaround": [26, 28], "worker": [0, 3, 15, 59, 88, 132, 164, 187, 188], "workflow": [65, 88, 92, 102, 150, 157, 187], "workflowengin": [67, 103, 156], "workload": [45, 95], "workspac": [65, 88], "workspace_avail": 71, "world": [1, 4, 5, 7, 9, 10, 12, 96, 186], "worm": 56, "worri": 3, "wors": [60, 132], "worst": [15, 93], "worthi": 58, "would": [3, 5, 14, 15, 16, 22, 25, 28, 38, 40, 47, 54, 57, 58, 60, 69, 81, 95, 96, 99, 112, 113, 118, 129, 138, 143, 144, 146, 147, 149, 153, 170, 180], "wrap": [152, 156], "wrapper": [63, 150], "writabl": [16, 34, 50, 60, 133, 143, 147, 151, 152, 153], "write": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 24, 59, 60, 63, 67, 68, 81, 88, 92, 93, 112, 116, 119, 123, 127, 133, 137, 147, 149, 152, 153, 160, 188], "writeabl": [16, 126], "written": [3, 29, 30, 60, 67, 92, 95, 110, 113, 118, 126, 128, 143, 151, 153, 188], "wrong": [14, 28, 43, 60, 79, 81, 137, 138, 142, 144, 153, 172], "wsdlcach": 129, "wss": [4, 166], "wurst": 118, "www": [1, 8, 15, 19, 20, 23, 26, 28, 34, 40, 51, 53, 55, 56, 57, 59, 60, 67, 68, 73, 78, 80, 81, 83, 87, 107, 108, 111, 112, 113, 118, 120, 121, 123, 124, 125, 126, 129, 130, 131, 133, 135, 136, 138, 140, 142, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 167, 169, 184, 187], "wwwhomepag": 81, "wwwrun": [57, 150], "w\u00fcrzburg": 2, "x": [6, 17, 18, 26, 38, 47, 51, 53, 60, 64, 67, 69, 75, 76, 77, 81, 82, 87, 92, 96, 101, 123, 125, 126, 128, 129, 138, 144, 150, 183, 184, 186, 187], "x11": 67, "x64": 92, "x86": [4, 6, 11, 132], "x86_64": [3, 4, 5, 7, 9, 10, 11, 67], "xbitmap": 60, "xcal": 151, "xeon": [7, 10], "xeu": [15, 187], "xhtml": 129, "xjf": 142, "xjvf": 125, "xl": [15, 168], "xlii": 82, "xloc": 129, "xlsx": [161, 168], "xml": [60, 88, 98, 118, 125, 129, 130, 132, 151, 159, 167, 170, 187], "xmlreader": 130, "xmlwriter": 130, "xoauth2": [63, 88, 115], "xss": 183, "xtradbinnodb": 60, "xxx": 29, "xxxxxxxxxx": 48, "y": [19, 47, 60, 67, 81, 83, 92, 123, 125, 126, 140, 142, 147, 148, 152, 153, 156, 163, 165, 184], "ye": [15, 38, 43, 60, 72, 77, 81, 82, 85, 92, 103, 106, 112, 117, 138, 144, 149, 153, 157, 172], "year": [73, 134, 186], "yellow": [15, 40, 41, 81, 88], "yet": [1, 3, 4, 15, 54, 60, 65, 68, 81, 88, 92, 137, 143, 152, 153, 155, 156, 175], "yield": 60, "yml": 160, "york": 2, "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 78, 79, 80, 81, 83, 84, 85, 86, 88, 91, 92, 93, 95, 96, 98, 99, 101, 102, 103, 105, 107, 108, 110, 111, 112, 113, 116, 118, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 166, 167, 172, 177, 180, 181, 182, 183, 184, 185, 186, 187, 188], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 19, 20, 22, 23, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 77, 78, 79, 80, 81, 83, 84, 86, 88, 91, 92, 93, 94, 95, 96, 99, 101, 106, 107, 108, 109, 110, 111, 112, 114, 116, 117, 121, 123, 124, 125, 127, 128, 129, 130, 131, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 160, 161, 162, 163, 164, 165, 166, 170, 172, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188], "your_nextcloud_url_reachable_from_inside_dock": 8, "yourdomain": [118, 172], "yourself": [5, 56, 92, 126, 147], "yourserv": 93, "yourswifthost": 60, "youtub": [2, 119], "yum": [56, 123], "yyyi": [81, 151], "yyyymmdd": 81, "z": [85, 92, 114, 123, 125, 126, 142, 148, 184], "z0": 81, "za": 81, "zammad": [174, 175], "zend": 59, "zero": [29, 157], "zip": [56, 85, 93, 101, 111, 123, 125, 130, 142, 147], "zlib": 130, "zone": [96, 117, 123], "zsh": 150, "zshrc": 150, "\u00b2": 157, "\u00b9": 157}, "titles": ["AI as a Service", "Nextcloud Assistant", "App: Context Agent (context_agent)", "App: Context Chat", "App: Live Transcription and Translation in Nextcloud Talk (live_transcription)", "App: Local large language model (llm2)", "App: Recognize", "App: Local Whisper Speech-To-Text (stt_whisper2)", "App: Summary Bot (Talk chat summarize bot)", "App: Local Image Generation (text2image_stablediffusion2)", "App: Local Text-To-Speech (text2speech_kokoro)", "App: Local Machine translation 2 (translate2)", "Legal: Compliance with EU AI Act", "Artificial Intelligence", "Insight and debugging", "Overview", "Apps management", "Apps management API", "Collectives", "BigInt (64bit) identifiers", "Converting database type", "Database configuration", "Database configuration", "Enabling MySQL 4-byte support", "Replication", "Splitting databases", "Uploading big files > 512MB", "Providing default files", "Server-side Encryption", "Server-side encryption details", "Server-side encryption migration", "Amazon S3", "External Storage authentication mechanisms", "FTP/FTPS", "Local", "Nextcloud", "OpenStack Object Storage", "SFTP", "SMB/CIFS", "WebDAV", "External Storage", "Configuring Federation Sharing", "File conversion", "File Sharing", "Controlling file versions and aging", "Transactional file locking", "File sharing and management", "Previews configuration", "Configuring Object Storage as Primary Storage", "Deleted Items (trash bin)", "Windows compatible filenames", "Mimetypes management", "Monitoring", "Activity app", "Administration privileges (Delegation)", "Android Deep Link Handling", "Antivirus scanner", "Background jobs", "Brute force protection", "Memory caching", "Configuration Parameters", "Dashboard app", "Domain Change", "Email", "Linking external sites", "Nextcloud configuration", "Language & Locale", "Logging", "OAuth2", "Reverse proxy", "Warnings on admin page", "Text app", "Theming", "Authentication", "User management", "Instruction set for groups", "Instruction set for users", "Profiles", "Resetting a lost admin password", "Resetting a user password", "Two-factor authentication", "User authentication with LDAP", "The LDAP configuration API", "LDAP user cleanup", "User authentication with OpenID Connect", "User management", "User password policy", "User provisioning API", "Table of contents", "Energy consumption", "Declarations", "Desktop Clients", "Desktop Client Deployment and Setup", "Troubleshooting", "Advanced Deploy Options", "AppAPI and External Apps", "Deployment configurations", "Managing Deploy Daemons", "Managing ExApps", "Test Deploy Daemon", "ExApps management", "Files access control", "Automated tagging of files", "Flow configuration", "Flow", "Retention of files", "Cookies", "Data retention", "Helpful apps", "GDPR compliance", "Personal data stored", "Responding to data subject requests", "Calendar / CalDAV", "Contacts / CardDAV", "Contacts Interaction", "Groupware", "Mail", "Out-of-office feature", "Troubleshooting", "Introduction", "Automatic setup", "Installing from command line", "Deployment recommendations", "Example installation on CentOS 8", "Example installation on OpenBSD", "Example installation on Ubuntu 24.04 LTS", "Hardening and security guidance", "Installation and server configuration", "Installation wizard", "NGINX configuration", "Preparing PHP", "SELinux configuration", "Server tuning", "Installation on Linux", "System requirements", "Uninstallation", "Patching Nextcloud", "Code signing", "General troubleshooting", "Issues and troubleshooting", "Backup", "Maintenance", "Upgrade manually", "Migrating to a different server", "Migrating from ownCloud", "Upgrade via snap packages", "Restoring backup", "Upgrade via built-in updater", "How to upgrade", "Apps, background jobs & config commands", "Using the occ command", "DAV & database commands", "Encryption commands", "Files commands", "LDAP commands", "OCM commands", "System & maintenance commands", "User & group commands", "Collabora Online", "Configuration", "Configuration", "Nextcloud Office", "Installation", "Installing on Debian 12", "Installing via Docker", "Installing on Ubuntu 24.04 LTS", "Installation example with Docker", "Installation example on Ubuntu 24.04", "Office", "Installation", "Migration from Collabora Online", "Reverse proxy", "Troubleshooting", "Reference management", "Link previews", "The Smart Picker", "Release notes", "Release notes", "Upgrade to Nextcloud 26", "Upgrade to Nextcloud 27", "Upgrade to Nextcloud 28", "Upgrade to Nextcloud 30", "Upgrade to Nextcloud 31", "Upgrade to Nextcloud 32", "Upgrade to Nextcloud 33", "Upgrade to Nextcloud 35", "Maintenance and release schedule", "Webhook Listeners", "Windmill Workflows"], "titleterms": {"": [76, 85], "04": [125, 165, 167], "1": [69, 163, 165], "10": 129, "11": 55, "12": [55, 163], "15": 111, "16": 111, "17": 111, "18": 111, "1st": [133, 145], "2": [11, 69, 123, 132, 163, 165], "20": 111, "2006": 22, "2024": 89, "2025": 89, "2026": 89, "24": [125, 165, 167], "26": 178, "27": 179, "28": 180, "3": [96, 129, 163, 165], "30": 181, "31": 182, "32": 183, "33": 184, "35": 185, "3rdparti": 138, "4": [23, 163, 165], "5": [163, 165], "502": 129, "512mb": 26, "6": [163, 165], "64bit": 19, "7": 163, "8": [123, 124], "No": 92, "Not": [28, 137], "The": [58, 68, 70, 82, 114, 175], "To": [1, 7, 10, 15], "__host": 70, "about": 56, "abov": 55, "absenc": 151, "abus": 116, "access": [3, 22, 68, 69, 70, 101, 111, 126, 129, 131, 159], "accessible_featur": 60, "account": [92, 108, 110, 116, 118, 157], "account_manag": 60, "act": 12, "action": [6, 102, 126], "activ": [53, 58, 60, 81, 107, 110, 155, 181, 182, 183], "activity_expire_dai": 60, "activity_use_cached_mountpoint": 60, "ad": 116, "add": [68, 76, 137, 151, 156, 157, 167], "addendum": 5, "addit": [12, 59, 67, 81, 97, 133, 159], "address": [58, 63, 85, 113, 114, 126, 179, 183], "addressbook": [151, 153], "addus": 157, "adjust": 26, "admin": [53, 67, 70, 78, 126, 156], "admin_audit": 67, "administr": [54, 81, 85, 113], "advanc": [43, 67, 81, 92, 94, 98, 160], "advantag": 134, "after": [53, 92, 138, 146], "ag": [44, 105], "agent": [1, 2, 15, 184], "ai": [0, 1, 6, 8, 11, 12, 15], "aio": [96, 97], "ajax": 57, "alarm": 112, "alert": 116, "alias": 51, "all": [28, 60, 63, 96, 120, 126, 152], "allow": [18, 40, 70, 112, 131], "allow_custom_share_fold": 60, "allow_disabled_password_enforcement_group": 60, "allow_local_remote_serv": 60, "allow_user_to_change_display_nam": 60, "allowed_admin_rang": 60, "allowed_user_ag": 60, "allowselfsignedcertif": 60, "allowsymlink": 60, "also": 77, "altern": [5, 7, 60], "amazon": 31, "an": [17, 63, 68, 70, 84, 149], "android": 55, "ani": 129, "anoth": 43, "answer": [163, 165], "anti": 116, "antiviru": [56, 156], "anymor": 137, "apach": [26, 123, 133, 166], "apache2": 69, "apcu": 59, "api": [16, 17, 82, 87], "app": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 28, 53, 56, 58, 60, 61, 63, 67, 71, 73, 88, 95, 108, 132, 134, 136, 137, 138, 149, 153, 159, 160, 166, 181, 182, 187], "app_api": [181, 182, 183], "appapi": [95, 181, 182, 183], "appcodecheck": 60, "appear": [72, 174], "appli": 136, "applic": [68, 130, 153], "approach": [92, 148], "approv": 188, "apps_path": 60, "appsallowlist": 60, "appstoreen": 60, "appstoreurl": 60, "ar": [40, 53, 70, 114], "architectur": 134, "archiv": 93, "argument": [97, 98], "around": 22, "arrai": 149, "articl": 111, "artifici": [2, 13], "ask": [15, 172], "assetlink": 55, "assign": [102, 157], "assist": 1, "attach": 116, "attempt": [60, 156], "attribut": 81, "audienc": 119, "audit": [67, 110], "auth": [60, 157], "auth_availability_delai": 60, "authent": [32, 38, 73, 80, 81, 84, 116, 157, 188], "author": 63, "auto": 3, "auto_logout": 60, "autocomplet": 150, "autoconfig": [118, 128], "autom": [73, 102, 181], "automat": [92, 120, 128], "avail": [40, 101, 102], "avatar": [81, 157], "avoid": 129, "awai": 22, "azur": [48, 116], "backend": [15, 28, 40, 60, 112, 153], "background": [44, 49, 56, 57, 81, 112, 116, 132, 133, 149, 156], "background_jobs_expiration_dai": 60, "backtrac": 60, "backup": [28, 48, 81, 107, 140, 146], "bad": [28, 129], "balanc": 58, "bare": 96, "base": [32, 59, 67, 132, 147], "basic": [67, 93], "batch": 147, "bearer": 84, "becom": 77, "befor": [28, 43], "behavior": [77, 92], "behind": 69, "being": 53, "below": 55, "beta": 186, "better": 53, "between": [43, 188], "beyond": 63, "big": 26, "bigint": [19, 151], "bin": [49, 60, 107, 112, 153], "binary_search_path": 60, "birthdai": [112, 151], "blob": 48, "block": [29, 101, 188], "book": [113, 114, 179, 183], "bookmark": 2, "bot": 8, "brand": 72, "breakdown": 67, "broadcast": 156, "browser": 134, "brute": 58, "bruteforc": [60, 156], "bucket": 48, "bug": [138, 186], "build": 188, "built": 147, "bulkupload": 60, "button": 112, "byte": 23, "c": 48, "cach": [59, 60, 70, 81, 130, 132, 151, 157], "cache_app_config": 60, "cache_chunk_gc_ttl": 60, "cache_path": 60, "caddi": 69, "caldav": [70, 112, 151], "calendar": [2, 112, 118, 138, 151, 187], "call": 110, "can": [22, 63, 77, 175, 188], "candid": 186, "cannot": 28, "canon": 159, "capabl": 63, "carddav": [70, 113], "carddav_sync_request_timeout": 60, "carddav_sync_request_trunc": 60, "case": [38, 92], "cento": 123, "certif": [40, 63, 81, 89, 156], "chang": [40, 41, 62, 85, 92, 138, 151, 152, 177, 184], "changelog": 177, "channel": [60, 186], "charset": 151, "chat": [1, 3, 8, 15, 110], "check": [29, 30, 40, 70, 99, 153, 154, 156, 180, 183], "check_data_directory_permiss": 60, "check_for_working_htaccess": 60, "check_for_working_wellknown_setup": 60, "choic": 128, "choos": 92, "chroot": 124, "chunk": [26, 182], "chunked_upload": 60, "cif": [38, 131], "cipher": 60, "circl": 2, "citrix": 93, "clamav": 56, "clean": [73, 151, 152, 181], "cleanup": [83, 153, 156, 157], "clear": [151, 157], "cli": [60, 72, 97, 130], "client": [40, 72, 91, 92, 93, 134, 146], "close": 93, "cloud": [26, 60, 138], "clue": 129, "cluster": [59, 60], "code": [60, 137, 156], "collabor": 105, "collabora": [158, 159, 166, 170], "collat": 60, "collect": [18, 88], "column": 151, "com": 118, "combin": 2, "command": [3, 16, 22, 28, 50, 58, 93, 113, 121, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160], "comment": [60, 132], "commit": [22, 70], "common": [92, 101, 105, 138, 160], "commun": 96, "comparison": 28, "compat": [50, 153], "complet": 128, "complianc": [12, 109], "compon": [119, 163], "compound": 67, "compress": 132, "condit": [60, 67, 69], "config": [59, 63, 77, 93, 126, 149, 153, 154, 156, 160], "config_is_read_onli": 60, "configfilemod": 60, "configur": [1, 3, 5, 18, 21, 22, 26, 40, 41, 47, 48, 53, 55, 56, 59, 60, 61, 63, 64, 65, 67, 70, 72, 77, 81, 82, 88, 96, 103, 116, 120, 126, 127, 129, 130, 131, 132, 133, 149, 159, 160, 166, 167, 170, 178, 179, 180, 181, 182, 183], "confirm": 56, "connect": [59, 81, 84, 93, 118, 126, 188], "connectivity_check_domain": 60, "connector": [130, 160], "consequ": 50, "consider": [32, 68], "consumpt": 89, "contact": [2, 113, 114, 118, 138, 151], "contain": [96, 99], "content": [18, 88], "context": [1, 2, 3, 15], "context_ag": 2, "contrib": 163, "control": [3, 44, 101, 152], "convers": [20, 42, 151], "convert": [20, 151], "cookbook": 2, "cooki": [70, 106], "cookie_domain": 60, "copi": 153, "copied_sample_config": 60, "core": [60, 93, 119, 153], "count": [181, 182, 183], "cpu": 134, "creat": [22, 41, 43, 55, 75, 82, 85, 93, 151, 153, 154, 163, 165, 188], "creation": [44, 128, 151], "critic": 177, "cron": [57, 124, 132, 156], "csrf": 60, "css": 129, "csync": 93, "current": 2, "custom": [2, 16, 72, 112, 147, 159, 160], "customclient_desktop": 60, "cybersecur": 12, "daemon": [95, 96, 97, 99], "dashboard": 61, "data": [3, 18, 28, 48, 53, 60, 75, 76, 107, 108, 110, 111, 112, 113, 114, 118, 120, 126, 128, 138, 146, 151, 152, 153, 156, 157, 164], "databas": [20, 21, 22, 25, 53, 60, 70, 118, 120, 123, 124, 128, 130, 131, 132, 134, 140, 146, 151, 163, 165, 182], "datadirectori": [60, 138], "date": 43, "dav": [151, 178], "davstorag": 60, "db": [60, 151, 156], "dbdriveropt": 60, "dbhost": 60, "dbname": 60, "dbpassword": 60, "dbpersist": 60, "dbreplica": 60, "dbtableprefix": 60, "dbtype": 60, "dbuser": 60, "debian": 163, "debug": [14, 60, 63, 67, 93, 126, 132, 138, 150], "deck": 2, "declar": 90, "decreas": 38, "decrypt": [28, 29, 152], "dedic": [67, 126], "deep": [40, 55], "default": [27, 43, 60, 66, 67, 71, 77, 96, 116, 152, 159, 181, 182, 184], "default_certificates_bundle_path": 60, "default_languag": 60, "default_local": 60, "default_phone_region": 60, "default_property_scop": 60, "default_timezon": 60, "defaultapp": 60, "defin": 69, "definit": 28, "delai": 38, "deleg": [54, 116, 156], "delet": [49, 60, 75, 76, 82, 83, 85, 114, 149, 151, 153, 154, 156, 157], "demand": 67, "demot": 76, "deni": 101, "depend": [18, 153], "deploi": [94, 95, 96, 97, 98, 99], "deploy": [59, 92, 96, 122, 126], "deployconfig": 97, "deriv": 29, "desktop": [40, 60, 91, 92, 134], "detail": 29, "detect": [6, 40, 56, 129], "determin": 63, "dev": [70, 126], "develop": 119, "diagnost": 60, "did": 137, "differ": [48, 63, 143], "directori": [16, 59, 81, 120, 126, 128, 131, 138], "disabl": [17, 28, 47, 53, 56, 60, 70, 71, 76, 77, 80, 85, 92, 98, 116, 126, 138, 151, 152, 157], "disallow": 131, "discoveri": [69, 138], "disk": 6, "dispatch": 187, "displai": 41, "distinct": 92, "distinguish": 43, "distribut": [60, 170], "dmz": 126, "do": [137, 147, 174], "docker": [95, 96, 164, 166, 170], "document": 15, "documentation_url": 60, "doe": [70, 147, 174], "dokuwiki": 18, "domain": [62, 63, 69, 118, 126, 128, 129, 138], "don": 28, "down": [77, 137], "downgrad": 186, "download": [99, 147, 163, 165], "drop": [43, 108, 134, 152], "due": 53, "dump": 93, "duplic": 81, "dure": [44, 148], "edit": [71, 75, 76, 119, 157, 159], "editor": 160, "email": [53, 63, 76, 85, 178], "embed": [60, 64], "empti": [70, 154], "enabl": [16, 17, 23, 28, 40, 50, 53, 56, 60, 61, 63, 76, 80, 85, 98, 99, 126, 131, 132, 133, 150, 152, 156, 157, 159, 163, 183], "enable_lazy_object": 60, "enable_mail_link_password_expir": 60, "enable_non": 60, "enable_preview": 60, "enable_share_accept": 60, "enable_share_mail": 60, "enabledpreviewprovid": 60, "encod": [40, 71], "encrypt": [28, 29, 30, 48, 56, 60, 63, 132, 133, 138, 152], "end": [6, 186], "endpoint": 184, "energi": 89, "enforc": [80, 157], "enforce_them": 60, "ensur": 126, "entri": 67, "envelop": [29, 187], "environ": [60, 94, 133, 150, 164], "erasur": 111, "error": [22, 28, 93, 129, 137, 138], "errorlog": 67, "establish": 20, "ethic": [6, 8, 11, 15], "eu": 12, "even": 63, "event": [112, 118, 151, 187], "everyth": 56, "exampl": [17, 58, 60, 67, 69, 75, 76, 82, 92, 97, 101, 102, 105, 112, 113, 120, 123, 124, 125, 132, 151, 166, 167, 188], "exapp": [95, 96, 98, 100], "exclud": [53, 58], "execut": [102, 156], "exist": [18, 77], "expand": 183, "expect": 151, "experi": 60, "expert": 81, "expir": [43, 53, 153], "explain": 67, "export": [112, 118, 151, 153, 156], "expos": 179, "extens": [71, 89], "extern": [28, 32, 40, 48, 53, 64, 95, 101, 133, 153, 159], "external_storag": 60, "face": 6, "factor": [47, 80, 157], "fail": [118, 129], "fail2ban": [58, 126], "failur": [38, 92], "fair": 138, "faq": [77, 95, 137, 188], "faster": 132, "featur": [15, 92, 117], "feder": [26, 41, 60, 112, 138, 153], "field": [67, 76, 77], "file": [2, 3, 26, 27, 28, 29, 30, 38, 40, 42, 43, 44, 45, 46, 53, 56, 60, 67, 70, 71, 88, 93, 101, 102, 105, 107, 110, 129, 132, 134, 138, 153, 156, 157, 159, 180, 181, 187], "filecach": 151, "filekei": 152, "filelock": 60, "filenam": [50, 153], "files_antiviru": 156, "files_extern": 153, "files_external_allow_create_new_loc": 60, "files_no_background_scan": 60, "filesystem": 40, "filesystem_cache_readonli": 60, "filesystem_check_chang": 60, "filter": [14, 126, 187], "final": 124, "find": [22, 63], "fingerprint": [60, 156], "fix": [137, 151, 152, 153], "flow": [103, 104], "folder": [28, 40, 53, 92, 101, 140, 146, 187], "follow": 116, "font": 159, "forbidden_filenam": 60, "forbidden_filename_basenam": 60, "forbidden_filename_charact": 60, "forbidden_filename_extens": 60, "forc": [58, 60, 66], "force_languag": 60, "force_local": 60, "force_share_accept": 60, "form": [2, 187], "format": [29, 30, 60, 152], "forwarded_for_head": 60, "found": 28, "fpm": [132, 133], "freebusi": 112, "frequenc": 40, "frequent": [15, 172], "from": [18, 48, 53, 58, 63, 76, 92, 121, 144, 170], "front": 6, "frontend": 15, "ftp": 33, "fulli": 5, "function": 93, "further": [28, 119, 130], "fusef": 131, "g": 60, "gatewai": 129, "gdpr": 109, "gener": [9, 15, 22, 29, 47, 126, 130, 138], "genr": 6, "get": [14, 17, 43, 56, 63, 75, 76, 88, 118, 119, 149, 151, 153, 156], "getenv": 70, "give": 126, "global": [71, 77, 118], "gone": 22, "googl": 116, "gpg": 131, "grant": 85, "greater": 129, "green": 6, "group": [18, 28, 40, 75, 76, 81, 85, 101, 154, 157, 159], "group_everyon": 18, "groupwar": [88, 110, 115], "grow": 53, "guest": 18, "guidanc": 126, "ha": 22, "handl": [55, 81], "handler": [59, 129], "haproxi": 69, "harden": 126, "hardwar": 12, "harp": [95, 96], "has_internet_connect": 60, "hash": 60, "hashing_default_password": 60, "hashingcost": 60, "hashingmemorycost": 60, "hashingthread": 60, "hashingtimecost": 60, "have": 70, "header": [70, 126], "heartbeat": 99, "held": 110, "help": 108, "hidden": 38, "hide": 112, "hide_login_form": 60, "hierarch": 149, "home": 59, "host": [16, 96], "how": [22, 40, 58, 63, 77, 114, 148, 174], "htaccess": [60, 133, 156], "http": [70, 126, 129, 132, 133], "http_client_add_user_agent_url": 60, "httpd": 124, "i": [15, 22, 28, 56, 63, 70, 126, 137, 181, 182, 188], "ibm": 0, "icap": 56, "icon": [51, 72], "id": [14, 118, 138, 156, 184], "ident": 84, "identifi": [19, 93], "ignorefrontcontrol": 60, "imag": [1, 9, 15, 47, 81, 99, 126, 164, 170], "imagick": 123, "imaginari": 181, "imap": [116, 118], "implement": [2, 12], "implic": 48, "import": [18, 92, 151, 153, 156, 167], "imprint": 108, "improv": [0, 1, 15], "inconvert": 20, "independ": 96, "index": 3, "indic": 151, "info": [17, 56, 153, 156, 157], "inform": 138, "ini": 130, "init": 99, "initi": [3, 18, 25, 89], "insecur": 93, "insert": 118, "insight": 14, "inspect": 151, "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 56, 60, 88, 92, 95, 121, 123, 124, 125, 126, 127, 128, 130, 133, 145, 156, 160, 162, 163, 164, 165, 166, 167, 169, 186, 187, 188], "instanc": [48, 126], "instanceid": 60, "instruct": [75, 76], "integr": [0, 67, 70, 81, 137, 153, 183], "intellig": [2, 13], "interact": [67, 92, 114], "interfac": [50, 67, 113, 116, 131], "intern": [81, 138], "interoper": 12, "interv": [81, 116], "introduct": [54, 58, 60, 119, 126, 187], "invalid": [28, 50, 63, 137, 151], "invis": 102, "invit": 112, "ip": [58, 126], "ipv6_normalized_subnet_s": 60, "isol": [22, 70, 93], "issu": [93, 118, 138, 139], "item": [49, 60, 113], "j": [129, 156], "jail": 126, "javascript": 129, "jit": 132, "job": [44, 49, 57, 112, 124, 132, 133, 149, 156], "journal_mod": 60, "jpeg": 47, "json": 55, "keep": 63, "kei": [28, 29, 32, 59, 82, 132, 151, 152, 155, 157, 167], "keyboard": 93, "knowledgebas": 60, "knowledgebaseen": 60, "known": [2, 3, 5, 6, 7, 8, 9, 10, 11, 70, 77, 93, 112, 174, 175], "kubernet": [3, 96], "languag": [5, 66], "larg": [5, 12, 26, 53], "lastseen": 157, "launch": 92, "ldap": [28, 60, 81, 82, 83, 131, 154], "ldap_log_fil": 60, "ldapusercleanupinterv": 60, "legaci": [67, 152], "legal": 12, "length": [126, 186], "level": [22, 67, 70, 132], "libreoffic": 180, "life": 186, "lifetim": 107, "limit": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 55, 56, 77, 112, 113, 116, 126, 150], "line": [93, 113, 121, 147, 156], "link": [41, 43, 55, 60, 64, 69, 174], "linux": 133, "list": [14, 17, 76, 81, 97, 98, 151, 152, 153, 155, 156, 157, 187], "listen": [63, 156, 187], "live": [4, 15], "live_transcript": 4, "llm": 116, "llm2": 5, "load": [3, 58, 60, 81, 132], "local": [5, 7, 9, 10, 11, 34, 60, 66, 77, 83, 96, 112, 116], "localstorag": 60, "locat": [29, 59, 60, 67, 128, 152], "lock": [45, 60, 70, 77, 132, 137], "log": [3, 4, 60, 67, 81, 93, 96, 99, 107, 110, 118, 129, 132, 138, 156], "log_queri": 60, "log_request_id": 60, "log_rotate_s": 60, "log_typ": 60, "log_type_audit": 60, "logdateformat": 60, "logfil": [60, 138], "logfile_audit": 60, "logfilemod": 60, "login": [58, 68, 81, 129, 133, 145], "login_flow_v2": 60, "login_form_autocomplet": 60, "login_form_timeout": 60, "loglevel": 60, "loglevel_dirty_database_queri": 60, "loglevel_frontend": 60, "logo_url": 60, "logtimezon": 60, "long": [134, 148], "look": 63, "lookup_serv": 60, "loop": 129, "lost": 78, "lost_password_link": 60, "lt": [125, 165], "machin": [1, 11, 15, 133], "maco": 93, "made": 40, "mai": 183, "mail": [2, 60, 63, 116, 118], "mail_domain": 60, "mail_from_address": 60, "mail_link_password_expiration_interv": 60, "mail_send_plaintext_onli": 60, "mail_sendmailmod": 60, "mail_smtpauth": 60, "mail_smtpdebug": 60, "mail_smtphost": 60, "mail_smtpmod": 60, "mail_smtpnam": 60, "mail_smtppassword": 60, "mail_smtpport": 60, "mail_smtpsecur": 60, "mail_smtpstreamopt": 60, "mail_smtptimeout": 60, "mail_template_class": 60, "mailbox": 116, "mainten": [60, 88, 140, 141, 148, 150, 151, 152, 156, 186], "maintenance_window_start": [57, 60], "major": 186, "make": [5, 40], "manag": [16, 17, 28, 46, 51, 56, 74, 85, 97, 98, 100, 130, 132, 133, 151, 156, 173], "managerfactori": 60, "mandatori": 137, "manual": [8, 56, 118, 133, 142, 148], "map": [51, 81], "mariadb": [22, 134, 140, 146], "mark": [56, 156], "master": [29, 152], "match": 67, "matrix": 77, "max": [43, 60], "max_file_conversion_files": 60, "max_filesize_animated_gifs_public_shar": 60, "max_parallel_count": 60, "max_siz": 60, "maxautocompleteresult": 60, "maximum": [47, 60, 133, 182], "mcp": 2, "me": [106, 107], "mechan": 32, "media": [130, 133], "member": 75, "memberof": 81, "memcach": [59, 60, 131], "memcache_customprefix": 60, "memcached_opt": 60, "memcached_serv": 60, "memori": [47, 59, 60, 134], "merg": 60, "messag": [93, 129, 137, 138], "metadata": 110, "metadata_max_files": 60, "metal": 96, "method": 28, "mib": 129, "microsoft": [48, 81, 116], "migrat": [25, 30, 116, 143, 144, 148, 152, 170], "mimetyp": [51, 156], "minimum": 60, "minsearchstringlength": 60, "miscellan": 2, "misconfigur": [101, 105], "miss": [40, 53, 118, 151], "mobil": 134, "mod_fcgid": 26, "mod_proxy_fcgi": 26, "mode": [28, 63, 126, 132, 140, 147, 148, 150, 156], "model": [2, 5, 7, 11, 12], "modifi": [60, 63, 82], "modul": [123, 126, 130, 138, 152], "monitor": [52, 180, 181, 182, 183], "mount": [40, 94, 153], "mountpoint": 28, "move": [138, 151, 153], "multi": 48, "multibucket": [48, 60], "multilingu": 5, "multipl": [60, 69], "music": 6, "my": [15, 22, 63], "mysql": [22, 23, 60, 118, 120, 134, 140, 146, 151], "name": [40, 70, 138], "nc": 96, "need": 183, "nest": 81, "network": [112, 131], "new": [18, 41, 76, 77, 85, 159], "next": 125, "nextcloud": [1, 2, 4, 26, 35, 40, 41, 53, 55, 56, 59, 60, 61, 65, 69, 72, 81, 83, 84, 93, 96, 97, 106, 119, 123, 124, 126, 129, 136, 137, 138, 142, 159, 161, 166, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188], "nf": 131, "nginx": [26, 69, 129], "no_unsupported_browser_warn": 60, "node": 187, "non": [92, 138], "nor": 129, "note": [59, 81, 88, 124, 130, 136, 176, 177], "notif": [16, 38, 43, 53, 112, 148, 153], "notifi": 153, "now": [181, 182], "nss": 70, "o": 134, "oauth": 116, "oauth2": [68, 156], "object": [6, 26, 36, 48, 60, 153, 187], "objectstor": 60, "obtain": [93, 136], "occ": [3, 16, 28, 50, 58, 81, 97, 150, 160], "ocm": 155, "off": 81, "offic": [88, 117, 151, 159, 161, 168, 180], "old": [30, 134], "olmo": 5, "one": [63, 96], "onli": [63, 70], "onlin": [158, 159, 166, 170], "ooxml": 159, "opcach": 132, "open": [5, 137], "openai": 0, "openbsd": 124, "openid": 84, "openmetr": [52, 184], "openmetrics_allowed_cli": 60, "openmetrics_skipped_class": 60, "openssl": [60, 70], "openstack": [36, 48], "oper": [126, 153, 156], "option": [3, 28, 40, 60, 67, 81, 92, 94, 97, 98, 123, 153, 159], "optout": 60, "organ": 59, "orphan": [152, 153], "other": [15, 60, 93, 118, 133, 138], "out": [22, 63, 117, 151], "outdat": 70, "outgo": 184, "outlook": 118, "output": [17, 75, 76, 82], "outsid": [40, 126], "over": 59, "overrid": [48, 67, 77], "overview": [15, 28, 58, 133, 142, 148, 186, 187], "overwrit": [60, 69], "overwritecondaddr": 60, "overwritehost": 60, "overwriteprotocol": 60, "overwritewebroot": 60, "owncloud": 144, "owner": [153, 156], "ownership": 153, "packag": [133, 145, 163, 165, 167, 170], "page": [58, 70], "pair": 29, "paramet": [22, 47, 57, 60, 63, 67, 69, 92, 120, 132], "part_file_in_storag": 60, "parti": 110, "pass": [70, 188], "password": [32, 73, 78, 79, 85, 86, 126, 181], "passwordsalt": 60, "patch": 136, "path": [40, 60, 70, 138], "payload": 187, "pdf": 181, "per": [48, 81, 118], "perform": [0, 48, 132], "permiss": [40, 81], "persist": [43, 164], "person": 110, "pgsql_ssl": 60, "photo": [6, 151], "php": [26, 59, 63, 70, 77, 116, 123, 124, 126, 129, 130, 132, 133, 134, 138, 160, 182], "physic": 12, "picker": 175, "pickup": [1, 15], "place": 126, "podman": 96, "point": 28, "polici": [86, 138], "pomerium": 69, "port": 63, "portabl": 111, "postgresql": [22, 120, 140, 146], "pre": [68, 163, 165], "preced": 77, "preconfigur": 92, "prefer": 116, "prefix": [59, 70], "prepar": 130, "prerequisit": [126, 133, 148, 163, 164, 165], "pretti": 133, "prevent": [64, 101], "preview": [47, 60, 126, 132, 153, 159, 174, 180, 181, 182, 183, 184], "preview_concurrency_al": 60, "preview_concurrency_new": 60, "preview_expiration_dai": 60, "preview_ffmpeg_path": 60, "preview_ffprobe_path": 60, "preview_imaginary_kei": 60, "preview_imaginary_url": 60, "preview_libreoffice_path": 60, "preview_max_filesize_imag": 60, "preview_max_i": 60, "preview_max_memori": 60, "preview_max_x": 60, "previou": 142, "primari": [48, 151], "privaci": 113, "privat": [16, 28, 29, 59, 77], "privileg": [54, 85], "problem": [93, 118, 138], "process": [1, 15, 111, 116, 132, 133, 156], "profil": [60, 77, 81, 110, 157], "project": 60, "promot": 76, "prompt": 15, "proper": 126, "properli": [70, 129], "properti": [77, 113], "protect": [58, 60, 183], "protocol": 63, "provid": [15, 27, 63, 80, 84, 174, 175], "provis": [87, 92], "proxi": [58, 60, 69, 95, 96, 129, 166, 170, 171], "proxyexclud": 60, "proxyuserpwd": 60, "public": [18, 29, 32, 41, 105, 112], "pull": 99, "put": 153, "qmail": 63, "qualiti": 47, "query_log_fil": 60, "query_log_file_backtrac": 60, "query_log_file_paramet": 60, "query_log_file_requestid": 60, "question": [15, 172], "queue": 56, "quick": [128, 130, 164], "quickstart": 145, "quota": [85, 138], "quota_include_external_storag": 60, "rainloop": 131, "rang": 126, "rate": [6, 8, 11, 15, 60, 112, 113], "ratelimit": 60, "ratelimit_overwrit": 60, "reachabl": [22, 63], "read": [22, 28, 29, 70, 81, 82, 126], "readabl": 70, "reboot": 92, "receiv": 53, "recent": 114, "recogn": 6, "recognit": 6, "recommend": [59, 92, 122, 130], "recov": 152, "recoveri": [28, 29, 48, 146], "rectif": 111, "redi": [59, 60, 123, 124, 132], "redirect": 126, "redis_log_fil": 60, "reduc": 132, "reduce_to_languag": 60, "refer": [53, 77, 130, 150, 173], "reference_opengraph": 60, "refresh": [112, 153], "regist": [97, 98, 99, 187], "regular": 44, "reject": 63, "relat": [1, 126], "releas": [60, 88, 142, 176, 177, 186], "reliabl": [12, 40], "rememb": [106, 107], "remember_login_cookie_lifetim": 60, "remind": [112, 116, 151, 153], "remirepo": 123, "remnant": 154, "remot": [96, 126, 131, 153], "remov": [76, 80, 151, 156], "removeus": 157, "renam": [40, 85], "repair": [152, 153, 156], "replac": 132, "replic": 24, "report": [157, 186], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 167], "request": [60, 108, 111, 184], "request_timeout": 60, "requir": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 92, 123, 130, 134, 163, 165, 178, 179, 180, 181, 182, 183, 184, 185], "rescan": 137, "resend": 76, "reset": [78, 79, 85, 156], "resetpassword": 157, "resolv": 70, "resourc": [112, 119, 130], "respond": 111, "respons": 70, "restor": [146, 153], "restrict": [102, 111, 126, 159], "retent": [105, 107, 112, 113, 114, 151, 178], "retir": 155, "retriev": 51, "return": [70, 156], "revalid": 132, "revers": [58, 69, 96, 166, 170, 171], "revert": 136, "rewritebas": 60, "rich": 71, "right": [92, 111], "robust": 12, "room": 112, "root": [126, 152], "rotat": [60, 96, 155], "rule": [3, 77, 101, 102], "run": [5, 20, 70, 148, 150], "runtim": 18, "s3": [31, 48, 183], "same": 96, "sampl": 60, "sanit": [50, 153], "scale": [2, 3, 5, 6, 7, 9, 10, 47], "scan": [56, 152, 153, 156], "scanner": 56, "schedul": [53, 116, 186], "schema": 151, "scope": [77, 113], "screen": [15, 187], "script": [133, 188], "seal": 29, "search": [2, 15, 75, 76, 154], "secret": [60, 67], "secur": [12, 60, 68, 70, 96, 126, 156, 159, 160], "see": [28, 77], "seed": [163, 165], "selector": 149, "self": [16, 40, 63], "selinux": [123, 126, 131, 133], "send": [63, 116, 151], "sendmail": [63, 131], "sensit": 38, "sent": 53, "serv": [126, 129], "server": [2, 22, 26, 28, 29, 30, 41, 59, 60, 63, 70, 81, 93, 107, 110, 112, 116, 126, 127, 131, 132, 133, 134, 136, 138, 143, 159, 160, 166, 178, 179, 180, 181, 183], "server_log": 60, "serverid": 60, "servic": [0, 15, 48, 69, 110, 138, 187], "session": [15, 59, 60, 107, 110, 187], "session_keepal": 60, "session_lifetim": 60, "session_relaxed_expiri": 60, "set": [28, 43, 47, 53, 58, 63, 67, 70, 75, 76, 77, 81, 85, 112, 123, 130, 132, 133, 149, 151, 152, 154, 156, 157, 159, 160, 188], "setup": [8, 59, 92, 95, 120, 126, 156, 180, 183], "sftp": 37, "share": [2, 18, 26, 28, 29, 32, 41, 43, 46, 53, 60, 67, 69, 112, 113, 116, 118, 138, 151, 153, 156], "share_fold": 60, "ship": 138, "shortcut": 93, "show": [152, 154, 156], "shown": [38, 60], "side": [26, 28, 29, 30], "siev": [116, 118], "sign": [29, 40, 63, 137, 153, 167], "signatur": [28, 29, 147], "simpl": 48, "simplesignuplink": 60, "singl": [56, 59, 75, 76, 149], "site": [64, 70], "size": [26, 47, 116, 132, 133, 138, 153, 182], "skeletondirectori": 60, "skip": 68, "slot": 155, "slow": [15, 132], "small": 59, "smart": 175, "smb": [38, 131], "smtp": [63, 116, 118, 131], "snap": [133, 145], "snooz": 116, "snowflak": [156, 184], "socket": [59, 95, 96, 129], "some": 70, "sort_groups_by_nam": 60, "sourc": [29, 137], "space": [3, 6, 8, 11, 133, 156], "special": [32, 81], "specif": [63, 81, 101, 126, 130, 159], "speech": [1, 7, 10, 15], "speed": [1, 15, 187], "split": [25, 29], "sql": 22, "sqlite": [60, 120, 132, 140, 146], "sse": 48, "ssl": [22, 60, 81, 126, 133], "stage": 155, "standalone_window": 60, "start": [88, 99, 119, 128, 164], "starttl": 63, "stat": 156, "state": 157, "statu": [99, 152, 156], "step": [28, 124, 125, 142, 148, 163, 165, 188], "still": 53, "storag": [1, 26, 28, 32, 36, 40, 48, 53, 85, 101, 126, 152, 153, 156], "store": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 29, 48, 60, 106, 110, 153], "storecryptedpassword": 60, "strict": [70, 126], "stt_whisper2": 7, "subadmin": [75, 76], "subdir": 129, "subdirectori": 69, "subject": 111, "subscript": [112, 151], "summar": 8, "summari": [8, 92, 107, 116], "suppli": [5, 7], "support": [3, 23, 48, 60, 63, 134, 186], "supporteddatabas": 60, "suppress": 129, "suspend": 188, "swift": 48, "switch": 11, "sync": [38, 81, 93, 112, 113, 116, 138, 151, 153, 157, 178], "synchron": [3, 70, 118], "synchronis": 146, "syslog": 67, "syslog_tag": 60, "syslog_tag_audit": 60, "system": [26, 38, 113, 126, 132, 133, 134, 151, 156, 157, 163, 165, 178, 179, 180, 181, 182, 183, 184, 185, 187], "systemd": [15, 57, 67, 187], "t": 28, "tab": 81, "tabl": [20, 88, 107, 130, 187], "tag": [102, 105, 157, 164, 187], "talk": [2, 4, 8, 110, 134], "target": [20, 119], "task": [1, 2, 14, 15, 56, 156], "taskprocess": 156, "tcp": [59, 63], "team": [2, 28, 53], "tempdirectori": 60, "templat": [27, 63, 160], "templatedirectori": 60, "temporari": 67, "term": 134, "test": [60, 63, 70, 81, 99, 154], "text": [1, 7, 10, 15, 71], "text2image_stablediffusion2": 9, "text2speech_kokoro": 10, "than": 129, "thei": 174, "theme": [60, 63, 72, 108, 156], "thi": 70, "third": 110, "though": 63, "thread": [116, 118], "threshold": 60, "through": [67, 129], "timeout": [116, 118], "tip": [41, 81, 129, 133, 145], "tl": [59, 81, 116, 132], "tmux": [15, 187], "token": [68, 84, 107, 112, 113, 126, 157, 178], "token_auth_activity_upd": 60, "token_auth_enforc": 60, "tool": 2, "track": 114, "traefik": 69, "traffic": 126, "transact": [22, 45, 70, 132], "transcript": [4, 15], "transfer": [43, 153], "transferincomingshar": 60, "translat": [1, 4, 11, 15, 116], "translate2": 11, "transpar": 12, "transport": [70, 126], "trash": [49, 60, 107, 112, 153], "trashbin": 153, "trashbin_retention_oblig": 60, "tree": 153, "trick": [81, 129], "trigger": [20, 56], "troubleshoot": [3, 22, 28, 40, 53, 58, 63, 81, 93, 118, 131, 132, 136, 138, 139, 142, 147, 172], "truena": 133, "trust": [41, 69, 128, 129], "trusted_domain": 60, "trusted_proxi": 60, "ttl": 60, "tune": 132, "turn": 81, "two": [80, 157], "twofactorauth": 157, "type": [20, 29, 59, 60, 67, 112, 151, 156, 186], "ubuntu": [125, 165, 167], "umask": 60, "unabl": 118, "unencrypt": 126, "unified_search": 60, "uninstal": [135, 163, 164, 165], "unix": [59, 129], "unknown": 93, "unlink_on_trunc": 60, "unregist": [97, 98], "unscan": 56, "unseal": 29, "unshar": 151, "untrust": 129, "up": [70, 73, 116, 123, 133, 151, 181, 187, 188], "updat": [16, 25, 38, 60, 92, 98, 118, 131, 138, 147, 148, 156, 163, 164, 165, 166, 170, 183], "updatecheck": 60, "updatedirectori": 60, "upgrad": [60, 134, 142, 145, 147, 148, 156, 170, 178, 179, 180, 181, 182, 183, 184, 185, 186], "upload": [26, 38, 101, 129, 133], "urandom": [70, 126], "url": [60, 69, 133, 147], "us": [2, 12, 15, 16, 22, 40, 43, 50, 59, 60, 63, 67, 70, 81, 84, 116, 126, 129, 132, 138, 147, 150, 159, 175, 180], "usag": [3, 6, 8, 11, 40, 54, 58, 97, 159], "use_legacy_base64_encod": 60, "user": [18, 22, 28, 29, 40, 43, 53, 60, 74, 76, 77, 79, 81, 83, 84, 85, 86, 87, 88, 101, 113, 114, 116, 128, 138, 152, 154, 157, 181, 182, 183, 184], "user_ini_additional_lin": 60, "utf8mb4": 60, "v": [58, 59, 95], "valid": 84, "valu": [60, 77, 149, 188], "variabl": [40, 60, 94, 133, 150, 164], "verif": [60, 81, 116, 147], "verifi": [77, 153, 157, 163, 165], "version": [44, 60, 70, 107, 134, 138, 152, 153, 186], "versions_retention_oblig": 60, "via": [8, 16, 28, 41, 69, 70, 72, 81, 131, 133, 145, 147, 164], "video": 6, "view": 159, "virtual": 133, "visibl": 77, "voic": 1, "vp": 133, "wa": 85, "warn": [68, 70], "watermark": 160, "watsonx": 0, "we": [134, 137], "web": [26, 50, 60, 63, 67, 70, 107, 110, 126, 131, 133, 134, 138, 147, 178, 179, 180, 181, 183], "webauthn": 60, "webcron": 57, "webdav": [39, 138], "webhook": [156, 187], "webroot": [129, 159], "webserv": 93, "welcom": [76, 157], "well": 70, "what": [5, 63, 77, 147], "when": [12, 77, 93, 129], "where": [174, 175], "whisper": 7, "who": 119, "whole": 131, "why": [15, 28, 40, 63, 134, 137], "windmil": [15, 188], "window": [50, 92, 133, 153], "without": 129, "wizard": [92, 128, 133], "wopi": 159, "work": [22, 40, 56, 58, 174], "worker": 156, "workflow": [15, 67, 156, 188], "workspac": [71, 93, 188], "write": 131, "xml": [17, 75, 76, 82], "xoauth2": 116, "yellow": 6, "yet": 70, "you": [28, 70, 77], "your": [18, 26, 53, 61, 70, 85, 118, 126, 132]}}) \ No newline at end of file +Search.setIndex({"alltitles": {".htaccess": [[133, "htaccess"]], "/dev/urandom is not readable by PHP": [[70, "dev-urandom-is-not-readable-by-php"]], "1st login": [[133, "st-login"], [145, "st-login"]], "AI as a Service": [[0, null]], "AJAX": [[57, "ajax"]], "APCu": [[59, "apcu"]], "Account data": [[110, "account-data"]], "Account delegation": [[116, "account-delegation"]], "Activating": [[58, "activating"]], "Activities are missing for shared files or team folders": [[53, "activities-are-missing-for-shared-files-or-team-folders"]], "Activities in Team Folders or External Storages": [[53, "activities-in-team-folders-or-external-storages"]], "Activity": [[60, "activity"]], "Activity and audit logs": [[110, "activity-and-audit-logs"]], "Activity app": [[53, null]], "Activity log": [[107, "activity-log"]], "Add a new user": [[76, "add-a-new-user"]], "Add an OAuth2 Application": [[68, "add-an-oauth2-application"]], "Add repository:": [[167, "add-repository"]], "Add user to group": [[76, "add-user-to-group"]], "Addendum: Running with a fully open model": [[5, "addendum-running-with-a-fully-open-model"]], "Additional Apache configurations": [[133, "additional-apache-configurations"]], "Additional configuration options": [[159, "additional-configuration-options"]], "Additional configuration options via occ": [[81, "additional-configuration-options-via-occ"]], "Additional file-based logging parameters": [[67, "additional-file-based-logging-parameters"]], "Additional notes for Redis vs. APCu on memory caching": [[59, "additional-notes-for-redis-vs-apcu-on-memory-caching"]], "Additional options": [[97, "additional-options"]], "Additional requirements when using large AI models": [[12, "additional-requirements-when-using-large-ai-models"]], "Address Book Sync": [[113, "address-book-sync"]], "Adjust chunk size on Nextcloud side": [[26, "adjust-chunk-size-on-nextcloud-side"]], "Admin audit log (Optional)": [[67, "admin-audit-log-optional"]], "Admin delegation": [[156, "admin-delegation"]], "Admin settings": [[53, "admin-settings"]], "Administration interface": [[113, "administration-interface"]], "Administration privileges (Delegation)": [[54, null]], "Administrative Group mapping": [[81, "administrative-group-mapping"]], "Advanced Deploy Options": [[94, null], [98, "advanced-deploy-options"]], "Advanced Windows deployment options": [[92, "advanced-windows-deployment-options"]], "Advanced compound conditions (matches)": [[67, "advanced-compound-conditions-matches"]], "Advanced server settings": [[160, "advanced-server-settings"]], "Advanced settings": [[43, "advanced-settings"], [81, "advanced-settings"]], "Advantages of upgrading PHP": [[134, "advantages-of-upgrading-php"]], "All emails keep getting rejected even though only one email address is invalid.": [[63, "all-emails-keep-getting-rejected-even-though-only-one-email-address-is-invalid"]], "All other configuration options": [[60, "all-other-configuration-options"]], "All parameters": [[120, "all-parameters"]], "Allow Users to Mount External Storage": [[40, "allow-users-to-mount-external-storage"]], "Allow access to CIFS/SMB": [[131, "allow-access-to-cifs-smb"]], "Allow access to FuseFS": [[131, "allow-access-to-fusefs"]], "Allow access to GPG for Rainloop": [[131, "allow-access-to-gpg-for-rainloop"]], "Allow access to LDAP server": [[131, "allow-access-to-ldap-server"]], "Allow access to NFS": [[131, "allow-access-to-nfs"]], "Allow access to SMTP/sendmail": [[131, "allow-access-to-smtp-sendmail"]], "Allow access to a remote database": [[131, "allow-access-to-a-remote-database"]], "Allow access to network memcache": [[131, "allow-access-to-network-memcache"]], "Allow access to remote network": [[131, "allow-access-to-remote-network"]], "Allow for groups in your collectives": [[18, "allow-for-groups-in-your-collectives"]], "Allow subscriptions on local network": [[112, "allow-subscriptions-on-local-network"]], "Alternate Code Locations": [[60, "alternate-code-locations"]], "Amazon S3": [[31, null]], "Android 11 and Below": [[55, "android-11-and-below"]], "Android 12 and Above": [[55, "android-12-and-above"]], "Android Deep Link Handling": [[55, null]], "Anti-abuse alerts": [[116, "anti-abuse-alerts"]], "Antivirus": [[156, "antivirus"]], "Antivirus scanner": [[56, null]], "Apache": [[26, "apache"], [123, "apache"]], "Apache Web server configuration": [[133, "apache-web-server-configuration"]], "Apache with mod_fcgid": [[26, "apache-with-mod-fcgid"]], "Apache with mod_proxy_fcgi": [[26, "apache-with-mod-proxy-fcgi"]], "Apache2": [[69, "apache2"]], "App passwords": [[73, "app-passwords"]], "App store": [[1, "app-store"], [2, "app-store"], [3, "app-store"], [4, "app-store"], [5, "app-store"], [6, "app-store"], [7, "app-store"], [8, "app-store"], [9, "app-store"], [10, "app-store"], [11, "app-store"]], "App: Context Agent (context_agent)": [[2, null]], "App: Context Chat": [[3, null]], "App: Live Transcription and Translation in Nextcloud Talk (live_transcription)": [[4, null]], "App: Local Image Generation (text2image_stablediffusion2)": [[9, null]], "App: Local Machine translation 2 (translate2)": [[11, null]], "App: Local Text-To-Speech (text2speech_kokoro)": [[10, null]], "App: Local Whisper Speech-To-Text (stt_whisper2)": [[7, null]], "App: Local large language model (llm2)": [[5, null]], "App: Recognize": [[6, null]], "App: Summary Bot (Talk chat summarize bot)": [[8, null]], "AppAPI (app_api) is now a default app": [[181, "appapi-app-api-is-now-a-default-app"], [182, "appapi-app-api-is-now-a-default-app"]], "AppAPI (app_api) setup checks expanded": [[183, "appapi-app-api-setup-checks-expanded"]], "AppAPI and External Apps": [[95, null]], "Applying a patch": [[136, "applying-a-patch"]], "Approaching Upgrades": [[148, "approaching-upgrades"]], "Approval/Suspend steps": [[188, "approval-suspend-steps"]], "Apps": [[16, "apps"], [60, "apps"], [88, null]], "Apps commands": [[149, "apps-commands"]], "Apps management": [[16, null]], "Apps management API": [[17, null]], "Apps, background jobs & config commands": [[149, null]], "Arguments": [[97, "arguments"], [98, "arguments"], [98, "id1"], [98, "id3"]], "Artificial Intelligence": [[13, null]], "Artificial intelligence tools": [[2, "artificial-intelligence-tools"]], "Assigning restricted and invisible tags": [[102, "assigning-restricted-and-invisible-tags"]], "Assigning tags to files": [[157, "assigning-tags-to-files"]], "Assistant configuration": [[1, "assistant-configuration"]], "Attachment size limit": [[116, "attachment-size-limit"]], "Authentication": [[73, null], [188, "authentication"]], "Authentication in Nextcloud": [[84, "authentication-in-nextcloud"]], "Auto-indexing": [[3, "auto-indexing"]], "Autoconfig": [[128, "autoconfig"]], "Autoconfig for your mail domain fails": [[118, "autoconfig-for-your-mail-domain-fails"]], "Automated clean-up": [[73, "automated-clean-up"]], "Automated clean-up of app password": [[181, "automated-clean-up-of-app-password"]], "Automated tagging of files": [[102, null]], "Automatic configurations examples": [[120, "automatic-configurations-examples"]], "Automatic database user creation": [[128, "automatic-database-user-creation"]], "Automatic setup": [[120, null]], "Available Storage Backends": [[40, "available-storage-backends"]], "Available rules": [[101, "available-rules"], [102, "available-rules"]], "Backend apps": [[15, "backend-apps"], [15, "id39"], [15, "id45"], [15, "id54"], [15, "id59"], [15, "id64"], [15, "id69"], [15, "id73"], [15, "id79"], [15, "id86"]], "Background job": [[44, "background-job"], [49, "background-job"]], "Background jobs": [[57, null], [112, "background-jobs"], [156, "background-jobs"]], "Background jobs selector": [[149, "background-jobs-selector"]], "Background sync interval": [[81, "background-sync-interval"], [116, "background-sync-interval"]], "Backup": [[140, null]], "Backup database": [[140, "backup-database"]], "Backup folders": [[140, "backup-folders"]], "Backups": [[28, "backups"], [107, "backups"]], "Bad signature error": [[28, "bad-signature-error"]], "Basic conditions": [[67, "basic-conditions"]], "Batch mode for command line based updater": [[147, "batch-mode-for-command-line-based-updater"]], "Bearer token validation": [[84, "bearer-token-validation"]], "Before You Enable Encryption": [[28, "before-you-enable-encryption"]], "Behavior": [[92, "behavior"], [92, "id3"]], "Beta releases and Release candidates": [[186, "beta-releases-and-release-candidates"]], "Better scheduling of activity emails": [[53, "better-scheduling-of-activity-emails"]], "BigInt (64bit) identifiers": [[19, null]], "Birthday calendar": [[112, "birthday-calendar"]], "Blocking user groups": [[101, "blocking-user-groups"]], "Bookmarks tools": [[2, "bookmarks-tools"]], "Branded clients": [[72, "branded-clients"]], "Broadcast": [[156, "broadcast"]], "Brute force protection": [[58, null]], "Brute force protection and load balancers/reverse proxies": [[58, "brute-force-protection-and-load-balancers-reverse-proxies"]], "Brute force protection vs fail2ban": [[58, "brute-force-protection-vs-fail2ban"]], "Bug reporting": [[186, "bug-reporting"]], "Bugs": [[138, "bugs"]], "Building a workflow": [[188, "building-a-workflow"]], "CPU Architecture and OS": [[134, "cpu-architecture-and-os"]], "Cache Directory location": [[59, "cache-directory-location"]], "Cache Key Prefix for Redis or Memcached": [[59, "cache-key-prefix-for-redis-or-memcached"]], "Cache warnings": [[70, "cache-warnings"]], "Caching": [[81, "caching"], [132, "id1"]], "Caddy": [[69, "caddy"]], "Calendar": [[118, "calendar"]], "Calendar / CalDAV": [[112, null]], "Calendar Object Events": [[187, "calendar-object-events"]], "Calendar server settings": [[112, "calendar-server-settings"]], "Calendar tools": [[2, "calendar-tools"]], "Can I create a script?": [[188, "can-i-create-a-script"]], "Canonical webroot": [[159, "canonical-webroot"]], "Case sensitive file system": [[38, "case-sensitive-file-system"]], "Certification Extension 2025/2026": [[89, "certification-extension-2025-2026"]], "Changelog": [[177, "changelog"]], "Changing installed features": [[92, "changing-installed-features"]], "Changing the display of federated shares": [[41, "changing-the-display-of-federated-shares"]], "Chat": [[1, "chat"]], "Chat with AI": [[1, "chat-with-ai"]], "Check the block signatures": [[29, "check-the-block-signatures"]], "Check the signature": [[29, "check-the-signature"]], "Checking for old files": [[30, "checking-for-old-files"]], "Choosing the right approach": [[92, "choosing-the-right-approach"]], "Chroot": [[124, "chroot"]], "Circles/teams tools": [[2, "circles-teams-tools"]], "Citrix Workspace known issues": [[93, "citrix-workspace-known-issues"]], "Code signing": [[137, null]], "Collabora Online": [[158, null]], "Collabora Online Server": [[159, "collabora-online-server"]], "Collectives": [[18, null], [88, null]], "Collectives and group_everyone": [[18, "collectives-and-group-everyone"]], "Collectives and guest users": [[18, "collectives-and-guest-users"]], "Combining tools": [[2, "combining-tools"]], "Command Line": [[113, "command-line"]], "Command line": [[93, "command-line"]], "Command line installation": [[156, "command-line-installation"]], "Command line upgrade": [[156, "command-line-upgrade"]], "Command reference": [[150, "command-reference"]], "Commands (OCC)": [[3, "commands-occ"]], "Comments": [[60, "comments"], [132, "comments"]], "Common failure cases": [[92, "common-failure-cases"]], "Common misconfigurations": [[101, "common-misconfigurations"], [105, "common-misconfigurations"]], "Common problems / error messages": [[138, "common-problems-error-messages"]], "Common settings": [[160, "common-settings"]], "Common templates": [[160, "common-templates"]], "Completing Installation": [[128, "completing-installation"]], "Compression": [[132, "compression"]], "Conditional logging (log.condition)": [[67, "conditional-logging-log-condition"]], "Config commands": [[149, "config-commands"]], "Config file": [[93, "config-file"]], "Configuration": [[1, "configuration"], [18, "configuration"], [48, "configuration"], [77, "configuration"], [81, "configuration"], [88, null], [116, "configuration"], [133, "configuration"], [159, null], [160, null], [167, "configuration"]], "Configuration Options": [[3, "configuration-options"]], "Configuration Parameters": [[60, null]], "Configuration keys": [[82, "configuration-keys"]], "Configuration reference": [[53, "configuration-reference"]], "Configuration tips": [[41, "configuration-tips"]], "Configurations preventing embedding": [[64, "configurations-preventing-embedding"]], "Configure the app in Nextcloud": [[166, "configure-the-app-in-nextcloud"]], "Configure theming via CLI": [[72, "configure-theming-via-cli"]], "Configuring": [[40, "configuring"]], "Configuring ClamAV on Nextcloud": [[56, "configuring-clamav-on-nextcloud"]], "Configuring Federation Sharing": [[41, null]], "Configuring ICAP on Nextcloud": [[56, "configuring-icap-on-nextcloud"]], "Configuring Nextcloud": [[26, "configuring-nextcloud"]], "Configuring Object Storage as Primary Storage": [[48, null]], "Configuring PHP": [[26, "configuring-php"]], "Configuring Sendmail/qmail": [[63, "configuring-sendmail-qmail"]], "Configuring a MySQL or MariaDB database": [[22, "configuring-a-mysql-or-mariadb-database"]], "Configuring alternate models": [[5, "configuring-alternate-models"]], "Configuring an SMTP server": [[63, "configuring-an-smtp-server"]], "Configuring through admin_audit app settings (legacy)": [[67, "configuring-through-admin-audit-app-settings-legacy"]], "Configuring trusted Nextcloud servers": [[41, "configuring-trusted-nextcloud-servers"]], "Configuring your Nextcloud for the Activity app": [[53, "configuring-your-nextcloud-for-the-activity-app"]], "Configuring your Nextcloud for the dashboard app": [[61, "configuring-your-nextcloud-for-the-dashboard-app"]], "Configuring your Web server": [[26, "configuring-your-web-server"]], "Confirm everything is working": [[56, "confirm-everything-is-working"]], "Connecting to Redis cluster over TLS": [[59, "connecting-to-redis-cluster-over-tls"]], "Connecting to single Redis server over TCP": [[59, "connecting-to-single-redis-server-over-tcp"]], "Connecting to single Redis server over TLS": [[59, "connecting-to-single-redis-server-over-tls"]], "Connecting to single Redis server over UNIX socket": [[59, "connecting-to-single-redis-server-over-unix-socket"]], "Connection issues with the macOS client on \u201cinsecure\u201d connections": [[93, "connection-issues-with-the-macos-client-on-insecure-connections"]], "Connection settings": [[81, "connection-settings"]], "Connections to remote servers": [[126, "connections-to-remote-servers"]], "Consequences": [[50, "consequences"]], "Considerations for shared storage": [[32, "considerations-for-shared-storage"]], "Contacts": [[118, "contacts"]], "Contacts / CardDAV": [[113, null]], "Contacts Interaction": [[114, null]], "Contacts tools": [[2, "contacts-tools"]], "Container Started": [[99, "container-started"]], "Container log rotation": [[96, "container-log-rotation"]], "Context Agent": [[1, "context-agent"], [15, "context-agent"]], "Context Chat": [[1, "context-chat"], [15, "context-chat"]], "Context Chat Search": [[15, "context-chat-search"]], "Controlling file versions and aging": [[44, null]], "Converting database type": [[20, null]], "Cookbook tools": [[2, "cookbook-tools"]], "Cookies": [[106, null]], "Cookies stored by Nextcloud": [[106, "cookies-stored-by-nextcloud"]], "Core Components": [[119, "core-components"]], "Core Dumps": [[93, "core-dumps"]], "Create Debug Archive": [[93, "create-debug-archive"]], "Create a group": [[75, "create-a-group"]], "Creating Federation Shares via public Link Share": [[41, "creating-federation-shares-via-public-link-share"]], "Creating a configuration": [[82, "creating-a-configuration"]], "Creating a new Federation Share": [[41, "creating-a-new-federation-share"]], "Creating a new user": [[85, "creating-a-new-user"]], "Creating assetlinks.json": [[55, "creating-assetlinks-json"]], "Creating persistent file Shares": [[43, "creating-persistent-file-shares"]], "Critical changes": [[177, "critical-changes"]], "Cron": [[57, "cron"]], "Cron job": [[124, "cron-job"]], "Cron jobs": [[57, "cron-jobs"]], "Currently implemented tools": [[2, "currently-implemented-tools"]], "Custom Tools using MCP": [[2, "custom-tools-using-mcp"]], "Custom fonts": [[159, "custom-fonts"]], "Custom public calendars": [[112, "custom-public-calendars"]], "Customize the appearance of Nextcloud": [[72, "customize-the-appearance-of-nextcloud"]], "Cybersecurity and physical security of the hardware": [[12, "cybersecurity-and-physical-security-of-the-hardware"]], "DAV & database commands": [[151, null]], "DAV commands": [[151, "dav-commands"]], "DAV sync tokens retention": [[178, "dav-sync-tokens-retention"]], "Dashboard app": [[61, null]], "Data Backup and Recovery Implications": [[48, "data-backup-and-recovery-implications"]], "Data Directory": [[120, "data-directory"]], "Data Not Encrypted": [[28, "data-not-encrypted"]], "Data Request app": [[108, "data-request-app"]], "Data conversions": [[151, "data-conversions"]], "Data directory location": [[128, "data-directory-location"]], "Data held by third-party services": [[110, "data-held-by-third-party-services"]], "Data retention": [[107, null], [112, "data-retention"], [113, "data-retention"], [114, "data-retention"]], "Database": [[123, "database"], [124, "database"]], "Database choice": [[128, "database-choice"]], "Database commands": [[151, "database-commands"]], "Database configuration": [[21, null], [22, null], [182, "database-configuration"]], "Database growing large due to activity data": [[53, "database-growing-large-due-to-activity-data"]], "Database insert problems on MySQL": [[118, "database-insert-problems-on-mysql"]], "Database requirements for MySQL / MariaDB": [[134, "database-requirements-for-mysql-mariadb"]], "Database \u201cREAD COMMITTED\u201d transaction isolation level": [[22, "database-read-committed-transaction-isolation-level"]], "Debug Mode": [[132, "debug-mode"]], "Debugging": [[150, "debugging"]], "Debugging sync issues": [[138, "debugging-sync-issues"]], "Deck tools (require Deck)": [[2, "deck-tools-require-deck"]], "Declarations": [[90, null]], "Decrease sync delay": [[38, "decrease-sync-delay"]], "Decrypt the blocks": [[29, "decrypt-the-blocks"]], "Decrypt the private key": [[29, "decrypt-the-private-key"]], "Decrypt/unseal the file key": [[29, "decrypt-unseal-the-file-key"]], "Decrypting Files / Disabling Encryption": [[28, "decrypting-files-disabling-encryption"]], "Decryption: decrypt the file": [[29, "decryption-decrypt-the-file"]], "Decryption: read the file key": [[29, "decryption-read-the-file-key"]], "Decryption: read the private key": [[29, "decryption-read-the-private-key"]], "Dedicated audit logging configuration": [[67, "dedicated-audit-logging-configuration"]], "Default AIO Deploy Daemon (Docker Socket Proxy)": [[96, "default-aio-deploy-daemon-docker-socket-proxy"]], "Default Parameters": [[60, "default-parameters"]], "Default audit log location": [[67, "default-audit-log-location"]], "Default file extension": [[71, "default-file-extension"]], "Default file templates": [[27, "default-file-templates"]], "Default language": [[66, "default-language"]], "Default locale": [[66, "default-locale"]], "Default scope values (reference)": [[77, "default-scope-values-reference"]], "Default user agent for outgoing requests changed": [[184, "default-user-agent-for-outgoing-requests-changed"]], "Defaults": [[60, "defaults"], [77, "defaults"]], "Defining trusted proxies": [[69, "defining-trusted-proxies"]], "Definitions": [[28, "definitions"]], "Delete a group": [[75, "delete-a-group"]], "Delete a user": [[76, "delete-a-user"]], "Deleted Items (trash bin)": [[49, null], [60, "deleted-items-trash-bin"]], "Deleting a configuration": [[82, "deleting-a-configuration"]], "Deleting a single configuration value": [[149, "deleting-a-single-configuration-value"]], "Deleting local Nextcloud users": [[83, "deleting-local-nextcloud-users"]], "Deleting users": [[85, "deleting-users"]], "Demote user from subadmin": [[76, "demote-user-from-subadmin"]], "Denied access": [[101, "denied-access"]], "Denying access to folders": [[101, "denying-access-to-folders"]], "DeployConfig": [[97, "deployconfig"]], "DeployConfig options": [[97, "deployconfig-options"]], "Deployment": [[126, "deployment"]], "Deployment configurations": [[96, null]], "Deployment recommendations": [[122, null]], "Derive the decryption key": [[29, "derive-the-decryption-key"]], "Derive the encryption key": [[29, "derive-the-encryption-key"]], "Desktop Client Deployment and Setup": [[92, null]], "Desktop Clients": [[91, null]], "Desktop client": [[134, "desktop-client"]], "Detecting changes made outside Nextcloud": [[40, "detecting-changes-made-outside-nextcloud"]], "Differences from External Storage": [[48, "differences-from-external-storage"]], "Directory settings": [[81, "directory-settings"]], "Disable": [[98, "disable"]], "Disable 3rdparty / non-shipped apps": [[138, "disable-3rdparty-non-shipped-apps"]], "Disable Debug Mode": [[126, "disable-debug-mode"]], "Disable TLS verification for IMAP/SMTP": [[116, "disable-tls-verification-for-imap-smtp"]], "Disable a user": [[76, "disable-a-user"]], "Disable an app": [[17, "disable-an-app"]], "Disable and enable users": [[85, "disable-and-enable-users"]], "Disable creation of example events": [[151, "disable-creation-of-example-events"]], "Disable preview image generation": [[126, "disable-preview-image-generation"]], "Disable profiles globally": [[77, "disable-profiles-globally"]], "Disable rich text editing": [[71, "disable-rich-text-editing"]], "Disable rich workspaces globally": [[71, "disable-rich-workspaces-globally"]], "Disabling automatic updates": [[92, "disabling-automatic-updates"]], "Disabling background scan task": [[56, "disabling-background-scan-task"]], "Disabling previews:": [[47, "disabling-previews"]], "Disabling the \u201cYour email address [\u2026] was changed\u201d email": [[85, "disabling-the-your-email-address-was-changed-email"]], "Disabling two-factor authentication": [[80, "disabling-two-factor-authentication"]], "Disallow write access to the whole web directory": [[131, "disallow-write-access-to-the-whole-web-directory"]], "Disk space usage": [[6, "disk-space-usage"]], "Distinguish between max expiration date and default expiration date": [[43, "distinguish-between-max-expiration-date-and-default-expiration-date"]], "Do we lock down Nextcloud?": [[137, "do-we-lock-down-nextcloud"]], "Docker": [[96, "docker"]], "Docker / Reverse Proxy / Nextcloud on 3 independent hosts - with HaRP container": [[96, "docker-reverse-proxy-nextcloud-on-3-independent-hosts-with-harp-container"]], "Docker Deploy Daemon": [[96, "docker-deploy-daemon"]], "Docker Deploy Daemon (Docker Socket Proxy)": [[96, "docker-deploy-daemon-docker-socket-proxy"]], "Docker Deploy Daemon (HaRP)": [[96, "docker-deploy-daemon-harp"]], "Docker Socket Proxy": [[95, "docker-socket-proxy"]], "Docker Socket Proxy security": [[96, "docker-socket-proxy-security"]], "Docker Socket Proxy vs HaRP": [[95, "docker-socket-proxy-vs-harp"]], "Docker on a remote host": [[96, "docker-on-a-remote-host"]], "Docker on a remote host - with HaRP container on the local host": [[96, "docker-on-a-remote-host-with-harp-container-on-the-local-host"]], "Document generation": [[15, "document-generation"]], "Domain Change": [[62, null]], "Downgrading": [[186, "downgrading"]], "Download Logs": [[99, "download-logs"]], "Drop Account app": [[108, "drop-account-app"]], "Duplicating server configurations": [[81, "duplicating-server-configurations"]], "During Version Creation": [[44, "during-version-creation"]], "During the Regular Background Job": [[44, "during-the-regular-background-job"]], "Edit data of a single group": [[75, "edit-data-of-a-single-group"]], "Edit data of a single user": [[76, "edit-data-of-a-single-user"]], "Editions": [[119, "editions"]], "Editor customization settings": [[160, "editor-customization-settings"]], "Email": [[63, null]], "Emails are still being sent after disabling notification emails": [[53, "emails-are-still-being-sent-after-disabling-notification-emails"]], "Enable": [[98, "enable"]], "Enable HTTP Strict Transport Security": [[126, "enable-http-strict-transport-security"]], "Enable HTTP/2 for faster loading": [[132, "enable-http-2-for-faster-loading"]], "Enable PHP OPcache": [[132, "enable-php-opcache"]], "Enable a user": [[76, "enable-a-user"]], "Enable access for external apps": [[159, "enable-access-for-external-apps"]], "Enable an app": [[17, "enable-an-app"]], "Enable hardening modules such as SELinux": [[126, "enable-hardening-modules-such-as-selinux"]], "Enable updates via the web interface": [[131, "enable-updates-via-the-web-interface"]], "Enabled": [[99, "enabled"]], "Enabling": [[40, "enabling"]], "Enabling Encryption (Step-by-Step)": [[28, "enabling-encryption-step-by-step"]], "Enabling MySQL 4-byte support": [[23, null]], "Enabling SSL": [[133, "enabling-ssl"]], "Enabling Windows compatible filenames": [[50, "enabling-windows-compatible-filenames"]], "Enabling apps via occ command": [[16, "enabling-apps-via-occ-command"]], "Enabling autocompletion": [[150, "enabling-autocompletion"]], "Enabling debug mode": [[63, "enabling-debug-mode"]], "Enabling email notifications": [[53, "enabling-email-notifications"]], "Enabling the antivirus app for files": [[56, "enabling-the-antivirus-app-for-files"]], "Enabling the dashboard app": [[61, "enabling-the-dashboard-app"]], "Enabling two-factor authentication": [[80, "enabling-two-factor-authentication"]], "Encrypt and decrypt all data": [[152, "encrypt-and-decrypt-all-data"]], "Encrypt the blocks": [[29, "encrypt-the-blocks"]], "Encrypt the private key": [[29, "encrypt-the-private-key"]], "Encrypt/seal the file key": [[29, "encrypt-seal-the-file-key"]], "Encrypted File Detection Limitations with ClamAV": [[56, "encrypted-file-detection-limitations-with-clamav"]], "Encrypting All Files": [[28, "encrypting-all-files"]], "Encrypting External Mountpoints and Team Folders": [[28, "encrypting-external-mountpoints-and-team-folders"]], "Encryption Method Comparison": [[28, "encryption-method-comparison"]], "Encryption commands": [[152, null]], "Encryption format": [[30, "encryption-format"]], "Encryption key cannot be found": [[28, "encryption-key-cannot-be-found"]], "Encryption key cannot be found with external storage or group folders": [[28, "encryption-key-cannot-be-found-with-external-storage-or-group-folders"]], "Encryption modules": [[152, "encryption-modules"]], "Encryption: encrypt the file": [[29, "encryption-encrypt-the-file"]], "Encryption: generate the file key": [[29, "encryption-generate-the-file-key"]], "End-of-life": [[186, "end-of-life"]], "Energy consumption": [[89, null]], "Enforcing two-factor authentication": [[80, "enforcing-two-factor-authentication"]], "Ensure that your Nextcloud instance is installed in a DMZ": [[126, "ensure-that-your-nextcloud-instance-is-installed-in-a-dmz"]], "Environment Variables": [[60, "environment-variables"], [94, "environment-variables"]], "Environment variables": [[150, "environment-variables"], [164, "environment-variables"]], "Errors": [[137, "errors"]], "Establishing the target database": [[20, "establishing-the-target-database"]], "Ethical AI Rating": [[6, "ethical-ai-rating"], [8, "ethical-ai-rating"], [11, "ethical-ai-rating"], [15, "ethical-ai-rating"]], "Event alarm types": [[112, "event-alarm-types"]], "Events": [[112, "events"]], "ExApps management": [[100, null]], "Example": [[17, "example"], [17, "id1"], [17, "id3"], [17, "id5"], [75, "example"], [75, "id1"], [75, "id3"], [75, "id5"], [75, "id8"], [76, "example"], [76, "id1"], [76, "id3"], [76, "id8"], [76, "id10"], [76, "id12"], [76, "id14"], [76, "id16"], [76, "id18"], [76, "id20"], [76, "id22"], [76, "id24"], [76, "id26"], [82, "example"], [82, "id1"], [82, "id3"], [82, "id5"], [102, "example"], [105, "example"]], "Example configuration": [[132, "example-configuration"]], "Example contact": [[113, "example-contact"]], "Example event": [[112, "example-event"]], "Example installation on CentOS 8": [[123, null]], "Example installation on OpenBSD": [[124, null]], "Example installation on Ubuntu 24.04 LTS": [[125, null]], "Example log entries": [[67, "example-log-entries"]], "Example workflows": [[188, "example-workflows"]], "Example: The login page": [[58, "example-the-login-page"]], "Examples": [[60, "examples"], [69, "examples"], [75, "examples"], [76, "examples"], [76, "id6"], [92, "examples"], [92, "id4"], [101, "examples"]], "Excluding IP addresses from brute force protection": [[58, "excluding-ip-addresses-from-brute-force-protection"]], "Excluding users from activity expiration": [[53, "excluding-users-from-activity-expiration"]], "Executing actions": [[102, "executing-actions"]], "Expert settings": [[81, "expert-settings"]], "Export and import calendars": [[151, "export-and-import-calendars"]], "Export threading data": [[118, "export-threading-data"]], "Exposed system address book": [[179, "exposed-system-address-book"]], "External Storage": [[40, null]], "External Storage authentication mechanisms": [[32, null]], "External media": [[133, "external-media"]], "External storage": [[101, "external-storage"]], "FAQ": [[95, "faq"], [137, "faq"], [188, "faq"]], "FAQ: How to lock profile visibility down": [[77, "faq-how-to-lock-profile-visibility-down"]], "FTP/FTPS": [[33, null]], "Fail2ban introduction": [[126, "fail2ban-introduction"]], "Fair Use Policy": [[138, "fair-use-policy"]], "Features": [[92, "features"]], "Features used by other apps": [[15, "features-used-by-other-apps"]], "Federated Cloud Sharing": [[26, "federated-cloud-sharing"], [60, "federated-cloud-sharing"]], "Federated calendar shares": [[112, "federated-calendar-shares"]], "Federation sync": [[153, "federation-sync"]], "File Sharing": [[43, null]], "File access control rules not supported": [[3, "file-access-control-rules-not-supported"]], "File age": [[105, "file-age"]], "File conversion": [[42, null]], "File encodings": [[71, "file-encodings"]], "File format": [[29, "file-format"], [29, "id1"], [29, "id3"], [29, "id5"], [29, "id7"]], "File locations": [[29, "file-locations"], [29, "id2"], [29, "id4"], [29, "id6"], [29, "id8"]], "File operations": [[153, "file-operations"]], "File sharing": [[153, "file-sharing"]], "File sharing and management": [[46, null]], "File type: file": [[29, "file-type-file"]], "File type: file key file": [[29, "file-type-file-key-file"]], "File type: private key file": [[29, "file-type-private-key-file"]], "File type: public key file": [[29, "file-type-public-key-file"]], "File type: share key file": [[29, "file-type-share-key-file"]], "File versions": [[60, "file-versions"], [107, "file-versions"], [153, "file-versions"]], "Files": [[88, null]], "Files App": [[134, "files-app"]], "Files access control": [[101, null]], "Files and metadata": [[110, "files-and-metadata"]], "Files commands": [[153, null]], "Files external": [[153, "files-external"]], "Files tools": [[2, "files-tools"]], "Filters": [[187, "filters"]], "Fixing invalid code integrity messages": [[137, "fixing-invalid-code-integrity-messages"]], "Flow": [[104, null]], "Flow configuration": [[103, null]], "Folder name": [[40, "folder-name"]], "Follow-up reminders": [[116, "follow-up-reminders"]], "Force language": [[66, "force-language"]], "Force locale": [[66, "force-locale"]], "Format": [[60, "format"]], "Forms App Events": [[187, "forms-app-events"]], "Forms tools": [[2, "forms-tools"]], "FreeBusy": [[112, "freebusy"]], "Frequently Asked Questions": [[15, "frequently-asked-questions"]], "Frequently asked questions": [[172, "frequently-asked-questions"]], "Front-end": [[6, "front-end"]], "Frontend apps": [[15, "frontend-apps"], [15, "id31"], [15, "id41"], [15, "id47"], [15, "id57"], [15, "id62"], [15, "id67"], [15, "id71"], [15, "id77"], [15, "id84"]], "Further Reading": [[28, "further-reading"]], "Further Resources": [[119, "further-resources"], [130, "further-resources"]], "GDPR compliance": [[109, null]], "General troubleshooting": [[138, null], [138, "id1"]], "Generate the file key": [[29, "generate-the-file-key"]], "Get a notification before a share expires": [[43, "get-a-notification-before-a-share-expires"]], "Get a task by id": [[14, "get-a-task-by-id"]], "Get account IDs": [[118, "get-account-ids"]], "Get app info": [[17, "get-app-info"]], "Get data of a single user": [[76, "get-data-of-a-single-user"]], "Get info about files in the scan queue": [[56, "get-info-about-files-in-the-scan-queue"]], "Get list of apps": [[17, "get-list-of-apps"]], "Get members of a group": [[75, "get-members-of-a-group"]], "Get subadmins of a group": [[75, "get-subadmins-of-a-group"]], "Get user\u2019s groups": [[76, "get-user-s-groups"]], "Get user\u2019s subadmin groups": [[76, "get-user-s-subadmin-groups"]], "Getting Started": [[88, null], [119, "getting-started"]], "Getting a single configuration value": [[149, "getting-a-single-configuration-value"]], "Give PHP read access to /dev/urandom": [[126, "give-php-read-access-to-dev-urandom"]], "Globally": [[118, "globally"]], "Google OAuth": [[116, "google-oauth"]], "Granting administrator privileges to a user": [[85, "granting-administrator-privileges-to-a-user"]], "Group commands": [[157, "group-commands"]], "Groups tab": [[81, "groups-tab"]], "Groupware": [[88, null], [115, null]], "Groupware data": [[110, "groupware-data"]], "HAProxy": [[69, "haproxy"]], "HTTPD(8)": [[124, "httpd-8"]], "HTTPS encryption": [[133, "https-encryption"]], "HaRP": [[95, "harp"]], "Handling with backup server": [[81, "handling-with-backup-server"]], "Hardening and security guidance": [[126, null]], "Hashing": [[60, "hashing"]], "Heartbeat": [[99, "heartbeat"]], "Helpful apps": [[108, null]], "Hidden files upload failure or not shown": [[38, "hidden-files-upload-failure-or-not-shown"]], "Hide export buttons": [[112, "hide-export-buttons"]], "How can I determine if the SMTP server supports the SMTPS protocol?": [[63, "how-can-i-determine-if-the-smtp-server-supports-the-smtps-protocol"]], "How can I determine what authorization and encryption protocols the mail server supports?": [[63, "how-can-i-determine-what-authorization-and-encryption-protocols-the-mail-server-supports"]], "How can I find out if a created user can access a database?": [[22, "how-can-i-find-out-if-a-created-user-can-access-a-database"]], "How can I find out if an SMTP server is reachable?": [[63, "how-can-i-find-out-if-an-smtp-server-is-reachable"]], "How can I find out if my MySQL/PostgreSQL server is reachable?": [[22, "how-can-i-find-out-if-my-mysql-postgresql-server-is-reachable"]], "How can I find out if the SMTP server is listening on a specific TCP port?": [[63, "how-can-i-find-out-if-the-smtp-server-is-listening-on-a-specific-tcp-port"]], "How can I send mail using self-signed certificates or use STARTTLS with self signed certificates?": [[63, "how-can-i-send-mail-using-self-signed-certificates-or-use-starttls-with-self-signed-certificates"]], "How does it work?": [[174, "how-does-it-work"]], "How interactions are tracked": [[114, "how-interactions-are-tracked"]], "How it works": [[58, "how-it-works"]], "How the \u201cFilesystem check frequency\u201d option works": [[40, "how-the-filesystem-check-frequency-option-works"]], "How to make external changes reliably detectable": [[40, "how-to-make-external-changes-reliably-detectable"]], "How to upgrade": [[148, null]], "How to verify scope behavior": [[77, "how-to-verify-scope-behavior"]], "How to work around \u201cgeneral error: 2006 MySQL server has gone away\u201d": [[22, "how-to-work-around-general-error-2006-mysql-server-has-gone-away"]], "IBM watsonx.ai integration": [[0, "ibm-watsonx-ai-integration"]], "IMAP timeout": [[116, "imap-timeout"]], "Icon retrieval": [[51, "icon-retrieval"]], "Icon theming": [[72, "icon-theming"]], "Identifying Basic Functionality Problems": [[93, "identifying-basic-functionality-problems"]], "Image Pull": [[99, "image-pull"]], "Image generation": [[15, "image-generation"]], "Image storage": [[1, "image-storage"]], "Image tags": [[164, "image-tags"]], "Implementation of the transparency requirements": [[12, "implementation-of-the-transparency-requirements"]], "Import signing keys:": [[167, "import-signing-keys"]], "Important distinction from non-interactive provisioning": [[92, "important-distinction-from-non-interactive-provisioning"]], "Importing existing data": [[18, "importing-existing-data"]], "Importing from Dokuwiki": [[18, "importing-from-dokuwiki"]], "Imprint (Theming app)": [[108, "imprint-theming-app"]], "Improve AI task pickup speed": [[1, "improve-ai-task-pickup-speed"], [15, "improve-ai-task-pickup-speed"]], "Improve performance": [[0, "improve-performance"]], "Inconvertible tables": [[20, "inconvertible-tables"]], "Info": [[156, "info"]], "Init": [[99, "init"]], "Initial Certification 2024/2025": [[89, "initial-certification-2024-2025"]], "Initial Content for new collectives": [[18, "initial-content-for-new-collectives"]], "Initial loading of data": [[3, "initial-loading-of-data"]], "Initial splitting": [[25, "initial-splitting"]], "Insight and debugging": [[14, null]], "Install packages": [[167, "install-packages"]], "Install the Apache reverse proxy": [[166, "install-the-apache-reverse-proxy"]], "Install the Collabora Online server": [[166, "install-the-collabora-online-server"]], "Installation": [[0, "installation"], [1, "installation"], [2, "installation"], [3, "installation"], [4, "installation"], [5, "installation"], [6, "installation"], [7, "installation"], [8, "installation"], [9, "installation"], [10, "installation"], [11, "installation"], [88, null], [92, "installation"], [133, "installation"], [145, "installation"], [162, null], [169, null], [187, "installation"], [188, "installation"]], "Installation and server configuration": [[127, null]], "Installation example on Ubuntu 24.04": [[167, null]], "Installation example with Docker": [[166, null]], "Installation folder": [[92, "installation-folder"]], "Installation on Linux": [[133, null]], "Installation on TrueNAS": [[133, "installation-on-truenas"]], "Installation version": [[186, "installation-version"]], "Installation via install script": [[133, "installation-via-install-script"]], "Installation via web installer on a VPS or web space": [[133, "installation-via-web-installer-on-a-vps-or-web-space"]], "Installation wizard": [[128, null], [133, "installation-wizard"]], "Installing AppAPI": [[95, "installing-appapi"]], "Installing ClamAV": [[56, "installing-clamav"]], "Installing ExApps": [[95, "installing-exapps"]], "Installing Nextcloud": [[123, "installing-nextcloud"]], "Installing PHP and the required modules": [[123, "installing-php-and-the-required-modules"]], "Installing from command line": [[121, null]], "Installing on Debian 12": [[163, null]], "Installing on Ubuntu 24.04 LTS": [[165, null]], "Installing on Windows (virtual machine)": [[133, "installing-on-windows-virtual-machine"]], "Installing optional modules redis/imagick": [[123, "installing-optional-modules-redis-imagick"]], "Installing the connector app": [[160, "installing-the-connector-app"]], "Installing via Docker": [[164, null]], "Installing via Snap packages": [[133, "installing-via-snap-packages"]], "Instruction set for groups": [[75, null]], "Instruction set for users": [[76, null]], "Integrating into the web interface": [[67, "integrating-into-the-web-interface"]], "Integrity check": [[153, "integrity-check"]], "Interactive wizard preconfiguration": [[92, "interactive-wizard-preconfiguration"]], "Internal Server Errors": [[138, "internal-server-errors"]], "Interoperability": [[12, "interoperability"]], "Introduction": [[54, "introduction"], [58, "introduction"], [60, "introduction"], [119, null], [187, "introduction"]], "Invalid private key for encryption app": [[28, "invalid-private-key-for-encryption-app"]], "Invitations": [[112, "invitations"]], "Is code signing mandatory for apps?": [[137, "is-code-signing-mandatory-for-apps"]], "Isolating other issues": [[93, "isolating-other-issues"]], "Issues and troubleshooting": [[139, null]], "Issues connecting to Outlook.com": [[118, "issues-connecting-to-outlook-com"]], "JIT": [[132, "jit"]], "JPEG quality setting:": [[47, "jpeg-quality-setting"]], "JavaScript (.js) or CSS (.css) files not served properly": [[129, "javascript-js-or-css-css-files-not-served-properly"]], "Key Management Modes": [[28, "key-management-modes"]], "Key Points & Limitations": [[28, "key-points-limitations"]], "Key generation: generate the key pair": [[29, "key-generation-generate-the-key-pair"]], "Key generation: store the private key": [[29, "key-generation-store-the-private-key"]], "Key generation: store the public key": [[29, "key-generation-store-the-public-key"]], "Key parameters": [[132, "key-parameters"]], "Key slots": [[155, "key-slots"]], "Key storage": [[152, "key-storage"]], "Key type: master key": [[29, "key-type-master-key"]], "Key type: public sharing key": [[29, "key-type-public-sharing-key"]], "Key type: recovery key": [[29, "key-type-recovery-key"]], "Key type: user key": [[29, "key-type-user-key"]], "Keyboard shortcut": [[93, "keyboard-shortcut"]], "Known Limitations": [[2, "known-limitations"], [3, "known-limitations"], [5, "known-limitations"], [6, "known-limitations"], [7, "known-limitations"], [8, "known-limitations"], [9, "known-limitations"], [10, "known-limitations"], [11, "known-limitations"]], "Known Smart Picker providers": [[175, "known-smart-picker-providers"]], "Known backends": [[112, "known-backends"]], "Known link preview providers": [[174, "known-link-preview-providers"]], "Known-user rule for Private scope": [[77, "known-user-rule-for-private-scope"]], "Kubernetes": [[3, "kubernetes"], [96, "kubernetes"]], "LDAP": [[60, "ldap"]], "LDAP and External User Backends": [[28, "ldap-and-external-user-backends"]], "LDAP commands": [[154, null], [154, "ldap-commands-label"]], "LDAP user cleanup": [[83, null]], "LLM Processing": [[116, "llm-processing"]], "Language & Locale": [[66, null]], "Large file upload on object storage": [[26, "large-file-upload-on-object-storage"]], "Launch after installation": [[92, "launch-after-installation"]], "Legacy migration": [[152, "legacy-migration"]], "Legal: Compliance with EU AI Act": [[12, null]], "Length of support (\u201cmaintenance\u201d)": [[186, "length-of-support-maintenance"]], "Limit on password length": [[126, "limit-on-password-length"]], "Limitation: renames are not detected reliably": [[40, "limitation-renames-are-not-detected-reliably"]], "Limitations": [[4, "limitations"], [5, "limitations"]], "Limitations in maintenance mode": [[150, "limitations-in-maintenance-mode"]], "Link previews": [[174, null]], "Linking external sites": [[64, null]], "List ExApps": [[98, "list-exapps"]], "List and filter tasks": [[14, "list-and-filter-tasks"]], "List of editable data fields": [[76, "list-of-editable-data-fields"]], "List registered daemons": [[97, "list-registered-daemons"]], "Listening to events": [[187, "listening-to-events"]], "Listing keys": [[155, "listing-keys"]], "Listing registered webhooks": [[187, "listing-registered-webhooks"]], "Live transcription": [[15, "live-transcription"]], "Loading": [[60, "loading"]], "Local": [[34, null]], "Local IMAP and SMTP servers": [[116, "local-imap-and-smtp-servers"]], "Log Files": [[93, "log-files"]], "Log Levels": [[132, "log-levels"]], "Log field breakdown": [[67, "log-field-breakdown"]], "Log fields explained": [[67, "log-fields-explained"]], "Log level": [[67, "log-level"]], "Log level interaction": [[67, "log-level-interaction"]], "Log type": [[67, "log-type"]], "Logfiles": [[138, "logfiles"]], "Logging": [[60, "logging"], [67, null], [81, "logging"]], "Logging commands": [[156, "logging-commands"]], "Logging the IMAP/SMTP/Sieve connections": [[118, "logging-the-imap-smtp-sieve-connections"]], "Login attributes tab": [[81, "login-attributes-tab"]], "Login loop without any clue in access.log, error.log, nor nextcloud.log": [[129, "login-loop-without-any-clue-in-access-log-error-log-nor-nextcloud-log"]], "Logs": [[3, "logs"], [4, "logs"]], "Long running migration steps": [[148, "long-running-migration-steps"]], "Long term support": [[134, "long-term-support"]], "Machine translation": [[1, "machine-translation"], [15, "machine-translation"]], "Mail": [[116, null], [118, "mail"]], "Mail Parameters": [[60, "mail-parameters"]], "Mail Providers": [[63, "mail-providers"]], "Mail tools (require Mail)": [[2, "mail-tools-require-mail"]], "Mailbox Share": [[116, "mailbox-share"]], "Maintenance": [[60, "maintenance"], [88, null], [141, null], [151, "maintenance"]], "Maintenance and release schedule": [[186, null]], "Maintenance and repair": [[152, "maintenance-and-repair"]], "Maintenance commands": [[156, "maintenance-commands"]], "Maintenance mode": [[140, "maintenance-mode"], [148, "maintenance-mode"]], "Maintenance releases": [[186, "maintenance-releases"]], "Major releases": [[186, "major-releases"]], "Major version upgrades": [[186, "major-version-upgrades"]], "Manage absences (out-of-office)": [[151, "manage-absences-out-of-office"]], "Manage addressbooks": [[151, "manage-addressbooks"]], "Manage calendar subscriptions": [[151, "manage-calendar-subscriptions"]], "Manage calendars": [[151, "manage-calendars"]], "Manage the background scanner": [[56, "manage-the-background-scanner"]], "Managing Deploy Daemons": [[97, null]], "Managing Encryption via occ Commands": [[28, "managing-encryption-via-occ-commands"]], "Managing ExApps": [[98, null]], "Managing apps": [[16, "managing-apps"]], "Managing groups": [[85, "managing-groups"]], "Manual account synchronization and threading": [[118, "manual-account-synchronization-and-threading"]], "Manual steps during upgrade": [[148, "manual-steps-during-upgrade"]], "Manually scan a single file": [[56, "manually-scan-a-single-file"]], "Manually trigger the background scan": [[56, "manually-trigger-the-background-scan"]], "MariaDB": [[140, "mariadb"], [146, "mariadb"], [146, "id2"]], "Mark a file as scanned or unscanned": [[56, "mark-a-file-as-scanned-or-unscanned"]], "Master key": [[152, "master-key"]], "Maximum chunk size": [[182, "maximum-chunk-size"]], "Maximum memory for image generation:": [[47, "maximum-memory-for-image-generation"]], "Maximum preview size:": [[47, "maximum-preview-size"]], "Maximum scale factor:": [[47, "maximum-scale-factor"]], "Maximum upload size": [[133, "maximum-upload-size"]], "Memcached": [[59, "memcached"]], "Memcached configuration in Nextcloud (config.php)": [[59, "memcached-configuration-in-nextcloud-config-php"]], "Memory": [[134, "memory"]], "Memory caching": [[59, null]], "Memory caching backend configuration": [[60, "memory-caching-backend-configuration"]], "Microsoft Active Directory": [[81, "microsoft-active-directory"]], "Microsoft Azure Blob Storage": [[48, "microsoft-azure-blob-storage"]], "Migrating from ownCloud": [[144, null]], "Migrating to a different server": [[143, null]], "Migration from Collabora Online": [[170, null]], "Migrations on updates": [[25, "migrations-on-updates"]], "Mimetype aliases": [[51, "mimetype-aliases"]], "Mimetype mapping": [[51, "mimetype-mapping"]], "Mimetypes management": [[51, null]], "Miscellaneous tools": [[2, "miscellaneous-tools"]], "Missing Shared Calendars": [[118, "missing-shared-calendars"]], "Mobile apps": [[134, "mobile-apps"]], "Model Switch": [[11, "model-switch"]], "Model requirements": [[2, "model-requirements"]], "Modifying": [[60, "modifying"]], "Modifying a configuration": [[82, "modifying-a-configuration"]], "Modifying the look of emails beyond the theming app capabilities": [[63, "modifying-the-look-of-emails-beyond-the-theming-app-capabilities"]], "Monitoring": [[52, null], [180, "monitoring"]], "Monitoring: Counting of active users": [[181, "monitoring-counting-of-active-users"], [182, "monitoring-counting-of-active-users"], [183, "monitoring-counting-of-active-users"]], "Mount Options": [[40, "mount-options"]], "Mounts": [[94, "mounts"]], "Moving the data directory / changing the datadirectory path": [[138, "moving-the-data-directory-changing-the-datadirectory-path"]], "Multi-instance Object Store": [[48, "multi-instance-object-store"]], "Multibucket Object Store": [[48, "multibucket-object-store"]], "Multibucket Object Store with per Bucket configuration overrides": [[48, "multibucket-object-store-with-per-bucket-configuration-overrides"]], "Multilinguality": [[5, "multilinguality"]], "Multiple trusted domains and share link URLs": [[69, "multiple-trusted-domains-and-share-link-urls"]], "Multiple/Merged Configuration Files": [[60, "multiple-merged-configuration-files"]], "MySQL": [[140, "mysql"], [146, "mysql"], [146, "id4"]], "MySQL database": [[120, "mysql-database"]], "NC & Docker on the Same-Host": [[96, "nc-docker-on-the-same-host"]], "NC & ExApps in the same Docker": [[96, "nc-exapps-in-the-same-docker"]], "NC to ExApp Communication": [[96, "nc-to-exapp-communication"]], "NGINX": [[69, "nginx"]], "NGINX configuration": [[129, null]], "NOTE": [[124, "note"]], "Next steps": [[125, "next-steps"]], "Nextcloud": [[35, null]], "Nextcloud AIO": [[97, "nextcloud-aio"]], "Nextcloud Assistant": [[1, null]], "Nextcloud Configuration Limitation": [[55, "nextcloud-configuration-limitation"]], "Nextcloud LDAP internals": [[81, "nextcloud-ldap-internals"]], "Nextcloud Office": [[161, null]], "Nextcloud Office App Settings": [[159, "nextcloud-office-app-settings"]], "Nextcloud Scripts": [[188, "nextcloud-scripts"]], "Nextcloud Verifications": [[60, "nextcloud-verifications"]], "Nextcloud Webhook Events": [[187, "nextcloud-webhook-events"]], "Nextcloud accessible via multiple domains / conditional overwrite": [[69, "nextcloud-accessible-via-multiple-domains-conditional-overwrite"]], "Nextcloud and Docker on the same host - with Nextcloud bare metal": [[96, "nextcloud-and-docker-on-the-same-host-with-nextcloud-bare-metal"]], "Nextcloud and Docker on the same host - with Nextcloud in Docker": [[96, "nextcloud-and-docker-on-the-same-host-with-nextcloud-in-docker"]], "Nextcloud avatar integration": [[81, "nextcloud-avatar-integration"]], "Nextcloud behind a reverse proxy (subdirectory)": [[69, "nextcloud-behind-a-reverse-proxy-subdirectory"]], "Nextcloud configuration": [[65, null], [181, "nextcloud-configuration"], [182, "nextcloud-configuration"]], "Nextcloud final steps": [[124, "nextcloud-final-steps"]], "Nextcloud in Docker AIO (all-in-one)": [[96, "nextcloud-in-docker-aio-all-in-one"]], "Nextcloud in a subdir of the NGINX webroot": [[129, "nextcloud-in-a-subdir-of-the-nginx-webroot"]], "Nextcloud in the webroot of NGINX": [[129, "nextcloud-in-the-webroot-of-nginx"]], "Nextcloud log files": [[138, "nextcloud-log-files"]], "Nextcloud prerequisites": [[126, "nextcloud-prerequisites"]], "Nextcloud server Log File": [[93, "nextcloud-server-log-file"]], "No reboot after installation": [[92, "no-reboot-after-installation"]], "Node (Files / Folders) Events": [[187, "node-files-folders-events"]], "Non-interactive account provisioning": [[92, "non-interactive-account-provisioning"]], "Not open source anymore?": [[137, "not-open-source-anymore"]], "Note": [[81, "note"]], "Notes and troubleshooting": [[136, "notes-and-troubleshooting"]], "Notes on PHP ini Configuration": [[130, "notes-on-php-ini-configuration"]], "OAuth2": [[68, null], [156, "oauth2"]], "OCC CLI": [[97, "occ-cli"]], "OCM commands": [[155, null]], "Object store": [[153, "object-store"]], "Obtaining a patch": [[136, "obtaining-a-patch"]], "Obtaining the Client Log File": [[93, "obtaining-the-client-log-file"]], "Office": [[88, null], [168, null]], "OpenAI integration": [[0, "openai-integration"]], "OpenMetrics": [[52, "openmetrics"]], "OpenMetrics endpoint": [[184, "openmetrics-endpoint"]], "OpenStack Object Storage": [[36, null]], "OpenStack Swift": [[48, "openstack-swift"]], "Operating system": [[126, "operating-system"]], "Optional parameters": [[92, "optional-parameters"]], "Options": [[97, "options"], [98, "options"], [98, "id2"], [98, "id4"]], "Organizations with clustered setups": [[59, "organizations-with-clustered-setups"]], "Organizations with single-server": [[59, "organizations-with-single-server"]], "Other Web servers": [[133, "other-web-servers"]], "Other issues": [[138, "other-issues"]], "Out-of-office feature": [[117, null]], "Outdated NSS / OpenSSL version": [[70, "outdated-nss-openssl-version"]], "Override default scopes in config.php": [[77, "override-default-scopes-in-config-php"]], "Overview": [[15, null], [28, "overview"], [58, "overview"], [58, "id1"], [133, "overview"], [142, "overview"], [148, "overview"], [186, "overview"], [187, "overview"]], "Overview of AI features": [[15, "overview-of-ai-features"]], "Overwrite parameters": [[69, "overwrite-parameters"]], "PHP": [[123, "php"], [124, "php"]], "PHP Installation": [[130, "php-installation"]], "PHP Module Quick Reference Table": [[130, "php-module-quick-reference-table"]], "PHP Modules for Media Management": [[130, "php-modules-for-media-management"]], "PHP Modules for Specific Applications": [[130, "php-modules-for-specific-applications"]], "PHP configuration": [[182, "php-configuration"]], "PHP ini Settings": [[130, "php-ini-settings"]], "PHP version and information": [[138, "php-version-and-information"]], "PHP-FPM configuration": [[133, "php-fpm-configuration"]], "PHP-Handler Configuration / Avoiding \u201c502 Bad Gateway\u201d": [[129, "php-handler-configuration-avoiding-502-bad-gateway"]], "Parameters": [[22, "parameters"], [47, "parameters"], [57, "parameters"], [120, "parameters"]], "Passing values between blocks": [[188, "passing-values-between-blocks"]], "Password-based mechanisms": [[32, "password-based-mechanisms"]], "Passwords": [[126, "passwords"]], "Patching Nextcloud": [[136, null]], "Patching apps": [[136, "patching-apps"]], "Patching server": [[136, "patching-server"]], "Payload envelope": [[187, "payload-envelope"]], "Per mail account": [[118, "per-mail-account"]], "Performance Implications": [[48, "performance-implications"]], "Persistent data": [[164, "persistent-data"]], "Personal data stored": [[110, null]], "Place config directory outside of the web root": [[126, "place-config-directory-outside-of-the-web-root"]], "Place data directory outside of the web root": [[126, "place-data-directory-outside-of-the-web-root"]], "Podman": [[96, "podman"]], "Pomerium": [[69, "pomerium"]], "PostgreSQL": [[140, "postgresql"], [146, "postgresql"], [146, "id5"]], "PostgreSQL database": [[22, "postgresql-database"], [120, "postgresql-database"]], "Preparing PHP": [[130, null]], "Prerequisites": [[148, "prerequisites"], [164, "prerequisites"]], "Prerequisites for manual installation": [[133, "prerequisites-for-manual-installation"]], "Pretty URLs": [[133, "pretty-urls"]], "Prevent uploading of specific files": [[101, "prevent-uploading-of-specific-files"]], "Preview": [[153, "preview"]], "Previews": [[60, "previews"], [132, "previews"], [159, "previews"], [182, "previews"], [183, "previews"], [184, "previews"]], "Previews configuration": [[47, null]], "Previews for Office files using LibreOffice": [[180, "previews-for-office-files-using-libreoffice"]], "Previews for PDF files with Imaginary": [[181, "previews-for-pdf-files-with-imaginary"]], "Previous Nextcloud releases": [[142, "previous-nextcloud-releases"]], "Privacy and User Property Scopes": [[113, "privacy-and-user-property-scopes"]], "Process manager": [[133, "process-manager"]], "Process manager modes": [[132, "process-manager-modes"]], "Profile data": [[110, "profile-data"]], "Profile field visibility settings": [[77, "profile-field-visibility-settings"]], "Profiles": [[77, null]], "Promote user to subadmin": [[76, "promote-user-to-subadmin"]], "Proper SSL configuration": [[126, "proper-ssl-configuration"]], "Property visibility scopes": [[77, "property-visibility-scopes"]], "Provider apps": [[15, "provider-apps"], [15, "id70"], [15, "id75"], [15, "id81"]], "Provider removal": [[80, "provider-removal"]], "Providing default files": [[27, null]], "Proxy Configurations": [[60, "proxy-configurations"]], "Public collaborative tag": [[105, "public-collaborative-tag"]], "Public shares": [[18, "public-shares"]], "Public-key mechanisms": [[32, "public-key-mechanisms"]], "Quick start": [[128, "quick-start"], [164, "quick-start"]], "Rate limits": [[112, "rate-limits"], [113, "rate-limits"]], "Rating Music genre recognition: Yellow": [[6, "rating-music-genre-recognition-yellow"]], "Rating for Photo face recognition: Green": [[6, "rating-for-photo-face-recognition-green"]], "Rating for Photo object detection: Green": [[6, "rating-for-photo-object-detection-green"]], "Rating for Video action recognition: Green": [[6, "rating-for-video-action-recognition-green"]], "Rating: \ud83d\udfe2": [[11, "rating"]], "Read the envelope key": [[29, "read-the-envelope-key"]], "Read the file key": [[29, "read-the-file-key"]], "Read the private key file": [[29, "read-the-private-key-file"]], "Read the public key": [[29, "read-the-public-key"]], "Reading a configuration": [[82, "reading-a-configuration"]], "Recommendations": [[92, "recommendations"]], "Recommendations based on type of deployment": [[59, "recommendations-based-on-type-of-deployment"]], "Recommended General PHP Modules": [[130, "recommended-general-php-modules"]], "Recommended PHP CLI Modules": [[130, "recommended-php-cli-modules"]], "Recommended PHP Caching Modules": [[130, "recommended-php-caching-modules"]], "Redirect all unencrypted traffic to HTTPS": [[126, "redirect-all-unencrypted-traffic-to-https"]], "Redis": [[59, "redis"], [123, "redis"], [124, "redis"]], "Redis configuration in Nextcloud (config.php)": [[59, "redis-configuration-in-nextcloud-config-php"]], "Reducing system load": [[132, "reducing-system-load"]], "Reference management": [[173, null]], "Refresh rate": [[112, "refresh-rate"]], "Register": [[97, "register"], [98, "register"], [99, "register"]], "Related apps": [[1, "related-apps"]], "Release channels": [[186, "release-channels"]], "Release notes": [[88, null], [176, null], [177, null]], "Release schedule": [[186, "release-schedule"]], "Release types": [[186, "release-types"]], "Reliability and robustness": [[12, "reliability-and-robustness"]], "Remember-me cookies": [[106, "remember-me-cookies"]], "Remember-me tokens": [[107, "remember-me-tokens"]], "Reminder notifications": [[112, "reminder-notifications"]], "Remove user from group": [[76, "remove-user-from-group"]], "Renaming a user": [[85, "renaming-a-user"]], "Replacing SQLite": [[132, "replacing-sqlite"]], "Replication": [[24, null]], "Repository": [[1, "repository"], [2, "repository"], [3, "repository"], [4, "repository"], [5, "repository"], [6, "repository"], [7, "repository"], [8, "repository"], [9, "repository"], [10, "repository"], [11, "repository"]], "Required PHP Database Connectors": [[130, "required-php-database-connectors"]], "Required PHP Modules": [[130, "required-php-modules"]], "Required parameters": [[92, "required-parameters"]], "Requirements": [[2, "requirements"], [3, "requirements"], [4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [22, "requirements"]], "Rescans": [[137, "rescans"]], "Resend the welcome email": [[76, "resend-the-welcome-email"]], "Reset a user\u2019s password": [[85, "reset-a-user-s-password"]], "Resetting a lost admin password": [[78, null]], "Resetting a user password": [[79, null]], "Resources and rooms": [[112, "resources-and-rooms"]], "Responding to data subject requests": [[111, null]], "Restore database": [[146, "restore-database"]], "Restore folders": [[146, "restore-folders"]], "Restoring": [[146, "restoring"]], "Restoring backup": [[146, null]], "Restrict admin actions to a specific range of IP addresses": [[126, "restrict-admin-actions-to-a-specific-range-of-ip-addresses"]], "Restrict edit to specific groups": [[159, "restrict-edit-to-specific-groups"]], "Restrict usage to specific groups": [[159, "restrict-usage-to-specific-groups"]], "Retention of files": [[105, null]], "Revalidation": [[132, "revalidation"]], "Reverse proxy": [[69, null], [171, null]], "Reverting a patch": [[136, "reverting-a-patch"]], "Right of access (Article 15)": [[111, "right-of-access-article-15"]], "Right to data portability (Article 20)": [[111, "right-to-data-portability-article-20"]], "Right to erasure (Article 17)": [[111, "right-to-erasure-article-17"]], "Right to rectification (Article 16)": [[111, "right-to-rectification-article-16"]], "Right to restriction of processing (Article 18)": [[111, "right-to-restriction-of-processing-article-18"]], "Rotating keys": [[155, "rotating-keys"]], "Run the conversion": [[20, "run-the-conversion"]], "Running occ": [[150, "running-occ"]], "Runtime Dependencies": [[18, "runtime-dependencies"]], "S3 SSE-C encryption support": [[48, "s3-sse-c-encryption-support"]], "S3 integrity protections enabled, configuration update may be needed": [[183, "s3-integrity-protections-enabled-configuration-update-may-be-needed"]], "SELinux": [[123, "selinux"]], "SELinux configuration": [[131, null]], "SELinux configuration tips": [[133, "selinux-configuration-tips"]], "SFTP": [[37, null]], "SMB authentication": [[38, "smb-authentication"]], "SMB update notifications": [[38, "smb-update-notifications"]], "SMB/CIFS": [[38, null]], "SMTP": [[63, "smtp"]], "SMTP timeout": [[116, "smtp-timeout"]], "SQLite": [[140, "sqlite"], [146, "sqlite"]], "SQLite database": [[120, "sqlite-database"]], "SSL": [[60, "ssl"]], "SSL certificate verification (LDAPS, TLS)": [[81, "ssl-certificate-verification-ldaps-tls"]], "SSL for MySQL Database": [[22, "ssl-for-mysql-database"]], "Sanitizing invalid filenames": [[50, "sanitizing-invalid-filenames"]], "Scaling": [[2, "scaling"], [3, "scaling"], [5, "scaling"], [6, "scaling"], [7, "scaling"], [9, "scaling"], [10, "scaling"]], "Schema inspection": [[151, "schema-inspection"]], "Schema maintenance": [[151, "schema-maintenance"]], "Scope defaults and precedence": [[77, "scope-defaults-and-precedence"]], "Scope visibility matrix": [[77, "scope-visibility-matrix"]], "Scopes and existing users": [[77, "scopes-and-existing-users"]], "Screen or tmux session": [[15, "screen-or-tmux-session"], [187, "screen-or-tmux-session"]], "Search tools": [[2, "search-tools"]], "Search/get groups": [[75, "search-get-groups"]], "Search/get users": [[76, "search-get-users"]], "Secure view settings": [[159, "secure-view-settings"]], "Security": [[156, "security"], [160, "security"]], "Security considerations": [[68, "security-considerations"]], "See also": [[77, "see-also"]], "Send a test email": [[63, "send-a-test-email"]], "Sendmail": [[63, "sendmail"]], "Serve security related headers by the Web server": [[126, "serve-security-related-headers-by-the-web-server"]], "Server": [[134, "server"]], "Server and web server logs": [[107, "server-and-web-server-logs"], [110, "server-and-web-server-logs"]], "Server settings": [[160, "server-settings"]], "Server tab": [[81, "server-tab"]], "Server tuning": [[132, null]], "Server-side Encryption": [[28, null]], "Server-side encryption details": [[29, null]], "Server-side encryption migration": [[30, null]], "Service Discovery": [[69, "service-discovery"]], "Service discovery": [[138, "service-discovery"]], "Session data": [[110, "session-data"]], "Session lifetime": [[107, "session-lifetime"]], "Set the profile default for new users": [[77, "set-the-profile-default-for-new-users"]], "Setting a hierarchical configuration value": [[149, "setting-a-hierarchical-configuration-value"]], "Setting a single configuration value": [[149, "setting-a-single-configuration-value"]], "Setting an array configuration value": [[149, "setting-an-array-configuration-value"]], "Setting mail server parameters in config.php": [[63, "setting-mail-server-parameters-in-config-php"]], "Setting storage quotas": [[85, "setting-storage-quotas"]], "Setting up background jobs": [[133, "setting-up-background-jobs"]], "Setting up remirepo with PHP 8.2": [[123, "setting-up-remirepo-with-php-8-2"]], "Setting up the workspace connection": [[188, "setting-up-the-workspace-connection"]], "Settings": [[132, "settings"]], "Setup (Manual)": [[8, "setup-manual"]], "Setup (via App Store)": [[8, "setup-via-app-store"]], "Setup Checks": [[180, "setup-checks"]], "Setup a filter and a jail for Nextcloud": [[126, "setup-a-filter-and-a-jail-for-nextcloud"]], "Setup checks": [[156, "setup-checks"]], "Setup deploy daemon": [[95, "setup-deploy-daemon"]], "Setup fail2ban": [[126, "setup-fail2ban"]], "Share operations": [[156, "share-operations"]], "Share tools": [[2, "share-tools"]], "Shared items": [[113, "shared-items"]], "Sharing": [[60, "sharing"]], "Sieve timeout": [[116, "sieve-timeout"]], "Sign the blocks": [[29, "sign-the-blocks"]], "Sign the private key": [[29, "sign-the-private-key"]], "Signature verification": [[147, "signature-verification"]], "Simple Storage Service (S3)": [[48, "simple-storage-service-s3"]], "Sizing": [[132, "sizing"]], "Skipping pre-login warning": [[68, "skipping-pre-login-warning"]], "Slow log": [[132, "slow-log"]], "Small/Private home server": [[59, "small-private-home-server"]], "Snooze and scheduled sending": [[116, "snooze-and-scheduled-sending"]], "Snowflake IDs": [[156, "snowflake-ids"], [184, "snowflake-ids"]], "Some files have not passed the integrity check": [[70, "some-files-have-not-passed-the-integrity-check"]], "Sources": [[29, "sources"]], "Space usage": [[3, "space-usage"], [8, "space-usage"], [11, "space-usage"]], "Special attributes": [[81, "special-attributes"]], "Special mechanisms": [[32, "special-mechanisms"]], "Speech-To-Text": [[1, "speech-to-text"], [15, "speech-to-text"]], "Speeding up webhook dispatch": [[187, "speeding-up-webhook-dispatch"]], "Split the file": [[29, "split-the-file"], [29, "id9"]], "Splitting databases": [[25, null]], "Status": [[156, "status"]], "Status Checks": [[99, "status-checks"]], "Status and control": [[152, "status-and-control"]], "Status return code": [[156, "status-return-code"]], "Step 1 \u2014 Enable the contrib component": [[163, "step-1-enable-the-contrib-component"]], "Step 1 \u2014 Install prerequisites": [[165, "step-1-install-prerequisites"]], "Step 2 \u2014 Create the database": [[165, "step-2-create-the-database"]], "Step 2 \u2014 Install prerequisites": [[163, "step-2-install-prerequisites"]], "Step 3 \u2014 Create the database": [[163, "step-3-create-the-database"]], "Step 3 \u2014 Pre-seed the installer answers": [[165, "step-3-pre-seed-the-installer-answers"]], "Step 4 \u2014 Download the package": [[165, "step-4-download-the-package"]], "Step 4 \u2014 Pre-seed the installer answers": [[163, "step-4-pre-seed-the-installer-answers"]], "Step 5 \u2014 Download the package": [[163, "step-5-download-the-package"]], "Step 5 \u2014 Install the package": [[165, "step-5-install-the-package"]], "Step 6 \u2014 Install the package": [[163, "step-6-install-the-package"]], "Step 6 \u2014 Verify": [[165, "step-6-verify"]], "Step 7 \u2014 Verify": [[163, "step-7-verify"]], "Step-by-Step Manual Upgrade": [[142, "step-by-step-manual-upgrade"]], "Storage of access tokens": [[126, "storage-of-access-tokens"]], "Store the envelope keys": [[29, "store-the-envelope-keys"]], "Store the file": [[29, "store-the-file"]], "Store the file key": [[29, "store-the-file-key"]], "Store the private key": [[29, "store-the-private-key"]], "Subscriptions": [[112, "subscriptions"]], "Summary": [[92, "summary"]], "Summary table": [[107, "summary-table"]], "Supplying alternate models": [[5, "supplying-alternate-models"], [7, "supplying-alternate-models"]], "Suppressing log messages": [[129, "suppressing-log-messages"]], "Sync": [[151, "sync"]], "Sync tokens": [[112, "sync-tokens"], [113, "sync-tokens"]], "Synchronising with clients after data recovery": [[146, "synchronising-with-clients-after-data-recovery"]], "Synchronous indexing": [[3, "synchronous-indexing"]], "System & maintenance commands": [[156, null]], "System Address Book": [[113, "system-address-book"]], "System Tag Events": [[187, "system-tag-events"]], "System Tags": [[157, "system-tags"]], "System address book": [[183, "system-address-book"]], "System configuration": [[26, "system-configuration"]], "System email": [[178, "system-email"]], "System environment variables": [[133, "system-environment-variables"]], "System requirements": [[134, null], [163, "system-requirements"], [165, "system-requirements"], [178, "system-requirements"], [179, "system-requirements"], [180, "system-requirements"], [181, "system-requirements"], [182, "system-requirements"], [183, "system-requirements"], [184, "system-requirements"], [185, "system-requirements"]], "Systemd service": [[15, "systemd-service"], [187, "systemd-service"]], "TLS / encryption app": [[132, "tls-encryption-app"]], "Table of contents": [[88, null]], "Tables App Events": [[187, "tables-app-events"]], "Talk (chat and calls)": [[110, "talk-chat-and-calls"]], "Talk App": [[134, "talk-app"]], "Talk tools (require Talk)": [[2, "talk-tools-require-talk"]], "Target Audience": [[119, "target-audience"]], "Task processing": [[1, "task-processing"], [156, "task-processing"]], "Tasks tools": [[2, "tasks-tools"]], "Temporary overrides": [[67, "temporary-overrides"]], "Test Deploy Daemon": [[99, null]], "Testing the configuration": [[81, "testing-the-configuration"]], "Text app": [[71, null]], "Text processing": [[1, "text-processing"], [15, "text-processing"]], "Text-To-Image": [[1, "text-to-image"]], "Text-To-Speech": [[1, "text-to-speech"], [15, "text-to-speech"]], "The LDAP configuration API": [[82, null]], "The Smart Picker": [[175, null]], "The access token": [[68, "the-access-token"]], "The brute force settings app": [[58, "the-brute-force-settings-app"]], "The recently contacted address book": [[114, "the-recently-contacted-address-book"]], "The test with getenv(\"PATH\") only returns an empty response": [[70, "the-test-with-getenv-path-only-returns-an-empty-response"]], "The \u201cStrict-Transport-Security\u201d HTTP header is not configured": [[70, "the-strict-transport-security-http-header-is-not-configured"]], "The \u201c__Host-\u201d prefix is not used for the cookie name": [[70, "the-host-prefix-is-not-used-for-the-cookie-name"]], "Theming": [[72, null], [156, "theming"]], "Thread Summary": [[116, "thread-summary"]], "Timeout and other connectivity issues": [[118, "timeout-and-other-connectivity-issues"]], "Timeouts": [[116, "timeouts"]], "Tips and tricks": [[129, "tips-and-tricks"]], "Traefik 1": [[69, "traefik-1"]], "Traefik 2": [[69, "traefik-2"]], "Transactional file locking": [[45, null]], "Transactional file locking is disabled": [[70, "transactional-file-locking-is-disabled"]], "Transferring files to another user": [[43, "transferring-files-to-another-user"]], "Translation": [[116, "translation"]], "Trash bin": [[107, "trash-bin"], [112, "trash-bin"], [153, "trash-bin"]], "Trashbin": [[153, "trashbin"]], "Triggering the conversion": [[20, "triggering-the-conversion"]], "Troubleshooting": [[3, "troubleshooting"], [22, "troubleshooting"], [28, "troubleshooting"], [53, "troubleshooting"], [58, "troubleshooting"], [63, "troubleshooting"], [93, null], [118, null], [131, "troubleshooting"], [132, "troubleshooting"], [142, "troubleshooting"], [147, "troubleshooting"], [172, null]], "Troubleshooting File Name Encoding": [[40, "troubleshooting-file-name-encoding"]], "Troubleshooting Web server and PHP problems": [[138, "troubleshooting-web-server-and-php-problems"]], "Troubleshooting WebDAV": [[138, "troubleshooting-webdav"]], "Troubleshooting contacts & calendar": [[138, "troubleshooting-contacts-calendar"]], "Troubleshooting data-directory": [[138, "troubleshooting-data-directory"]], "Troubleshooting encrypted files": [[138, "troubleshooting-encrypted-files"]], "Troubleshooting quota or size issues": [[138, "troubleshooting-quota-or-size-issues"]], "Troubleshooting sharing": [[138, "troubleshooting-sharing"]], "Troubleshooting, tips and tricks": [[81, "troubleshooting-tips-and-tricks"]], "Trusted domains": [[128, "trusted-domains"]], "Trusted proxy not detected when using a Unix domain socket": [[129, "trusted-proxy-not-detected-when-using-a-unix-domain-socket"]], "Tune PHP-FPM": [[132, "tune-php-fpm"]], "Tuning your database": [[132, "tuning-your-database"]], "Two-factor authentication": [[80, null], [157, "two-factor-authentication"]], "Types of Values": [[60, "types-of-values"]], "Unable to update contacts or events": [[118, "unable-to-update-contacts-or-events"]], "Uninstallation": [[135, null]], "Uninstalling": [[163, "uninstalling"], [164, "uninstalling"], [165, "uninstalling"]], "Unregister": [[97, "unregister"], [98, "unregister"]], "Update": [[98, "update"]], "Update notifications": [[16, "update-notifications"], [148, "update-notifications"]], "Update the reverse proxy configuration": [[170, "update-the-reverse-proxy-configuration"]], "Updating": [[163, "updating"], [164, "updating"], [165, "updating"], [166, "updating"]], "Upgrade distribution packages": [[170, "upgrade-distribution-packages"]], "Upgrade manually": [[142, null]], "Upgrade quickstart": [[145, "upgrade-quickstart"]], "Upgrade the docker image": [[170, "upgrade-the-docker-image"]], "Upgrade tips": [[145, "upgrade-tips"]], "Upgrade to Nextcloud 26": [[178, null]], "Upgrade to Nextcloud 27": [[179, null]], "Upgrade to Nextcloud 28": [[180, null]], "Upgrade to Nextcloud 30": [[181, null]], "Upgrade to Nextcloud 31": [[182, null]], "Upgrade to Nextcloud 32": [[183, null]], "Upgrade to Nextcloud 33": [[184, null]], "Upgrade to Nextcloud 35": [[185, null]], "Upgrade via built-in updater": [[147, null]], "Upgrade via snap packages": [[145, null]], "Upload of files greater than 10 MiB fails": [[129, "upload-of-files-greater-than-10-mib-fails"]], "Uploading big files > 512MB": [[26, null]], "Usage": [[8, "usage"], [54, "usage"], [58, "usage"]], "Usage Examples": [[97, "usage-examples"]], "Usage of variables for mount paths": [[40, "usage-of-variables-for-mount-paths"]], "Use HTTPS": [[126, "use-https"]], "Use OOXML by default for new files": [[159, "use-ooxml-by-default-for-new-files"]], "Use a dedicated domain for Nextcloud": [[126, "use-a-dedicated-domain-for-nextcloud"]], "Use a specific attribute or turn off loading of images": [[81, "use-a-specific-attribute-or-turn-off-loading-of-images"]], "Use php-mail for sending mail": [[116, "use-php-mail-for-sending-mail"]], "Useful SQL commands": [[22, "useful-sql-commands"]], "User & group commands": [[157, null]], "User Experience": [[60, "user-experience"]], "User Interface Preference Defaults": [[116, "user-interface-preference-defaults"]], "User Keys: Sharing & Recovery": [[28, "user-keys-sharing-recovery"]], "User Profile attributes": [[81, "user-profile-attributes"]], "User and Group Permissions": [[40, "user-and-group-permissions"]], "User and group mapping": [[81, "user-and-group-mapping"]], "User authentication with LDAP": [[81, null]], "User authentication with OpenID Connect": [[84, null]], "User commands": [[157, "user-commands"]], "User deletion": [[114, "user-deletion"]], "User listing and login per nested groups": [[81, "user-listing-and-login-per-nested-groups"]], "User management": [[74, null], [85, null]], "User migration": [[116, "user-migration"]], "User password policy": [[86, null]], "User provisioning API": [[87, null]], "User session": [[60, "user-session"]], "Users": [[88, null]], "Users are not receiving notification emails": [[53, "users-are-not-receiving-notification-emails"]], "Users tab": [[81, "users-tab"]], "Users\u2019 Federated Cloud IDs not updated after a domain name change": [[138, "users-federated-cloud-ids-not-updated-after-a-domain-name-change"]], "Using File Drop Share links": [[43, "using-file-drop-share-links"]], "Using Nextcloud MCP Server": [[2, "using-nextcloud-mcp-server"]], "Using Nextcloud as an identity provider": [[84, "using-nextcloud-as-an-identity-provider"]], "Using Object Store with Nextcloud": [[60, "using-object-store-with-nextcloud"]], "Using Redis-based transactional file locking": [[132, "using-redis-based-transactional-file-locking"]], "Using Self-Signed Certificates": [[40, "using-self-signed-certificates"]], "Using a custom download URL": [[147, "using-a-custom-download-url"]], "Using a self hosted apps store": [[16, "using-a-self-hosted-apps-store"]], "Using a shared secret for on-demand debugging": [[67, "using-a-shared-secret-for-on-demand-debugging"]], "Using cron to perform background jobs": [[132, "using-cron-to-perform-background-jobs"]], "Using custom app directories": [[16, "using-custom-app-directories"]], "Using email templates": [[63, "using-email-templates"]], "Using private API": [[16, "using-private-api"]], "Using the Redis session handler": [[59, "using-the-redis-session-handler"]], "Using the command line based updater": [[147, "using-the-command-line-based-updater"]], "Using the occ command": [[50, "using-the-occ-command"], [150, null]], "Using the web based updater": [[147, "using-the-web-based-updater"]], "Using the web interface": [[50, "using-the-web-interface"]], "Versions": [[153, "versions"]], "Voice Chat": [[1, "voice-chat"]], "Warnings on admin page": [[70, null]], "Watermarks": [[160, "watermarks"]], "Web browser": [[134, "web-browser"]], "Web server and PHP modules": [[138, "web-server-and-php-modules"]], "Web server configuration": [[178, "web-server-configuration"], [179, "web-server-configuration"], [180, "web-server-configuration"], [181, "web-server-configuration"], [183, "web-server-configuration"]], "WebDAV": [[39, null]], "Webcron": [[57, "webcron"]], "Webhook Listeners": [[187, null]], "Webhook listeners": [[156, "webhook-listeners"]], "Webserver Log Files": [[93, "webserver-log-files"]], "What becomes limited when you lock it down?": [[77, "what-becomes-limited-when-you-lock-it-down"]], "What does the updater do?": [[147, "what-does-the-updater-do"]], "What local users can see": [[77, "what-local-users-can-see"]], "What makes OLMo a fully open model?": [[5, "what-makes-olmo-a-fully-open-model"]], "Where can it be used?": [[175, "where-can-it-be-used"]], "Where do they appear?": [[174, "where-do-they-appear"]], "Who develops Nextcloud?": [[119, null]], "Why desktop clients miss deep changes": [[40, "why-desktop-clients-miss-deep-changes"]], "Why did Nextcloud add code signing?": [[137, "why-did-nextcloud-add-code-signing"]], "Why don\u2019t I see the recovery key option in the Encryption settings?": [[28, "why-don-t-i-see-the-recovery-key-option-in-the-encryption-settings"]], "Why is my prompt slow?": [[15, "why-is-my-prompt-slow"]], "Why is my web domain different from my mail domain?": [[63, "why-is-my-web-domain-different-from-my-mail-domain"]], "Why we drop old PHP versions": [[134, "why-we-drop-old-php-versions"]], "Windmill Workflows": [[188, null]], "Windmill workflows": [[15, "windmill-workflows"]], "Windows compatible filenames": [[50, null]], "Wopi configuration": [[159, "id1"]], "Workflow log": [[67, "workflow-log"]], "Workflows": [[156, "workflows"]], "XML output": [[17, "xml-output"], [17, "id2"], [17, "id4"], [17, "id6"], [75, "xml-output"], [75, "id2"], [75, "id4"], [75, "id6"], [75, "id7"], [75, "id9"], [76, "xml-output"], [76, "id2"], [76, "id4"], [76, "id5"], [76, "id7"], [76, "id9"], [76, "id11"], [76, "id13"], [76, "id15"], [76, "id17"], [76, "id19"], [76, "id21"], [76, "id23"], [76, "id25"], [76, "id27"], [82, "xml-output"], [82, "id2"], [82, "id4"], [82, "id6"]], "XOAUTH2 Authentication with Microsoft Azure AD": [[116, "xoauth2-authentication-with-microsoft-azure-ad"]], "You are accessing this site via HTTP": [[70, "you-are-accessing-this-site-via-http"]], "Your Web server is not set up properly to resolve /.well-known/caldav/ or /.well-known/carddav/": [[70, "your-web-server-is-not-set-up-properly-to-resolve-well-known-caldav-or-well-known-carddav"]], "Your Web server is not yet set up properly to allow file synchronization": [[70, "your-web-server-is-not-yet-set-up-properly-to-allow-file-synchronization"]], "Your database does not run with \u201cREAD COMMITTED\u201d transaction isolation level": [[70, "your-database-does-not-run-with-read-committed-transaction-isolation-level"]], "account_manager.default_property_scope": [[60, "account-manager-default-property-scope"]], "activity_expire_days": [[60, "activity-expire-days"]], "activity_use_cached_mountpoints": [[60, "activity-use-cached-mountpoints"]], "admin-delegation:add": [[156, "admin-delegation-add"]], "admin-delegation:remove": [[156, "admin-delegation-remove"]], "admin-delegation:show": [[156, "admin-delegation-show"]], "allow_local_remote_servers": [[60, "allow-local-remote-servers"]], "allow_user_to_change_display_name": [[60, "allow-user-to-change-display-name"]], "allowed_admin_ranges": [[60, "allowed-admin-ranges"]], "appcodechecker": [[60, "appcodechecker"]], "apps_paths": [[60, "apps-paths"]], "appsallowlist": [[60, "appsallowlist"]], "appstoreenabled": [[60, "appstoreenabled"]], "appstoreurl": [[60, "appstoreurl"]], "auth.bruteforce.max-attempts": [[60, "auth-bruteforce-max-attempts"]], "auth.bruteforce.protection.enabled": [[60, "auth-bruteforce-protection-enabled"]], "auth.bruteforce.protection.force.database": [[60, "auth-bruteforce-protection-force-database"]], "auth.bruteforce.protection.testing": [[60, "auth-bruteforce-protection-testing"]], "auth.storeCryptedPassword": [[60, "auth-storecryptedpassword"]], "auth.webauthn.enabled": [[60, "auth-webauthn-enabled"]], "auto_logout": [[60, "auto-logout"]], "background-job:delete": [[156, "background-job-delete"]], "background-job:execute": [[156, "background-job-execute"]], "background-job:history": [[156, "background-job-history"]], "background-job:list": [[156, "background-job-list"]], "background-job:running": [[156, "background-job-running"]], "background-job:worker": [[156, "background-job-worker"]], "background:cron": [[156, "background-cron"]], "background_jobs_expiration_days": [[60, "background-jobs-expiration-days"]], "binary_search_paths": [[60, "binary-search-paths"]], "bulkupload.enabled": [[60, "bulkupload-enabled"]], "cache_app_config": [[60, "cache-app-config"]], "cache_chunk_gc_ttl": [[60, "cache-chunk-gc-ttl"]], "cache_path": [[60, "cache-path"]], "calendar:export": [[151, "calendar-export"]], "calendar:import": [[151, "calendar-import"]], "carddav_sync_request_timeout": [[60, "carddav-sync-request-timeout"]], "carddav_sync_request_truncation": [[60, "carddav-sync-request-truncation"]], "check_data_directory_permissions": [[60, "check-data-directory-permissions"]], "check_for_working_htaccess": [[60, "check-for-working-htaccess"]], "check_for_working_wellknown_setup": [[60, "check-for-working-wellknown-setup"]], "cipher": [[60, "cipher"]], "comments.managerFactory": [[60, "comments-managerfactory"]], "config.php": [[160, "config-php"]], "config_is_read_only": [[60, "config-is-read-only"]], "configfilemode": [[60, "configfilemode"]], "connectivity_check_domains": [[60, "connectivity-check-domains"]], "cookie_domain": [[60, "cookie-domain"]], "copied_sample_config": [[60, "copied-sample-config"]], "core.login_flow_v2.allowed_user_agents": [[60, "core-login-flow-v2-allowed-user-agents"]], "csrf.optout": [[60, "csrf-optout"]], "customclient_desktop": [[60, "customclient-desktop"]], "data-fingerprint": [[60, "data-fingerprint"]], "datadirectory": [[60, "datadirectory"]], "dav:absence:get": [[151, "dav-absence-get"]], "dav:absence:set": [[151, "dav-absence-set"]], "dav:clear-calendar-unshares": [[151, "dav-clear-calendar-unshares"]], "dav:clear-contacts-photo-cache": [[151, "dav-clear-contacts-photo-cache"]], "dav:create-addressbook": [[151, "dav-create-addressbook"]], "dav:create-calendar": [[151, "dav-create-calendar"]], "dav:create-subscription": [[151, "dav-create-subscription"]], "dav:delete-calendar": [[151, "dav-delete-calendar"]], "dav:delete-subscription": [[151, "dav-delete-subscription"]], "dav:fix-missing-caldav-changes": [[151, "dav-fix-missing-caldav-changes"]], "dav:list-addressbooks": [[151, "dav-list-addressbooks"]], "dav:list-calendar-shares": [[151, "dav-list-calendar-shares"]], "dav:list-calendars": [[151, "dav-list-calendars"]], "dav:list-subscriptions": [[151, "dav-list-subscriptions"]], "dav:move-calendar": [[151, "dav-move-calendar"]], "dav:remove-invalid-shares": [[151, "dav-remove-invalid-shares"]], "dav:retention:clean-up": [[151, "dav-retention-clean-up"]], "dav:send-event-reminders": [[151, "dav-send-event-reminders"]], "dav:sync-birthday-calendar": [[151, "dav-sync-birthday-calendar"]], "dav:sync-system-addressbook": [[151, "dav-sync-system-addressbook"]], "davstorage.request_timeout": [[60, "davstorage-request-timeout"]], "db.log_request_id": [[60, "db-log-request-id"]], "db:add-missing-columns": [[151, "db-add-missing-columns"]], "db:add-missing-indices": [[151, "db-add-missing-indices"]], "db:add-missing-primary-keys": [[151, "db-add-missing-primary-keys"]], "db:convert-filecache-bigint": [[151, "db-convert-filecache-bigint"]], "db:convert-mysql-charset": [[151, "db-convert-mysql-charset"]], "db:convert-type": [[151, "db-convert-type"]], "db:schema:expected": [[151, "db-schema-expected"]], "db:schema:export": [[151, "db-schema-export"]], "dbdriveroptions": [[60, "dbdriveroptions"]], "dbhost": [[60, "dbhost"]], "dbname": [[60, "dbname"]], "dbpassword": [[60, "dbpassword"]], "dbpersistent": [[60, "dbpersistent"]], "dbreplica": [[60, "dbreplica"]], "dbtableprefix": [[60, "dbtableprefix"]], "dbtype": [[60, "dbtype"]], "dbuser": [[60, "dbuser"]], "debug": [[60, "debug"]], "default_certificates_bundle_path": [[60, "default-certificates-bundle-path"]], "default_language": [[60, "default-language"]], "default_locale": [[60, "default-locale"]], "default_phone_region": [[60, "default-phone-region"]], "default_timezone": [[60, "default-timezone"]], "defaultapp": [[60, "defaultapp"]], "diagnostics.logging": [[60, "diagnostics-logging"]], "diagnostics.logging.threshold": [[60, "diagnostics-logging-threshold"]], "documentation_url.server_logs": [[60, "documentation-url-server-logs"]], "enable_lazy_objects": [[60, "enable-lazy-objects"]], "enable_non-accessible_features": [[60, "enable-non-accessible-features"]], "enable_previews": [[60, "enable-previews"]], "enabledPreviewProviders": [[60, "enabledpreviewproviders"]], "encryption.use_legacy_base64_encoding": [[60, "encryption-use-legacy-base64-encoding"]], "encryption:change-key-storage-root": [[152, "encryption-change-key-storage-root"]], "encryption:clean-orphaned-keys": [[152, "encryption-clean-orphaned-keys"]], "encryption:decrypt-all": [[152, "encryption-decrypt-all"]], "encryption:disable": [[152, "encryption-disable"]], "encryption:disable-master-key": [[152, "encryption-disable-master-key"]], "encryption:drop-legacy-filekey": [[152, "encryption-drop-legacy-filekey"]], "encryption:enable": [[152, "encryption-enable"]], "encryption:enable-master-key": [[152, "encryption-enable-master-key"]], "encryption:encrypt-all": [[152, "encryption-encrypt-all"]], "encryption:fix-encrypted-version": [[152, "encryption-fix-encrypted-version"]], "encryption:fix-key-location": [[152, "encryption-fix-key-location"]], "encryption:list-modules": [[152, "encryption-list-modules"]], "encryption:migrate-key-storage-format": [[152, "encryption-migrate-key-storage-format"]], "encryption:recover-user": [[152, "encryption-recover-user"]], "encryption:scan:legacy-format": [[152, "encryption-scan-legacy-format"]], "encryption:set-default-module": [[152, "encryption-set-default-module"]], "encryption:show-key-storage-root": [[152, "encryption-show-key-storage-root"]], "encryption:status": [[152, "encryption-status"]], "enforce_theme": [[60, "enforce-theme"]], "errorlog": [[67, "errorlog"]], "external_storage.auth_availability_delay": [[60, "external-storage-auth-availability-delay"]], "federation:sync-addressbooks": [[153, "federation-sync-addressbooks"]], "file": [[67, "file"]], "filelocking.debug": [[60, "filelocking-debug"]], "filelocking.ttl": [[60, "filelocking-ttl"]], "files.chunked_upload.max_parallel_count": [[60, "files-chunked-upload-max-parallel-count"]], "files.chunked_upload.max_size": [[60, "files-chunked-upload-max-size"]], "files.trash.delete": [[60, "files-trash-delete"]], "files:cleanup": [[153, "files-cleanup"]], "files:copy": [[153, "files-copy"]], "files:delete": [[153, "files-delete"]], "files:get": [[153, "files-get"]], "files:mount:list": [[153, "files-mount-list"]], "files:mount:refresh": [[153, "files-mount-refresh"]], "files:move": [[153, "files-move"]], "files:object:delete": [[153, "files-object-delete"]], "files:object:get": [[153, "files-object-get"]], "files:object:info": [[153, "files-object-info"]], "files:object:list": [[153, "files-object-list"]], "files:object:orphans": [[153, "files-object-orphans"]], "files:object:put": [[153, "files-object-put"]], "files:put": [[153, "files-put"]], "files:reminders": [[153, "files-reminders"]], "files:repair-tree": [[153, "files-repair-tree"]], "files:sanitize-filenames": [[153, "files-sanitize-filenames"]], "files:scan": [[153, "files-scan"]], "files:scan-app-data": [[153, "files-scan-app-data"]], "files:transfer-ownership": [[153, "files-transfer-ownership"]], "files:windows-compatible-filenames": [[153, "files-windows-compatible-filenames"]], "files_antivirus:background-scan": [[156, "files-antivirus-background-scan"]], "files_antivirus:mark": [[156, "files-antivirus-mark"]], "files_antivirus:scan": [[156, "files-antivirus-scan"]], "files_antivirus:status": [[156, "files-antivirus-status"]], "files_external:applicable": [[153, "files-external-applicable"]], "files_external:backends": [[153, "files-external-backends"]], "files_external:config": [[153, "files-external-config"]], "files_external:create": [[153, "files-external-create"]], "files_external:delete": [[153, "files-external-delete"]], "files_external:dependencies": [[153, "files-external-dependencies"]], "files_external:export": [[153, "files-external-export"]], "files_external:import": [[153, "files-external-import"]], "files_external:list": [[153, "files-external-list"]], "files_external:notify": [[153, "files-external-notify"]], "files_external:option": [[153, "files-external-option"]], "files_external:scan": [[153, "files-external-scan"]], "files_external:verify": [[153, "files-external-verify"]], "files_external_allow_create_new_local": [[60, "files-external-allow-create-new-local"]], "files_no_background_scan": [[60, "files-no-background-scan"]], "filesystem_cache_readonly": [[60, "filesystem-cache-readonly"]], "filesystem_check_changes": [[60, "filesystem-check-changes"]], "forbidden_filename_basenames": [[60, "forbidden-filename-basenames"]], "forbidden_filename_characters": [[60, "forbidden-filename-characters"]], "forbidden_filename_extensions": [[60, "forbidden-filename-extensions"]], "forbidden_filenames": [[60, "forbidden-filenames"]], "force_language": [[60, "force-language"]], "force_locale": [[60, "force-locale"]], "forwarded_for_headers": [[60, "forwarded-for-headers"]], "group:add": [[157, "group-add"]], "group:adduser and group:removeuser": [[157, "group-adduser-and-group-removeuser"]], "group:delete": [[157, "group-delete"]], "group:info": [[157, "group-info"]], "group:list": [[157, "group-list"]], "gs.enabled": [[60, "gs-enabled"]], "gs.federation": [[60, "gs-federation"]], "has_internet_connection": [[60, "has-internet-connection"]], "hashingCost": [[60, "hashingcost"]], "hashingMemoryCost": [[60, "hashingmemorycost"]], "hashingThreads": [[60, "hashingthreads"]], "hashingTimeCost": [[60, "hashingtimecost"]], "hashing_default_password": [[60, "hashing-default-password"]], "hide_login_form": [[60, "hide-login-form"]], "htaccess.IgnoreFrontController": [[60, "htaccess-ignorefrontcontroller"]], "htaccess.RewriteBase": [[60, "htaccess-rewritebase"]], "http_client_add_user_agent_url": [[60, "http-client-add-user-agent-url"]], "info:file": [[156, "info-file"]], "info:file:space": [[156, "info-file-space"]], "info:storage": [[156, "info-storage"]], "info:storages": [[156, "info-storages"]], "installed": [[60, "installed"]], "instanceid": [[60, "instanceid"]], "integrity:check-app": [[153, "integrity-check-app"]], "integrity:check-core": [[153, "integrity-check-core"]], "integrity:sign-app": [[153, "integrity-sign-app"]], "knowledgebase.embedded": [[60, "knowledgebase-embedded"]], "knowledgebaseenabled": [[60, "knowledgebaseenabled"]], "ldap:check-group": [[154, "ldap-check-group"]], "ldap:check-user": [[154, "ldap-check-user"]], "ldap:create-empty-config": [[154, "ldap-create-empty-config"]], "ldap:delete-config": [[154, "ldap-delete-config"]], "ldap:search": [[154, "ldap-search"]], "ldap:set-config": [[154, "ldap-set-config"]], "ldap:show-remnants": [[154, "ldap-show-remnants"]], "ldap:test-config": [[154, "ldap-test-config"]], "ldap:test-user-settings": [[154, "ldap-test-user-settings"]], "ldapUserCleanupInterval": [[60, "ldapusercleanupinterval"]], "ldap_log_file": [[60, "ldap-log-file"]], "localstorage.allowsymlinks": [[60, "localstorage-allowsymlinks"]], "localstorage.umask": [[60, "localstorage-umask"]], "localstorage.unlink_on_truncate": [[60, "localstorage-unlink-on-truncate"]], "log.backtrace": [[60, "log-backtrace"]], "log.condition": [[60, "log-condition"]], "log:file": [[156, "log-file"]], "log:manage": [[156, "log-manage"]], "log_query": [[60, "log-query"]], "log_rotate_size": [[60, "log-rotate-size"]], "log_type": [[60, "log-type"]], "log_type_audit": [[60, "log-type-audit"]], "logdateformat": [[60, "logdateformat"]], "logfile": [[60, "logfile"]], "logfile_audit": [[60, "logfile-audit"]], "logfilemode": [[60, "logfilemode"]], "login_form_autocomplete": [[60, "login-form-autocomplete"]], "login_form_timeout": [[60, "login-form-timeout"]], "loglevel": [[60, "loglevel"]], "loglevel_dirty_database_queries": [[60, "loglevel-dirty-database-queries"]], "loglevel_frontend": [[60, "loglevel-frontend"]], "logo_url": [[60, "logo-url"]], "logtimezone": [[60, "logtimezone"]], "lookup_server": [[60, "lookup-server"]], "lost_password_link": [[60, "lost-password-link"]], "mail_domain": [[60, "mail-domain"]], "mail_from_address": [[60, "mail-from-address"]], "mail_send_plaintext_only": [[60, "mail-send-plaintext-only"]], "mail_sendmailmode": [[60, "mail-sendmailmode"]], "mail_smtpauth": [[60, "mail-smtpauth"]], "mail_smtpdebug": [[60, "mail-smtpdebug"]], "mail_smtphost": [[60, "mail-smtphost"]], "mail_smtpmode": [[60, "mail-smtpmode"]], "mail_smtpname": [[60, "mail-smtpname"]], "mail_smtppassword": [[60, "mail-smtppassword"]], "mail_smtpport": [[60, "mail-smtpport"]], "mail_smtpsecure": [[60, "mail-smtpsecure"]], "mail_smtpstreamoptions": [[60, "mail-smtpstreamoptions"]], "mail_smtptimeout": [[60, "mail-smtptimeout"]], "mail_template_class": [[60, "mail-template-class"]], "maintenance": [[60, "id1"]], "maintenance:data-fingerprint": [[156, "maintenance-data-fingerprint"]], "maintenance:mimetype:update-db and maintenance:mimetype:update-js": [[156, "maintenance-mimetype-update-db-and-maintenance-mimetype-update-js"]], "maintenance:mode": [[156, "maintenance-mode"]], "maintenance:repair": [[156, "maintenance-repair"]], "maintenance:repair-share-owner": [[156, "maintenance-repair-share-owner"]], "maintenance:theme:update": [[156, "maintenance-theme-update"]], "maintenance:update:htaccess": [[156, "maintenance-update-htaccess"]], "maintenance_window_start": [[57, "maintenance-window-start"], [60, "maintenance-window-start"]], "max_file_conversion_filesize": [[60, "max-file-conversion-filesize"]], "max_filesize_animated_gifs_public_sharing": [[60, "max-filesize-animated-gifs-public-sharing"]], "maximum.supported.desktop.version": [[60, "maximum-supported-desktop-version"]], "memberOf / read memberof permissions": [[81, "memberof-read-memberof-permissions"]], "memcache.distributed": [[60, "memcache-distributed"]], "memcache.local": [[60, "memcache-local"]], "memcache.locking": [[60, "memcache-locking"]], "memcache_customprefix": [[60, "memcache-customprefix"]], "memcached_options": [[60, "memcached-options"]], "memcached_servers": [[60, "memcached-servers"]], "metadata_max_filesize": [[60, "metadata-max-filesize"]], "minimum.supported.desktop.version": [[60, "minimum-supported-desktop-version"]], "mysql.collation": [[60, "mysql-collation"]], "mysql.utf8mb4": [[60, "mysql-utf8mb4"]], "nginx": [[26, "nginx"]], "no_unsupported_browser_warning": [[60, "no-unsupported-browser-warning"]], "objectstore": [[60, "objectstore"], [60, "id2"], [60, "id3"]], "objectstore.multibucket.preview-distribution": [[60, "objectstore-multibucket-preview-distribution"]], "occ commands": [[58, "occ-commands"], [160, "occ-commands"]], "ocm:keys:activate": [[155, "ocm-keys-activate"]], "ocm:keys:list": [[155, "ocm-keys-list"]], "ocm:keys:retire": [[155, "ocm-keys-retire"]], "ocm:keys:stage": [[155, "ocm-keys-stage"]], "openmetrics_allowed_clients": [[60, "openmetrics-allowed-clients"]], "openmetrics_skipped_classes": [[60, "openmetrics-skipped-classes"]], "openssl": [[60, "openssl"]], "overwrite.cli.url": [[60, "overwrite-cli-url"]], "overwritecondaddr": [[60, "overwritecondaddr"]], "overwritehost": [[60, "overwritehost"]], "overwriteprotocol": [[60, "overwriteprotocol"]], "overwritewebroot": [[60, "overwritewebroot"]], "part_file_in_storage": [[60, "part-file-in-storage"]], "passwordsalt": [[60, "passwordsalt"]], "pgsql_ssl": [[60, "pgsql-ssl"]], "preview:cleanup": [[153, "preview-cleanup"]], "preview_concurrency_all": [[60, "preview-concurrency-all"]], "preview_concurrency_new": [[60, "preview-concurrency-new"]], "preview_expiration_days": [[60, "preview-expiration-days"]], "preview_ffmpeg_path": [[60, "preview-ffmpeg-path"]], "preview_ffprobe_path": [[60, "preview-ffprobe-path"]], "preview_imaginary_key": [[60, "preview-imaginary-key"]], "preview_imaginary_url": [[60, "preview-imaginary-url"]], "preview_libreoffice_path": [[60, "preview-libreoffice-path"]], "preview_max_filesize_image": [[60, "preview-max-filesize-image"]], "preview_max_memory": [[60, "preview-max-memory"]], "preview_max_x": [[60, "preview-max-x"]], "preview_max_y": [[60, "preview-max-y"]], "profile.enabled": [[60, "profile-enabled"]], "profiler": [[60, "profiler"]], "profiling.path": [[60, "profiling-path"]], "profiling.request": [[60, "profiling-request"]], "profiling.request.rate": [[60, "profiling-request-rate"]], "profiling.sample": [[60, "profiling-sample"]], "profiling.sample.rate": [[60, "profiling-sample-rate"]], "profiling.sample.rotation": [[60, "profiling-sample-rotation"]], "profiling.secret": [[60, "profiling-secret"]], "projects.enabled": [[60, "projects-enabled"]], "proxy": [[60, "proxy"]], "proxyexclude": [[60, "proxyexclude"]], "proxyuserpwd": [[60, "proxyuserpwd"]], "qmail": [[63, "qmail"]], "query_log_file": [[60, "query-log-file"]], "query_log_file_backtrace": [[60, "query-log-file-backtrace"]], "query_log_file_parameters": [[60, "query-log-file-parameters"]], "query_log_file_requestid": [[60, "query-log-file-requestid"]], "quota_include_external_storage": [[60, "quota-include-external-storage"]], "ratelimit.protection.enabled": [[60, "ratelimit-protection-enabled"]], "ratelimit_overwrite": [[60, "ratelimit-overwrite"]], "redis": [[60, "redis"]], "redis.cluster": [[60, "redis-cluster"]], "redis_log_file": [[60, "redis-log-file"]], "reduce_to_languages": [[60, "reduce-to-languages"]], "reference_opengraph": [[60, "reference-opengraph"]], "remember_login_cookie_lifetime": [[60, "remember-login-cookie-lifetime"]], "secret": [[60, "secret"]], "security.ipv6_normalized_subnet_size": [[60, "security-ipv6-normalized-subnet-size"]], "security:bruteforce:attempts": [[156, "security-bruteforce-attempts"]], "security:bruteforce:reset": [[156, "security-bruteforce-reset"]], "security:certificates": [[156, "security-certificates"]], "security:certificates:export": [[156, "security-certificates-export"]], "security:certificates:import": [[156, "security-certificates-import"]], "security:certificates:remove": [[156, "security-certificates-remove"]], "serverid": [[60, "serverid"]], "session_keepalive": [[60, "session-keepalive"]], "session_lifetime": [[60, "session-lifetime"]], "session_relaxed_expiry": [[60, "session-relaxed-expiry"]], "share:list": [[153, "share-list"], [156, "share-list"]], "share_folder": [[60, "share-folder"]], "sharing.allow_custom_share_folder": [[60, "sharing-allow-custom-share-folder"]], "sharing.allow_disabled_password_enforcement_groups": [[60, "sharing-allow-disabled-password-enforcement-groups"]], "sharing.enable_mail_link_password_expiration": [[60, "sharing-enable-mail-link-password-expiration"]], "sharing.enable_share_accept": [[60, "sharing-enable-share-accept"]], "sharing.enable_share_mail": [[60, "sharing-enable-share-mail"]], "sharing.federation.allowSelfSignedCertificates": [[60, "sharing-federation-allowselfsignedcertificates"]], "sharing.force_share_accept": [[60, "sharing-force-share-accept"]], "sharing.mail_link_password_expiration_interval": [[60, "sharing-mail-link-password-expiration-interval"]], "sharing.managerFactory": [[60, "sharing-managerfactory"]], "sharing.maxAutocompleteResults": [[60, "sharing-maxautocompleteresults"]], "sharing.minSearchStringLength": [[60, "sharing-minsearchstringlength"]], "sharing:cleanup-remote-storages": [[153, "sharing-cleanup-remote-storages"]], "sharing:delete-orphan-shares": [[153, "sharing-delete-orphan-shares"]], "sharing:expiration-notification": [[153, "sharing-expiration-notification"]], "sharing:fix-share-owners": [[153, "sharing-fix-share-owners"]], "simpleSignUpLink.shown": [[60, "simplesignuplink-shown"]], "skeletondirectory": [[60, "skeletondirectory"]], "sort_groups_by_name": [[60, "sort-groups-by-name"]], "sqlite.journal_mode": [[60, "sqlite-journal-mode"]], "supportedDatabases": [[60, "supporteddatabases"]], "syslog": [[67, "syslog"]], "syslog_tag": [[60, "syslog-tag"]], "syslog_tag_audit": [[60, "syslog-tag-audit"]], "systemd": [[57, "systemd"], [67, "systemd"]], "tag:add": [[157, "tag-add"]], "tag:delete": [[157, "tag-delete"]], "tag:edit": [[157, "tag-edit"]], "tag:list": [[157, "tag-list"]], "taskprocessing:task-type:set-enabled": [[156, "taskprocessing-task-type-set-enabled"]], "taskprocessing:task:cleanup": [[156, "taskprocessing-task-cleanup"]], "taskprocessing:task:get": [[156, "taskprocessing-task-get"]], "taskprocessing:task:list": [[156, "taskprocessing-task-list"]], "taskprocessing:task:stats": [[156, "taskprocessing-task-stats"]], "taskprocessing:worker": [[156, "taskprocessing-worker"]], "tempdirectory": [[60, "tempdirectory"]], "templatedirectory": [[60, "templatedirectory"]], "theme": [[60, "theme"]], "theming.standalone_window.enabled": [[60, "theming-standalone-window-enabled"]], "theming:config": [[156, "theming-config"]], "token_auth_activity_update": [[60, "token-auth-activity-update"]], "token_auth_enforced": [[60, "token-auth-enforced"]], "transferIncomingShares": [[60, "transferincomingshares"]], "trashbin:cleanup": [[153, "trashbin-cleanup"], [153, "id1"]], "trashbin:expire": [[153, "trashbin-expire"], [153, "id2"]], "trashbin:restore": [[153, "trashbin-restore"]], "trashbin:size": [[153, "trashbin-size"], [153, "id3"]], "trashbin_retention_obligation": [[60, "trashbin-retention-obligation"]], "trusted_domains": [[60, "trusted-domains"]], "trusted_proxies": [[60, "trusted-proxies"]], "twofactorauth:cleanup": [[157, "twofactorauth-cleanup"]], "twofactorauth:disable and twofactorauth:enable": [[157, "twofactorauth-disable-and-twofactorauth-enable"]], "twofactorauth:enforce": [[157, "twofactorauth-enforce"]], "twofactorauth:state": [[157, "twofactorauth-state"]], "unified_search.enabled": [[60, "unified-search-enabled"]], "updatechecker": [[60, "updatechecker"]], "updatedirectory": [[60, "updatedirectory"]], "updater.release.channel": [[60, "updater-release-channel"]], "updater.server.url": [[60, "updater-server-url"]], "upgrade.cli-upgrade-link": [[60, "upgrade-cli-upgrade-link"]], "upgrade.disable-web": [[60, "upgrade-disable-web"]], "user:add": [[157, "user-add"]], "user:auth-tokens:add": [[157, "user-auth-tokens-add"]], "user:auth-tokens:delete": [[157, "user-auth-tokens-delete"]], "user:auth-tokens:list": [[157, "user-auth-tokens-list"]], "user:clear-avatar-cache": [[157, "user-clear-avatar-cache"]], "user:delete": [[157, "user-delete"]], "user:disable and user:enable": [[157, "user-disable-and-user-enable"]], "user:info": [[157, "user-info"]], "user:keys:verify": [[157, "user-keys-verify"]], "user:lastseen": [[157, "user-lastseen"]], "user:list": [[157, "user-list"]], "user:profile": [[157, "user-profile"]], "user:report": [[157, "user-report"]], "user:resetpassword": [[157, "user-resetpassword"]], "user:setting": [[157, "user-setting"]], "user:sync-account-data": [[157, "user-sync-account-data"]], "user:welcome": [[157, "user-welcome"]], "user_ini_additional_lines": [[60, "user-ini-additional-lines"]], "version": [[60, "version"]], "versions:cleanup": [[153, "versions-cleanup"], [153, "id4"]], "versions:expire": [[153, "versions-expire"], [153, "id5"]], "versions_retention_obligation": [[60, "versions-retention-obligation"]], "workflows:list": [[156, "workflows-list"]], "\u201cAccess through untrusted domain\u201d error with HTTP/3": [[129, "access-through-untrusted-domain-error-with-http-3"]], "\u201cCSync unknown error\u201d": [[93, "csync-unknown-error"]], "\u201cConnection closed\u201d message when syncing files": [[93, "connection-closed-message-when-syncing-files"]]}, "docnames": ["ai/ai_as_a_service", "ai/app_assistant", "ai/app_context_agent", "ai/app_context_chat", "ai/app_live_transcription", "ai/app_llm2", "ai/app_recognize", "ai/app_stt_whisper2", "ai/app_summary_bot", "ai/app_text2image_stablediffusion2", "ai/app_text2speech_kokoro", "ai/app_translate2", "ai/eu_ai_act", "ai/index", "ai/insight_and_debugging", "ai/overview", "apps_management", "apps_management_api", "collectives/index", "configuration_database/bigint_identifiers", "configuration_database/db_conversion", "configuration_database/index", "configuration_database/linux_database_configuration", "configuration_database/mysql_4byte_support", "configuration_database/replication", "configuration_database/splitting", "configuration_files/big_file_upload_configuration", "configuration_files/default_files_configuration", "configuration_files/encryption_configuration", "configuration_files/encryption_details", "configuration_files/encryption_migration", "configuration_files/external_storage/amazons3", "configuration_files/external_storage/auth_mechanisms", "configuration_files/external_storage/ftp", "configuration_files/external_storage/local", "configuration_files/external_storage/nextcloud", "configuration_files/external_storage/openstack", "configuration_files/external_storage/sftp", "configuration_files/external_storage/smb", "configuration_files/external_storage/webdav", "configuration_files/external_storage_configuration_gui", "configuration_files/federated_cloud_sharing_configuration", "configuration_files/file_conversion", "configuration_files/file_sharing_configuration", "configuration_files/file_versioning", "configuration_files/files_locking_transactional", "configuration_files/index", "configuration_files/previews_configuration", "configuration_files/primary_storage", "configuration_files/trashbin_configuration", "configuration_files/windows_compatible_filenames", "configuration_mimetypes/index", "configuration_monitoring/index", "configuration_server/activity_configuration", "configuration_server/admin_delegation_configuration", "configuration_server/android_deep_link_handling", "configuration_server/antivirus_configuration", "configuration_server/background_jobs_configuration", "configuration_server/bruteforce_configuration", "configuration_server/caching_configuration", "configuration_server/config_sample_php_parameters", "configuration_server/dashboard_configuration", "configuration_server/domain_change", "configuration_server/email_configuration", "configuration_server/external_sites", "configuration_server/index", "configuration_server/language_configuration", "configuration_server/logging_configuration", "configuration_server/oauth2", "configuration_server/reverse_proxy_configuration", "configuration_server/security_setup_warnings", "configuration_server/text_configuration", "configuration_server/theming", "configuration_user/authentication", "configuration_user/index", "configuration_user/instruction_set_for_groups", "configuration_user/instruction_set_for_users", "configuration_user/profile_configuration", "configuration_user/reset_admin_password", "configuration_user/reset_user_password", "configuration_user/two_factor-auth", "configuration_user/user_auth_ldap", "configuration_user/user_auth_ldap_api", "configuration_user/user_auth_ldap_cleanup", "configuration_user/user_auth_oidc", "configuration_user/user_configuration", "configuration_user/user_password_policy", "configuration_user/user_provisioning_api", "contents", "declarations/energy_consumption", "declarations/index", "desktop/index", "desktop/massdeployment", "desktop/troubleshooting", "exapps_management/AdvancedDeployOptions", "exapps_management/AppAPIAndExternalApps", "exapps_management/DeployConfigurations", "exapps_management/ManagingDeployDaemons", "exapps_management/ManagingExApps", "exapps_management/TestDeploy", "exapps_management/index", "file_workflows/access_control", "file_workflows/automated_tagging", "file_workflows/configuration", "file_workflows/index", "file_workflows/retention", "gdpr/cookies", "gdpr/data_retention", "gdpr/helpful_apps", "gdpr/index", "gdpr/personal_data", "gdpr/subject_rights", "groupware/calendar", "groupware/contacts", "groupware/contactsinteraction", "groupware/index", "groupware/mail", "groupware/out_of_office", "groupware/troubleshooting", "index", "installation/automatic_configuration", "installation/command_line_installation", "installation/deployment_recommendations", "installation/example_centos", "installation/example_openbsd", "installation/example_ubuntu", "installation/harden_server", "installation/index", "installation/installation_wizard", "installation/nginx", "installation/php_configuration", "installation/selinux_configuration", "installation/server_tuning", "installation/source_installation", "installation/system_requirements", "installation/uninstallation", "issues/applying_patch", "issues/code_signing", "issues/general_troubleshooting", "issues/index", "maintenance/backup", "maintenance/index", "maintenance/manual_upgrade", "maintenance/migrating", "maintenance/migrating_owncloud", "maintenance/package_upgrade", "maintenance/restore", "maintenance/update", "maintenance/upgrade", "occ_apps", "occ_command", "occ_database", "occ_encryption", "occ_files", "occ_ldap", "occ_ocm", "occ_system", "occ_users", "office/collabora_online", "office/configuration", "office/euro-office/configuration", "office/euro-office/index", "office/euro-office/installation", "office/euro-office/installation_debian", "office/euro-office/installation_docker", "office/euro-office/installation_ubuntu", "office/example-docker", "office/example-ubuntu", "office/index", "office/installation", "office/migration", "office/proxy", "office/troubleshooting", "reference/index", "reference/link_previews", "reference/smart_picker", "release_notes", "release_notes/index", "release_notes/upgrade_to_26", "release_notes/upgrade_to_27", "release_notes/upgrade_to_28", "release_notes/upgrade_to_30", "release_notes/upgrade_to_31", "release_notes/upgrade_to_32", "release_notes/upgrade_to_33", "release_notes/upgrade_to_35", "release_schedule", "webhook_listeners/index", "windmill_workflows/index"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2}, "filenames": ["ai/ai_as_a_service.rst", "ai/app_assistant.rst", "ai/app_context_agent.rst", "ai/app_context_chat.rst", "ai/app_live_transcription.rst", "ai/app_llm2.rst", "ai/app_recognize.rst", "ai/app_stt_whisper2.rst", "ai/app_summary_bot.rst", "ai/app_text2image_stablediffusion2.rst", "ai/app_text2speech_kokoro.rst", "ai/app_translate2.rst", "ai/eu_ai_act.rst", "ai/index.rst", "ai/insight_and_debugging.rst", "ai/overview.rst", "apps_management.rst", "apps_management_api.rst", "collectives/index.rst", "configuration_database/bigint_identifiers.rst", "configuration_database/db_conversion.rst", "configuration_database/index.rst", "configuration_database/linux_database_configuration.rst", "configuration_database/mysql_4byte_support.rst", "configuration_database/replication.rst", "configuration_database/splitting.rst", "configuration_files/big_file_upload_configuration.rst", "configuration_files/default_files_configuration.rst", "configuration_files/encryption_configuration.rst", "configuration_files/encryption_details.rst", "configuration_files/encryption_migration.rst", "configuration_files/external_storage/amazons3.rst", "configuration_files/external_storage/auth_mechanisms.rst", "configuration_files/external_storage/ftp.rst", "configuration_files/external_storage/local.rst", "configuration_files/external_storage/nextcloud.rst", "configuration_files/external_storage/openstack.rst", "configuration_files/external_storage/sftp.rst", "configuration_files/external_storage/smb.rst", "configuration_files/external_storage/webdav.rst", "configuration_files/external_storage_configuration_gui.rst", "configuration_files/federated_cloud_sharing_configuration.rst", "configuration_files/file_conversion.rst", "configuration_files/file_sharing_configuration.rst", "configuration_files/file_versioning.rst", "configuration_files/files_locking_transactional.rst", "configuration_files/index.rst", "configuration_files/previews_configuration.rst", "configuration_files/primary_storage.rst", "configuration_files/trashbin_configuration.rst", "configuration_files/windows_compatible_filenames.rst", "configuration_mimetypes/index.rst", "configuration_monitoring/index.rst", "configuration_server/activity_configuration.rst", "configuration_server/admin_delegation_configuration.rst", "configuration_server/android_deep_link_handling.rst", "configuration_server/antivirus_configuration.rst", "configuration_server/background_jobs_configuration.rst", "configuration_server/bruteforce_configuration.rst", "configuration_server/caching_configuration.rst", "configuration_server/config_sample_php_parameters.rst", "configuration_server/dashboard_configuration.rst", "configuration_server/domain_change.rst", "configuration_server/email_configuration.rst", "configuration_server/external_sites.rst", "configuration_server/index.rst", "configuration_server/language_configuration.rst", "configuration_server/logging_configuration.rst", "configuration_server/oauth2.rst", "configuration_server/reverse_proxy_configuration.rst", "configuration_server/security_setup_warnings.rst", "configuration_server/text_configuration.rst", "configuration_server/theming.rst", "configuration_user/authentication.rst", "configuration_user/index.rst", "configuration_user/instruction_set_for_groups.rst", "configuration_user/instruction_set_for_users.rst", "configuration_user/profile_configuration.rst", "configuration_user/reset_admin_password.rst", "configuration_user/reset_user_password.rst", "configuration_user/two_factor-auth.rst", "configuration_user/user_auth_ldap.rst", "configuration_user/user_auth_ldap_api.rst", "configuration_user/user_auth_ldap_cleanup.rst", "configuration_user/user_auth_oidc.rst", "configuration_user/user_configuration.rst", "configuration_user/user_password_policy.rst", "configuration_user/user_provisioning_api.rst", "contents.rst", "declarations/energy_consumption.rst", "declarations/index.rst", "desktop/index.rst", "desktop/massdeployment.rst", "desktop/troubleshooting.rst", "exapps_management/AdvancedDeployOptions.rst", "exapps_management/AppAPIAndExternalApps.rst", "exapps_management/DeployConfigurations.rst", "exapps_management/ManagingDeployDaemons.rst", "exapps_management/ManagingExApps.rst", "exapps_management/TestDeploy.rst", "exapps_management/index.rst", "file_workflows/access_control.rst", "file_workflows/automated_tagging.rst", "file_workflows/configuration.rst", "file_workflows/index.rst", "file_workflows/retention.rst", "gdpr/cookies.rst", "gdpr/data_retention.rst", "gdpr/helpful_apps.rst", "gdpr/index.rst", "gdpr/personal_data.rst", "gdpr/subject_rights.rst", "groupware/calendar.rst", "groupware/contacts.rst", "groupware/contactsinteraction.rst", "groupware/index.rst", "groupware/mail.rst", "groupware/out_of_office.rst", "groupware/troubleshooting.rst", "index.rst", "installation/automatic_configuration.rst", "installation/command_line_installation.rst", "installation/deployment_recommendations.rst", "installation/example_centos.rst", "installation/example_openbsd.rst", "installation/example_ubuntu.rst", "installation/harden_server.rst", "installation/index.rst", "installation/installation_wizard.rst", "installation/nginx.rst", "installation/php_configuration.rst", "installation/selinux_configuration.rst", "installation/server_tuning.rst", "installation/source_installation.rst", "installation/system_requirements.rst", "installation/uninstallation.rst", "issues/applying_patch.rst", "issues/code_signing.rst", "issues/general_troubleshooting.rst", "issues/index.rst", "maintenance/backup.rst", "maintenance/index.rst", "maintenance/manual_upgrade.rst", "maintenance/migrating.rst", "maintenance/migrating_owncloud.rst", "maintenance/package_upgrade.rst", "maintenance/restore.rst", "maintenance/update.rst", "maintenance/upgrade.rst", "occ_apps.rst", "occ_command.rst", "occ_database.rst", "occ_encryption.rst", "occ_files.rst", "occ_ldap.rst", "occ_ocm.rst", "occ_system.rst", "occ_users.rst", "office/collabora_online.rst", "office/configuration.rst", "office/euro-office/configuration.rst", "office/euro-office/index.rst", "office/euro-office/installation.rst", "office/euro-office/installation_debian.rst", "office/euro-office/installation_docker.rst", "office/euro-office/installation_ubuntu.rst", "office/example-docker.rst", "office/example-ubuntu.rst", "office/index.rst", "office/installation.rst", "office/migration.rst", "office/proxy.rst", "office/troubleshooting.rst", "reference/index.rst", "reference/link_previews.rst", "reference/smart_picker.rst", "release_notes.rst", "release_notes/index.rst", "release_notes/upgrade_to_26.rst", "release_notes/upgrade_to_27.rst", "release_notes/upgrade_to_28.rst", "release_notes/upgrade_to_30.rst", "release_notes/upgrade_to_31.rst", "release_notes/upgrade_to_32.rst", "release_notes/upgrade_to_33.rst", "release_notes/upgrade_to_35.rst", "release_schedule.rst", "webhook_listeners/index.rst", "windmill_workflows/index.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 20, 22, 26, 27, 28, 29, 31, 37, 38, 40, 41, 44, 45, 48, 49, 56, 57, 58, 59, 60, 62, 63, 64, 67, 69, 72, 74, 77, 81, 83, 84, 88, 92, 93, 95, 96, 98, 99, 101, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 118, 124, 126, 129, 130, 131, 132, 133, 136, 137, 138, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 156, 157, 159, 160, 161, 163, 167, 172, 180, 183, 184, 186, 187], "0": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 15, 17, 22, 23, 24, 26, 28, 29, 33, 41, 45, 48, 52, 53, 59, 60, 63, 67, 69, 70, 71, 75, 76, 77, 81, 82, 85, 92, 93, 95, 96, 98, 99, 107, 112, 113, 116, 117, 118, 124, 126, 128, 129, 130, 132, 134, 138, 144, 147, 148, 149, 150, 151, 153, 154, 156, 157, 159, 166, 172, 179, 180, 181, 182, 183, 185, 186, 187], "00": [22, 23, 55, 59, 60, 67, 153, 156, 157], "000": [29, 112, 113, 119], "0000": 156, "001": 60, "0022": 60, "00679e": 156, "0082c9": [72, 156], "00am": [57, 60], "00iv00": 29, "00sig00": 29, "01": [57, 60, 67, 83, 134, 151, 153, 156, 157], "0100": 63, "0123": 76, "01t00": 153, "01t08": 157, "01t09": 153, "01t12": 153, "01t14": 156, "02": [6, 59, 67, 153], "03": [55, 67, 157], "04": [22, 72, 88, 127, 133, 134, 153, 161, 162, 169, 185], "05": [57, 60, 129, 151, 153], "050": 156, "055": 22, "06": [129, 156], "062": 22, "0640": [60, 67], "07": 60, "0750": 34, "0770": 28, "079e7bc89d69792839a5e1831b1cbc80": 118, "08": [60, 153, 156], "09": [67, 129, 156], "09563164f9904a837f9ca0b5f626db56c838e5098e0ccc1d8b": 137, "0e": 55, "1": [1, 2, 3, 4, 5, 6, 8, 9, 11, 14, 15, 16, 17, 22, 23, 24, 26, 28, 29, 31, 33, 43, 47, 48, 53, 56, 57, 58, 59, 60, 63, 66, 67, 70, 71, 75, 76, 77, 81, 82, 88, 92, 93, 95, 96, 98, 99, 107, 112, 113, 116, 118, 124, 126, 128, 129, 130, 132, 133, 136, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 162, 164, 166, 172, 178, 179, 181, 182, 183, 184, 186, 187], "10": [1, 2, 4, 5, 6, 7, 9, 10, 12, 15, 22, 23, 24, 41, 44, 47, 55, 56, 58, 60, 63, 67, 69, 72, 81, 85, 86, 88, 93, 96, 112, 113, 116, 123, 132, 134, 144, 153, 156, 157, 159, 162, 163, 164, 165, 181, 182, 185, 187], "100": [7, 17, 26, 29, 47, 57, 60, 67, 75, 76, 116, 119, 132, 156, 172, 180, 186], "1000": [5, 53, 81, 93, 124, 132], "10000": [59, 124], "1000000": 93, "10000000": 93, "1002": 187, "100mb": [3, 8, 76, 93], "100mib": 182, "100px": 47, "101": [17, 75, 76], "102": [75, 76], "1024": [32, 60, 67, 116, 132], "103": [75, 76], "103f": 154, "104": 76, "1040": 138, "10485760": [56, 96], "104857600": [26, 48, 60, 67], "105": 76, "106": 76, "107": 76, "1071": 60, "108": 76, "108082": 28, "109": 76, "10gb": [26, 153], "10m": [96, 156], "10mib": 182, "10min": 82, "10t15": 67, "10x100": 26, "11": [6, 15, 65, 88, 118, 134, 148, 153, 156, 157, 170, 185, 187], "110": [63, 76], "111": [60, 76], "1110": 157, "112": [60, 76], "11211": [59, 60], "1125420102": [60, 72], "113": [60, 76], "113556": 81, "114": 67, "11g": 184, "12": [60, 65, 76, 81, 88, 106, 129, 134, 149, 150, 156, 157, 161, 162, 181, 185], "120": 9, "123": [18, 60, 187], "1234": 4, "12345": [8, 76, 156], "1255": 132, "127": [59, 60, 63, 96, 99, 126, 128, 129, 151, 156, 166, 172], "128": [60, 81], "128m": [22, 59], "128mb": 134, "12b": 2, "12gb": [3, 5], "13": [28, 60, 67, 72, 108, 134, 144, 157, 184, 185], "1319": 60, "1393": 118, "14": [22, 43, 67, 83, 105, 108, 134, 144, 153, 156], "143": 63, "1465910968": 157, "15": [29, 38, 40, 48, 55, 60, 67, 81, 82, 88, 106, 107, 110, 112, 113, 116, 134, 144, 151, 156, 157, 185], "1524": 63, "155": 60, "15552000": [70, 126], "1575981518": 156, "15768000": 124, "15778463": 129, "15857": 56, "15m": 116, "15t15": 60, "16": [4, 22, 29, 52, 60, 67, 88, 126, 132, 134, 144, 156], "16000": 8, "162409623552": 157, "162409624662": 157, "164": 81, "168": [22, 41, 52, 60, 63, 67, 96, 126, 128, 156], "16g": 26, "17": [88, 134, 147, 156, 157, 187], "1700001000": 187, "1700001200": 187, "1700001234": 187, "1700054321": 187, "1700099500": 187, "1700100000": 187, "1700100500": 187, "1702606600": 187, "1711971024": 187, "1736283": 187, "1759739453": 14, "1759739455": 14, "1759739466": 14, "1759739513": 14, "1759740266": 14, "1759743900": 14, "18": [88, 134, 148, 156, 157], "180": [53, 107], "1800": [60, 112, 113], "19": [60, 148, 149, 150, 156], "192": [22, 41, 52, 60, 63, 67, 96, 126, 128, 156], "1941": 81, "19417": 118, "19563": 59, "1970": 134, "198": 60, "19c": 134, "19fa45b394": 187, "19t08": 157, "1d": [70, 116], "1d4725ae1ac4e4798b541ca3f3cdce6": 118, "1gb": [2, 6, 26], "1h": [116, 156], "1st": [88, 141, 187], "1und1": 116, "2": [2, 3, 4, 5, 7, 8, 9, 13, 15, 22, 24, 25, 26, 29, 44, 48, 56, 59, 60, 63, 67, 70, 73, 77, 81, 88, 95, 96, 105, 116, 118, 121, 124, 126, 127, 128, 129, 130, 134, 144, 147, 148, 149, 150, 151, 152, 155, 156, 157, 162, 173, 178, 179, 180, 183, 184, 185, 187, 188], "20": [4, 5, 6, 7, 9, 30, 67, 82, 83, 88, 106, 116, 118, 144, 148, 157, 164], "200": [53, 82, 83, 153, 156], "2000": 22, "2001": 60, "2002": 138, "2005": 60, "2006": [88, 138], "20080704": 22, "2013": [60, 63, 67], "2014": 60, "2016": 26, "2019": [83, 156], "2020": 118, "2021": [67, 123], "2024": [88, 90, 129, 157, 187], "2025": [4, 88, 90, 156, 187], "20251111t100000z": 187, "2026": [88, 90, 129, 151, 153, 156], "203": 60, "2038": 134, "2048": [5, 81], "204800": [153, 156], "20971520": 26, "20mb": 26, "20t17": 157, "21": [33, 60, 67, 129, 149, 170], "2100": 106, "215": 89, "21a7": 60, "21c": 134, "22": [37, 55, 63, 134, 153, 156, 187], "220": [63, 187], "221": [63, 156], "222": [60, 156], "22203": 59, "2245": 63, "23000": 95, "2323": 60, "233": 60, "2375": [96, 97], "23999": 95, "23ai": 134, "23t07": 156, "23t08": 156, "23t09": 156, "23t10": 156, "24": [3, 43, 44, 58, 60, 72, 73, 88, 93, 96, 106, 107, 110, 114, 127, 133, 134, 148, 161, 162, 169, 182, 185], "24000": [96, 97], "24001": 96, "24099": 96, "24b": 2, "25": [12, 15, 28, 55, 58, 60, 63, 67, 113, 129, 144, 148, 156], "250": 63, "2500": 60, "251": 156, "252": 60, "255": 60, "256": [29, 47, 60, 129], "256mb": 134, "2592000": [73, 112, 156], "26": [6, 63, 88, 112, 113, 116, 134, 144, 148, 157, 177, 186], "261535": 118, "262086": 118, "262087": 118, "26396": 136, "2668": 156, "27": [88, 113, 142, 144, 148, 156, 177, 186], "28": [7, 18, 60, 88, 117, 142, 144, 147, 148, 177, 179, 186], "284": 156, "28451": 60, "288": 57, "28800": 60, "29": [16, 18, 24, 60, 67, 142, 144, 147, 148], "293": 156, "2b": 70, "2c5778476346786306303": 60, "2d": 55, "2def0f3597806ecb886da1d9cc323a7c": 118, "2f": 82, "2fa": [80, 116, 157], "2fldap": 82, "2g": 18, "2gb": [3, 26, 153], "2h": 156, "2k": 22, "2m": 22, "2nd": 81, "2x": 182, "3": [1, 2, 3, 5, 7, 8, 10, 14, 15, 16, 17, 22, 24, 29, 56, 60, 63, 67, 77, 88, 93, 95, 116, 121, 126, 128, 130, 132, 133, 134, 138, 144, 147, 148, 150, 153, 156, 157, 162, 164, 174, 180, 181, 182, 183, 185, 186, 187], "30": [3, 8, 11, 26, 41, 44, 49, 53, 58, 60, 63, 73, 81, 85, 88, 95, 96, 107, 110, 112, 113, 116, 118, 132, 144, 147, 156, 157, 177, 182, 183], "300": [60, 83, 96, 116, 129], "30000": [112, 113], "301": [69, 124, 126, 129, 138], "3010": 92, "302": 129, "30566": 51, "3060": 95, "31": [10, 50, 55, 60, 88, 106, 118, 123, 144, 177], "3100": 183, "31308": 38, "31536000": 129, "3166": 60, "31d4a230559d4f3e2c471d3ea094": 137, "32": [15, 22, 26, 29, 31, 48, 50, 60, 88, 112, 113, 134, 177, 188], "32b": 5, "32bit": 26, "32m": [22, 59], "33": [4, 52, 88, 112, 147, 152, 153, 177, 188], "3306": [20, 63, 128], "34": [147, 187], "34262": 132, "35": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 186, 187, 188], "36": [22, 67], "3600": [26, 60, 81, 116, 124, 156], "365": [53, 60, 73, 107, 110], "37": [60, 67, 118], "3733554": 156, "38": 156, "3845056": 156, "3847229": 156, "389": [81, 82], "39": 63, "399": 187, "3a": 82, "3mb": 116, "3rd": [60, 63, 138, 142, 148, 159, 173, 175], "3rdparti": [88, 123, 129, 131], "4": [1, 2, 3, 4, 5, 11, 15, 17, 21, 22, 26, 38, 48, 57, 59, 60, 63, 67, 70, 81, 88, 116, 118, 123, 126, 129, 130, 132, 134, 140, 142, 148, 150, 156, 159, 162, 164, 170, 178, 181, 182, 183, 185, 186, 187], "40": 55, "400": [11, 119], "4000": 5, "40000": 8, "404": 129, "4086": 126, "4096": [5, 60, 187], "41": 96, "41395": 180, "42": [14, 60, 153, 156, 157, 187], "4200": 48, "425": 63, "429": [58, 60], "42cad8d2494d5735e6bfa0d8642b2762c62ca5be49f9bf4ec2": 137, "43200": 126, "437": 187, "438": 187, "4389": 67, "44": 157, "441": 156, "4418": 63, "443": [48, 60, 124, 126, 129, 166], "444": 124, "45": 60, "450": 6, "456": 76, "46": 157, "465": 63, "46cfa6e729ff329e6ede076853154113": 118, "47": [56, 157], "48": [58, 93], "483": 118, "49": [60, 118], "4966612345678": 81, "497": 118, "4a87e94522a3cf26dba8977ae901094d": 118, "4gb": [6, 7, 26], "4h": [7, 10], "4k": 129, "5": [0, 1, 2, 3, 15, 16, 48, 57, 59, 60, 67, 85, 88, 96, 101, 107, 112, 113, 116, 118, 124, 126, 132, 133, 134, 138, 147, 148, 149, 150, 153, 156, 157, 162, 164, 181, 184, 187], "50": [41, 44, 60, 83, 85, 93, 112, 113, 116, 128, 132, 153, 156], "500": [28, 53, 60, 82, 85, 132, 138, 156, 157], "5000": [60, 112, 113, 183], "50000000": 93, "500mb": 3, "501": 118, "502": [88, 132], "504": [26, 129, 132], "50m": 60, "51": [60, 83, 187], "511": 60, "512": [38, 118, 124, 147, 153], "512k": 129, "512m": 129, "512mb": [46, 88, 129, 130, 134], "512x512": 9, "513": 118, "513m": 124, "515a13302a6b3950a9d0fdb970191a": 60, "51747": 26, "52": 60, "5226": 93, "52428800": 63, "524288000": [48, 60], "5242880000": 48, "53": 26, "537": 67, "537919488": 124, "5432": [128, 163, 165], "55": [63, 67, 153], "5545": 151, "56": [22, 60, 63, 67], "5646": 60, "57b58edb6637fe3059b3595cf9c41b9": [60, 67], "587": [63, 118], "594627": 156, "599": 187, "5e": 55, "5f": 55, "5gb": [6, 153], "5min": 57, "5pm": 101, "6": [3, 4, 11, 14, 23, 29, 30, 56, 59, 60, 70, 72, 88, 112, 116, 118, 124, 130, 143, 150, 156, 162, 170, 182, 185], "60": [15, 22, 47, 60, 73, 106, 107, 119, 129, 132, 187], "600": [81, 82], "6000": 93, "6072": 29, "61": 55, "6226r": [7, 10], "6238": 80, "62mb": 118, "62x34": 72, "63072000": 73, "631": 63, "6321": 151, "636": 81, "6379": [45, 59, 60, 123, 124], "639": 66, "64": [22, 26, 29, 48, 55, 59, 60, 63, 129, 134], "640": 142, "64bit": [21, 88], "64m": [22, 63], "67336bcdf7630dd80b2b81a413d07": 60, "6768789079123765868": 156, "68": 67, "6f": 55, "7": [3, 15, 29, 43, 53, 56, 60, 67, 72, 88, 107, 114, 116, 123, 129, 130, 134, 143, 144, 153, 156, 162, 178, 185, 186, 187], "7000": [59, 60], "7001": [59, 60], "7002": 59, "7003": 59, "7004": 59, "7005": 59, "70b": 5, "71d5": 154, "72": 126, "7200": 116, "7265": 151, "73": 55, "750": 142, "767": 60, "77": 11, "770": 59, "78": 183, "789": 76, "7b": [5, 11, 55], "7d": 129, "7urtvsj": 48, "7zip": 56, "8": [3, 4, 6, 7, 10, 11, 22, 23, 60, 71, 72, 88, 95, 116, 118, 126, 127, 129, 130, 132, 133, 134, 138, 144, 156, 162, 178, 179, 180, 181, 182, 183, 184, 185], "80": [6, 47, 55, 63, 123, 126, 129, 132, 133, 164], "8000": 5, "800mb": 10, "8080": [60, 96, 133], "8081": 60, "8088": 60, "8096": 29, "8147": 29, "8192": 29, "8283": 28, "83": 118, "83379f9bc36915d5024de878386060b5": 118, "84": [22, 63], "840": 81, "8443": 48, "8546": 28, "85a3": 60, "86": 157, "8601": 60, "86400": 126, "8651a9ac37674907606c936ced1333d7": 118, "8780": [96, 97], "8781": 96, "8782": [96, 97], "8802": 129, "88a3a92c11db91dec1ac3be0e1c87f862c95ba6ffaaaa3f2c3": 137, "89": 67, "8a": 55, "8a20": 60, "8b": [1, 2, 5], "8bitmim": 63, "8d3": 60, "8dd0e0ef2f7ab100b75922489ff26306": 118, "8e9f60369dce3d8b2b27430bd50ec46d": 118, "8gb": [3, 5, 9], "8m": 132, "9": [15, 17, 22, 28, 41, 60, 81, 85, 101, 116, 134, 150, 163, 164, 165, 181, 185, 187], "90": [1, 22, 53, 107, 132], "9000": [129, 132], "9031": 8, "909": 156, "935f68fa03a25c5ec6f6b2d9e44a868e8b85764dafd1605522": 137, "94": 118, "9421": 155, "95": [11, 55, 60], "95a8": 154, "95af": 154, "9651": 187, "97": [55, 118], "97985889682313216": 156, "98": 157, "98108257692012544": 156, "98109588267847680": 156, "98109592852221952": 156, "98109592927719424": 156, "98109593040965632": 156, "9825679": 2, "9839": 118, "98543234": 2, "9876": 81, "99": 60, "993": [63, 118], "995": 63, "9980": [166, 171], "9999": [48, 81], "9_": 81, "9am": 101, "9e": 55, "A": [3, 4, 5, 7, 9, 11, 22, 25, 28, 33, 35, 36, 40, 41, 43, 48, 53, 57, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 86, 93, 95, 96, 106, 107, 111, 112, 114, 116, 118, 119, 124, 126, 128, 129, 132, 133, 134, 137, 138, 142, 143, 146, 150, 153, 156, 160, 161, 162, 163, 165, 166, 168, 169, 174, 178, 186], "AND": [67, 111, 138], "And": [31, 38, 48, 57, 59, 63, 124, 142, 147, 154, 186], "As": [12, 15, 22, 26, 43, 47, 48, 50, 53, 56, 59, 60, 77, 83, 93, 95, 101, 111, 112, 118, 123, 124, 126, 143, 144, 180, 186, 188], "At": [0, 1, 2, 3, 5, 6, 9, 11, 63, 67, 70, 80, 81, 112, 113, 143], "BY": [22, 125], "Be": [8, 15, 23, 43, 59, 60, 63, 81, 92, 95, 96, 112, 129, 138, 172], "But": [47, 50, 58, 60, 96, 182], "By": [16, 26, 28, 34, 41, 47, 48, 50, 51, 52, 53, 54, 56, 57, 59, 60, 67, 72, 77, 80, 81, 85, 94, 98, 112, 116, 126, 129, 133, 137, 145, 146, 149, 151, 156, 157, 159, 164, 167, 186, 187], "For": [1, 6, 7, 8, 12, 14, 15, 16, 22, 23, 25, 26, 28, 29, 33, 37, 38, 40, 41, 44, 45, 49, 51, 53, 55, 56, 57, 58, 59, 60, 64, 69, 70, 72, 77, 81, 83, 85, 92, 93, 94, 95, 96, 99, 107, 108, 111, 112, 113, 114, 118, 119, 120, 123, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 155, 159, 166, 169, 170, 180, 183, 184, 186, 187, 188], "IF": [22, 125], "IT": 133, "If": [2, 3, 5, 6, 12, 14, 15, 16, 18, 20, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 38, 40, 41, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 66, 67, 69, 70, 77, 78, 80, 81, 84, 85, 92, 93, 95, 96, 97, 101, 107, 111, 112, 113, 114, 116, 117, 118, 120, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 166, 172, 180, 181, 182, 183, 184, 186, 187, 188], "In": [0, 1, 3, 5, 6, 12, 14, 15, 16, 18, 22, 23, 25, 26, 28, 29, 31, 34, 40, 41, 42, 43, 48, 53, 56, 57, 58, 59, 60, 63, 66, 68, 69, 70, 72, 77, 79, 80, 81, 84, 85, 86, 92, 93, 95, 96, 97, 99, 101, 102, 112, 116, 118, 123, 124, 126, 128, 129, 130, 132, 133, 134, 135, 137, 138, 142, 144, 146, 147, 149, 150, 159, 169, 172, 174, 180, 187, 188], "It": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 19, 20, 22, 25, 26, 28, 31, 36, 38, 40, 41, 44, 45, 48, 49, 53, 58, 59, 60, 61, 63, 64, 68, 70, 80, 81, 82, 92, 93, 94, 95, 96, 97, 101, 102, 108, 109, 112, 113, 114, 117, 118, 119, 121, 124, 126, 128, 129, 130, 131, 132, 133, 135, 137, 138, 142, 143, 146, 147, 148, 149, 152, 155, 156, 159, 161, 172, 178, 180, 182, 183, 186, 187, 188], "Its": [58, 107, 132], "NO": 143, "NOT": [22, 59, 60, 96, 125], "No": [2, 15, 25, 28, 38, 60, 70, 77, 88, 95, 102, 106, 108, 132, 138, 147, 151, 152, 153, 156, 157, 172], "Not": [3, 22, 46, 54, 58, 60, 77, 88, 93, 118, 132, 157], "ON": [22, 23, 60, 125], "OR": 67, "Of": [106, 128, 138, 188], "On": [3, 20, 22, 30, 38, 40, 41, 53, 56, 57, 58, 59, 63, 64, 69, 77, 81, 85, 92, 93, 96, 106, 123, 125, 133, 138, 143, 145, 151, 156, 166, 186], "One": [3, 8, 12, 43, 48, 93, 95, 133, 169], "Or": [1, 94, 133], "TO": [22, 60, 125], "That": [22, 27, 56, 60, 62, 63, 81, 112, 113, 116, 142, 166], "The": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 39, 40, 41, 43, 44, 47, 48, 49, 50, 53, 56, 57, 59, 60, 61, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 83, 84, 85, 87, 88, 89, 92, 93, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 140, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 162, 163, 164, 165, 166, 167, 168, 170, 171, 172, 173, 174, 176, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188], "Their": [151, 157], "Then": [22, 28, 29, 56, 60, 63, 64, 67, 81, 83, 124, 125, 126, 132, 133, 142, 143, 147, 148, 151, 154, 163, 186], "There": [3, 26, 28, 31, 40, 43, 47, 48, 58, 59, 60, 63, 64, 70, 77, 81, 83, 93, 96, 97, 98, 105, 107, 121, 126, 133, 135, 137, 138, 143, 148, 152, 156, 169, 174], "These": [1, 2, 3, 27, 28, 29, 32, 34, 38, 40, 57, 60, 70, 77, 80, 81, 83, 92, 93, 96, 110, 111, 116, 123, 126, 130, 132, 133, 136, 142, 147, 148, 149, 153, 154, 155, 156, 159, 160, 177, 186, 188], "To": [3, 4, 13, 16, 22, 28, 31, 33, 38, 40, 44, 45, 48, 49, 50, 53, 56, 57, 59, 60, 63, 67, 68, 69, 70, 72, 77, 80, 81, 83, 85, 88, 92, 93, 98, 107, 108, 111, 112, 113, 116, 117, 118, 119, 120, 124, 125, 126, 129, 131, 132, 133, 134, 135, 137, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 156, 157, 159, 166, 175, 180, 186, 187, 188], "WITH": [22, 163, 165], "Will": [43, 154], "With": [0, 29, 43, 60, 63, 77, 96, 119, 129, 138, 148, 156, 174, 182], "_": [81, 85, 153, 163, 165], "__host": [65, 88, 106], "_arm64": 129, "_bin": 60, "_complet": 150, "_groupsr": 126, "_ping": 96, "_postgresql": 124, "_static": 60, "a2enmod": [133, 166], "a2ensit": 133, "a3b30430b1ccb41089170eecbe315d3a": 118, "a4": 55, "a92c": 60, "aaliyah": 83, "aaliyah_brown": 83, "aaliyah_hamm": 83, "aaliyah_johnston": 83, "aaliyah_kunz": 83, "aavx": 140, "aax": 146, "abbrevi": 85, "abc123": [153, 156], "abc123def456": 187, "abil": [6, 14, 58, 103, 128, 133, 159], "abl": [2, 3, 8, 16, 23, 29, 32, 38, 43, 50, 54, 57, 60, 63, 66, 76, 81, 85, 93, 95, 97, 99, 101, 102, 112, 116, 126, 130, 133, 145, 162, 171, 172], "abort": [60, 80], "about": [1, 2, 3, 6, 7, 8, 11, 16, 28, 36, 40, 45, 48, 51, 58, 60, 67, 70, 76, 77, 78, 80, 81, 83, 85, 88, 93, 96, 112, 116, 117, 118, 123, 126, 129, 132, 133, 136, 137, 138, 143, 148, 149, 152, 153, 154, 156, 157, 172, 180, 182, 183, 184, 188], "abov": [1, 3, 4, 5, 15, 18, 20, 22, 26, 43, 44, 48, 59, 60, 65, 67, 69, 72, 77, 81, 87, 88, 93, 96, 97, 112, 118, 121, 123, 126, 128, 129, 133, 137, 138, 142, 147, 149, 150, 180, 187], "absenc": [81, 88], "absent": [151, 187], "absolut": [16, 60, 69, 81, 98, 138, 149], "absorb": 132, "abstract": [132, 135], "abund": 138, "abus": 88, "abuse_detect": 116, "abuse_number_of_messages_per_15m": 116, "abuse_number_of_messages_per_1d": 116, "abuse_number_of_messages_per_1h": 116, "abuse_number_of_recipients_per_message_threshold": 116, "acc": 56, "accel": 26, "accent": [4, 7, 60], "accept": [14, 31, 32, 40, 41, 48, 60, 63, 66, 67, 69, 70, 84, 93, 96, 97, 111, 116, 117, 150, 153, 156, 172, 187, 188], "access": [0, 2, 8, 12, 13, 14, 15, 16, 18, 26, 28, 31, 32, 33, 34, 38, 40, 41, 43, 48, 52, 53, 54, 57, 58, 59, 60, 63, 64, 65, 72, 77, 80, 81, 84, 85, 88, 92, 93, 95, 96, 97, 99, 102, 104, 105, 106, 107, 108, 110, 113, 114, 118, 119, 123, 127, 128, 132, 133, 138, 143, 146, 147, 152, 153, 156, 157, 160, 172, 175, 186, 187], "access_log": [93, 129], "accessible_featur": 88, "accident": [98, 107, 147], "acclaim": 5, "accommod": [93, 142, 148], "accomplish": 112, "accord": [12, 44, 60, 81, 89, 107, 110, 144, 153, 159, 169], "accordingli": [12, 18, 22, 26, 28, 59, 60, 77, 81, 96, 138], "account": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 29, 36, 43, 53, 54, 57, 58, 60, 63, 68, 73, 77, 80, 81, 83, 85, 88, 93, 107, 111, 114, 115, 128, 130, 133, 150, 153, 154, 156, 187, 188], "account_kei": 48, "account_manag": [77, 81, 88], "account_nam": 48, "accountid": 118, "accountmanag": [60, 77], "accumul": 93, "accur": [138, 148, 180], "accuraci": [4, 5, 7, 8, 10, 48], "accuweath": 14, "achiev": [9, 117, 126], "acl": [53, 59, 60, 69, 116], "acm": [72, 96, 129, 156], "acquir": [59, 118], "across": [1, 2, 7, 10, 32, 53, 59, 60, 77, 95, 106, 107, 114, 116, 130, 151, 153], "act": [1, 2, 5, 7, 9, 10, 11, 13, 53, 67, 88, 108, 112, 187], "action": [1, 2, 3, 15, 19, 40, 41, 53, 56, 57, 58, 60, 70, 88, 95, 96, 104, 108, 110, 116, 127, 138, 147, 156, 157, 188], "actionjob": 3, "activ": [16, 17, 19, 25, 29, 40, 43, 44, 45, 49, 56, 57, 59, 61, 63, 65, 67, 77, 79, 80, 82, 85, 88, 111, 112, 113, 124, 126, 130, 132, 133, 134, 138, 143, 147, 149, 152, 153, 154, 156, 157, 159, 163, 165, 186, 187], "activity_": 25, "activity_dbdriveropt": 25, "activity_dbhost": 25, "activity_dbnam": 25, "activity_dbpassword": 25, "activity_dbport": 25, "activity_dbus": 25, "activity_expire_dai": [53, 88, 107, 110], "activity_expire_exclude_us": 53, "activity_use_cached_mountpoint": [53, 88], "actor": [58, 126], "actor_id": 111, "actor_typ": 111, "actual": [1, 4, 22, 26, 29, 53, 58, 60, 67, 70, 92, 96, 130, 138, 147, 156, 183, 187], "ad": [2, 4, 6, 8, 12, 18, 20, 24, 27, 28, 29, 40, 43, 52, 53, 57, 58, 59, 60, 63, 64, 67, 69, 70, 73, 81, 85, 88, 92, 108, 112, 113, 115, 117, 118, 124, 126, 132, 133, 134, 147, 157, 159, 178, 181, 182, 183, 187, 188], "ad2dab17b2f9": 154, "adapt": [59, 96, 126, 129, 138, 143, 170, 186, 188], "add": [0, 2, 6, 12, 18, 22, 23, 25, 40, 41, 43, 54, 58, 59, 60, 61, 63, 64, 65, 67, 72, 75, 77, 80, 81, 85, 88, 92, 93, 95, 96, 97, 108, 110, 112, 113, 116, 118, 119, 123, 124, 126, 129, 132, 133, 138, 140, 143, 144, 148, 149, 150, 153, 159, 163, 166, 172, 173, 179, 180, 181, 184, 187, 188], "add_head": [26, 129], "adddefault": 92, "addendum": [13, 88], "addit": [1, 3, 4, 13, 16, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 44, 48, 54, 55, 56, 58, 60, 72, 74, 77, 80, 82, 85, 88, 91, 93, 94, 95, 96, 98, 99, 100, 110, 112, 123, 125, 126, 128, 130, 131, 132, 134, 135, 137, 138, 142, 150, 153, 156, 157, 160, 186, 187, 188], "addition": [2, 12, 41, 59, 81, 83, 112, 113, 138, 183, 188], "additional_opt": 96, "address": [2, 8, 22, 28, 41, 43, 56, 57, 60, 67, 69, 70, 74, 76, 77, 78, 81, 82, 88, 93, 95, 96, 97, 99, 101, 107, 108, 110, 115, 116, 127, 128, 129, 133, 143, 145, 148, 151, 153, 156, 157, 159, 160, 186], "address_of_remote_machin": 96, "addressbook": [41, 60, 88, 113, 114, 126, 138], "addressbookchang": 113, "addressbookid": 138, "addressscop": 77, "addserv": 60, "addus": 88, "adequ": [26, 81, 112, 113, 134], "adjust": [1, 8, 12, 15, 22, 23, 40, 44, 46, 47, 48, 50, 58, 60, 67, 81, 88, 92, 93, 96, 107, 124, 129, 130, 131, 132, 133, 134, 138, 142, 144, 170, 181, 182, 183, 186, 187], "adm": 75, "admin": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 14, 16, 17, 18, 28, 34, 40, 41, 43, 45, 48, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 71, 74, 75, 76, 77, 80, 81, 82, 85, 87, 88, 92, 93, 95, 96, 99, 111, 112, 113, 116, 117, 118, 120, 121, 123, 127, 132, 133, 137, 138, 142, 143, 145, 147, 148, 149, 150, 151, 152, 153, 157, 159, 160, 166, 167, 180, 186, 187, 188], "admin_": 187, "admin_audit": [53, 88, 107, 110, 111], "admin_manu": 60, "administ": [119, 156], "administr": [0, 1, 2, 6, 14, 16, 22, 28, 29, 40, 43, 50, 51, 53, 57, 58, 60, 61, 63, 64, 65, 67, 68, 72, 74, 77, 80, 86, 88, 92, 93, 96, 101, 103, 105, 107, 108, 109, 110, 111, 112, 116, 119, 126, 128, 133, 138, 145, 148, 153, 156, 157, 160, 172, 173, 180, 183, 186, 187], "adminlogin": 120, "adminpass": 120, "adminw": [166, 171], "advanc": [38, 46, 53, 60, 69, 72, 74, 88, 97, 100, 120, 133, 169, 188], "advantag": [29, 32, 57, 88, 120], "advertis": [57, 60, 155], "advic": [60, 109], "advis": [8, 159, 182, 188], "ae": [3, 29, 60, 132], "aegi": 80, "affect": [12, 15, 25, 26, 27, 28, 38, 40, 60, 61, 67, 77, 81, 92, 93, 96, 101, 118, 132, 134, 151, 153, 170], "after": [1, 3, 4, 8, 14, 15, 16, 18, 20, 22, 27, 28, 32, 37, 38, 44, 45, 47, 48, 49, 50, 57, 58, 59, 60, 62, 63, 64, 67, 68, 73, 77, 78, 79, 81, 85, 88, 93, 95, 96, 98, 99, 101, 102, 105, 107, 108, 110, 113, 114, 120, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 137, 141, 142, 143, 144, 145, 147, 148, 150, 151, 152, 153, 155, 156, 157, 159, 160, 166, 167, 172, 180, 185, 186, 187, 188], "afterward": [58, 80, 81, 116, 133, 144, 146, 147, 152, 166], "ag": [7, 46, 60, 85, 88, 104, 107, 124, 126, 129, 153, 156], "again": [3, 16, 20, 28, 30, 40, 43, 44, 53, 60, 70, 76, 77, 80, 81, 85, 92, 93, 96, 101, 112, 114, 117, 118, 123, 124, 142, 144, 147, 148, 149, 152, 172], "against": [0, 28, 40, 58, 59, 69, 73, 77, 81, 85, 86, 102, 132, 147, 151, 153, 186, 187, 188], "agenda": 116, "agent": [5, 12, 13, 60, 64, 67, 88, 101], "aggreg": 60, "aggress": 186, "agpl": 17, "agplv3": 16, "agre": 126, "agreement": 12, "ahead": 186, "ai": [2, 3, 4, 5, 7, 13, 14, 88, 95, 116, 156, 188], "ai_provid": 8, "aim": [126, 170], "aio": [2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 40, 88, 95, 100, 130, 132, 133, 187], "air": 147, "ajax": [53, 88, 116, 129, 149, 156, 159], "aka": 133, "akiaiosfodnn7exampl": 153, "alarm": [88, 115], "albert": 157, "alert": [56, 88], "alertencrypt": 56, "alertencryptedarch": 56, "alertencrypteddoc": 56, "algorithm": [60, 96, 97, 118, 126, 146], "alia": [81, 116, 133, 157], "alias": 88, "aliasgroup1": 166, "aliasgroup2": 166, "alic": [18, 40, 77, 81, 187], "alice_1337": 81, "align": [63, 107], "aliv": [60, 132], "all": [1, 2, 3, 5, 6, 7, 9, 10, 12, 14, 15, 16, 18, 19, 20, 22, 23, 26, 27, 29, 33, 34, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 53, 55, 56, 57, 58, 59, 61, 64, 65, 67, 69, 71, 72, 77, 80, 81, 82, 83, 85, 87, 88, 92, 93, 95, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 128, 129, 131, 132, 133, 135, 137, 138, 142, 143, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 159, 160, 163, 165, 169, 170, 173, 180, 183, 186, 187, 188], "allenai": [5, 11], "alloc": [47, 60, 132], "allow": [1, 2, 3, 5, 7, 12, 15, 16, 22, 25, 26, 27, 29, 31, 32, 38, 41, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 58, 59, 60, 63, 64, 65, 68, 69, 73, 76, 77, 81, 82, 84, 85, 88, 94, 95, 96, 98, 101, 102, 105, 106, 108, 113, 114, 116, 117, 126, 127, 128, 129, 130, 132, 133, 134, 147, 149, 150, 153, 155, 156, 157, 159, 160, 164, 169, 172, 173, 181, 187, 188], "allow_custom_share_fold": 88, "allow_disabled_password_enforcement_group": 88, "allow_local_infil": 22, "allow_local_remote_serv": [88, 116], "allow_persist": 22, "allow_private_ip_address": 164, "allow_self_sign": 63, "allow_url_fopen": 33, "allow_user_to_change_display_nam": 88, "allowcleanup": 14, "allowed_admin_rang": [88, 126], "allowed_user_ag": 88, "allowencodedslash": 166, "allowlist": 184, "allowoverrid": [123, 133, 138], "allowselfsignedcertif": 88, "allowsymlink": 88, "almalinux": 96, "almost": [60, 81, 133], "alon": [77, 188], "along": [3, 5, 20, 44, 60, 119, 126, 128], "alongsid": [60, 129, 151], "alpin": 134, "alreadi": [3, 8, 16, 19, 20, 23, 28, 47, 53, 60, 61, 67, 75, 76, 77, 81, 92, 93, 96, 99, 113, 114, 116, 120, 124, 126, 128, 130, 131, 132, 133, 138, 144, 147, 149, 151, 152, 153, 155, 156, 170, 180, 186, 188], "also": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 22, 23, 25, 26, 28, 36, 38, 40, 41, 42, 43, 47, 48, 50, 51, 53, 54, 57, 58, 59, 60, 64, 67, 69, 72, 74, 76, 80, 81, 83, 84, 85, 87, 88, 92, 93, 95, 96, 98, 99, 101, 102, 105, 107, 108, 110, 112, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 150, 152, 153, 154, 156, 157, 160, 170, 172, 173, 180, 181, 182, 183, 184, 186, 187, 188], "alter": [12, 22, 23, 44, 49, 81, 182], "altern": [2, 26, 50, 57, 65, 88, 93, 130, 133, 136, 140, 149, 150, 156, 160, 168], "although": [43, 132, 150], "altitud": 126, "altogeth": 59, "alwai": [1, 3, 5, 7, 12, 15, 16, 29, 39, 40, 43, 44, 53, 56, 58, 60, 66, 67, 69, 71, 72, 77, 80, 81, 91, 92, 96, 97, 119, 124, 126, 128, 129, 130, 132, 137, 138, 142, 147, 148, 152, 153, 155, 156, 166, 180, 186, 187], "am": 151, "amazon": [40, 48, 60, 88, 183], "amazonaw": 48, "amazons3": 153, "amd": 99, "amd64": [162, 163, 165], "american": 10, "among": [0, 3, 84, 119, 130, 186], "amongst": 95, "amount": [8, 28, 47, 59, 60, 81, 83, 93, 126, 133, 153, 183], "amp": 82, "amqp_host": 164, "an": [0, 1, 2, 3, 5, 7, 9, 10, 11, 12, 14, 15, 16, 18, 22, 26, 28, 29, 31, 32, 33, 36, 38, 40, 41, 43, 44, 45, 48, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 65, 66, 67, 69, 72, 74, 76, 77, 78, 79, 80, 81, 82, 85, 87, 88, 92, 93, 95, 96, 98, 101, 103, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 123, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 142, 145, 146, 147, 148, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 166, 167, 169, 172, 174, 178, 180, 182, 183, 186, 187, 188], "analysi": 12, "analyt": 15, "analyz": [60, 116], "andrew": 2, "android": [60, 64, 65, 72, 88, 101, 119, 134], "android_app": 55, "androidclienturl": 72, "angel": 89, "ani": [0, 1, 2, 3, 5, 7, 12, 14, 15, 16, 20, 22, 25, 26, 27, 28, 29, 32, 34, 37, 38, 39, 40, 41, 43, 45, 48, 53, 54, 56, 57, 58, 59, 60, 63, 64, 67, 69, 70, 80, 81, 83, 84, 85, 87, 88, 92, 93, 94, 95, 96, 97, 98, 99, 101, 105, 107, 110, 111, 112, 113, 114, 116, 120, 126, 132, 133, 134, 137, 138, 143, 147, 148, 150, 151, 152, 153, 155, 156, 157, 160, 162, 172, 173, 178, 180, 184, 186, 187, 188], "anim": [6, 60], "anna": 2, "anniversari": 186, "announc": [12, 63, 81, 126], "annual": 187, "anon": 60, "anonym": [81, 111, 126], "anoth": [12, 22, 28, 39, 46, 48, 69, 70, 77, 78, 80, 85, 88, 93, 111, 114, 116, 126, 128, 129, 131, 135, 137, 138, 148, 151, 153, 155, 166, 180, 181, 186], "ansi": 150, "answer": [1, 2, 60, 81, 88, 162, 184, 188], "anti": [56, 60, 88], "anticip": 186, "antiviru": [65, 88, 150], "anymor": [76, 81, 88, 154, 183], "anyon": [12, 43, 67, 77, 160], "anyth": [14, 22, 31, 56, 58, 60, 112, 113, 142, 143], "anytim": [49, 60], "anywai": [92, 151], "anywher": [32, 124, 128, 156], "apach": [19, 41, 59, 60, 68, 70, 88, 93, 96, 110, 125, 126, 127, 128, 129, 132, 134, 138, 145, 150, 162, 180], "apache2": [59, 88, 93, 125, 126, 130, 133, 138, 166], "apache2ctl": 133, "apart": 123, "apc": [59, 60, 150, 182], "apcu": [60, 65, 70, 88, 123, 130, 132, 150, 182], "api": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 28, 36, 43, 58, 59, 60, 68, 74, 77, 84, 86, 88, 93, 95, 96, 99, 116, 126, 129, 132, 156, 159, 174, 180, 187, 188], "apirequest": [17, 75, 76, 77, 82, 87, 188], "app": [0, 12, 13, 14, 18, 20, 25, 27, 40, 41, 42, 43, 44, 47, 49, 54, 55, 57, 59, 62, 64, 65, 68, 70, 72, 74, 77, 80, 81, 82, 83, 84, 85, 87, 92, 93, 94, 98, 99, 100, 101, 102, 103, 105, 107, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 126, 127, 129, 130, 131, 133, 140, 142, 144, 145, 147, 148, 150, 151, 152, 154, 156, 157, 158, 161, 164, 168, 169, 172, 173, 174, 175, 180, 183, 186, 188], "app1": 149, "app2": 149, "app3": 149, "app_": 18, "app_api": [2, 3, 4, 8, 88, 96, 97, 98], "app_api_haproxy_us": 96, "app_container_nam": 96, "app_display_nam": 8, "app_host": 8, "app_id": [8, 97, 99], "app_port": 8, "app_python_skeleton": 98, "app_secret": 8, "app_upd": 16, "app_vers": 8, "appapi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 88, 94, 96, 97, 98, 99, 100], "apparmor": 60, "appcodecheck": [16, 88], "appconfig": [85, 149], "appdata": [93, 153], "appdata_instanceid": 60, "appear": [6, 22, 27, 28, 34, 40, 58, 60, 63, 64, 65, 67, 70, 77, 78, 81, 85, 88, 92, 93, 95, 108, 114, 120, 125, 128, 129, 132, 137, 153, 154, 156, 173, 187], "appelman": 17, "append": [1, 19, 29, 43, 57, 60, 67, 77, 81, 128, 136, 147, 150], "appframework": 99, "appid": [14, 17, 96, 98, 136, 137, 156], "appimag": 134, "appinfo": [17, 137], "appl": [60, 72, 93, 134], "applewebkit": 67, "appli": [8, 12, 23, 25, 26, 27, 29, 41, 43, 44, 53, 60, 63, 66, 67, 69, 70, 76, 77, 81, 85, 88, 96, 102, 106, 107, 118, 119, 120, 126, 133, 139, 146, 147, 148, 149, 150, 153, 156, 157, 160, 187], "applianc": [133, 143], "applic": [0, 2, 8, 12, 16, 17, 28, 40, 48, 55, 58, 59, 60, 65, 67, 73, 77, 81, 83, 87, 88, 93, 95, 96, 101, 107, 110, 112, 116, 127, 129, 132, 133, 135, 137, 138, 142, 143, 146, 148, 150, 152, 156, 159, 160, 186], "appnam": 149, "appoint": [61, 112], "apppassword": 92, "appreci": [5, 7, 9, 10], "approach": [28, 40, 57, 58, 67, 88, 107, 141, 142, 186], "appropri": [12, 29, 40, 43, 58, 59, 60, 66, 77, 96, 107, 111, 112, 116, 121, 125, 129, 132, 133, 136, 142, 143, 150, 156, 186], "approv": 88, "approve_link": 188, "approxim": [60, 81, 93, 152, 186], "apps_path": [16, 88], "appsallowlist": 88, "appstor": [16, 60], "appstoreen": [16, 88], "appstoreurl": [16, 88], "april": [67, 187], "apt": [56, 125, 126, 163, 165, 166, 167], "ar": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 38, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83, 85, 88, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 163, 164, 165, 166, 167, 169, 170, 172, 173, 174, 180, 181, 183, 186, 187, 188], "arab": 4, "arbitrari": [1, 40, 60, 129], "arch": [150, 163, 165], "architectur": [26, 60, 88, 96, 99, 133, 145, 162], "archiv": [56, 60, 88, 107, 111, 118, 123, 125, 133, 142, 147, 148, 153, 156], "area": [54, 69, 133, 175], "arg": 129, "arg_v": 129, "argon2": [60, 130], "argument": [17, 19, 38, 48, 53, 60, 67, 75, 76, 81, 82, 88, 129, 138, 150, 152, 153, 156, 157], "aris": [60, 143, 186], "ark": 132, "arm32v7": 150, "arm64": [162, 163, 165], "around": [10, 15, 16, 88, 101, 102, 186], "arrai": [16, 45, 48, 51, 53, 60, 63, 67, 68, 69, 76, 77, 81, 82, 88, 96, 112, 120, 123, 124, 128, 137, 187, 188], "arrang": 186, "arraycach": 60, "arriv": [40, 69, 108, 132], "art": 126, "articl": [63, 88, 107, 108, 110, 138], "artifact": 11, "artifici": [0, 1, 12, 15, 88, 95], "asc": [123, 125], "ascii": [60, 71, 81, 130, 137], "asdf": 67, "asid": 183, "ask": [1, 2, 3, 13, 14, 19, 20, 43, 63, 78, 81, 84, 85, 88, 108, 116, 138, 146, 147, 148, 150, 152, 153, 156, 174, 180], "aspect": [60, 72], "assembl": 26, "assembli": 26, "assess": 53, "asset": [69, 72, 126, 129, 181], "asset_immut": 129, "assetlink": 88, "assign": [2, 38, 77, 81, 83, 85, 88, 101, 104, 105, 132, 153, 154, 188], "assignable\u00b2": 157, "assigne": 2, "assist": [0, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 60, 88, 93, 102, 116, 147], "assistant_en": 1, "associ": [20, 40, 43, 55, 58, 80, 81, 93, 111, 138, 143, 156, 157, 186, 187], "assum": [8, 12, 22, 38, 58, 60, 63, 81, 96, 112, 113, 124, 126, 129, 133, 138, 143, 145, 146, 147], "assumpt": 129, "asterisk": 154, "astroc": 151, "astronomi": 151, "async": 188, "asynchron": [3, 188], "atom": [60, 129], "attach": [1, 15, 18, 38, 81, 88, 97, 187], "attack": [29, 58, 106, 126, 183], "attempt": [25, 28, 58, 78, 81, 88, 92, 93, 99, 101, 110, 126, 128, 138, 151, 152], "attend": 2, "attende": [110, 112], "attr": 82, "attr_persist": 60, "attribut": [40, 75, 76, 77, 82, 87, 88, 111, 154], "attributenam": 82, "auckland": 60, "audienc": [12, 77, 88, 160], "audio": [1, 2, 4, 6, 12, 15, 51, 60, 179, 180], "audit": [12, 53, 60, 65, 88, 107, 111, 126, 131, 156], "auth": [58, 63, 80, 87, 88, 96, 107, 129, 153], "auth_availability_delai": 88, "authent": [2, 17, 22, 28, 29, 31, 33, 34, 35, 36, 37, 39, 40, 46, 48, 58, 60, 63, 67, 68, 74, 75, 76, 77, 79, 82, 85, 88, 92, 93, 96, 106, 107, 110, 111, 115, 126, 130, 133, 138, 143, 150, 153, 156, 164, 178, 187], "authmiddlewar": 188, "author": [2, 17, 25, 54, 68, 75, 76, 84, 85, 88, 112, 116, 119, 130, 133, 137, 160, 164, 188], "authorit": [69, 77, 146], "authorized_kei": [32, 37], "authtyp": 133, "auto": [4, 19, 28, 41, 43, 44, 49, 60, 72, 81, 82, 88, 107, 123, 126, 153, 154], "auto_index": 3, "auto_logout": 88, "auto_reset_persist": 22, "autocomplet": [43, 60, 77, 81, 88, 113, 114], "autoconfig": [60, 88, 120], "autoconfigur": [60, 118], "autocr": [48, 60], "autofil": 95, "autom": [3, 59, 60, 67, 81, 88, 92, 101, 104, 105, 118, 133, 147, 156, 157, 187, 188], "automat": [2, 3, 6, 15, 18, 20, 28, 38, 40, 43, 44, 49, 50, 53, 56, 57, 58, 59, 60, 63, 64, 66, 69, 71, 72, 79, 80, 81, 83, 85, 87, 88, 91, 93, 95, 96, 97, 105, 107, 108, 110, 111, 112, 113, 114, 116, 126, 127, 130, 133, 138, 145, 146, 147, 150, 151, 152, 153, 154, 155, 156, 157, 178, 180, 182, 187, 188], "autotest": 129, "autumn": 15, "aux": 50, "av_background_scan": 56, "avail": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 20, 22, 28, 31, 33, 34, 36, 42, 43, 44, 45, 46, 47, 49, 53, 56, 58, 59, 60, 62, 63, 64, 70, 72, 76, 77, 81, 83, 85, 88, 91, 92, 93, 94, 96, 97, 98, 99, 104, 105, 107, 108, 111, 112, 114, 118, 119, 123, 124, 126, 128, 130, 132, 133, 136, 138, 142, 143, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 158, 160, 163, 168, 169, 170, 173, 174, 180, 181, 186, 187, 188], "available_ram_for_php": 132, "avatar": [63, 74, 77, 82, 88, 110, 151, 153], "avatarscop": 77, "avconv": 130, "averag": [26, 112, 113, 132, 156], "average_worker_rss": 132, "avoid": [3, 19, 22, 25, 26, 40, 45, 56, 57, 60, 81, 82, 88, 92, 93, 98, 102, 107, 128, 130, 147, 156, 187], "avx": [3, 5], "avx2": [3, 5], "aw": [31, 48, 60, 123, 131, 183], "awai": [18, 88, 112, 132, 138, 143], "await": 188, "awar": [8, 77, 81, 93, 108, 126], "awk": 132, "ax": 59, "axi": 47, "azur": [88, 115], "b": [40, 60, 96, 153, 156], "b2": 55, "b34b09cca5176397a89fc27381cbb1f72855fa18b69b6f87d7": 137, "b4af8db0ae269d73432e9a01e63a": 137, "b6": 55, "b8f682187c66f07af3a3b557a868342ef4a271218fe1c1e300": 137, "back": [3, 25, 26, 28, 38, 56, 58, 60, 63, 96, 101, 113, 114, 128, 129, 135, 138, 140, 142, 143, 147, 148, 152, 160], "backend": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 26, 32, 37, 38, 39, 45, 46, 48, 53, 56, 58, 59, 65, 67, 75, 76, 79, 81, 83, 84, 85, 88, 93, 111, 113, 119, 126, 128, 129, 132, 133, 143, 154, 156, 157, 183], "background": [0, 3, 6, 15, 32, 40, 46, 53, 60, 61, 65, 70, 72, 83, 88, 111, 114, 127, 144, 148, 150, 151, 153, 160, 187, 188], "background_color": [72, 156], "background_job_expire_trash": 49, "background_job_expire_vers": 44, "background_jobs_expiration_dai": 88, "backgroundcolor": 72, "backgroundjob": [3, 156, 187], "backport": [136, 186], "backportbot": 136, "backslash": 187, "backtrac": [67, 88, 132], "backup": [23, 46, 47, 60, 80, 88, 111, 116, 133, 135, 138, 141, 142, 143, 144, 147, 148, 149, 153, 156, 157, 170, 186], "backup_cod": 157, "backward": [22, 82], "bad": [5, 88, 126, 132], "badger": 64, "bak": [140, 146], "balanc": [26, 40, 59, 69, 81, 88, 128, 132], "ban": 126, "bandwidth": [26, 129], "banner": [81, 148], "bantim": 126, "bar": [1, 44, 49, 72], "barcelona": 81, "bare": [88, 135], "barracuda": [22, 60], "base": [1, 3, 4, 5, 7, 9, 10, 12, 15, 20, 28, 29, 38, 41, 43, 46, 56, 57, 58, 60, 65, 66, 69, 72, 77, 81, 82, 87, 88, 92, 96, 99, 101, 102, 107, 123, 124, 126, 127, 129, 130, 133, 134, 141, 142, 143, 148, 150, 153, 156, 168, 170, 186, 187, 188], "base64": [29, 31, 48, 60, 147, 152], "base64_signature_her": 147, "basenam": [60, 181], "baseurl": 188, "bash": [34, 123, 133, 150], "bash_profil": 150, "basi": [57, 106], "basic": [17, 50, 53, 60, 63, 75, 76, 77, 81, 82, 85, 87, 88, 96, 123, 126, 132, 133, 138, 178, 188], "batch": [11, 81, 88, 141, 154, 157], "bc95cbaff3abbed716e1d40bbdaa58a0": 118, "bcrypt": [126, 130], "bearer": [2, 68, 74, 88], "beauti": 188, "becaus": [19, 20, 22, 26, 27, 28, 29, 32, 38, 40, 43, 45, 48, 54, 55, 56, 57, 59, 60, 62, 64, 67, 70, 77, 81, 84, 85, 93, 106, 112, 116, 118, 120, 123, 126, 128, 131, 132, 133, 134, 138, 142, 147, 149, 152, 153, 157, 187], "becom": [40, 43, 60, 69, 88, 132, 133, 138, 151, 152, 153, 155, 160, 183], "been": [2, 3, 12, 29, 32, 38, 41, 48, 54, 56, 57, 60, 63, 67, 70, 83, 92, 93, 101, 105, 106, 114, 120, 137, 144, 149, 150, 155, 156, 157, 163, 165, 170, 176, 178, 183, 185, 186], "befor": [1, 3, 5, 7, 8, 14, 19, 20, 22, 23, 32, 46, 47, 48, 51, 53, 56, 57, 58, 60, 63, 68, 81, 88, 93, 95, 96, 105, 108, 111, 112, 116, 117, 118, 124, 128, 129, 130, 132, 133, 134, 135, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 155, 156, 157, 165, 166, 181, 186, 187], "beforehand": [135, 186], "beforenodecopiedev": 187, "beforenodecreatedev": 187, "beforenodedeletedev": 187, "beforenodereadev": 187, "beforenoderenamedev": 187, "beforenoderestoredev": 187, "beforenodetouchedev": 187, "beforenodewrittenev": 187, "begin": [2, 3, 5, 7, 81, 106, 131, 138, 142, 143, 154, 180], "begin_of_text": 5, "behalf": [1, 12, 77, 153], "behav": [40, 81, 92], "behavior": [2, 26, 32, 38, 40, 41, 53, 56, 58, 60, 63, 81, 82, 88, 93, 132, 138], "behaviour": [52, 81, 85, 126, 129, 151, 153], "behind": [15, 26, 58, 60, 70, 88, 93, 133, 137, 153, 160], "being": [3, 4, 29, 38, 43, 48, 58, 59, 60, 77, 88, 95, 99, 101, 102, 112, 116, 123, 126, 129, 132, 136, 143, 149, 153, 154, 156, 181, 186], "believ": 138, "belong": [2, 81, 85, 110, 118, 153, 159, 160], "below": [1, 2, 3, 8, 26, 28, 38, 43, 48, 58, 59, 60, 63, 65, 67, 69, 70, 77, 80, 81, 82, 85, 88, 93, 95, 96, 101, 106, 107, 118, 128, 129, 130, 138, 142, 144, 148, 154, 157, 166, 187], "benchmark": [4, 12, 60, 118], "bender": 154, "benefici": 132, "benefit": [48, 60, 95, 96, 119, 126, 132, 133, 138, 186], "berlin": [2, 14, 60, 67, 117, 149, 157], "besid": [58, 60, 81, 95, 129], "best": [14, 15, 47, 58, 59, 63, 92, 101, 116, 126, 128, 130, 133, 134, 138, 142, 143, 148, 167, 187], "beta": [16, 60, 88], "better": [1, 5, 6, 7, 9, 10, 11, 20, 25, 28, 48, 56, 65, 81, 88, 138, 186], "between": [14, 25, 28, 29, 38, 41, 46, 48, 55, 57, 60, 69, 81, 88, 91, 93, 95, 96, 97, 101, 132, 142, 144, 146, 148, 152, 153, 155, 159, 164, 186], "bewar": [18, 40, 57], "beyond": [22, 48, 53, 55, 88, 107], "bia": [6, 11], "bias": 9, "big": [19, 46, 58, 88, 93, 129, 130, 138, 182, 186], "big_temp_fil": 26, "bigger": [57, 60, 148], "bigint": [21, 25, 88, 144], "bin": [15, 28, 46, 56, 57, 59, 65, 85, 88, 96, 110, 115, 124, 133, 150, 187], "binari": [29, 38, 47, 60, 63, 96, 134, 137, 152, 153], "binary_search_path": 88, "bind": [81, 96, 97, 130, 133, 154], "bind_address": 96, "bing": 174, "binlog_format": [22, 134], "bio": 132, "biographi": [77, 81, 110], "biographyscop": 77, "birth": 81, "birthdai": [88, 115], "birthdat": [77, 81], "birthdatescop": 77, "bit": [1, 22, 23, 26, 32, 60, 81, 124, 134, 169], "bitmap": 60, "black": 2, "blacklisted_fil": 181, "blank": 160, "blob": [15, 63, 88], "block": [1, 8, 28, 38, 40, 56, 58, 60, 64, 81, 88, 99, 124, 126, 129, 132, 172, 181], "blocker": 64, "blog": [6, 8, 11, 28, 60, 119, 123, 129], "blue": 89, "blueski": [77, 110], "blueskyscop": 77, "blurri": 47, "bmp": [60, 129], "board": [2, 174, 175], "bob": [77, 157, 187], "bock": 181, "bodi": [60, 124, 187, 188], "bodyparamet": 188, "bold": 186, "book": [11, 43, 60, 77, 85, 88, 112, 115, 151, 153, 156], "bookmark": [15, 88], "bookworm": [162, 163], "bool": [112, 118, 129], "boolean": [16, 20, 23, 41, 60, 149, 151, 160], "boolval": 96, "boot": [57, 59, 123, 132], "bootstrap": [59, 60], "border": 40, "borrow": 129, "bot": [13, 15, 88], "both": [3, 12, 15, 22, 25, 28, 37, 40, 41, 44, 47, 48, 49, 56, 58, 59, 60, 63, 67, 69, 70, 77, 80, 81, 85, 92, 96, 99, 102, 108, 114, 116, 118, 119, 126, 129, 130, 132, 133, 143, 148, 150, 152, 153, 157, 159, 160, 164, 168, 172, 173, 187, 188], "bottleneck": 132, "bottom": [53, 111, 142], "bound": [3, 60, 93, 96], "bounti": 12, "box": [28, 54, 58, 63, 81, 93, 95, 118, 169, 178, 188], "bpxrficyexamplekei": 153, "bracket": [81, 82], "branch": 137, "brand": [64, 65, 88, 119, 167], "brazilian": 4, "breach": [86, 126], "break": [15, 60, 129, 134, 138, 149, 186], "breakdown": [88, 156], "breton": 4, "bridg": [96, 97, 108], "brief": [151, 178], "briefli": 96, "bring": [15, 173], "british": 10, "broadcast": [88, 150], "broaden": 154, "broken": [23, 28, 70, 129, 138, 152, 153, 180], "brown": 83, "brows": 40, "browser": [41, 60, 64, 66, 67, 70, 77, 88, 92, 93, 101, 106, 107, 123, 124, 126, 127, 128, 129, 132, 133, 138, 143, 145, 147, 156, 160, 161, 166, 170, 171, 172, 180, 183], "brute": [60, 65, 88, 107, 110, 126, 156], "bruteforc": [58, 88], "bruteforce_attempt": 58, "bruteforceset": 58, "bsd": 124, "bt": 11, "btoa": 188, "bucket": [31, 36, 46, 60, 88, 143, 153], "bucketnam": 48, "buffer": [26, 93, 129, 132], "bug": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 26, 60, 70, 88, 93, 118, 119, 132, 134, 139, 148, 149, 151], "bugtrack": 138, "build": [6, 8, 12, 56, 88, 92, 118, 129, 136, 164], "built": [1, 2, 5, 7, 9, 10, 11, 28, 32, 54, 58, 60, 67, 70, 88, 93, 107, 108, 109, 111, 112, 129, 130, 133, 134, 138, 141, 142, 144, 148, 156, 158, 161, 166, 168, 169, 172], "builtin": 153, "bulk": [6, 60, 77], "bulkupload": 88, "bump": 185, "bun": 188, "bundl": [3, 16, 40, 59, 60, 130, 156, 187], "burst": 132, "busi": [60, 132, 133, 138, 172], "bust": 129, "button": [1, 16, 32, 40, 41, 60, 63, 72, 81, 85, 88, 93, 94, 95, 108, 113, 116, 138, 147, 160, 188], "byedvluwkxkmflpbgvxc": 67, "bypass": [3, 48, 54, 56, 60, 81, 93, 126, 147, 153, 160], "byte": [21, 22, 26, 29, 31, 48, 56, 60, 63, 67, 88, 93, 116, 118, 124, 134, 138, 140, 156], "bytecod": 132, "bz2": [123, 125, 142], "bzip2": 123, "c": [6, 18, 22, 28, 31, 46, 60, 67, 88, 92, 93, 96, 118, 123, 125, 126, 130, 132, 133, 138, 146, 147, 156, 163, 165], "c2521b050955d9d452769f61454c9ddfa9c308146ade10546c": 137, "c478e6c156c5955ed53c40d06585": 137, "c5994f2a42b8a348af92d3acb4edff1328ad8ce1": 60, "c5a03bacae8dedf8b239997901ba1fffd2fe51271d13a00cc4": 137, "ca": [22, 59, 60, 96, 156], "ca_cert": 60, "cach": [8, 38, 45, 58, 65, 69, 82, 88, 112, 127, 129, 135, 138, 143, 149, 150, 152, 153, 154, 155, 156, 163, 164, 165, 180], "cache_app_config": 88, "cache_chunk_gc_ttl": 88, "cache_path": [59, 88], "cache_s": 22, "cadav": [93, 138], "caddi": [88, 129], "cadenc": 186, "cafil": [59, 60], "cal": 69, "calcul": [5, 6, 7, 9, 10, 29, 60, 85, 132], "caldav": [60, 65, 69, 88, 113, 115, 118, 124, 129, 133, 138, 178, 187], "caldav_external_attendees_dis": 112, "calendar": [12, 16, 23, 61, 63, 88, 108, 110, 111, 114, 115, 117, 137, 139, 144, 150], "calendarchang": [112, 151], "calendardata": 187, "calendarid": 187, "calendarobjectcreatedev": 187, "calendarobjectdeletedev": 187, "calendarobjectmovedev": 187, "calendarobjectmovedtotrashev": 187, "calendarobjectrestoredev": 187, "calendarobjectupdatedev": 187, "calendarretentionoblig": 112, "calendarserv": 187, "calendarsubscriptionrefreshr": 112, "call": [2, 3, 4, 12, 15, 29, 41, 43, 57, 59, 60, 67, 68, 75, 81, 87, 88, 93, 95, 114, 116, 120, 129, 131, 133, 134, 138, 146, 147, 151, 153, 157, 159, 173, 187, 188], "callback": [160, 188], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 64, 66, 67, 68, 69, 70, 71, 72, 73, 76, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 103, 105, 106, 107, 108, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 160, 162, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 180, 181, 182, 183, 184, 186, 187], "can_instal": 124, "cancel": [138, 156], "candid": 88, "cannot": [0, 3, 5, 8, 9, 12, 26, 29, 32, 34, 38, 40, 45, 50, 51, 53, 55, 56, 60, 63, 70, 76, 77, 81, 85, 88, 92, 107, 111, 114, 118, 126, 129, 130, 134, 136, 137, 142, 146, 147, 148, 150, 152, 153, 156, 157, 178, 186], "canon": [60, 69, 88], "cantonbeck": 151, "cap": [132, 153, 166], "cap_add": 132, "capabl": [2, 4, 12, 15, 60, 81, 88, 96, 109, 112, 132, 153, 157, 166, 171, 172, 173], "capac": [5, 7, 9, 10, 48, 132], "captur": 187, "carbonara": 2, "card": [2, 15, 69, 77, 85, 95, 113, 174, 175], "carddav": [43, 65, 69, 88, 112, 114, 115, 124, 129, 133, 138, 178], "carddav_sync_request_timeout": 88, "carddav_sync_request_trunc": 88, "care": [3, 25, 56, 57, 60, 84, 92, 96, 97, 124, 129], "carefulli": [138, 149], "carol": 187, "carri": [2, 60, 106, 153, 156, 160, 164], "cartoon": 2, "case": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 20, 22, 23, 25, 28, 29, 42, 43, 50, 56, 57, 58, 60, 63, 66, 70, 79, 81, 85, 86, 88, 93, 95, 96, 97, 99, 101, 102, 116, 118, 123, 126, 128, 130, 132, 133, 134, 138, 142, 143, 144, 146, 147, 149, 150, 152, 157, 159, 172, 178, 180, 186, 187, 188], "cast": [2, 60], "cat": [2, 31, 151, 153], "catalan": 4, "catch": [56, 138], "categori": [2, 16, 95, 107, 110, 114, 156], "caus": [2, 3, 5, 6, 7, 8, 9, 10, 11, 15, 28, 38, 40, 58, 59, 60, 70, 81, 93, 129, 131, 132, 133, 137, 138, 143, 146, 147, 150, 151, 153, 156, 180, 182, 183], "causal": 24, "caution": [8, 118, 129], "cautiou": [60, 63], "caveat": 53, "cc_em_api_kei": 3, "cc_em_base_url": 3, "cc_em_model_nam": 3, "cc_em_password": 3, "cc_em_usernam": 3, "ccb": 3, "cd": [8, 15, 23, 28, 34, 121, 124, 167, 187], "ce08bf30bcbb879a18b49239a9bec6b8702f52452f88a9d321": 137, "ce6cd914": 154, "ce8b61c2": 154, "ce9e248333c44a5a64ccad26f2550f95": 118, "ceas": 186, "ceil": 132, "center": 63, "cento": [56, 59, 88, 127, 129, 133, 134, 150], "central": [28, 29, 59, 153], "ceph": 48, "cert": [22, 59, 60, 94, 96, 124, 166], "certain": [3, 9, 26, 47, 53, 58, 60, 67, 69, 81, 85, 93, 105, 112, 113, 126, 129, 133, 147, 154, 172], "certfil": 96, "certif": [32, 33, 46, 60, 64, 82, 88, 90, 93, 96, 116, 124, 126, 129, 133, 134, 137, 153, 160, 166, 167, 178], "certifi": 89, "cfb": 60, "cfg": 93, "cgi": 129, "challeng": [126, 129, 132], "chanc": [118, 138, 186], "chang": [1, 2, 3, 4, 8, 11, 12, 14, 15, 16, 18, 19, 20, 23, 25, 27, 28, 38, 39, 43, 45, 46, 47, 48, 51, 52, 53, 56, 59, 60, 61, 63, 65, 66, 67, 71, 72, 74, 77, 81, 82, 88, 93, 95, 96, 101, 107, 112, 113, 116, 118, 121, 123, 125, 126, 129, 130, 132, 133, 137, 140, 142, 143, 146, 148, 149, 153, 156, 157, 160, 170, 172, 178, 179, 180, 181, 182, 186, 187, 188], "changelog": [16, 88, 142, 147], "channel": [16, 88, 108, 119, 138, 147], "chapter": [92, 109, 130, 133, 138, 186], "char": [81, 153], "charact": [8, 22, 23, 40, 50, 60, 63, 81, 82, 86, 93, 125, 126, 130, 140, 146, 153], "character_set_serv": 22, "characterist": 60, "charg": [84, 111, 188], "charli": 77, "charset": [25, 60, 88], "chart": [85, 133], "chat": [2, 5, 13, 14, 61, 88, 101, 111, 151, 160], "chat_last_n_messag": 1, "chat_user_instruct": 1, "chat_user_instructions_titl": 1, "chatgpt": [0, 15], "chatroom": 8, "chatti": 14, "cheap": 60, "cheat": 183, "check": [2, 3, 5, 6, 7, 11, 12, 14, 15, 22, 28, 33, 38, 41, 43, 44, 52, 53, 56, 57, 58, 59, 60, 63, 65, 66, 76, 77, 80, 81, 83, 85, 86, 88, 95, 96, 98, 100, 101, 114, 116, 118, 124, 126, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 147, 148, 150, 160, 163, 164, 165, 172, 181, 182, 186, 187, 188], "check_data_directory_permiss": 88, "check_for_working_htaccess": 88, "check_for_working_wellknown_setup": 88, "checkbox": [31, 40, 41, 53, 72, 81, 85, 92, 96, 112, 113, 160], "checker": [60, 70], "checkout": 3, "checksum": [81, 123, 125, 147, 151, 183], "children": 156, "chines": 4, "chmod": [28, 34, 96, 142], "choic": [8, 22, 56, 60, 80, 81, 88, 126, 127, 130, 143, 148], "choos": [1, 5, 7, 16, 28, 43, 54, 58, 59, 60, 67, 69, 81, 88, 95, 96, 112, 113, 124, 128, 129, 130, 133, 138, 142, 162, 166, 173, 186, 188], "chooser": 60, "chose": [116, 148], "chosen": [1, 20, 22, 40, 59, 60, 128], "chown": [28, 34, 121, 123, 125, 129, 133, 142], "christoph": 118, "chrome": [67, 134], "chromium": [134, 183], "chroot": [88, 127], "chunk": [3, 43, 46, 60, 88, 93, 118, 129], "chunked_upload": [26, 88], "chunksiz": 93, "ci": [60, 157], "cidr": [60, 69], "cif": [40, 88, 127, 130], "cipher": [29, 88, 93, 126], "circl": [18, 88], "circumst": [47, 58, 81], "circumv": 60, "cisco": 56, "citi": 81, "citrix": 88, "claim": [0, 12], "clam": 56, "clamav": [65, 88], "clamd": 56, "clamp": 81, "clamscan": 56, "clarif": 14, "class": [31, 48, 52, 60, 63, 81, 137, 156, 187], "class_nam": 156, "classic": 133, "classif": [156, 187], "classifi": [6, 93, 118], "clean": [1, 49, 53, 57, 60, 80, 88, 99, 108, 111, 112, 133, 153, 154, 156, 157, 178], "cleanli": 156, "cleanup": [1, 44, 47, 60, 74, 80, 81, 88, 107, 108, 114, 154, 180], "cleanupjobchunks": 83, "clear": [6, 20, 53, 58, 59, 60, 81, 82, 88, 106, 118, 132, 156], "clear_env": 133, "cli": [57, 63, 65, 67, 69, 88, 94, 98, 100, 112, 123, 126, 127, 132, 133, 143, 148, 150, 156, 180], "click": [16, 40, 41, 54, 60, 63, 64, 78, 81, 85, 93, 95, 116, 128, 137, 138, 147, 160, 188], "clickjack": [64, 126], "client": [12, 15, 19, 22, 26, 28, 31, 32, 38, 43, 45, 48, 50, 55, 58, 60, 63, 64, 65, 67, 68, 69, 73, 80, 81, 85, 88, 96, 97, 101, 110, 111, 112, 113, 114, 116, 118, 119, 126, 127, 128, 129, 131, 132, 133, 137, 138, 141, 143, 147, 151, 156, 159, 166, 171, 188], "client_body_buffer_s": 129, "client_body_temp_path": 26, "client_body_timeout": 129, "client_max_body_s": [26, 129], "clientreqid": 67, "clone": [7, 8], "close": [2, 7, 8, 10, 43, 60, 63, 69, 88, 106, 107, 138, 147, 160], "cloud": [0, 1, 2, 4, 8, 15, 17, 18, 41, 43, 46, 55, 65, 67, 68, 69, 70, 72, 75, 76, 77, 87, 88, 92, 93, 94, 96, 114, 119, 126, 129, 133, 153, 155, 156, 157, 166, 172, 188], "cloud2": 166, "cloud_id": 157, "cloudfil": [36, 60], "cloudflar": [60, 93, 129, 138], "clue": 88, "cluster": [0, 3, 6, 88, 143], "cmd": [92, 96, 123], "cn": [60, 81, 82, 154], "cname": 143, "cnf": [22, 60, 124], "co": [5, 11], "co2": [6, 11], "coauthor": 160, "code": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 15, 17, 28, 29, 47, 51, 63, 65, 66, 69, 70, 75, 76, 77, 80, 81, 88, 92, 93, 119, 121, 126, 129, 132, 135, 138, 139, 147, 148, 151, 153, 158, 166, 167, 168, 169, 170, 172, 187], "code_docker_imag": 169, "codebas": [60, 144], "cold": 132, "collabor": [32, 88, 101, 102, 119, 161, 168], "collabora": [32, 88, 133, 167, 168, 169, 171, 172, 175, 180], "collaboraoffic": [167, 169, 170], "collaboraonlin": [159, 166, 167, 169, 170, 171], "collaps": 128, "collat": [22, 23, 88, 125, 146], "collation_serv": 22, "colleagu": 151, "collect": [15, 57, 60, 118, 126, 132, 174, 175], "collectiveid": 18, "collis": [59, 60, 81, 82], "colon": [60, 63], "color": [40, 72, 151, 157, 160], "column": [19, 25, 85, 88, 116, 144, 148], "com": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 20, 22, 28, 35, 41, 48, 55, 56, 59, 60, 63, 67, 69, 72, 75, 76, 77, 81, 82, 83, 86, 87, 88, 92, 93, 96, 110, 112, 116, 119, 121, 123, 125, 126, 128, 129, 130, 132, 133, 134, 136, 137, 138, 142, 147, 149, 151, 154, 156, 159, 160, 163, 165, 166, 167, 169, 170, 171, 172, 180, 183, 184, 187], "combin": [12, 13, 15, 32, 44, 58, 60, 67, 70, 88, 93, 130, 133, 145, 147, 153, 154, 157, 188], "combo": 54, "come": [2, 4, 5, 15, 26, 40, 43, 47, 51, 58, 60, 69, 95, 96, 123, 133, 134, 138, 150, 156, 169, 187, 188], "comma": [60, 61, 81, 157], "command": [1, 4, 6, 13, 14, 15, 18, 19, 20, 30, 34, 38, 40, 41, 43, 46, 47, 48, 51, 52, 53, 56, 57, 60, 61, 63, 67, 69, 72, 77, 78, 81, 83, 88, 92, 96, 97, 98, 99, 103, 111, 112, 116, 117, 118, 123, 125, 127, 130, 131, 132, 133, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 148, 161, 164, 182, 183, 187], "commandjob": 156, "comment": [2, 23, 26, 40, 43, 56, 65, 88, 108, 111, 133, 136, 142, 147, 160, 174, 175], "commentsmanag": 60, "commerci": [119, 133, 138], "commit": [60, 65, 88, 134], "common": [11, 28, 51, 55, 58, 60, 70, 77, 81, 86, 88, 95, 104, 111, 116, 123, 126, 129, 132, 133, 147, 150, 156, 161, 171, 188], "commonli": [28, 48, 58, 59, 130, 138], "commonnam": [60, 133, 187], "commun": [1, 15, 16, 35, 59, 70, 81, 84, 88, 95, 97, 100, 118, 119, 121, 125, 130, 133, 138, 147, 150, 156, 160, 171, 173, 182, 186], "compact": 160, "compani": [2, 12, 64, 72, 81, 147], "compar": [20, 57, 81, 120, 142, 151], "comparison": [46, 60, 81, 88, 187], "comparison_of_file_system": 60, "compat": [0, 3, 5, 16, 22, 28, 31, 38, 40, 46, 48, 59, 60, 80, 82, 88, 130, 132, 144, 148, 152, 166, 186, 187], "compens": 38, "compil": [22, 59, 132], "complain": 149, "complementari": 58, "complet": [1, 2, 3, 11, 12, 15, 20, 26, 28, 41, 43, 53, 56, 60, 68, 81, 85, 88, 92, 101, 110, 121, 123, 124, 126, 130, 131, 132, 133, 135, 144, 146, 147, 148, 150, 153, 156, 174, 177, 187], "completionexpectedat": 14, "complex": [28, 60, 96, 107, 111], "compli": [60, 111, 153], "complianc": [13, 53, 60, 88, 107, 138], "compliant": [80, 126, 134], "compon": [12, 60, 88, 129, 132, 133, 138, 162, 173, 178, 185, 187], "component_classic_hash": 185, "compos": [56, 129, 132, 160], "composit": [114, 175], "compound": 88, "comprehens": 138, "compress": [56, 60, 85, 88, 93, 101, 107, 126, 127, 130, 182], "compris": 60, "compromis": [28, 60], "comput": [40, 50, 60, 85, 86, 91, 95, 96, 97, 99], "compute_devic": 97, "computedevic": 97, "concaten": [29, 38], "concept": [25, 124, 149], "concern": [8, 26, 28, 29, 47, 60, 129, 186], "concert": 2, "concurr": [3, 4, 48, 60, 132, 180], "condit": [14, 15, 65, 70, 81, 88, 102, 138, 186, 187, 188], "condition": 60, "conf": [22, 56, 59, 81, 96, 123, 124, 126, 129, 133, 138], "confdir": 92, "confer": [2, 119], "confid": 155, "confidenti": [68, 101, 157, 159], "config": [1, 2, 3, 5, 11, 16, 20, 22, 23, 25, 26, 27, 28, 29, 30, 41, 43, 44, 45, 47, 48, 49, 50, 51, 53, 56, 57, 58, 60, 61, 65, 66, 67, 68, 69, 70, 71, 72, 73, 79, 81, 82, 83, 84, 85, 88, 95, 96, 97, 98, 103, 106, 107, 112, 113, 116, 117, 118, 120, 123, 124, 128, 129, 131, 132, 133, 135, 138, 140, 142, 143, 144, 146, 147, 148, 150, 151, 157, 161, 164, 166, 172, 180, 181, 182, 183, 184], "config_is_read_onli": 88, "configdata": 82, "configfilemod": 88, "configid": [81, 82, 154], "configur": [2, 4, 12, 13, 16, 20, 23, 25, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 43, 44, 45, 46, 50, 52, 54, 57, 58, 66, 68, 69, 71, 73, 74, 80, 83, 85, 86, 92, 93, 94, 95, 97, 99, 100, 101, 102, 104, 106, 107, 108, 110, 112, 113, 114, 115, 117, 118, 123, 125, 128, 134, 135, 138, 142, 143, 144, 146, 147, 150, 152, 153, 154, 155, 156, 157, 158, 161, 164, 165, 168, 171, 175, 177, 184, 187, 188], "configuration_serv": 60, "confin": [43, 133], "confirm": [4, 19, 22, 41, 48, 65, 68, 70, 77, 78, 81, 88, 108, 109, 123, 125, 130, 132, 133, 142, 143, 152, 153, 156, 157, 160], "conflict": [16, 38, 60, 81, 118, 146, 151], "confus": [28, 38], "congratul": [116, 163, 165, 166], "conjunct": [5, 15], "connect": [0, 2, 3, 5, 12, 22, 24, 25, 31, 32, 33, 36, 38, 40, 41, 45, 48, 58, 60, 63, 68, 69, 70, 73, 74, 82, 83, 88, 92, 95, 96, 97, 111, 112, 113, 116, 124, 127, 128, 129, 131, 132, 133, 134, 138, 143, 153, 154, 156, 159, 160, 161, 163, 165, 171, 172, 180, 184, 187], "connect_timeout": [22, 48], "connectivity_check_domain": 88, "connector": [2, 3, 5, 6, 7, 8, 9, 10, 11, 88, 127, 128, 151, 161, 164], "consecut": 34, "consent": [106, 116], "consequ": [46, 88, 126, 129, 152], "conserv": 132, "consid": [1, 8, 16, 28, 31, 41, 47, 48, 60, 63, 67, 77, 80, 81, 93, 107, 108, 110, 112, 113, 118, 126, 133, 134, 138, 146, 172, 186], "consider": [46, 60, 65, 85, 88, 186], "consist": [20, 29, 40, 44, 60, 101, 116, 129, 138, 142, 150], "consol": [19, 53, 64, 98, 129, 133, 138, 142, 150, 166], "const": 188, "constant": [60, 77], "constitut": 109, "constrain": 92, "constraint": [77, 133, 147, 153], "consult": [16, 26, 28, 56, 59, 60, 109, 111, 126, 130, 134, 187], "consum": [8, 26, 58, 60, 77, 148], "consumpt": [5, 6, 7, 11, 26, 88, 90, 132], "contact": [3, 16, 43, 72, 77, 81, 85, 88, 108, 110, 111, 112, 115, 121, 133, 137, 139, 144, 149, 153, 160, 184], "contactinteractedwithev": 114, "contactsinteract": 114, "contain": [3, 4, 5, 7, 8, 11, 12, 15, 16, 18, 22, 28, 29, 30, 31, 43, 48, 56, 60, 63, 67, 69, 70, 81, 82, 85, 88, 89, 92, 93, 94, 95, 97, 98, 100, 101, 106, 107, 110, 111, 113, 114, 116, 118, 126, 129, 132, 133, 135, 136, 138, 147, 150, 152, 156, 159, 160, 164, 166, 169, 172, 180, 187, 188], "container": 133, "container_id": 166, "container_nam": 56, "containerlogmaxfil": 96, "containerlogmaxs": 96, "content": [2, 3, 11, 12, 15, 20, 28, 29, 31, 40, 43, 48, 52, 55, 60, 64, 87, 93, 96, 102, 110, 112, 113, 119, 123, 124, 125, 126, 129, 137, 138, 142, 146, 149, 152, 153, 156, 174, 187], "context": [5, 8, 13, 28, 38, 58, 60, 67, 77, 88, 92, 101, 130, 150, 175, 183], "context_ag": [1, 13, 15, 88], "context_chat": [1, 3, 15], "context_chat_backend": [1, 3, 15], "contextchat": 3, "continu": [3, 19, 44, 53, 67, 85, 96, 98, 106, 126, 134, 144, 147, 151, 152, 156, 172], "contract": 106, "contrast": 18, "contrib": [88, 162], "contribut": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 138], "control": [13, 28, 40, 41, 43, 46, 53, 60, 63, 69, 77, 81, 85, 88, 92, 95, 102, 104, 105, 107, 109, 110, 112, 113, 126, 129, 132, 133, 145, 149, 150, 151, 153, 156, 157, 160, 180], "convei": [11, 152], "conveni": [77, 121], "convent": 29, "convers": [1, 2, 8, 14, 19, 21, 46, 60, 88, 110, 111, 118, 159, 174, 175], "convert": [12, 19, 21, 23, 25, 60, 71, 81, 88, 102, 132, 138, 144, 152, 163, 165, 166], "cookbook": 88, "cooki": [60, 65, 88, 107, 109, 110], "cookie_domain": 88, "cool": [166, 170, 171], "coolconfig": [159, 167], "coolwsd": [159, 166, 167, 169, 170, 171], "cooper": 119, "coordin": [2, 130], "copi": [2, 3, 5, 7, 18, 25, 27, 32, 37, 41, 60, 63, 69, 81, 85, 88, 96, 107, 108, 114, 116, 123, 125, 129, 140, 142, 143, 146, 155, 156, 187], "copied_sample_config": 88, "copyright": 112, "copysizelimit": 48, "core": [3, 5, 6, 7, 9, 10, 11, 12, 14, 27, 43, 58, 59, 61, 72, 88, 107, 124, 125, 129, 130, 132, 133, 137, 142, 145, 152, 155, 156, 157, 180, 186, 187], "coreinfo": 132, "corpor": [72, 133], "correct": [5, 6, 9, 11, 12, 22, 28, 58, 60, 63, 69, 81, 92, 93, 95, 111, 118, 126, 128, 129, 130, 133, 136, 137, 138, 142, 144, 150, 153, 154, 186, 188], "correctli": [22, 26, 40, 41, 45, 53, 58, 64, 70, 81, 83, 92, 93, 94, 99, 114, 117, 123, 129, 133, 138, 151, 153, 156, 181], "correspond": [26, 45, 47, 48, 77, 81, 83, 123, 125, 129, 130, 135, 138, 142, 152, 153, 157, 175, 187], "corrupt": [45, 59, 60, 143, 147, 148, 153], "cost": [60, 129], "could": [1, 3, 20, 22, 26, 40, 43, 48, 52, 57, 59, 60, 63, 76, 80, 81, 92, 93, 101, 118, 124, 126, 129, 134, 137, 138, 140, 146, 149, 154, 156, 172], "couldn": 99, "counsel": 109, "count": [2, 60, 85, 88, 105, 126, 132, 138, 156, 157], "counter": 152, "countri": [2, 60, 81], "courier": 63, "cours": [60, 80, 101, 128, 138, 147, 166, 188], "court": 81, "cover": [22, 96, 101, 116, 128, 129, 137, 148, 153, 156, 163, 165, 177, 182, 183, 184], "coverag": [5, 9, 11], "cp": [3, 4, 123, 124, 125, 153], "cpanel": 39, "cpp": [5, 12], "cpu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 56, 60, 88, 95, 96, 97, 126, 132], "cpuinfo": [3, 132], "cr": 81, "cram": 63, "crammd5": 63, "crash": [93, 156], "crawler": 184, "crc32": 183, "creat": [0, 1, 2, 12, 14, 15, 16, 18, 20, 28, 29, 31, 33, 34, 36, 40, 44, 46, 47, 48, 50, 51, 53, 54, 56, 57, 59, 60, 64, 67, 71, 74, 76, 77, 81, 84, 87, 88, 92, 95, 96, 97, 99, 101, 102, 105, 110, 112, 113, 114, 116, 118, 119, 120, 123, 124, 125, 126, 128, 133, 135, 138, 142, 143, 144, 145, 146, 147, 149, 152, 155, 156, 157, 159, 160, 162, 180, 187], "create_example_ev": [112, 151], "createcli": 188, "createdb": 22, "createrol": 128, "creation": [3, 5, 7, 29, 43, 46, 60, 88, 92, 96, 105, 110, 112, 113, 133, 156, 157, 184], "credenti": [20, 29, 32, 38, 40, 48, 58, 60, 63, 81, 93, 116, 120, 126, 128, 143, 151, 152, 153, 159, 188], "crew": 154, "criteria": [7, 25, 67, 101, 187], "critic": [3, 5, 7, 8, 12, 60, 88, 126, 134, 138, 142, 148, 186], "crl": 60, "crlf": 81, "cromwel": 130, "cron": [3, 6, 38, 40, 41, 44, 49, 53, 56, 60, 65, 88, 107, 112, 114, 116, 126, 127, 129, 130, 138, 142, 144, 148, 149, 151, 153, 160, 187], "cronjob": [43, 57, 58, 124], "crontab": [53, 57, 112, 138, 142, 144], "crop": 81, "cross": [60, 106, 110, 119, 129, 132], "crt": [59, 60, 96, 129, 153, 156], "crucial": [60, 159], "crypto": 96, "cryptograph": 126, "cryptographi": 3, "csrf": [70, 88, 106], "css": [69, 88, 132, 153], "csync": 88, "ct2": 11, "ctl": 56, "ctr": [29, 60], "ctrl": [93, 130], "ctype": 130, "cuda": [3, 4, 5, 6, 7, 9, 11, 95, 97], "cudnn": 6, "culprit": 132, "cupsd": 63, "curl": [17, 52, 67, 70, 75, 76, 77, 82, 87, 96, 123, 125, 130, 163, 164, 165, 172, 180], "current": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 22, 29, 32, 43, 44, 53, 57, 58, 59, 60, 62, 64, 66, 67, 68, 77, 80, 81, 88, 93, 95, 96, 97, 101, 107, 112, 116, 121, 123, 124, 126, 132, 133, 134, 137, 142, 144, 148, 149, 150, 151, 152, 153, 155, 156, 160, 172, 184, 186, 187], "currentvers": 147, "cursor": [81, 85], "custom": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 27, 48, 51, 53, 59, 60, 61, 64, 65, 69, 79, 83, 85, 88, 92, 93, 95, 96, 102, 110, 113, 116, 119, 122, 129, 130, 131, 132, 133, 137, 140, 141, 143, 153, 156, 161, 174, 181, 182, 187, 188], "customclient_android": 60, "customclient_desktop": 88, "customclient_fdroid": 60, "customclient_io": 60, "customclient_ios_appid": 60, "customid": [14, 156], "custompath": 27, "cut": 15, "cybersecur": [13, 88, 107], "cycl": [40, 81, 119], "czech": 4, "d": [18, 22, 28, 29, 44, 49, 56, 60, 67, 75, 76, 77, 81, 82, 83, 92, 96, 107, 123, 124, 126, 129, 131, 132, 133, 140, 142, 146, 147, 163, 164, 165, 166, 167], "d1": [44, 49, 60, 107], "d2": [44, 49, 60, 107], "d5685c3b45aee373b09be54742ea": 137, "d7": 55, "daemon": [3, 4, 56, 59, 60, 67, 88, 98, 100, 171], "daemon_config_nam": 8, "daemonconfig": [96, 97], "dai": [1, 2, 3, 19, 43, 44, 49, 53, 57, 60, 61, 73, 81, 85, 93, 105, 106, 107, 110, 112, 114, 116, 119, 123, 151, 153, 186, 187], "daili": [12, 53, 58, 60, 107, 119, 153], "daisi": 157, "dall": 175, "danger": 64, "dark": [60, 160], "dash": [67, 85, 153], "dashboard": [60, 65, 88, 116], "data": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 19, 20, 22, 23, 25, 26, 27, 29, 34, 40, 45, 46, 51, 56, 57, 59, 63, 67, 68, 73, 77, 78, 80, 81, 82, 83, 84, 85, 88, 93, 94, 96, 98, 106, 109, 115, 116, 121, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 147, 148, 149, 150, 154, 155, 159, 160, 162, 173, 175, 180, 183, 186, 187, 188], "data_request": 108, "databas": [3, 12, 14, 19, 23, 24, 29, 32, 38, 40, 44, 45, 48, 56, 57, 58, 65, 67, 81, 83, 88, 93, 112, 113, 114, 121, 125, 126, 127, 133, 135, 138, 141, 142, 143, 144, 147, 148, 150, 153, 156, 157, 162, 164, 174, 175, 185, 187], "databaseid": 118, "datacent": [31, 48], "datadir": [28, 60, 131], "datadirectori": [29, 67, 88, 120, 135, 143, 147], "dataintegr": [60, 183], "dataloss": 146, "dataset": 11, "date": [2, 14, 19, 41, 46, 57, 60, 66, 67, 70, 81, 83, 88, 110, 112, 116, 122, 123, 130, 132, 134, 138, 140, 146, 153, 156, 157, 160, 177, 186], "dateinterv": 112, "datepattern": 126, "datetim": 60, "datetimeinterfac": 60, "dav": [35, 60, 69, 70, 81, 88, 93, 108, 111, 112, 113, 114, 117, 118, 123, 124, 129, 133, 138, 150, 156], "davclnt": 129, "david": 187, "davstorag": [26, 41, 88], "davx5": 114, "davx\u2075": 118, "db": [3, 19, 20, 22, 25, 51, 56, 83, 88, 93, 124, 128, 138, 140, 144, 146, 148, 157, 163, 165], "db8": 60, "db_": 129, "db_host": 164, "db_name": [140, 146, 164], "db_user": 164, "dbal": 60, "dbdriveropt": [22, 25, 88], "dbhost": [22, 25, 88, 120, 135, 143], "dbindex": [59, 60, 149], "dbname": [22, 24, 25, 88, 120, 143], "dbpass": 120, "dbpassword": [22, 25, 88, 120, 128, 143], "dbpersist": 88, "dbport": 25, "dbreplica": [24, 88], "dbtableprefix": [22, 88, 120], "dbtype": [20, 22, 88, 120, 135], "dbuser": [22, 25, 88, 120, 128, 143], "dc": [81, 82, 83, 154], "dd": [81, 151], "ddl": 182, "de": [60, 66, 69, 89], "de_d": [60, 66], "deactiv": [20, 44, 49, 112, 116, 181, 182, 183], "deal": [118, 133], "deb": [125, 160, 163, 165, 167], "debconf": [163, 165], "debian": [22, 56, 59, 72, 88, 121, 130, 132, 133, 134, 138, 150, 161, 162, 166, 185], "debug": [12, 13, 70, 81, 88, 118, 127, 129, 137, 143, 147, 151, 153, 156], "decemb": 123, "decid": [12, 22, 28, 92, 95, 105, 129, 148, 186], "decim": 48, "decis": [28, 135], "deck": [15, 28, 88, 153, 156, 174, 175], "declar": [81, 88], "decod": 156, "decompress": 130, "decreas": [60, 88, 93], "decrement": 152, "decrypt": [46, 48, 60, 88, 96, 106, 126, 132, 138, 150], "dedic": [2, 3, 6, 25, 26, 60, 72, 81, 88, 112, 119, 127, 128, 129, 132, 135, 147, 151, 153, 156, 161, 169], "deem": 47, "deep": [28, 65, 88], "deeper": 11, "deepl": [1, 4, 15], "default": [1, 2, 3, 4, 5, 7, 9, 10, 11, 15, 16, 18, 20, 22, 23, 24, 26, 28, 29, 30, 31, 33, 34, 37, 38, 39, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 63, 65, 68, 69, 72, 80, 81, 82, 83, 85, 86, 87, 88, 92, 93, 94, 95, 97, 98, 106, 107, 110, 112, 113, 114, 115, 117, 118, 123, 124, 126, 128, 129, 130, 131, 132, 133, 134, 138, 140, 145, 146, 148, 149, 150, 151, 153, 156, 157, 160, 163, 164, 167, 168, 169, 171, 174, 183, 186, 187, 188], "default_certificates_bundle_path": 88, "default_en": 17, "default_file_extens": 71, "default_host": 22, "default_languag": [66, 88], "default_local": [66, 88], "default_password": 22, "default_phone_region": [81, 88], "default_port": 22, "default_property_scop": [77, 81, 88], "default_scop": 77, "default_socket": 22, "default_timezon": [88, 117], "default_us": 22, "defaultapp": 88, "defaultmodul": 152, "defaultpag": 61, "defaulttemplatedirectori": 27, "defenc": 107, "defin": [16, 28, 29, 32, 36, 45, 48, 49, 50, 57, 59, 60, 65, 66, 67, 77, 81, 85, 88, 93, 94, 96, 101, 102, 103, 112, 126, 129, 137, 150, 151, 153, 159, 160, 180, 186, 187, 188], "definit": [20, 46, 88, 126, 186], "defunct": 81, "degrad": [60, 132, 151], "degre": 135, "delai": [0, 15, 40, 41, 53, 57, 58, 60, 88, 112, 156], "deleg": [65, 88, 115, 150, 187], "delegate_permiss": 55, "delet": [1, 2, 3, 17, 27, 40, 43, 44, 46, 50, 53, 56, 57, 65, 73, 74, 81, 87, 88, 93, 98, 101, 105, 107, 108, 110, 111, 112, 113, 115, 117, 118, 135, 137, 138, 142, 146, 147, 150, 152, 155, 187], "delete_timestamp": 29, "deliber": [96, 107, 186], "delimit": [31, 81], "deliv": [12, 53, 108, 129, 186], "deliveri": [53, 60], "delta": 60, "demand": [8, 15, 56, 57, 81, 88, 107, 126, 153], "demo": [60, 156], "demograph": 7, "demon": [2, 5, 7, 9, 10, 11], "demonstr": 20, "demot": [81, 88], "deni": [3, 60, 88, 92, 104, 129, 131, 157], "denial": [58, 126, 131], "denot": 29, "depart": 82, "depend": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 19, 29, 32, 40, 43, 47, 57, 58, 59, 60, 64, 69, 70, 72, 77, 81, 88, 92, 95, 114, 116, 123, 124, 126, 128, 129, 133, 134, 135, 138, 142, 143, 145, 148, 150, 152, 166, 175, 181, 182, 183, 187], "deploi": [2, 3, 4, 5, 7, 9, 10, 11, 22, 77, 88, 92, 100, 119, 123, 124, 129, 132, 138, 169, 186], "deploy": [3, 28, 60, 65, 77, 88, 91, 95, 97, 99, 100, 109, 119, 123, 127, 130, 132, 133, 134, 135, 138, 148, 162, 169, 186], "deployconfig": [88, 96], "deploydaemon": 96, "deprec": [60, 76, 134, 157, 179, 181, 182, 183, 184, 188], "deprovis": 135, "deriv": [72, 77, 81, 88, 126, 129, 133, 152, 153, 156], "describ": [12, 26, 29, 41, 43, 53, 57, 60, 63, 67, 70, 77, 80, 81, 92, 95, 96, 97, 101, 102, 105, 107, 108, 109, 111, 120, 138, 144, 166], "descript": [2, 15, 16, 17, 28, 53, 57, 81, 82, 92, 94, 110, 112, 116, 123, 130, 132, 133, 156, 160, 164, 174, 187], "design": [2, 12, 28, 45, 53, 63, 72, 81, 86, 109, 119, 133, 145, 148, 172], "desir": [8, 25, 26, 38, 59, 60, 63, 67, 83, 102, 128, 129, 133, 143], "desktop": [15, 28, 32, 50, 64, 72, 81, 88, 93, 101, 119, 127, 132], "desktopshortcut": 92, "despit": [43, 60, 129, 152, 153], "destin": [2, 32, 37, 39, 60, 111, 125, 151, 153], "destruct": 151, "detail": [2, 3, 4, 7, 12, 22, 28, 40, 43, 46, 53, 60, 63, 67, 68, 72, 77, 81, 84, 88, 92, 93, 95, 99, 108, 110, 118, 123, 125, 126, 128, 129, 130, 132, 133, 138, 142, 143, 150, 151, 153, 156, 157, 165, 169, 170, 172, 181, 182, 183, 184, 186, 188], "detect": [14, 15, 38, 46, 58, 59, 60, 65, 66, 69, 70, 71, 81, 82, 83, 88, 96, 106, 128, 130, 153, 154, 156], "detect_ord": 71, "determin": [2, 43, 60, 77, 80, 81, 88, 93, 96, 118, 133, 152, 153], "dev": [60, 65, 67, 88, 124, 134, 150, 164, 188], "develop": [12, 15, 16, 54, 60, 80, 91, 93, 94, 95, 118, 126, 128, 133, 134, 136, 137, 138, 145, 148, 153, 158, 164, 168, 186, 187], "developer_manu": 60, "deviat": 126, "devic": [28, 40, 58, 60, 64, 69, 72, 80, 91, 93, 95, 96, 97, 99, 126, 132, 133, 145], "diagnos": [67, 81, 132, 150, 156, 157, 180], "diagnost": [3, 88], "diagram": [15, 96, 188], "dialect": [7, 60], "dialog": [41, 43, 77, 81, 114, 153, 160], "dialogu": [81, 146], "dictat": 96, "did": [20, 28, 30, 88, 99, 138, 149], "diff": 136, "differ": [2, 3, 5, 7, 15, 22, 25, 28, 29, 31, 32, 40, 46, 55, 56, 57, 58, 59, 60, 64, 66, 69, 77, 80, 81, 85, 88, 92, 93, 95, 96, 98, 99, 112, 113, 120, 126, 128, 129, 133, 135, 137, 138, 141, 146, 150, 151, 152, 153, 156, 157, 159, 180, 187], "differenti": [15, 112, 113], "difficult": [60, 128, 137], "difficulti": [2, 146], "diffus": [15, 175], "digestmail": 156, "digit": 134, "dimens": 60, "diminish": 60, "dir": [23, 28, 93, 133, 138, 147, 156], "dirbkp": 146, "dirbkp_": 140, "direct": [26, 40, 59, 60, 77, 79, 81, 101, 129, 132, 133, 138, 182, 186], "directli": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 25, 26, 28, 32, 40, 48, 53, 55, 57, 60, 63, 69, 81, 92, 93, 96, 101, 106, 108, 111, 128, 129, 133, 135, 138, 147, 148, 149, 153, 156, 160, 161, 174, 188], "directori": [3, 5, 7, 8, 18, 26, 27, 28, 29, 33, 34, 37, 38, 39, 40, 41, 43, 45, 48, 53, 55, 56, 57, 60, 65, 67, 77, 79, 83, 88, 91, 92, 93, 101, 102, 111, 118, 121, 123, 124, 125, 127, 129, 132, 133, 135, 136, 139, 140, 142, 143, 144, 146, 147, 149, 150, 152, 153, 154, 156, 157], "directory2": 81, "dirti": [60, 67], "disabl": [1, 2, 3, 16, 18, 23, 25, 26, 29, 30, 31, 32, 38, 40, 41, 44, 46, 49, 50, 52, 58, 63, 65, 67, 72, 74, 81, 88, 93, 95, 96, 97, 100, 101, 103, 107, 110, 111, 112, 113, 114, 117, 118, 129, 130, 131, 132, 133, 134, 142, 144, 147, 148, 149, 150, 153, 154, 156, 160, 167, 181, 182, 183, 184], "disable_act": 85, "disable_email": 85, "disable_funct": 130, "disablefreebusi": 112, "disadvantag": [29, 57], "disallow": [3, 60, 88, 127], "disappear": [43, 45, 58, 59, 123], "disapprov": 188, "discard": 116, "disclaim": 43, "disclos": 107, "disconnect": [41, 60, 83], "discontinu": 63, "discourag": [47, 58, 60, 70, 128, 143, 150], "discov": [60, 187], "discover": [7, 10, 77], "discoveri": [59, 60, 65, 70, 77, 88, 110, 133, 139, 166, 171, 172], "discret": [58, 186], "discuss": [12, 22, 43, 93, 119, 183, 186], "disk": [3, 28, 39, 44, 60, 85, 88, 93, 96, 129, 132, 138, 152, 153, 160, 162, 163, 164, 165, 182], "dispar": 7, "dispatch": [88, 114], "displai": [15, 28, 43, 46, 47, 51, 53, 60, 63, 64, 66, 75, 76, 77, 79, 81, 82, 83, 85, 88, 94, 95, 96, 97, 98, 110, 111, 112, 114, 116, 118, 128, 129, 137, 150, 151, 153, 156, 157, 160], "display_nam": 157, "displaynam": [75, 76, 81, 82, 111, 112, 151, 154, 157, 187], "displaynamescop": 77, "disregard": 138, "disrupt": 148, "dist": [51, 101], "distinct": [48, 77, 88, 107, 111, 187], "distinguish": [46, 60, 88], "distribut": [26, 27, 38, 45, 48, 51, 56, 58, 59, 70, 81, 88, 91, 93, 95, 96, 119, 123, 126, 129, 130, 131, 133, 134, 137, 138, 143, 148, 150, 153, 162, 169], "distro": [38, 60, 96, 131, 133, 138, 145], "dive": 28, "diverg": 151, "divid": 60, "dmz": [88, 127], "dn": [59, 81, 82, 83, 96, 143, 160, 172, 180], "dnextcloud": 22, "dnf": 123, "do": [0, 2, 3, 4, 5, 7, 9, 10, 14, 15, 16, 19, 20, 22, 25, 26, 28, 32, 40, 43, 47, 51, 53, 56, 58, 59, 60, 63, 64, 69, 70, 72, 80, 81, 82, 85, 88, 92, 93, 95, 96, 98, 101, 102, 107, 117, 118, 120, 123, 124, 126, 128, 129, 131, 132, 133, 134, 138, 141, 142, 143, 144, 146, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 166, 173, 180, 181, 182, 183, 185, 186, 187, 188], "do_not_schedule_reboot": 92, "doc": [15, 60, 93, 99, 119, 124, 134, 152, 159, 166, 167, 168, 169, 170, 171, 183], "docker": [3, 4, 5, 7, 8, 11, 15, 40, 56, 60, 69, 81, 88, 97, 99, 100, 130, 132, 133, 148, 150, 152, 160, 161, 162, 169, 172, 180, 187], "docker_aio": 96, "docker_instal": [95, 97], "docker_local_sock": [97, 98], "docker_socket_port": 97, "dockerfil": 8, "dockersocketproxi": 96, "docservic": [163, 165], "doctrin": 60, "document": [1, 2, 3, 12, 22, 23, 26, 29, 31, 32, 35, 40, 43, 45, 47, 51, 56, 59, 60, 62, 64, 67, 70, 88, 92, 93, 96, 102, 109, 117, 118, 119, 123, 125, 126, 128, 129, 130, 132, 133, 134, 137, 138, 144, 145, 150, 152, 153, 154, 156, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 171, 172, 173, 174, 175, 182, 183, 187, 188], "document_root": 129, "documentation_url": 88, "documentroot": [123, 133, 138], "documentserv": [160, 163, 164, 165], "documentserver_": [163, 165], "documentserverurl": 160, "docx": [161, 168], "doe": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 15, 20, 22, 28, 29, 31, 32, 33, 36, 38, 40, 43, 45, 48, 53, 55, 56, 57, 58, 59, 60, 63, 65, 66, 68, 69, 75, 76, 77, 81, 85, 88, 92, 95, 96, 97, 98, 101, 108, 109, 113, 116, 117, 118, 120, 124, 126, 128, 129, 131, 132, 133, 137, 138, 141, 142, 144, 146, 148, 149, 150, 152, 153, 156, 157, 162, 173, 180, 183, 186, 188], "doesn": [18, 22, 28, 76, 81, 118, 123, 129, 147, 172, 188], "doesnotexist": 149, "doku2md": 18, "dokuwiki": 88, "dokuwiki2markdown": 18, "dollar": 81, "dom": [56, 63, 130], "domain": [2, 31, 38, 41, 48, 52, 55, 57, 60, 65, 70, 88, 95, 124, 127, 133, 149, 166, 172, 184], "don": [2, 6, 14, 26, 31, 44, 45, 56, 57, 59, 60, 62, 63, 81, 88, 95, 112, 118, 129, 131, 133, 137, 140, 142, 149], "done": [1, 3, 4, 15, 17, 18, 40, 57, 60, 62, 63, 68, 75, 76, 81, 82, 96, 98, 123, 124, 133, 143, 144, 147, 151, 152, 159, 166, 180, 184, 187], "dora": 157, "dot": [8, 38, 40, 50, 95, 96, 129, 138, 181, 187], "doubl": [12, 60, 138], "dow": 56, "down": [3, 40, 59, 88, 93, 112, 113, 116, 118, 132, 188], "downgrad": [88, 147, 148], "download": [4, 5, 6, 16, 26, 28, 38, 41, 56, 60, 69, 85, 88, 89, 93, 96, 100, 101, 106, 108, 110, 111, 121, 123, 125, 126, 133, 136, 138, 141, 142, 143, 144, 148, 149, 152, 153, 156, 159, 160, 162, 166, 167], "downsid": [48, 180], "downstream": [5, 12, 15], "downtim": 81, "dozen": 168, "draft": [2, 3, 5, 7, 118, 138, 153], "draw": [2, 58], "drawback": [32, 133], "drawn": 60, "drive": [26, 60, 132], "driven": [40, 133], "driver": [6, 22, 60, 96, 99, 128], "droid": 60, "drop": [3, 22, 46, 58, 63, 88, 124, 126, 138, 146, 151, 163, 165, 185, 188], "drop_account": 108, "dropbox": 93, "dropdown": [40, 43, 85], "dry": [148, 151, 152, 153], "dsheurist": 81, "dsnap": 124, "dsp": [95, 96, 97], "dst_path": 98, "duckduckgo": [2, 174], "due": [2, 4, 12, 26, 38, 47, 49, 55, 60, 64, 71, 81, 88, 93, 99, 101, 110, 126, 129, 132, 138, 142, 151, 153, 156, 157, 160, 170], "dummi": 147, "dump": [88, 140, 143], "duplic": [3, 11, 88, 114, 129, 138, 156], "durat": [60, 93, 156], "dure": [3, 4, 16, 26, 28, 29, 32, 40, 45, 46, 56, 57, 60, 81, 84, 88, 92, 96, 99, 123, 129, 132, 133, 141, 143, 147, 152, 156, 163, 164, 165, 182, 183], "dutch": 4, "dynam": [23, 60, 82, 93, 132, 182], "e": [1, 2, 5, 8, 12, 15, 18, 19, 20, 22, 23, 26, 28, 31, 32, 34, 40, 48, 51, 53, 54, 55, 56, 57, 58, 59, 60, 63, 64, 67, 68, 69, 72, 73, 77, 78, 80, 81, 82, 83, 93, 95, 96, 97, 98, 99, 101, 106, 107, 108, 111, 112, 113, 114, 116, 118, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 163, 164, 165, 166, 167, 170, 175, 186, 187, 188], "e2e": 28, "eacceler": 138, "each": [1, 2, 3, 6, 9, 14, 15, 28, 29, 32, 40, 43, 44, 55, 56, 57, 58, 60, 64, 67, 69, 77, 81, 85, 93, 95, 96, 99, 101, 108, 110, 114, 116, 120, 130, 132, 133, 138, 148, 150, 152, 153, 155, 156, 157, 160, 162, 163, 180, 186, 187, 188], "ear": 1, "earli": [12, 81], "earlier": [57, 60, 81, 123, 138, 186], "eas": [60, 186], "easi": [56, 59, 60, 63, 83, 85, 133, 144, 145, 169, 187], "easier": [55, 60, 93, 118, 132, 133, 144], "easiest": [22, 58, 60, 63, 101, 126, 133, 138, 146, 148], "easili": [15, 41, 60, 63, 64, 133, 144, 145, 171, 188], "east": [48, 60], "easycron": 57, "ecdsa": 155, "echo": [15, 156, 163, 165, 167, 187], "ecosystem": [12, 54, 58, 95, 119, 185], "ed": 55, "edg": [15, 43, 116, 134], "edit": [2, 11, 22, 32, 33, 41, 43, 45, 56, 65, 77, 81, 82, 85, 87, 88, 110, 112, 121, 129, 132, 133, 137, 138, 140, 148, 150, 156, 158, 160, 161, 163, 167, 168, 169, 186, 188], "editor": [60, 85, 88, 112, 161], "edri": [60, 126], "edu": 60, "eff": [60, 126], "effect": [15, 41, 58, 59, 60, 77, 81, 92, 93, 96, 106, 131, 132, 147, 153, 180, 187], "effici": [8, 60, 132, 134], "effort": [12, 186], "efss": 135, "eg": [52, 150], "egress": 124, "ehlo": 63, "eicar": 56, "eicar_hdb": 56, "either": [1, 3, 5, 8, 14, 26, 42, 50, 54, 59, 60, 63, 81, 85, 93, 95, 96, 101, 123, 125, 129, 133, 135, 137, 142, 147, 148, 153, 156, 186, 188], "ej39ityzeuh5bgwdrufi": 48, "elasticsearch": 143, "elect": 81, "element": [17, 75, 76, 151], "elig": 77, "elimin": [81, 120], "els": [14, 81, 96, 111, 132, 133, 137], "elseif": 96, "elsewher": [58, 60, 96, 129], "email": [2, 41, 43, 60, 61, 65, 74, 77, 78, 81, 82, 88, 108, 110, 111, 112, 114, 116, 119, 153, 156, 157, 160, 175], "email_address_changed_by_admin": 85, "email_configur": 60, "emailscop": 77, "emailtempl": [60, 63], "emb": [60, 64, 159], "embed": [3, 65, 88, 126, 156, 160, 182, 183, 184], "embrac": [133, 145], "emf": [60, 180], "emit": 150, "emoji": [2, 23, 134, 140, 146, 151], "emot": 11, "emploi": [3, 8, 72, 81, 86, 119, 186], "employe": [12, 187], "empti": [3, 22, 27, 29, 58, 60, 65, 67, 69, 76, 77, 81, 82, 85, 88, 92, 96, 107, 110, 133, 138, 142, 143, 153, 187, 188], "en": [2, 7, 8, 60, 66, 123, 134, 156, 157], "en_u": [60, 66], "enabl": [1, 2, 3, 6, 8, 15, 18, 19, 20, 21, 22, 25, 29, 31, 38, 39, 41, 42, 43, 46, 47, 49, 54, 57, 58, 59, 64, 65, 67, 68, 70, 72, 73, 74, 77, 81, 83, 87, 88, 91, 92, 93, 94, 95, 96, 100, 101, 106, 110, 111, 112, 113, 114, 116, 117, 118, 123, 124, 127, 129, 130, 134, 137, 138, 140, 142, 144, 147, 148, 149, 153, 154, 160, 161, 162, 164, 166, 167, 168, 169, 170, 172, 175, 178, 180, 181, 182, 184, 187, 188], "enable_cli": 150, "enable_encrypt": 28, "enable_lazy_object": 88, "enable_mail_link_password_expir": 88, "enable_non": 88, "enable_oc_cli": 156, "enable_preview": [47, 88, 126], "enable_shar": 153, "enable_share_accept": 88, "enable_share_mail": 88, "enablecalendarfeder": 112, "enabledefaultcontact": 113, "enabledpreviewprovid": [47, 88, 126, 132, 180, 181], "encapsul": 129, "encf": 131, "encod": [22, 29, 31, 46, 48, 65, 82, 83, 88, 129, 147, 152], "encount": [2, 3, 41, 50, 60, 118, 130, 137, 138, 142], "encourag": [86, 126, 133, 186], "encrypt": [31, 32, 40, 41, 45, 46, 65, 81, 85, 88, 107, 110, 126, 127, 129, 139, 143, 150, 153, 156, 157, 172, 178], "end": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 28, 29, 51, 60, 81, 88, 112, 120, 123, 129, 132, 143, 144, 148, 150, 151, 157, 160, 163, 165, 180], "end_header_id": 5, "endeavor": 119, "endedat": 14, "endedbefor": [14, 156], "endpoint": [2, 15, 31, 35, 36, 48, 52, 58, 60, 68, 70, 76, 77, 87, 88, 96, 113, 138, 143, 147, 155, 156, 166, 180, 187, 188], "energi": [5, 6, 7, 8, 11, 88, 90], "enforc": [9, 22, 41, 43, 50, 60, 63, 64, 72, 74, 77, 81, 86, 88, 95, 110, 112, 123, 126, 129, 137, 153, 156, 159, 178, 187], "enforce_home_folder_naming_rul": 81, "enforce_them": 88, "engin": [22, 56, 96, 99, 101, 132, 134, 140, 146, 156, 164, 186, 188], "english": [2, 4, 5, 7, 8, 9, 10, 11, 60, 66], "enhanc": [8, 16, 45, 58, 60, 70, 81, 86, 119, 132], "enlarg": 64, "enough": [0, 1, 4, 11, 26, 59, 60, 81, 93, 99, 112, 126, 132, 138, 166, 170, 182], "ensembl": 3, "ensur": [8, 12, 16, 22, 26, 28, 38, 44, 52, 53, 55, 57, 59, 60, 67, 69, 70, 81, 88, 92, 93, 95, 107, 108, 112, 114, 116, 124, 127, 129, 130, 132, 133, 134, 137, 138, 142, 143, 150, 151, 152, 153, 157, 159, 172], "enter": [18, 22, 26, 28, 31, 32, 33, 34, 36, 37, 38, 41, 43, 45, 60, 63, 68, 78, 79, 81, 85, 92, 93, 116, 124, 125, 126, 128, 133, 145, 147, 152, 157], "enterpris": [12, 22, 56, 72, 119, 121, 122, 123, 126, 133, 134, 138, 156, 168, 185, 186], "entir": [3, 5, 6, 7, 9, 10, 11, 12, 18, 40, 43, 58, 67, 77, 92, 117, 121, 138, 140, 147, 186], "entri": [1, 22, 38, 40, 41, 53, 58, 59, 60, 69, 81, 83, 88, 107, 111, 112, 113, 114, 124, 129, 132, 133, 135, 137, 138, 142, 143, 144, 147, 149, 151, 153, 156, 160, 175, 180], "entrypoint": [58, 171], "entryuuid": 154, "enumer": [77, 113, 179], "env": [4, 96, 97, 98, 126, 133, 157], "env_nam": 98, "env_valu": 98, "envelop": 88, "environ": [3, 4, 8, 12, 22, 26, 43, 58, 65, 70, 81, 88, 92, 93, 96, 98, 100, 118, 119, 126, 129, 130, 132, 134, 138, 140, 142, 143, 145, 146, 147, 148, 156, 157, 160, 162, 169, 184, 186], "eof": 63, "eot_id": 5, "epel": [56, 123], "epoch": 134, "equal": [8, 29, 47, 60, 96], "equival": [40, 49, 59, 60, 81, 132, 156], "eras": 93, "erasur": [88, 107], "err": 4, "error": [3, 4, 7, 14, 26, 40, 53, 56, 59, 60, 67, 69, 80, 81, 88, 92, 98, 99, 110, 118, 121, 123, 126, 128, 130, 131, 132, 133, 136, 139, 142, 143, 147, 149, 150, 151, 153, 156, 172, 183, 188], "error_log": [60, 67, 93, 138], "error_messag": 14, "error_success_reboot_requir": 92, "errorlog": [60, 88, 156], "escal": 54, "escap": [63, 92, 187], "esmtp": 63, "especi": [28, 57, 58, 77, 81, 96, 102, 133, 136, 138, 142, 143, 144, 148, 180, 187], "esperanto": 4, "essenti": [8, 60, 68, 81, 132, 138, 188], "establish": [41, 43, 55, 63, 77, 88, 93, 130, 134, 153, 154], "estim": [4, 132], "esx": 133, "etag": [40, 129, 156, 187], "etc": [3, 8, 12, 15, 22, 25, 43, 48, 56, 57, 59, 60, 67, 69, 77, 81, 85, 96, 111, 123, 124, 126, 128, 129, 130, 131, 133, 138, 143, 144, 152, 153, 157, 160, 163, 164, 166, 167, 170, 172, 174, 178, 180, 187, 188], "ethic": [5, 13, 88], "eu": [13, 31, 48, 88, 153], "euc": 71, "euro": [160, 161, 162, 163, 164, 165, 168], "eurooffic": [160, 164], "europ": [60, 67, 117, 149], "eval": 150, "evalu": [67, 77, 186, 187], "even": [1, 3, 16, 20, 22, 26, 31, 32, 38, 48, 58, 59, 60, 69, 77, 81, 88, 95, 96, 98, 101, 107, 112, 114, 126, 129, 131, 133, 138, 142, 146, 148, 186], "event": [2, 12, 23, 40, 53, 60, 67, 81, 88, 93, 107, 110, 111, 114, 115, 116, 126, 128, 150, 153, 156, 188], "eventfilt": 187, "eventu": 107, "everi": [3, 5, 15, 22, 32, 38, 40, 44, 48, 49, 54, 55, 56, 57, 59, 60, 63, 67, 68, 69, 80, 81, 85, 93, 96, 108, 110, 112, 113, 114, 119, 123, 132, 134, 143, 144, 147, 148, 150, 152, 153, 156, 174, 175, 184, 186, 187, 188], "everybodi": 138, "everyon": [18, 52, 77, 80, 119, 154, 186], "everyth": [59, 60, 63, 65, 81, 88, 92, 133, 138, 186, 188], "everywher": [81, 175], "evict": 60, "ex": [2, 92, 93, 95, 144, 150], "ex_app_port": 96, "exact": [38, 57, 60, 70, 77, 81, 147, 187], "exactli": [48, 123, 132, 148], "examin": [12, 83], "exampl": [0, 1, 2, 3, 4, 5, 7, 8, 12, 14, 15, 16, 18, 20, 22, 26, 28, 32, 33, 34, 35, 38, 40, 41, 43, 45, 47, 48, 50, 51, 53, 55, 56, 57, 59, 63, 64, 65, 68, 72, 77, 79, 81, 83, 85, 87, 88, 93, 94, 95, 96, 98, 104, 115, 116, 118, 121, 126, 127, 128, 129, 131, 133, 135, 136, 137, 138, 140, 142, 147, 148, 149, 150, 153, 154, 155, 156, 157, 160, 169, 171, 172, 178, 186, 187], "exapp": [1, 2, 3, 5, 7, 9, 10, 11, 15, 88, 94, 97, 99, 181, 182, 183], "exapp_direct": 97, "exapphost": 96, "exce": [4, 44, 49, 60, 85, 132, 153, 183], "exceed": [26, 44, 49, 60, 151, 153], "excel": 59, "except": [59, 60, 67, 76, 80, 81, 92, 129, 132, 137, 142, 143, 147, 150, 156], "excerpt": 93, "excess": [111, 132], "exchang": [0, 5, 7, 41, 63, 178], "excim": 60, "exclud": [43, 60, 65, 77, 80, 88, 93, 102, 156, 157], "exclus": [36, 40, 48, 58, 60, 70, 93, 96, 138, 153], "exec": [4, 15, 40, 142, 152, 187], "execcondit": 57, "execstart": [15, 57, 187], "execut": [1, 3, 4, 6, 8, 15, 19, 25, 38, 41, 53, 56, 57, 60, 67, 70, 81, 88, 92, 96, 104, 116, 126, 129, 131, 137, 142, 147, 148, 150, 151, 154, 160, 187], "exempt": [58, 60], "exhibit": [7, 8, 129], "exif": [130, 153], "exim": 63, "exim4": 63, "exist": [6, 12, 16, 20, 22, 23, 27, 28, 31, 33, 36, 38, 44, 48, 51, 53, 54, 60, 61, 63, 67, 74, 75, 76, 81, 83, 85, 88, 92, 93, 95, 96, 107, 112, 114, 116, 118, 125, 128, 129, 130, 133, 137, 138, 142, 143, 146, 147, 148, 149, 151, 152, 153, 154, 155, 156, 157, 170, 177, 180, 186, 187, 188], "exit": [92, 124, 152, 153, 156], "expand": [88, 119, 128, 160], "expect": [6, 14, 59, 60, 63, 77, 81, 85, 88, 116, 136, 137, 147, 156, 159, 163, 165, 180, 181, 182, 183, 186], "expedit": 8, "expens": [40, 112], "experi": [4, 16, 57, 65, 88, 113, 116, 119, 126, 132, 134, 138, 172], "experienc": 93, "experiment": [60, 81, 85], "expert": [12, 28, 60, 74, 88, 116], "expertis": [138, 186], "expir": [2, 32, 41, 44, 46, 49, 57, 58, 60, 65, 81, 86, 88, 93, 106, 107, 112, 116, 129, 187], "expiri": [44, 60, 81, 107], "explain": [38, 56, 65, 88, 108, 111, 119, 123, 130], "explan": 40, "explicit": 114, "explicitli": [5, 14, 29, 49, 59, 60, 67, 69, 77, 87, 92, 106, 128, 129, 138, 150, 153, 157, 160, 178], "explod": [60, 96], "explor": [12, 92], "exponenti": 126, "export": [52, 60, 88, 93, 108, 111, 116, 126, 149, 150, 157, 188], "expos": [2, 28, 40, 41, 52, 56, 60, 77, 88, 95, 96, 97, 126, 128, 130, 138, 162], "exposur": [77, 107, 126, 138], "express": [60, 69, 101, 187, 188], "ext4": 38, "extapp": 159, "extend": [2, 8, 43, 60, 63, 107, 111, 119, 134, 173, 186], "extendedsupport": 156, "extens": [3, 22, 51, 59, 60, 63, 65, 67, 70, 88, 90, 92, 111, 118, 119, 123, 126, 129, 130, 132, 133, 138, 143, 145, 153, 179, 180, 181, 186], "extern": [2, 3, 5, 6, 7, 9, 10, 11, 15, 31, 33, 34, 35, 36, 37, 38, 39, 41, 45, 46, 47, 57, 60, 65, 68, 81, 84, 85, 87, 88, 100, 102, 108, 110, 112, 126, 130, 131, 132, 134, 135, 142, 143, 149, 150, 152, 156, 157, 160, 164, 180, 187, 188], "external_db": 3, "external_storag": 88, "externalapp": 3, "externaldr": 152, "extra": [12, 16, 56, 60, 72, 81, 99, 123, 124, 137, 142, 152, 163], "extra_fil": 137, "extract": [1, 3, 29, 60, 96, 123, 125, 129, 147, 156], "extrem": [58, 70, 128, 132], "extstoragemount": 61, "f": [2, 4, 8, 15, 53, 57, 60, 67, 99, 112, 140, 142, 146, 148, 151, 153, 156, 187], "f12": [93, 138], "f1c5e2630d784bc9cb02d5a28f55d6f24d06dae2a0fee685f3": 137, "f6": 55, "fa829794448eaffbc9a04a29d216": 137, "face": [7, 9, 12, 14, 15, 77, 88, 92, 129], "facebook": 60, "facebook100000123456789": 60, "facilit": [80, 132, 186], "fact": 126, "facto": 69, "factor": [4, 8, 15, 26, 58, 73, 74, 88, 118, 126, 132, 150], "factori": 60, "fail": [3, 14, 16, 26, 38, 41, 58, 59, 60, 67, 69, 75, 76, 78, 81, 88, 92, 93, 99, 107, 110, 112, 121, 126, 130, 137, 138, 145, 147, 150, 151, 152, 153, 155, 156, 157, 180], "fail2ban": [65, 88, 127], "failov": [60, 81], "failover_distribut": 60, "failover_error": [59, 60], "failover_mod": [59, 60], "failover_non": 60, "failregex": 126, "failur": [60, 75, 76, 88, 93, 99, 138, 143, 150], "fair": [88, 139], "fairli": 93, "fall": [25, 26, 38, 60, 114, 128, 129], "fallback": [51, 67, 129, 160, 174], "fallen": 156, "fals": [2, 3, 5, 6, 7, 8, 9, 10, 11, 16, 30, 41, 47, 48, 53, 58, 59, 60, 63, 67, 77, 81, 85, 96, 97, 112, 116, 118, 126, 128, 132, 138, 140, 148, 149, 151, 152, 156, 164, 167, 180, 187], "familiar": [60, 133], "faq": [3, 70, 88, 100, 133, 138, 139, 145], "far": [2, 15, 85, 116, 186], "farsi": 4, "fast": [5, 63, 116, 149], "fastcgi": [124, 129, 133], "fastcgi_buff": 129, "fastcgi_connect_timeout": 129, "fastcgi_hide_head": 129, "fastcgi_intercept_error": 129, "fastcgi_max_temp_file_s": 129, "fastcgi_param": [126, 129], "fastcgi_pass": 129, "fastcgi_path_info": 129, "fastcgi_read_timeout": [26, 129, 132], "fastcgi_request_buff": 129, "fastcgi_script_nam": 129, "fastcgi_send_timeout": 129, "fastcgi_split_path_info": 129, "faster": [0, 3, 7, 11, 15, 59, 88, 127, 133, 186], "fastest": 132, "fat": 38, "fatal": [60, 67, 121, 156], "fault": 26, "faulti": 63, "favicon": [72, 156], "favor": 60, "favorit": 186, "fb": 55, "fcgid": 133, "fcgidmaxrequestinmem": 26, "fcgidmaxrequestlen": 26, "fcontext": [123, 131], "fd00": 126, "fd9e": 60, "fe80": [60, 128], "featur": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 29, 38, 40, 43, 50, 57, 58, 60, 62, 63, 70, 72, 77, 81, 83, 88, 108, 110, 112, 113, 115, 116, 118, 120, 123, 126, 130, 132, 133, 134, 138, 150, 153, 156, 166, 169, 173, 177, 183, 186, 187], "februari": 26, "feder": [18, 43, 46, 65, 70, 77, 88, 110, 111, 113, 114, 115, 126, 150, 155, 156], "fedivers": [77, 81, 110], "fediversescop": 77, "fedora": [59, 132, 133, 150], "fee": 111, "feedback": [5, 7, 9, 10, 15, 147, 160, 186, 187], "feel": [72, 96], "fell": 156, "fetch": [2, 16, 60, 81, 82, 124, 146, 148, 154, 159, 164, 188], "few": [32, 41, 58, 60, 81, 85, 97, 116, 132, 133, 142, 147, 148], "fewer": 107, "ff5733": 151, "ffmpeg": [47, 60, 130], "ffprobe": 60, "ffri": 69, "fidel": [161, 168], "field": [1, 14, 16, 29, 31, 32, 33, 34, 35, 36, 37, 40, 41, 56, 60, 65, 74, 75, 81, 82, 85, 88, 95, 96, 108, 110, 111, 126, 128, 133, 138, 154, 156, 186, 187, 188], "figur": 148, "file": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 22, 23, 32, 33, 34, 37, 41, 47, 48, 49, 50, 51, 55, 57, 58, 59, 61, 63, 65, 68, 69, 72, 77, 79, 81, 85, 91, 92, 96, 98, 99, 104, 106, 108, 111, 112, 113, 114, 117, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 133, 135, 136, 137, 139, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 160, 161, 164, 167, 170, 174, 175, 179, 182, 183, 184, 185], "filecach": [19, 25, 40, 51, 60, 88, 144, 156], "fileformat": 187, "fileid": [60, 156, 159, 187], "fileinfo": [130, 138], "filekei": [29, 88], "filelist": 38, "filelock": 88, "filenam": [28, 29, 46, 48, 60, 88, 93, 110, 146, 149, 156, 181], "filepart": 60, "filepath": [34, 131, 133, 149], "files_accesscontrol": 3, "files_antiviru": [56, 88, 93], "files_encrypt": [28, 29, 152], "files_extern": [3, 38, 40, 60, 88, 149], "files_external_allow_create_new_loc": 88, "files_no_background_scan": [88, 153], "files_pdfview": 147, "files_shar": [41, 60, 85, 149, 156], "files_texteditor": 17, "files_trashbin": [29, 49, 153, 187], "files_vers": [18, 29, 44, 153], "filesbytyp": [52, 60], "filescan": 57, "filesmatch": 133, "filesmetadata": 156, "filesync": 17, "filesystem": [17, 26, 28, 38, 44, 45, 48, 60, 81, 88, 92, 131, 153, 157, 187], "filesystem_cache_readonli": 88, "filesystem_check_chang": [88, 153], "filetyp": [47, 60, 126], "fill": [2, 3, 5, 35, 40, 41, 56, 63, 81, 85, 95, 96, 108, 112, 116, 128, 188], "filter": [13, 16, 17, 44, 58, 60, 77, 81, 82, 85, 88, 130, 132, 151, 153, 154, 156, 157, 172, 183, 188], "final": [3, 5, 7, 26, 38, 60, 63, 88, 96, 116, 123, 125, 126, 127, 133, 147, 160, 186], "financ": 157, "financi": 138, "find": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 26, 28, 33, 38, 40, 48, 56, 58, 60, 70, 77, 80, 81, 85, 88, 91, 93, 108, 111, 116, 122, 130, 132, 133, 136, 138, 142, 148, 154, 182, 186, 188], "finder": [60, 138], "findtim": 126, "fine": [5, 11, 60, 102, 126, 131, 133, 160, 188], "fingerprint": [88, 143, 146], "finish": [3, 4, 8, 14, 56, 57, 96, 98, 99, 120, 128, 138, 140, 142, 147, 148, 156], "firefox": [134, 157], "firewal": [16, 58, 96, 99, 123, 126, 172, 180], "firm": 107, "first": [4, 20, 22, 25, 27, 28, 32, 44, 48, 56, 58, 60, 62, 81, 82, 83, 84, 85, 92, 93, 96, 98, 99, 101, 111, 112, 113, 114, 118, 120, 123, 125, 126, 129, 132, 133, 135, 136, 137, 138, 142, 143, 144, 145, 148, 150, 151, 152, 154, 155, 156, 161, 163, 165, 181, 186], "first_seen": 157, "fit": [1, 6, 38, 59, 95, 133, 145, 162, 178], "five": [132, 140], "fix": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 26, 28, 57, 58, 70, 88, 96, 114, 129, 130, 132, 134, 136, 138, 139, 156, 186], "fix_pathinfo": 129, "flac": [129, 179, 180], "flag": [53, 60, 83, 84, 97, 132, 149, 150, 152, 156, 157], "flash": 56, "flat": 60, "flexibl": [133, 135, 186], "flight": 155, "flite": 60, "float": [12, 60, 149], "flood": 67, "floor": 132, "flow": [60, 67, 68, 84, 88, 92, 101, 105, 188], "flow_input": 188, "flowchart": 15, "fluentd": 96, "flush": 125, "fn": 114, "focu": [0, 1], "focus": [28, 119, 148, 186], "folder": [2, 7, 8, 16, 20, 26, 27, 31, 33, 34, 38, 39, 41, 43, 44, 46, 48, 49, 60, 65, 69, 72, 81, 82, 83, 88, 93, 94, 96, 102, 104, 123, 124, 129, 131, 133, 137, 138, 141, 142, 147, 153, 156], "follow": [1, 2, 3, 4, 5, 6, 7, 8, 10, 14, 15, 16, 18, 20, 22, 23, 25, 26, 28, 38, 39, 40, 41, 43, 47, 48, 52, 53, 56, 57, 58, 59, 60, 61, 63, 64, 67, 68, 69, 70, 71, 72, 77, 80, 81, 83, 85, 88, 92, 93, 95, 96, 97, 101, 103, 110, 112, 113, 114, 115, 117, 118, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 142, 144, 149, 150, 152, 153, 154, 160, 166, 171, 172, 174, 180, 186, 187, 188], "followsymlink": [123, 133], "font": [60, 88, 129, 163, 164, 165], "fontobject": 129, "foo": [60, 81], "foobar": 76, "food": 6, "foolproof": [60, 132], "footer": 108, "footprint": 107, "forbid": [50, 86, 112], "forbidden": 60, "forbidden_char": 181, "forbidden_filenam": [88, 181], "forbidden_filename_basenam": [50, 88, 181], "forbidden_filename_charact": [50, 88, 181], "forbidden_filename_extens": [50, 88, 181], "forc": [8, 43, 65, 67, 69, 81, 88, 92, 98, 107, 110, 113, 118, 126, 149, 150, 151, 153, 154, 156], "force_languag": [66, 88], "force_local": [66, 88], "force_share_accept": 88, "forceeventalarmtyp": 112, "forcesav": 160, "foreign": 63, "forest": 2, "forev": [49, 60, 156], "forgeri": 126, "forget": [28, 29, 60, 63, 132, 133, 140, 145], "forgot": 80, "form": [56, 60, 81, 87, 88, 95, 99, 111, 123, 128, 138, 188], "formal": [59, 60, 66], "format": [2, 5, 12, 32, 46, 47, 65, 66, 67, 71, 81, 82, 83, 88, 118, 132, 134, 150, 151, 153, 159, 160, 161, 168, 182, 187, 188], "formid": 187, "formsubmittedev": 187, "forum": [70, 119, 138, 147, 148, 186], "forward": [15, 60, 69, 70, 96, 128, 129, 133, 138, 142, 150, 171], "forwarded_for_head": [58, 69, 88], "found": [0, 1, 3, 4, 6, 18, 44, 47, 51, 56, 58, 59, 60, 67, 70, 80, 81, 88, 93, 95, 96, 99, 114, 123, 126, 128, 129, 130, 132, 133, 136, 137, 138, 145, 148, 151, 152, 156, 159, 166, 167, 169, 170, 171, 172, 180, 183, 186], "foundat": 0, "four": [15, 56, 81, 146, 156, 186, 187], "fourth": 186, "fpm": [26, 60, 70, 88, 124, 126, 127, 129, 130, 134], "fr": [60, 66], "frame": [64, 112, 126, 129], "franc": 60, "frank": [75, 76], "franksnewemail": 76, "frankspassword": 76, "fred": [151, 153, 156, 157], "freda": 41, "free": [2, 15, 20, 44, 80, 96, 118, 119, 126, 133, 138, 151, 157], "free_prompt_picker_en": 1, "freebsd": 130, "freebusi": [88, 115], "freed": 153, "freedom": 174, "freeli": [6, 11, 15, 63, 64], "french": [4, 5, 10, 11, 60, 66], "frequenc": [41, 88, 132], "frequent": [13, 56, 59, 60, 88, 107, 138, 186], "fresh": [3, 40, 81, 129, 142, 148, 151, 152], "freshclam": 56, "fridai": 2, "from": [0, 1, 2, 3, 4, 5, 6, 8, 11, 15, 16, 22, 26, 28, 29, 30, 32, 37, 38, 39, 40, 41, 43, 44, 45, 46, 50, 54, 55, 56, 57, 59, 60, 64, 65, 67, 69, 70, 72, 75, 77, 80, 81, 82, 83, 85, 86, 88, 93, 94, 95, 96, 98, 99, 101, 102, 105, 106, 107, 108, 111, 112, 113, 114, 116, 117, 118, 119, 123, 124, 125, 126, 127, 128, 129, 132, 133, 134, 135, 136, 137, 138, 141, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 163, 164, 165, 166, 168, 172, 174, 175, 180, 181, 182, 183, 184, 186, 187, 188], "front": [2, 3, 5, 7, 8, 9, 10, 11, 13, 88, 118, 129, 162, 169], "front_controller_act": [129, 133], "frontend": [26, 60, 67, 69, 88, 95, 173, 174], "frontend1": 69, "frp": [95, 96, 97], "frp_address": 97, "frpc": [96, 97], "fry": 154, "fss": 96, "ftp": [40, 88, 124, 130, 137], "fulfil": [2, 107, 111, 128, 138], "full": [3, 28, 34, 40, 43, 47, 51, 53, 54, 58, 59, 60, 63, 67, 68, 85, 101, 107, 108, 110, 111, 113, 126, 132, 133, 134, 143, 145, 149, 150, 151, 152, 153, 156, 157, 166, 167, 171, 186, 187], "fulli": [0, 1, 12, 13, 28, 41, 53, 60, 63, 88, 109, 133, 147, 148, 153, 156, 158, 168, 170, 186, 187], "fullscreen": 166, "function": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 29, 39, 45, 54, 60, 63, 64, 67, 77, 87, 88, 92, 95, 96, 102, 106, 116, 119, 126, 130, 131, 133, 134, 135, 138, 142, 143, 148, 159, 170, 172, 186, 188], "fund": 119, "fundament": [60, 70, 81], "further": [22, 43, 46, 48, 53, 59, 60, 63, 67, 70, 76, 77, 81, 88, 93, 108, 111, 123, 127, 133, 142, 144, 145, 169, 186], "furthermor": [29, 59, 60], "fuse": 131, "fusef": [88, 127], "fuserpwdsupport": 81, "futur": [4, 25, 43, 58, 70, 112, 126, 156, 181, 182, 183, 187], "g": [2, 5, 12, 15, 18, 22, 26, 28, 31, 32, 48, 53, 55, 57, 58, 59, 63, 64, 67, 69, 72, 77, 81, 82, 83, 88, 95, 96, 97, 98, 99, 101, 106, 107, 112, 113, 114, 116, 118, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 138, 142, 143, 146, 147, 148, 149, 150, 151, 153, 156, 157, 159, 163, 165, 166, 170, 186, 187, 188], "gain": [3, 14, 126], "galleri": [47, 60, 147, 156], "gap": 147, "garbag": [57, 60], "garbl": 5, "garm": [16, 126], "gatewai": [48, 88, 132, 133], "gather": [81, 138, 180], "gb": [3, 4, 11, 26, 60, 81, 85, 95, 132, 156, 162, 163, 164, 165], "gc": 60, "gc_maxlifetim": 60, "gcc": 22, "gd": [47, 123, 125, 130], "gdpr": [88, 106, 107, 108, 110, 111], "gear": 85, "gecko": 67, "gemma": 2, "gender": 7, "gener": [1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 18, 28, 31, 32, 36, 37, 40, 46, 48, 51, 52, 53, 58, 59, 60, 63, 69, 72, 77, 80, 81, 82, 88, 92, 93, 96, 106, 109, 112, 114, 116, 123, 127, 128, 129, 131, 132, 133, 135, 139, 143, 148, 149, 150, 153, 155, 156, 157, 159, 160, 163, 165, 173, 174, 175, 180, 181, 182, 183, 186], "generalizedtim": 81, "generate_font": 164, "genr": [15, 88], "geo": 129, "german": [4, 5, 60, 66], "germani": [2, 60], "get": [1, 2, 13, 16, 22, 26, 28, 29, 32, 38, 46, 47, 51, 60, 62, 67, 69, 80, 81, 82, 92, 105, 123, 124, 126, 129, 131, 133, 134, 136, 137, 138, 142, 147, 150, 152, 157, 160, 163, 165, 166, 169, 172, 175, 180, 188], "get_lin": 63, "getctag": 187, "getenv": [60, 65, 88, 133], "getpath": [136, 149], "gguf": [5, 12], "ghcr": [96, 132, 164], "gib": 26, "gid": 157, "gidnumb": [82, 154], "gif": [60, 98, 129, 174, 175], "giphi": [174, 175], "git": [7, 8, 136], "github": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 29, 56, 59, 60, 63, 81, 93, 119, 126, 129, 132, 133, 136, 145, 163, 165, 174, 175, 180, 183, 186], "githubusercont": 126, "gitlab": [174, 175], "give": [1, 2, 15, 31, 32, 40, 45, 56, 61, 70, 73, 81, 88, 103, 107, 108, 110, 124, 131, 133, 137, 147, 155, 156, 186], "given": [2, 29, 40, 51, 57, 58, 60, 63, 64, 66, 80, 81, 82, 96, 101, 105, 118, 126, 133, 138, 152, 153, 156, 157, 159, 160, 180], "givennam": [82, 154], "glanc": 132, "global": [32, 53, 60, 65, 67, 81, 88, 96, 112, 116, 117, 119, 129, 150, 153, 157, 175], "gmail": 116, "gmbh": [12, 16, 72, 102, 119, 126, 133, 138, 186], "gmp": [125, 130], "gnu": [6, 22], "go": [2, 3, 6, 16, 28, 40, 41, 43, 54, 56, 58, 60, 61, 64, 69, 80, 81, 92, 95, 96, 97, 108, 112, 123, 125, 132, 136, 142, 143, 147, 166, 186, 188], "goal": [28, 77, 81, 92, 133], "goe": [14, 85, 96, 144], "gold": [7, 10], "gone": [85, 88, 138], "good": [1, 2, 4, 5, 20, 56, 59, 63, 81, 126, 132, 133, 142, 148, 186], "googl": [2, 15, 60, 72, 80, 88, 134, 174], "got": [2, 18, 102, 186], "govern": 77, "gpg": [88, 123, 125, 127, 167], "gpt": [1, 175], "gpu": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 95, 96, 97, 99], "grab": 123, "grace": 81, "gracefulli": 128, "gradual": 48, "grain": [131, 160, 188], "granit": 15, "grant": [22, 53, 54, 74, 81, 88, 111, 118, 123, 125, 133, 156], "graph": [15, 60], "graphic": [1, 15, 47, 92, 95, 121, 133], "great": 123, "greater": [60, 88], "greatli": [3, 133, 134], "green": [5, 15, 40, 41, 81, 88, 89, 160], "grep": [3, 15, 20, 56, 59, 99, 130, 132, 133, 187], "groceri": 2, "groqcloud": [0, 15], "group": [2, 6, 16, 31, 33, 34, 36, 38, 43, 46, 54, 56, 59, 60, 64, 67, 74, 80, 82, 83, 87, 88, 110, 111, 113, 118, 133, 149, 150, 151, 153, 156, 160, 172, 187], "group1": 76, "group2": 76, "group_admin": 53, "group_everyon": 88, "groupfold": [28, 48, 102, 153], "groupid": [75, 76, 81, 157], "groupofnam": 154, "groupwar": [111, 112, 113, 116, 138], "grow": [88, 96, 119, 132], "growth": [53, 132], "gt": 187, "gte": 187, "guacamol": 2, "guarante": [0, 1, 5, 12, 14, 45, 49, 59, 60, 77, 107, 187], "guard": 132, "guess": 58, "guest": [16, 88], "gui": [3, 32, 66, 92, 132], "guid": [23, 28, 60, 63, 92, 95, 116, 119, 123, 125, 126, 130, 132, 133, 146, 152, 156, 163, 165, 169, 170, 177, 178, 183], "guidanc": [28, 88, 109, 110, 111, 119, 127, 128, 130, 132, 133], "guidelin": 129, "guooq": 157, "guzzl": 60, "gz": [60, 118], "gzip": [118, 129], "gzip_comp_level": 129, "gzip_min_length": 129, "gzip_proxi": 129, "gzip_typ": 129, "gzip_vari": 129, "h": [17, 22, 56, 60, 67, 75, 76, 77, 82, 96, 126, 133, 140, 146, 150], "h2non": 60, "ha": [3, 5, 7, 9, 10, 12, 14, 15, 16, 19, 26, 28, 29, 32, 38, 40, 41, 43, 47, 48, 51, 53, 54, 56, 57, 58, 60, 63, 64, 66, 67, 68, 70, 77, 80, 81, 85, 88, 93, 95, 96, 97, 101, 106, 110, 111, 112, 114, 116, 117, 118, 120, 123, 126, 128, 131, 132, 133, 135, 137, 138, 143, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 163, 165, 166, 170, 178, 183, 185, 186, 187, 188], "hackeron": [12, 28], "had": [29, 53, 60, 92, 178, 180, 183], "half": 32, "hallucin": [5, 8], "halt": 60, "hamm": 83, "hand": [102, 186], "handl": [1, 2, 8, 20, 29, 40, 47, 58, 60, 64, 65, 67, 69, 79, 88, 92, 93, 94, 96, 108, 110, 112, 116, 126, 129, 130, 132, 138, 151, 153, 171, 172, 187], "handle_all_url": 55, "handler": [60, 63, 88, 160], "hanson": 154, "hansson": 133, "happen": [25, 28, 40, 43, 48, 58, 60, 80, 81, 82, 101, 112, 116, 129, 137, 138, 143, 147, 166, 187, 188], "happi": [14, 31, 48], "haproxi": [88, 95, 96, 129], "haproxy_host": 96, "haproxy_password": [96, 97], "haproxypass": 96, "hard": [26, 43, 64, 126], "hardcod": [126, 129], "harden": [60, 88, 127, 128, 130], "harder": 58, "hardest": 56, "hardwar": [1, 3, 4, 13, 15, 28, 88, 95, 99, 132, 133, 143], "harp": [88, 97, 99, 100], "harp_docker_socket_port": 97, "harp_exapp_direct": 97, "harp_frp_address": 97, "harp_proxy_dock": 97, "harp_proxy_host": 97, "harp_shared_kei": 97, "has_internet_connect": 88, "hash": [29, 65, 81, 82, 86, 88, 110, 130, 137, 187, 188], "hash_equ": 29, "hash_hmac": 29, "hashing_default_password": 88, "hashingcost": 88, "hashingmemorycost": 88, "hashingthread": 88, "hashingtimecost": 88, "hashtag": 175, "hasmemberoffiltersupport": 82, "hasn": [60, 66], "haspagedresultsupport": 82, "hat": [59, 133, 134], "hauptbahnhof": 2, "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 22, 25, 26, 28, 29, 30, 32, 33, 34, 38, 40, 41, 43, 47, 48, 50, 51, 54, 56, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 77, 78, 80, 81, 83, 85, 88, 91, 92, 93, 95, 96, 97, 99, 101, 103, 105, 107, 108, 112, 113, 114, 116, 118, 123, 124, 126, 128, 129, 131, 132, 133, 134, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 166, 167, 170, 171, 172, 174, 176, 180, 182, 186, 187, 188], "haveibeenpwnd": 86, "hbegin": 29, "hdr": 60, "head": [58, 68, 70, 123], "header": [2, 17, 26, 29, 30, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 82, 87, 88, 96, 127, 128, 129, 132, 133, 138, 156, 160, 164, 180, 183, 188], "headless": 121, "headlin": [1, 77, 81], "headlinescop": 77, "headroom": 132, "health": [99, 163, 164, 165], "healthcheck": [163, 164, 165], "healthi": [99, 138], "heartbeat": [60, 88], "heartbeat_count": 99, "heavi": [0, 1, 19, 45, 59, 96, 130], "heavili": [58, 60], "heic": [60, 132, 133], "heif": [60, 133], "height": 60, "held": [88, 111], "hello": [1, 63], "helm": 133, "help": [2, 3, 4, 8, 14, 28, 29, 58, 59, 60, 63, 67, 81, 88, 93, 101, 102, 106, 109, 110, 112, 113, 118, 119, 123, 131, 132, 133, 136, 138, 142, 146, 147, 148, 150, 152, 156, 160, 186], "helper": [15, 106, 128], "henc": [80, 150], "hend": 29, "her": 2, "here": [1, 2, 3, 4, 5, 6, 11, 12, 14, 16, 18, 20, 22, 28, 31, 43, 56, 60, 63, 67, 68, 69, 81, 91, 95, 96, 116, 118, 126, 128, 129, 132, 133, 148, 150, 174, 188], "hetzner": 12, "heurist": [56, 70], "hex": 151, "hexadecim": 29, "hf_model_path": 11, "hidden": [43, 77, 81, 88, 93, 112, 118, 126, 129, 138, 160], "hide": [38, 60, 77, 88, 106, 117, 118, 129, 160], "hide_absence_set": 117, "hide_disabled_user_shar": 85, "hide_login_form": 88, "hideeventexport": 112, "hierarch": 88, "hierarchi": 40, "high": [4, 5, 6, 7, 11, 12, 15, 22, 26, 28, 38, 53, 56, 57, 111, 116, 126, 132, 133, 134, 135, 161, 168, 182, 186], "highcontrast": 60, "higher": [2, 5, 6, 7, 9, 11, 26, 45, 60, 63, 110, 113, 144, 186], "highest": [2, 81, 132, 148, 186], "highli": [58, 60, 70, 81, 118, 119, 126, 128, 130, 132, 137, 159, 169, 186], "highlight": [15, 133, 142, 148, 186], "hike": 2, "him": 2, "hinder": 57, "hindi": [4, 5, 10], "hint": [60, 70, 76, 128, 129, 148], "hintexcept": 150, "histor": 28, "histori": [14, 15, 40, 58, 86, 88, 111, 153], "hit": [1, 56, 58, 81], "hlocalhost": 22, "hmac": 29, "hog": [5, 7, 9, 10], "hold": [26, 29, 32, 48, 81, 95, 101, 107, 110, 129, 187], "holidai": [112, 151], "home": [28, 40, 63, 81, 83, 88, 92, 93, 133, 138, 153, 156, 172], "homefoldernamingrul": 82, "homepag": 2, "hood": [5, 7, 10, 186], "hook": 150, "hope": 25, "hopefulli": 147, "hord": 118, "horde_": 118, "horde_imap": 118, "horizon": 160, "hors": 56, "host": [0, 1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 15, 22, 24, 31, 37, 38, 45, 48, 55, 56, 59, 60, 63, 69, 70, 81, 82, 88, 94, 95, 97, 112, 116, 118, 123, 124, 126, 128, 129, 133, 138, 142, 143, 147, 149, 156, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 171, 172, 180, 187], "host2": 96, "host3": 96, "hoster": [22, 60, 116], "hostnam": [20, 22, 31, 48, 56, 60, 63, 69, 81, 95, 116, 128, 129, 133, 143, 145, 156, 172], "hour": [2, 5, 9, 19, 43, 44, 53, 56, 57, 58, 60, 81, 93, 107, 108, 110, 112, 113, 114, 116, 142, 143, 148, 155, 188], "hourli": 53, "hous": [31, 142], "housekeep": [57, 142], "hover": [81, 85, 174], "how": [2, 6, 7, 10, 12, 15, 18, 26, 28, 31, 32, 33, 35, 38, 41, 48, 53, 56, 60, 65, 66, 67, 70, 81, 82, 85, 88, 92, 95, 107, 111, 112, 113, 115, 116, 118, 119, 123, 126, 128, 129, 130, 132, 133, 137, 138, 141, 143, 147, 156, 157, 166, 173, 177, 178, 182, 183, 184, 186], "howev": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 22, 29, 30, 56, 57, 58, 59, 60, 71, 79, 80, 96, 112, 117, 126, 132, 133, 134, 144, 145, 148, 169, 171, 180], "hp_frp_address": 96, "hp_shared_kei": [95, 96], "hp_trusted_proxy_ip": 96, "href": 187, "hst": [70, 124, 126, 129], "hstspreload": 129, "htaccess": [26, 88, 123, 126, 128, 129, 131, 138, 180, 181, 183], "htaccesstest": 129, "htdoc": 120, "html": [60, 63, 67, 93, 123, 129, 130, 131, 134, 138, 147, 150, 159, 166, 167, 169, 170, 171, 183], "htop": 132, "http": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17, 20, 26, 28, 31, 34, 35, 36, 39, 40, 41, 45, 48, 52, 55, 56, 57, 60, 63, 64, 65, 67, 68, 69, 72, 75, 76, 77, 79, 81, 82, 83, 87, 88, 92, 93, 94, 95, 96, 97, 99, 106, 111, 112, 116, 118, 121, 123, 124, 125, 127, 128, 130, 131, 134, 136, 137, 138, 140, 142, 144, 145, 147, 148, 150, 155, 156, 159, 160, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 180, 183, 187, 188], "http2": 129, "http_author": 133, "http_client_add_user_agent_url": 88, "http_forwarded_for": 60, "http_host": 129, "http_proxi": 60, "http_user_ag": 129, "http_x_forward": 60, "http_x_forwarded_for": [60, 69], "httpd": [88, 93, 101, 102, 123, 127, 133], "httpd_can_connect_ldap": 131, "httpd_can_network_connect": [123, 131], "httpd_can_network_connect_db": 131, "httpd_can_network_memcach": 131, "httpd_can_sendmail": 131, "httpd_sys_rw_content_t": [123, 131], "httpd_unifi": 131, "httpd_use_cif": 131, "httpd_use_fusef": 131, "httpd_use_gpg": 131, "httpd_use_nf": 131, "httpdavmodul": 138, "https_proxi": 60, "hub": [0, 2, 15, 170, 188], "hug": 7, "huge": [19, 60, 132], "huggingfac": [5, 11], "human": [6, 11, 81, 153, 188], "hundr": 138, "hurri": 63, "hy000": 138, "hybrid": 119, "hyperlink": 43, "hypervisor": 133, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 71, 72, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 173, 174, 175, 178, 179, 180, 183, 184, 185, 186, 187], "i686": 22, "iaccountmanag": [60, 77], "iana": [60, 117], "ibm": [1, 8, 12, 13, 15, 88], "ic": [111, 112, 151, 187], "ical": 151, "icalendar": 151, "icap": [65, 88], "icmp_req": [22, 63], "ico": [129, 156], "icon": [40, 41, 47, 60, 64, 65, 85, 88, 92, 129, 156], "id": [2, 3, 8, 13, 16, 17, 28, 31, 38, 40, 43, 53, 59, 60, 63, 67, 72, 76, 81, 82, 84, 85, 88, 92, 96, 97, 106, 114, 116, 126, 150, 151, 153, 154, 155, 157, 160, 166, 172, 187, 188], "id1125420102": [60, 72], "idea": [2, 56, 119, 142, 148], "ideal": [1, 133, 138, 145, 187], "idelegatedset": 156, "ident": [36, 48, 60, 72, 74, 81, 88, 133, 143], "identif": 81, "identifi": [21, 22, 29, 44, 48, 60, 61, 67, 68, 81, 82, 88, 99, 106, 110, 114, 117, 118, 125, 126, 132, 137, 138, 143, 151, 153, 156, 157, 159, 188], "idl": 132, "ie": [1, 3, 123], "ie11": 26, "ie6": 26, "ie8": 26, "ie9": 26, "iemailtempl": 63, "ietf": 187, "ifmodul": [123, 126, 133, 138], "ifram": [60, 64, 126], "igbinari": 60, "ignor": [3, 20, 28, 31, 43, 48, 49, 59, 60, 63, 85, 93, 114, 130, 136, 154, 159], "ignore_notic": 22, "ignorefrontcontrol": [88, 133], "illustr": [47, 60, 133], "im_end": 5, "im_start": 5, "imag": [2, 8, 12, 13, 28, 33, 51, 56, 60, 69, 72, 88, 129, 130, 132, 133, 153, 156, 157, 162, 166, 169, 172, 174, 175, 181, 182, 183, 184], "imagegd": 60, "imagemagick": 47, "imagick": [72, 88, 125, 130, 132], "imagin": 43, "imaginari": [60, 88, 132, 133], "imaginarypdf": [60, 181], "imap": [63, 88, 130], "imap4": 63, "immedi": [40, 53, 56, 60, 63, 85, 106, 107, 151, 153, 156, 157], "immut": [81, 129], "impact": [28, 40, 48, 58, 60, 63, 96, 103, 132, 186], "imperson": 126, "implement": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 28, 29, 32, 48, 54, 56, 60, 63, 68, 80, 81, 88, 96, 112, 118, 133, 134, 143, 150, 156, 174], "impli": 77, "implic": [60, 77, 88], "import": [32, 34, 40, 57, 58, 60, 64, 72, 88, 112, 113, 116, 123, 125, 128, 129, 130, 132, 133, 135, 138, 143, 149, 177, 187, 188], "importantli": [119, 133], "impos": 15, "impract": 107, "imprint": 88, "imprinturl": [72, 156], "improv": [2, 3, 13, 26, 38, 45, 59, 60, 70, 81, 88, 95, 119, 123, 129, 130, 132, 134, 148, 169], "in_arrai": 96, "inaccess": [23, 28, 48, 152], "inaccur": 8, "inact": 60, "inadvert": [58, 132], "inbox": [2, 15, 118], "inc": 72, "incid": 67, "inclin": 186, "includ": [1, 4, 7, 11, 12, 16, 20, 29, 31, 38, 40, 43, 47, 54, 56, 58, 60, 63, 68, 72, 77, 81, 85, 92, 93, 97, 99, 108, 110, 114, 116, 117, 118, 119, 126, 128, 129, 130, 132, 133, 135, 136, 138, 140, 147, 148, 151, 153, 156, 157, 159, 161, 164, 168, 169, 181, 182, 183, 184, 186, 187, 188], "includedir": 22, "includesubdomain": [126, 129], "inclus": 151, "incom": [12, 60, 61, 69, 108, 153], "incoming_server2server_share_en": 149, "incompat": [60, 132, 144], "incomplet": [151, 153], "inconsist": [38, 140, 151, 153, 156], "inconvert": [21, 88], "incorpor": [48, 60], "incorrect": [60, 79, 92, 93], "incorrectli": [60, 69, 118], "increas": [18, 26, 32, 38, 41, 59, 60, 63, 67, 99, 116, 124, 126, 129, 132, 133, 134, 138, 150, 160, 182], "increment": [19, 152], "indefinit": [58, 107, 110, 156], "independ": [3, 29, 67, 77, 88, 93, 101, 110, 119, 147], "index": [2, 28, 29, 40, 41, 60, 67, 68, 69, 88, 96, 101, 124, 126, 129, 133, 137, 138, 147, 149, 163, 169], "indexerjob": 3, "indi": 129, "indic": [16, 25, 40, 41, 60, 63, 81, 82, 88, 99, 106, 116, 128, 131, 138, 144, 148, 160, 186, 187], "indirectli": 102, "individu": [26, 28, 32, 40, 54, 58, 60, 92, 93, 111, 118, 119, 126, 132, 150, 152, 153, 156], "industri": [12, 143], "inetorgperson": [81, 82, 154], "inevit": [126, 134], "infect": 56, "infer": [5, 6, 11, 60], "inferenc": [6, 15], "influenc": [8, 32, 92, 112, 113], "info": [8, 43, 60, 67, 70, 77, 81, 88, 93, 98, 108, 111, 129, 138, 150], "inform": [0, 1, 3, 4, 5, 7, 8, 12, 14, 16, 17, 22, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 45, 48, 52, 53, 58, 59, 60, 63, 64, 66, 67, 69, 70, 72, 76, 77, 81, 85, 88, 91, 92, 93, 98, 101, 106, 108, 111, 112, 113, 116, 117, 118, 119, 120, 121, 124, 126, 129, 130, 132, 133, 134, 137, 142, 145, 147, 148, 150, 153, 154, 156, 157, 174, 178, 180, 182, 183, 184, 188], "infrastructur": [12, 60, 96, 138, 156, 162], "inher": [57, 106], "ini": [22, 26, 33, 59, 60, 71, 88, 123, 124, 126, 127, 129, 131, 132, 133, 138, 150, 182], "init": [56, 88], "initdb": 124, "initi": [13, 21, 27, 28, 29, 49, 60, 77, 85, 88, 90, 92, 96, 98, 99, 102, 110, 120, 153, 186, 188], "initialcontentimportjob": 3, "initialis": [124, 133, 145, 153], "inject": 60, "inlin": 15, "innodb": [23, 60, 134], "innodb_buffer_pool_inst": 22, "innodb_buffer_pool_s": 22, "innodb_file_format": [22, 60], "innodb_file_per_t": [22, 23, 60], "innodb_flush_log_at_trx_commit": 22, "innodb_large_prefix": [22, 60], "innodb_log_buffer_s": 22, "innodb_max_dirty_pages_pct": 22, "inotifi": 153, "input": [3, 5, 7, 12, 14, 17, 32, 43, 60, 75, 81, 149, 151, 153, 156, 175, 188], "insecur": [63, 88, 134, 160], "insensit": [38, 50, 60, 101], "insert": [15, 60, 88, 129, 151, 175], "insid": [3, 5, 7, 8, 15, 26, 38, 40, 45, 57, 60, 64, 66, 67, 69, 81, 93, 96, 102, 112, 124, 132, 147, 152, 153, 156, 160, 187], "insight": [1, 12, 13, 88], "inspect": [4, 56, 88, 153, 155, 156], "inspector": 70, "instal": [13, 15, 16, 17, 18, 20, 22, 23, 26, 29, 30, 35, 38, 39, 40, 41, 45, 49, 54, 57, 59, 63, 64, 65, 67, 70, 72, 80, 81, 84, 93, 94, 96, 97, 98, 99, 100, 101, 102, 105, 108, 112, 113, 116, 119, 120, 129, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 158, 159, 161, 168, 170, 171, 173, 175, 177, 178, 180, 185], "installdir": 92, "installed_vers": 149, "instanc": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16, 18, 19, 20, 22, 23, 28, 29, 43, 46, 47, 53, 57, 59, 60, 63, 67, 68, 69, 72, 77, 81, 84, 88, 92, 93, 95, 96, 107, 110, 111, 112, 113, 114, 116, 118, 119, 120, 123, 127, 128, 129, 132, 133, 134, 138, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 153, 156, 157, 159, 160, 169, 172, 182, 184, 186, 187, 188], "instance_id": [18, 106], "instanceid": [29, 88, 143, 147], "instancesecret": 29, "instanti": 60, "instantli": 60, "instead": [3, 5, 15, 18, 23, 26, 31, 32, 38, 47, 48, 51, 53, 57, 60, 63, 64, 66, 67, 70, 72, 76, 81, 82, 83, 92, 116, 118, 123, 126, 129, 133, 137, 138, 144, 145, 147, 148, 149, 151, 152, 153, 156, 160, 166, 178, 184], "instruct": [1, 2, 3, 5, 12, 20, 22, 56, 58, 64, 70, 74, 81, 87, 88, 118, 125, 126, 130, 132, 133, 135, 142, 144, 148, 188], "insuffici": [76, 93], "int": [26, 60, 73, 75, 76, 82, 96, 118], "int8_float32": 11, "intact": 111, "integ": [1, 19, 48, 57, 60, 96, 112, 113, 149, 151, 187], "integr": [1, 2, 3, 4, 8, 12, 13, 15, 43, 56, 58, 60, 65, 74, 77, 82, 88, 92, 114, 116, 117, 119, 130, 133, 138, 139, 147, 150, 166, 174, 175, 181, 182, 184, 187, 188], "integration_deepl": 1, "integration_openai": [0, 1, 2, 5, 8, 116], "integration_repl": [0, 1, 15], "integration_watsonx": [0, 1], "integritycheck": 137, "intel": [7, 10, 132], "intellig": [0, 1, 12, 15, 88, 95], "intend": [60, 77, 80, 81, 92, 126, 152, 156], "intens": [18, 28, 57, 132], "intention": [60, 77, 92, 110, 118], "interact": [1, 2, 3, 12, 19, 20, 41, 56, 57, 59, 60, 77, 81, 88, 115, 147, 150, 152, 157, 165, 188], "intercept": 126, "interchang": [28, 63, 130], "interest": [106, 186], "interfac": [1, 2, 5, 7, 9, 10, 11, 15, 16, 22, 28, 41, 43, 48, 58, 60, 63, 70, 72, 78, 85, 88, 92, 93, 95, 96, 108, 112, 114, 115, 117, 118, 125, 126, 127, 133, 134, 138, 148, 150, 153, 156, 157, 160, 183, 188], "intermedi": [148, 160], "intern": [3, 12, 14, 28, 40, 41, 48, 57, 60, 69, 70, 74, 82, 85, 88, 96, 97, 101, 116, 129, 132, 133, 147, 152, 159, 160, 175, 187], "internal_defaultexpdai": 43, "interned_strings_buff": 124, "internet": [57, 60, 63, 126, 128, 133, 156, 184], "interoper": [13, 88], "interpret": [92, 95, 126], "interrupt": [28, 45, 57, 130], "interv": [38, 40, 56, 57, 60, 83, 88, 110, 112, 114, 132, 156, 186, 187], "intervent": [6, 56, 126, 187], "intl": [123, 125, 130], "introduc": [15, 50, 81, 95, 129, 184, 186], "introduct": [65, 88, 96, 123], "invalid": [17, 46, 58, 60, 64, 70, 75, 76, 81, 88, 92, 107, 126, 129, 132, 139, 153, 157, 180], "invalid_hash": 137, "invalidsignatur": 137, "invalidsignatureexcept": 137, "invert": 101, "investig": [60, 153, 156], "invis": [40, 88, 101, 104, 105, 157], "invit": [63, 88, 110, 114, 115, 178], "invite": 112, "invoc": [60, 126, 156, 180], "invok": [60, 92, 108, 147, 150, 180], "involv": [26, 106, 132, 134, 180], "io": [45, 60, 64, 72, 96, 101, 119, 129, 132, 133, 134, 138, 145, 164], "iono": [0, 12, 15], "iosclienturl": 72, "iot": [133, 145], "iotop": 132, "ip": [8, 22, 41, 56, 60, 63, 67, 69, 70, 81, 88, 95, 96, 97, 99, 101, 107, 110, 116, 127, 128, 129, 133, 143, 145, 156, 159, 164, 172], "ip_host2_dock": 96, "ipad": 69, "ipaddress": 129, "iphon": 69, "iptabl": [58, 126, 172], "ipv4": [58, 60, 69], "ipv6": [58, 60, 69], "ipv6_normalized_subnet_s": 88, "irrevers": 80, "is_arg": 129, "isanonym": 187, "isn": [23, 28, 60, 77, 81, 118, 133], "iso": [60, 66], "iso_639": 60, "isol": [59, 60, 65, 88, 107, 132, 133, 134, 147], "isset": 96, "issu": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 19, 28, 40, 50, 53, 58, 59, 60, 70, 81, 88, 99, 112, 113, 125, 126, 128, 129, 132, 134, 136, 137, 145, 147, 148, 150, 156, 157, 166, 172, 174, 175, 182, 183], "isvfsen": 92, "italian": [4, 5, 10], "item": [2, 3, 43, 46, 65, 83, 88, 102, 112, 115, 132, 142, 153, 156], "iter": [58, 60], "ithem": 60, "its": [0, 1, 2, 3, 8, 12, 14, 15, 20, 26, 29, 31, 37, 40, 41, 53, 55, 56, 60, 67, 70, 73, 77, 81, 82, 92, 93, 96, 111, 114, 116, 123, 125, 131, 132, 133, 137, 138, 142, 147, 151, 153, 155, 156, 157, 173, 180, 183], "itself": [5, 22, 32, 38, 40, 58, 60, 84, 92, 95, 96, 101, 117, 125, 133, 137, 138, 145, 147, 149, 150, 152, 165, 172, 180], "itun": [60, 72], "itunesappid": 72, "iv": 29, "j": [51, 60, 69, 88, 154, 163, 165, 166, 180], "jail": [88, 124], "jan": 63, "jane": 67, "januari": 67, "japanes": [4, 10], "javascript": [88, 126, 132, 138, 179, 180, 188], "jcal": 151, "jeffmatson": 69, "jeroboam": 154, "ji": 71, "jit": 88, "jit_buffer_s": 132, "jliy12356785jxnha2zciz9mx48ncecwdso95pq3a5habjy34zvhzixrpfpkwug7aohax5": 92, "job": [3, 6, 15, 38, 40, 41, 46, 53, 56, 60, 65, 81, 88, 107, 111, 114, 116, 127, 130, 138, 142, 144, 148, 150, 151, 153, 160, 187, 188], "joe": 187, "johnston": 83, "join": [2, 25], "joke": 2, "jone": 157, "journal": [60, 67], "journal_mod": 88, "journalctl": [15, 99, 187], "journald": [96, 99], "jp": 71, "jpeg": [60, 88, 132], "jpeg_qual": 47, "jpegphoto": 81, "jpg": [129, 156], "json": [2, 4, 5, 8, 11, 14, 16, 51, 60, 82, 83, 88, 96, 98, 99, 101, 112, 118, 123, 126, 129, 137, 149, 150, 151, 152, 153, 155, 156, 157, 160, 187, 188], "json_pretti": [14, 150, 151, 152, 153, 155, 156, 157], "jump": [92, 142], "just": [22, 27, 53, 57, 63, 64, 81, 85, 92, 101, 112, 118, 124, 126, 128, 129, 132, 133, 138, 142, 143, 147, 166, 186, 187], "jwfcftvztglwtje": 41, "jwk": 155, "jwt": [160, 164], "jwt_enabl": 164, "jwt_header": 164, "jwt_secret": [160, 164], "k": 76, "k7mdeng": 153, "karlsruh": 14, "kazakh": 4, "kb": [60, 153], "keep": [3, 15, 18, 28, 41, 44, 49, 50, 53, 57, 58, 59, 60, 67, 69, 70, 77, 80, 81, 88, 92, 93, 96, 99, 101, 107, 109, 112, 113, 116, 118, 120, 123, 124, 125, 132, 133, 134, 138, 142, 143, 147, 148, 149, 157, 160, 177, 186, 187], "keepal": [60, 138], "keepalive_timeout": 129, "keepalivetimeout": 138, "kei": [2, 3, 11, 16, 19, 22, 25, 31, 36, 37, 40, 41, 45, 46, 48, 60, 65, 67, 74, 75, 76, 77, 81, 85, 88, 95, 96, 97, 107, 116, 124, 125, 126, 129, 133, 135, 138, 144, 148, 149, 150, 153, 156, 160, 163, 165, 175, 187], "kept": [49, 59, 60, 107, 132, 147, 155], "keyboard": 88, "keydb": 59, "keyfil": 96, "keyformat": 29, "keypair": 32, "keyr": 167, "keyston": [36, 48, 60], "keyvalu": 48, "kfrh9": 157, "khtml": 67, "kib": 60, "kick": [58, 60], "kid": 155, "kill": 132, "killmod": 57, "kind": [1, 14, 69, 96, 126, 188], "kink": 56, "kitchen": 2, "know": [29, 31, 40, 60, 67, 81, 84, 112, 118, 138, 154, 156, 166], "knowledg": [11, 138], "knowledgebas": 88, "knowledgebaseen": 88, "known": [13, 20, 28, 38, 48, 55, 56, 58, 60, 63, 65, 69, 81, 88, 101, 114, 118, 124, 129, 134, 138, 149, 154, 157, 160, 173], "kokoro": 10, "korean": 4, "kovh8": 157, "krita": [60, 132], "kubectl": 3, "kubelet": 96, "kubernet": 88, "kunz": 83, "kvm": 133, "l": [22, 57, 59, 69, 93, 124, 138, 156], "lab": 126, "label": [2, 15, 41, 69, 81, 97, 131, 138, 157], "labeleduri": 81, "lack": [128, 129], "lamp": 133, "lan": [22, 41, 63], "land": 18, "landmark": 6, "landscap": 6, "lang": [60, 157], "languag": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 27, 60, 64, 65, 76, 88, 95, 116, 119, 130, 134, 188], "laptop": 2, "larg": [2, 3, 7, 8, 9, 13, 14, 15, 22, 28, 38, 41, 46, 56, 60, 67, 88, 93, 112, 116, 118, 119, 129, 132, 133, 138, 148, 151, 156, 157], "larger": [3, 11, 12, 26, 28, 38, 56, 60, 70, 85, 132, 157], "largest": [95, 156], "last": [1, 2, 14, 29, 57, 58, 60, 83, 85, 99, 105, 110, 111, 114, 128, 144, 145, 147, 151, 153, 154, 156, 157, 186], "last_run": 156, "last_seen": 157, "lastact": 157, "lastjpegphotolookup": 82, "lastli": [31, 48], "lastlogin": 157, "lastmodifi": 187, "lastprofilechecksum": 81, "lastseen": 88, "lastupd": [14, 187], "latenc": 132, "later": [17, 20, 43, 60, 83, 92, 102, 116, 118, 133, 134, 138, 144, 159, 164, 172], "latest": [1, 2, 4, 12, 26, 44, 48, 60, 61, 77, 91, 119, 123, 125, 132, 133, 134, 142, 145, 148, 163, 164, 165, 170, 177, 183, 186], "latitud": 126, "latter": 59, "launch": [2, 55, 56, 59, 88, 93, 95, 97, 120, 142, 187], "law": 107, "lawyer": 12, "lax": 106, "layer": [28, 58, 60, 77, 80, 132, 137], "layla": [151, 152, 153, 156, 157], "layout": [60, 61, 148, 156, 161], "lazi": [60, 149], "ld": [81, 129], "ldap": [40, 46, 65, 74, 79, 85, 88, 111, 123, 127, 130, 132, 133, 143, 150, 156, 157], "ldap_group_map": 81, "ldap_log_fil": 88, "ldap_matching_rule_in_chain": 81, "ldap_opt_network_timeout": 82, "ldap_user_map": 81, "ldapadmingroup": 81, "ldapagentnam": 82, "ldapagentpassword": 82, "ldapattributesforgroupsearch": 82, "ldapattributesforusersearch": [82, 154], "ldapbackuphost": 82, "ldapbackupport": 82, "ldapbas": 82, "ldapbasegroup": 82, "ldapbaseus": 82, "ldapcachettl": [81, 82], "ldapconfigurationact": 82, "ldapconnectiontimeout": 82, "ldapdefaultppolicydn": 82, "ldapdynamicgroupmemberurl": 82, "ldapemailattribut": [82, 154], "ldapexperiencedadmin": 82, "ldapexpertusernameattr": [82, 154], "ldapexpertuuidgroupattr": 82, "ldapexpertuuiduserattr": 82, "ldapgidnumb": 82, "ldapgroupdisplaynam": 82, "ldapgroupfilt": [82, 154], "ldapgroupfiltergroup": 82, "ldapgroupfiltermod": 82, "ldapgroupfilterobjectclass": 82, "ldapgroupmemberassocattr": [82, 154], "ldaphost": 82, "ldapignorenamingrul": 82, "ldaploginfilt": 82, "ldaploginfilterattribut": 82, "ldaploginfilteremail": 82, "ldaploginfiltermod": 82, "ldaploginfilterusernam": 82, "ldapnestedgroup": 82, "ldapoverridemainserv": 82, "ldappagings": 82, "ldapport": 82, "ldapquotaattribut": 82, "ldapquotadefault": 82, "ldaptl": 82, "ldapuseravatarrul": [81, 82], "ldapusercleanupinterv": [83, 88], "ldapuserdisplaynam": [82, 154], "ldapuserdisplayname2": 82, "ldapuserfilt": 82, "ldapuserfiltergroup": 82, "ldapuserfiltermod": 82, "ldapuserfilterobjectclass": 82, "ldapuuidgroupattribut": 82, "ldapuuiduserattribut": [82, 154], "lead": [33, 38, 52, 53, 57, 58, 59, 60, 70, 93, 112, 113, 126, 129, 132, 133, 138], "leak": [53, 60, 129, 132, 138, 187], "leakag": 126, "leaki": 132, "leap": 134, "learn": [5, 6, 8, 11, 33, 35, 45, 47, 51, 59, 78, 83, 85, 126, 137, 148, 149], "least": [2, 3, 4, 5, 6, 7, 9, 11, 12, 16, 22, 26, 44, 49, 57, 60, 70, 77, 80, 81, 107, 114, 128, 130, 132, 134, 144, 148, 154, 155, 157, 159, 180, 186, 187], "leav": [2, 27, 28, 31, 33, 39, 58, 60, 69, 76, 81, 85, 116, 132, 143, 151, 156, 160], "lectur": 156, "leela": 154, "left": [40, 48, 57, 60, 63, 81, 85, 111, 132, 137, 147, 149, 153], "leftov": 81, "legaci": [30, 31, 32, 48, 60, 88, 150, 153, 156], "legacy_auth": 48, "legacy_format_support": 30, "legal": [11, 13, 72, 88, 106, 107, 109, 111], "legibl": 9, "legitim": [28, 58, 106, 107, 110], "length": [8, 32, 48, 56, 60, 86, 88, 129], "less": [6, 7, 10, 11, 12, 48, 56, 58, 60, 67, 126, 130, 132, 134, 186], "let": [15, 20, 40, 58, 63, 72, 85, 92, 96, 108, 129, 133, 143, 147, 153, 156, 160, 166], "letsencrypt": 129, "letter": [38, 85, 188], "level": [4, 15, 24, 25, 28, 40, 43, 45, 56, 58, 60, 63, 65, 77, 85, 88, 93, 110, 126, 127, 134, 138, 147, 150, 153, 156, 157, 187], "leverag": 8, "lf": 81, "lib": [6, 16, 22, 56, 60, 63, 129, 164], "libapache2": [125, 133], "libargon2": 130, "liber": 93, "libmagickcor": 72, "librari": [11, 47, 60, 63, 87, 93, 126, 132, 178], "libreoffic": [47, 60, 88, 130], "libsmbclient": 38, "libxml": 130, "libxml2": 130, "licenc": 17, "licens": [15, 16, 126], "life": [88, 123, 144, 148], "lifetim": [60, 81, 88, 106, 110, 155], "lift": 96, "light": [41, 60, 81, 160], "lighter": 186, "lighttpd": 138, "lightweight": 60, "like": [1, 2, 3, 4, 5, 6, 7, 8, 12, 14, 15, 16, 20, 22, 23, 27, 28, 31, 32, 38, 41, 45, 48, 50, 53, 54, 57, 59, 60, 61, 64, 67, 80, 81, 83, 86, 87, 92, 93, 95, 96, 102, 112, 113, 116, 117, 118, 121, 123, 126, 128, 129, 132, 133, 138, 140, 142, 144, 145, 147, 148, 149, 150, 154, 156, 172, 173, 174, 175, 180, 188], "likelihood": 60, "limit": [0, 1, 12, 13, 15, 18, 26, 38, 43, 44, 46, 47, 49, 53, 54, 57, 59, 60, 63, 65, 67, 75, 76, 81, 88, 93, 95, 96, 107, 108, 115, 118, 123, 124, 128, 132, 133, 134, 138, 143, 147, 151, 152, 153, 154, 156, 157, 180, 183, 186], "limitrequestbodi": 26, "line": [20, 22, 26, 30, 57, 59, 60, 63, 67, 69, 81, 88, 92, 96, 111, 112, 116, 118, 125, 127, 129, 130, 132, 133, 138, 141, 142, 148, 150, 153, 163, 183, 187], "liner": 151, "link": [2, 16, 18, 46, 65, 72, 76, 78, 79, 85, 88, 101, 108, 116, 126, 128, 133, 136, 137, 138, 147, 153, 156, 157, 160, 173, 175, 188], "link_defaultexpdai": 43, "linux": [22, 28, 34, 38, 50, 51, 56, 59, 67, 83, 88, 91, 92, 93, 96, 119, 121, 123, 125, 126, 127, 128, 129, 130, 131, 134, 138, 140, 142, 148, 150, 157, 162, 169, 185], "list": [1, 2, 3, 4, 11, 13, 15, 16, 18, 19, 20, 23, 28, 38, 40, 41, 43, 47, 54, 58, 59, 60, 61, 63, 66, 67, 69, 71, 75, 86, 87, 88, 92, 94, 95, 100, 101, 106, 108, 110, 112, 118, 123, 126, 128, 129, 130, 133, 134, 137, 138, 142, 148, 149, 150, 154, 159, 163, 166, 167, 172, 177, 179, 180, 185, 186, 188], "listen": [38, 40, 45, 56, 59, 88, 96, 99, 114, 124, 129, 150, 153, 166, 171, 188], "listexapp": 98, "liter": 129, "literaci": 12, "littl": [4, 15, 70, 85, 96], "live": [0, 2, 7, 13, 60, 81, 88, 106, 107, 110, 119, 132, 155, 156, 160, 163], "live_transcript": [13, 15, 88], "ll": [2, 16, 22, 28, 38, 43, 60, 63, 81, 85, 112, 116, 129, 133, 142, 154, 166, 186], "llama": [1, 5, 12, 15], "llama3": 5, "llm": [2, 5, 8, 12, 14, 15, 88, 115], "llm2": [1, 2, 8, 13, 15, 88], "ln": [16, 124], "load": [5, 7, 13, 22, 26, 28, 38, 40, 45, 52, 56, 59, 63, 65, 69, 80, 88, 92, 96, 106, 126, 127, 128, 130, 138, 149, 150, 160, 185], "loadbalanc": 26, "loader": 11, "loader_config": 5, "local": [1, 3, 8, 12, 13, 15, 16, 18, 22, 26, 28, 31, 33, 38, 39, 40, 41, 43, 59, 63, 65, 69, 72, 73, 74, 81, 85, 88, 92, 93, 95, 97, 98, 101, 110, 113, 114, 119, 123, 124, 126, 129, 132, 133, 136, 138, 143, 145, 147, 149, 150, 153, 160, 166, 180], "local_cert": [59, 60], "local_dock": 97, "local_pk": [59, 60], "local_summary_bot": 8, "localai": [0, 1, 3, 4, 8, 15], "localdir": 34, "localdirpath": 92, "localdomain": [133, 145], "localhost": [22, 45, 52, 59, 60, 63, 69, 96, 97, 99, 116, 120, 123, 124, 125, 128, 133, 138, 145, 149, 156, 163, 164, 165, 166, 184], "localitynam": 81, "localrootmountprovid": 153, "localsocket": 56, "localstorag": 88, "localtim": 8, "locat": [2, 3, 8, 16, 23, 26, 28, 57, 58, 65, 69, 81, 85, 88, 91, 92, 93, 95, 96, 101, 102, 110, 124, 126, 127, 129, 133, 135, 138, 140, 142, 143, 147, 148, 151, 153, 170, 174, 175], "lock": [32, 46, 59, 65, 67, 88, 101, 123, 127, 129, 130, 138, 140, 143, 148, 156], "lock_retri": 59, "lock_wait_tim": 59, "locking_en": 59, "lockout": [60, 86], "log": [12, 13, 14, 15, 22, 28, 32, 36, 40, 41, 53, 54, 56, 58, 63, 65, 68, 69, 77, 80, 85, 88, 92, 100, 101, 106, 108, 111, 112, 113, 116, 123, 126, 127, 128, 130, 131, 133, 134, 135, 140, 143, 145, 147, 148, 150, 153, 154, 157, 164, 172, 183, 187], "log_driv": 96, "log_error": 138, "log_not_found": 129, "log_notic": 22, "log_queri": [67, 88], "log_request_id": 88, "log_rotate_s": [67, 88], "log_secret": [60, 67], "log_size_max": 96, "log_typ": [67, 88], "log_type_audit": [67, 88], "logdateformat": [67, 88], "logdebug": 93, "logdir": 93, "logexpir": 93, "logfil": [3, 26, 67, 88, 93, 124, 129, 135, 143, 156], "logfile_audit": [67, 88, 135], "logfilemod": [67, 88, 126], "logic": [53, 67, 80, 98, 99, 146, 187], "login": [15, 22, 27, 28, 32, 37, 38, 57, 60, 63, 64, 65, 67, 72, 73, 76, 78, 79, 80, 83, 84, 85, 86, 88, 92, 106, 107, 108, 110, 111, 125, 126, 138, 140, 141, 142, 148, 151, 152, 156, 157], "login_flow_v2": 88, "login_form_autocomplet": 88, "login_form_timeout": 88, "loginfailexit": 96, "logist": 119, "loglevel": [58, 63, 67, 81, 88, 118, 126, 132], "loglevel_dirty_database_queri": [67, 88], "loglevel_frontend": [67, 88], "logo": [60, 72, 156], "logo_url": 88, "logohead": [72, 156], "logon": 38, "logout": 60, "logpath": 126, "logread": 67, "logrot": 107, "logtimezon": [67, 88, 149], "logwindow": 93, "loleaflet": 170, "long": [3, 6, 12, 16, 22, 45, 52, 59, 60, 81, 82, 88, 93, 105, 107, 110, 112, 113, 128, 129, 132, 133, 142, 147, 152, 153, 182, 186], "long_query_tim": 22, "longer": [26, 44, 48, 58, 60, 63, 66, 67, 85, 112, 123, 129, 132, 152, 153, 155, 178, 180, 181, 184, 185, 187], "longest": 26, "longitud": 126, "look": [2, 3, 15, 20, 22, 23, 48, 51, 57, 58, 60, 70, 72, 81, 83, 88, 96, 101, 116, 118, 128, 129, 133, 136, 137, 142, 147, 149, 150, 152, 159, 167, 174, 188], "lookup": [38, 60, 69, 77, 110, 126], "lookup_serv": [88, 110], "lool": [166, 170], "loolwsd": 170, "loop": [88, 96], "loopback": [60, 128], "lose": [28, 45, 60, 152, 157], "loss": [22, 28, 40, 60, 85, 93, 134, 138, 152, 160], "lost": [28, 29, 74, 80, 88, 107, 138, 151, 152, 153, 157, 164], "lost_password_link": [79, 88], "lostpassword": 60, "lot": [15, 47, 58, 59, 60, 67, 81, 118, 132, 138, 142, 148, 188], "love": 81, "low": [7, 10, 26, 44, 48, 59, 60, 107, 132, 133, 134], "lower": [4, 5, 7, 10, 29, 53, 57, 60, 67, 85, 86, 107, 132, 133], "lowest": [132, 134, 186], "lsof": 99, "lt": [4, 88, 127, 133, 134, 161, 162, 185, 187], "lt_hpb_url": 4, "lt_internal_secret": 4, "ltd": [16, 126], "lte": 187, "luk": 28, "m": [14, 22, 56, 59, 83, 124, 126, 129, 130, 132, 133, 140, 156], "m5mrxtrjkymaxxpe2frxmtftfbkenzcu": 48, "mac": [40, 56], "machin": [3, 5, 6, 7, 9, 10, 12, 13, 22, 50, 60, 63, 88, 95, 96, 126, 127, 135, 143, 151, 152, 153, 155, 156, 157], "macintosh": 81, "maco": [88, 91, 92, 114, 119, 134, 138], "macro": 160, "made": [3, 15, 20, 38, 46, 47, 51, 58, 60, 88, 93, 111, 118, 132, 133, 135, 143, 160, 186, 188], "madlad": [11, 15], "madlad400": 11, "madrid": 81, "mageia": 130, "mai": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 26, 27, 28, 29, 30, 31, 32, 33, 36, 37, 38, 40, 41, 42, 43, 44, 48, 49, 51, 53, 56, 57, 58, 59, 60, 63, 64, 67, 69, 76, 77, 79, 80, 81, 82, 83, 85, 88, 92, 93, 95, 99, 107, 108, 110, 111, 112, 113, 116, 117, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 145, 146, 147, 148, 150, 151, 152, 153, 154, 156, 157, 159, 160, 170, 172, 180, 182, 186, 187, 188], "mail": [5, 12, 15, 53, 65, 76, 81, 82, 88, 114, 115, 117, 131, 143, 154, 156, 160, 175, 178], "mail_domain": [63, 88], "mail_from_address": 88, "mail_link_password_expiration_interv": 88, "mail_max_item": 53, "mail_send_plaintext_onli": 88, "mail_sendmailmod": 88, "mail_smtpauth": [63, 88], "mail_smtpauthtyp": 63, "mail_smtpdebug": [63, 88], "mail_smtphost": [63, 88, 143], "mail_smtpmod": [63, 88], "mail_smtpnam": [63, 88], "mail_smtppassword": [63, 88], "mail_smtpport": [63, 88, 143], "mail_smtpsecur": [63, 88], "mail_smtpstreamopt": [63, 88], "mail_smtptimeout": [63, 88], "mail_template_class": [63, 88], "mailbox": [88, 115, 118], "mailcow": 116, "mailer": [60, 63, 178], "mailprimaryaddress": 81, "mailqueuehandl": 53, "mailto": 187, "main": [4, 11, 15, 22, 60, 67, 81, 82, 95, 96, 99, 102, 129, 138, 140, 146, 147, 163, 164, 166, 170, 188], "mainli": [4, 16, 28, 62, 148], "maintain": [1, 12, 28, 40, 41, 44, 60, 70, 72, 93, 113, 119, 126, 133, 138, 145, 147, 148, 150, 186], "mainten": [3, 19, 23, 25, 28, 51, 65, 85, 121, 132, 133, 134, 142, 143, 146, 147, 149, 153, 169, 182], "maintenance_window_start": 88, "major": [3, 12, 42, 56, 88, 126, 129, 133, 138, 142, 144, 147, 148, 169], "make": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 14, 15, 16, 18, 22, 23, 25, 26, 28, 31, 33, 34, 38, 41, 43, 47, 48, 53, 54, 55, 58, 59, 60, 64, 66, 68, 73, 76, 81, 83, 84, 88, 92, 93, 96, 101, 105, 108, 112, 114, 116, 118, 123, 124, 126, 129, 130, 132, 133, 134, 135, 137, 138, 142, 143, 144, 145, 146, 147, 148, 150, 152, 153, 156, 159, 166, 172, 173, 178, 179, 180, 181, 185, 186, 187, 188], "malform": 153, "malfunct": 60, "malici": [28, 58], "malwar": [56, 60, 63], "man": [56, 57, 126], "manag": [1, 2, 5, 6, 7, 8, 9, 10, 11, 18, 41, 44, 45, 53, 54, 55, 58, 59, 60, 65, 69, 81, 84, 87, 88, 92, 94, 95, 101, 102, 105, 107, 112, 119, 123, 126, 127, 147, 148, 150, 152, 153, 155, 157, 160, 169, 181, 182, 183, 187], "managerfactori": 88, "mandarin": 10, "mandatori": [57, 73, 81, 88, 157], "mani": [6, 11, 12, 15, 18, 22, 23, 53, 54, 56, 58, 60, 81, 93, 112, 113, 118, 129, 132, 133, 138, 147, 150, 156, 157, 161, 168, 180, 186], "manifest": [55, 129], "manifestli": 111, "manipul": [153, 154, 156], "manner": [1, 181, 182, 183], "manual": [3, 4, 6, 16, 19, 20, 22, 25, 26, 28, 32, 50, 53, 54, 57, 59, 60, 64, 69, 77, 81, 82, 83, 88, 91, 93, 95, 96, 97, 102, 107, 108, 111, 116, 119, 123, 125, 126, 127, 132, 135, 136, 137, 138, 141, 144, 145, 147, 151, 153, 156, 159, 169, 181, 186, 187, 188], "manual_instal": [8, 95, 97], "manual_install_harp": 97, "map": [2, 48, 60, 83, 88, 129, 132, 144, 154, 174], "march": 26, "marco": 2, "margin": 132, "mariadb": [20, 23, 25, 60, 88, 121, 123, 125, 128, 130, 132, 133, 151, 156, 181, 182, 185], "mark": [2, 40, 60, 63, 77, 83, 88, 152, 153, 154, 188], "markdown": [18, 60, 71, 132], "market": [2, 11, 144], "markup": 160, "martin": 2, "mask": 118, "master": [28, 46, 60, 63, 88, 150], "master_": 29, "mastodon": [174, 175], "match": [3, 25, 38, 43, 48, 59, 60, 63, 69, 72, 75, 76, 77, 81, 82, 88, 92, 96, 101, 107, 113, 114, 118, 124, 129, 132, 133, 138, 143, 150, 153, 154, 155, 157, 160, 170, 172, 187], "math": 5, "matrix": 88, "matter": [43, 151, 180], "max": [1, 26, 46, 56, 88, 96, 124, 126, 129, 156], "max_accelerated_fil": 124, "max_allowed_packet": 22, "max_children": [132, 133], "max_execution_tim": [26, 60, 130], "max_file_conversion_files": 88, "max_filesize_animated_gifs_public_shar": 88, "max_heap_table_s": 22, "max_image_generation_idle_tim": 1, "max_input_tim": 26, "max_link": 22, "max_parallel_count": 88, "max_persist": 22, "max_request": 132, "max_siz": [26, 88], "max_spare_serv": 132, "max_token": 5, "maxautocompleteresult": 88, "maxchunks": 93, "maxim": [43, 58], "maximum": [8, 26, 28, 43, 44, 48, 49, 53, 58, 77, 81, 85, 88, 93, 107, 112, 113, 129, 132, 153, 156], "maximumadressbook": 113, "maximumcalendarssubscript": 112, "maxkeepaliverequest": 138, "maxretri": 126, "mayb": 93, "mb": [38, 47, 60, 67, 82, 85, 93, 96, 132, 156], "mb4": 60, "mbstring": [71, 123, 125, 130], "mcp": [12, 13, 88], "md": [2, 18, 28, 71], "md5": [63, 123, 124, 125, 185], "md5sum": [123, 125], "mdm": 92, "me": [2, 14, 60, 88, 110], "mean": [11, 14, 15, 41, 50, 58, 60, 68, 69, 70, 77, 80, 81, 85, 92, 96, 107, 116, 123, 126, 128, 129, 132, 134, 137, 148, 152, 180, 186, 187, 188], "meaningless": 129, "meant": [58, 60, 186], "measur": [7, 10, 12, 60, 70, 132], "mechan": [12, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 57, 58, 60, 63, 77, 88, 178], "media": [1, 2, 6, 7, 88, 101, 107, 127], "medium": 7, "meet": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 31, 44, 48, 108, 109, 142, 186, 187], "megabyt": [56, 60], "member": [2, 18, 43, 54, 64, 76, 80, 81, 82, 85, 88, 101, 119, 151, 154, 157, 159, 174, 175], "memberof": [82, 88, 154], "membership": [43, 81, 82, 85, 101, 110, 118, 154, 157], "memberuid": 82, "memcach": [26, 45, 65, 70, 81, 88, 123, 124, 127, 130, 135, 143, 150], "memcache_customprefix": [59, 88, 123], "memcached_opt": 88, "memcached_serv": [59, 88, 143], "memori": [6, 18, 26, 28, 45, 56, 58, 65, 70, 81, 88, 99, 118, 129, 130, 132, 133, 156, 182, 187], "memory_consumpt": [124, 132], "memory_limit": [18, 26, 56, 130], "mention": [1, 3, 14, 77, 93, 95, 101, 123, 124, 126, 137, 147], "menu": [1, 8, 15, 40, 57, 60, 64, 72, 85, 92, 95, 96, 138, 153, 156, 160, 175, 181, 182, 183], "mere": [20, 186], "merg": [12, 65, 67, 88, 116, 174, 175], "mermaid": 15, "mesh": 155, "messag": [1, 2, 8, 14, 15, 19, 28, 29, 60, 61, 63, 67, 69, 70, 75, 76, 79, 81, 82, 88, 110, 111, 116, 117, 118, 121, 126, 136, 139, 142, 143, 150, 151, 153, 155, 172, 173, 174, 175, 188], "met": [2, 15, 49, 60, 67, 81, 126, 133], "meta": [15, 17, 75, 76, 81, 82, 130], "metadata": [12, 40, 43, 48, 60, 77, 85, 88, 96, 111, 118, 129, 135, 138, 153, 156, 160], "metadata_max_files": 88, "metal": [88, 135], "method": [17, 22, 25, 29, 32, 40, 46, 57, 60, 63, 67, 75, 76, 80, 82, 88, 93, 95, 96, 97, 118, 130, 133, 138, 143, 148, 150, 153, 156, 162, 188], "metric": [52, 60, 89, 163, 165, 184], "mg": 124, "mib": [4, 26, 60, 88, 132], "micro": 133, "microservic": 132, "microsoft": [50, 56, 60, 63, 88, 93, 115, 129, 134, 178], "mid": [12, 132], "middl": 126, "middlewar": [69, 188], "might": [0, 2, 3, 11, 15, 16, 20, 22, 25, 32, 38, 40, 47, 48, 50, 51, 53, 56, 57, 59, 60, 63, 70, 77, 81, 82, 93, 95, 96, 99, 103, 113, 116, 118, 125, 126, 129, 131, 132, 134, 136, 138, 143, 144, 150, 159, 172, 173, 179, 183, 185], "migrat": [19, 20, 21, 32, 46, 48, 49, 60, 81, 88, 95, 115, 118, 130, 141, 147, 150, 151, 153, 156, 157, 158, 168, 182], "milli": 157, "million": 119, "millisecond": [48, 60, 93, 156], "milliwai": [153, 156, 157], "mime": [101, 110, 116, 129, 133, 153, 180], "mimetyp": [47, 60, 88, 101, 126, 129, 153], "mimetypealias": [51, 101], "mimetypelist": 156, "mimetypemap": [51, 156], "min_spare_serv": 132, "minchunks": 93, "mind": [3, 18, 59, 60, 95, 101, 120, 124, 125, 133, 147, 188], "minif": 60, "minim": [3, 4, 7, 8, 10, 11, 56, 58, 86, 107, 114, 123, 124, 128, 132, 134, 138, 186], "minimis": 107, "minimum": [6, 48, 49, 53, 70, 77, 81, 88, 93, 95, 98, 107, 116, 134, 143, 162, 163, 164, 165, 185, 186], "minio": 48, "miniredir": 60, "minor": [3, 132, 142], "minsearchstringlength": 88, "mint": [56, 59, 133], "minut": [0, 3, 7, 10, 15, 38, 40, 44, 49, 56, 57, 58, 60, 81, 83, 93, 112, 113, 116, 142, 143, 148, 153, 157, 163, 165, 187], "mirror": [126, 129, 147], "misbehav": 58, "misbehavior": 70, "misbehaviour": 156, "miscellan": 88, "misconfigur": [58, 60, 88, 93, 99, 104, 118, 126, 129], "misformat": 81, "mismatch": [132, 153, 157, 183], "miss": [25, 43, 80, 81, 88, 92, 99, 126, 130, 133, 144, 146, 148, 153, 187], "missing_fil": 137, "missingok": 107, "mission": [138, 186], "mistak": [60, 81, 138], "mistakenli": 118, "mistral": 2, "mistralai": [0, 15], "mit": 60, "mitig": [59, 63, 126], "mitm": 126, "mix": [41, 48], "mixer": 126, "mixtur": 60, "mj": [129, 179, 180], "mkdir": [28, 34, 96, 123, 124], "mknod": 166, "mkv": 47, "mlocat": 123, "mm": [81, 151], "mnt": [81, 133], "mobil": [28, 32, 40, 43, 58, 69, 72, 77, 81, 88, 91, 101, 119, 126, 127, 132], "mod": [125, 133, 187], "mod_dav": [123, 133, 138], "mod_defl": 138, "mod_dir": 133, "mod_env": [60, 68, 126, 133], "mod_evas": 138, "mod_fastcgi": 138, "mod_fcgi": 133, "mod_fcgid": [88, 138], "mod_head": [68, 126, 133], "mod_mim": 133, "mod_pagespe": 138, "mod_php": [132, 133, 134, 138], "mod_proxy_fcgi": [88, 138], "mod_reqtimeout": [26, 138], "mod_rewrit": [41, 60, 68, 133, 138], "mod_secur": 138, "mod_spdi": 138, "mod_webdav": 133, "mod_xsendfil": 138, "modal": 94, "mode": [6, 19, 22, 23, 25, 26, 29, 30, 40, 46, 53, 56, 57, 60, 67, 81, 82, 88, 97, 98, 112, 118, 123, 125, 127, 137, 141, 142, 143, 146, 149, 151, 152, 160], "model": [0, 1, 3, 4, 6, 8, 9, 10, 13, 14, 15, 88, 95, 116, 126, 130, 135], "model_nam": 11, "moder": 43, "modern": [4, 50, 59, 64], "modheadersavail": 129, "modif": [12, 22, 43, 63, 93, 105, 110, 112, 113, 133, 142], "modifi": [31, 38, 40, 44, 48, 50, 51, 58, 59, 65, 66, 74, 81, 85, 88, 93, 101, 102, 105, 107, 110, 112, 113, 114, 118, 126, 132, 133, 137, 138, 153, 154, 156, 157], "modul": [22, 26, 28, 29, 38, 45, 59, 60, 72, 81, 88, 124, 125, 127, 128, 129, 133, 134, 150, 166, 179, 180], "modular": [1, 15], "module_nam": 130, "molli": 81, "moment": [8, 172], "momentj": 66, "mon": [53, 56], "mondai": [2, 53], "monitor": [16, 58, 59, 88, 126, 132, 156, 184, 187], "monterei": 134, "month": [1, 2, 14, 111, 126, 129, 133, 156], "monument": 6, "moodl": 68, "more": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 22, 23, 26, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 56, 58, 59, 60, 61, 63, 67, 70, 72, 76, 77, 78, 81, 83, 84, 91, 92, 93, 94, 95, 96, 99, 101, 107, 112, 113, 116, 117, 118, 119, 121, 123, 124, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 142, 143, 146, 148, 149, 150, 153, 155, 156, 157, 160, 161, 166, 168, 169, 171, 172, 178, 180, 182, 183, 184, 186, 187, 188], "moreov": 16, "morn": 53, "most": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 28, 44, 48, 57, 58, 59, 60, 63, 64, 67, 69, 70, 77, 81, 95, 96, 110, 111, 118, 119, 126, 129, 130, 131, 132, 133, 134, 138, 144, 145, 148, 150, 156, 157, 164, 169, 170, 171, 177, 178, 186, 188], "mostli": [133, 188], "mount": [28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 45, 46, 48, 56, 57, 60, 88, 92, 96, 98, 100, 101, 110, 133, 152, 164], "mount_id": [38, 40], "mountpoint": [31, 33, 38, 39, 46, 60, 88], "move": [2, 26, 28, 60, 69, 88, 107, 126, 128, 142, 143, 147, 148, 152, 155, 182, 186], "movi": [47, 60, 174, 175], "mozilla": [67, 118, 126, 129, 134], "mp3": [51, 60, 182, 183, 184], "mp4": [129, 156], "mpeg": 51, "mrtumnu": 69, "mscorefont": 163, "msi": 92, "msiexec": 92, "msoffice2003": 60, "msoffice2007": 60, "msofficedoc": [47, 60], "mt": [11, 60, 72], "mtime": [43, 153], "much": [26, 61, 93, 96, 128, 131, 132, 138, 146, 156], "multi": [3, 15, 46, 58, 59, 81, 88, 143, 162, 187], "multibucket": [46, 88], "multibyt": [130, 146], "multilingu": [7, 12, 13, 88], "multipart": 48, "multipartupload": 26, "multipl": [2, 5, 6, 9, 12, 15, 20, 26, 32, 40, 45, 48, 56, 57, 58, 59, 65, 67, 70, 73, 81, 82, 83, 84, 88, 92, 95, 96, 98, 116, 120, 126, 130, 132, 133, 144, 146, 149, 151, 153, 156, 157, 159, 169, 186, 187], "multiview": [123, 133], "music": [15, 88, 92], "must": [3, 4, 5, 6, 8, 16, 18, 26, 28, 29, 31, 33, 34, 36, 40, 41, 45, 48, 56, 57, 59, 60, 63, 67, 68, 69, 70, 72, 77, 80, 81, 82, 83, 85, 92, 93, 95, 96, 98, 107, 108, 111, 112, 116, 120, 121, 126, 128, 129, 130, 131, 132, 133, 134, 135, 138, 140, 142, 143, 144, 146, 147, 148, 150, 151, 152, 153, 156, 157, 160, 162, 164, 187], "mutual": [58, 153], "mx": [116, 118], "my": [2, 16, 48, 51, 72, 75, 81, 88, 95, 97, 112, 151, 153, 156, 172], "myapp": [63, 153], "myapplic": 68, "myclass": 63, "mycloud": [2, 60], "mycustomprefix": 60, "myfil": 187, "mygroup": [75, 154], "myisam": 134, "mylogfil": 131, "mylogo": 72, "mynextcloudprefix": 59, "mypictur": 40, "myserv": [41, 156], "mysql": [20, 21, 25, 88, 121, 123, 125, 128, 130, 132, 133, 138, 145, 156, 182, 185], "mysql_attr_init_command": 60, "mysql_attr_ssl_ca": [22, 60], "mysql_attr_ssl_cert": [22, 60], "mysql_attr_ssl_kei": [22, 60], "mysql_attr_ssl_verify_server_cert": [22, 60], "mysql_secure_instal": 123, "mysql_user_password": 20, "mysqld": [22, 23, 60, 63], "mysqldump": [23, 140], "mysqlnd": 123, "n": [1, 5, 15, 19, 20, 29, 81, 99, 150, 152, 153, 156, 187], "n400": 4, "n_ctx": 5, "name": [1, 2, 3, 4, 5, 8, 11, 16, 17, 20, 22, 23, 28, 31, 32, 33, 34, 36, 38, 39, 41, 43, 44, 46, 48, 50, 52, 55, 56, 59, 60, 63, 65, 67, 68, 72, 75, 76, 77, 81, 82, 83, 85, 88, 92, 93, 95, 96, 97, 98, 101, 106, 110, 111, 112, 114, 116, 118, 120, 121, 123, 124, 125, 126, 128, 129, 132, 133, 137, 149, 151, 153, 154, 156, 157, 160, 163, 164, 165, 170, 187], "namespac": [14, 55, 60, 63, 156], "nat": 160, "nation": 107, "nativ": [24, 38, 160, 188], "natur": [12, 15, 84, 159], "navig": [1, 55, 60, 93, 95, 101, 102, 105, 106, 112, 113, 116, 124, 136], "nc": [60, 63, 88, 100, 129], "nc_app_": 99, "nc_app_context_chat_backend": 3, "nc_app_context_chat_backend_data": 3, "nc_app_context_chat_contain": 3, "nc_app_live_transcript": 4, "nc_app_live_transcription_data": 4, "nc_app_live_transcription_log": 4, "nc_app_llm2_data": 5, "nc_app_stt_whisper2_data": 7, "nc_app_translate2": 11, "nc_debug": 150, "nc_domain": 96, "nc_instance_url": [95, 96], "nc_loglevel": 150, "nc_pass": 157, "nc_samesitecookielax": [70, 106], "nc_samesitecookiestrict": [70, 106], "nc_serverid": [60, 143], "nc_session_id": 106, "nc_token": 106, "nc_usernam": 106, "ncdata": 138, "ncp": 130, "ncvm": 133, "ne": 187, "nearli": [123, 180], "necessari": [2, 16, 22, 25, 26, 36, 47, 57, 59, 60, 63, 77, 84, 96, 106, 107, 116, 118, 123, 128, 129, 130, 133, 138, 159, 182, 188], "necessarili": [58, 77, 95, 96, 138], "need": [0, 1, 2, 3, 4, 6, 8, 11, 12, 15, 16, 18, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 36, 37, 38, 39, 40, 41, 43, 44, 45, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 69, 70, 80, 81, 82, 84, 85, 88, 92, 93, 95, 96, 97, 99, 101, 102, 108, 111, 112, 113, 116, 118, 120, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 155, 156, 157, 159, 162, 166, 172, 173, 178, 181, 182, 184, 185, 186, 187, 188], "needsdbupgrad": 156, "neg": [6, 126], "neither": 78, "nest": [82, 88, 153, 156, 187], "net": [60, 96, 97, 123, 144, 156, 159], "netdata": 132, "netstat": [56, 63], "network": [15, 22, 40, 58, 60, 69, 88, 92, 93, 95, 96, 97, 99, 101, 126, 127, 133, 134, 145, 156, 160, 162, 180, 187], "never": [28, 40, 44, 53, 60, 77, 81, 96, 107, 110, 126, 132, 152, 153, 157], "nevertheless": 148, "new": [2, 3, 5, 6, 11, 12, 20, 23, 25, 26, 27, 28, 30, 32, 33, 37, 40, 44, 45, 46, 48, 53, 57, 60, 63, 67, 68, 74, 75, 78, 80, 81, 82, 83, 88, 92, 93, 95, 96, 98, 108, 111, 112, 114, 116, 118, 119, 124, 126, 128, 130, 131, 132, 133, 134, 138, 140, 142, 143, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 163, 165, 166, 170, 178, 180, 181, 182, 185, 186, 187, 188], "newer": [23, 38, 70, 95, 113, 116, 118, 132, 134, 146, 152, 186], "newest": [44, 144, 186], "newgroup": [75, 76], "newli": [20, 28, 40, 48, 53, 56, 57, 60, 77, 81, 105, 133, 155, 186, 188], "newnam": 187, "newpassword": 157, "newus": 157, "next": [1, 2, 16, 22, 27, 28, 40, 41, 43, 53, 56, 59, 81, 82, 83, 88, 92, 94, 95, 112, 113, 123, 127, 138, 147, 148, 151, 152, 153, 156, 169, 174, 186, 188], "nextcloud": [0, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 57, 58, 62, 63, 64, 66, 67, 68, 70, 73, 74, 75, 76, 77, 78, 79, 80, 85, 87, 88, 91, 92, 95, 98, 99, 100, 101, 102, 105, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 120, 121, 125, 127, 128, 130, 131, 132, 133, 134, 135, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 162, 164, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 186], "nextcloud_": 48, "nextcloud_1": 48, "nextcloud_admin": 81, "nextcloud_cento": 123, "nextcloud_config_dir": [60, 126], "nextcloud_docker_network_nam": 96, "nextcloud_host": 69, "nextcloud_imaginari": 132, "nextcloud_install_product": 133, "nextcloud_log": 93, "nextcloud_redirectregex": 69, "nextcloud_url": [8, 96, 97], "nextcloudcron": 57, "nextclouden": 82, "nextcloudgroup": 82, "nextcloudpi": 133, "nextcloudquota": 81, "nextcloudsystemus": 81, "nextcloudtemp": 60, "nextcloudus": [81, 82], "nf": [60, 88, 127], "nfc": 40, "nfd": 40, "nftabl": 58, "nginx": [19, 70, 88, 96, 110, 126, 127, 128, 132, 133, 134, 138, 162, 163, 164, 165, 178, 179, 180], "nginx_worker_process": 164, "ngo": 138, "ngx_pagespe": [129, 138], "ni": 132, "nice": 51, "night": 3, "nightli": 164, "nin": 187, "nix": [57, 63], "no_desktop_shortcut": 92, "no_etag": 129, "no_last_modifi": 129, "no_proxi": 60, "no_shell_extens": 92, "no_start_menu_shortcut": 92, "no_unsupported_browser_warn": 88, "nobl": [162, 165], "nobodi": 137, "nocanon": 166, "node": [6, 60, 88, 96], "nodecod": 166, "nodecopiedev": 187, "nodecreatedev": 187, "nodedeletedev": 187, "nodeinfo": 138, "noderenamedev": 187, "noderestoredev": 187, "nodetouchedev": 187, "nodewrittenev": 187, "nofollow": [126, 129], "noindex": [126, 129], "nologon": 150, "nomatim": 2, "nominatim": 126, "non": [3, 8, 20, 26, 28, 31, 34, 40, 48, 60, 76, 77, 81, 88, 95, 97, 128, 130, 143, 147, 149, 151, 153, 156, 157, 159, 165, 187], "none": [15, 32, 58, 60, 63, 81, 82, 85, 129, 142, 151, 152, 153, 155, 156, 157, 166, 178], "nonexist": [81, 129], "nonexistingfil": 187, "nonexistingfold": 187, "noon": 2, "nor": [38, 57, 88, 95, 147, 187], "norepli": 60, "normal": [3, 6, 19, 25, 26, 40, 45, 53, 57, 60, 66, 78, 81, 85, 92, 120, 135, 138, 143, 147, 148, 150, 153, 155, 156], "nosniff": [126, 129], "notabl": 38, "notat": [60, 67, 69, 187], "note": [0, 1, 2, 3, 5, 12, 14, 15, 18, 22, 31, 38, 40, 43, 47, 48, 49, 57, 60, 63, 68, 74, 77, 87, 93, 96, 102, 108, 112, 113, 121, 126, 127, 129, 133, 134, 138, 139, 142, 148, 149, 150, 152, 157, 160, 172, 174, 186, 187], "noth": [3, 19, 153], "notic": [45, 47, 58, 72, 110, 128, 143, 157], "notif": [12, 40, 46, 60, 63, 69, 80, 81, 85, 88, 105, 108, 110, 115, 126, 131, 133, 138, 141, 147, 149, 151, 156, 160, 178, 187, 188], "notifempti": 107, "notifi": [16, 28, 38, 40, 53, 63, 88, 105, 108, 149, 187], "notify_guest": 16, "notion": [174, 175], "notori": [5, 6, 7, 11], "now": [15, 22, 23, 25, 26, 41, 56, 57, 60, 68, 81, 85, 88, 95, 96, 112, 113, 116, 118, 121, 123, 124, 125, 128, 130, 133, 138, 142, 147, 166, 178, 179, 180, 183, 184, 185, 187, 188], "nowadai": [60, 183], "nsign": 167, "nss": [65, 88], "nsuit": 167, "ntf": 38, "ntlm": [63, 178], "nuanc": 28, "nuisanc": 58, "null": [14, 47, 60, 67, 97, 124, 149, 183, 187, 188], "num_bucket": 48, "num_nucket": 48, "number": [1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 15, 19, 26, 33, 43, 48, 49, 53, 56, 58, 59, 60, 63, 77, 81, 82, 85, 93, 107, 110, 112, 113, 116, 120, 123, 125, 126, 128, 132, 134, 138, 142, 147, 151, 152, 156, 157, 164, 170, 180, 186, 187], "numer": [47, 60, 86, 128, 153, 156], "numeric_id": 29, "nuri": 167, "nvidia": [3, 4, 5, 6, 7, 9, 11, 95, 97, 99], "o": [26, 28, 58, 60, 81, 88, 124, 129, 130, 132, 133, 138, 143, 156, 163, 165], "o9d3q9thcpmv6tiph53msxaumy91yhezrwuihwcfrss": 48, "oauth": [32, 88, 188], "oauth2": [65, 88, 150], "object": [11, 15, 31, 40, 45, 46, 59, 65, 81, 88, 112, 126, 130, 132, 143, 150, 151, 174, 183, 184, 188], "object_typ": 111, "objectclass": [81, 82, 154], "objectdata": 187, "objectid": 187, "objectprefix": 60, "objectstor": [48, 88, 135, 143], "objecttyp": 187, "oblig": [107, 108, 109], "obscur": 138, "observ": 12, "obsolet": 47, "obtain": [63, 68, 88, 139, 153], "obviou": [58, 180], "oc": [16, 17, 45, 47, 48, 52, 59, 60, 63, 67, 75, 76, 77, 82, 87, 123, 124, 129, 132, 137, 147, 150, 153, 156, 180, 181, 187, 188], "oc8c0fd71e03": 60, "oc_": [22, 60], "oc_act": [25, 53], "oc_activity_mq": [25, 53], "oc_addressbook": 138, "oc_admin": 128, "oc_admin1": 128, "oc_admin2": 128, "oc_calendar_calendar": 20, "oc_calendar_object": 20, "oc_calendar_share_calendar": 20, "oc_calendar_share_ev": 20, "oc_cards_properti": 138, "oc_carla": 60, "oc_com": 111, "oc_comments_read_mark": 111, "oc_databas": 151, "oc_dav_shar": 118, "oc_dbus": 151, "oc_default_modul": [29, 152], "oc_filecach": [29, 138, 151], "oc_fscach": 20, "oc_log": 20, "oc_mail_messag": 118, "oc_mail_recipi": 118, "oc_media_album": 20, "oc_media_artist": 20, "oc_media_sess": 20, "oc_media_song": 20, "oc_media_us": 20, "oc_oauth2_cli": 156, "oc_pass": 157, "oc_permiss": 20, "oc_prefer": 83, "oc_privatedata": 20, "oc_queuedtask": 20, "oc_sessionpassphras": 106, "oc_shar": 20, "oc_storag": [29, 83, 138], "oca": [3, 60, 63, 156, 180, 187], "occ": [1, 4, 6, 8, 13, 14, 15, 18, 19, 20, 23, 25, 26, 27, 29, 30, 38, 40, 41, 43, 44, 46, 47, 48, 49, 51, 53, 56, 57, 60, 61, 67, 68, 71, 72, 73, 74, 77, 78, 80, 83, 85, 88, 98, 100, 103, 107, 108, 111, 112, 113, 116, 117, 118, 121, 126, 129, 132, 133, 136, 137, 138, 140, 142, 144, 147, 148, 149, 151, 152, 153, 154, 155, 156, 157, 161, 181, 182, 183, 187, 188], "occ6f7365735": 60, "occ_command": 67, "occasion": [8, 142, 166], "occupi": 155, "occur": [2, 26, 59, 63, 96, 98, 132, 138, 143, 147, 156, 183, 187], "occurr": 26, "ocdownloadstart": 106, "oci": [20, 60, 121, 156], "ocm": [88, 150], "ocp": [60, 77, 150, 187], "ocsp": 129, "octal": [60, 67], "od": 161, "odd": 132, "odf": [159, 168], "odp": 161, "odt": 161, "off": [22, 23, 25, 26, 30, 33, 53, 56, 60, 71, 82, 88, 96, 116, 118, 123, 129, 131, 133, 142, 147, 150, 154, 156, 157, 166], "offend": 58, "offer": [0, 1, 12, 15, 16, 28, 56, 60, 64, 72, 114, 116, 118, 126, 133, 135, 138, 147, 186], "offic": [2, 15, 42, 47, 51, 58, 109, 115, 133, 158, 160, 162, 163, 164, 165, 166, 169, 170, 171, 172, 174, 175], "offici": [2, 56, 58, 60, 72, 81, 96, 119, 123, 124, 126, 129, 130, 132, 133, 134, 137, 138, 147, 164, 177, 185, 186], "offlin": [81, 93, 112, 113, 143, 147], "offload": [0, 1, 96, 132, 156], "offset": [75, 76, 154, 156, 157], "offsit": 2, "often": [1, 26, 57, 58, 60, 93, 107, 112, 113, 116, 126, 130, 133, 180, 182, 186], "ogg": [129, 179, 180], "oid": [60, 153], "oidc": 84, "oidc_provider_bearer_valid": 84, "ok": [17, 56, 75, 76, 82, 152, 153], "okai": 142, "old": [1, 15, 20, 28, 40, 44, 60, 81, 88, 137, 138, 142, 147, 152, 153, 155, 156, 178, 183], "older": [1, 4, 15, 28, 29, 44, 49, 53, 60, 70, 85, 93, 107, 130, 132, 136, 138, 144, 147, 148, 153, 156], "oldest": [44, 85], "oldfil": 187, "oldgroup": 76, "oldtim": 59, "ollama": [0, 15], "olmo": 88, "omit": [20, 60, 69, 70, 81, 92, 106, 149, 151, 152, 153], "onbootsec": 57, "onc": [2, 14, 18, 26, 30, 40, 43, 48, 51, 57, 60, 80, 81, 93, 95, 108, 112, 118, 123, 125, 126, 129, 142, 143, 147, 149, 151, 152, 153, 154, 155, 156, 157, 160, 166, 177, 180, 186, 187, 188], "ondemand": 132, "one": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 14, 15, 16, 20, 22, 28, 29, 32, 36, 40, 41, 43, 44, 47, 56, 58, 59, 60, 67, 68, 69, 70, 76, 77, 80, 81, 82, 85, 88, 91, 92, 95, 97, 101, 102, 108, 110, 111, 112, 114, 116, 118, 123, 128, 129, 130, 133, 134, 135, 136, 138, 142, 143, 144, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 159, 166, 169, 174, 180, 186, 187, 188], "ones": [20, 44, 53, 54, 59, 60, 107, 132, 133, 142, 144, 147, 152, 174, 180, 186], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 22, 23, 24, 27, 28, 29, 31, 32, 34, 38, 40, 43, 48, 50, 52, 53, 54, 56, 57, 58, 59, 60, 64, 65, 66, 67, 68, 69, 77, 78, 79, 80, 81, 83, 84, 85, 88, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 106, 108, 112, 113, 114, 116, 117, 118, 121, 123, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 143, 144, 146, 147, 149, 150, 152, 153, 154, 155, 156, 157, 159, 160, 172, 174, 180, 183, 184, 186, 187, 188], "onlin": [32, 60, 88, 118, 119, 123, 133, 143, 148, 167, 168, 169, 171, 172], "onlyoffic": [32, 133], "onrequest": 188, "ons": [119, 132], "onunitactivesec": 57, "ooxml": 88, "opaqu": 187, "opcach": [59, 60, 88, 123, 124, 127, 129, 130], "opcod": [59, 132], "open": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 23, 32, 40, 45, 56, 59, 60, 71, 81, 88, 92, 93, 96, 116, 119, 126, 130, 133, 138, 147, 155, 159, 160, 172, 188], "open_basedir": [26, 126, 130], "openai": [1, 3, 4, 5, 7, 8, 12, 13, 15, 88, 175], "openapi": [12, 60, 188], "openbsd": [88, 127], "opendocu": [47, 60, 132, 159], "opendyslex": 60, "opengraph": 174, "openid": [74, 88], "openldap": [81, 82], "openmetr": [60, 88], "openmetrics_allowed_cli": [52, 88], "openmetrics_skipped_class": [52, 88], "openoffic": [60, 130], "openproject": 2, "openshift": 60, "openssl": [48, 65, 88, 118, 124, 130, 132], "openssl_decrypt": 29, "openssl_encrypt": 29, "openssl_open": 29, "openssl_pkey_export": 29, "openssl_pkey_new": 29, "openssl_s": 29, "openstack": [40, 88], "openstreetmap": [126, 174, 175], "opensus": [134, 150], "opentopodata": 126, "opentyp": 129, "openweathermap": 14, "oper": [3, 6, 8, 12, 22, 24, 26, 28, 40, 45, 50, 56, 57, 58, 60, 67, 70, 80, 81, 83, 88, 92, 93, 101, 108, 109, 121, 127, 132, 133, 134, 135, 138, 142, 147, 148, 150, 152, 155, 157, 159, 166, 185, 186, 187], "operand": 129, "opinion": [133, 145], "opportunist": 63, "opt": [15, 29, 40, 60, 96, 116, 123, 128, 135, 150, 156, 183, 187], "opt_binary_protocol": 60, "opt_compress": 60, "opt_connect_timeout": 60, "opt_libketama_compat": 60, "opt_poll_timeout": 60, "opt_recv_timeout": 60, "opt_retry_timeout": 60, "opt_send_timeout": 60, "opt_seri": 60, "optim": [0, 1, 2, 6, 26, 35, 119, 126, 129, 130, 132, 133, 186], "optimis": [6, 11, 138], "option": [0, 1, 2, 4, 13, 14, 15, 16, 17, 18, 20, 22, 23, 25, 26, 27, 31, 33, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47, 48, 53, 56, 57, 58, 59, 63, 64, 65, 68, 69, 71, 72, 74, 75, 76, 77, 78, 80, 82, 83, 84, 85, 88, 93, 95, 96, 99, 100, 101, 105, 108, 110, 112, 113, 114, 116, 117, 118, 119, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 142, 143, 147, 148, 149, 150, 151, 152, 154, 156, 157, 160, 167, 169, 174, 180, 181, 186, 187, 188], "optout": 88, "oracl": [20, 22, 25, 60, 121, 128, 134, 156, 184], "orang": 15, "orchestr": 96, "order": [0, 1, 14, 15, 18, 22, 23, 25, 43, 63, 71, 77, 80, 81, 95, 96, 116, 126, 133, 134, 140, 149, 156, 159, 186, 188], "org": [56, 60, 68, 76, 79, 93, 126, 129, 133, 156, 163, 187], "organ": [60, 72, 85, 88, 119, 134, 156], "organis": [77, 81, 109, 134, 138], "organisationscop": 77, "organiz": [81, 85, 116], "organizationnam": 81, "orient": 130, "origin": [11, 27, 41, 44, 47, 60, 67, 69, 81, 85, 106, 110, 118, 126, 138, 142, 143, 150, 153, 160, 187], "orphan": [44, 88, 138, 156], "otf": 129, "other": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 22, 25, 26, 27, 28, 32, 36, 38, 40, 41, 42, 43, 44, 45, 47, 49, 54, 56, 57, 58, 59, 64, 65, 66, 67, 77, 80, 81, 84, 85, 87, 88, 92, 96, 97, 98, 106, 107, 110, 111, 112, 113, 114, 116, 117, 119, 124, 125, 126, 127, 128, 129, 130, 132, 137, 139, 142, 145, 147, 149, 150, 151, 152, 156, 157, 159, 160, 162, 169, 179, 180, 181, 182, 183, 184, 186, 187, 188], "otherdomain": 60, "otherwis": [19, 23, 26, 57, 58, 59, 60, 69, 81, 95, 101, 105, 108, 112, 116, 129, 132, 133, 138, 143, 153, 187], "ou": [81, 82, 83, 154], "our": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 20, 23, 60, 63, 70, 81, 95, 96, 101, 102, 122, 123, 124, 126, 130, 132, 133, 134, 137, 138, 144, 180, 186, 188], "out": [16, 25, 26, 28, 48, 53, 56, 58, 60, 70, 88, 93, 95, 101, 106, 107, 115, 129, 131, 133, 134, 137, 138, 142, 143, 147, 148, 156, 157, 169, 178, 180, 185, 186, 188], "outbound": [63, 155, 180], "outdat": [44, 60, 65, 88, 112, 113, 123, 146, 156], "outdoor": 2, "outgo": [63, 88, 116, 118], "outlin": [2, 56], "outlook": [63, 88, 116], "output": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 26, 38, 60, 67, 83, 88, 93, 111, 118, 130, 132, 133, 137, 148, 149, 150, 151, 152, 153, 155, 156, 157, 163, 165, 187], "output_buff": 26, "outright": [58, 134], "outsid": [16, 29, 34, 38, 41, 46, 48, 56, 60, 64, 88, 96, 101, 110, 112, 125, 128, 129, 132, 133, 135, 138, 140, 142], "outstand": [2, 7, 156], "ova": 133, "over": [22, 25, 31, 33, 48, 51, 58, 60, 63, 68, 70, 77, 81, 85, 88, 93, 96, 106, 111, 119, 123, 126, 132, 133, 134, 142, 156, 160, 162, 174, 179], "overal": 132, "overcom": 60, "overflow": 40, "overhead": [60, 93, 132], "overlai": 81, "overlaid": 160, "overlap": [38, 186], "overload": 138, "overrid": [26, 27, 31, 46, 60, 63, 65, 72, 81, 82, 88, 92, 96, 97, 107, 129, 143, 147, 151, 156], "overridden": 69, "override_app_host": [96, 97, 99], "overridelocaldir": 92, "overriden": 60, "overrideserverurl": 92, "overseen": 119, "overview": [0, 1, 2, 3, 13, 16, 46, 59, 61, 88, 110, 119, 137, 138, 141, 144, 151, 178, 180, 188], "overwrit": [27, 63, 65, 88, 112, 133, 143, 153, 180], "overwritecondaddr": [69, 88], "overwritehost": [69, 88, 143], "overwriteprotocol": [69, 70, 88, 143], "overwritewebroot": [69, 88, 143], "overwritten": [27, 60, 67, 73, 77, 81, 112], "owasp": 183, "own": [0, 1, 3, 4, 12, 15, 16, 26, 28, 29, 40, 42, 43, 51, 53, 54, 55, 58, 60, 63, 64, 66, 72, 77, 85, 93, 101, 103, 107, 108, 111, 112, 113, 114, 124, 128, 133, 138, 148, 153, 166, 180, 187, 188], "owncloud": [30, 70, 88, 93, 138, 140, 141, 146, 150, 153, 156, 187], "owncloud_core_dump": 93, "owner": [22, 43, 77, 88, 101, 102, 105, 108, 110, 118, 123, 151, 160, 163, 165, 188], "ownerid": 187, "ownership": [3, 34, 43, 60, 88, 108, 111, 121, 125, 133, 142, 150, 156], "p": [8, 22, 59, 96, 99, 123, 124, 131, 132, 136, 140, 146, 152, 164, 166], "p256": 155, "pacif": 60, "packag": [2, 56, 59, 60, 88, 92, 119, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 141, 148, 153, 156, 159, 162, 169, 188], "package_nam": 55, "packet": 22, "pad": 29, "page": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 18, 22, 27, 28, 34, 40, 41, 43, 53, 54, 56, 57, 59, 60, 61, 63, 64, 65, 67, 72, 77, 78, 81, 82, 85, 88, 89, 93, 94, 95, 99, 107, 108, 110, 111, 112, 116, 123, 125, 126, 129, 130, 132, 133, 137, 138, 142, 144, 147, 148, 149, 152, 153, 156, 157, 160, 174, 175, 177, 188], "pagespe": 129, "paid": [147, 148], "pain": 95, "pair": [28, 37, 46, 60, 88, 97, 106, 116, 153], "pandoc": 42, "pane": [15, 85, 187], "panel": [56, 60, 66, 81, 85, 111, 132, 133, 156, 160, 188], "pant": 63, "paper": 7, "paragraph": [126, 174], "parallel": [15, 22, 26, 60, 70, 95, 138, 187], "param": [187, 188], "paramet": [3, 5, 14, 16, 20, 21, 25, 26, 27, 31, 32, 43, 46, 48, 52, 58, 59, 65, 66, 76, 81, 82, 88, 93, 96, 107, 112, 126, 127, 129, 130, 133, 143, 150, 156, 180, 184, 186, 187, 188], "parameter_nam": 130, "paramount": [15, 81], "parent": [40, 45, 101, 133, 138, 153, 156], "pars": [3, 29, 60, 129, 130], "parser": 132, "part": [3, 5, 14, 15, 16, 41, 48, 50, 51, 57, 59, 60, 63, 81, 85, 92, 93, 111, 121, 123, 126, 133, 134, 137, 149, 155, 166, 171, 185, 186, 188], "part_file_in_storag": 88, "parti": [2, 6, 12, 15, 16, 22, 28, 29, 57, 60, 63, 88, 106, 134, 138, 142, 148, 159, 160, 173, 175], "partial": [63, 118, 187], "particip": [110, 112, 119], "particular": [1, 7, 22, 38, 48, 54, 81, 129, 132, 186], "particularli": [58, 186], "partit": [26, 60], "partner": [110, 119], "pass": [2, 5, 22, 32, 38, 56, 60, 65, 67, 81, 88, 92, 96, 97, 98, 121, 124, 129, 137, 138, 147, 150, 151, 153, 155, 156, 157, 159, 186, 187], "passiv": 92, "passphras": [29, 110], "passwd": 56, "password": [2, 3, 20, 22, 24, 28, 29, 33, 36, 37, 38, 39, 40, 41, 43, 45, 46, 48, 56, 58, 59, 60, 63, 74, 76, 77, 80, 81, 82, 88, 92, 93, 95, 96, 97, 106, 108, 110, 111, 116, 118, 120, 121, 123, 124, 125, 127, 128, 130, 133, 138, 140, 145, 146, 149, 150, 152, 153, 156, 157, 163, 165, 167, 178, 188], "password1": [24, 60], "password2": [24, 60], "password_argon2_default_memory_cost": 60, "password_argon2_default_thread": 60, "password_argon2_default_time_cost": 60, "password_default": 60, "passwordsalt": 88, "past": [56, 60, 70, 137, 151, 156], "pasta": 2, "patch": [63, 70, 88, 118, 139, 147, 186], "path": [8, 15, 16, 18, 22, 27, 28, 29, 30, 31, 34, 35, 38, 46, 56, 57, 65, 67, 69, 77, 81, 88, 92, 93, 96, 97, 98, 110, 118, 124, 126, 128, 129, 131, 133, 136, 143, 144, 149, 150, 151, 152, 153, 156, 157, 164, 170, 187, 188], "path_info": 129, "path_redirect": 69, "pathparamet": 188, "pattern": [44, 49, 58, 60, 69, 128, 132], "pauvo": 69, "payload": [88, 110, 188], "payment": 0, "pbkdf2": 29, "pc": [22, 142], "pcntl": 130, "pcntl_signal": 130, "pcntl_signal_dispatch": 130, "pdf": [2, 3, 47, 56, 60, 88, 102, 130, 133, 152, 153, 156, 157, 187], "pdo": [22, 60], "pdo_mysql": [22, 130], "pdo_pgsql": [22, 124, 130], "pdo_sqlit": 130, "peak": 156, "pecl": [38, 59, 60, 123], "pecl82": 124, "peer": [22, 63, 116, 119, 129, 155], "peertub": [174, 175], "pem": [22, 29, 60, 124], "pencil": 85, "pend": [126, 151, 155, 156], "peopl": [6, 9, 43, 53, 58, 83, 102, 114, 138, 154, 174, 175], "per": [4, 5, 7, 9, 10, 15, 28, 40, 46, 57, 60, 77, 82, 88, 96, 107, 108, 110, 112, 113, 134, 143, 152, 153, 157, 160, 174, 176, 180, 187], "perbucket": 48, "percentag": 186, "perfect": [4, 9, 133, 145], "perfectli": 186, "perform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 19, 20, 23, 25, 26, 28, 32, 38, 40, 45, 47, 56, 57, 58, 59, 60, 67, 70, 81, 87, 88, 93, 95, 96, 99, 103, 106, 108, 118, 119, 126, 127, 128, 129, 130, 133, 134, 143, 144, 147, 148, 150, 151, 152, 153, 156, 169, 182, 183, 184, 186, 188], "period": [40, 44, 57, 58, 60, 81, 85, 86, 105, 107, 111, 112, 113, 114, 116, 117, 134, 142, 148, 151, 153, 156, 160, 186], "peripher": 133, "perman": [28, 29, 40, 43, 49, 60, 69, 81, 85, 96, 106, 111, 123, 126, 152, 153, 156, 157], "permiss": [2, 34, 43, 46, 53, 59, 60, 67, 68, 88, 101, 107, 118, 124, 129, 131, 133, 138, 142, 143, 147, 150, 156, 160], "permit": [54, 60, 126, 129, 153, 186], "persian": 4, "persist": [22, 46, 60, 85, 88, 93, 98, 106, 118, 135, 156, 162, 172], "person": [2, 28, 40, 41, 53, 60, 63, 66, 72, 77, 78, 80, 81, 85, 88, 106, 107, 108, 109, 111, 112, 114, 116, 133, 137, 151, 152, 153, 169, 175], "personnel": 93, "perspect": 15, "pertain": [26, 93], "pg_ctl": [3, 124], "pg_dump": 140, "pg_hba": 22, "pg_user": 22, "pgp": [123, 125, 131], "pgpassword": [140, 146], "pgsql": [3, 20, 22, 60, 120, 121, 156], "pgsql_ssl": 88, "pgvector": 3, "phar": [130, 147, 156], "phase": [147, 156], "philip": 154, "phone": [43, 60, 76, 77, 80, 81, 110, 113, 119, 157], "phonebook": 43, "phonescop": 77, "photo": [16, 27, 31, 81, 88, 92, 110, 153], "photor": 9, "photoshop": 60, "php": [1, 2, 3, 6, 8, 15, 16, 17, 18, 19, 20, 22, 23, 27, 28, 29, 30, 33, 35, 38, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 56, 57, 58, 60, 65, 66, 67, 68, 69, 71, 72, 73, 75, 76, 78, 79, 80, 81, 82, 83, 85, 87, 88, 93, 95, 96, 106, 107, 108, 110, 111, 112, 113, 114, 117, 118, 120, 121, 125, 127, 128, 131, 136, 137, 139, 140, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 161, 172, 178, 179, 180, 181, 183, 184, 185, 187, 188], "php7": 22, "php70": 150, "php74": 123, "php8": [129, 132], "php82_fpm": 124, "php_valu": 26, "phpdoc": 187, "phpinfo": [130, 138], "phpredi": [59, 60, 130], "physic": [13, 28, 56, 88, 96, 110, 128, 143], "pi": [60, 119, 133], "pick": [15, 22, 40, 66, 93, 143, 153, 155, 175], "picker": [1, 2, 15, 88, 173], "pickup": [0, 3, 13, 88], "pictur": [38, 47, 81, 110, 130], "pid": 156, "pin": [147, 164], "ping": [22, 63], "pipe": [60, 118, 149], "pipelin": 63, "pix": 9, "pixel": [47, 60], "pkg": 124, "pkg_add": 124, "pki": 129, "place": [1, 26, 27, 45, 56, 60, 63, 88, 114, 116, 118, 121, 124, 128, 129, 131, 132, 136, 137, 138, 142, 147, 171, 173, 174, 187], "placehold": [29, 32, 60, 81, 160], "plai": [60, 72, 132], "plain": [14, 60, 63, 70, 71, 101, 106, 129, 133, 138, 150], "plaintext": [81, 110], "plan": [2, 8, 25, 81, 125, 130, 133, 134, 148, 186], "planetexpress": 154, "platform": [31, 48, 92, 93, 119, 123, 132, 134, 135, 187], "plausibl": 2, "pleas": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 18, 22, 26, 40, 47, 56, 57, 58, 60, 66, 68, 70, 81, 85, 93, 96, 101, 102, 113, 117, 118, 123, 126, 128, 132, 133, 134, 137, 138, 142, 144, 147, 148, 150, 151, 152, 172, 180, 186, 188], "plu": [67, 187, 188], "plug": 132, "pluggabl": 80, "plugin": [96, 160, 187], "plusserv": [0, 15], "pm": [132, 133], "png": [31, 60, 72, 129, 156], "pod": 3, "pod_nam": 3, "podman": [3, 88, 133], "point": [6, 12, 15, 16, 22, 25, 26, 32, 40, 43, 46, 58, 59, 60, 61, 67, 72, 88, 95, 101, 107, 112, 113, 128, 129, 132, 133, 134, 138, 143, 147, 148, 153], "poison": 60, "polici": [12, 43, 49, 60, 64, 72, 74, 76, 81, 88, 106, 107, 108, 110, 126, 129, 130, 131, 139, 153], "policycoreutil": 123, "polish": 4, "polit": [1, 14], "poll": [2, 40, 132, 156, 187], "pomerium": 88, "pool": [59, 126, 129, 132, 133, 155], "poor": [5, 9], "pop": 81, "pop3": 63, "popul": [2, 81, 110, 133, 142, 155], "popular": [45, 95, 96], "popup": 116, "port": [8, 20, 31, 33, 37, 45, 48, 56, 59, 60, 69, 81, 82, 88, 95, 96, 97, 99, 123, 124, 126, 128, 132, 149, 151, 156, 159, 163, 165, 171], "portabl": 88, "portal": [48, 63, 102, 116, 122], "portion": 138, "portugues": [4, 5, 10], "pose": 60, "posgresql": 60, "posit": [6, 11, 29, 58, 60, 180, 186], "posix": [50, 130], "posixgroup": 81, "possibl": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 22, 25, 28, 41, 43, 44, 48, 49, 50, 54, 55, 58, 59, 60, 61, 63, 64, 77, 80, 81, 82, 84, 92, 93, 95, 96, 97, 99, 101, 102, 112, 113, 116, 118, 121, 126, 129, 130, 131, 132, 133, 134, 137, 138, 142, 143, 144, 146, 147, 149, 152, 159, 166, 172, 186, 188], "possibli": [60, 118, 126, 138], "post": [11, 17, 28, 56, 67, 75, 76, 82, 87, 118, 128, 129, 136, 149, 159, 163, 165, 187, 188], "post_allow": 159, "post_max_s": [26, 124, 133], "postaladdress": 81, "postfix": [48, 60, 63], "postgr": [22, 124, 163, 165], "postgresql": [3, 20, 60, 88, 121, 124, 128, 130, 132, 134, 151, 156, 163, 164, 165, 181, 184], "postrgresql": 25, "postscript": 60, "potenti": [12, 25, 40, 58, 60, 67, 132], "power": [3, 5, 6, 7, 9, 10, 14, 60, 101, 129, 133, 143, 161, 168], "powerpoint": 2, "powershel": 92, "ppolici": [81, 82], "ppolicy_hash_cleartext": 81, "ppt": 168, "pptx": [2, 161, 168], "pr": 136, "practic": [47, 60, 77, 107, 118, 126, 143], "pre": [50, 60, 65, 72, 88, 95, 99, 126, 128, 130, 138, 148, 152, 162, 186], "preced": [51, 60, 80, 88, 153, 160], "precis": [48, 81, 94], "precompil": 132, "preconfigur": [88, 101], "predefin": [50, 92, 93], "predict": [107, 132, 186], "prefer": [15, 20, 22, 31, 38, 53, 57, 59, 60, 63, 66, 67, 81, 83, 85, 88, 93, 115, 117, 118, 121, 129, 130, 133, 138, 156, 187], "prefil": 92, "prefix": [25, 31, 60, 65, 67, 88, 106, 114, 129, 133, 154, 156], "preinstal": 169, "preliminari": 156, "preload": [124, 126, 129], "prem": 15, "prematur": [112, 113], "premis": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 109, 119], "premium": 134, "prepar": [15, 88, 95, 110, 127, 133], "prepend": [1, 60, 129, 138, 150], "prereleas": 22, "prerequisist": 41, "prerequisit": [83, 88, 125, 127, 128, 141, 143, 162], "preseed": 60, "presenc": 187, "present": [2, 51, 54, 60, 63, 64, 67, 81, 96, 110, 119, 132, 133, 136, 147, 153, 161, 166, 167, 168, 187], "preserv": [0, 1, 4, 40, 43, 44, 85, 123, 132, 142, 146, 157, 161], "preset": 85, "press": [2, 41, 63, 93, 112, 113, 138, 175], "pretrain": 5, "pretti": [68, 88, 125, 127, 129, 188], "prettier": 133, "prevent": [26, 28, 29, 43, 45, 53, 58, 59, 60, 65, 72, 88, 93, 104, 106, 112, 116, 126, 128, 129, 132, 134, 137, 138, 140, 146, 148, 154, 180, 183], "preview": [28, 40, 46, 65, 88, 127, 130, 133, 150, 151, 160, 173], "preview_concurrency_al": [88, 180], "preview_concurrency_new": [88, 180], "preview_expiration_dai": 88, "preview_ffmpeg_path": 88, "preview_ffprobe_path": 88, "preview_format": 132, "preview_imaginary_kei": [88, 132], "preview_imaginary_url": [88, 132], "preview_libreoffice_path": 88, "preview_max_filesize_imag": 88, "preview_max_i": [47, 88], "preview_max_memori": [47, 88], "preview_max_scale_factor": 47, "preview_max_x": [47, 88], "preview_office_cl_paramet": 180, "previews_hpb": 60, "previou": [8, 22, 40, 43, 44, 81, 88, 96, 107, 110, 118, 137, 141, 146, 147, 148, 151, 155, 170, 188], "previous": [53, 67, 95, 130, 138, 170, 180, 182], "previousnam": 187, "previousvalu": 187, "primari": [1, 25, 26, 31, 46, 58, 72, 81, 82, 88, 144, 148, 153, 154], "primarili": [77, 119], "primary_color": [72, 156], "princip": [138, 151, 187], "principaluri": 138, "principl": 107, "print": [98, 132, 160, 187], "printenv": 133, "prior": [12, 26, 58, 93, 144, 187], "priorit": 12, "prioriti": [2, 16, 71, 132], "privaci": [0, 1, 4, 15, 60, 64, 70, 72, 77, 88, 106, 107, 108, 110], "privacyurl": [72, 156], "privat": [15, 32, 37, 46, 60, 63, 67, 88, 110, 113, 116, 119, 124, 126, 129, 149, 153, 157, 164], "privatedata": 20, "privatekei": [29, 153], "privileg": [22, 65, 74, 76, 81, 88, 125, 128, 156, 188], "proactiv": 43, "probabl": [48, 81, 129, 167], "probe": 126, "problem": [2, 3, 5, 6, 7, 8, 9, 10, 11, 28, 33, 43, 58, 59, 60, 67, 70, 81, 88, 112, 113, 129, 131, 132, 133, 137, 139, 143, 147, 156, 186], "problemat": [2, 3, 5, 6, 7, 8, 9, 10, 11, 58, 147], "proc": [3, 132], "proce": [29, 108, 116, 123, 147, 151, 165], "procedur": [12, 28, 77, 93, 107, 147, 156], "proceed": [28, 142, 148, 153], "process": [2, 3, 4, 5, 6, 7, 8, 12, 14, 18, 22, 26, 28, 38, 44, 51, 57, 60, 81, 83, 88, 92, 93, 95, 97, 99, 110, 115, 123, 126, 129, 130, 134, 137, 138, 142, 147, 148, 150, 152, 153, 155, 157, 164, 187], "process_idle_timeout": 132, "processor": 132, "produc": [5, 8, 11, 67, 107, 111, 132, 153], "product": [2, 3, 4, 5, 7, 12, 20, 28, 58, 60, 67, 81, 107, 123, 126, 128, 131, 132, 133, 138, 151, 156, 161, 162, 164], "productnam": 156, "profession": [11, 15, 28, 134, 138], "profil": [40, 43, 74, 84, 88, 93, 111, 113, 114, 126, 131, 150, 180], "profile_en": 157, "profile_enabled_by_default": 77, "profile_secret": 60, "profilepag": 60, "profit": 138, "program": [12, 57, 63, 92, 93, 95, 143, 150], "programm": 81, "programmat": 83, "progress": [14, 28, 44, 49, 56, 58, 60, 150], "project": [2, 48, 84, 88, 119, 125, 137, 153, 156, 186, 187], "prometheu": 184, "promin": [182, 188], "promot": [81, 88, 155], "prompt": [0, 2, 3, 5, 12, 22, 32, 81, 88, 93, 116, 125, 133, 145, 150, 151, 152, 153, 165, 188], "pronoun": [77, 157], "pronounsscop": 77, "proof": 25, "propag": [40, 51], "proper": [58, 60, 68, 88, 132, 137, 138, 147, 151, 153, 180], "properli": [9, 28, 55, 58, 60, 65, 66, 86, 88, 93, 99, 126, 130, 137, 138, 142, 152, 156, 166], "properti": [60, 74, 81, 85, 88, 92, 93, 157, 187, 188], "property_address": 77, "property_avatar": 77, "property_biographi": 77, "property_birthd": 77, "property_blueski": 77, "property_displaynam": 77, "property_email": 77, "property_fedivers": 77, "property_headlin": 77, "property_organis": 77, "property_phon": [60, 77], "property_pronoun": 77, "property_rol": 77, "property_twitt": 77, "property_websit": 77, "propfind": [40, 67, 93, 132], "propget": 93, "propos": 12, "proprietari": [8, 15], "prospect": 186, "protect": [3, 28, 29, 41, 43, 56, 63, 64, 65, 69, 70, 88, 102, 107, 109, 110, 133, 147, 156, 160], "proto": 63, "protocol": [2, 8, 12, 36, 37, 56, 60, 69, 82, 88, 93, 95, 96, 97, 99, 118, 126, 159, 164, 172], "prototyp": 96, "provid": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 22, 25, 28, 29, 31, 32, 34, 36, 38, 40, 42, 46, 47, 48, 50, 56, 58, 59, 60, 61, 65, 67, 68, 69, 70, 72, 74, 76, 81, 82, 85, 88, 92, 93, 94, 97, 106, 109, 112, 113, 114, 116, 119, 120, 123, 124, 126, 128, 129, 130, 132, 133, 134, 137, 138, 143, 145, 147, 153, 156, 157, 159, 160, 169, 173, 178, 180, 181, 182, 183, 184, 186, 187, 188], "provider_id": [80, 157], "providerfactori": 60, "provis": [48, 74, 77, 84, 88, 116], "provisioning_api": [17, 149], "proxi": [2, 16, 48, 65, 70, 88, 97, 99, 100, 110, 128, 133, 143, 147, 160, 162, 167, 169], "proxy_add_x_forwarded_for": 129, "proxy_buff": 26, "proxy_connect_timeout": [96, 129], "proxy_fcgi": 133, "proxy_hide_head": 69, "proxy_http": 166, "proxy_max_temp_file_s": 26, "proxy_pass": 96, "proxy_protocol": 96, "proxy_read_timeout": 129, "proxy_send_timeout": 129, "proxy_set": [166, 167, 170, 171], "proxy_set_head": 129, "proxy_timeout": 96, "proxy_wstunnel": 166, "proxyexclud": 88, "proxyfcgibackendtyp": 133, "proxypass": [96, 166], "proxypassmatch": 166, "proxypassrevers": [96, 166], "proxypreservehost": 166, "proxytimeout": [26, 132], "proxyuserpwd": 88, "prune": [44, 99, 107, 118], "pseudo": 126, "psql": [22, 146, 163, 165], "pt6h": 112, "public": [2, 16, 17, 22, 37, 40, 43, 46, 58, 60, 63, 69, 70, 77, 81, 85, 88, 96, 99, 101, 108, 110, 119, 123, 124, 126, 129, 133, 155, 157, 160, 174, 175], "public_html": 33, "publiccalendar": 112, "publickei": 29, "publicli": [5, 12, 18, 29, 118, 133, 149], "publish": [2, 12, 60, 77, 96, 110, 155, 186], "pubshare_": 29, "pull": [81, 88, 129, 136, 164, 166, 170, 174, 175, 180], "punctuat": 4, "pure": 3, "purg": [107, 112, 163, 165], "purpos": [12, 20, 43, 48, 49, 57, 58, 60, 106, 107], "push": [40, 53, 110, 112, 126, 137, 153, 156], "pushfe": 126, "put": [2, 18, 23, 26, 28, 48, 60, 63, 69, 75, 76, 77, 81, 82, 88, 118, 124, 128, 133, 138, 140, 142, 143, 148, 188], "putsizelimit": 48, "pwa": 60, "pwd": [96, 163, 165], "px": 72, "px65ty5drhqkype5hrsdvyfhlzzhcm": 128, "py": 18, "python": [3, 123], "q": [22, 63, 150], "q16": 72, "q3": 2, "qmail": [60, 65, 88], "quali": 126, "qualifi": [12, 41, 63, 156, 187], "qualiti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 57, 88, 132, 153, 186], "quantiz": [5, 7], "queri": [1, 3, 15, 24, 25, 43, 60, 67, 76, 81, 87, 111, 112, 114, 128, 132, 138, 148, 150, 187, 188], "query_cache_limit": 22, "query_cache_min_res_unit": 22, "query_cache_s": 22, "query_cache_typ": 22, "query_log_fil": 88, "query_log_file_backtrac": 88, "query_log_file_paramet": 88, "query_log_file_requestid": 88, "question": [1, 2, 3, 13, 20, 22, 60, 77, 81, 88, 118, 147, 150], "queu": [53, 132, 156], "queue": [3, 53, 88, 132], "quic": 129, "quick": [2, 56, 64, 88, 116, 127, 133, 162], "quickest": 164, "quickli": [16, 50, 85, 93, 154], "quickstart": [88, 141], "quiet": [44, 49, 56, 92, 150, 153], "quit": [19, 22, 56, 63, 125, 144, 148, 152], "quot": [60, 82, 96], "quota": [26, 28, 44, 49, 60, 74, 76, 81, 82, 87, 88, 107, 111, 139, 157], "quota_include_external_storag": [85, 88], "qwen": 2, "r": [7, 10, 28, 34, 69, 82, 121, 123, 125, 130, 133, 136, 138, 142], "rabbitmq": [163, 164, 165], "race": [7, 70], "rackspac": 36, "rainloop": [88, 127], "rais": [12, 22, 26, 60, 132, 138], "ralph": 2, "ram": [2, 3, 4, 5, 6, 9, 10, 11, 132, 134, 162, 163, 164, 165], "ramdisk": 60, "ran": [6, 70, 180], "rand": 48, "random": [29, 40, 48, 81, 106, 110, 118, 126, 128, 164], "random_byt": 29, "randomli": [60, 106], "rang": [48, 58, 60, 67, 69, 88, 95, 96, 101, 127, 132, 148, 161, 164], "rank": 156, "rapid": 186, "rapidli": 186, "rar": 56, "rare": [28, 31, 48, 60, 146], "raspberri": [60, 119], "rate": [0, 5, 7, 13, 88, 108, 115, 128], "ratelimit": 88, "ratelimit_overwrit": 88, "ratelimitaddressbookcr": 113, "ratelimitcalendarcr": 112, "ratelimitperiodaddressbookcr": 113, "ratelimitperiodcalendarcr": 112, "rather": [16, 32, 35, 41, 45, 60, 63, 81, 92, 111, 114, 129, 132, 138, 147, 153, 156, 180], "ration": 60, "raw": [15, 29, 71, 81, 96, 137, 138], "rc4": 152, "rcctl": 124, "re": [4, 18, 22, 26, 28, 31, 40, 43, 48, 53, 54, 56, 58, 59, 60, 63, 70, 77, 81, 85, 92, 94, 96, 101, 107, 111, 116, 118, 128, 129, 133, 134, 138, 142, 143, 147, 148, 152, 153, 157, 164, 182, 183, 186], "reach": [40, 43, 58, 60, 67, 70, 81, 95, 99, 123, 126, 133, 134, 138, 143, 144, 145, 147, 148, 151, 160, 162, 172, 180, 186], "reachabl": [8, 58, 60, 69, 77, 88, 95, 96, 99, 129, 133, 138, 143, 156, 160, 180, 188], "react": [2, 150, 188], "reaction": [2, 110], "read": [2, 24, 26, 36, 40, 46, 53, 56, 59, 60, 61, 65, 67, 68, 69, 72, 74, 77, 79, 88, 101, 107, 112, 113, 114, 118, 123, 124, 129, 133, 134, 135, 137, 151, 152, 153, 156, 157, 159, 160, 182, 183, 184], "read_timeout": [59, 60], "readabl": [12, 27, 34, 60, 65, 81, 88, 129, 151, 152, 153, 155, 156, 157], "reader": [20, 156], "readi": [40, 60, 81, 99, 133, 164, 172, 186], "readili": 28, "readm": [3, 18, 84, 95, 96, 99, 124, 133], "readonli": 187, "real": [1, 4, 5, 7, 9, 10, 12, 14, 38, 69, 118, 128, 129, 132, 156, 161, 168, 186, 187], "real_ip_head": 129, "realiz": 15, "realli": [126, 152, 156], "reallysuppress": 92, "realtim": 58, "reappear": 107, "reason": [5, 15, 48, 52, 58, 60, 63, 64, 70, 81, 92, 107, 110, 118, 120, 126, 128, 130, 131, 132, 133, 134, 138, 143, 166, 180, 182, 183, 184], "reassign": 101, "reboot": 88, "rebuild": 156, "recalcul": 81, "receiv": [15, 41, 43, 54, 60, 63, 69, 81, 84, 85, 88, 108, 111, 116, 123, 134, 137, 148, 150, 153, 186, 187, 188], "recent": [26, 43, 44, 58, 81, 88, 107, 110, 115, 132, 143, 156, 157, 164, 166, 170], "recid": 126, "recip": 2, "recipi": [29, 41, 60, 111, 114, 116, 118, 153, 156], "reclaim": 44, "recogn": [8, 13, 15, 60, 64, 77, 81, 88], "recognis": 32, "recognit": [15, 88], "recommend": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 22, 26, 27, 28, 30, 38, 39, 40, 42, 45, 53, 57, 58, 60, 64, 65, 67, 68, 69, 70, 77, 81, 88, 93, 95, 96, 101, 107, 118, 124, 125, 126, 127, 128, 129, 132, 133, 134, 137, 138, 140, 144, 145, 146, 148, 149, 151, 152, 156, 159, 162, 166, 169, 173, 178, 179, 180, 182, 183, 186, 187, 188], "recommended": 186, "recommended_fil": 15, "reconcili": 60, "record": [12, 53, 60, 67, 80, 82, 93, 107, 110, 111, 114, 118, 132, 143, 151, 153, 156], "recov": [28, 29, 78, 85, 88, 146, 153], "recoveri": [46, 80, 88, 107, 141, 152, 153], "recoverykey_": 29, "recreat": [96, 146], "rectif": 88, "recurs": [153, 156], "recv": 63, "recycl": 132, "red": [15, 40, 41, 59, 93, 133, 134], "redact": [93, 118], "reddit": [174, 175], "redeploi": 3, "redhat": 56, "redi": [26, 45, 65, 70, 88, 127, 130, 135, 143, 149, 163, 164, 165], "redir": 69, "redirect": [60, 64, 67, 68, 69, 70, 88, 92, 95, 96, 99, 116, 129, 133, 138], "redirectregex": 69, "redis_log_fil": 88, "redis_server_host": 164, "redisclust": [59, 60], "reduc": [5, 7, 40, 58, 60, 77, 81, 88, 107, 118, 127, 129, 138, 186], "reduce_to_languag": 88, "redund": 44, "refer": [3, 12, 22, 28, 29, 40, 43, 56, 57, 59, 60, 63, 65, 70, 81, 88, 99, 107, 117, 118, 123, 127, 128, 136, 138, 148, 174, 180, 187, 188], "referenc": [14, 18, 29, 138, 155], "reference_opengraph": 88, "referr": [126, 129], "refil": 59, "reflect": [60, 69, 129, 143, 156], "refman": [60, 134], "reformat": 81, "reformul": 1, "refresh": [59, 60, 81, 88, 145, 155, 156], "refus": 153, "regard": [84, 118, 130, 135, 186], "regardless": [15, 31, 43, 48, 58, 60, 67, 69, 77, 81, 107, 128, 149, 156, 186], "regener": [32, 143, 153, 156, 164], "regex": [69, 126, 129], "region": [31, 36, 48, 60, 153], "regionon": [48, 60], "regist": [3, 4, 8, 15, 57, 60, 88, 95, 96, 100, 112, 116, 143, 153, 156, 157, 173, 174], "registr": [57, 116], "registrar": 133, "regress": 134, "regul": 109, "regular": [26, 29, 46, 56, 57, 60, 69, 88, 92, 101, 114, 147, 148, 169, 187], "regularli": [12, 15, 53, 57, 107, 133, 148, 151, 186], "regulatori": 109, "reinforc": 5, "reinstal": [3, 92, 138, 144, 163, 165], "reject": [38, 88], "rel": [18, 29, 133, 157], "relai": 143, "relat": [3, 13, 15, 26, 53, 55, 56, 58, 60, 67, 72, 75, 76, 77, 81, 88, 93, 95, 96, 113, 118, 127, 130, 132, 133, 135, 136, 143, 151, 154, 181, 182, 183, 186], "relationship": [55, 77], "relax": 60, "releas": [2, 4, 12, 16, 45, 56, 93, 96, 123, 125, 126, 130, 132, 133, 134, 136, 137, 141, 144, 145, 147, 148, 149, 150, 163, 164, 165, 166, 167, 170, 184, 185], "relev": [0, 1, 3, 15, 26, 28, 51, 59, 77, 81, 93, 116, 124, 126, 129, 143, 186], "reli": [12, 15, 18, 28, 40, 53, 84, 92, 117, 134, 173, 175, 185, 186], "reliabl": [13, 14, 38, 53, 56, 57, 59, 60, 70, 81, 88, 92, 130, 134, 138, 142, 143, 172], "reliev": 45, "reload": [40, 64, 96, 123, 132, 133], "remain": [3, 28, 40, 43, 60, 77, 81, 85, 96, 108, 111, 116, 124, 129, 143, 152, 153], "remedi": [60, 113, 138], "rememb": [60, 81, 85, 88, 92, 110, 123, 124, 131, 188], "remember_login_cookie_lifetim": [88, 106, 107, 110], "remi": 123, "remind": [88, 115], "remirepo": 88, "remnant": [20, 60, 81, 83, 88], "remot": [2, 3, 17, 22, 33, 35, 37, 38, 39, 41, 43, 56, 59, 60, 63, 67, 69, 70, 73, 81, 88, 92, 93, 95, 97, 101, 110, 111, 112, 114, 116, 118, 124, 127, 129, 133, 134, 138, 147, 149, 156, 184], "remote_addr": [60, 129], "remoteaddr": [67, 126], "remotedirpath": 92, "remoteport": [96, 97], "remov": [2, 3, 11, 16, 20, 26, 28, 30, 43, 44, 53, 54, 58, 60, 63, 70, 74, 75, 77, 81, 83, 85, 87, 88, 92, 96, 98, 99, 101, 102, 105, 107, 108, 111, 112, 113, 114, 116, 118, 120, 126, 129, 131, 133, 135, 137, 147, 149, 152, 153, 155, 157, 163, 164, 165, 166, 170, 172, 179, 180, 183], "removeus": 88, "renam": [38, 45, 50, 60, 74, 88, 142, 153, 157, 170, 187], "render": [9, 60, 71, 161, 168, 173, 174], "renew": 133, "rep": 153, "repair": [2, 23, 28, 51, 60, 88, 142, 148, 150], "repeat": [31, 58, 99, 143, 156], "repeatedli": [6, 126, 129, 132], "replac": [11, 15, 22, 28, 29, 48, 51, 57, 60, 61, 63, 69, 72, 81, 88, 96, 111, 112, 123, 125, 126, 127, 130, 133, 137, 138, 143, 147, 148, 149, 151, 153, 156, 163, 164, 165, 166, 178, 181, 187], "repli": [2, 63, 116], "replic": [0, 1, 15, 21, 25, 88, 153, 175], "replica": [24, 60, 81, 82], "replica1": 60, "replica2": 60, "repo": 167, "report": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 58, 60, 70, 81, 88, 89, 93, 119, 131, 132, 138, 149, 152, 153, 155, 156, 172, 181, 182, 183], "repositori": [13, 29, 56, 58, 88, 119, 123, 163, 170, 174, 175, 186], "repres": [29, 44, 47, 118, 187, 188], "represent": 156, "reproduc": 70, "reqid": 67, "request": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 22, 26, 31, 32, 36, 40, 48, 58, 59, 67, 68, 69, 70, 76, 77, 81, 84, 85, 87, 88, 92, 93, 95, 96, 97, 99, 101, 106, 107, 109, 110, 118, 120, 124, 126, 129, 130, 132, 134, 136, 137, 138, 155, 159, 160, 171, 174, 175, 180, 187, 188], "request_checksum_calcul": [60, 183], "request_slowlog_timeout": 132, "request_terminate_timeout": 132, "request_timeout": [26, 41, 88], "request_uri": 129, "requestreadtimeout": 26, "requir": [1, 13, 15, 16, 17, 18, 21, 23, 26, 28, 29, 31, 32, 33, 36, 37, 38, 40, 41, 42, 45, 47, 48, 49, 50, 53, 55, 56, 57, 58, 59, 60, 63, 67, 70, 72, 76, 77, 80, 81, 82, 87, 88, 93, 95, 96, 97, 99, 106, 107, 108, 110, 116, 120, 125, 126, 127, 128, 129, 131, 132, 133, 137, 138, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 159, 160, 161, 162, 166, 168, 169, 170, 172, 186, 187], "rerun": 28, "rescan": [40, 88, 139, 142, 153, 156], "resembl": 12, "resend": 88, "reserv": [50, 114, 182], "reset": [26, 28, 58, 59, 60, 63, 67, 74, 81, 88, 110, 112, 113, 118, 123, 129, 132, 138, 147, 152, 153, 157, 178], "resetpassword": [78, 88], "reshar": 43, "resid": [22, 96, 131], "resist": 58, "resiz": 81, "resolut": [9, 172, 180], "resolv": [28, 40, 58, 60, 65, 88, 93, 96, 114, 124, 126, 147, 148, 174, 180], "resolveexappurl": 96, "resourc": [0, 1, 7, 10, 15, 28, 29, 43, 47, 51, 57, 58, 60, 72, 88, 95, 113, 115, 118, 126, 127, 132, 133, 138, 142, 145, 188], "respect": [0, 3, 7, 12, 15, 22, 44, 53, 57, 60, 77, 95, 96, 112, 116, 187], "respond": [52, 60, 88, 99, 101, 108, 109, 132], "respons": [2, 12, 14, 29, 65, 67, 88, 92, 96, 110, 119, 126, 129, 138, 147, 174, 183, 188], "response_checksum_valid": [60, 183], "rest": [28, 118, 123, 132, 138, 156], "restart": [3, 5, 7, 11, 15, 22, 23, 56, 59, 93, 96, 123, 126, 129, 130, 132, 133, 138, 142, 164, 166, 167, 187], "restor": [23, 29, 44, 60, 88, 107, 138, 140, 141, 142, 143, 147, 148, 151, 156, 186, 187], "restorecon": [123, 131], "restrict": [3, 16, 33, 40, 43, 60, 68, 76, 77, 82, 88, 92, 101, 104, 105, 110, 112, 113, 118, 127, 138, 149, 156, 157, 160, 179, 184], "result": [2, 6, 9, 12, 23, 28, 29, 53, 60, 63, 77, 81, 82, 92, 93, 95, 96, 116, 118, 128, 129, 132, 133, 137, 151, 153, 156, 160, 180, 187, 188], "resum": [60, 188], "resync": 113, "retain": [12, 14, 40, 43, 44, 53, 77, 106, 107, 110, 111, 140], "retent": [44, 49, 60, 88, 102, 104, 109, 110, 111, 115, 153, 157], "rethink": 107, "retir": 88, "retrain": 186, "retreat": 2, "retri": [60, 147, 166], "retriesmaxattempt": 60, "retriev": [2, 29, 59, 60, 69, 75, 76, 81, 82, 88, 111, 156, 188], "retroact": [53, 60], "return": [17, 26, 28, 29, 40, 41, 56, 57, 58, 59, 60, 63, 65, 69, 75, 76, 81, 82, 88, 92, 96, 112, 123, 124, 129, 132, 133, 138, 149, 157, 164, 174, 188], "reus": 118, "revalid": 88, "revalidate_freq": [124, 132], "reveal": 172, "revers": [28, 60, 65, 70, 88, 95, 99, 128, 133, 136, 143, 152, 160, 162, 167, 169], "reverse_proxi": 69, "revert": [88, 93, 112, 139, 145, 147, 148, 152], "review": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 56, 58, 60, 67, 126, 138, 142, 143, 148, 157, 160, 180, 182, 186], "revis": [142, 148], "revisit": [132, 142, 148], "revok": [54, 60, 107], "rewrit": [113, 129, 133, 138, 156, 180], "rewritebas": [88, 133], "rewriteengin": [69, 138], "rewriterul": [69, 138], "rewritten": 129, "rf": 131, "rfc": [60, 80, 126, 151, 155], "rfc6749": 68, "rh": [123, 150], "rhel": [132, 133], "rich": [65, 88, 174], "rich_editing_en": 71, "richdocu": 180, "richdocumentscod": 129, "rid": [47, 152], "right": [1, 25, 33, 59, 60, 76, 81, 85, 88, 107, 108, 112, 129, 133, 142, 147, 180, 187], "rim": 129, "risk": [12, 28, 34, 60, 63, 126, 129, 132, 138, 147, 148, 186], "riski": 12, "rm": [98, 146, 164, 166], "rmi": 164, "rmm": 92, "ro": 8, "roadmap": 12, "roam": 93, "rob": 154, "robbi": 154, "robert": 154, "roberta": 154, "robin": [17, 154], "robot": [126, 129], "robust": [13, 88, 133, 145], "rocm": [95, 97, 99], "role": [60, 77, 81, 85], "rolescop": 77, "roll": 186, "rollout": 92, "roman": 2, "room": [8, 88, 115, 153, 156], "root": [16, 22, 28, 33, 35, 37, 39, 40, 48, 60, 82, 85, 88, 92, 102, 118, 120, 121, 123, 124, 125, 128, 129, 131, 132, 133, 136, 137, 138, 147, 150, 153], "rootcert": 60, "ropa": 110, "rotat": [4, 67, 88, 100, 107, 110, 130, 150, 156], "rough": [5, 7, 9, 10, 15, 60], "round": 29, "rout": [2, 60, 96, 110, 129], "router": [60, 69], "routin": [150, 153, 186], "row": [22, 23, 40, 118, 134, 151, 182, 187], "row_format": [23, 60], "rowaddedev": 187, "rowdeletedev": 187, "rowid": 187, "rowupdatedev": 187, "rpm": [123, 160], "rsa": [29, 32, 40], "rss": [129, 132], "rsync": [93, 140, 143, 146], "rt": 188, "rtrim": 96, "rtx": 95, "rule": [13, 44, 60, 81, 82, 86, 88, 96, 103, 104, 105, 123, 126, 129, 133, 147, 156, 159, 171], "ruleset": 131, "run": [0, 1, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 19, 21, 22, 23, 26, 28, 30, 38, 40, 44, 45, 47, 48, 49, 50, 53, 56, 57, 58, 59, 60, 63, 65, 69, 80, 81, 83, 88, 92, 93, 95, 96, 97, 107, 111, 112, 113, 114, 117, 118, 119, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 137, 138, 140, 142, 143, 144, 146, 147, 149, 151, 152, 153, 154, 155, 160, 162, 163, 164, 165, 166, 167, 169, 172, 180, 185, 186, 187], "runner": [15, 157], "runtim": [82, 88, 92, 134, 156], "runus": 150, "russian": 4, "rv": 131, "rw": 82, "s01": [81, 82, 154], "s02": 82, "s1_nextcloud": 48, "s2_nextcloud_": 48, "s3": [26, 28, 40, 46, 60, 88, 143, 153], "s_time": 118, "sabr": 138, "sabredav": [133, 138, 187], "safari": [67, 134], "safe": [15, 19, 20, 28, 44, 59, 60, 63, 68, 95, 123, 125, 129, 130, 138, 143, 147, 152, 153, 156], "safest": 101, "safeti": 64, "sai": [2, 63, 147], "said": [12, 15], "sake": 123, "sale": [16, 149], "salt": [29, 60], "samaccountnam": 81, "samba": [28, 38], "same": [2, 3, 5, 12, 14, 15, 20, 22, 25, 26, 28, 29, 32, 38, 41, 43, 45, 48, 51, 56, 58, 59, 60, 63, 67, 69, 70, 77, 81, 87, 88, 92, 93, 95, 97, 98, 101, 106, 110, 112, 113, 114, 118, 123, 124, 126, 129, 133, 135, 136, 138, 143, 145, 147, 148, 149, 150, 151, 153, 156, 157, 159, 160, 162, 164, 166, 172, 180, 181, 182, 183, 187, 188], "sameorigin": [126, 129], "samesit": [60, 106], "saml": [29, 32, 85, 111, 132, 157], "sampl": [26, 45, 88, 120, 124, 149], "sandbox": 133, "sanit": [46, 88], "sapi": 130, "satisfi": [56, 67, 77, 128, 133], "saturdai": 2, "save": [32, 38, 40, 44, 45, 48, 58, 63, 64, 71, 81, 93, 95, 108, 114, 116, 118, 129, 152, 160, 188], "save_com": [124, 132], "sbin": [60, 63, 133], "scalabl": [48, 119, 132, 133, 145, 169, 172], "scale": [13, 20, 25, 48, 60, 88, 107, 119, 134, 138], "scan": [3, 30, 32, 38, 40, 60, 65, 70, 88, 93, 137, 138, 142, 146, 150], "scanfil": 156, "scanner": [40, 60, 63, 65, 88, 156], "scenario": [8, 15, 22, 28, 48, 53, 60, 89, 92, 126, 135, 146, 169, 187], "scene": 15, "schedul": [2, 8, 14, 15, 44, 56, 57, 60, 65, 81, 88, 92, 107, 112, 115, 117, 148, 149, 151, 156, 187], "scheduledaft": [14, 156], "scheduledat": 14, "schema": [20, 22, 25, 88, 135, 144, 147, 153, 156], "scheme": [29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 69, 96], "school": 138, "scl": 150, "scope": [8, 22, 48, 60, 68, 74, 81, 88, 98, 110, 137, 153, 156, 157], "scope_feder": 77, "scope_priv": [60, 77], "score": 5, "scratch": [80, 133, 147], "screen": [41, 63, 78, 79, 88, 108, 120, 133, 147, 156, 188], "screenshar": 134, "screenshot": [27, 64], "script": [15, 48, 57, 59, 60, 67, 88, 92, 121, 127, 129, 132, 150, 156, 157, 159, 163, 165, 187], "script_filenam": 129, "scriptnam": 67, "scroll": [41, 85, 111, 112, 113, 116, 147], "sdk": [6, 123, 131, 159, 166, 167, 169, 170, 171, 183], "sdkref": [60, 183], "seal": 88, "sealert": 131, "seamless": [81, 187], "search": [3, 20, 28, 43, 51, 60, 77, 81, 82, 83, 88, 95, 112, 126, 130, 132, 133, 138, 143, 157, 160, 173], "sec": [22, 23, 82, 118], "second": [1, 15, 26, 36, 41, 43, 44, 48, 58, 60, 68, 70, 73, 77, 80, 81, 85, 101, 106, 112, 116, 118, 126, 132, 133, 137, 138, 149, 156, 157, 166, 187], "second_admin": 53, "secondari": [40, 80], "secr3tpasswordt7": [48, 60], "secret": [8, 17, 28, 29, 31, 32, 37, 48, 68, 75, 76, 82, 88, 116, 126, 132, 143, 149, 152, 153, 156, 159, 160, 164], "secretvalu": 48, "section": [0, 1, 3, 4, 6, 8, 12, 15, 26, 28, 32, 41, 43, 48, 50, 54, 57, 59, 60, 63, 70, 72, 81, 85, 86, 92, 93, 96, 99, 101, 102, 111, 112, 113, 116, 117, 118, 119, 120, 128, 129, 132, 133, 138, 144, 147, 148, 149, 153, 156, 160, 166, 172, 186], "secur": [8, 13, 16, 22, 28, 29, 32, 33, 34, 39, 41, 45, 47, 58, 59, 63, 64, 65, 69, 80, 86, 88, 93, 97, 107, 108, 110, 111, 112, 118, 123, 127, 128, 129, 130, 131, 133, 134, 137, 138, 144, 145, 148, 150, 157, 161, 163, 166, 184, 186], "see": [0, 1, 2, 3, 4, 7, 11, 15, 16, 18, 22, 23, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45, 47, 48, 51, 53, 54, 56, 58, 59, 60, 63, 67, 68, 70, 74, 78, 81, 82, 83, 85, 88, 92, 93, 95, 96, 99, 101, 102, 107, 108, 110, 111, 112, 113, 114, 116, 118, 119, 121, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 169, 172, 177, 178, 179, 181, 182, 183, 184, 187, 188], "seed": [59, 60, 88, 162], "seem": [3, 60, 63, 70, 147], "seen": [60, 93, 95, 102, 113, 137, 154], "segment": 26, "segreg": 126, "select": [1, 2, 3, 4, 5, 7, 8, 12, 22, 28, 29, 31, 40, 41, 43, 54, 57, 58, 59, 60, 63, 64, 80, 81, 85, 92, 106, 107, 110, 111, 116, 128, 132, 138, 147, 149, 151, 153, 160, 163, 165, 188], "selector": [88, 150], "self": [0, 1, 2, 12, 15, 33, 46, 60, 88, 93, 96, 108, 114, 116, 133, 156, 158, 168, 178], "selfiephoto": 81, "selinux": [40, 60, 81, 88, 127], "semanag": [123, 131], "semant": 3, "semaphor": 130, "semi": 59, "semicolon": 60, "send": [2, 8, 12, 17, 18, 41, 43, 53, 60, 65, 66, 67, 68, 75, 76, 82, 85, 88, 93, 96, 108, 112, 114, 115, 126, 128, 131, 133, 147, 153, 156, 157, 160, 173, 178, 187, 188], "send_timeout": 129, "sendemail": 157, "sender": [63, 116], "sendeventremindersmod": [112, 151], "sendfil": 138, "sendmail": [60, 65, 88, 127], "sens": [25, 53], "sensibl": 47, "sensit": [15, 50, 53, 57, 58, 60, 81, 88, 93, 118, 126, 133, 138, 149], "sent": [12, 40, 60, 63, 67, 81, 88, 96, 110, 112, 116, 118, 151, 156, 157, 188], "sentri": 118, "separ": [3, 5, 7, 9, 10, 15, 22, 25, 26, 38, 41, 60, 61, 63, 67, 81, 82, 93, 95, 99, 111, 120, 148, 149, 156, 157, 188], "septemb": 4, "sequenc": [156, 184], "seri": [174, 175, 183], "serial": 60, "serializer_igbinari": 60, "seriou": 138, "serious": 70, "serv": [3, 5, 7, 26, 60, 63, 69, 70, 81, 88, 101, 119, 127, 133, 143, 147, 159, 166, 180, 181, 183], "server": [0, 1, 3, 4, 5, 6, 7, 12, 13, 15, 16, 17, 18, 19, 20, 23, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 45, 46, 47, 48, 50, 51, 52, 56, 57, 58, 64, 65, 67, 68, 69, 72, 75, 76, 77, 78, 79, 82, 83, 85, 88, 91, 92, 95, 96, 97, 99, 105, 106, 111, 115, 117, 118, 119, 120, 121, 123, 124, 125, 128, 129, 130, 135, 137, 139, 140, 141, 142, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 161, 162, 163, 164, 165, 168, 169, 171, 172, 174, 177, 184, 185, 186, 187], "server0": 59, "server1": [48, 59, 128], "server2": [48, 59], "server3": 48, "server_log": 88, "server_nam": [69, 96, 124, 129], "server_token": 129, "serveraddr": 96, "serverid": [88, 143], "serverinfo": [59, 138, 180], "servernam": [96, 123, 126, 133], "servernotavailableexcept": 156, "serverport": 96, "serverroot": [16, 60], "serverurl": 92, "servic": [1, 2, 3, 5, 12, 13, 22, 31, 32, 36, 40, 56, 57, 58, 59, 60, 63, 65, 67, 68, 70, 72, 81, 82, 84, 88, 93, 99, 106, 108, 123, 124, 126, 132, 133, 139, 143, 153, 156, 157, 159, 160, 163, 165, 167, 169, 170, 173, 175, 186], "servicenam": [48, 60], "session": [32, 38, 40, 43, 65, 77, 88, 92, 93, 106, 118, 129, 130, 140, 143, 148, 150, 153, 156, 157], "session_keepal": 88, "session_lifetim": [26, 88], "session_relaxed_expiri": 88, "sessioncredenti": 153, "set": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 15, 16, 18, 20, 22, 23, 26, 27, 30, 31, 32, 33, 34, 36, 38, 40, 41, 44, 45, 46, 48, 49, 50, 54, 55, 56, 57, 59, 60, 61, 62, 64, 65, 66, 68, 69, 71, 72, 73, 74, 80, 82, 83, 84, 86, 87, 88, 92, 93, 94, 95, 96, 97, 99, 101, 102, 103, 105, 106, 107, 108, 110, 111, 113, 114, 115, 116, 117, 118, 120, 124, 125, 126, 127, 128, 129, 131, 134, 137, 138, 140, 142, 143, 144, 146, 147, 148, 150, 153, 155, 161, 163, 164, 165, 167, 172, 178, 179, 180, 182, 186, 187], "set_real_ip_from": 129, "setenv": [126, 133], "setenvif": 133, "setroubleshoot": 131, "setsebool": [123, 131], "settingclass": 156, "settl": 22, "setup": [0, 2, 3, 4, 5, 7, 9, 10, 11, 16, 22, 28, 32, 40, 44, 48, 49, 57, 58, 60, 62, 63, 69, 80, 81, 88, 91, 93, 96, 97, 100, 123, 127, 128, 129, 132, 133, 134, 138, 143, 144, 148, 149, 150, 151, 152, 166, 167, 169, 170, 171, 178, 181, 182], "setup_create_db_us": 128, "setupcheck": 156, "sever": [3, 12, 26, 28, 58, 60, 63, 77, 92, 96, 98, 107, 108, 111, 116, 126, 129, 130, 132, 133, 138, 143, 148, 153, 156, 169, 186], "sf": [16, 124], "sftp": [32, 40, 60, 88, 130, 153], "sgi": 60, "sh": [15, 133, 187], "sha": 147, "sha256": [29, 123, 125, 155], "sha256_cert_fingerprint": 55, "sha256sum": [123, 125], "sha512": [29, 147], "sha512sum": 147, "shall": [60, 66, 81], "shallow": [40, 153], "share": [3, 22, 38, 40, 45, 59, 63, 65, 70, 77, 81, 85, 88, 93, 95, 96, 97, 101, 102, 107, 108, 110, 111, 114, 115, 119, 124, 126, 131, 133, 135, 139, 142, 146, 147, 150, 155, 157, 159, 160, 164, 167, 175, 187], "share20": [60, 156], "share_fold": 88, "shareabl": 114, "shareapi_restrict_user_enumeration_full_match_email": 43, "shareapi_restrict_user_enumeration_full_match_ignore_second_display_nam": 43, "shareapi_restrict_user_enumeration_full_match_userid": 43, "sharebymail": 60, "shared_secret": [60, 67], "sharekei": 29, "sharer": [110, 153], "shares_extern": 153, "sharescount": 60, "sharesreminderjob": 156, "sheet": 183, "shell": [15, 23, 57, 60, 150, 187], "shellextens": 92, "shibbol": 159, "ship": [4, 5, 16, 17, 18, 27, 51, 53, 54, 58, 60, 61, 72, 81, 88, 113, 114, 123, 126, 129, 132, 147, 149, 153, 154, 156, 173, 181, 184], "shm_size": [59, 182], "shop": 2, "short": [60, 77, 81, 83, 95, 106, 112, 113, 116, 138, 151], "shortcut": [88, 92], "shorten": 106, "shorter": [29, 133], "shortli": 105, "should": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 19, 20, 22, 23, 27, 29, 36, 38, 39, 40, 41, 45, 51, 56, 57, 59, 60, 63, 66, 67, 68, 69, 71, 77, 81, 82, 85, 92, 93, 95, 96, 97, 99, 101, 105, 112, 113, 116, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 138, 143, 144, 147, 148, 150, 151, 159, 166, 171, 178, 179, 182, 184, 186, 187, 188], "shouldn": 60, "show": [1, 2, 3, 7, 10, 19, 22, 23, 27, 28, 38, 43, 47, 48, 51, 53, 56, 59, 60, 63, 64, 77, 80, 81, 82, 83, 85, 88, 93, 98, 99, 111, 112, 113, 118, 128, 129, 132, 137, 138, 142, 147, 148, 149, 150, 151, 153, 155, 157, 160, 180, 187, 188], "show_federated_shares_as_intern": 41, "show_users_onli": 77, "showcas": [15, 188], "showexpir": 187, "shown": [26, 32, 43, 47, 68, 77, 81, 88, 110, 126, 128, 129, 130, 137, 138, 142, 147, 148, 151, 152, 153, 156, 157, 160], "showonli": 149, "showpassword": 82, "shred": 107, "shutdown": 19, "sick": 2, "side": [31, 40, 46, 48, 60, 63, 77, 81, 85, 88, 107, 110, 112, 126, 128, 129, 132, 138, 147, 152, 153, 154, 156, 180, 182], "sidebar": [85, 94], "siev": 88, "sign": [28, 33, 46, 60, 81, 85, 88, 93, 116, 123, 129, 133, 134, 138, 139, 155, 156, 178], "signal": [4, 106], "signatur": [56, 88, 116, 123, 125, 137, 153, 155], "signific": [8, 12, 34, 45, 53, 137, 186], "significantli": [8, 12, 26, 59, 60, 67, 134, 148], "signup": [2, 60], "silent": [92, 98, 108, 131, 152, 153], "similar": [0, 6, 19, 26, 36, 60, 81, 93, 102, 105, 118, 123, 126, 131, 132, 133, 135, 137, 149], "similarli": [143, 149, 159, 183], "simpl": [15, 20, 51, 60, 88, 102, 119, 133, 145, 188], "simplesignuplink": 88, "simplest": [96, 138], "simplexml": 130, "simpli": [3, 8, 16, 40, 43, 48, 56, 60, 61, 63, 69, 80, 81, 85, 92, 95, 101, 102, 142, 146, 147, 187], "simplifi": [96, 152], "simul": 153, "simultan": [45, 132, 133, 149, 186], "sinc": [2, 5, 15, 16, 18, 20, 28, 32, 34, 57, 58, 59, 60, 63, 93, 101, 103, 105, 114, 124, 129, 134, 144, 147, 153, 155, 156, 157, 170, 180, 182, 186, 188], "singl": [3, 20, 26, 28, 41, 57, 58, 60, 67, 69, 81, 85, 88, 116, 118, 123, 125, 129, 131, 132, 133, 140, 151, 152, 154, 156, 157, 187], "sink": 2, "site": [26, 65, 88, 106, 126, 133, 138], "situat": [3, 5, 7, 48, 58, 60, 69, 93, 123, 126, 138], "sixteen": 186, "sixti": 60, "size": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 28, 29, 43, 46, 53, 59, 60, 63, 67, 72, 81, 85, 88, 93, 95, 96, 101, 110, 119, 124, 126, 129, 139, 142, 143, 152, 156, 178, 187], "sji": 71, "skeleton": [18, 27, 60, 188], "skeletondirectori": [27, 88], "skill": [133, 145], "skip": [3, 40, 53, 57, 60, 65, 81, 88, 92, 97, 118, 120, 147, 148, 150, 151, 153, 156], "skip_name_resolv": 22, "skipapp": 180, "skipauthpickerappl": 68, "skipautoupd": 92, "sky": 1, "skydriv": 93, "sl": 59, "sla": 12, "slash": [33, 40, 51, 93, 138, 187], "slave": [60, 81], "sleep": 60, "slide": 2, "slightli": [5, 29, 58, 98], "slogan": [72, 156], "slot": [2, 88, 150], "slow": [3, 6, 22, 28, 56, 58, 59, 60, 88, 93], "slow_query_log": 22, "slow_query_log_fil": 22, "slower": [38, 57, 58, 152, 169], "slowlog": 132, "sluggish": 132, "small": [2, 12, 43, 47, 57, 60, 88, 112, 113, 129, 138, 169, 186], "smaller": [4, 5, 7, 12, 26, 60, 147], "smallest": [11, 81], "smart": [1, 2, 15, 88, 116, 173], "smb": [40, 60, 88, 127, 130, 153], "smbclient": [38, 130], "sme": 133, "smili": 23, "smith": [151, 157], "smtp": [60, 65, 88, 127, 143], "sn": [82, 154], "snap": [88, 127, 130, 141, 148], "snapcraft": [133, 145], "snapd": [133, 145], "snapshot": [81, 96, 107], "sni": 70, "sniff": 126, "snip": 57, "snooz": [88, 115], "snowflak": [88, 150], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 20, 22, 26, 27, 28, 29, 30, 35, 38, 40, 41, 43, 45, 48, 50, 51, 53, 56, 58, 59, 60, 63, 67, 68, 76, 78, 81, 83, 84, 85, 92, 93, 94, 95, 96, 97, 101, 102, 105, 107, 111, 112, 116, 117, 118, 123, 124, 126, 129, 130, 131, 132, 133, 137, 138, 142, 143, 144, 146, 147, 148, 149, 150, 153, 154, 155, 165, 167, 170, 173, 180, 185, 186, 187, 188], "sock": [22, 45, 59, 60, 96, 97, 124, 129, 149], "socket": [22, 45, 56, 60, 88, 97, 99, 100, 124, 128, 132, 171], "sodium": 130, "softwar": [0, 4, 6, 11, 12, 15, 22, 69, 89, 92, 93, 134, 178], "soldier": 2, "solid": 28, "solut": [1, 15, 26, 43, 69, 93, 116, 133, 137, 138, 143, 158, 161, 168, 170, 172], "solv": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 131, 136, 147, 183], "some": [0, 1, 2, 15, 16, 22, 25, 28, 29, 31, 32, 40, 43, 47, 48, 51, 52, 57, 58, 59, 60, 63, 65, 73, 77, 81, 85, 87, 88, 93, 94, 95, 96, 98, 101, 110, 112, 113, 116, 118, 123, 124, 126, 128, 129, 130, 132, 133, 134, 137, 138, 142, 143, 144, 147, 148, 149, 150, 151, 152, 153, 156, 157, 159, 160, 166, 169, 173, 174, 177, 180, 182, 185, 187, 188], "some_secure_password": 97, "some_very_secure_password": [96, 97], "someon": 28, "someth": [2, 3, 14, 41, 43, 60, 81, 95, 96, 129, 132, 137, 144, 172, 187], "sometim": [2, 5, 15, 43, 48, 57, 85, 132, 138, 142, 147, 186], "somewher": [81, 96, 129, 133, 188], "soon": [4, 15, 62, 112, 132, 186], "sooner": [107, 186, 187], "sophist": [58, 93], "sorri": 172, "sort": [44, 60, 114, 130, 169], "sort_groups_by_nam": 88, "sortbi": 60, "sound": 142, "sourc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 32, 46, 51, 56, 58, 59, 60, 63, 77, 88, 112, 119, 123, 126, 129, 130, 132, 133, 135, 138, 146, 147, 150, 153, 159, 163, 167, 187], "sourcecalendardata": 187, "sourcecalendarid": 187, "sourcecod": 29, "sourceshar": 187, "sovereignti": [0, 1, 4], "sp7": [134, 185], "space": [4, 26, 44, 49, 50, 60, 81, 85, 88, 93, 127, 138, 149, 152, 153, 160, 162, 163, 164, 165, 182], "spaghetti": 2, "spam": [60, 63, 116], "span": [73, 101], "spanish": [4, 5, 10, 11], "spawn": [38, 132], "speaker": [4, 7], "spec": [12, 60], "special": [1, 11, 22, 35, 40, 43, 46, 60, 64, 69, 80, 85, 86, 88, 112, 133, 138, 187], "specialis": 51, "specif": [1, 2, 5, 6, 7, 9, 10, 11, 14, 16, 17, 22, 28, 29, 32, 33, 38, 40, 42, 43, 48, 53, 54, 55, 58, 59, 60, 61, 66, 68, 69, 77, 85, 88, 92, 93, 96, 104, 107, 108, 109, 112, 113, 118, 119, 127, 133, 143, 147, 149, 150, 151, 152, 153, 156, 157, 160, 164, 174, 180, 181, 186, 187, 188], "specifi": [1, 17, 20, 22, 25, 31, 32, 33, 36, 38, 39, 48, 51, 57, 58, 59, 60, 67, 69, 76, 79, 81, 82, 83, 91, 92, 93, 96, 112, 120, 126, 128, 129, 132, 133, 137, 149, 150, 151, 153, 157, 159, 160, 166, 187, 188], "speech": [4, 13, 88, 156, 175], "speech_to_text_picker_en": 1, "speed": [3, 6, 13, 81, 88, 93, 95, 129, 132], "speedscop": 60, "split": [21, 24, 88, 129, 160, 176], "spoof": [60, 69], "sporad": 93, "spread": 133, "spreadsheet": [2, 51, 161, 168], "spreed": [4, 8], "sprintf": 96, "sql": [60, 88, 111, 138, 148, 151], "sqlbkp": 146, "sqlbkp_": 140, "sqlite": [20, 25, 88, 121, 127, 128, 134, 135, 138, 151, 156], "sqlite3": [20, 60, 121, 140, 146], "sqlstate": 138, "squeez": 22, "src": [123, 131], "src_path": 98, "sse": [28, 31, 46, 88, 156], "sse_c_kei": 48, "ssh": [32, 37], "ssl": [28, 31, 33, 41, 59, 63, 64, 65, 69, 70, 88, 94, 118, 124, 127, 129, 156, 166, 167, 171], "ssl_certif": 129, "ssl_certificate_kei": 129, "ssl_context": [59, 60], "ssl_stapl": 129, "ssl_stapling_verifi": 129, "sslproxycheckpeercn": 166, "sslproxycheckpeernam": 166, "sslproxyengin": 166, "sslproxyverifi": 166, "sslrenegbuffers": 26, "sso": [32, 60], "ssrf": 126, "stabil": [12, 70, 134, 182, 183, 184], "stabilityai": 15, "stabl": [15, 60, 124, 133, 134, 137, 145, 168, 175, 186], "stable_bas": 56, "stablediffus": 15, "stack": [58, 133, 169], "stage": [60, 88, 121, 147, 186], "stai": [133, 148, 150, 155, 186], "stale": [40, 60, 143, 151, 153, 157], "stall": [60, 132], "stand": 188, "standalon": [4, 17, 169], "standalone_window": 88, "standard": [12, 20, 40, 48, 59, 60, 67, 69, 81, 85, 89, 92, 112, 120, 123, 126, 130, 133, 134, 142, 143, 150, 151, 153, 181, 182, 183, 187], "standup": 2, "staroffic": 60, "start": [3, 14, 15, 16, 18, 22, 29, 30, 38, 48, 53, 55, 56, 57, 58, 59, 60, 61, 66, 81, 92, 93, 96, 106, 112, 118, 123, 124, 125, 127, 130, 132, 133, 138, 142, 143, 145, 147, 148, 151, 152, 154, 156, 162, 166, 170, 172, 180, 181, 182, 183, 184, 187, 188], "start_header_id": 5, "start_serv": 132, "startedat": 14, "startlimitburst": [15, 187], "startlimitinterv": [15, 187], "startmenushortcut": 92, "startpag": 60, "starttl": [60, 82, 88, 178], "startup": [59, 96, 99, 143, 164], "stat": [1, 3, 88], "state": [28, 44, 63, 77, 80, 85, 88, 118, 126, 146, 150, 151, 153, 156, 187], "statement": 151, "static": [12, 29, 60, 69, 126, 129, 132, 166, 179, 180, 181, 188], "statist": [1, 3, 118, 126, 153, 156], "statu": [14, 15, 17, 28, 41, 56, 57, 58, 59, 67, 75, 76, 80, 82, 88, 92, 98, 100, 110, 117, 126, 129, 136, 148, 150, 151, 153, 160, 167, 172, 186, 187], "status": 149, "status_cancel": 14, "status_fail": 14, "status_run": 14, "status_schedul": 14, "status_success": 14, "status_unknown": 14, "statuscod": [17, 75, 76, 82], "stdin": [60, 150], "stdout": [4, 153, 156], "step": [3, 8, 20, 22, 23, 41, 46, 55, 58, 60, 62, 63, 68, 80, 81, 88, 93, 95, 96, 98, 99, 108, 116, 118, 123, 127, 128, 132, 133, 136, 138, 141, 143, 147, 155, 156, 162, 166, 169, 170], "stephani": 157, "stereotyp": 9, "stick": 60, "still": [2, 3, 8, 20, 23, 25, 26, 30, 43, 47, 48, 50, 56, 57, 58, 59, 60, 64, 67, 80, 81, 83, 85, 88, 92, 95, 118, 126, 129, 130, 138, 143, 147, 152, 153, 154, 155, 180, 181, 182, 183, 184, 186, 187], "stilli": 185, "stolen": [80, 107], "stop": [5, 6, 26, 53, 56, 60, 67, 93, 96, 102, 138, 142, 143, 147, 156, 164, 166, 170], "stop_aft": 156, "storag": [3, 29, 31, 33, 34, 35, 37, 38, 39, 44, 45, 46, 57, 60, 65, 74, 81, 87, 88, 93, 98, 102, 110, 128, 130, 131, 132, 133, 134, 135, 138, 143, 149, 150, 157, 167], "storage43": 81, "storageclass": 48, "storagecrawljob": 3, "store": [0, 13, 19, 22, 28, 31, 32, 38, 40, 44, 45, 46, 47, 53, 59, 61, 64, 65, 67, 68, 70, 72, 77, 80, 81, 82, 88, 92, 95, 107, 108, 109, 111, 113, 116, 126, 128, 129, 131, 132, 135, 138, 149, 150, 151, 152, 157, 160, 181, 182, 183], "storecryptedpassword": 88, "str_ends_with": 96, "straight": [18, 92], "straightforward": 55, "strain": 118, "strategi": [23, 48, 107], "stream": [26, 40, 53, 56, 60, 96, 123, 134], "streamable_http": 2, "street": 2, "strength": 128, "strengthen": 70, "strict": [14, 58, 65, 88, 106, 129], "strictest": 77, "strictli": [96, 132, 133], "string": [1, 3, 5, 17, 29, 48, 50, 56, 60, 63, 69, 75, 76, 81, 96, 98, 110, 129, 149, 151, 157, 160, 163, 164, 165, 186, 187], "strip": [68, 77, 133, 157], "strive": 15, "strong": [86, 128, 164], "stronger": 131, "strongli": [38, 60, 64, 70, 93, 132, 133, 134, 143, 186], "strtotim": 153, "structur": [28, 29, 48, 60, 67, 81, 96, 151, 153, 187], "stt_whisper2": [1, 13, 15, 88], "stuck": 142, "studio": 60, "stuff": 99, "stuttgart": 157, "style": [11, 31, 60, 72, 174, 187], "su": [124, 150], "sub": [6, 76, 81, 177, 188], "subadmin": 88, "subdir": [88, 127], "subdirectori": [36, 40, 88, 129, 133, 153], "subdomain": [60, 69, 124, 126, 133, 166], "subfold": [33, 37, 38, 39, 92, 133, 138], "subgroup": 81, "subject": [28, 77, 88, 107, 108, 109, 112, 118], "submiss": [63, 187, 188], "submissionmessag": 187, "submit": 126, "submitcontentjob": 3, "submitmultipl": 187, "subnet": [60, 96], "subpag": 176, "subpath": 96, "subreddit": [174, 175], "subscrib": 112, "subscript": [12, 88, 115, 121, 126, 134, 168, 172, 186], "subsecond": 48, "subsequ": [92, 118, 133, 145, 154], "subset": 43, "substitut": [40, 60, 78], "substr": [60, 67, 96], "subsystem": 156, "subtitl": 15, "succe": [67, 92, 96], "succeed": [15, 147, 156], "success": [17, 19, 20, 41, 58, 60, 67, 75, 76, 81, 95, 107, 110, 123, 124, 126, 128, 138, 142, 147, 153, 156, 160, 163, 165], "successfulli": [14, 41, 60, 78, 99, 134, 147, 152, 156, 157, 163, 165, 188], "suddenli": 3, "sudo": [1, 8, 15, 19, 20, 22, 23, 26, 28, 34, 40, 51, 56, 68, 73, 78, 80, 81, 83, 96, 107, 108, 111, 112, 113, 118, 121, 125, 130, 132, 133, 136, 138, 140, 142, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 163, 165, 167, 187], "suexec": 60, "suffer": 11, "suffici": [77, 123, 128, 132, 133, 138, 144, 156], "suffix": 128, "suggest": [14, 43, 60, 70, 96, 114, 119, 123, 131, 132, 133, 186], "suit": [12, 28, 96, 126], "suitabl": [45, 57, 59, 60, 95, 126, 132, 151, 156, 186], "sum": [123, 125, 132], "summar": [1, 5, 13, 15, 53, 88, 116, 156], "summari": [13, 15, 88, 111, 115, 132], "summaris": 53, "summary_bot": 8, "sun": 81, "super": [81, 85], "supersed": [60, 151], "superus": 124, "supervisor": [153, 163, 165], "supplement": 60, "supplementari": 133, "suppli": [59, 81, 88, 112, 116, 133, 147], "support": [1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 21, 22, 25, 28, 30, 31, 37, 38, 40, 41, 42, 45, 46, 47, 50, 54, 58, 59, 62, 66, 67, 68, 70, 72, 73, 75, 76, 77, 80, 81, 82, 88, 92, 93, 94, 95, 96, 97, 99, 101, 112, 116, 118, 119, 121, 123, 124, 126, 128, 129, 130, 131, 132, 133, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 151, 153, 156, 157, 158, 160, 161, 164, 168, 172, 173, 174, 178, 179, 180, 181, 182, 183, 184, 185, 187], "supporteddatabas": 88, "suppress": [19, 60, 67, 88, 153], "sure": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 18, 22, 23, 25, 26, 28, 33, 34, 38, 41, 43, 48, 58, 59, 60, 66, 68, 81, 83, 92, 93, 96, 101, 105, 108, 112, 114, 118, 123, 124, 126, 129, 132, 133, 134, 137, 138, 142, 143, 144, 146, 148, 150, 157, 166, 172, 178, 179, 180, 181, 182, 185, 186, 187], "surfac": 77, "surfer": 64, "surnam": [81, 96], "surround": 60, "surveyserv": 126, "surviv": 85, "suse": [134, 185], "suspect": 186, "suspend": [88, 111], "suspici": [15, 57, 58, 60], "sustain": [8, 138], "sv1b7krauqmf8qq": 133, "svg": [47, 60, 72, 129, 132, 133], "swap": [26, 29, 132], "swift": [36, 60, 88, 143, 153], "switch": [13, 16, 60, 81, 88, 113, 118, 126, 132, 150, 151, 152, 156, 169, 188], "symbol": 16, "symfoni": 150, "symlink": [60, 138], "symmetr": 29, "sync": [3, 18, 19, 22, 26, 40, 41, 43, 45, 60, 72, 85, 88, 91, 92, 114, 118, 128, 132, 143, 146, 150, 156, 187], "sync_xxxxxxx": 93, "synchron": [50, 60, 65, 88, 91, 93, 101, 112, 113, 119, 151, 153, 156], "synchronis": [88, 141], "syntax": [17, 51, 57, 60, 75, 76, 81, 82, 134, 150, 154, 157], "sys_nic": 132, "sysadmin": 121, "syslog": [60, 88, 96, 156], "syslog_tag": [67, 88], "syslog_tag_audit": [67, 88], "system": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 20, 22, 23, 28, 32, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 56, 57, 58, 59, 60, 63, 67, 70, 73, 77, 80, 81, 85, 87, 88, 92, 93, 99, 103, 107, 110, 111, 112, 114, 115, 118, 123, 124, 125, 127, 130, 131, 138, 142, 143, 144, 149, 150, 153, 159, 160, 162, 173, 174, 186], "system_addressbook_expos": 113, "system_prompt": [5, 14], "systemctl": [15, 56, 57, 59, 96, 123, 132, 163, 165, 166, 167, 187], "systemd": [53, 56, 60, 88, 99, 153, 156, 167], "systempl": 159, "systemtag": 187, "systran": 7, "sysus": 81, "sysvar_innodb_large_prefix": 60, "sysvsem": [130, 180], "t": [2, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 18, 22, 23, 26, 31, 43, 44, 45, 56, 57, 59, 60, 62, 63, 66, 76, 77, 81, 88, 95, 99, 112, 118, 123, 126, 129, 131, 133, 137, 138, 140, 142, 143, 147, 149, 153, 166, 172, 187, 188], "tab": [88, 150, 160, 188], "tabl": [15, 19, 21, 22, 23, 25, 28, 29, 53, 58, 60, 63, 81, 82, 83, 92, 108, 112, 113, 118, 125, 127, 138, 144, 146, 151, 153, 154, 156, 157, 174, 175, 182], "tableid": 187, "tablespac": 128, "tag": [2, 6, 12, 16, 40, 43, 88, 101, 104, 126, 129, 137, 150, 153, 159, 160, 162], "tagassignedev": 187, "tagid": 187, "tagunassignedev": 187, "tail": [4, 129, 156], "tajik": 4, "take": [3, 6, 19, 22, 26, 29, 32, 41, 47, 52, 56, 57, 58, 59, 60, 69, 70, 80, 81, 82, 84, 85, 93, 96, 97, 120, 121, 124, 126, 129, 132, 133, 137, 142, 143, 145, 147, 148, 151, 152, 153, 160, 163, 165, 182, 187, 188], "taken": [3, 43, 57, 63, 70, 81, 96, 113, 151], "talk": [1, 5, 6, 7, 9, 10, 11, 13, 15, 16, 43, 59, 77, 88, 111, 133, 138, 173, 174, 175, 180, 188], "talk_bot": 8, "talo": 56, "tamper": [28, 147], "tape": 107, "tar": [60, 123, 125, 133, 142], "tarbal": [121, 133, 142, 156], "target": [15, 16, 28, 29, 55, 57, 60, 77, 81, 88, 92, 93, 126, 142, 150, 151, 152, 153, 156, 172, 187], "targetcalendardata": 187, "targetcalendarid": 187, "targetchunkuploaddur": 93, "targetshar": 187, "task": [0, 3, 4, 5, 6, 8, 10, 13, 20, 32, 44, 57, 65, 88, 110, 112, 119, 124, 133, 150], "task_id": 1, "task_type_id": 1, "taskprocess": [1, 14, 15, 88, 187], "tasktyp": 156, "tb": 85, "tbsua2ue86diod0s8f9j": 67, "tcp": [88, 96, 126, 129, 132], "te": 154, "team": [16, 18, 46, 48, 60, 65, 88, 111, 133, 145, 169], "team1": 76, "teamfoldernam": 48, "technic": [11, 12, 28, 40, 60, 81, 107, 137, 152, 188], "techniqu": 138, "technologi": [15, 70, 133, 145], "telegu": 4, "telephonenumb": 81, "tell": [20, 26, 30, 38, 70, 81, 96, 129, 138, 142], "telnet": 63, "temp": [26, 60, 93, 133], "tempdirectori": [26, 88, 143], "temperatur": 5, "templat": [5, 22, 46, 60, 65, 85, 88, 96, 129, 159, 161, 175], "template0": 22, "template1": [22, 146], "templatedirectori": 88, "temporari": [26, 57, 60, 65, 85, 88, 105, 157, 188], "temporarili": [58, 63, 67, 81, 83, 110, 153, 156], "tempt": 1, "ten": [40, 56, 80, 81, 119, 151], "tenant": [3, 36, 116], "tenantnam": [48, 60], "term": [12, 16, 36, 77, 88], "termin": [6, 28, 69, 70, 125, 129, 133, 152, 153, 167, 171], "terri": 154, "test": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 20, 22, 28, 53, 56, 58, 59, 65, 74, 77, 88, 93, 95, 96, 98, 100, 101, 118, 119, 126, 129, 131, 134, 136, 137, 138, 151, 153, 156, 160, 180, 184, 186, 187], "tester": 101, "testfil": 56, "testgroup": 76, "tex2image_stablediffusion2": 1, "text": [2, 3, 4, 5, 8, 9, 11, 12, 13, 18, 28, 43, 47, 51, 60, 63, 65, 81, 82, 88, 101, 110, 116, 126, 129, 133, 137, 138, 143, 150, 151, 156, 160, 161, 166, 168, 173, 174, 175, 180], "text2image_stablediffusion2": [13, 88], "text2speech_kokoro": [1, 13, 88], "text2text": [14, 156], "text_to_image_picker_en": 1, "textbas": 23, "textual": 3, "tflite": 129, "tga": 60, "thai": 5, "than": [1, 2, 3, 4, 5, 7, 8, 9, 12, 16, 26, 35, 38, 41, 43, 44, 45, 47, 48, 49, 53, 56, 58, 59, 60, 81, 85, 88, 92, 93, 107, 111, 112, 114, 116, 119, 123, 126, 128, 130, 132, 133, 134, 137, 138, 142, 146, 147, 150, 153, 156, 166, 169, 180, 182, 183, 186, 188], "thank": [2, 69, 186], "theft": 28, "thei": [0, 1, 2, 3, 4, 5, 8, 12, 15, 16, 18, 25, 27, 28, 30, 40, 41, 42, 43, 44, 45, 47, 50, 52, 53, 58, 59, 60, 61, 62, 63, 69, 71, 80, 81, 84, 85, 87, 88, 91, 92, 93, 95, 96, 101, 102, 103, 106, 107, 108, 110, 111, 112, 116, 118, 119, 125, 126, 128, 129, 132, 133, 134, 136, 138, 142, 143, 149, 151, 153, 155, 156, 157, 159, 160, 173, 182, 186], "them": [6, 7, 14, 15, 16, 22, 23, 26, 27, 28, 38, 41, 43, 47, 50, 52, 54, 60, 63, 64, 67, 69, 70, 71, 72, 81, 83, 85, 86, 92, 93, 95, 96, 101, 102, 107, 108, 110, 111, 112, 114, 118, 123, 125, 126, 129, 132, 133, 137, 138, 142, 143, 146, 148, 149, 151, 152, 153, 155, 156, 157, 159, 164, 165, 180, 188], "theme": [64, 65, 88, 140, 142, 146, 147, 150, 151, 160], "themingnam": 160, "themself": 77, "themselv": [43, 54, 57, 60, 70, 77, 101, 114], "theori": [5, 9], "therefor": [8, 12, 22, 26, 29, 32, 43, 47, 60, 67, 77, 81, 101, 102, 112, 113, 133, 135, 146, 148, 150, 174], "therein": 12, "thereof": 129, "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 36, 38, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 72, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 92, 93, 95, 96, 97, 98, 99, 101, 102, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 160, 163, 164, 165, 166, 169, 170, 172, 174, 178, 180, 181, 182, 183, 184, 185, 186, 187, 188], "thing": [15, 60, 80, 126, 133, 140, 146, 147, 186], "think": [36, 138], "third": [2, 12, 15, 16, 22, 28, 57, 78, 88, 106, 134, 142, 148, 160], "thisisanimportantvalu": 60, "thorough": 4, "thoroughli": 5, "those": [6, 12, 15, 16, 25, 26, 27, 28, 32, 38, 40, 43, 47, 48, 50, 53, 56, 60, 64, 68, 69, 70, 81, 85, 93, 96, 102, 108, 111, 112, 123, 126, 128, 129, 130, 134, 137, 138, 147, 148, 151, 152, 153, 156, 157, 173, 184, 186, 187], "though": [38, 39, 43, 56, 59, 88, 126, 129, 133, 137, 180], "thought": 18, "thousand": [119, 138], "thread": [4, 7, 10, 15, 60, 88, 115, 138], "threat": [28, 126], "three": [8, 40, 56, 57, 63, 67, 80, 95, 96, 116, 118, 121, 128, 146, 155, 157], "threshold": [58, 88, 116], "throttl": [58, 156], "through": [3, 4, 8, 12, 15, 26, 32, 40, 43, 47, 51, 58, 60, 63, 68, 69, 77, 81, 88, 92, 93, 95, 96, 103, 108, 110, 112, 116, 118, 123, 133, 138, 147, 150, 153, 156, 157, 168, 169, 171, 172, 186], "throughout": [29, 58, 186], "throughput": [7, 10, 60], "throw": 93, "thrown": 150, "thu": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 60, 63, 95, 126, 129, 133, 134, 148, 185], "thumbnail": [28, 41, 47, 60, 85, 160], "thumbnailphoto": 81, "thunderbird": [112, 113, 114, 118], "ti": [8, 43, 143], "ticket": [61, 147, 148, 174, 175], "tidewai": 138, "tiff": [47, 60, 133], "tighter": 77, "time": [2, 3, 6, 8, 14, 15, 22, 25, 26, 29, 38, 41, 43, 44, 45, 47, 49, 53, 54, 56, 57, 58, 59, 60, 63, 67, 69, 73, 77, 81, 83, 85, 93, 95, 101, 105, 107, 110, 111, 112, 113, 116, 117, 118, 123, 125, 126, 128, 129, 132, 133, 134, 142, 143, 145, 147, 148, 150, 151, 152, 153, 155, 156, 160, 161, 168, 182, 184, 186, 187], "timeout": [15, 26, 36, 41, 45, 48, 59, 60, 63, 88, 99, 124, 129, 132, 133, 142, 147, 149, 156, 187], "timer": 57, "timestamp": [14, 29, 67, 110, 114, 143, 156, 187], "timezon": [8, 57, 60, 67, 101, 130, 156], "tip": [46, 70, 74, 88, 127, 141, 182], "titl": [1, 2, 81, 110, 174, 187], "tl": [28, 60, 63, 69, 70, 82, 88, 95, 96, 118, 124, 126, 127, 129, 133, 160], "tld": [60, 70, 82, 96, 118, 124, 126, 149, 157], "tld_fullchain": 124, "tld_privat": 124, "tls_reqcert": 81, "tmp": [3, 4, 60, 72, 93, 118, 133, 147, 151, 153, 163, 165], "tmp_table_s": 22, "tmpdir": [60, 133], "tmpfile": 60, "tmux": 88, "to_gif_exampl": 98, "tocker": 60, "todai": 14, "togeth": [0, 2, 3, 49, 58, 60, 134, 138], "toggl": [53, 60, 72, 77, 81, 112, 113, 132, 138, 153], "token": [1, 2, 32, 58, 60, 65, 74, 88, 96, 106, 110, 111, 159, 160, 187, 188], "token_auth_activity_upd": 88, "token_auth_enforc": 88, "token_auth_token_retent": 73, "token_auth_wipe_token_retent": 73, "tom": 75, "toml": [69, 96], "tomorrow": 2, "too": [1, 22, 26, 38, 40, 52, 58, 59, 60, 93, 112, 113, 126, 128, 132, 133, 138, 142, 145, 180], "took": 118, "tool": [5, 12, 13, 15, 18, 20, 28, 29, 58, 64, 69, 70, 77, 81, 88, 89, 92, 93, 95, 98, 111, 116, 126, 131, 132, 138, 148, 164, 187], "toolbar": 160, "toolkit": 6, "tooltip": 81, "toot": [174, 175], "top": [1, 12, 16, 60, 64, 67, 70, 85, 138, 147, 148, 175, 187], "topic": [1, 28, 45, 60, 119, 133, 138], "total": [6, 29, 36, 60, 67, 81, 85, 87, 156, 157], "totalnumberofsynctokenstokeep": [112, 113], "totalsizelimit": 60, "totp": [80, 157], "touch": [124, 142], "toward": 60, "town": 76, "trace": [67, 132, 150], "trace_mod": 22, "track": [53, 88, 92, 93, 112, 113, 115, 118, 153, 160], "trade": 60, "traefik": 88, "traffic": [41, 58, 81, 88, 133, 166], "trail": [40, 50, 53, 154], "train": [5, 6, 7, 9, 10, 11, 12, 15, 57, 60], "transact": [26, 46, 59, 65, 88, 127, 130, 134, 138, 140], "transaction_isol": 22, "transaction_read_commit": 22, "transcrib": [2, 15, 175], "transcript": [1, 7, 10, 13, 88], "transfer": [37, 46, 60, 88, 107, 108, 111, 129, 132, 137, 142, 147], "transferincomingshar": [88, 153], "transient": 132, "transifex": 66, "transit": [60, 133, 138], "translat": [13, 27, 88, 115, 119, 130, 175], "translate2": [1, 4, 13, 15, 88], "transmit": [106, 110, 126, 188], "transp": 187, "transpar": [13, 15, 29, 58, 60, 88], "transport": [2, 65, 81, 88, 93, 96, 116, 129, 134], "trash": [28, 29, 41, 46, 65, 85, 88, 110, 115, 118, 150, 151], "trashbin": [43, 49, 60, 88, 107, 138, 150, 151], "trashbin_retention_oblig": [49, 88, 107, 153], "trashcan": 40, "travers": 187, "treat": [38, 60, 69, 70, 81, 128, 129, 138], "tree": [2, 40, 81, 88, 132, 156], "tremend": 93, "tri": [18, 126, 128, 151, 152], "triag": 119, "trick": [74, 88, 127, 182], "tricki": 92, "trigger": [19, 40, 44, 53, 57, 58, 67, 76, 81, 85, 88, 113, 118, 132, 137, 138, 147, 153, 156, 180, 187, 188], "triplecheck": 172, "trixi": [134, 185], "trojan": 56, "troubl": [81, 138, 180], "troubleshoot": [13, 21, 46, 60, 65, 74, 88, 91, 115, 126, 127, 133, 141, 143, 148, 158, 168], "true": [3, 14, 15, 16, 17, 20, 22, 23, 28, 31, 41, 48, 53, 60, 63, 66, 67, 69, 75, 76, 77, 82, 84, 85, 87, 93, 101, 116, 118, 126, 129, 133, 138, 140, 148, 149, 150, 153, 156, 157, 160, 163, 164, 165, 167, 187, 188], "truena": [88, 127], "truncat": [29, 53, 60], "trust": [28, 46, 58, 60, 65, 68, 77, 88, 96, 110, 116, 126, 127, 147, 149, 156], "trusted_domain": [41, 69, 88, 128, 129, 143, 149, 180], "trusted_proxi": [58, 69, 88], "trustedcafil": 96, "try": [2, 25, 28, 40, 58, 59, 60, 63, 64, 70, 81, 93, 95, 96, 101, 118, 129, 131, 134, 137, 138, 142, 146, 147, 151, 172, 178, 186], "try_fil": 129, "trystack": 60, "ttf": [129, 163], "ttl": [22, 63, 88], "tty": 152, "tue": 63, "tuesdai": 2, "tune": [5, 88, 126, 127, 129, 130, 133], "tunisian": 4, "tunnel": [95, 96, 97], "turbo": 7, "turkish": 4, "turn": [26, 51, 53, 60, 71, 82, 88, 116, 133, 147, 156, 186, 188], "turnkei": [130, 133], "turnoffcertcheck": 82, "turnonpasswordchang": 82, "turnov": 53, "tutori": [119, 123, 124], "tweak": [23, 81], "tweet": 61, "twice": [60, 81], "twitter": [76, 77, 81], "twitterscop": 77, "two": [3, 4, 20, 26, 28, 36, 40, 41, 44, 47, 49, 56, 57, 58, 59, 60, 67, 69, 73, 74, 83, 85, 88, 92, 93, 95, 96, 108, 111, 112, 118, 119, 120, 126, 133, 147, 148, 149, 150, 153, 160, 163, 165, 168, 186, 187, 188], "twofactor_totp": 149, "twofactorauth": [80, 88], "txk4": 157, "txt": [28, 38, 50, 60, 71, 129, 131, 132, 187], "ty": 132, "type": [1, 2, 3, 10, 14, 15, 16, 17, 21, 23, 25, 26, 28, 40, 41, 42, 43, 46, 47, 48, 56, 57, 58, 63, 65, 68, 73, 80, 85, 87, 88, 96, 97, 101, 106, 110, 111, 113, 115, 116, 118, 125, 126, 129, 130, 132, 138, 142, 148, 149, 153, 157, 160, 163, 165, 167, 174, 178, 180, 183, 187, 188], "typescript": 188, "typic": [3, 28, 40, 57, 59, 60, 77, 81, 89, 92, 93, 106, 112, 118, 125, 128, 130, 132, 138, 143, 157, 186, 187], "u": [1, 2, 8, 12, 14, 15, 18, 19, 20, 22, 23, 26, 28, 34, 40, 48, 51, 53, 56, 57, 59, 60, 68, 72, 73, 77, 78, 80, 81, 83, 99, 107, 108, 111, 112, 113, 118, 121, 124, 130, 133, 136, 138, 140, 142, 143, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 163, 165, 180, 187], "ubo": 60, "ubuntu": [22, 28, 34, 51, 56, 59, 72, 81, 83, 88, 121, 127, 130, 132, 133, 134, 138, 140, 142, 145, 148, 150, 161, 162, 166, 169, 185], "uc": 133, "udp": 63, "ui": [2, 12, 15, 40, 58, 60, 77, 82, 85, 92, 95, 97, 98, 114, 116, 138, 147, 148, 151, 156, 160], "uid": [29, 80, 81, 82, 83, 107, 108, 111, 118, 151, 154, 157, 187], "uid1": 157, "uid2": 157, "uidn": 157, "ukrainian": 4, "ultim": 58, "umask": 88, "un": [8, 28, 41], "unabl": [48, 60, 63, 66, 81, 88, 153], "unaffect": 60, "unansw": 116, "unauthent": [43, 77], "unauthor": [28, 172], "unavail": [3, 40, 51, 60, 80, 96, 130, 150, 156], "unavoid": 40, "unban": 126, "unchang": 3, "uncheck": [39, 81], "unclear": [7, 10], "uncom": [59, 129, 133], "uncondition": 69, "unconfigur": 48, "undefin": [2, 60], "under": [1, 2, 5, 6, 7, 10, 15, 16, 18, 22, 40, 47, 50, 54, 57, 58, 59, 60, 63, 67, 69, 77, 80, 81, 89, 93, 95, 106, 107, 109, 110, 123, 128, 129, 130, 132, 133, 136, 137, 138, 148, 153, 160, 172, 180, 186], "underli": [2, 3, 5, 6, 7, 8, 9, 10, 11, 50, 53, 58, 60, 63, 130, 132, 133, 153], "underscor": [31, 48, 85, 153], "undershoot": 60, "understand": [1, 8, 11, 14, 28, 60, 120, 135, 138], "undertak": 6, "underutil": 133, "undesir": 60, "undetect": 138, "undo": 85, "unencrypt": [28, 63, 85, 88], "unencrypted_s": 138, "unevenli": [7, 10], "unexpect": [59, 60, 138, 172, 186], "unexpectedli": [60, 92], "unexplain": 133, "unfavor": 180, "unforeseen": 143, "unfortun": 57, "unfound": 111, "unhandl": 150, "unicod": [40, 60, 151], "unicodepwd": 81, "unifi": [1, 60, 171], "unified_search": 88, "uninstal": [3, 4, 88, 92, 127, 131, 157, 162], "uniqu": [48, 59, 60, 61, 64, 81, 85, 95, 96, 97, 98, 110, 126, 138, 156, 157, 187], "uniquememb": [81, 82], "unison": 93, "unit": [15, 57, 116, 156, 187], "univent": 133, "unix": [14, 45, 56, 60, 81, 88, 101, 102, 128, 132, 134, 187], "unix_domain_socket": 96, "unixpath": 96, "unixsocketperm": 59, "unknown": [75, 76, 88, 111, 153, 156, 160], "unless": [28, 29, 31, 48, 56, 58, 60, 63, 67, 77, 81, 92, 96, 107, 111, 116, 130, 133, 138, 150, 153, 164], "unlik": [59, 69, 93, 153], "unlimit": [26, 60], "unlink_on_trunc": 88, "unload": 92, "unlock": 28, "unnecessari": [20, 38, 47, 60, 81, 126], "unnecessarili": 57, "unoffici": 145, "unpack": [121, 125, 133, 142, 156], "unpredict": [12, 28], "unprotect": 160, "unreach": 81, "unrecover": 28, "unregist": [8, 88, 100], "unreli": [40, 60, 93, 116], "unrequir": 137, "unscan": [38, 60, 88, 153, 156], "unscann": 56, "unseal": 88, "unselect": 31, "unset": [60, 69, 81], "unshar": [88, 118, 153], "unsign": 153, "unspecifi": [60, 120], "unstabl": 149, "unsuccess": 60, "unsuccessfulli": 14, "unsupport": [31, 47, 60, 129, 148, 172, 174], "unsur": [3, 26, 129], "until": [1, 6, 15, 28, 40, 44, 49, 53, 56, 58, 60, 81, 85, 93, 96, 98, 106, 111, 125, 126, 128, 132, 146, 148, 151, 152, 153, 155, 156, 180, 183, 186], "untouch": 149, "untrust": [88, 126], "unus": [60, 73, 99, 181], "unusu": [1, 132], "unwant": [118, 132, 138], "unzip": [123, 125, 142], "up": [0, 1, 2, 3, 5, 14, 15, 19, 20, 22, 26, 28, 32, 40, 44, 49, 53, 56, 57, 58, 59, 60, 62, 65, 67, 80, 81, 85, 88, 93, 95, 96, 99, 108, 111, 112, 115, 118, 120, 122, 126, 127, 128, 132, 134, 135, 138, 142, 143, 146, 147, 153, 154, 155, 156, 157, 160, 167, 177, 178, 180, 182, 186], "upcom": [12, 61, 112, 186], "updat": [2, 3, 12, 14, 19, 20, 21, 27, 28, 30, 40, 43, 48, 51, 56, 57, 59, 62, 63, 70, 75, 76, 77, 81, 82, 88, 96, 100, 111, 112, 113, 114, 116, 119, 123, 125, 126, 127, 129, 130, 133, 134, 137, 141, 142, 143, 144, 145, 146, 149, 151, 152, 153, 154, 157, 159, 160, 162, 167, 180, 182, 185, 186, 187], "updatecheck": 88, "updatedirectori": 88, "updatenotif": 16, "updater_serv": 60, "updatesinglemetadata": 156, "upfront": 152, "upgrad": [23, 30, 51, 63, 69, 70, 88, 92, 124, 125, 130, 132, 137, 138, 141, 144, 150, 151, 152, 166, 177], "upload": [18, 28, 40, 41, 43, 45, 46, 48, 56, 60, 64, 77, 81, 85, 88, 93, 102, 104, 105, 110, 116, 124, 130, 132, 137, 138, 143, 145, 153, 160, 166, 180, 182, 183, 187], "upload_max_files": [26, 124, 133], "upload_tmp_dir": [26, 130], "uploadparts": [48, 60], "upon": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 81, 83, 107, 110, 126, 133, 138, 145], "upostgr": 22, "upper": 86, "upscal": [47, 48, 98], "upscaler_exampl": 98, "upstream": [111, 129, 132, 134], "upward": 132, "urandom": [65, 88], "urg": [12, 144], "urgent": [2, 61, 151], "uri": [60, 69, 81, 116, 118, 129, 138, 151, 156, 187], "url": [2, 3, 8, 16, 17, 33, 35, 36, 38, 39, 41, 48, 55, 57, 59, 63, 64, 67, 68, 70, 72, 75, 76, 79, 81, 82, 85, 87, 88, 92, 95, 96, 97, 98, 101, 108, 110, 112, 123, 124, 125, 127, 128, 129, 132, 136, 138, 141, 143, 151, 156, 159, 160, 166, 170, 172, 180, 184, 188], "url_discoveri": 69, "urlencod": 87, "urltyp": [48, 60], "urn": [60, 153, 187], "uroot": 22, "us": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 18, 19, 20, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 44, 45, 46, 47, 48, 51, 53, 54, 55, 56, 57, 58, 61, 64, 65, 66, 68, 69, 71, 72, 74, 76, 77, 78, 79, 80, 82, 83, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 105, 106, 108, 110, 111, 112, 113, 117, 118, 119, 120, 121, 123, 124, 125, 127, 128, 130, 131, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 148, 149, 151, 152, 153, 154, 155, 156, 157, 160, 161, 164, 165, 166, 168, 169, 170, 171, 172, 173, 174, 178, 181, 182, 183, 184, 186, 187, 188], "usabl": [12, 77], "usag": [4, 5, 7, 10, 12, 13, 28, 29, 46, 53, 56, 57, 60, 65, 67, 73, 77, 81, 88, 89, 107, 110, 126, 130, 132, 146, 150, 154, 156, 157, 172, 186], "use_legacy_base64_encod": 88, "use_path_styl": 48, "use_ssl": [48, 60], "usememberoftodetectmembership": 82, "usemultipartcopi": 48, "user": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 20, 24, 26, 27, 31, 32, 33, 34, 36, 38, 39, 41, 44, 45, 46, 48, 49, 50, 54, 55, 56, 57, 58, 59, 61, 63, 64, 65, 66, 67, 68, 69, 72, 73, 75, 78, 80, 82, 91, 92, 93, 96, 97, 98, 102, 103, 105, 106, 107, 108, 110, 111, 112, 115, 117, 118, 119, 120, 121, 123, 124, 125, 126, 129, 130, 131, 133, 134, 135, 137, 140, 143, 145, 146, 147, 148, 149, 150, 151, 153, 156, 159, 160, 162, 163, 164, 165, 168, 172, 173, 179, 180, 186, 187, 188], "user1": 43, "user123": 118, "user2": 43, "user_directori": 157, "user_id": [3, 111, 153, 157], "user_ini_additional_lin": 88, "user_ldap": [81, 82, 83, 154], "user_oidc": 84, "user_prompt": 5, "user_scope_dis": 103, "userag": 67, "userdeletedev": 150, "userdirectori": 40, "userdisplaynam": 160, "userid": [2, 14, 18, 28, 76, 81, 92, 111, 114, 118, 138, 160, 187, 188], "useridfilt": [14, 156], "usermod": [59, 133], "usernam": [3, 20, 22, 29, 32, 33, 36, 38, 39, 40, 41, 43, 48, 58, 60, 63, 76, 78, 81, 82, 85, 93, 106, 110, 111, 113, 120, 123, 125, 128, 133, 138, 140, 145, 146, 150, 153, 157], "userpassword": [81, 157], "usr": [56, 57, 59, 60, 63, 96, 124, 133, 150, 167], "usual": [3, 5, 7, 9, 10, 15, 25, 38, 43, 47, 48, 55, 58, 59, 60, 63, 64, 81, 95, 126, 130, 133, 135, 136, 137, 138, 142, 148, 180, 186, 187], "utc": [57, 60, 67, 117, 153, 156], "utf": 71, "utf8": [22, 60, 124, 134, 146], "utf8mb4": [20, 22, 23, 25, 88, 125, 140, 146, 151], "utf8mb4_0900_as_ci": 60, "utf8mb4_bin": [22, 60], "utf8mb4_general_ci": [23, 125, 146], "util": [6, 8, 54, 60, 67, 118, 123, 150, 186], "uuid": [81, 82, 154], "uusernam": 22, "uz": 89, "uzbek": 4, "v": [8, 15, 29, 38, 40, 56, 65, 77, 88, 96, 100, 129, 130, 132, 150, 153, 156, 163, 164, 165, 187], "v1": [3, 16, 17, 60, 67, 68, 75, 76, 82, 87, 96, 118, 129, 132, 147], "v12": [3, 4, 5, 7, 9, 11], "v2": [3, 7, 10, 31, 36, 48, 60, 77, 82, 129, 188], "v27": [142, 148], "v28": [15, 142, 148], "v3": [2, 5, 7, 9, 11, 48, 60], "v30": 15, "v4": [31, 101], "v6": 101, "v9": 28, "valid": [12, 22, 38, 50, 60, 66, 70, 74, 77, 81, 82, 88, 92, 93, 108, 128, 129, 130, 137, 143, 151, 153, 154, 156, 166, 180, 188], "valkei": 59, "valu": [1, 3, 8, 14, 15, 16, 20, 22, 23, 25, 26, 27, 28, 29, 41, 43, 44, 45, 47, 48, 49, 53, 56, 57, 59, 61, 63, 66, 67, 68, 69, 71, 72, 73, 75, 76, 81, 82, 83, 85, 88, 92, 95, 96, 97, 98, 103, 107, 112, 113, 116, 117, 118, 125, 126, 128, 129, 132, 133, 135, 138, 143, 151, 153, 154, 156, 160, 163, 164, 165, 180, 182, 183, 187], "value1": 60, "value2": 60, "vanish": 118, "var": [16, 22, 23, 26, 53, 56, 57, 60, 67, 78, 81, 83, 93, 96, 97, 107, 112, 121, 123, 124, 125, 126, 129, 130, 131, 132, 133, 135, 138, 142, 147, 148, 149, 150, 153, 156, 157, 164], "vari": [3, 4, 59, 77, 130, 133], "variabl": [3, 4, 5, 8, 22, 23, 29, 46, 58, 59, 65, 70, 88, 93, 98, 100, 126, 132, 134, 143, 157, 160, 162, 184, 187, 188], "variable_nam": [22, 23], "variant": 56, "varieti": [1, 71, 188], "variou": [1, 15, 47, 56, 58, 60, 64, 67, 70, 80, 81, 91, 93, 132, 138, 150, 159, 170, 173], "vboxsf": 133, "vcard": [110, 113, 114, 129], "vcf": [111, 113], "ve": [118, 132, 133, 177, 186], "vector": [3, 29, 51, 126, 183], "vector_db_data": 3, "vectordb": 3, "vehicl": 6, "veloc": 186, "vendor": 132, "verbatim": 143, "verbos": [56, 67, 93, 132, 150, 153, 156], "veri": [4, 57, 58, 59, 60, 64, 67, 81, 93, 138, 154, 188], "verif": [58, 63, 65, 88, 118, 137, 160], "verifi": [8, 12, 22, 23, 41, 53, 55, 56, 57, 59, 60, 64, 83, 88, 92, 93, 95, 99, 116, 123, 125, 126, 130, 131, 132, 133, 136, 137, 142, 143, 144, 147, 152, 155, 156, 160, 162, 172, 180, 186], "verify_bucket_exist": 48, "verify_p": 63, "verify_peer_nam": [59, 63], "verify_peer_off": 160, "versatil": 119, "version": [2, 3, 4, 6, 7, 8, 10, 11, 12, 15, 17, 22, 23, 24, 26, 28, 29, 30, 32, 33, 46, 48, 49, 52, 56, 57, 59, 63, 65, 67, 72, 73, 75, 76, 77, 81, 82, 85, 88, 95, 98, 110, 112, 113, 116, 117, 118, 123, 124, 125, 126, 129, 130, 132, 133, 136, 137, 142, 143, 144, 145, 147, 148, 149, 150, 151, 156, 160, 163, 164, 165, 166, 170, 175, 183, 184, 185, 187], "version_timestamp": 29, "versions_retention_oblig": [44, 88, 107, 153], "versionstr": [150, 156], "vevent": 187, "vhd": 133, "vhdx": 133, "vhost": 138, "via": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 27, 40, 43, 44, 46, 48, 49, 53, 56, 57, 58, 59, 60, 63, 65, 67, 68, 74, 77, 80, 83, 84, 85, 86, 87, 88, 92, 93, 94, 96, 101, 106, 107, 108, 110, 111, 112, 114, 116, 118, 121, 126, 127, 128, 129, 130, 132, 135, 136, 138, 141, 143, 148, 151, 153, 155, 157, 159, 160, 161, 162, 167, 174, 180, 181, 182, 183, 186, 187, 188], "video": [2, 15, 47, 60, 88, 119, 130, 134, 156, 174, 175], "vietnames": 4, "view": [1, 4, 16, 20, 52, 58, 60, 67, 85, 88, 93, 111, 138, 154, 156, 160], "viewer": [18, 60, 67, 160, 188], "virtual": [2, 48, 60, 88, 92, 96, 126, 127, 132, 135, 143], "virtualbox": 133, "virtualhost": [123, 124, 126, 133, 166], "viru": [56, 93], "virus": 56, "virus_db": 56, "visibl": [3, 15, 40, 53, 60, 69, 74, 81, 85, 88, 99, 110, 114, 117, 138, 146, 160, 180, 181, 182, 183, 186, 187], "visible\u00b9": 157, "visit": [57, 101, 116, 123, 133, 145, 147, 148], "visitor": [77, 126], "visual": 12, "vm": [132, 133, 148], "vmdk": 133, "vmp": 133, "vmware": 133, "vnd": 129, "vo": 124, "voic": 88, "volum": [56, 60, 98, 111, 134, 164], "volunt": 186, "vosk": 4, "vote": 2, "vp": [88, 127], "vpn": 96, "vram": [1, 3, 4, 5, 6, 7, 9, 11, 95], "vtodo": 187, "vtt": 129, "vulner": [126, 186], "vv": [150, 153], "vvv": [118, 138, 150, 153], "w": [28, 124, 126, 166, 171], "wa": [7, 8, 10, 12, 14, 15, 18, 20, 28, 40, 43, 50, 53, 57, 58, 60, 67, 69, 74, 76, 81, 88, 95, 96, 105, 110, 113, 116, 117, 118, 130, 133, 137, 138, 143, 144, 145, 146, 147, 148, 149, 152, 156, 157, 180, 181, 182, 183, 184, 187], "wai": [1, 7, 15, 22, 25, 32, 41, 43, 48, 56, 57, 58, 60, 63, 64, 68, 78, 81, 92, 93, 95, 96, 101, 108, 110, 112, 126, 129, 132, 133, 138, 142, 146, 148, 152, 164, 169, 181, 182, 183], "wait": [4, 8, 53, 60, 98, 132, 143, 148, 153, 155, 186, 188], "wait_timeout": [22, 60], "wal": 60, "walk": [123, 133], "walkthrough": 151, "want": [2, 3, 5, 6, 7, 15, 16, 20, 22, 26, 31, 34, 40, 41, 43, 45, 47, 48, 51, 52, 53, 56, 58, 59, 60, 62, 63, 66, 67, 69, 72, 81, 83, 84, 85, 91, 92, 93, 95, 96, 99, 103, 108, 111, 113, 116, 119, 120, 123, 124, 126, 128, 131, 133, 134, 135, 136, 137, 138, 147, 148, 149, 150, 152, 153, 156, 157, 166, 172, 173, 177, 183, 186, 187, 188], "wantedbi": [15, 57, 187], "warm": 132, "warn": [4, 12, 28, 59, 60, 65, 67, 80, 81, 88, 93, 110, 123, 126, 128, 129, 132, 133, 137, 138, 144, 145, 150, 152, 153, 156, 172, 182], "wasm": 129, "watch": [58, 156], "watermark": [88, 159], "watsonx": [1, 8, 12, 13, 15, 88], "we": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 20, 22, 25, 26, 38, 39, 44, 47, 57, 60, 63, 70, 81, 88, 93, 96, 118, 123, 124, 126, 128, 129, 130, 132, 133, 138, 144, 148, 150, 166, 172, 180, 182, 186, 188], "weak": 128, "weaken": 64, "weather": [2, 14, 126], "web": [2, 5, 7, 9, 10, 11, 16, 28, 39, 40, 41, 43, 46, 57, 58, 59, 64, 65, 66, 69, 72, 78, 82, 85, 88, 93, 95, 96, 99, 108, 114, 116, 118, 119, 123, 124, 125, 127, 128, 129, 130, 132, 139, 141, 142, 143, 148, 150, 152, 153, 155, 156, 157, 171], "webauthn": 88, "webcal": [60, 151], "webcalallowlocalaccess": 112, "webcron": [53, 88, 149, 156], "webdav": [17, 18, 26, 35, 40, 60, 70, 81, 88, 92, 93, 108, 111, 118, 126, 129, 133, 139, 156], "webdavf": 60, "webfing": [124, 138], "webhook": [88, 150, 188], "webhook_listen": [156, 187, 188], "webhookcal": 187, "webhooklisten": 187, "webinterfac": 129, "webm": 129, "webmail": 131, "webp": [60, 129, 132, 133, 181], "webp_qual": 132, "webpag": 129, "webroot": [8, 60, 69, 88, 127], "webserv": [26, 27, 57, 59, 60, 69, 88, 123, 126, 129, 133, 134, 169, 183], "websit": [14, 55, 64, 70, 76, 77, 81, 110, 126, 138], "websitescop": 77, "websocket": [95, 166], "webspac": 133, "wednesdai": 2, "week": [2, 44, 56, 186], "weekend": 3, "weekli": 53, "weight": [12, 15, 60], "welcom": [12, 88, 119], "well": [0, 1, 2, 3, 4, 5, 6, 12, 15, 29, 43, 47, 55, 56, 58, 59, 60, 63, 65, 69, 81, 85, 88, 118, 123, 124, 129, 131, 132, 133, 135, 138, 142, 143, 145, 147, 172, 177, 186, 187, 188], "went": [142, 143], "were": [2, 12, 14, 20, 28, 41, 53, 60, 63, 69, 112, 117, 130, 137, 138, 147, 148, 152, 153, 156, 180], "west": [31, 48], "wget": [123, 125, 136, 163, 165, 167, 180], "what": [2, 14, 26, 31, 40, 45, 48, 58, 60, 62, 70, 81, 83, 85, 88, 93, 95, 96, 108, 110, 111, 120, 126, 132, 138, 141, 153, 156, 188], "whatev": [20, 43, 60, 129, 147], "whatsoev": [29, 32], "when": [1, 2, 3, 4, 8, 13, 14, 15, 16, 18, 19, 20, 22, 26, 28, 29, 32, 33, 35, 38, 40, 41, 43, 44, 45, 48, 49, 51, 53, 56, 57, 58, 59, 60, 63, 66, 67, 69, 70, 71, 72, 80, 81, 82, 84, 85, 88, 92, 94, 95, 96, 101, 102, 105, 106, 107, 108, 110, 112, 113, 114, 116, 118, 120, 123, 125, 126, 128, 130, 131, 132, 133, 135, 136, 137, 138, 140, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 164, 166, 172, 174, 180, 183, 186, 187, 188], "when_requir": [60, 183], "when_support": 60, "whenev": [40, 43, 44, 132, 138, 186, 187], "where": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 22, 28, 29, 30, 32, 38, 56, 57, 58, 59, 60, 63, 67, 77, 81, 88, 92, 93, 95, 96, 111, 112, 114, 116, 123, 125, 126, 133, 135, 136, 138, 142, 144, 147, 150, 151, 152, 153, 155, 156, 160, 172, 173, 184, 186, 187, 188], "wherev": [91, 143], "whether": [2, 3, 5, 6, 7, 9, 10, 11, 22, 38, 40, 60, 63, 77, 80, 82, 85, 92, 95, 101, 106, 114, 116, 126, 129, 132, 135, 149, 152, 153, 154, 156, 157, 186], "which": [1, 2, 3, 5, 7, 8, 12, 15, 16, 20, 22, 25, 26, 28, 29, 31, 32, 38, 40, 41, 43, 44, 45, 48, 49, 50, 51, 53, 54, 56, 57, 58, 59, 60, 61, 63, 64, 67, 68, 69, 70, 71, 73, 76, 80, 81, 82, 85, 92, 93, 95, 96, 97, 99, 101, 108, 110, 114, 116, 118, 123, 124, 126, 129, 130, 131, 132, 133, 134, 137, 138, 143, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 163, 167, 169, 173, 174, 182, 183, 184, 186, 187, 188], "whichev": [60, 69, 153], "while": [1, 4, 11, 15, 19, 28, 38, 40, 44, 47, 48, 54, 56, 58, 60, 69, 77, 81, 101, 118, 126, 132, 133, 143, 145, 147, 148, 149, 150, 151, 155, 186, 187], "whisper": [13, 15, 88, 175], "whiteboard": 15, "whitelist": [16, 58, 92, 128], "whitespac": [92, 154], "who": [2, 3, 12, 14, 28, 31, 34, 38, 40, 43, 53, 60, 67, 69, 77, 81, 85, 110, 113, 114, 121, 138, 151, 156, 157, 160, 187], "whole": [39, 88, 95, 96, 112, 118, 123, 127, 146], "whom": [12, 110], "whose": [44, 53, 67, 153, 187], "why": [38, 64, 88, 111, 118, 153], "wide": [28, 60, 80, 110, 126, 132, 156, 161], "widenetworkaddress": 96, "wider": 95, "widespread": 186, "widget": [61, 173, 174], "width": 60, "wiki": [60, 133, 145], "wikipedia": 60, "wildcard": [60, 128, 154], "win": 56, "windmil": 88, "window": [3, 15, 38, 44, 46, 56, 60, 81, 85, 88, 91, 93, 107, 119, 127, 134, 182, 187], "wipe": 73, "wise": 118, "wish": [22, 28, 37, 54, 59, 60, 85, 93, 112, 128], "within": [12, 22, 29, 32, 40, 43, 50, 55, 58, 60, 67, 69, 70, 72, 81, 93, 97, 111, 112, 113, 114, 119, 126, 129, 130, 132, 134, 135, 137, 138, 142, 150, 151, 153, 157, 160, 186], "without": [6, 15, 27, 28, 29, 38, 40, 43, 44, 49, 53, 54, 56, 57, 58, 60, 67, 68, 69, 70, 71, 73, 81, 85, 88, 92, 94, 95, 96, 97, 102, 106, 107, 108, 111, 112, 113, 116, 126, 128, 130, 132, 133, 138, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 156, 165, 169, 174, 178, 180, 181, 187], "wizard": [22, 41, 60, 63, 82, 88, 121, 123, 124, 127], "wjalrxutnfemi": 153, "woff2": 129, "won": [15, 43, 60, 81, 112], "wopi": [88, 163, 164, 165, 166, 167, 172], "wopi_en": 164, "word": [7, 51, 77, 92, 130], "work": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 15, 16, 18, 23, 28, 32, 38, 43, 45, 50, 53, 57, 59, 60, 63, 64, 65, 66, 69, 70, 78, 79, 80, 81, 85, 88, 92, 93, 95, 98, 101, 102, 112, 119, 124, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 142, 144, 145, 148, 149, 150, 151, 154, 156, 157, 169, 172, 173, 178, 187], "workaround": [26, 28], "worker": [0, 3, 15, 59, 88, 132, 164, 187, 188], "workflow": [65, 88, 92, 102, 150, 157, 187], "workflowengin": [67, 103, 156], "workload": [45, 95], "workspac": [65, 88], "workspace_avail": 71, "world": [1, 4, 5, 7, 9, 10, 12, 96, 186], "worm": 56, "worri": 3, "wors": [60, 132], "worst": [15, 93], "worthi": 58, "would": [3, 5, 14, 15, 16, 22, 25, 28, 38, 40, 47, 54, 57, 58, 60, 69, 81, 95, 96, 99, 112, 113, 118, 129, 138, 143, 144, 146, 147, 149, 153, 170, 180], "wrap": [152, 156], "wrapper": [63, 150], "writabl": [16, 34, 50, 60, 133, 143, 147, 151, 152, 153], "write": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 24, 59, 60, 63, 67, 68, 81, 88, 92, 93, 112, 116, 119, 123, 127, 133, 137, 147, 149, 152, 153, 160, 188], "writeabl": [16, 126], "written": [3, 29, 30, 60, 67, 92, 95, 110, 113, 118, 126, 128, 143, 151, 153, 188], "wrong": [14, 28, 43, 60, 79, 81, 137, 138, 142, 144, 153, 172], "wsdlcach": 129, "wss": [4, 166], "wurst": 118, "www": [1, 8, 15, 19, 20, 23, 26, 28, 34, 40, 51, 53, 55, 56, 57, 59, 60, 67, 68, 73, 78, 80, 81, 83, 87, 107, 108, 111, 112, 113, 118, 120, 121, 123, 124, 125, 126, 129, 130, 131, 133, 135, 136, 138, 140, 142, 144, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160, 167, 169, 184, 187], "wwwhomepag": 81, "wwwrun": [57, 150], "w\u00fcrzburg": 2, "x": [6, 17, 18, 26, 38, 47, 51, 53, 60, 64, 67, 69, 75, 76, 77, 81, 82, 87, 92, 96, 101, 123, 125, 126, 128, 129, 138, 144, 150, 183, 184, 186, 187], "x11": 67, "x64": 92, "x86": [4, 6, 11, 132], "x86_64": [3, 4, 5, 7, 9, 10, 11, 67], "xbitmap": 60, "xcal": 151, "xeon": [7, 10], "xeu": [15, 187], "xhtml": 129, "xjf": 142, "xjvf": 125, "xl": [15, 168], "xlii": 82, "xloc": 129, "xlsx": [161, 168], "xml": [60, 88, 98, 118, 125, 129, 130, 132, 151, 159, 167, 170, 187], "xmlreader": 130, "xmlwriter": 130, "xoauth2": [63, 88, 115], "xss": 183, "xtradbinnodb": 60, "xxx": 29, "xxxxxxxxxx": 48, "y": [19, 47, 60, 67, 81, 83, 92, 123, 125, 126, 140, 142, 147, 148, 152, 153, 156, 163, 165, 184], "ye": [15, 38, 43, 60, 72, 77, 81, 82, 85, 92, 103, 106, 112, 117, 138, 144, 149, 153, 157, 172], "year": [73, 134, 186], "yellow": [15, 40, 41, 81, 88], "yet": [1, 3, 4, 15, 54, 60, 65, 68, 81, 88, 92, 137, 143, 152, 153, 155, 156, 175], "yield": 60, "yml": 160, "york": 2, "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 78, 79, 80, 81, 83, 84, 85, 86, 88, 91, 92, 93, 95, 96, 98, 99, 101, 102, 103, 105, 107, 108, 110, 111, 112, 113, 116, 118, 120, 121, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 166, 167, 172, 177, 180, 181, 182, 183, 184, 185, 186, 187, 188], "your": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 19, 20, 22, 23, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 63, 64, 65, 66, 67, 68, 69, 71, 72, 74, 77, 78, 79, 80, 81, 83, 84, 86, 88, 91, 92, 93, 94, 95, 96, 99, 101, 106, 107, 108, 109, 110, 111, 112, 114, 116, 117, 121, 123, 124, 125, 127, 128, 129, 130, 131, 133, 134, 135, 136, 137, 138, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 153, 154, 155, 156, 157, 159, 160, 161, 162, 163, 164, 165, 166, 170, 172, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188], "your_nextcloud_url_reachable_from_inside_dock": 8, "yourdomain": [118, 172], "yourself": [5, 56, 92, 126, 147], "yourserv": 93, "yourswifthost": 60, "youtub": [2, 119], "yum": [56, 123], "yyyi": [81, 151], "yyyymmdd": 81, "z": [85, 92, 114, 123, 125, 126, 142, 148, 184], "z0": 81, "za": 81, "zammad": [174, 175], "zend": 59, "zero": [29, 157], "zip": [56, 85, 93, 101, 111, 123, 125, 130, 142, 147], "zlib": 130, "zone": [96, 117, 123], "zsh": 150, "zshrc": 150, "\u00b2": 157, "\u00b9": 157}, "titles": ["AI as a Service", "Nextcloud Assistant", "App: Context Agent (context_agent)", "App: Context Chat", "App: Live Transcription and Translation in Nextcloud Talk (live_transcription)", "App: Local large language model (llm2)", "App: Recognize", "App: Local Whisper Speech-To-Text (stt_whisper2)", "App: Summary Bot (Talk chat summarize bot)", "App: Local Image Generation (text2image_stablediffusion2)", "App: Local Text-To-Speech (text2speech_kokoro)", "App: Local Machine translation 2 (translate2)", "Legal: Compliance with EU AI Act", "Artificial Intelligence", "Insight and debugging", "Overview", "Apps management", "Apps management API", "Collectives", "BigInt (64bit) identifiers", "Converting database type", "Database configuration", "Database configuration", "Enabling MySQL 4-byte support", "Replication", "Splitting databases", "Uploading big files > 512MB", "Providing default files", "Server-side Encryption", "Server-side encryption details", "Server-side encryption migration", "Amazon S3", "External Storage authentication mechanisms", "FTP/FTPS", "Local", "Nextcloud", "OpenStack Object Storage", "SFTP", "SMB/CIFS", "WebDAV", "External Storage", "Configuring Federation Sharing", "File conversion", "File Sharing", "Controlling file versions and aging", "Transactional file locking", "File sharing and management", "Previews configuration", "Configuring Object Storage as Primary Storage", "Deleted Items (trash bin)", "Windows compatible filenames", "Mimetypes management", "Monitoring", "Activity app", "Administration privileges (Delegation)", "Android Deep Link Handling", "Antivirus scanner", "Background jobs", "Brute force protection", "Memory caching", "Configuration Parameters", "Dashboard app", "Domain Change", "Email", "Linking external sites", "Nextcloud configuration", "Language & Locale", "Logging", "OAuth2", "Reverse proxy", "Warnings on admin page", "Text app", "Theming", "Authentication", "User management", "Instruction set for groups", "Instruction set for users", "Profiles", "Resetting a lost admin password", "Resetting a user password", "Two-factor authentication", "User authentication with LDAP", "The LDAP configuration API", "LDAP user cleanup", "User authentication with OpenID Connect", "User management", "User password policy", "User provisioning API", "Table of contents", "Energy consumption", "Declarations", "Desktop Clients", "Desktop Client Deployment and Setup", "Troubleshooting", "Advanced Deploy Options", "AppAPI and External Apps", "Deployment configurations", "Managing Deploy Daemons", "Managing ExApps", "Test Deploy Daemon", "ExApps management", "Files access control", "Automated tagging of files", "Flow configuration", "Flow", "Retention of files", "Cookies", "Data retention", "Helpful apps", "GDPR compliance", "Personal data stored", "Responding to data subject requests", "Calendar / CalDAV", "Contacts / CardDAV", "Contacts Interaction", "Groupware", "Mail", "Out-of-office feature", "Troubleshooting", "Introduction", "Automatic setup", "Installing from command line", "Deployment recommendations", "Example installation on CentOS 8", "Example installation on OpenBSD", "Example installation on Ubuntu 24.04 LTS", "Hardening and security guidance", "Installation and server configuration", "Installation wizard", "NGINX configuration", "Preparing PHP", "SELinux configuration", "Server tuning", "Installation on Linux", "System requirements", "Uninstallation", "Patching Nextcloud", "Code signing", "General troubleshooting", "Issues and troubleshooting", "Backup", "Maintenance", "Upgrade manually", "Migrating to a different server", "Migrating from ownCloud", "Upgrade via snap packages", "Restoring backup", "Upgrade via built-in updater", "How to upgrade", "Apps, background jobs & config commands", "Using the occ command", "DAV & database commands", "Encryption commands", "Files commands", "LDAP commands", "OCM commands", "System & maintenance commands", "User & group commands", "Collabora Online", "Configuration", "Configuration", "Nextcloud Office", "Installation", "Installing on Debian 12", "Installing via Docker", "Installing on Ubuntu 24.04 LTS", "Installation example with Docker", "Installation example on Ubuntu 24.04", "Office", "Installation", "Migration from Collabora Online", "Reverse proxy", "Troubleshooting", "Reference management", "Link previews", "The Smart Picker", "Release notes", "Release notes", "Upgrade to Nextcloud 26", "Upgrade to Nextcloud 27", "Upgrade to Nextcloud 28", "Upgrade to Nextcloud 30", "Upgrade to Nextcloud 31", "Upgrade to Nextcloud 32", "Upgrade to Nextcloud 33", "Upgrade to Nextcloud 35", "Maintenance and release schedule", "Webhook Listeners", "Windmill Workflows"], "titleterms": {"": [76, 85], "04": [125, 165, 167], "1": [69, 163, 165], "10": 129, "11": 55, "12": [55, 163], "15": 111, "16": 111, "17": 111, "18": 111, "1st": [133, 145], "2": [11, 69, 123, 132, 163, 165], "20": 111, "2006": 22, "2024": 89, "2025": 89, "2026": 89, "24": [125, 165, 167], "26": 178, "27": 179, "28": 180, "3": [96, 129, 163, 165], "30": 181, "31": 182, "32": 183, "33": 184, "35": 185, "3rdparti": 138, "4": [23, 163, 165], "5": [163, 165], "502": 129, "512mb": 26, "6": [163, 165], "64bit": 19, "7": 163, "8": [123, 124], "No": 92, "Not": [28, 137], "The": [58, 68, 70, 82, 114, 175], "To": [1, 7, 10, 15], "__host": 70, "about": 56, "abov": 55, "absenc": 151, "abus": 116, "access": [3, 22, 68, 69, 70, 101, 111, 126, 129, 131, 159], "accessible_featur": 60, "account": [92, 108, 110, 116, 118, 157], "account_manag": 60, "act": 12, "action": [6, 102, 126], "activ": [53, 58, 60, 81, 107, 110, 155, 181, 182, 183], "activity_expire_dai": 60, "activity_use_cached_mountpoint": 60, "ad": 116, "add": [68, 76, 137, 151, 156, 157, 167], "addendum": 5, "addit": [12, 59, 67, 81, 97, 133, 159], "address": [58, 63, 85, 113, 114, 126, 179, 183], "addressbook": [151, 153], "addus": 157, "adjust": 26, "admin": [53, 67, 70, 78, 126, 156], "admin_audit": 67, "administr": [54, 81, 85, 113], "advanc": [43, 67, 81, 92, 94, 98, 160], "advantag": 134, "after": [53, 92, 138, 146], "ag": [44, 105], "agent": [1, 2, 15, 184], "ai": [0, 1, 6, 8, 11, 12, 15], "aio": [96, 97], "ajax": 57, "alarm": 112, "alert": 116, "alias": 51, "all": [28, 60, 63, 96, 120, 126, 152], "allow": [18, 40, 70, 112, 131], "allow_custom_share_fold": 60, "allow_disabled_password_enforcement_group": 60, "allow_local_remote_serv": 60, "allow_user_to_change_display_nam": 60, "allowed_admin_rang": 60, "allowed_user_ag": 60, "allowselfsignedcertif": 60, "allowsymlink": 60, "also": 77, "altern": [5, 7, 60], "amazon": 31, "an": [17, 63, 68, 70, 84, 149], "android": 55, "ani": 129, "anoth": 43, "answer": [163, 165], "anti": 116, "antiviru": [56, 156], "anymor": 137, "apach": [26, 123, 133, 166], "apache2": 69, "apcu": 59, "api": [16, 17, 82, 87], "app": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 28, 53, 56, 58, 60, 61, 63, 67, 71, 73, 88, 95, 108, 132, 134, 136, 137, 138, 149, 153, 159, 160, 166, 181, 182, 187], "app_api": [181, 182, 183], "appapi": [95, 181, 182, 183], "appcodecheck": 60, "appear": [72, 174], "appli": 136, "applic": [68, 130, 153], "approach": [92, 148], "approv": 188, "apps_path": 60, "appsallowlist": 60, "appstoreen": 60, "appstoreurl": 60, "ar": [40, 53, 70, 114], "architectur": 134, "archiv": 93, "argument": [97, 98], "around": 22, "arrai": 149, "articl": 111, "artifici": [2, 13], "ask": [15, 172], "assetlink": 55, "assign": [102, 157], "assist": 1, "attach": 116, "attempt": [60, 156], "attribut": 81, "audienc": 119, "audit": [67, 110], "auth": [60, 157], "auth_availability_delai": 60, "authent": [32, 38, 73, 80, 81, 84, 116, 157, 188], "author": 63, "auto": 3, "auto_logout": 60, "autocomplet": 150, "autoconfig": [118, 128], "autom": [73, 102, 181], "automat": [92, 120, 128], "avail": [40, 101, 102], "avatar": [81, 157], "avoid": 129, "awai": 22, "azur": [48, 116], "backend": [15, 28, 40, 60, 112, 153], "background": [44, 49, 56, 57, 81, 112, 116, 132, 133, 149, 156], "background_jobs_expiration_dai": 60, "backtrac": 60, "backup": [28, 48, 81, 107, 140, 146], "bad": [28, 129], "balanc": 58, "bare": 96, "base": [32, 59, 67, 132, 147], "basic": [67, 93], "batch": 147, "bearer": 84, "becom": 77, "befor": [28, 43], "behavior": [77, 92], "behind": 69, "being": 53, "below": 55, "beta": 186, "better": 53, "between": [43, 188], "beyond": 63, "big": 26, "bigint": [19, 151], "bin": [49, 60, 107, 112, 153], "binary_search_path": 60, "birthdai": [112, 151], "blob": 48, "block": [29, 101, 188], "book": [113, 114, 179, 183], "bookmark": 2, "bot": 8, "brand": 72, "breakdown": 67, "broadcast": 156, "browser": 134, "brute": 58, "bruteforc": [60, 156], "bucket": 48, "bug": [138, 186], "build": 188, "built": 147, "bulkupload": 60, "button": 112, "byte": 23, "c": 48, "cach": [59, 60, 70, 81, 130, 132, 151, 157], "cache_app_config": 60, "cache_chunk_gc_ttl": 60, "cache_path": 60, "caddi": 69, "caldav": [70, 112, 151], "calendar": [2, 112, 118, 138, 151, 187], "call": 110, "can": [22, 63, 77, 175, 188], "candid": 186, "cannot": 28, "canon": 159, "capabl": 63, "carddav": [70, 113], "carddav_sync_request_timeout": 60, "carddav_sync_request_trunc": 60, "case": [38, 92], "cento": 123, "certif": [40, 63, 81, 89, 156], "chang": [40, 41, 62, 85, 92, 138, 151, 152, 177, 184], "changelog": 177, "channel": [60, 186], "charset": 151, "chat": [1, 3, 8, 15, 110], "check": [29, 30, 40, 70, 99, 153, 154, 156, 180, 183], "check_data_directory_permiss": 60, "check_for_working_htaccess": 60, "check_for_working_wellknown_setup": 60, "choic": 128, "choos": 92, "chroot": 124, "chunk": [26, 182], "chunked_upload": 60, "cif": [38, 131], "cipher": 60, "circl": 2, "citrix": 93, "clamav": 56, "clean": [73, 151, 152, 181], "cleanup": [83, 153, 156, 157], "clear": [151, 157], "cli": [60, 72, 97, 130], "client": [40, 72, 91, 92, 93, 134, 146], "close": 93, "cloud": [26, 60, 138], "clue": 129, "cluster": [59, 60], "code": [60, 137, 156], "collabor": 105, "collabora": [158, 159, 166, 170], "collat": 60, "collect": [18, 88], "column": 151, "com": 118, "combin": 2, "command": [3, 16, 22, 28, 50, 58, 93, 113, 121, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 160], "comment": [60, 132], "commit": [22, 70], "common": [92, 101, 105, 138, 160], "commun": 96, "comparison": 28, "compat": [50, 153], "complet": 128, "complianc": [12, 109], "compon": [119, 163], "compound": 67, "compress": 132, "condit": [60, 67, 69], "config": [59, 63, 77, 93, 126, 149, 153, 154, 156, 160], "config_is_read_onli": 60, "configfilemod": 60, "configur": [1, 3, 5, 18, 21, 22, 26, 40, 41, 47, 48, 53, 55, 56, 59, 60, 61, 63, 64, 65, 67, 70, 72, 77, 81, 82, 88, 96, 103, 116, 120, 126, 127, 129, 130, 131, 132, 133, 149, 159, 160, 166, 167, 170, 178, 179, 180, 181, 182, 183], "confirm": 56, "connect": [59, 81, 84, 93, 118, 126, 188], "connectivity_check_domain": 60, "connector": [130, 160], "consequ": 50, "consider": [32, 68], "consumpt": 89, "contact": [2, 113, 114, 118, 138, 151], "contain": [96, 99], "content": [18, 88], "context": [1, 2, 3, 15], "context_ag": 2, "contrib": 163, "control": [3, 44, 101, 152], "convers": [20, 42, 151], "convert": [20, 151], "cookbook": 2, "cooki": [70, 106], "cookie_domain": 60, "copi": 153, "copied_sample_config": 60, "core": [60, 93, 119, 153], "count": [181, 182, 183], "cpu": 134, "creat": [22, 41, 43, 55, 75, 82, 85, 93, 151, 153, 154, 163, 165, 188], "creation": [44, 128, 151], "critic": 177, "cron": [57, 124, 132, 156], "csrf": 60, "css": 129, "csync": 93, "current": 2, "custom": [2, 16, 72, 112, 147, 159, 160], "customclient_desktop": 60, "cybersecur": 12, "daemon": [95, 96, 97, 99], "dashboard": 61, "data": [3, 18, 28, 48, 53, 60, 75, 76, 107, 108, 110, 111, 112, 113, 114, 118, 120, 126, 128, 138, 146, 151, 152, 153, 156, 157, 164], "databas": [20, 21, 22, 25, 53, 60, 70, 118, 120, 123, 124, 128, 130, 131, 132, 134, 140, 146, 151, 163, 165, 182], "datadirectori": [60, 138], "date": 43, "dav": [151, 178], "davstorag": 60, "db": [60, 151, 156], "dbdriveropt": 60, "dbhost": 60, "dbname": 60, "dbpassword": 60, "dbpersist": 60, "dbreplica": 60, "dbtableprefix": 60, "dbtype": 60, "dbuser": 60, "debian": 163, "debug": [14, 60, 63, 67, 93, 126, 132, 138, 150], "deck": 2, "declar": 90, "decreas": 38, "decrypt": [28, 29, 152], "dedic": [67, 126], "deep": [40, 55], "default": [27, 43, 60, 66, 67, 71, 77, 96, 116, 152, 159, 181, 182, 184], "default_certificates_bundle_path": 60, "default_languag": 60, "default_local": 60, "default_phone_region": 60, "default_property_scop": 60, "default_timezon": 60, "defaultapp": 60, "defin": 69, "definit": 28, "delai": 38, "deleg": [54, 116, 156], "delet": [49, 60, 75, 76, 82, 83, 85, 114, 149, 151, 153, 154, 156, 157], "demand": 67, "demot": 76, "deni": 101, "depend": [18, 153], "deploi": [94, 95, 96, 97, 98, 99], "deploy": [59, 92, 96, 122, 126], "deployconfig": 97, "deriv": 29, "desktop": [40, 60, 91, 92, 134], "detail": 29, "detect": [6, 40, 56, 129], "determin": 63, "dev": [70, 126], "develop": 119, "diagnost": 60, "did": 137, "differ": [48, 63, 143], "directori": [16, 59, 81, 120, 126, 128, 131, 138], "disabl": [17, 28, 47, 53, 56, 60, 70, 71, 76, 77, 80, 85, 92, 98, 116, 126, 138, 151, 152, 157], "disallow": 131, "discoveri": [69, 138], "disk": 6, "dispatch": 187, "displai": 41, "distinct": 92, "distinguish": 43, "distribut": [60, 170], "dmz": 126, "do": [137, 147, 174], "docker": [95, 96, 164, 166, 170], "document": 15, "documentation_url": 60, "doe": [70, 147, 174], "dokuwiki": 18, "domain": [62, 63, 69, 118, 126, 128, 129, 138], "don": 28, "down": [77, 137], "downgrad": 186, "download": [99, 147, 163, 165], "drop": [43, 108, 134, 152], "due": 53, "dump": 93, "duplic": 81, "dure": [44, 148], "edit": [71, 75, 76, 119, 157, 159], "editor": 160, "email": [53, 63, 76, 85, 178], "embed": [60, 64], "empti": [70, 154], "enabl": [16, 17, 23, 28, 40, 50, 53, 56, 60, 61, 63, 76, 80, 85, 98, 99, 126, 131, 132, 133, 150, 152, 156, 157, 159, 163, 183], "enable_lazy_object": 60, "enable_mail_link_password_expir": 60, "enable_non": 60, "enable_preview": 60, "enable_share_accept": 60, "enable_share_mail": 60, "enabledpreviewprovid": 60, "encod": [40, 71], "encrypt": [28, 29, 30, 48, 56, 60, 63, 132, 133, 138, 152], "end": [6, 186], "endpoint": 184, "energi": 89, "enforc": [80, 157], "enforce_them": 60, "ensur": 126, "entri": 67, "envelop": [29, 187], "environ": [60, 94, 133, 150, 164], "erasur": 111, "error": [22, 28, 93, 129, 137, 138], "errorlog": 67, "establish": 20, "ethic": [6, 8, 11, 15], "eu": 12, "even": 63, "event": [112, 118, 151, 187], "everyth": 56, "exampl": [17, 58, 60, 67, 69, 75, 76, 82, 92, 97, 101, 102, 105, 112, 113, 120, 123, 124, 125, 132, 151, 166, 167, 188], "exapp": [95, 96, 98, 100], "exclud": [53, 58], "execut": [102, 156], "exist": [18, 77], "expand": 183, "expect": 151, "experi": 60, "expert": 81, "expir": [43, 53, 153], "explain": 67, "export": [112, 118, 151, 153, 156], "expos": 179, "extens": [71, 89], "extern": [28, 32, 40, 48, 53, 64, 95, 101, 133, 153, 159], "external_storag": 60, "face": 6, "factor": [47, 80, 157], "fail": [118, 129], "fail2ban": [58, 126], "failur": [38, 92], "fair": 138, "faq": [77, 95, 137, 188], "faster": 132, "featur": [15, 92, 117], "feder": [26, 41, 60, 112, 138, 153], "field": [67, 76, 77], "file": [2, 3, 26, 27, 28, 29, 30, 38, 40, 42, 43, 44, 45, 46, 53, 56, 60, 67, 70, 71, 88, 93, 101, 102, 105, 107, 110, 129, 132, 134, 138, 153, 156, 157, 159, 180, 181, 187], "filecach": 151, "filekei": 152, "filelock": 60, "filenam": [50, 153], "files_antiviru": 156, "files_extern": 153, "files_external_allow_create_new_loc": 60, "files_no_background_scan": 60, "filesystem": 40, "filesystem_cache_readonli": 60, "filesystem_check_chang": 60, "filter": [14, 126, 187], "final": 124, "find": [22, 63], "fingerprint": [60, 156], "fix": [137, 151, 152, 153], "flow": [103, 104], "folder": [28, 40, 53, 92, 101, 140, 146, 187], "follow": 116, "font": 159, "forbidden_filenam": 60, "forbidden_filename_basenam": 60, "forbidden_filename_charact": 60, "forbidden_filename_extens": 60, "forc": [58, 60, 66], "force_languag": 60, "force_local": 60, "force_share_accept": 60, "form": [2, 187], "format": [29, 30, 60, 152], "forwarded_for_head": 60, "found": 28, "fpm": [132, 133], "freebusi": 112, "frequenc": 40, "frequent": [15, 172], "from": [18, 48, 53, 58, 63, 76, 92, 121, 144, 170], "front": 6, "frontend": 15, "ftp": 33, "fulli": 5, "function": 93, "further": [28, 119, 130], "fusef": 131, "g": 60, "gatewai": 129, "gdpr": 109, "gener": [9, 15, 22, 29, 47, 126, 130, 138], "genr": 6, "get": [14, 17, 43, 56, 63, 75, 76, 88, 118, 119, 149, 151, 153, 156], "getenv": 70, "give": 126, "global": [71, 77, 118], "gone": 22, "googl": 116, "gpg": 131, "grant": 85, "greater": 129, "green": 6, "group": [18, 28, 40, 75, 76, 81, 85, 101, 154, 157, 159], "group_everyon": 18, "groupwar": [88, 110, 115], "grow": 53, "guest": 18, "guidanc": 126, "ha": 22, "handl": [55, 81], "handler": [59, 129], "haproxi": 69, "harden": 126, "hardwar": 12, "harp": [95, 96], "has_internet_connect": 60, "hash": 60, "hashing_default_password": 60, "hashingcost": 60, "hashingmemorycost": 60, "hashingthread": 60, "hashingtimecost": 60, "have": 70, "header": [70, 126], "heartbeat": 99, "held": 110, "help": 108, "hidden": 38, "hide": 112, "hide_login_form": 60, "hierarch": 149, "histori": 156, "home": 59, "host": [16, 96], "how": [22, 40, 58, 63, 77, 114, 148, 174], "htaccess": [60, 133, 156], "http": [70, 126, 129, 132, 133], "http_client_add_user_agent_url": 60, "httpd": 124, "i": [15, 22, 28, 56, 63, 70, 126, 137, 181, 182, 188], "ibm": 0, "icap": 56, "icon": [51, 72], "id": [14, 118, 138, 156, 184], "ident": 84, "identifi": [19, 93], "ignorefrontcontrol": 60, "imag": [1, 9, 15, 47, 81, 99, 126, 164, 170], "imagick": 123, "imaginari": 181, "imap": [116, 118], "implement": [2, 12], "implic": 48, "import": [18, 92, 151, 153, 156, 167], "imprint": 108, "improv": [0, 1, 15], "inconvert": 20, "independ": 96, "index": 3, "indic": 151, "info": [17, 56, 153, 156, 157], "inform": 138, "ini": 130, "init": 99, "initi": [3, 18, 25, 89], "insecur": 93, "insert": 118, "insight": 14, "inspect": 151, "instal": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 56, 60, 88, 92, 95, 121, 123, 124, 125, 126, 127, 128, 130, 133, 145, 156, 160, 162, 163, 164, 165, 166, 167, 169, 186, 187, 188], "instanc": [48, 126], "instanceid": 60, "instruct": [75, 76], "integr": [0, 67, 70, 81, 137, 153, 183], "intellig": [2, 13], "interact": [67, 92, 114], "interfac": [50, 67, 113, 116, 131], "intern": [81, 138], "interoper": 12, "interv": [81, 116], "introduct": [54, 58, 60, 119, 126, 187], "invalid": [28, 50, 63, 137, 151], "invis": 102, "invit": 112, "ip": [58, 126], "ipv6_normalized_subnet_s": 60, "isol": [22, 70, 93], "issu": [93, 118, 138, 139], "item": [49, 60, 113], "j": [129, 156], "jail": 126, "javascript": 129, "jit": 132, "job": [44, 49, 57, 112, 124, 132, 133, 149, 156], "journal_mod": 60, "jpeg": 47, "json": 55, "keep": 63, "kei": [28, 29, 32, 59, 82, 132, 151, 152, 155, 157, 167], "keyboard": 93, "knowledgebas": 60, "knowledgebaseen": 60, "known": [2, 3, 5, 6, 7, 8, 9, 10, 11, 70, 77, 93, 112, 174, 175], "kubernet": [3, 96], "languag": [5, 66], "larg": [5, 12, 26, 53], "lastseen": 157, "launch": 92, "ldap": [28, 60, 81, 82, 83, 131, 154], "ldap_log_fil": 60, "ldapusercleanupinterv": 60, "legaci": [67, 152], "legal": 12, "length": [126, 186], "level": [22, 67, 70, 132], "libreoffic": 180, "life": 186, "lifetim": 107, "limit": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 40, 55, 56, 77, 112, 113, 116, 126, 150], "line": [93, 113, 121, 147, 156], "link": [41, 43, 55, 60, 64, 69, 174], "linux": 133, "list": [14, 17, 76, 81, 97, 98, 151, 152, 153, 155, 156, 157, 187], "listen": [63, 156, 187], "live": [4, 15], "live_transcript": 4, "llm": 116, "llm2": 5, "load": [3, 58, 60, 81, 132], "local": [5, 7, 9, 10, 11, 34, 60, 66, 77, 83, 96, 112, 116], "localstorag": 60, "locat": [29, 59, 60, 67, 128, 152], "lock": [45, 60, 70, 77, 132, 137], "log": [3, 4, 60, 67, 81, 93, 96, 99, 107, 110, 118, 129, 132, 138, 156], "log_queri": 60, "log_request_id": 60, "log_rotate_s": 60, "log_typ": 60, "log_type_audit": 60, "logdateformat": 60, "logfil": [60, 138], "logfile_audit": 60, "logfilemod": 60, "login": [58, 68, 81, 129, 133, 145], "login_flow_v2": 60, "login_form_autocomplet": 60, "login_form_timeout": 60, "loglevel": 60, "loglevel_dirty_database_queri": 60, "loglevel_frontend": 60, "logo_url": 60, "logtimezon": 60, "long": [134, 148], "look": 63, "lookup_serv": 60, "loop": 129, "lost": 78, "lost_password_link": 60, "lt": [125, 165], "machin": [1, 11, 15, 133], "maco": 93, "made": 40, "mai": 183, "mail": [2, 60, 63, 116, 118], "mail_domain": 60, "mail_from_address": 60, "mail_link_password_expiration_interv": 60, "mail_send_plaintext_onli": 60, "mail_sendmailmod": 60, "mail_smtpauth": 60, "mail_smtpdebug": 60, "mail_smtphost": 60, "mail_smtpmod": 60, "mail_smtpnam": 60, "mail_smtppassword": 60, "mail_smtpport": 60, "mail_smtpsecur": 60, "mail_smtpstreamopt": 60, "mail_smtptimeout": 60, "mail_template_class": 60, "mailbox": 116, "mainten": [60, 88, 140, 141, 148, 150, 151, 152, 156, 186], "maintenance_window_start": [57, 60], "major": 186, "make": [5, 40], "manag": [16, 17, 28, 46, 51, 56, 74, 85, 97, 98, 100, 130, 132, 133, 151, 156, 173], "managerfactori": 60, "mandatori": 137, "manual": [8, 56, 118, 133, 142, 148], "map": [51, 81], "mariadb": [22, 134, 140, 146], "mark": [56, 156], "master": [29, 152], "match": 67, "matrix": 77, "max": [43, 60], "max_file_conversion_files": 60, "max_filesize_animated_gifs_public_shar": 60, "max_parallel_count": 60, "max_siz": 60, "maxautocompleteresult": 60, "maximum": [47, 60, 133, 182], "mcp": 2, "me": [106, 107], "mechan": 32, "media": [130, 133], "member": 75, "memberof": 81, "memcach": [59, 60, 131], "memcache_customprefix": 60, "memcached_opt": 60, "memcached_serv": 60, "memori": [47, 59, 60, 134], "merg": 60, "messag": [93, 129, 137, 138], "metadata": 110, "metadata_max_files": 60, "metal": 96, "method": 28, "mib": 129, "microsoft": [48, 81, 116], "migrat": [25, 30, 116, 143, 144, 148, 152, 170], "mimetyp": [51, 156], "minimum": 60, "minsearchstringlength": 60, "miscellan": 2, "misconfigur": [101, 105], "miss": [40, 53, 118, 151], "mobil": 134, "mod_fcgid": 26, "mod_proxy_fcgi": 26, "mode": [28, 63, 126, 132, 140, 147, 148, 150, 156], "model": [2, 5, 7, 11, 12], "modifi": [60, 63, 82], "modul": [123, 126, 130, 138, 152], "monitor": [52, 180, 181, 182, 183], "mount": [40, 94, 153], "mountpoint": 28, "move": [138, 151, 153], "multi": 48, "multibucket": [48, 60], "multilingu": 5, "multipl": [60, 69], "music": 6, "my": [15, 22, 63], "mysql": [22, 23, 60, 118, 120, 134, 140, 146, 151], "name": [40, 70, 138], "nc": 96, "need": 183, "nest": 81, "network": [112, 131], "new": [18, 41, 76, 77, 85, 159], "next": 125, "nextcloud": [1, 2, 4, 26, 35, 40, 41, 53, 55, 56, 59, 60, 61, 65, 69, 72, 81, 83, 84, 93, 96, 97, 106, 119, 123, 124, 126, 129, 136, 137, 138, 142, 159, 161, 166, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188], "nf": 131, "nginx": [26, 69, 129], "no_unsupported_browser_warn": 60, "node": 187, "non": [92, 138], "nor": 129, "note": [59, 81, 88, 124, 130, 136, 176, 177], "notif": [16, 38, 43, 53, 112, 148, 153], "notifi": 153, "now": [181, 182], "nss": 70, "o": 134, "oauth": 116, "oauth2": [68, 156], "object": [6, 26, 36, 48, 60, 153, 187], "objectstor": 60, "obtain": [93, 136], "occ": [3, 16, 28, 50, 58, 81, 97, 150, 160], "ocm": 155, "off": 81, "offic": [88, 117, 151, 159, 161, 168, 180], "old": [30, 134], "olmo": 5, "one": [63, 96], "onli": [63, 70], "onlin": [158, 159, 166, 170], "ooxml": 159, "opcach": 132, "open": [5, 137], "openai": 0, "openbsd": 124, "openid": 84, "openmetr": [52, 184], "openmetrics_allowed_cli": 60, "openmetrics_skipped_class": 60, "openssl": [60, 70], "openstack": [36, 48], "oper": [126, 153, 156], "option": [3, 28, 40, 60, 67, 81, 92, 94, 97, 98, 123, 153, 159], "optout": 60, "organ": 59, "orphan": [152, 153], "other": [15, 60, 93, 118, 133, 138], "out": [22, 63, 117, 151], "outdat": 70, "outgo": 184, "outlook": 118, "output": [17, 75, 76, 82], "outsid": [40, 126], "over": 59, "overrid": [48, 67, 77], "overview": [15, 28, 58, 133, 142, 148, 186, 187], "overwrit": [60, 69], "overwritecondaddr": 60, "overwritehost": 60, "overwriteprotocol": 60, "overwritewebroot": 60, "owncloud": 144, "owner": [153, 156], "ownership": 153, "packag": [133, 145, 163, 165, 167, 170], "page": [58, 70], "pair": 29, "paramet": [22, 47, 57, 60, 63, 67, 69, 92, 120, 132], "part_file_in_storag": 60, "parti": 110, "pass": [70, 188], "password": [32, 73, 78, 79, 85, 86, 126, 181], "passwordsalt": 60, "patch": 136, "path": [40, 60, 70, 138], "payload": 187, "pdf": 181, "per": [48, 81, 118], "perform": [0, 48, 132], "permiss": [40, 81], "persist": [43, 164], "person": 110, "pgsql_ssl": 60, "photo": [6, 151], "php": [26, 59, 63, 70, 77, 116, 123, 124, 126, 129, 130, 132, 133, 134, 138, 160, 182], "physic": 12, "picker": 175, "pickup": [1, 15], "place": 126, "podman": 96, "point": 28, "polici": [86, 138], "pomerium": 69, "port": 63, "portabl": 111, "postgresql": [22, 120, 140, 146], "pre": [68, 163, 165], "preced": 77, "preconfigur": 92, "prefer": 116, "prefix": [59, 70], "prepar": 130, "prerequisit": [126, 133, 148, 163, 164, 165], "pretti": 133, "prevent": [64, 101], "preview": [47, 60, 126, 132, 153, 159, 174, 180, 181, 182, 183, 184], "preview_concurrency_al": 60, "preview_concurrency_new": 60, "preview_expiration_dai": 60, "preview_ffmpeg_path": 60, "preview_ffprobe_path": 60, "preview_imaginary_kei": 60, "preview_imaginary_url": 60, "preview_libreoffice_path": 60, "preview_max_filesize_imag": 60, "preview_max_i": 60, "preview_max_memori": 60, "preview_max_x": 60, "previou": 142, "primari": [48, 151], "privaci": 113, "privat": [16, 28, 29, 59, 77], "privileg": [54, 85], "problem": [93, 118, 138], "process": [1, 15, 111, 116, 132, 133, 156], "profil": [60, 77, 81, 110, 157], "project": 60, "promot": 76, "prompt": 15, "proper": 126, "properli": [70, 129], "properti": [77, 113], "protect": [58, 60, 183], "protocol": 63, "provid": [15, 27, 63, 80, 84, 174, 175], "provis": [87, 92], "proxi": [58, 60, 69, 95, 96, 129, 166, 170, 171], "proxyexclud": 60, "proxyuserpwd": 60, "public": [18, 29, 32, 41, 105, 112], "pull": 99, "put": 153, "qmail": 63, "qualiti": 47, "query_log_fil": 60, "query_log_file_backtrac": 60, "query_log_file_paramet": 60, "query_log_file_requestid": 60, "question": [15, 172], "queue": 56, "quick": [128, 130, 164], "quickstart": 145, "quota": [85, 138], "quota_include_external_storag": 60, "rainloop": 131, "rang": 126, "rate": [6, 8, 11, 15, 60, 112, 113], "ratelimit": 60, "ratelimit_overwrit": 60, "reachabl": [22, 63], "read": [22, 28, 29, 70, 81, 82, 126], "readabl": 70, "reboot": 92, "receiv": 53, "recent": 114, "recogn": 6, "recognit": 6, "recommend": [59, 92, 122, 130], "recov": 152, "recoveri": [28, 29, 48, 146], "rectif": 111, "redi": [59, 60, 123, 124, 132], "redirect": 126, "redis_log_fil": 60, "reduc": 132, "reduce_to_languag": 60, "refer": [53, 77, 130, 150, 173], "reference_opengraph": 60, "refresh": [112, 153], "regist": [97, 98, 99, 187], "regular": 44, "reject": 63, "relat": [1, 126], "releas": [60, 88, 142, 176, 177, 186], "reliabl": [12, 40], "rememb": [106, 107], "remember_login_cookie_lifetim": 60, "remind": [112, 116, 151, 153], "remirepo": 123, "remnant": 154, "remot": [96, 126, 131, 153], "remov": [76, 80, 151, 156], "removeus": 157, "renam": [40, 85], "repair": [152, 153, 156], "replac": 132, "replic": 24, "report": [157, 186], "repositori": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 167], "request": [60, 108, 111, 184], "request_timeout": 60, "requir": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 22, 92, 123, 130, 134, 163, 165, 178, 179, 180, 181, 182, 183, 184, 185], "rescan": 137, "resend": 76, "reset": [78, 79, 85, 156], "resetpassword": 157, "resolv": 70, "resourc": [112, 119, 130], "respond": 111, "respons": 70, "restor": [146, 153], "restrict": [102, 111, 126, 159], "retent": [105, 107, 112, 113, 114, 151, 178], "retir": 155, "retriev": 51, "return": [70, 156], "revalid": 132, "revers": [58, 69, 96, 166, 170, 171], "revert": 136, "rewritebas": 60, "rich": 71, "right": [92, 111], "robust": 12, "room": 112, "root": [126, 152], "rotat": [60, 96, 155], "rule": [3, 77, 101, 102], "run": [5, 20, 70, 148, 150, 156], "runtim": 18, "s3": [31, 48, 183], "same": 96, "sampl": 60, "sanit": [50, 153], "scale": [2, 3, 5, 6, 7, 9, 10, 47], "scan": [56, 152, 153, 156], "scanner": 56, "schedul": [53, 116, 186], "schema": 151, "scope": [77, 113], "screen": [15, 187], "script": [133, 188], "seal": 29, "search": [2, 15, 75, 76, 154], "secret": [60, 67], "secur": [12, 60, 68, 70, 96, 126, 156, 159, 160], "see": [28, 77], "seed": [163, 165], "selector": 149, "self": [16, 40, 63], "selinux": [123, 126, 131, 133], "send": [63, 116, 151], "sendmail": [63, 131], "sensit": 38, "sent": 53, "serv": [126, 129], "server": [2, 22, 26, 28, 29, 30, 41, 59, 60, 63, 70, 81, 93, 107, 110, 112, 116, 126, 127, 131, 132, 133, 134, 136, 138, 143, 159, 160, 166, 178, 179, 180, 181, 183], "server_log": 60, "serverid": 60, "servic": [0, 15, 48, 69, 110, 138, 187], "session": [15, 59, 60, 107, 110, 187], "session_keepal": 60, "session_lifetim": 60, "session_relaxed_expiri": 60, "set": [28, 43, 47, 53, 58, 63, 67, 70, 75, 76, 77, 81, 85, 112, 123, 130, 132, 133, 149, 151, 152, 154, 156, 157, 159, 160, 188], "setup": [8, 59, 92, 95, 120, 126, 156, 180, 183], "sftp": 37, "share": [2, 18, 26, 28, 29, 32, 41, 43, 46, 53, 60, 67, 69, 112, 113, 116, 118, 138, 151, 153, 156], "share_fold": 60, "ship": 138, "shortcut": 93, "show": [152, 154, 156], "shown": [38, 60], "side": [26, 28, 29, 30], "siev": [116, 118], "sign": [29, 40, 63, 137, 153, 167], "signatur": [28, 29, 147], "simpl": 48, "simplesignuplink": 60, "singl": [56, 59, 75, 76, 149], "site": [64, 70], "size": [26, 47, 116, 132, 133, 138, 153, 182], "skeletondirectori": 60, "skip": 68, "slot": 155, "slow": [15, 132], "small": 59, "smart": 175, "smb": [38, 131], "smtp": [63, 116, 118, 131], "snap": [133, 145], "snooz": 116, "snowflak": [156, 184], "socket": [59, 95, 96, 129], "some": 70, "sort_groups_by_nam": 60, "sourc": [29, 137], "space": [3, 6, 8, 11, 133, 156], "special": [32, 81], "specif": [63, 81, 101, 126, 130, 159], "speech": [1, 7, 10, 15], "speed": [1, 15, 187], "split": [25, 29], "sql": 22, "sqlite": [60, 120, 132, 140, 146], "sse": 48, "ssl": [22, 60, 81, 126, 133], "stage": 155, "standalone_window": 60, "start": [88, 99, 119, 128, 164], "starttl": 63, "stat": 156, "state": 157, "statu": [99, 152, 156], "step": [28, 124, 125, 142, 148, 163, 165, 188], "still": 53, "storag": [1, 26, 28, 32, 36, 40, 48, 53, 85, 101, 126, 152, 153, 156], "store": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 29, 48, 60, 106, 110, 153], "storecryptedpassword": 60, "strict": [70, 126], "stt_whisper2": 7, "subadmin": [75, 76], "subdir": 129, "subdirectori": 69, "subject": 111, "subscript": [112, 151], "summar": 8, "summari": [8, 92, 107, 116], "suppli": [5, 7], "support": [3, 23, 48, 60, 63, 134, 186], "supporteddatabas": 60, "suppress": 129, "suspend": 188, "swift": 48, "switch": 11, "sync": [38, 81, 93, 112, 113, 116, 138, 151, 153, 157, 178], "synchron": [3, 70, 118], "synchronis": 146, "syslog": 67, "syslog_tag": 60, "syslog_tag_audit": 60, "system": [26, 38, 113, 126, 132, 133, 134, 151, 156, 157, 163, 165, 178, 179, 180, 181, 182, 183, 184, 185, 187], "systemd": [15, 57, 67, 187], "t": 28, "tab": 81, "tabl": [20, 88, 107, 130, 187], "tag": [102, 105, 157, 164, 187], "talk": [2, 4, 8, 110, 134], "target": [20, 119], "task": [1, 2, 14, 15, 56, 156], "taskprocess": 156, "tcp": [59, 63], "team": [2, 28, 53], "tempdirectori": 60, "templat": [27, 63, 160], "templatedirectori": 60, "temporari": 67, "term": 134, "test": [60, 63, 70, 81, 99, 154], "text": [1, 7, 10, 15, 71], "text2image_stablediffusion2": 9, "text2speech_kokoro": 10, "than": 129, "thei": 174, "theme": [60, 63, 72, 108, 156], "thi": 70, "third": 110, "though": 63, "thread": [116, 118], "threshold": 60, "through": [67, 129], "timeout": [116, 118], "tip": [41, 81, 129, 133, 145], "tl": [59, 81, 116, 132], "tmux": [15, 187], "token": [68, 84, 107, 112, 113, 126, 157, 178], "token_auth_activity_upd": 60, "token_auth_enforc": 60, "tool": 2, "track": 114, "traefik": 69, "traffic": 126, "transact": [22, 45, 70, 132], "transcript": [4, 15], "transfer": [43, 153], "transferincomingshar": 60, "translat": [1, 4, 11, 15, 116], "translate2": 11, "transpar": 12, "transport": [70, 126], "trash": [49, 60, 107, 112, 153], "trashbin": 153, "trashbin_retention_oblig": 60, "tree": 153, "trick": [81, 129], "trigger": [20, 56], "troubleshoot": [3, 22, 28, 40, 53, 58, 63, 81, 93, 118, 131, 132, 136, 138, 139, 142, 147, 172], "truena": 133, "trust": [41, 69, 128, 129], "trusted_domain": 60, "trusted_proxi": 60, "ttl": 60, "tune": 132, "turn": 81, "two": [80, 157], "twofactorauth": 157, "type": [20, 29, 59, 60, 67, 112, 151, 156, 186], "ubuntu": [125, 165, 167], "umask": 60, "unabl": 118, "unencrypt": 126, "unified_search": 60, "uninstal": [135, 163, 164, 165], "unix": [59, 129], "unknown": 93, "unlink_on_trunc": 60, "unregist": [97, 98], "unscan": 56, "unseal": 29, "unshar": 151, "untrust": 129, "up": [70, 73, 116, 123, 133, 151, 181, 187, 188], "updat": [16, 25, 38, 60, 92, 98, 118, 131, 138, 147, 148, 156, 163, 164, 165, 166, 170, 183], "updatecheck": 60, "updatedirectori": 60, "upgrad": [60, 134, 142, 145, 147, 148, 156, 170, 178, 179, 180, 181, 182, 183, 184, 185, 186], "upload": [26, 38, 101, 129, 133], "urandom": [70, 126], "url": [60, 69, 133, 147], "us": [2, 12, 15, 16, 22, 40, 43, 50, 59, 60, 63, 67, 70, 81, 84, 116, 126, 129, 132, 138, 147, 150, 159, 175, 180], "usag": [3, 6, 8, 11, 40, 54, 58, 97, 159], "use_legacy_base64_encod": 60, "user": [18, 22, 28, 29, 40, 43, 53, 60, 74, 76, 77, 79, 81, 83, 84, 85, 86, 87, 88, 101, 113, 114, 116, 128, 138, 152, 154, 157, 181, 182, 183, 184], "user_ini_additional_lin": 60, "utf8mb4": 60, "v": [58, 59, 95], "valid": 84, "valu": [60, 77, 149, 188], "variabl": [40, 60, 94, 133, 150, 164], "verif": [60, 81, 116, 147], "verifi": [77, 153, 157, 163, 165], "version": [44, 60, 70, 107, 134, 138, 152, 153, 186], "versions_retention_oblig": 60, "via": [8, 16, 28, 41, 69, 70, 72, 81, 131, 133, 145, 147, 164], "video": 6, "view": 159, "virtual": 133, "visibl": 77, "voic": 1, "vp": 133, "wa": 85, "warn": [68, 70], "watermark": 160, "watsonx": 0, "we": [134, 137], "web": [26, 50, 60, 63, 67, 70, 107, 110, 126, 131, 133, 134, 138, 147, 178, 179, 180, 181, 183], "webauthn": 60, "webcron": 57, "webdav": [39, 138], "webhook": [156, 187], "webroot": [129, 159], "webserv": 93, "welcom": [76, 157], "well": 70, "what": [5, 63, 77, 147], "when": [12, 77, 93, 129], "where": [174, 175], "whisper": 7, "who": 119, "whole": 131, "why": [15, 28, 40, 63, 134, 137], "windmil": [15, 188], "window": [50, 92, 133, 153], "without": 129, "wizard": [92, 128, 133], "wopi": 159, "work": [22, 40, 56, 58, 174], "worker": 156, "workflow": [15, 67, 156, 188], "workspac": [71, 93, 188], "write": 131, "xml": [17, 75, 76, 82], "xoauth2": 116, "yellow": 6, "yet": 70, "you": [28, 70, 77], "your": [18, 26, 53, 61, 70, 85, 118, 126, 132]}}) \ No newline at end of file diff --git a/server/latest/developer_manual/404.html b/server/latest/developer_manual/404.html index 8a29ec32c15..860cbcc77eb 100644 --- a/server/latest/developer_manual/404.html +++ b/server/latest/developer_manual/404.html @@ -563,7 +563,7 @@

    Here are some alternatives:

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/bootstrap.html b/server/latest/developer_manual/app_development/bootstrap.html index e6914277a01..864edb666ec 100644 --- a/server/latest/developer_manual/app_development/bootstrap.html +++ b/server/latest/developer_manual/app_development/bootstrap.html @@ -322,7 +322,7 @@

    Nextcloud 20 and later

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/commands.html b/server/latest/developer_manual/app_development/commands.html index c8190b68fd9..d24cd463173 100644 --- a/server/latest/developer_manual/app_development/commands.html +++ b/server/latest/developer_manual/app_development/commands.html @@ -316,7 +316,7 @@

    Interactive commands

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/dav_extension.html b/server/latest/developer_manual/app_development/dav_extension.html index 688af655db1..b8b15362124 100644 --- a/server/latest/developer_manual/app_development/dav_extension.html +++ b/server/latest/developer_manual/app_development/dav_extension.html @@ -218,7 +218,7 @@

    Performance considerations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/dependency_management.html b/server/latest/developer_manual/app_development/dependency_management.html index 36b41803058..13c94016d90 100644 --- a/server/latest/developer_manual/app_development/dependency_management.html +++ b/server/latest/developer_manual/app_development/dependency_management.html @@ -283,7 +283,7 @@

    Conflict example

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/index.html b/server/latest/developer_manual/app_development/index.html index 6c5fd3d46ad..f9233c189dc 100644 --- a/server/latest/developer_manual/app_development/index.html +++ b/server/latest/developer_manual/app_development/index.html @@ -189,7 +189,7 @@

    App development

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/info.html b/server/latest/developer_manual/app_development/info.html index 256d7b4144a..82c2958044d 100644 --- a/server/latest/developer_manual/app_development/info.html +++ b/server/latest/developer_manual/app_development/info.html @@ -660,7 +660,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/init.html b/server/latest/developer_manual/app_development/init.html index b65319d898b..035a070f4c7 100644 --- a/server/latest/developer_manual/app_development/init.html +++ b/server/latest/developer_manual/app_development/init.html @@ -166,7 +166,7 @@

    Initialization events

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/intro.html b/server/latest/developer_manual/app_development/intro.html index 7da315a6eb4..c754b370ad0 100644 --- a/server/latest/developer_manual/app_development/intro.html +++ b/server/latest/developer_manual/app_development/intro.html @@ -196,7 +196,7 @@

    App architecture

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/translation.html b/server/latest/developer_manual/app_development/translation.html index fd61f285505..1081b10de13 100644 --- a/server/latest/developer_manual/app_development/translation.html +++ b/server/latest/developer_manual/app_development/translation.html @@ -307,7 +307,7 @@

    Documentation on the translation process

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_development/tutorial.html b/server/latest/developer_manual/app_development/tutorial.html index c973f24ea14..f0fc5c70ea2 100644 --- a/server/latest/developer_manual/app_development/tutorial.html +++ b/server/latest/developer_manual/app_development/tutorial.html @@ -140,7 +140,7 @@

    Tutorial

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/code_signing.html b/server/latest/developer_manual/app_publishing_maintenance/code_signing.html index ad2c3a459d4..a6542a111fd 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/code_signing.html +++ b/server/latest/developer_manual/app_publishing_maintenance/code_signing.html @@ -336,7 +336,7 @@

    Errors<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/index.html b/server/latest/developer_manual/app_publishing_maintenance/index.html index 8dbb606765f..60d8832b6ef 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/index.html +++ b/server/latest/developer_manual/app_publishing_maintenance/index.html @@ -177,7 +177,7 @@

    App publishing and maintenance

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/maintainer.html b/server/latest/developer_manual/app_publishing_maintenance/maintainer.html index c6c82ac7c33..ee19b20fe12 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/maintainer.html +++ b/server/latest/developer_manual/app_publishing_maintenance/maintainer.html @@ -166,7 +166,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/monetizing.html b/server/latest/developer_manual/app_publishing_maintenance/monetizing.html index f25c0c82eae..87d665d27b2 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/monetizing.html +++ b/server/latest/developer_manual/app_publishing_maintenance/monetizing.html @@ -168,7 +168,7 @@

    Enterprise support

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/publishing.html b/server/latest/developer_manual/app_publishing_maintenance/publishing.html index 823bc2705d5..56ad52d32d9 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/publishing.html +++ b/server/latest/developer_manual/app_publishing_maintenance/publishing.html @@ -243,7 +243,7 @@

    How to move

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/release_automation.html b/server/latest/developer_manual/app_publishing_maintenance/release_automation.html index 7560b4cdf9c..919d93aabbe 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/release_automation.html +++ b/server/latest/developer_manual/app_publishing_maintenance/release_automation.html @@ -325,7 +325,7 @@

    The process

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/app_publishing_maintenance/release_process.html b/server/latest/developer_manual/app_publishing_maintenance/release_process.html index cdf030f582b..69d0c2e0beb 100644 --- a/server/latest/developer_manual/app_publishing_maintenance/release_process.html +++ b/server/latest/developer_manual/app_publishing_maintenance/release_process.html @@ -335,7 +335,7 @@

    Hybrid Distribution

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/_available_events_ocp.html b/server/latest/developer_manual/basics/_available_events_ocp.html index cada78c043f..0465af71fb2 100644 --- a/server/latest/developer_manual/basics/_available_events_ocp.html +++ b/server/latest/developer_manual/basics/_available_events_ocp.html @@ -1214,7 +1214,7 @@

    OCP\WorkflowEng

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/backgroundjobs.html b/server/latest/developer_manual/basics/backgroundjobs.html index feacda6f9b2..262e9a11f44 100644 --- a/server/latest/developer_manual/basics/backgroundjobs.html +++ b/server/latest/developer_manual/basics/backgroundjobs.html @@ -327,7 +327,7 @@

    Scheduling

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/caching.html b/server/latest/developer_manual/basics/caching.html index cd747bbed61..719af8686e0 100644 --- a/server/latest/developer_manual/basics/caching.html +++ b/server/latest/developer_manual/basics/caching.html @@ -322,7 +322,7 @@

    Distributed cache

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/controllers.html b/server/latest/developer_manual/basics/controllers.html index d1bcc9601c5..2586a4a67f5 100644 --- a/server/latest/developer_manual/basics/controllers.html +++ b/server/latest/developer_manual/basics/controllers.html @@ -1242,7 +1242,7 @@

    Modifying the content security policy

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/dependency_injection.html b/server/latest/developer_manual/basics/dependency_injection.html index 9fff2aac5f2..07f96085ca2 100644 --- a/server/latest/developer_manual/basics/dependency_injection.html +++ b/server/latest/developer_manual/basics/dependency_injection.html @@ -692,7 +692,7 @@

    Accessing the container from anywhere

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/events.html b/server/latest/developer_manual/basics/events.html index 239b11b070b..074002efc75 100644 --- a/server/latest/developer_manual/basics/events.html +++ b/server/latest/developer_manual/basics/events.html @@ -1749,7 +1749,7 @@

    Public emitter

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/css.html b/server/latest/developer_manual/basics/front-end/css.html index 454c8bce96e..2c32703aea7 100644 --- a/server/latest/developer_manual/basics/front-end/css.html +++ b/server/latest/developer_manual/basics/front-end/css.html @@ -184,7 +184,7 @@

    CSS

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/index.html b/server/latest/developer_manual/basics/front-end/index.html index 08ec67eb26a..a6a758ace36 100644 --- a/server/latest/developer_manual/basics/front-end/index.html +++ b/server/latest/developer_manual/basics/front-end/index.html @@ -175,7 +175,7 @@

    Front-end

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/js.html b/server/latest/developer_manual/basics/front-end/js.html index bc45e276fa8..b4de03854c9 100644 --- a/server/latest/developer_manual/basics/front-end/js.html +++ b/server/latest/developer_manual/basics/front-end/js.html @@ -360,7 +360,7 @@

    Obtaining the initial state in JavaScript

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/templates.html b/server/latest/developer_manual/basics/front-end/templates.html index ac6dffb5aed..b9bfb093075 100644 --- a/server/latest/developer_manual/basics/front-end/templates.html +++ b/server/latest/developer_manual/basics/front-end/templates.html @@ -212,7 +212,7 @@

    Including images

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/front-end/theming.html b/server/latest/developer_manual/basics/front-end/theming.html index ae40c54e2fc..9d1b02ec704 100644 --- a/server/latest/developer_manual/basics/front-end/theming.html +++ b/server/latest/developer_manual/basics/front-end/theming.html @@ -185,7 +185,7 @@

    Icons

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/index.html b/server/latest/developer_manual/basics/index.html index e97c690bf24..365227a48c5 100644 --- a/server/latest/developer_manual/basics/index.html +++ b/server/latest/developer_manual/basics/index.html @@ -255,7 +255,7 @@

    Basic concepts

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/logging.html b/server/latest/developer_manual/basics/logging.html index 3223d8d03bd..bc414c6c70e 100644 --- a/server/latest/developer_manual/basics/logging.html +++ b/server/latest/developer_manual/basics/logging.html @@ -447,7 +447,7 @@

    Admin audit logging

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/middlewares.html b/server/latest/developer_manual/basics/middlewares.html index 65a417069d7..ae6275ddd63 100644 --- a/server/latest/developer_manual/basics/middlewares.html +++ b/server/latest/developer_manual/basics/middlewares.html @@ -318,7 +318,7 @@

    Parsing annotations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/public_share_template.html b/server/latest/developer_manual/basics/public_share_template.html index 838bc984b8e..39d733856c3 100644 --- a/server/latest/developer_manual/basics/public_share_template.html +++ b/server/latest/developer_manual/basics/public_share_template.html @@ -237,7 +237,7 @@

    Public share template

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/request_lifecycle.html b/server/latest/developer_manual/basics/request_lifecycle.html index f4737e1146a..48ae09561cf 100644 --- a/server/latest/developer_manual/basics/request_lifecycle.html +++ b/server/latest/developer_manual/basics/request_lifecycle.html @@ -172,7 +172,7 @@

    Front controller

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/routing.html b/server/latest/developer_manual/basics/routing.html index 387b7338646..a0c2b359669 100644 --- a/server/latest/developer_manual/basics/routing.html +++ b/server/latest/developer_manual/basics/routing.html @@ -397,7 +397,7 @@

    router:match

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/setting.html b/server/latest/developer_manual/basics/setting.html index 1e1d0358e10..558d6711a1a 100644 --- a/server/latest/developer_manual/basics/setting.html +++ b/server/latest/developer_manual/basics/setting.html @@ -317,7 +317,7 @@

    Settings

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/appdata.html b/server/latest/developer_manual/basics/storage/appdata.html index d81917b1321..bdc0fe2dc99 100644 --- a/server/latest/developer_manual/basics/storage/appdata.html +++ b/server/latest/developer_manual/basics/storage/appdata.html @@ -226,7 +226,7 @@

    File<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/configuration.html b/server/latest/developer_manual/basics/storage/configuration.html index 11e0f385f62..7e156beeb2f 100644 --- a/server/latest/developer_manual/basics/storage/configuration.html +++ b/server/latest/developer_manual/basics/storage/configuration.html @@ -295,7 +295,7 @@

    User values

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/database.html b/server/latest/developer_manual/basics/storage/database.html index a74d5ecdedc..4878bc263ae 100644 --- a/server/latest/developer_manual/basics/storage/database.html +++ b/server/latest/developer_manual/basics/storage/database.html @@ -595,7 +595,7 @@

    Supporting more databases

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/filesystem.html b/server/latest/developer_manual/basics/storage/filesystem.html index ce2b64a0f72..d316c1d3933 100644 --- a/server/latest/developer_manual/basics/storage/filesystem.html +++ b/server/latest/developer_manual/basics/storage/filesystem.html @@ -293,7 +293,7 @@

    Adding mounts to the filesystem

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/index.html b/server/latest/developer_manual/basics/storage/index.html index b1d62a9e339..e08cb824272 100644 --- a/server/latest/developer_manual/basics/storage/index.html +++ b/server/latest/developer_manual/basics/storage/index.html @@ -189,7 +189,7 @@

    Storage and database

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/storage/migrations.html b/server/latest/developer_manual/basics/storage/migrations.html index 263fe8eca2f..401110b2f70 100644 --- a/server/latest/developer_manual/basics/storage/migrations.html +++ b/server/latest/developer_manual/basics/storage/migrations.html @@ -402,7 +402,7 @@

    Replacing indices

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/testing.html b/server/latest/developer_manual/basics/testing.html index 2a101f9a7e3..f7739cbe679 100644 --- a/server/latest/developer_manual/basics/testing.html +++ b/server/latest/developer_manual/basics/testing.html @@ -231,7 +231,7 @@

    Testing

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/basics/translations.html b/server/latest/developer_manual/basics/translations.html index 140561d85e4..000d81e5fb6 100644 --- a/server/latest/developer_manual/basics/translations.html +++ b/server/latest/developer_manual/basics/translations.html @@ -529,7 +529,7 @@

    l10n:createjs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/ClientIntegration/index.html b/server/latest/developer_manual/client_apis/ClientIntegration/index.html index f32a3b429ab..76d0ae0b663 100644 --- a/server/latest/developer_manual/client_apis/ClientIntegration/index.html +++ b/server/latest/developer_manual/client_apis/ClientIntegration/index.html @@ -385,7 +385,7 @@

    Issues/Bugs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/LoginFlow/index.html b/server/latest/developer_manual/client_apis/LoginFlow/index.html index 6137e5ce51d..7c6f7e97d5b 100644 --- a/server/latest/developer_manual/client_apis/LoginFlow/index.html +++ b/server/latest/developer_manual/client_apis/LoginFlow/index.html @@ -758,7 +758,7 @@

    Login name vs. email login

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/index.html b/server/latest/developer_manual/client_apis/OCS/index.html index da133af4796..2c57d4eb791 100644 --- a/server/latest/developer_manual/client_apis/OCS/index.html +++ b/server/latest/developer_manual/client_apis/OCS/index.html @@ -338,7 +338,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html b/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html index 1e82ea72ef5..b84c1961ca5 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html @@ -414,7 +414,7 @@

    Filtering the auto-complete results

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-assistant-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-assistant-api.html index 589ad764490..a532456a46f 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-assistant-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-assistant-api.html @@ -180,7 +180,7 @@

    Related documentation

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-fulltextsearch-collections-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-fulltextsearch-collections-api.html index b2a35ffb2f1..96ce52608ab 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-fulltextsearch-collections-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-fulltextsearch-collections-api.html @@ -338,7 +338,7 @@

    Reset collection

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-openapi.html b/server/latest/developer_manual/client_apis/OCS/ocs-openapi.html index 0e80182d1bc..0098afc64d0 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-openapi.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-openapi.html @@ -998,7 +998,7 @@

    Generate the specification

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-out-of-office-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-out-of-office-api.html index fb97419ba48..ff69e34274a 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-out-of-office-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-out-of-office-api.html @@ -416,7 +416,7 @@

    Clear data and disable out-of-office

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-recommendations-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-recommendations-api.html index 5934706570b..8ada28c4b61 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-recommendations-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-recommendations-api.html @@ -228,7 +228,7 @@

    Fetch user setting and recommendations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-share-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-share-api.html index fade274c502..148ce164108 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-share-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-share-api.html @@ -451,7 +451,7 @@

    Decline a pending Federated Cloud Share

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-sharee-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-sharee-api.html index 594399d5462..04d645ac5d2 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-sharee-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-sharee-api.html @@ -200,7 +200,7 @@

    Sharee recommendations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-status-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-status-api.html index 7ed2269595f..55300f352a9 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-status-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-status-api.html @@ -493,7 +493,7 @@

    User status - Restore backup

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-taskprocessing-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-taskprocessing-api.html index e2ba216e206..a2e6020d2cb 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-taskprocessing-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-taskprocessing-api.html @@ -160,7 +160,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-text2image-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-text2image-api.html index 1124dd9e976..2dc775040f9 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-text2image-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-text2image-api.html @@ -453,7 +453,7 @@

    List tasks by App

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-textprocessing-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-textprocessing-api.html index a201ba42a8e..76252d1b7b1 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-textprocessing-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-textprocessing-api.html @@ -341,7 +341,7 @@

    Fetch a task by ID

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-translation-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-translation-api.html index 59bd97b86b0..bd3577d024e 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-translation-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-translation-api.html @@ -296,7 +296,7 @@

    Translate a string

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/OCS/ocs-user-preferences-api.html b/server/latest/developer_manual/client_apis/OCS/ocs-user-preferences-api.html index 19bb76fd4e3..afa400a8bee 100644 --- a/server/latest/developer_manual/client_apis/OCS/ocs-user-preferences-api.html +++ b/server/latest/developer_manual/client_apis/OCS/ocs-user-preferences-api.html @@ -297,7 +297,7 @@

    Deleting multiple preference

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/RemoteWipe/index.html b/server/latest/developer_manual/client_apis/RemoteWipe/index.html index 0ed19a2371f..74a3d18edb2 100644 --- a/server/latest/developer_manual/client_apis/RemoteWipe/index.html +++ b/server/latest/developer_manual/client_apis/RemoteWipe/index.html @@ -180,7 +180,7 @@

    Signalling completion

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/basic.html b/server/latest/developer_manual/client_apis/WebDAV/basic.html index d085cd10664..a9234af9863 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/basic.html +++ b/server/latest/developer_manual/client_apis/WebDAV/basic.html @@ -1134,7 +1134,7 @@

    Response Headers

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/bulkupload.html b/server/latest/developer_manual/client_apis/WebDAV/bulkupload.html index a9a687e8b76..72edac3933a 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/bulkupload.html +++ b/server/latest/developer_manual/client_apis/WebDAV/bulkupload.html @@ -241,7 +241,7 @@

    Starting a bulk upload

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/chunking.html b/server/latest/developer_manual/client_apis/WebDAV/chunking.html index 8ca65f9cb24..46fe970e097 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/chunking.html +++ b/server/latest/developer_manual/client_apis/WebDAV/chunking.html @@ -244,7 +244,7 @@

    Aborting the upload

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/comments.html b/server/latest/developer_manual/client_apis/WebDAV/comments.html index 072185789aa..1e338cb01ff 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/comments.html +++ b/server/latest/developer_manual/client_apis/WebDAV/comments.html @@ -231,7 +231,7 @@

    Examples

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/index.html b/server/latest/developer_manual/client_apis/WebDAV/index.html index 88fe0d06f2e..560d281ed4d 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/index.html +++ b/server/latest/developer_manual/client_apis/WebDAV/index.html @@ -203,7 +203,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/search.html b/server/latest/developer_manual/client_apis/WebDAV/search.html index 78ebeb06cf1..7efd418745c 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/search.html +++ b/server/latest/developer_manual/client_apis/WebDAV/search.html @@ -523,7 +523,7 @@

    Examples search bodies

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/trashbin.html b/server/latest/developer_manual/client_apis/WebDAV/trashbin.html index 88f41468e0f..53f9757f116 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/trashbin.html +++ b/server/latest/developer_manual/client_apis/WebDAV/trashbin.html @@ -182,7 +182,7 @@

    Emptying the trashbin

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/WebDAV/versions.html b/server/latest/developer_manual/client_apis/WebDAV/versions.html index cfc62a39928..29984963e02 100644 --- a/server/latest/developer_manual/client_apis/WebDAV/versions.html +++ b/server/latest/developer_manual/client_apis/WebDAV/versions.html @@ -165,7 +165,7 @@

    Restoring a version

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/activity-api.html b/server/latest/developer_manual/client_apis/activity-api.html index 0807f6bb1d9..206adc40584 100644 --- a/server/latest/developer_manual/client_apis/activity-api.html +++ b/server/latest/developer_manual/client_apis/activity-api.html @@ -690,7 +690,7 @@

    Further reading

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/android_library/examples.html b/server/latest/developer_manual/client_apis/android_library/examples.html index 061da3fcc0e..d7502052ce1 100644 --- a/server/latest/developer_manual/client_apis/android_library/examples.html +++ b/server/latest/developer_manual/client_apis/android_library/examples.html @@ -540,7 +540,7 @@

    Tips<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/android_library/index.html b/server/latest/developer_manual/client_apis/android_library/index.html index 45f36205869..8af91d0774d 100644 --- a/server/latest/developer_manual/client_apis/android_library/index.html +++ b/server/latest/developer_manual/client_apis/android_library/index.html @@ -175,7 +175,7 @@

    Nextcloud Android library

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/android_library/library_installation.html b/server/latest/developer_manual/client_apis/android_library/library_installation.html index 17da851dce5..f78d6052953 100644 --- a/server/latest/developer_manual/client_apis/android_library/library_installation.html +++ b/server/latest/developer_manual/client_apis/android_library/library_installation.html @@ -182,7 +182,7 @@

    Add the library project to your project as a Git submodule

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/files.html b/server/latest/developer_manual/client_apis/files.html index 37dd350e6cd..1e8c9c0ef7d 100644 --- a/server/latest/developer_manual/client_apis/files.html +++ b/server/latest/developer_manual/client_apis/files.html @@ -228,7 +228,7 @@

    Examples

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/general.html b/server/latest/developer_manual/client_apis/general.html index fcbacd94790..af9fe4d5256 100644 --- a/server/latest/developer_manual/client_apis/general.html +++ b/server/latest/developer_manual/client_apis/general.html @@ -153,7 +153,7 @@

    Maintenance Mode

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/client_apis/index.html b/server/latest/developer_manual/client_apis/index.html index e3841b3779a..7b31b3fe9ff 100644 --- a/server/latest/developer_manual/client_apis/index.html +++ b/server/latest/developer_manual/client_apis/index.html @@ -220,7 +220,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/design/components.html b/server/latest/developer_manual/design/components.html index 8cdfc40eaa8..9fda13f5fda 100644 --- a/server/latest/developer_manual/design/components.html +++ b/server/latest/developer_manual/design/components.html @@ -460,7 +460,7 @@

    Radio groups

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/design/foundations.html b/server/latest/developer_manual/design/foundations.html index 1317bdb2dbe..befadcec050 100644 --- a/server/latest/developer_manual/design/foundations.html +++ b/server/latest/developer_manual/design/foundations.html @@ -378,7 +378,7 @@

    Border radii

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/design/index.html b/server/latest/developer_manual/design/index.html index bea121d7c9b..511ca66343b 100644 --- a/server/latest/developer_manual/design/index.html +++ b/server/latest/developer_manual/design/index.html @@ -177,7 +177,7 @@

    Design<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/design/introduction.html b/server/latest/developer_manual/design/introduction.html index 40a5a83727d..04e0bcbe4fd 100644 --- a/server/latest/developer_manual/design/introduction.html +++ b/server/latest/developer_manual/design/introduction.html @@ -158,7 +158,7 @@

    Introduction

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/design/layout.html b/server/latest/developer_manual/design/layout.html index 0c16026752b..692c6719c6b 100644 --- a/server/latest/developer_manual/design/layout.html +++ b/server/latest/developer_manual/design/layout.html @@ -143,7 +143,7 @@

    Layout<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/design/writing.html b/server/latest/developer_manual/design/writing.html index f8f6f90177c..2214da1263a 100644 --- a/server/latest/developer_manual/design/writing.html +++ b/server/latest/developer_manual/design/writing.html @@ -339,7 +339,7 @@

    Translatable strings

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/desktop/building.html b/server/latest/developer_manual/desktop/building.html index da20b13d16d..7bcb2344f3f 100644 --- a/server/latest/developer_manual/desktop/building.html +++ b/server/latest/developer_manual/desktop/building.html @@ -574,7 +574,7 @@

    Address Sanitizer

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/desktop/index.html b/server/latest/developer_manual/desktop/index.html index e0ada5df58e..afc3036c55e 100644 --- a/server/latest/developer_manual/desktop/index.html +++ b/server/latest/developer_manual/desktop/index.html @@ -147,7 +147,7 @@

    Desktop Clients

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/ai.html b/server/latest/developer_manual/digging_deeper/ai.html index 2f1c824e8e1..0951b1cd793 100644 --- a/server/latest/developer_manual/digging_deeper/ai.html +++ b/server/latest/developer_manual/digging_deeper/ai.html @@ -192,7 +192,7 @@

    AI & Machine Learning

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/api.html b/server/latest/developer_manual/digging_deeper/api.html index 2ab5b5c6e6a..a3a6e66c1ca 100644 --- a/server/latest/developer_manual/digging_deeper/api.html +++ b/server/latest/developer_manual/digging_deeper/api.html @@ -202,7 +202,7 @@

    PHP unstable API

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/apis.html b/server/latest/developer_manual/digging_deeper/apis.html index 7fb07472451..05d6584a81f 100644 --- a/server/latest/developer_manual/digging_deeper/apis.html +++ b/server/latest/developer_manual/digging_deeper/apis.html @@ -209,7 +209,7 @@

    APIs & Integration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/assistant_integration.html b/server/latest/developer_manual/digging_deeper/assistant_integration.html index 707556b8a01..a07c1a2762c 100644 --- a/server/latest/developer_manual/digging_deeper/assistant_integration.html +++ b/server/latest/developer_manual/digging_deeper/assistant_integration.html @@ -295,7 +295,7 @@

    Populating input from a file

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/auth.html b/server/latest/developer_manual/digging_deeper/auth.html index 1c595640b3c..38d2d17a39d 100644 --- a/server/latest/developer_manual/digging_deeper/auth.html +++ b/server/latest/developer_manual/digging_deeper/auth.html @@ -192,7 +192,7 @@

    Users & Authentication

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/classloader.html b/server/latest/developer_manual/digging_deeper/classloader.html index 388138d4fa6..1a360c1c01f 100644 --- a/server/latest/developer_manual/digging_deeper/classloader.html +++ b/server/latest/developer_manual/digging_deeper/classloader.html @@ -209,7 +209,7 @@

    Server autoloading

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/config/appconfig.html b/server/latest/developer_manual/digging_deeper/config/appconfig.html index b495f98036e..03c55d8b138 100644 --- a/server/latest/developer_manual/digging_deeper/config/appconfig.html +++ b/server/latest/developer_manual/digging_deeper/config/appconfig.html @@ -467,7 +467,7 @@

    Constants and flags

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/config/index.html b/server/latest/developer_manual/digging_deeper/config/index.html index ea30c4f89e3..cca237935cb 100644 --- a/server/latest/developer_manual/digging_deeper/config/index.html +++ b/server/latest/developer_manual/digging_deeper/config/index.html @@ -175,7 +175,7 @@

    Config & Preferences

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/config/lexicon.html b/server/latest/developer_manual/digging_deeper/config/lexicon.html index c5a958126f4..3f5fe20ef7f 100644 --- a/server/latest/developer_manual/digging_deeper/config/lexicon.html +++ b/server/latest/developer_manual/digging_deeper/config/lexicon.html @@ -291,7 +291,7 @@

    ./occ config:app:get –details

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/config/userconfig.html b/server/latest/developer_manual/digging_deeper/config/userconfig.html index 4aa8896d0a6..0972620b8aa 100644 --- a/server/latest/developer_manual/digging_deeper/config/userconfig.html +++ b/server/latest/developer_manual/digging_deeper/config/userconfig.html @@ -339,7 +339,7 @@

    Miscellaneous

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/context_chat.html b/server/latest/developer_manual/digging_deeper/context_chat.html index 7d850e950de..baa78f2bc2f 100644 --- a/server/latest/developer_manual/digging_deeper/context_chat.html +++ b/server/latest/developer_manual/digging_deeper/context_chat.html @@ -276,7 +276,7 @@

    Submitting ContentItem data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/continuous_integration.html b/server/latest/developer_manual/digging_deeper/continuous_integration.html index 0e00bbe0e16..94acb874cbc 100644 --- a/server/latest/developer_manual/digging_deeper/continuous_integration.html +++ b/server/latest/developer_manual/digging_deeper/continuous_integration.html @@ -247,7 +247,7 @@

    php-cs<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/dashboard.html b/server/latest/developer_manual/digging_deeper/dashboard.html index 8e4458f47cf..10b6c7fc5a8 100644 --- a/server/latest/developer_manual/digging_deeper/dashboard.html +++ b/server/latest/developer_manual/digging_deeper/dashboard.html @@ -687,7 +687,7 @@

    Use the API

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/deadlock.html b/server/latest/developer_manual/digging_deeper/deadlock.html index 2ba158b8cbd..2a4edc37ed7 100644 --- a/server/latest/developer_manual/digging_deeper/deadlock.html +++ b/server/latest/developer_manual/digging_deeper/deadlock.html @@ -247,7 +247,7 @@

    References

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/debugging.html b/server/latest/developer_manual/digging_deeper/debugging.html index 557623c50d2..407e65f1744 100644 --- a/server/latest/developer_manual/digging_deeper/debugging.html +++ b/server/latest/developer_manual/digging_deeper/debugging.html @@ -242,7 +242,7 @@

    Using alternative app directories

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/declarative_settings.html b/server/latest/developer_manual/digging_deeper/declarative_settings.html index 46e9bb08269..8c35099adea 100644 --- a/server/latest/developer_manual/digging_deeper/declarative_settings.html +++ b/server/latest/developer_manual/digging_deeper/declarative_settings.html @@ -590,7 +590,7 @@

    Sensitive field type

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/devtools.html b/server/latest/developer_manual/digging_deeper/devtools.html index de57fcae2aa..5c51cafb761 100644 --- a/server/latest/developer_manual/digging_deeper/devtools.html +++ b/server/latest/developer_manual/digging_deeper/devtools.html @@ -201,7 +201,7 @@

    Development Tools

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/direct_editing.html b/server/latest/developer_manual/digging_deeper/direct_editing.html index ab65f0f75b4..899423fa562 100644 --- a/server/latest/developer_manual/digging_deeper/direct_editing.html +++ b/server/latest/developer_manual/digging_deeper/direct_editing.html @@ -603,7 +603,7 @@

    See also

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/discovery.html b/server/latest/developer_manual/digging_deeper/discovery.html index 0b859f0cf55..40e316ea1f7 100644 --- a/server/latest/developer_manual/digging_deeper/discovery.html +++ b/server/latest/developer_manual/digging_deeper/discovery.html @@ -178,7 +178,7 @@

    Search & Discovery

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/email.html b/server/latest/developer_manual/digging_deeper/email.html index b92b1a79cea..8608a91e674 100644 --- a/server/latest/developer_manual/digging_deeper/email.html +++ b/server/latest/developer_manual/digging_deeper/email.html @@ -199,7 +199,7 @@

    Inline attachments

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/files-metadata.html b/server/latest/developer_manual/digging_deeper/files-metadata.html index 9c91b39f9f7..3f766885a4c 100644 --- a/server/latest/developer_manual/digging_deeper/files-metadata.html +++ b/server/latest/developer_manual/digging_deeper/files-metadata.html @@ -529,7 +529,7 @@

    Metadata Query Helper

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/flow.html b/server/latest/developer_manual/digging_deeper/flow.html index 0fa0f028bd4..43b5a974b68 100644 --- a/server/latest/developer_manual/digging_deeper/flow.html +++ b/server/latest/developer_manual/digging_deeper/flow.html @@ -185,7 +185,7 @@

    Configuration Component

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/calendar.html b/server/latest/developer_manual/digging_deeper/groupware/calendar.html index d83bb1ab69f..9a249c79ebf 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/calendar.html +++ b/server/latest/developer_manual/digging_deeper/groupware/calendar.html @@ -378,7 +378,7 @@

    Rooms

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/calendar_provider.html b/server/latest/developer_manual/digging_deeper/groupware/calendar_provider.html index 08922f6e551..668be75e432 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/calendar_provider.html +++ b/server/latest/developer_manual/digging_deeper/groupware/calendar_provider.html @@ -780,7 +780,7 @@

    Register the calendar provider

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/contacts_menu.html b/server/latest/developer_manual/digging_deeper/groupware/contacts_menu.html index 5bad9e10d5f..77cc02b8fd2 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/contacts_menu.html +++ b/server/latest/developer_manual/digging_deeper/groupware/contacts_menu.html @@ -258,7 +258,7 @@

    User status

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/index.html b/server/latest/developer_manual/digging_deeper/groupware/index.html index 48340bf3c39..cfacb868f16 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/index.html +++ b/server/latest/developer_manual/digging_deeper/groupware/index.html @@ -182,7 +182,7 @@

    Groupware integration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware/mail_provider.html b/server/latest/developer_manual/digging_deeper/groupware/mail_provider.html index 5b4f94a3126..9657c57307e 100644 --- a/server/latest/developer_manual/digging_deeper/groupware/mail_provider.html +++ b/server/latest/developer_manual/digging_deeper/groupware/mail_provider.html @@ -364,7 +364,7 @@

    Step 3: Register the Mail Provider

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/groupware_workflows.html b/server/latest/developer_manual/digging_deeper/groupware_workflows.html index 6fd4d96c595..5e9d832922b 100644 --- a/server/latest/developer_manual/digging_deeper/groupware_workflows.html +++ b/server/latest/developer_manual/digging_deeper/groupware_workflows.html @@ -164,7 +164,7 @@

    Groupware & Workflows

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/http_client.html b/server/latest/developer_manual/digging_deeper/http_client.html index 0e65bd0550f..db27b9f7138 100644 --- a/server/latest/developer_manual/digging_deeper/http_client.html +++ b/server/latest/developer_manual/digging_deeper/http_client.html @@ -282,7 +282,7 @@

    Error handling

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/index.html b/server/latest/developer_manual/digging_deeper/index.html index 12ddf4e21bb..25998beb6fc 100644 --- a/server/latest/developer_manual/digging_deeper/index.html +++ b/server/latest/developer_manual/digging_deeper/index.html @@ -494,7 +494,7 @@

    Digging deeper

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/internals.html b/server/latest/developer_manual/digging_deeper/internals.html index 8f00a1a0601..25a752d53f1 100644 --- a/server/latest/developer_manual/digging_deeper/internals.html +++ b/server/latest/developer_manual/digging_deeper/internals.html @@ -219,7 +219,7 @@

    Server Internals

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/javascript-apis.html b/server/latest/developer_manual/digging_deeper/javascript-apis.html index 8bb18bffb4a..a84388b9416 100644 --- a/server/latest/developer_manual/digging_deeper/javascript-apis.html +++ b/server/latest/developer_manual/digging_deeper/javascript-apis.html @@ -283,7 +283,7 @@

    OCP – Public APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/machinetranslation.html b/server/latest/developer_manual/digging_deeper/machinetranslation.html index 7533dffa82c..f17598d8bb5 100644 --- a/server/latest/developer_manual/digging_deeper/machinetranslation.html +++ b/server/latest/developer_manual/digging_deeper/machinetranslation.html @@ -326,7 +326,7 @@

    Provider registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/notifications.html b/server/latest/developer_manual/digging_deeper/notifications.html index 1c02413c4de..bb9295139ae 100644 --- a/server/latest/developer_manual/digging_deeper/notifications.html +++ b/server/latest/developer_manual/digging_deeper/notifications.html @@ -151,7 +151,7 @@

    Notifications

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/npm.html b/server/latest/developer_manual/digging_deeper/npm.html index fb1f809408b..67b6a589688 100644 --- a/server/latest/developer_manual/digging_deeper/npm.html +++ b/server/latest/developer_manual/digging_deeper/npm.html @@ -237,7 +237,7 @@

    npm run lint (optional)

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/oidc.html b/server/latest/developer_manual/digging_deeper/oidc.html index b08974d9277..543d9488127 100644 --- a/server/latest/developer_manual/digging_deeper/oidc.html +++ b/server/latest/developer_manual/digging_deeper/oidc.html @@ -176,7 +176,7 @@

    Generating a token if Nextcloud is the provider

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/openmetrics.html b/server/latest/developer_manual/digging_deeper/openmetrics.html index e29177c8c7e..6d7765dc04e 100644 --- a/server/latest/developer_manual/digging_deeper/openmetrics.html +++ b/server/latest/developer_manual/digging_deeper/openmetrics.html @@ -232,7 +232,7 @@

    Implement a new exporter

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/out_of_office.html b/server/latest/developer_manual/digging_deeper/out_of_office.html index 967cbe12879..1c20351f1b5 100644 --- a/server/latest/developer_manual/digging_deeper/out_of_office.html +++ b/server/latest/developer_manual/digging_deeper/out_of_office.html @@ -266,7 +266,7 @@

    Common data structure

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/performance.html b/server/latest/developer_manual/digging_deeper/performance.html index 8e5e44af231..ff264c244fe 100644 --- a/server/latest/developer_manual/digging_deeper/performance.html +++ b/server/latest/developer_manual/digging_deeper/performance.html @@ -263,7 +263,7 @@

    Getting help

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/phonenumberutil.html b/server/latest/developer_manual/digging_deeper/phonenumberutil.html index 7f3682cf6be..f1886a8b083 100644 --- a/server/latest/developer_manual/digging_deeper/phonenumberutil.html +++ b/server/latest/developer_manual/digging_deeper/phonenumberutil.html @@ -204,7 +204,7 @@

    Get the country code for a region

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/profile.html b/server/latest/developer_manual/digging_deeper/profile.html index ca17e7e063c..a04265c61fa 100644 --- a/server/latest/developer_manual/digging_deeper/profile.html +++ b/server/latest/developer_manual/digging_deeper/profile.html @@ -326,7 +326,7 @@

    Register a profile action

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/profiler.html b/server/latest/developer_manual/digging_deeper/profiler.html index a5f9b4167cb..80ed29c2251 100644 --- a/server/latest/developer_manual/digging_deeper/profiler.html +++ b/server/latest/developer_manual/digging_deeper/profiler.html @@ -290,7 +290,7 @@

    Contributing

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/projects.html b/server/latest/developer_manual/digging_deeper/projects.html index 8ab14942065..884a4eb5de5 100644 --- a/server/latest/developer_manual/digging_deeper/projects.html +++ b/server/latest/developer_manual/digging_deeper/projects.html @@ -359,7 +359,7 @@

    Provide a user interface

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/psr.html b/server/latest/developer_manual/digging_deeper/psr.html index 6484940efc5..99882299f41 100644 --- a/server/latest/developer_manual/digging_deeper/psr.html +++ b/server/latest/developer_manual/digging_deeper/psr.html @@ -203,7 +203,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/publicpage.html b/server/latest/developer_manual/digging_deeper/publicpage.html index 652cbd6f41f..6ac8bf68116 100644 --- a/server/latest/developer_manual/digging_deeper/publicpage.html +++ b/server/latest/developer_manual/digging_deeper/publicpage.html @@ -242,7 +242,7 @@

    Implementing an authenticated public page

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/reference.html b/server/latest/developer_manual/digging_deeper/reference.html index 8066215c43b..5727fda02c9 100644 --- a/server/latest/developer_manual/digging_deeper/reference.html +++ b/server/latest/developer_manual/digging_deeper/reference.html @@ -989,7 +989,7 @@

    Register a custom picker component

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/repair.html b/server/latest/developer_manual/digging_deeper/repair.html index e8125c7ae65..a21f55977ee 100644 --- a/server/latest/developer_manual/digging_deeper/repair.html +++ b/server/latest/developer_manual/digging_deeper/repair.html @@ -279,7 +279,7 @@

    Creating an expensive repair step

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/rest_apis.html b/server/latest/developer_manual/digging_deeper/rest_apis.html index b53b9fcdff5..d0d2565cb69 100644 --- a/server/latest/developer_manual/digging_deeper/rest_apis.html +++ b/server/latest/developer_manual/digging_deeper/rest_apis.html @@ -393,7 +393,7 @@

    Historical options

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/search.html b/server/latest/developer_manual/digging_deeper/search.html index 4b46da7b812..9eb70625ce1 100644 --- a/server/latest/developer_manual/digging_deeper/search.html +++ b/server/latest/developer_manual/digging_deeper/search.html @@ -636,7 +636,7 @@

    Privacy

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/security.html b/server/latest/developer_manual/digging_deeper/security.html index 8800220db3e..fa4c2ba56a7 100644 --- a/server/latest/developer_manual/digging_deeper/security.html +++ b/server/latest/developer_manual/digging_deeper/security.html @@ -253,7 +253,7 @@

    Trusted domain

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/settings.html b/server/latest/developer_manual/digging_deeper/settings.html index dde69cdbd96..d17e5d72268 100644 --- a/server/latest/developer_manual/digging_deeper/settings.html +++ b/server/latest/developer_manual/digging_deeper/settings.html @@ -451,7 +451,7 @@

    Registering Settings and Sections

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/setup_checks.html b/server/latest/developer_manual/digging_deeper/setup_checks.html index 4ebca17972f..0a8d35dbe7f 100644 --- a/server/latest/developer_manual/digging_deeper/setup_checks.html +++ b/server/latest/developer_manual/digging_deeper/setup_checks.html @@ -302,7 +302,7 @@

    Running HTTP requests against the server

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/snowflake_ids.html b/server/latest/developer_manual/digging_deeper/snowflake_ids.html index 27412a77761..7644312391f 100644 --- a/server/latest/developer_manual/digging_deeper/snowflake_ids.html +++ b/server/latest/developer_manual/digging_deeper/snowflake_ids.html @@ -260,7 +260,7 @@

    Decode a Snowflake ID

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/speech-to-text.html b/server/latest/developer_manual/digging_deeper/speech-to-text.html index a43c117bfbe..30a7a8737c7 100644 --- a/server/latest/developer_manual/digging_deeper/speech-to-text.html +++ b/server/latest/developer_manual/digging_deeper/speech-to-text.html @@ -322,7 +322,7 @@

    Provider registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/status.html b/server/latest/developer_manual/digging_deeper/status.html index b5295b191e8..cbdb181704a 100644 --- a/server/latest/developer_manual/digging_deeper/status.html +++ b/server/latest/developer_manual/digging_deeper/status.html @@ -235,7 +235,7 @@

    Updating the status programmatically

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/talk.html b/server/latest/developer_manual/digging_deeper/talk.html index 514d71cb396..f4e0c3b7d81 100644 --- a/server/latest/developer_manual/digging_deeper/talk.html +++ b/server/latest/developer_manual/digging_deeper/talk.html @@ -225,7 +225,7 @@

    Delete a conversation

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/task_processing.html b/server/latest/developer_manual/digging_deeper/task_processing.html index 818122d311f..9a1580b2ce5 100644 --- a/server/latest/developer_manual/digging_deeper/task_processing.html +++ b/server/latest/developer_manual/digging_deeper/task_processing.html @@ -998,7 +998,7 @@

    Provider and task type registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/text2image.html b/server/latest/developer_manual/digging_deeper/text2image.html index 91f298b979c..b5f1f15c103 100644 --- a/server/latest/developer_manual/digging_deeper/text2image.html +++ b/server/latest/developer_manual/digging_deeper/text2image.html @@ -363,7 +363,7 @@

    Provider registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/text_processing.html b/server/latest/developer_manual/digging_deeper/text_processing.html index 9168b6aa56e..edc132a58e3 100644 --- a/server/latest/developer_manual/digging_deeper/text_processing.html +++ b/server/latest/developer_manual/digging_deeper/text_processing.html @@ -512,7 +512,7 @@

    Provider registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/time.html b/server/latest/developer_manual/digging_deeper/time.html index eb14f78e35a..374c1da3351 100644 --- a/server/latest/developer_manual/digging_deeper/time.html +++ b/server/latest/developer_manual/digging_deeper/time.html @@ -191,7 +191,7 @@

    Methods

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/two-factor-provider.html b/server/latest/developer_manual/digging_deeper/two-factor-provider.html index eb631bd22b3..569b4c37670 100644 --- a/server/latest/developer_manual/digging_deeper/two-factor-provider.html +++ b/server/latest/developer_manual/digging_deeper/two-factor-provider.html @@ -293,7 +293,7 @@

    Make a provider deactivatable by the admin (optional)

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/user_migration.html b/server/latest/developer_manual/digging_deeper/user_migration.html index 1ea028445d8..ef39b0a8f9c 100644 --- a/server/latest/developer_manual/digging_deeper/user_migration.html +++ b/server/latest/developer_manual/digging_deeper/user_migration.html @@ -311,7 +311,7 @@

    Register a migrator

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/users.html b/server/latest/developer_manual/digging_deeper/users.html index 1236ef4e4cd..a24dcf35ca1 100644 --- a/server/latest/developer_manual/digging_deeper/users.html +++ b/server/latest/developer_manual/digging_deeper/users.html @@ -367,7 +367,7 @@

    User managers

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/web_host_metadata.html b/server/latest/developer_manual/digging_deeper/web_host_metadata.html index b1b23a3e3c1..665758acf19 100644 --- a/server/latest/developer_manual/digging_deeper/web_host_metadata.html +++ b/server/latest/developer_manual/digging_deeper/web_host_metadata.html @@ -281,7 +281,7 @@

    Handler registration

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/digging_deeper/webdav_collection_preload.html b/server/latest/developer_manual/digging_deeper/webdav_collection_preload.html index 4118c149ce5..687144058e3 100644 --- a/server/latest/developer_manual/digging_deeper/webdav_collection_preload.html +++ b/server/latest/developer_manual/digging_deeper/webdav_collection_preload.html @@ -245,7 +245,7 @@

    Best practices

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/DevSetup.html b/server/latest/developer_manual/exapp_development/DevSetup.html index 43bca96951e..e5b1fef45fb 100644 --- a/server/latest/developer_manual/exapp_development/DevSetup.html +++ b/server/latest/developer_manual/exapp_development/DevSetup.html @@ -225,7 +225,7 @@

    Docker by socket

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/Introduction.html b/server/latest/developer_manual/exapp_development/Introduction.html index a9c86a58bb5..ef53429a74e 100644 --- a/server/latest/developer_manual/exapp_development/Introduction.html +++ b/server/latest/developer_manual/exapp_development/Introduction.html @@ -173,7 +173,7 @@

    Glossary

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/ExAppDevelopmentSteps.html b/server/latest/developer_manual/exapp_development/development_overview/ExAppDevelopmentSteps.html index d721d423662..0778ec8323b 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/ExAppDevelopmentSteps.html +++ b/server/latest/developer_manual/exapp_development/development_overview/ExAppDevelopmentSteps.html @@ -258,7 +258,7 @@

    6. Testing

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/ExAppHarpIntegration.html b/server/latest/developer_manual/exapp_development/development_overview/ExAppHarpIntegration.html index 9d18e645b75..b000b4fda91 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/ExAppHarpIntegration.html +++ b/server/latest/developer_manual/exapp_development/development_overview/ExAppHarpIntegration.html @@ -829,7 +829,7 @@

    Integration test example

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/ExAppLifecycle.html b/server/latest/developer_manual/exapp_development/development_overview/ExAppLifecycle.html index 052846a8f3e..2cafe673ca1 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/ExAppLifecycle.html +++ b/server/latest/developer_manual/exapp_development/development_overview/ExAppLifecycle.html @@ -703,7 +703,7 @@

    Cookies

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/ExAppOverview.html b/server/latest/developer_manual/exapp_development/development_overview/ExAppOverview.html index 11c8c6b3bf2..042f3e25fa8 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/ExAppOverview.html +++ b/server/latest/developer_manual/exapp_development/development_overview/ExAppOverview.html @@ -343,7 +343,7 @@

    Makefile

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/development_overview/index.html b/server/latest/developer_manual/exapp_development/development_overview/index.html index e80f3f90058..83130728b6f 100644 --- a/server/latest/developer_manual/exapp_development/development_overview/index.html +++ b/server/latest/developer_manual/exapp_development/development_overview/index.html @@ -178,7 +178,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/BehindCompanyProxy.html b/server/latest/developer_manual/exapp_development/faq/BehindCompanyProxy.html index 8bafad9e33f..372907c42ec 100644 --- a/server/latest/developer_manual/exapp_development/faq/BehindCompanyProxy.html +++ b/server/latest/developer_manual/exapp_development/faq/BehindCompanyProxy.html @@ -287,7 +287,7 @@

    Contact Support

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/DockerContainerRegistry.html b/server/latest/developer_manual/exapp_development/faq/DockerContainerRegistry.html index a6e31b97f5b..df9005affc6 100644 --- a/server/latest/developer_manual/exapp_development/faq/DockerContainerRegistry.html +++ b/server/latest/developer_manual/exapp_development/faq/DockerContainerRegistry.html @@ -151,7 +151,7 @@

    How to use a private Docker container registry with authentication?

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/DockerSocketProxy.html b/server/latest/developer_manual/exapp_development/faq/DockerSocketProxy.html index 3ae678e6265..bcd66aa024c 100644 --- a/server/latest/developer_manual/exapp_development/faq/DockerSocketProxy.html +++ b/server/latest/developer_manual/exapp_development/faq/DockerSocketProxy.html @@ -194,7 +194,7 @@

    Other implementations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/GpuSupport.html b/server/latest/developer_manual/exapp_development/faq/GpuSupport.html index eff4a6537e2..e89b8187a00 100644 --- a/server/latest/developer_manual/exapp_development/faq/GpuSupport.html +++ b/server/latest/developer_manual/exapp_development/faq/GpuSupport.html @@ -169,7 +169,7 @@

    How to limit the number of GPUs per ExApp?

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/Scaling.html b/server/latest/developer_manual/exapp_development/faq/Scaling.html index fca1122de6f..b7ef1018da8 100644 --- a/server/latest/developer_manual/exapp_development/faq/Scaling.html +++ b/server/latest/developer_manual/exapp_development/faq/Scaling.html @@ -162,7 +162,7 @@

    GPUs scaling

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/Troubleshooting.html b/server/latest/developer_manual/exapp_development/faq/Troubleshooting.html index 2b6a4272224..990508a232c 100644 --- a/server/latest/developer_manual/exapp_development/faq/Troubleshooting.html +++ b/server/latest/developer_manual/exapp_development/faq/Troubleshooting.html @@ -195,7 +195,7 @@

    ExApps management list of apps from App Store is empty

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/faq/index.html b/server/latest/developer_manual/exapp_development/faq/index.html index 8a752163aa3..e362094e5dc 100644 --- a/server/latest/developer_manual/exapp_development/faq/index.html +++ b/server/latest/developer_manual/exapp_development/faq/index.html @@ -190,7 +190,7 @@

    Frequently Asked Questions

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/index.html b/server/latest/developer_manual/exapp_development/index.html index 4e0f07dfabc..25c1f351768 100644 --- a/server/latest/developer_manual/exapp_development/index.html +++ b/server/latest/developer_manual/exapp_development/index.html @@ -171,7 +171,7 @@

    ExApp development

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/Authentication.html b/server/latest/developer_manual/exapp_development/tech_details/Authentication.html index b35bb829e70..5a8065ee8f1 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/Authentication.html +++ b/server/latest/developer_manual/exapp_development/tech_details/Authentication.html @@ -603,7 +603,7 @@

    Authentication flow

    Authentication flow in details

    -
    +
             sequenceDiagram
         autonumber
         participant ExApp
    @@ -658,7 +658,7 @@ 

    AppAPI session keys

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/Deployment.html b/server/latest/developer_manual/exapp_development/tech_details/Deployment.html index e339af01ed2..a93ee0c783b 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/Deployment.html +++ b/server/latest/developer_manual/exapp_development/tech_details/Deployment.html @@ -299,7 +299,7 @@

    ExApp info.xml schema

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/InstallationFlow.html b/server/latest/developer_manual/exapp_development/tech_details/InstallationFlow.html index a1473e8be02..44565767bc5 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/InstallationFlow.html +++ b/server/latest/developer_manual/exapp_development/tech_details/InstallationFlow.html @@ -252,7 +252,7 @@

    Enabled

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/Translations.html b/server/latest/developer_manual/exapp_development/tech_details/Translations.html index a61ef09a90c..c8d9143e756 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/Translations.html +++ b/server/latest/developer_manual/exapp_development/tech_details/Translations.html @@ -195,7 +195,7 @@

    Translation tool

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/appconfig.html b/server/latest/developer_manual/exapp_development/tech_details/api/appconfig.html index 7d844c0cc7f..67a4012e9de 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/appconfig.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/appconfig.html @@ -282,7 +282,7 @@

    Response

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/events_listener.html b/server/latest/developer_manual/exapp_development/tech_details/api/events_listener.html index 06b60c70b67..0ccc07f6163 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/events_listener.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/events_listener.html @@ -229,7 +229,7 @@

    Node Events

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/exapp.html b/server/latest/developer_manual/exapp_development/tech_details/api/exapp.html index a48f6398bad..c20d362924c 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/exapp.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/exapp.html @@ -269,7 +269,7 @@

    Response data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/fileactionsmenu.html b/server/latest/developer_manual/exapp_development/tech_details/api/fileactionsmenu.html index c67c91b549c..e31b32ecc7e 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/fileactionsmenu.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/fileactionsmenu.html @@ -721,7 +721,7 @@

    Examples

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/index.html b/server/latest/developer_manual/exapp_development/tech_details/api/index.html index 5bbbc7a2195..a43c5f98fee 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/index.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/index.html @@ -247,7 +247,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/logging.html b/server/latest/developer_manual/exapp_development/tech_details/api/logging.html index 7b00b3eb5cd..7ee3124f6d9 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/logging.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/logging.html @@ -184,7 +184,7 @@

    Response data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/notifications.html b/server/latest/developer_manual/exapp_development/tech_details/api/notifications.html index 325f15bdc98..76bd50f0138 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/notifications.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/notifications.html @@ -221,7 +221,7 @@

    Params<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/occ_command.html b/server/latest/developer_manual/exapp_development/tech_details/api/occ_command.html index 898c994a48f..10c9b65863c 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/occ_command.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/occ_command.html @@ -251,7 +251,7 @@

    Params

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/other_ocs.html b/server/latest/developer_manual/exapp_development/tech_details/api/other_ocs.html index 23c5ebacc3a..8047238bc02 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/other_ocs.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/other_ocs.html @@ -177,7 +177,7 @@

    Other OCS APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/preferences.html b/server/latest/developer_manual/exapp_development/tech_details/api/preferences.html index 713277c9477..78439bfe42d 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/preferences.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/preferences.html @@ -282,7 +282,7 @@

    Response

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/routes.html b/server/latest/developer_manual/exapp_development/tech_details/api/routes.html index a426f30a618..b9aace345a5 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/routes.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/routes.html @@ -196,7 +196,7 @@

    Unregister

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/settings.html b/server/latest/developer_manual/exapp_development/tech_details/api/settings.html index 8f7ad33b8ee..eb9633cf2d0 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/settings.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/settings.html @@ -356,7 +356,7 @@

    Params

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/talkbots.html b/server/latest/developer_manual/exapp_development/tech_details/api/talkbots.html index d69a01682c6..590b4104fce 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/talkbots.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/talkbots.html @@ -189,7 +189,7 @@

    Request data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/topmenu.html b/server/latest/developer_manual/exapp_development/tech_details/api/topmenu.html index df8c7c9499c..d01a055bcf4 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/topmenu.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/topmenu.html @@ -303,7 +303,7 @@

    Params

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/api/utils.html b/server/latest/developer_manual/exapp_development/tech_details/api/utils.html index 84c588734f4..ed10f953e04 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/api/utils.html +++ b/server/latest/developer_manual/exapp_development/tech_details/api/utils.html @@ -181,7 +181,7 @@

    Response data

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/exapp_development/tech_details/index.html b/server/latest/developer_manual/exapp_development/tech_details/index.html index d1baf2dd8af..311a2dda758 100644 --- a/server/latest/developer_manual/exapp_development/tech_details/index.html +++ b/server/latest/developer_manual/exapp_development/tech_details/index.html @@ -193,7 +193,7 @@

    Technical details

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/genindex.html b/server/latest/developer_manual/genindex.html index a81d061a0b2..fb8c2d056f4 100644 --- a/server/latest/developer_manual/genindex.html +++ b/server/latest/developer_manual/genindex.html @@ -559,7 +559,7 @@

    Index

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/getting_started/coding_standards/html_css.html b/server/latest/developer_manual/getting_started/coding_standards/html_css.html index b059120a9fd..0a5326dfeba 100644 --- a/server/latest/developer_manual/getting_started/coding_standards/html_css.html +++ b/server/latest/developer_manual/getting_started/coding_standards/html_css.html @@ -232,7 +232,7 @@

    Naming convention

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/getting_started/coding_standards/index.html b/server/latest/developer_manual/getting_started/coding_standards/index.html index a9ccf1b436f..1c15a4b5f92 100644 --- a/server/latest/developer_manual/getting_started/coding_standards/index.html +++ b/server/latest/developer_manual/getting_started/coding_standards/index.html @@ -273,7 +273,7 @@

    License headers

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/getting_started/coding_standards/javascript.html b/server/latest/developer_manual/getting_started/coding_standards/javascript.html index dde28e7e932..77a9f626bd8 100644 --- a/server/latest/developer_manual/getting_started/coding_standards/javascript.html +++ b/server/latest/developer_manual/getting_started/coding_standards/javascript.html @@ -1068,7 +1068,7 @@

    Control structures

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/getting_started/coding_standards/php.html b/server/latest/developer_manual/getting_started/coding_standards/php.html index f855a0e6d39..9dd56840ea1 100644 --- a/server/latest/developer_manual/getting_started/coding_standards/php.html +++ b/server/latest/developer_manual/getting_started/coding_standards/php.html @@ -288,7 +288,7 @@

    Unit tests

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/getting_started/development_process.html b/server/latest/developer_manual/getting_started/development_process.html index 43eaeb9c088..320f1e59d5b 100644 --- a/server/latest/developer_manual/getting_started/development_process.html +++ b/server/latest/developer_manual/getting_started/development_process.html @@ -237,7 +237,7 @@

    Manual Backport

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/getting_started/devenv.html b/server/latest/developer_manual/getting_started/devenv.html index cf48a1551af..7bda0acf315 100644 --- a/server/latest/developer_manual/getting_started/devenv.html +++ b/server/latest/developer_manual/getting_started/devenv.html @@ -262,7 +262,7 @@

    Keep the code up-to-date

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/getting_started/glossary.html b/server/latest/developer_manual/getting_started/glossary.html index ba36ebeee25..3ddf6975810 100644 --- a/server/latest/developer_manual/getting_started/glossary.html +++ b/server/latest/developer_manual/getting_started/glossary.html @@ -563,7 +563,7 @@

    AJAX<

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/getting_started/index.html b/server/latest/developer_manual/getting_started/index.html index f32589cf7bd..a9a3710f001 100644 --- a/server/latest/developer_manual/getting_started/index.html +++ b/server/latest/developer_manual/getting_started/index.html @@ -164,7 +164,7 @@

    Getting started

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/how_to/index.html b/server/latest/developer_manual/how_to/index.html index 347b6d910f5..5651a80dd9b 100644 --- a/server/latest/developer_manual/how_to/index.html +++ b/server/latest/developer_manual/how_to/index.html @@ -446,7 +446,7 @@

    WebAuthn without SSL

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/content.html b/server/latest/developer_manual/html_css_design/content.html index 941722a9789..6545b8a63ed 100644 --- a/server/latest/developer_manual/html_css_design/content.html +++ b/server/latest/developer_manual/html_css_design/content.html @@ -193,7 +193,7 @@

    Rules and information

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/css.html b/server/latest/developer_manual/html_css_design/css.html index bd15f411d2c..64db95f726f 100644 --- a/server/latest/developer_manual/html_css_design/css.html +++ b/server/latest/developer_manual/html_css_design/css.html @@ -663,7 +663,7 @@

    Dos and Don’ts

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/html.html b/server/latest/developer_manual/html_css_design/html.html index b040ab21267..12521efbe79 100644 --- a/server/latest/developer_manual/html_css_design/html.html +++ b/server/latest/developer_manual/html_css_design/html.html @@ -204,7 +204,7 @@

    Buttons

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/icons.html b/server/latest/developer_manual/html_css_design/icons.html index c71ff5b4a90..f54a3bfd049 100644 --- a/server/latest/developer_manual/html_css_design/icons.html +++ b/server/latest/developer_manual/html_css_design/icons.html @@ -166,7 +166,7 @@

    Material design icons

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/index.html b/server/latest/developer_manual/html_css_design/index.html index d065a44161f..a8f97d5f1e0 100644 --- a/server/latest/developer_manual/html_css_design/index.html +++ b/server/latest/developer_manual/html_css_design/index.html @@ -204,7 +204,7 @@

    HTML/CSS guidelines

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/list.html b/server/latest/developer_manual/html_css_design/list.html index 4160e778251..71439d54a36 100644 --- a/server/latest/developer_manual/html_css_design/list.html +++ b/server/latest/developer_manual/html_css_design/list.html @@ -266,7 +266,7 @@

    Rules and information

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/navigation.html b/server/latest/developer_manual/html_css_design/navigation.html index 35e596192e2..bfdab9ac2c9 100644 --- a/server/latest/developer_manual/html_css_design/navigation.html +++ b/server/latest/developer_manual/html_css_design/navigation.html @@ -619,7 +619,7 @@

    Basic layout

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/html_css_design/popovermenu.html b/server/latest/developer_manual/html_css_design/popovermenu.html index 0fe83cb7b3a..6a787ae7e6f 100644 --- a/server/latest/developer_manual/html_css_design/popovermenu.html +++ b/server/latest/developer_manual/html_css_design/popovermenu.html @@ -241,7 +241,7 @@

    Alignment

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/index.html b/server/latest/developer_manual/index.html index 9b640028a82..3ea450d97b6 100644 --- a/server/latest/developer_manual/index.html +++ b/server/latest/developer_manual/index.html @@ -253,7 +253,7 @@

    Table of contents

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/prologue/bugtracker/codereviews.html b/server/latest/developer_manual/prologue/bugtracker/codereviews.html index 1625ca01654..f197af93d43 100644 --- a/server/latest/developer_manual/prologue/bugtracker/codereviews.html +++ b/server/latest/developer_manual/prologue/bugtracker/codereviews.html @@ -199,7 +199,7 @@

    Questions?

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/prologue/bugtracker/index.html b/server/latest/developer_manual/prologue/bugtracker/index.html index 25310ac5510..e1e3a9e9a23 100644 --- a/server/latest/developer_manual/prologue/bugtracker/index.html +++ b/server/latest/developer_manual/prologue/bugtracker/index.html @@ -151,7 +151,7 @@

    Bugtracker

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/prologue/bugtracker/triaging.html b/server/latest/developer_manual/prologue/bugtracker/triaging.html index 916018937aa..76d516b2732 100644 --- a/server/latest/developer_manual/prologue/bugtracker/triaging.html +++ b/server/latest/developer_manual/prologue/bugtracker/triaging.html @@ -269,7 +269,7 @@

    Finalizing and tagging

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/prologue/code-of-conduct.html b/server/latest/developer_manual/prologue/code-of-conduct.html index 468cabfe154..88ebcef6578 100644 --- a/server/latest/developer_manual/prologue/code-of-conduct.html +++ b/server/latest/developer_manual/prologue/code-of-conduct.html @@ -135,7 +135,7 @@

    Code of conduct

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/prologue/compatibility_app_ecosystem.html b/server/latest/developer_manual/prologue/compatibility_app_ecosystem.html index ce54e26fe3c..a4a426f6d31 100644 --- a/server/latest/developer_manual/prologue/compatibility_app_ecosystem.html +++ b/server/latest/developer_manual/prologue/compatibility_app_ecosystem.html @@ -172,7 +172,7 @@

    Other documentation requirements

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/prologue/help_communication.html b/server/latest/developer_manual/prologue/help_communication.html index 98a7fd2e7bc..5b24e1cdab8 100644 --- a/server/latest/developer_manual/prologue/help_communication.html +++ b/server/latest/developer_manual/prologue/help_communication.html @@ -150,7 +150,7 @@

    Maintainers

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/prologue/index.html b/server/latest/developer_manual/prologue/index.html index 24715fa0682..46bcc386a38 100644 --- a/server/latest/developer_manual/prologue/index.html +++ b/server/latest/developer_manual/prologue/index.html @@ -164,7 +164,7 @@

    Prologue

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/prologue/security.html b/server/latest/developer_manual/prologue/security.html index 1b5aefc2250..fe31d8ce70b 100644 --- a/server/latest/developer_manual/prologue/security.html +++ b/server/latest/developer_manual/prologue/security.html @@ -384,7 +384,7 @@

    Getting help

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/critical_changes.html b/server/latest/developer_manual/release_notes/critical_changes.html index 0ef60f3e966..fb4325aae0b 100644 --- a/server/latest/developer_manual/release_notes/critical_changes.html +++ b/server/latest/developer_manual/release_notes/critical_changes.html @@ -213,6 +213,7 @@

    Other removed back-end APIs
  • All the deprecated methods of \OCP\Calendar\Resource\IManager and \OCP\Calendar\Room\IManager were deprecated since Nextcloud 24 and were removed without replacement.

  • The \OCP\Collaboration\AutoComplete\AutoCompleteEvent event was deprecated since Nextcloud 28 and was removed with OCP\Collaboration\AutoComplete\AutoCompleteFilterEvent as replacement;

  • +
  • \OCP\Files\IRootFolder does not publicly implement the deprecated and private OC\Hooks\Emitter interface anymore. The private implementations still do, but support might be removed at any moment without notice. The replacement for the hooks provided by IRootFolder are the node events defined in the OCP\Files\Events\Node namespace.

  • @@ -230,7 +231,7 @@

    Other removed back-end APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/deprecations.html b/server/latest/developer_manual/release_notes/deprecations.html index 9d8badd4794..efd6a699df4 100644 --- a/server/latest/developer_manual/release_notes/deprecations.html +++ b/server/latest/developer_manual/release_notes/deprecations.html @@ -185,7 +185,7 @@

    Older deprecations

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/index.html b/server/latest/developer_manual/release_notes/index.html index 9246baf4d8e..66657307262 100644 --- a/server/latest/developer_manual/release_notes/index.html +++ b/server/latest/developer_manual/release_notes/index.html @@ -142,7 +142,7 @@

    Release notes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/new.html b/server/latest/developer_manual/release_notes/new.html index 92c9ed7bf27..e336e65e61e 100644 --- a/server/latest/developer_manual/release_notes/new.html +++ b/server/latest/developer_manual/release_notes/new.html @@ -180,7 +180,7 @@

    Changed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/index.html b/server/latest/developer_manual/release_notes/previous/index.html index fa6ece9093e..11698192767 100644 --- a/server/latest/developer_manual/release_notes/previous/index.html +++ b/server/latest/developer_manual/release_notes/previous/index.html @@ -187,7 +187,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_14.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_14.html index 5fa7cd29375..89fd748a72e 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_14.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_14.html @@ -290,7 +290,7 @@

    Internal changes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_15.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_15.html index 0412360020b..74a169e1f1f 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_15.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_15.html @@ -208,7 +208,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_16.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_16.html index bbbd35e00f2..9723d54ae8c 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_16.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_16.html @@ -211,7 +211,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_17.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_17.html index f19beb41dce..6f4d74a1692 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_17.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_17.html @@ -226,7 +226,7 @@

    Behavioral changes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_18.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_18.html index 409bb635f7d..968b84131d3 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_18.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_18.html @@ -218,7 +218,7 @@

    Behavioral changes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_19.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_19.html index d3901e2acb9..e8e948e4ac5 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_19.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_19.html @@ -251,7 +251,7 @@

    Changed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_20.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_20.html index ab62adb898e..9800e80c135 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_20.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_20.html @@ -375,7 +375,7 @@

    Removed from public namespace

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_21.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_21.html index 0e3be0c3289..543fd0540ea 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_21.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_21.html @@ -225,7 +225,7 @@

    Replaced well-known handler API

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_22.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_22.html index 27b29fe2755..469fbeb8c6a 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_22.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_22.html @@ -246,7 +246,7 @@

    Deprecated APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_23.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_23.html index a6c3ef315e7..7a83dcfe392 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_23.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_23.html @@ -202,7 +202,7 @@

    Deprecated APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_24.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_24.html index 89f091f71b4..67647b4f520 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_24.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_24.html @@ -211,7 +211,7 @@

    Entity slug deprecation

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_25.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_25.html index 92a37471c01..922f0f2d90f 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_25.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_25.html @@ -212,7 +212,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_26.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_26.html index ce64cc5592b..722623f6321 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_26.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_26.html @@ -273,7 +273,7 @@

    Deprecated

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_27.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_27.html index aff2dd59eed..b271ebf7ff7 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_27.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_27.html @@ -269,7 +269,7 @@

    Changed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_28.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_28.html index 8aad1cfd8e3..f905a7790ef 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_28.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_28.html @@ -462,7 +462,7 @@

    Removed WebDAV properties

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_29.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_29.html index 587d2a47696..f177e55fc1d 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_29.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_29.html @@ -236,7 +236,7 @@

    Changed behavior

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_30.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_30.html index c7ec93e8ca1..abad77c3a74 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_30.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_30.html @@ -462,7 +462,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_31.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_31.html index d9e8a9525fa..a0afd3d1035 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_31.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_31.html @@ -564,7 +564,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_32.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_32.html index df4ba5d41d6..adb6c663bae 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_32.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_32.html @@ -381,7 +381,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_33.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_33.html index a939be3ae3e..7868e98829e 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_33.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_33.html @@ -418,7 +418,7 @@

    Removed APIs

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/release_notes/previous/upgrade_to_34.html b/server/latest/developer_manual/release_notes/previous/upgrade_to_34.html index 30ddd47e010..93a2a93f547 100644 --- a/server/latest/developer_manual/release_notes/previous/upgrade_to_34.html +++ b/server/latest/developer_manual/release_notes/previous/upgrade_to_34.html @@ -271,7 +271,7 @@

    Application namespace management

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/search.html b/server/latest/developer_manual/search.html index d9a4c60c804..b2b5ea9551b 100644 --- a/server/latest/developer_manual/search.html +++ b/server/latest/developer_manual/search.html @@ -566,7 +566,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/searchindex.js b/server/latest/developer_manual/searchindex.js index 10193ed6417..3798bebcb19 100644 --- a/server/latest/developer_manual/searchindex.js +++ b/server/latest/developer_manual/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"./occ config:app:get \u2013details": [[92, "occ-config-app-get-details"]], "0. Setting up the development environment": [[151, "setting-up-the-development-environment"]], "1. Migration 1: Schema change": [[40, "migration-1-schema-change"]], "1. Starting from template": [[151, "starting-from-template"]], "2. Migration 1: Post schema change": [[40, "migration-1-post-schema-change"]], "3. Development": [[151, "development"]], "3. Migration 2: Schema change": [[40, "migration-2-schema-change"]], "4. Packaging": [[151, "packaging"]], "4.1 Hardware acceleration": [[151, "hardware-acceleration"]], "5. AppStore publishing": [[151, "appstore-publishing"]], "6. Testing": [[151, "testing"]], "@nextcloud/auth": [[115, "nextcloud-auth"]], "@nextcloud/axios": [[115, "nextcloud-axios"]], "@nextcloud/dialogs": [[115, "nextcloud-dialogs"]], "@nextcloud/event-bus": [[115, "nextcloud-event-bus"]], "@nextcloud/files": [[115, "nextcloud-files"]], "@nextcloud/initial-state": [[115, "nextcloud-initial-state"]], "@nextcloud/l10n": [[115, "nextcloud-l10n"]], "@nextcloud/logger": [[115, "nextcloud-logger"]], "@nextcloud/moment": [[115, "nextcloud-moment"]], "@nextcloud/password-confirmation": [[115, "nextcloud-password-confirmation"]], "@nextcloud/paths": [[115, "nextcloud-paths"]], "@nextcloud/router": [[115, "nextcloud-router"]], "@nextcloud/sharing": [[115, "nextcloud-sharing"]], "@nextcloud/vue": [[115, "nextcloud-vue"]], "A note about namespaces URI": [[61, "a-note-about-namespaces-uri"]], "AI & Machine Learning": [[84, null]], "AJAX": [[190, "ajax"]], "API (Application Programming Interface)": [[190, "api-application-programming-interface"]], "API design and consistency": [[49, "api-design-and-consistency"]], "API reference": [[85, null]], "API to resolve links": [[129, "api-to-resolve-links"]], "APIs & Integration": [[86, null]], "Aborting the upload": [[63, "aborting-the-upload"]], "Accept a pending Federated Cloud Share": [[52, "accept-a-pending-federated-cloud-share"]], "Access calendars and events": [[106, "access-calendars-and-events"]], "Access data from within a Nextcloud App via OCP": [[121, "access-data-from-within-a-nextcloud-app-via-ocp"]], "Access restrictions \u2013 IACL": [[107, "access-restrictions-iacl"]], "Access through CalDAV": [[107, "access-through-caldav"]], "Accessing attributes": [[37, "accessing-attributes"]], "Accessing contact info": [[108, "accessing-contact-info"]], "Accessing the container from anywhere": [[21, "accessing-the-container-from-anywhere"]], "Acquiring a HTTP Client": [[112, "acquiring-a-http-client"]], "Action menus": [[76, "action-menus"]], "Action payload to ExApp": [[171, "action-payload-to-exapp"]], "Action results": [[171, "action-results"]], "Actions": [[108, "actions"]], "Activity API": [[69, null]], "Activity element fields": [[69, "activity-element-fields"]], "Adapting ExApps to HaRP": [[152, null]], "Add script": [[181, "add-script"]], "Add spaces around content when needed": [[186, "id17"]], "Add style": [[181, "add-style"]], "Add the library as a Gradle dependency": [[72, "add-the-library-as-a-gradle-dependency"]], "Add the library project to your project as a Git submodule": [[72, "add-the-library-project-to-your-project-as-a-git-submodule"]], "Add the library to a project": [[72, "add-the-library-to-a-project"]], "Added APIs": [[213, "added-apis"], [215, "added-apis"], [227, "added-apis"], [228, "added-apis"], [228, "id2"], [229, "added-apis"], [229, "id1"], [230, "added-apis"], [231, "added-apis"], [232, "added-apis"], [233, "added-apis"], [234, "added-apis"], [234, "id3"]], "Added Events": [[233, "added-events"], [234, "added-events"]], "Added events": [[229, "added-events"]], "Adding a navigation entry": [[6, "adding-a-navigation-entry"]], "Adding indices": [[40, "adding-indices"]], "Adding mounts to the filesystem": [[38, "adding-mounts-to-the-filesystem"]], "Adding translations": [[42, "adding-translations"]], "Address Sanitizer": [[82, "address-sanitizer"]], "Admin audit logging": [[29, "admin-audit-logging"]], "Advanced search provider": [[132, "advanced-search-provider"]], "Advantages": [[21, "advantages"]], "After the release": [[16, "after-the-release"]], "Alignment": [[200, "alignment"]], "Always use braces.": [[186, "id20"]], "Always use parenthesis for arrow function parameters.": [[186, "id12"]], "Android": [[42, "android"], [71, null]], "Android Nextcloud client development": [[71, "android-nextcloud-client-development"]], "App ID": [[190, "app-id"]], "App Installation Flow": [[166, null]], "App architecture": [[7, "app-architecture"]], "App autoloading": [[89, "app-autoloading"]], "App bootstrap logic": [[221, "app-bootstrap-logic"]], "App code checker deprecation": [[222, "app-code-checker-deprecation"]], "App development": [[4, null]], "App guidelines": [[14, "app-guidelines"]], "App metadata": [[5, null]], "App navigation menu": [[199, "app-navigation-menu"]], "App publishing and maintenance": [[11, null]], "App values": [[36, "app-values"]], "AppAPI Authentication": [[153, "appapi-authentication"]], "AppAPI Nextcloud APIs": [[172, null]], "AppAPI session keys": [[164, "appapi-session-keys"]], "AppAPIAuth": [[164, "appapiauth"]], "AppConfig": [[90, null], [168, null]], "AppData": [[35, null], [236, "appdata"]], "AppFramework": [[90, "appframework"]], "Application installation scheme": [[165, "application-installation-scheme"]], "Application namespace management": [[235, "application-namespace-management"]], "Arguments": [[165, "arguments"], [165, "id1"]], "Arguments and options": [[1, "arguments-and-options"]], "Arrays": [[186, "arrays"]], "Assembling the chunks": [[63, "assembling-the-chunks"]], "Assistant OCS API": [[47, null]], "Assistant colors": [[77, "assistant-colors"]], "Auth bypass / privilege escalations": [[209, "auth-bypass-privilege-escalations"]], "Authentication": [[20, "authentication"], [46, "authentication"], [164, null]], "Authentication & basics": [[240, "authentication-basics"]], "Authentication flow": [[164, "authentication-flow"]], "Authentication flow in details": [[164, "authentication-flow-in-details"]], "Authentication headers": [[164, "authentication-headers"]], "Auto-complete and user search": [[46, "auto-complete-and-user-search"]], "Automatic Backport": [[188, "automatic-backport"]], "Available Events": [[22, "available-events"]], "Available hooks": [[22, "available-hooks"]], "Available log methods": [[29, "available-log-methods"]], "Avatars": [[76, "avatars"]], "Avoid multiple properties on the same line": [[186, "id6"], [186, "id16"]], "Avoid semicolons where not needed.": [[186, "id3"]], "Avoiding deadlocks": [[97, "avoiding-deadlocks"]], "Babel Polyfill removal": [[220, "babel-polyfill-removal"]], "Back-end": [[167, "back-end"]], "Back-end changes": [[215, "back-end-changes"], [216, "back-end-changes"], [217, "back-end-changes"], [218, "back-end-changes"], [219, "back-end-changes"], [220, "back-end-changes"], [221, "back-end-changes"], [222, "back-end-changes"], [223, "back-end-changes"], [224, "back-end-changes"], [225, "back-end-changes"], [226, "back-end-changes"], [227, "back-end-changes"], [228, "back-end-changes"], [229, "back-end-changes"], [230, "back-end-changes"], [231, "back-end-changes"], [232, "back-end-changes"], [233, "back-end-changes"], [234, "back-end-changes"]], "Back-end code": [[238, null]], "Backend": [[154, "backend"]], "Background colors": [[77, "background-colors"]], "Background jobs (Cron)": [[18, null]], "Background variables": [[194, "background-variables"]], "Backporting Considerations": [[188, "backporting-considerations"]], "Basic Calendar information \u2013 INode": [[107, "basic-calendar-information-inode"]], "Basic File & Folder Operations": [[61, null]], "Basic Pattern of Dependency Injection": [[21, "basic-pattern-of-dependency-injection"]], "Basic concepts": [[28, null]], "Basic event information \u2013 INode": [[107, "basic-event-information-inode"]], "Basic input types": [[99, "basic-input-types"]], "Basic layout": [[198, "basic-layout"], [199, "basic-layout"], [199, "id3"], [199, "id5"], [200, "basic-layout"]], "Basic rules": [[199, "basic-rules"]], "Basic usage": [[20, "basic-usage"], [29, "basic-usage"], [103, "basic-usage"]], "Be technically sound": [[14, "be-technically-sound"]], "Before the release": [[16, "before-the-release"]], "Behavioral changes": [[215, "behavioral-changes"], [218, "behavioral-changes"], [219, "behavioral-changes"], [228, "behavioral-changes"]], "Benefits": [[14, "benefits"]], "Best practices": [[49, "best-practices"], [148, "best-practices"]], "Body theme": [[221, "body-theme"]], "Boolean database columns": [[223, "boolean-database-columns"]], "Booting an app": [[0, "booting-an-app"]], "Bootstrapping": [[0, null]], "Bootstrapping Nextcloud": [[243, "bootstrapping-nextcloud"]], "Bootstrapping process": [[0, "bootstrapping-process"]], "Border colors": [[77, "border-colors"]], "Border radii": [[77, "border-radii"]], "Border radius": [[231, "border-radius"]], "Borders": [[77, "borders"]], "Braces on same line as the definition.": [[186, "id9"]], "Branch Names": [[188, "branch-names"]], "Branch off": [[16, "branch-off"]], "Branch selection .tx/backport": [[8, "branch-selection-tx-backport"]], "Breaking changes in the Files API package": [[234, "breaking-changes-in-the-files-api-package"]], "Browse the task result page": [[87, "browse-the-task-result-page"]], "Brute-force protection": [[20, "brute-force-protection"]], "Bugfixes": [[188, "bugfixes"]], "Bugtracker": [[203, null]], "Building Vue components and scripts": [[239, "building-vue-components-and-scripts"]], "Building styles": [[239, "building-styles"]], "Building the Client": [[82, null]], "Built-in examples": [[148, "built-in-examples"]], "Button and action labels": [[81, "button-and-action-labels"]], "Buttons": [[76, "buttons"], [195, "buttons"], [199, "buttons"]], "C++ (Qt) / Desktop client": [[42, "c-qt-desktop-client"]], "CAREFULLY handle empty values in JSON Responses": [[49, "carefully-handle-empty-values-in-json-responses"]], "CONSIDER how your API will be used": [[49, "consider-how-your-api-will-be-used"]], "CORS": [[209, "cors"]], "CSP Nonce": [[231, "csp-nonce"]], "CSRF and the #[NoCSRFRequired] attribute": [[190, "csrf-and-the-nocsrfrequired-attribute"]], "CSS": [[23, null], [184, "css"], [194, null], [219, "css"]], "CSS and HTML coding standards": [[184, null]], "CSS classes": [[194, "css-classes"]], "CSS variables": [[27, "css-variables"], [194, "css-variables"]], "Cache": [[236, "cache"]], "Cached data": [[122, "cached-data"]], "Caching": [[19, null]], "Calendar integration": [[106, null]], "Calendar objects": [[106, "calendar-objects"]], "Calendar providers": [[106, "calendar-providers"]], "Calendars": [[106, "calendars"]], "Calls: native client \u2192 editor page": [[101, "calls-native-client-editor-page"]], "Capabilities": [[69, "capabilities"], [231, "capabilities"]], "Capabilities API": [[46, "capabilities-api"]], "Casting parameters": [[20, "casting-parameters"]], "Cause": [[156, "cause"]], "Change log": [[16, "change-log"]], "Change tracking": [[16, "change-tracking"]], "Changed APIs": [[213, "changed-apis"], [215, "changed-apis"], [215, "id1"], [220, "changed-apis"], [224, "changed-apis"], [227, "changed-apis"], [228, "changed-apis"], [228, "id7"], [229, "changed-apis"], [230, "changed-apis"], [230, "id1"], [231, "changed-apis"], [232, "changed-apis"], [233, "changed-apis"], [234, "changed-apis"], [234, "id4"]], "Changed behavior": [[230, "changed-behavior"]], "Changelog": [[5, "changelog"]], "Changing API and backwards compatibility": [[240, "changing-api-and-backwards-compatibility"]], "Check availability": [[56, "check-availability"]], "Check for Talk existence": [[139, "check-for-talk-existence"]], "Check out external shipped apps": [[189, "check-out-external-shipped-apps"]], "Check out the code": [[189, "check-out-the-code"]], "Check responsibility": [[69, "check-responsibility"]], "Checkbox and Multi-checkbox": [[99, "checkbox-and-multi-checkbox"]], "Checkboxes and radios": [[195, "checkboxes-and-radios"]], "Checkboxes and toggles": [[76, "checkboxes-and-toggles"]], "Checking for existence of events": [[107, "checking-for-existence-of-events"]], "Checking if the issue is useful": [[204, "checking-if-the-issue-is-useful"]], "Chips": [[76, "chips"]], "Choosing what should be lazy": [[90, "choosing-what-should-be-lazy"]], "Chunked file upload": [[63, null]], "Chunked upload v2": [[63, "chunked-upload-v2"]], "Class": [[190, "class"]], "Class-based schema registration": [[99, "class-based-schema-registration"]], "Classloader": [[89, null]], "Clear data and disable out-of-office": [[50, "clear-data-and-disable-out-of-office"]], "Clear message": [[54, "clear-message"]], "Clickable area": [[231, "clickable-area"]], "Clickjacking": [[209, "clickjacking"]], "Client APIs": [[228, "client-apis"]], "Client Integration": [[43, null]], "Clients and Client APIs": [[75, null]], "Code Map": [[236, "code-map"]], "Code example": [[70, "code-example"], [70, "id1"], [70, "id2"], [70, "id3"], [70, "id4"], [70, "id5"], [70, "id6"], [70, "id7"], [70, "id8"], [70, "id9"], [70, "id10"], [70, "id11"], [70, "id12"]], "Code executions / file inclusions": [[209, "code-executions-file-inclusions"]], "Code of conduct": [[205, null]], "Code reviews on GitHub": [[202, null]], "Code signing": [[10, null]], "Code style": [[186, "code-style"]], "Coding standards": [[185, "coding-standards"]], "Coding style & general guidelines": [[185, null]], "Collabora without SSL": [[192, "collabora-without-ssl"]], "Collapsible entry": [[199, "collapsible-entry"]], "Color picker": [[76, "color-picker"]], "Colors": [[77, "colors"]], "Command naming": [[1, "command-naming"]], "Comments": [[64, null], [187, "comments"]], "Committing changes": [[239, "committing-changes"]], "Common data structure": [[121, "common-data-structure"]], "Comparison of different API types": [[131, "id4"], [131, "id5"]], "Compatibility": [[115, "compatibility"]], "Compatibility documentation": [[238, "compatibility-documentation"]], "Compatibility with the app ecosystem": [[206, null]], "Compiling": [[82, "compiling"]], "Completely disabled authentication": [[20, "completely-disabled-authentication"]], "Components": [[76, null]], "Composer": [[3, "composer"]], "Composer and composer.json": [[190, "composer-and-composer-json"]], "Concept": [[128, "concept"]], "Concept overview": [[48, "concept-overview"], [90, "concept-overview"], [92, "concept-overview"], [93, "concept-overview"], [104, "concept-overview"], [132, "concept-overview"]], "Conditional scheduling of tasks": [[142, "conditional-scheduling-of-tasks"]], "Config & Preferences": [[91, null]], "Config Lexicon Entry": [[92, "config-lexicon-entry"]], "Configuration": [[36, null]], "Configuration Component": [[105, "configuration-component"]], "Configuration changes": [[215, "configuration-changes"]], "Configuring parallelism": [[18, "configuring-parallelism"]], "Conflict example": [[3, "conflict-example"]], "Connecting a controller and a route": [[20, "connecting-a-controller-and-a-route"]], "Console commands": [[33, "console-commands"], [40, "console-commands"], [42, "console-commands"]], "Constants and flags": [[90, "constants-and-flags"]], "Construction of migration classes": [[40, "construction-of-migration-classes"]], "Consumable, Listenable and Catchable": [[85, "consumable-listenable-and-catchable"]], "Consuming a Mail Service": [[110, "consuming-a-mail-service"]], "Consuming the AppConfig API": [[90, "consuming-the-appconfig-api"]], "Consuming the Files Metadata API": [[104, "consuming-the-files-metadata-api"]], "Consuming the Speech-To-Text API": [[137, "consuming-the-speech-to-text-api"]], "Consuming the Task Processing API": [[140, "consuming-the-task-processing-api"]], "Consuming the Text Processing API": [[142, "consuming-the-text-processing-api"]], "Consuming the Text-To-Image API": [[141, "consuming-the-text-to-image-api"]], "Consuming the Translation API": [[116, "consuming-the-translation-api"]], "Consuming the UserConfig API": [[93, "consuming-the-userconfig-api"]], "Contact Support": [[156, "contact-support"]], "Contacts Menu": [[108, null]], "Containers / Dependency Injection": [[21, null]], "Content list": [[198, null]], "Content size of the event": [[107, "content-size-of-the-event"]], "Context Chat": [[94, null]], "Context array": [[29, "context-array"]], "Continuous Integration": [[95, null]], "Contributing": [[125, "contributing"]], "Control structures": [[186, "control-structures"], [187, "control-structures"]], "Controller": [[190, "controller"]], "Controller Injection": [[21, "controller-injection"]], "Controllers": [[20, null]], "Convert input into standard format": [[123, "convert-input-into-standard-format"]], "Converting to app passwords": [[44, "converting-to-app-passwords"]], "Cookies": [[153, "cookies"]], "Copying files and folders (rfc4918)": [[61, "copying-files-and-folders-rfc4918"]], "Corporate Proxy - Permanent Settings for PHP CLI": [[156, null]], "Correct plurals": [[42, "correct-plurals"]], "Counter": [[199, "counter"]], "Counter bubbles": [[76, "counter-bubbles"]], "Create a conversation": [[139, "create-a-conversation"]], "Create a file": [[101, "create-a-file"]], "Create a folder": [[70, "create-a-folder"]], "Create a new Federated Cloud Share": [[52, "create-a-new-federated-cloud-share"]], "Create a new Share": [[52, "create-a-new-share"]], "Create an app": [[7, "create-an-app"]], "Create calendar events": [[106, "create-calendar-events"]], "Creating a command class": [[1, "creating-a-command-class"]], "Creating a repair step": [[130, "creating-a-repair-step"]], "Creating an expensive repair step": [[130, "creating-an-expensive-repair-step"]], "Creating and publishing events": [[69, "creating-and-publishing-events"]], "Creating custom responses": [[20, "creating-custom-responses"]], "Creating folders (rfc4918)": [[61, "creating-folders-rfc4918"]], "Creating new calendar events": [[107, "creating-new-calendar-events"]], "Creating users": [[146, "creating-users"]], "Critical changes": [[210, null]], "Cross site request forgery": [[209, "cross-site-request-forgery"]], "Cross site scripting": [[209, "cross-site-scripting"]], "Custom attribute to database column mapping": [[37, "custom-attribute-to-database-column-mapping"]], "Custom log file": [[29, "custom-log-file"]], "Customize the conversation": [[139, "customize-the-conversation"]], "DELETE request": [[112, "delete-request"]], "DO NOT throw non-OCS*Exceptions": [[49, "do-not-throw-non-ocs-exceptions"]], "DO NOT use the addHeader (use setHeaders)": [[49, "do-not-use-the-addheader-use-setheaders"]], "DO set all descriptions for parameters and methods": [[49, "do-set-all-descriptions-for-parameters-and-methods"]], "DO type controller and helper methods as explicit as possible": [[49, "do-type-controller-and-helper-methods-as-explicit-as-possible"]], "DO use the same data structures for the same group of responses": [[49, "do-use-the-same-data-structures-for-the-same-group-of-responses"]], "DaemonConfig registration": [[165, "daemonconfig-registration"]], "Dashboard": [[96, null]], "Dashboard API": [[96, "dashboard-api"]], "Data-based responses": [[20, "data-based-responses"]], "Database": [[211, "database"]], "Database access": [[37, null]], "Database clusters": [[122, "database-clusters"]], "Database concepts": [[190, "database-concepts"]], "Database performance": [[122, "database-performance"]], "Datetime picker": [[76, "datetime-picker"]], "Deadlocks": [[97, null]], "Debug mode": [[98, "debug-mode"]], "Debugging": [[98, null]], "Debugging HTML and templates": [[98, "debugging-html-and-templates"]], "Debugging JavaScript": [[98, "debugging-javascript"]], "Debugging MariaDB queries": [[98, "debugging-mariadb-queries"]], "Debugging SQL queries": [[98, "debugging-sql-queries"]], "Debugging tests in the browser": [[243, "debugging-tests-in-the-browser"]], "Debugging variables": [[98, "debugging-variables"]], "Declarative Settings": [[179, null]], "Declarative UI response": [[43, "declarative-ui-response"]], "Declarative settings": [[99, null]], "Declare in-app search": [[132, "declare-in-app-search"]], "Declare supported Unified Search providers": [[129, "declare-supported-unified-search-providers"]], "Decline a pending Federated Cloud Share": [[52, "decline-a-pending-federated-cloud-share"]], "Decode a Snowflake ID": [[136, "decode-a-snowflake-id"]], "Default user agent for outgoing requests changed": [[234, "default-user-agent-for-outgoing-requests-changed"]], "Default values for subURL": [[33, "default-values-for-suburl"]], "Define a setup check": [[135, "define-a-setup-check"]], "Delete Share": [[52, "delete-share"]], "Delete a conversation": [[139, "delete-a-conversation"]], "Delete a share resource": [[70, "delete-a-share-resource"]], "Delete a task": [[56, "delete-a-task"]], "Delete an accepted Federated Cloud Share": [[52, "delete-an-accepted-federated-cloud-share"]], "Delete app config values": [[168, "delete-app-config-values"]], "Delete file or folder": [[70, "delete-file-or-folder"]], "Delete metadata using PROPPATCH": [[104, "delete-metadata-using-proppatch"]], "Delete user config values": [[177, "delete-user-config-values"]], "Deleting a preference": [[59, "deleting-a-preference"]], "Deleting an app password": [[44, "deleting-an-app-password"]], "Deleting files and folders (rfc4918)": [[61, "deleting-files-and-folders-rfc4918"]], "Deleting from the trashbin": [[67, "deleting-from-the-trashbin"]], "Deleting multiple preference": [[59, "deleting-multiple-preference"]], "Dependency Injection Container Registration": [[30, "dependency-injection-container-registration"]], "Dependency Injection Parameters": [[227, "dependency-injection-parameters"]], "Dependency hell": [[3, "dependency-hell"]], "Dependency injection (DI)": [[190, "dependency-injection-di"]], "Dependency management": [[3, null]], "Deploy daemons types": [[149, "deploy-daemons-types"]], "Deploy environment variables": [[165, "deploy-environment-variables"]], "Deployment": [[165, null]], "Deprecated": [[227, "deprecated"]], "Deprecated APIs": [[215, "deprecated-apis"], [216, "deprecated-apis"], [221, "deprecated-apis"], [223, "deprecated-apis"], [224, "deprecated-apis"], [224, "id1"], [228, "deprecated-apis"], [229, "deprecated-apis"], [229, "id2"], [230, "deprecated-apis"], [231, "deprecated-apis"], [231, "id2"], [232, "deprecated-apis"], [233, "deprecated-apis"], [233, "id1"], [234, "deprecated-apis"], [234, "id5"]], "Deprecated events": [[229, "deprecated-events"]], "Deprecated global variables": [[218, "deprecated-global-variables"], [219, "deprecated-global-variables"], [220, "deprecated-global-variables"], [221, "deprecated-global-variables"], [223, "deprecated-global-variables"]], "Deprecation of injection of named services": [[220, "deprecation-of-injection-of-named-services"]], "Deprecation of shipped JavaScript libraries": [[217, "deprecation-of-shipped-javascript-libraries"]], "Deprecations": [[211, null], [218, "deprecations"], [219, "deprecations"], [235, "deprecations"]], "Design": [[78, null]], "Desktop Clients": [[83, null]], "Determining if the report is complete": [[204, "determining-if-the-report-is-complete"]], "Determining relevance of issue": [[204, "determining-relevance-of-issue"]], "Develop your first app with client integration": [[43, "develop-your-first-app-with-client-integration"]], "Development": [[115, "development"]], "Development Tools": [[100, null]], "Development dependency hell": [[229, "development-dependency-hell"]], "Development environment": [[189, null]], "Development overview": [[155, null]], "Development process": [[188, null]], "Development tools": [[3, "development-tools"]], "Digging deeper": [[113, null]], "Direct Download": [[46, "direct-download"]], "Direct editing": [[101, null]], "Direct storage access": [[38, "direct-storage-access"]], "Directory traversal": [[209, "directory-traversal"]], "Disable the app": [[125, "disable-the-app"]], "Disabled keyboard shortcuts": [[226, "disabled-keyboard-shortcuts"]], "Display link previews": [[129, "display-link-previews"]], "Displaying a task result": [[87, "displaying-a-task-result"]], "Distributed cache": [[19, "distributed-cache"]], "Do we lock down Nextcloud?": [[10, "do-we-lock-down-nextcloud"]], "Docker Container Registry": [[157, null]], "Docker Socket Proxy": [[149, "docker-socket-proxy"], [158, null]], "Docker by socket": [[149, "docker-by-socket"]], "Docker install": [[167, "docker-install"]], "Docker remote API": [[149, "docker-remote-api"]], "Dockerfile": [[151, "dockerfile"]], "Document creators": [[101, "document-creators"]], "Documentation": [[243, "documentation"]], "Documentation on the translation process": [[8, "documentation-on-the-translation-process"]], "Documentation procedures of changes that affect app developers": [[206, "documentation-procedures-of-changes-that-affect-app-developers"]], "Donations": [[13, "donations"]], "Dos and Don\u2019ts": [[42, "dos-and-don-ts"], [194, "dos-and-don-ts"]], "Download a file": [[70, "download-a-file"]], "Download permission": [[52, "download-permission"]], "Downloading files": [[61, "downloading-files"]], "Downloading folders": [[61, "downloading-folders"]], "Downloads": [[20, "downloads"]], "Drag and drop": [[199, "drag-and-drop"]], "Dropdown": [[76, "dropdown"]], "ESLint config": [[186, "eslint-config"]], "Edit an existing app": [[7, "edit-an-existing-app"]], "Edit entry": [[199, "edit-entry"]], "Element sizes and spacing": [[77, "element-sizes-and-spacing"]], "Element structure variables": [[194, "element-structure-variables"]], "Email": [[103, null]], "Email sending": [[192, "email-sending"]], "Emoji picker": [[76, "emoji-picker"]], "Empty content": [[76, "empty-content"]], "Emptying the trashbin": [[67, "emptying-the-trashbin"]], "Enable the app": [[7, "enable-the-app"], [125, "enable-the-app"]], "Enabled": [[153, "enabled"], [166, "enabled"]], "Enabling debug mode": [[189, "enabling-debug-mode"]], "Endpoint": [[43, "endpoint"], [64, "endpoint"]], "Endpoints": [[69, "endpoints"]], "Enterprise support": [[13, "enterprise-support"]], "Entities": [[37, "entities"], [105, "entities"]], "Entity": [[190, "entity"]], "Entity slug deprecation": [[225, "entity-slug-deprecation"]], "Entries in the calendar \u2013 ICollection": [[107, "entries-in-the-calendar-icollection"]], "Entry bullet": [[199, "entry-bullet"]], "Error handling": [[112, "error-handling"]], "Errors": [[10, "errors"]], "Errors and headers": [[49, "errors-and-headers"]], "Event data \u2013 IFile": [[107, "event-data-ifile"]], "Event payload": [[169, "event-payload"]], "Event-based schema registration": [[99, "event-based-schema-registration"]], "Events": [[22, null], [73, "events"], [115, "events"], [211, "events"]], "Events Listener": [[169, null]], "Events types": [[169, "events-types"]], "ExApp": [[170, null]], "ExApp (external app)": [[190, "exapp-external-app"]], "ExApp deployment issues": [[161, "exapp-deployment-issues"]], "ExApp development": [[151, null], [163, null]], "ExApp info.xml schema": [[165, "exapp-info-xml-schema"]], "ExApp lifecycle": [[153, null]], "ExApp lifecycle methods": [[153, "exapp-lifecycle-methods"]], "ExApp lifecycle scheme": [[153, "exapp-lifecycle-scheme"]], "ExApp metadata": [[154, "exapp-metadata"]], "ExApp overview": [[154, null]], "ExApp registration": [[165, "exapp-registration"]], "ExApp structure": [[154, "exapp-structure"]], "ExApps (Python)": [[42, "exapps-python"]], "ExApps management list of apps from App Store is empty": [[161, "exapps-management-list-of-apps-from-app-store-is-empty"]], "Example": [[43, "example"], [165, "example"], [175, "example"], [178, "example"]], "Example generic handler": [[147, "example-generic-handler"]], "Example response": [[69, "example-response"]], "Example webfinger handler": [[147, "example-webfinger-handler"]], "Examples": [[64, "examples"], [70, null], [73, "examples"], [73, "id1"], [171, "examples"], [202, "examples"]], "Examples search bodies": [[66, "examples-search-bodies"]], "ExceptionalImplementable": [[85, "exceptionalimplementable"]], "Exceptions": [[240, "exceptions"]], "Excluding files .l10nignore": [[8, "excluding-files-l10nignore"]], "Expensive post migration repair steps": [[213, "expensive-post-migration-repair-steps"]], "Expensive repair steps": [[130, "expensive-repair-steps"]], "Expose capabilities": [[49, "expose-capabilities"]], "Exposing actions via capability": [[43, "exposing-actions-via-capability"]], "Extend link preview support": [[129, "extend-link-preview-support"]], "Extend the Smart Picker": [[129, "extend-the-smart-picker"]], "Extending core parts": [[25, "extending-core-parts"]], "Extending the DAV server": [[2, null]], "Extending the \u201cnew\u201d menu in the files app": [[25, "extending-the-new-menu-in-the-files-app"]], "External API": [[240, null]], "External search provider": [[132, "external-search-provider"]], "External storage type": [[99, "external-storage-type"]], "Extracting values from the URL": [[33, "extracting-values-from-the-url"]], "FAQ": [[10, "faq"]], "Failed to create volume": [[161, "failed-to-create-volume"]], "Federated Cloud Shares": [[52, "federated-cloud-shares"]], "Fetch a list of all set user-statuses": [[54, "fetch-a-list-of-all-set-user-statuses"]], "Fetch a result image": [[56, "fetch-a-result-image"]], "Fetch a specific user\u2019s status": [[54, "fetch-a-specific-user-s-status"]], "Fetch a task by ID": [[56, "fetch-a-task-by-id"], [57, "fetch-a-task-by-id"]], "Fetch a user\u2019s backup status": [[54, "fetch-a-user-s-backup-status"]], "Fetch ongoing data": [[50, "fetch-ongoing-data"]], "Fetch the list of predefined statuses": [[54, "fetch-the-list-of-predefined-statuses"]], "Fetch upcoming or ongoing data": [[50, "fetch-upcoming-or-ongoing-data"]], "Fetch user setting and recommendations": [[51, "fetch-user-setting-and-recommendations"]], "Fetch user-controlled recommendations": [[51, "fetch-user-controlled-recommendations"]], "Fetch your own status": [[54, "fetch-your-own-status"]], "Fetching a calendar entry": [[107, "fetching-a-calendar-entry"]], "Fetching all calendar entries": [[107, "fetching-all-calendar-entries"]], "Fetching individual search results": [[132, "fetching-individual-search-results"]], "Fetching provider IDs": [[132, "fetching-provider-ids"]], "Fetching the access rules of the calendar": [[107, "fetching-the-access-rules-of-the-calendar"]], "Fetching the name of an event": [[107, "fetching-the-name-of-an-event"]], "File": [[35, "file"]], "File Actions Menu": [[171, null]], "File bulk upload": [[62, null]], "File picker": [[76, "file-picker"]], "File request": [[52, "file-request"]], "Filenames": [[186, "filenames"]], "Files": [[73, null]], "Files API": [[234, "files-api"]], "Files Metadata": [[104, null]], "Files Sharing": [[54, "files-sharing"]], "Files and Files sharing": [[232, "files-and-files-sharing"]], "Filesystem layer": [[236, "filesystem-layer"]], "Filesystem root": [[22, "filesystem-root"]], "Filesystem scanner": [[22, "filesystem-scanner"]], "Filesystem structure": [[186, "filesystem-structure"]], "Filtering the auto-complete results": [[46, "filtering-the-auto-complete-results"]], "Finalizing and tagging": [[204, "finalizing-and-tagging"]], "Finding bugs to triage": [[204, "finding-bugs-to-triage"]], "Finding duplicates": [[204, "finding-duplicates"]], "First steps": [[48, "first-steps"]], "Folder": [[35, "folder"]], "Font sizes": [[77, "font-sizes"], [231, "font-sizes"]], "Fonts": [[77, "fonts"]], "Force language for a given call": [[46, "force-language-for-a-given-call"]], "Formattable text area": [[76, "formattable-text-area"]], "Forums": [[207, "forums"]], "Foundations": [[77, null]], "Frequently Asked Questions": [[162, null]], "Front controller": [[32, "front-controller"]], "Front-end": [[24, null], [167, "front-end"]], "Front-end changes": [[215, "front-end-changes"], [216, "front-end-changes"], [217, "front-end-changes"], [218, "front-end-changes"], [219, "front-end-changes"], [220, "front-end-changes"], [221, "front-end-changes"], [223, "front-end-changes"], [224, "front-end-changes"], [226, "front-end-changes"], [227, "front-end-changes"], [228, "front-end-changes"], [229, "front-end-changes"], [230, "front-end-changes"], [231, "front-end-changes"], [232, "front-end-changes"], [233, "front-end-changes"], [234, "front-end-changes"]], "Front-end code": [[239, null]], "Frontend": [[154, "frontend"]], "Frontend and build tools": [[190, "frontend-and-build-tools"]], "Frontend routing": [[154, "frontend-routing"]], "Functions": [[186, "functions"]], "Further reading": [[69, "further-reading"], [243, "further-reading"]], "GET request": [[112, "get-request"]], "GPU support": [[159, null]], "GPUs scaling": [[160, "gpus-scaling"]], "Gather information about server setup": [[189, "gather-information-about-server-setup"]], "General": [[74, null], [185, "general"], [186, "general"], [215, "general"], [223, "general"], [225, "general"], [226, "general"], [227, "general"], [228, "general"], [228, "id1"], [229, "general"], [230, "general"], [231, "general"], [233, "general"]], "General color variables": [[194, "general-color-variables"]], "General considerations": [[204, "general-considerations"]], "General rules": [[81, "general-rules"]], "General rules and advice": [[186, "general-rules-and-advice"]], "General web development terms": [[190, "general-web-development-terms"]], "Generate a Snowflake ID": [[136, "generate-a-snowflake-id"]], "Generate the specification": [[49, "generate-the-specification"]], "Generating URLs": [[25, "generating-urls"]], "Generating a token if Nextcloud is the provider": [[119, "generating-a-token-if-nextcloud-is-the-provider"]], "Generic Build Instructions": [[82, "generic-build-instructions"]], "Generic Errors": [[74, "generic-errors"]], "Get ExApp enabled status": [[170, "get-exapp-enabled-status"]], "Get ExApps list": [[170, "get-exapps-list"]], "Get Nextcloud URL": [[170, "get-nextcloud-url"]], "Get Shares from a specific file or folder": [[52, "get-shares-from-a-specific-file-or-folder"]], "Get a unique tag for one event version": [[107, "get-a-unique-tag-for-one-event-version"]], "Get all Shares": [[52, "get-all-shares"]], "Get app config values": [[168, "get-app-config-values"]], "Get available task types": [[57, "get-available-task-types"]], "Get available translation options": [[58, "get-available-translation-options"]], "Get content of a calendar event": [[107, "get-content-of-a-calendar-event"]], "Get data and metadata from a document": [[48, "get-data-and-metadata-from-a-document"]], "Get groups of calendar": [[107, "get-groups-of-calendar"]], "Get information about a known Federated Cloud Share": [[52, "get-information-about-a-known-federated-cloud-share"]], "Get information about a known Share": [[52, "get-information-about-a-known-share"]], "Get list of NC users": [[182, "get-list-of-nc-users"]], "Get the app": [[125, "get-the-app"]], "Get the country code for a region": [[123, "get-the-country-code-for-a-region"]], "Get the provider list": [[129, "get-the-provider-list"]], "Get the share resources for a given file or folder": [[70, "get-the-share-resources-for-a-given-file-or-folder"]], "Get the source": [[189, "get-the-source"]], "Get user config values": [[177, "get-user-config-values"]], "Getting PHPUnit": [[243, "getting-phpunit"]], "Getting access": [[38, "getting-access"]], "Getting data from the backend using AJAX requests": [[20, "getting-data-from-the-backend-using-ajax-requests"]], "Getting help": [[122, "getting-help"], [209, "getting-help"]], "Getting properties for just the folder": [[61, "getting-properties-for-just-the-folder"]], "Getting request parameters": [[20, "getting-request-parameters"]], "Getting started": [[191, null]], "Getting the last modification time stamp": [[107, "getting-the-last-modification-time-stamp"]], "Getting the login token": [[119, "getting-the-login-token"]], "Getting the modification timestamp": [[107, "getting-the-modification-timestamp"]], "Getting the owner of a calendar": [[107, "getting-the-owner-of-a-calendar"]], "Getting the privileges associated with the calendar": [[107, "getting-the-privileges-associated-with-the-calendar"]], "Getting the properties": [[107, "getting-the-properties"]], "Git branch management": [[16, "git-branch-management"]], "GitHub Actions": [[15, "github-actions"]], "Global Middlewares": [[30, "global-middlewares"]], "Global variables": [[115, "global-variables"]], "Glossary": [[150, "glossary"], [190, null]], "GroupManager": [[22, "groupmanager"]], "Groupware & Workflows": [[111, null]], "Groupware integration": [[109, null]], "Guidelines": [[42, "guidelines"]], "HEAD request": [[112, "head-request"]], "HTML": [[184, "html"]], "HTML elements": [[195, null]], "HTML-based Responses": [[20, "html-based-responses"]], "HTML/CSS guidelines": [[197, null]], "HTTP 401 for invalid username/password": [[223, "http-401-for-invalid-username-password"]], "HTTP API": [[101, "http-api"]], "HTTP Client": [[112, null]], "HTTP status codes": [[69, "http-status-codes"]], "Handle exceptions": [[49, "handle-exceptions"]], "Handler registration": [[147, "handler-registration"]], "Handling DAV events": [[2, "handling-dav-events"]], "Handling errors": [[20, "handling-errors"]], "Handling iMIP data": [[107, "handling-imip-data"]], "Handling search requests": [[132, "handling-search-requests"]], "Handling settings storage": [[99, "handling-settings-storage"]], "Handling the dependencies": [[82, "handling-the-dependencies"]], "Healthcheck": [[153, "healthcheck"]], "Heartbeat": [[153, "heartbeat"], [166, "heartbeat"]], "Heavy load and time insensitive": [[18, "heavy-load-and-time-insensitive"]], "Help and communication": [[207, null]], "High level overview": [[236, "high-level-overview"]], "Highlighted counter": [[199, "highlighted-counter"]], "Historical options": [[131, "historical-options"]], "Hooks": [[22, "hooks"], [43, "hooks"]], "How code signing affects apps in the app store": [[10, "how-code-signing-affects-apps-in-the-app-store"]], "How do you triage bugs": [[204, "how-do-you-triage-bugs"]], "How does auto-wiring work": [[21, "how-does-auto-wiring-work"]], "How does it affect the request lifecycle": [[21, "how-does-it-affect-the-request-lifecycle"]], "How does this affect controllers": [[21, "how-does-this-affect-controllers"]], "How the container works": [[21, "how-the-container-works"]], "How to deal with interface and primitive type parameters": [[21, "how-to-deal-with-interface-and-primitive-type-parameters"]], "How to enable GPU support for the Deploy daemon?": [[159, "how-to-enable-gpu-support-for-the-deploy-daemon"]], "How to enable it": [[21, "how-to-enable-it"]], "How to get your app signed": [[10, "how-to-get-your-app-signed"]], "How to limit the number of GPUs per ExApp?": [[159, "how-to-limit-the-number-of-gpus-per-exapp"]], "How to move": [[14, "how-to-move"]], "How to test \u2026": [[192, null]], "How to troubleshoot networking issues?": [[161, "how-to-troubleshoot-networking-issues"]], "How to use a private Docker container registry with authentication?": [[157, "how-to-use-a-private-docker-container-registry-with-authentication"]], "How web requests work in Nextcloud": [[190, "how-web-requests-work-in-nextcloud"]], "How will it work?": [[202, "how-will-it-work"]], "Hybrid Distribution": [[16, "hybrid-distribution"]], "IE11 removal": [[223, "ie11-removal"]], "Icons": [[27, "icons"], [77, "icons"], [196, null]], "Icons should be outlined": [[233, "icons-should-be-outlined"]], "Identifying errors": [[98, "identifying-errors"]], "Ignore certain endpoints": [[49, "ignore-certain-endpoints"]], "Ignoring deadlocks": [[97, "ignoring-deadlocks"]], "Image Pulling (Docker)": [[166, "image-pulling-docker"]], "Images": [[129, "images"]], "Implement a new exporter": [[120, "implement-a-new-exporter"]], "Implementable, Dispatchable and Throwable": [[85, "implementable-dispatchable-and-throwable"]], "Implementation notes": [[101, "implementation-notes"]], "Implementing a Speech-To-Text provider": [[137, "implementing-a-speech-to-text-provider"]], "Implementing a TaskProcessing provider": [[140, "implementing-a-taskprocessing-provider"]], "Implementing a Text-To-Image provider": [[141, "implementing-a-text-to-image-provider"]], "Implementing a TextProcessing provider": [[142, "implementing-a-textprocessing-provider"]], "Implementing a Translation provider": [[116, "implementing-a-translation-provider"]], "Implementing a content provider for Context Chat": [[94, "implementing-a-content-provider-for-context-chat"]], "Implementing a filter": [[69, "implementing-a-filter"]], "Implementing a provider": [[69, "implementing-a-provider"]], "Implementing a setting": [[69, "implementing-a-setting"]], "Implementing a simple two-factor auth provider": [[144, "implementing-a-simple-two-factor-auth-provider"]], "Implementing a storage": [[38, "implementing-a-storage"]], "Implementing an API called from a public share page": [[128, "implementing-an-api-called-from-a-public-share-page"]], "Implementing an advanced TaskProcessing provider": [[140, "implementing-an-advanced-taskprocessing-provider"]], "Implementing an authenticated public page": [[128, "implementing-an-authenticated-public-page"]], "Implementing the ContentProviderRegisterEvent event": [[94, "implementing-the-contentproviderregisterevent-event"]], "Improving your translations": [[42, "improving-your-translations"]], "In Place of a Conclusion": [[149, "in-place-of-a-conclusion"]], "In-memory cache": [[19, "in-memory-cache"]], "Including CSS and JavaScript": [[26, "including-css-and-javascript"]], "Including images": [[26, "including-images"]], "Including templates": [[26, "including-templates"]], "Indentation": [[186, "indentation"]], "Indexed values": [[93, "indexed-values"]], "Init": [[153, "init"], [166, "init"]], "Init the library": [[70, "init-the-library"]], "Initialization events": [[6, "initialization-events"]], "Initializing the collection": [[48, "initializing-the-collection"]], "Inline attachments": [[103, "inline-attachments"]], "Input and output shapes": [[140, "input-and-output-shapes"]], "Input fields": [[76, "input-fields"]], "Install AppAPI": [[149, "install-appapi"]], "Installing Node JS": [[243, "installing-node-js"]], "Installing the apps": [[48, "installing-the-apps"]], "Integrating the assistant": [[87, null]], "Integration of custom calendar providers": [[107, null]], "Integration test example": [[152, "integration-test-example"]], "Interactive commands": [[1, "interactive-commands"]], "Interactive widgets": [[129, "interactive-widgets"]], "Interface": [[190, "interface"]], "Internal changes": [[215, "internal-changes"]], "Internal storage type": [[99, "internal-storage-type"]], "Internal task types": [[140, "internal-task-types"]], "Introduction": [[7, null], [20, "introduction"], [21, "introduction"], [62, "introduction"], [63, "introduction"], [79, null], [150, null], [198, "introduction"], [199, null], [199, "id1"], [199, "id2"], [199, "id4"], [202, "introduction"], [240, "introduction"]], "Is code signing mandatory for apps?": [[10, "is-code-signing-mandatory-for-apps"]], "Issues/Bugs": [[43, "issues-bugs"]], "JSON": [[20, "json"], [190, "json"]], "JSON parameters": [[20, "json-parameters"]], "JavaScript": [[25, null], [27, "javascript"], [209, "javascript"]], "JavaScript / TypeScript": [[42, "javascript-typescript"]], "JavaScript / TypeScript / Vue": [[42, "javascript-typescript-vue"]], "JavaScript APIs": [[115, null]], "JavaScript and Typescript": [[186, null]], "JavaScript unit testing for server": [[243, "javascript-unit-testing-for-server"]], "Keep the code up-to-date": [[189, "keep-the-code-up-to-date"]], "Key integration considerations": [[152, "key-integration-considerations"]], "Keyboard shortcuts": [[25, "keyboard-shortcuts"]], "L10n translations": [[154, "l10n-translations"]], "LDAP factory availability": [[223, "ldap-factory-availability"]], "LLM Prompts and multilingual I/O": [[140, "llm-prompts-and-multilingual-i-o"]], "Labels": [[185, "labels"]], "Language of other users": [[42, "language-of-other-users"]], "Language tuple structure": [[58, "language-tuple-structure"]], "Last version with database.xml support and migration": [[222, "last-version-with-database-xml-support-and-migration"]], "Layout": [[80, null]], "Lazy Loading": [[93, "lazy-loading"]], "Lazy loading": [[90, "lazy-loading"]], "Legacy access to the Sabre classes": [[107, "legacy-access-to-the-sabre-classes"]], "Legal and security": [[14, "legal-and-security"]], "Lexicon": [[92, null]], "Library installation": [[72, null]], "License headers": [[185, "license-headers"]], "Line height": [[231, "line-height"]], "Linking a collection to a user account": [[48, "linking-a-collection-to-a-user-account"]], "Linting": [[95, "linting"]], "List accepted Federated Cloud Shares": [[52, "list-accepted-federated-cloud-shares"]], "List editors and creators": [[101, "list-editors-and-creators"]], "List item": [[76, "list-item"]], "List of available icons": [[196, "list-of-available-icons"]], "List pending Federated Cloud Shares": [[52, "list-pending-federated-cloud-shares"]], "List tasks by App": [[56, "list-tasks-by-app"]], "List templates": [[101, "list-templates"]], "Listener callbacks": [[22, "listener-callbacks"]], "Listener classes": [[22, "listener-classes"]], "Listening to events": [[121, "listening-to-events"]], "Listening to log events": [[29, "listening-to-log-events"]], "Listening to the image generation events": [[141, "listening-to-the-image-generation-events"]], "Listening to the task processing events": [[140, "listening-to-the-task-processing-events"]], "Listening to the text processing events": [[142, "listening-to-the-text-processing-events"]], "Listening to the transcription events": [[137, "listening-to-the-transcription-events"]], "Listing favorites": [[61, "listing-favorites"]], "Listing folders (rfc4918)": [[61, "listing-folders-rfc4918"]], "Listing the trashbin content": [[67, "listing-the-trashbin-content"]], "Listing the versions of a file": [[68, "listing-the-versions-of-a-file"]], "Live & Background Events": [[104, "live-background-events"]], "Loading initial state": [[25, "loading-initial-state"]], "Local Shares": [[52, "local-shares"]], "Local cache": [[19, "local-cache"]], "Log format": [[223, "log-format"]], "Log level mapping": [[29, "log-level-mapping"]], "Logging": [[29, null], [151, "logging"], [173, null]], "Logging exceptions": [[29, "logging-exceptions"]], "Logical position CSS rules": [[232, "logical-position-css-rules"]], "Login Flow": [[44, null]], "Login flow v2": [[44, "login-flow-v2"]], "Login in the user": [[44, "login-in-the-user"]], "Login name vs. email login": [[44, "login-name-vs-email-login"]], "Long transactions": [[122, "long-transactions"]], "Loosening the default restrictions": [[20, "loosening-the-default-restrictions"]], "Losing a rating": [[14, "losing-a-rating"]], "Machine Translation": [[116, null]], "Mail Provider Interface": [[110, null]], "Main content": [[193, null]], "Maintainers": [[12, null], [207, "maintainers"]], "Maintenance Mode": [[74, "maintenance-mode"]], "Major update": [[16, "major-update"]], "Make Requests to ExApps": [[170, "make-requests-to-exapps"]], "Make a provider activatable by the admin (optional)": [[144, "make-a-provider-activatable-by-the-admin-optional"]], "Make a provider deactivatable by the admin (optional)": [[144, "make-a-provider-deactivatable-by-the-admin-optional"]], "Makefile": [[154, "makefile"]], "Makefile changes for code signing": [[15, "makefile-changes-for-code-signing"]], "Making requests in JavaScript": [[61, "making-requests-in-javascript"]], "Making search requests": [[66, "making-search-requests"]], "Managing config keys": [[90, "managing-config-keys"], [93, "managing-config-keys"]], "Managing the access to the calendar \u2013 IACL": [[107, "managing-the-access-to-the-calendar-iacl"]], "Manual Backport": [[188, "manual-backport"]], "Manual install": [[167, "manual-install"]], "Manual install for development": [[165, "manual-install-for-development"]], "Manual translation": [[8, "manual-translation"]], "Manual translations": [[167, "manual-translations"]], "Mapper": [[190, "mapper"]], "Mappers": [[37, "mappers"]], "Match links": [[129, "match-links"]], "Matching subURLs": [[33, "matching-suburls"]], "Material design icons": [[196, "material-design-icons"]], "Measuring performance": [[122, "measuring-performance"]], "Menu": [[199, "menu"]], "Merging activities": [[69, "merging-activities"]], "Message interpolation": [[29, "message-interpolation"]], "Messages: editor page \u2192 native client": [[101, "messages-editor-page-native-client"]], "Metadata Query Helper": [[104, "metadata-query-helper"]], "Method 1: Edit PHP CLI php.ini File": [[156, "method-1-edit-php-cli-php-ini-file"]], "Method 2: Set System-Wide Environment Variables": [[156, "method-2-set-system-wide-environment-variables"]], "Methods": [[143, "methods"]], "Middlewares": [[30, null]], "Migration": [[190, "migration"]], "Migration commands": [[223, "migration-commands"]], "Migration from PHPDoc annotations to native PHP attributes": [[227, "migration-from-phpdoc-annotations-to-native-php-attributes"]], "Migrations": [[40, null]], "Migrations and Metadata": [[40, "migrations-and-metadata"]], "Minor updates": [[16, "minor-updates"]], "Miscellaneous": [[90, "miscellaneous"], [93, "miscellaneous"]], "Miscellaneous OCS APIs": [[182, null]], "Miscellaneous responses": [[20, "miscellaneous-responses"]], "Mitigations": [[97, "mitigations"]], "Modals": [[76, "modals"]], "Modify out-of-office data": [[50, "modify-out-of-office-data"]], "Modifying the CORS headers": [[131, "modifying-the-cors-headers"]], "Modifying the content security policy": [[20, "modifying-the-content-security-policy"]], "Modifying users": [[146, "modifying-users"]], "Monetizing your app": [[13, null]], "Mount": [[236, "mount"]], "Move a file or folder": [[70, "move-a-file-or-folder"]], "Moving files and folders (rfc4918)": [[61, "moving-files-and-folders-rfc4918"]], "Moving your repo to the Nextcloud organization": [[14, "moving-your-repo-to-the-nextcloud-organization"]], "NPM": [[118, null]], "Names, pronouns, and gender": [[81, "names-pronouns-and-gender"]], "Namespace": [[190, "namespace"]], "Naming and casing": [[186, "naming-and-casing"]], "Naming convention": [[184, "naming-convention"]], "Naming conventions": [[36, "naming-conventions"]], "Naming scheme": [[22, "naming-scheme"]], "Navigation": [[76, "navigation"]], "Navigation and pre-app configuration": [[6, null]], "Navigation styling revisions": [[235, "navigation-styling-revisions"]], "NcReferencePickerModal": [[129, "ncreferencepickermodal"]], "NcReferenceWidget": [[129, "ncreferencewidget"]], "NcRichContenteditable": [[129, "ncrichcontenteditable"]], "NcRichText": [[129, "ncrichtext"]], "Network state changes": [[115, "network-state-changes"]], "New APIs": [[219, "new-apis"], [220, "new-apis"]], "New button": [[199, "new-button"]], "New deprecations": [[211, "new-deprecations"]], "New in this release": [[213, null]], "Nextcloud": [[190, "nextcloud"]], "Nextcloud 20 and later": [[0, "nextcloud-20-and-later"]], "Nextcloud AIO": [[158, "nextcloud-aio"]], "Nextcloud Android library": [[71, "nextcloud-android-library"]], "Nextcloud AppAPI DSP": [[158, "nextcloud-appapi-dsp"]], "Nextcloud Flow": [[105, null]], "Nextcloud architecture": [[237, null]], "Nextcloud bug triaging": [[204, null]], "Nextcloud developer documentation": [[201, null]], "Nextcloud filesystem API": [[38, null], [236, null]], "Nextcloud-side ExApp lifecycle methods": [[153, "nextcloud-side-exapp-lifecycle-methods"]], "Nextcloud-specific terms": [[190, "nextcloud-specific-terms"]], "Nightly releases": [[16, "nightly-releases"]], "No space between function name and parameters": [[186, "id8"]], "Node": [[236, "node"]], "Node API": [[38, "node-api"]], "Node Events": [[169, "node-events"]], "Node.js upgrade": [[223, "node-js-upgrade"]], "Not open source anymore?": [[10, "not-open-source-anymore"]], "Note card": [[76, "note-card"]], "Notifications": [[46, "notifications"], [117, null], [174, null]], "OC \u2013 internal APIs": [[115, "oc-internal-apis"]], "OCA \u2013 App APIs": [[115, "oca-app-apis"]], "OCA\\DAV\\Events\\SabrePluginAddEvent": [[22, "oca-dav-events-sabrepluginaddevent"]], "OCC Command": [[175, null]], "OCP event dispatcher": [[22, "ocp-event-dispatcher"]], "OCP \u2013 Public APIs": [[115, "ocp-public-apis"]], "OCP\\Accounts\\UserUpdatedEvent": [[17, null], [22, "ocp-accounts-userupdatedevent"]], "OCP\\AppFramework\\Http\\Events\\BeforeLoginTemplateRenderedEvent": [[17, "ocp-appframework-http-events-beforelogintemplaterenderedevent"], [22, "ocp-appframework-http-events-beforelogintemplaterenderedevent"]], "OCP\\AppFramework\\Http\\Events\\BeforeTemplateRenderedEvent": [[17, "ocp-appframework-http-events-beforetemplaterenderedevent"], [22, "ocp-appframework-http-events-beforetemplaterenderedevent"]], "OCP\\App\\Events\\AppDisableEvent": [[17, "ocp-app-events-appdisableevent"], [22, "ocp-app-events-appdisableevent"]], "OCP\\App\\Events\\AppEnableEvent": [[17, "ocp-app-events-appenableevent"], [22, "ocp-app-events-appenableevent"]], "OCP\\App\\Events\\AppUpdateEvent": [[17, "ocp-app-events-appupdateevent"], [22, "ocp-app-events-appupdateevent"]], "OCP\\App\\ManagerEvent": [[17, "ocp-app-managerevent"], [22, "ocp-app-managerevent"]], "OCP\\Authentication\\Events\\AnyLoginFailedEvent": [[17, "ocp-authentication-events-anyloginfailedevent"], [22, "ocp-authentication-events-anyloginfailedevent"]], "OCP\\Authentication\\Events\\LoginFailedEvent": [[17, "ocp-authentication-events-loginfailedevent"], [22, "ocp-authentication-events-loginfailedevent"]], "OCP\\Authentication\\Events\\TokenInvalidatedEvent": [[17, "ocp-authentication-events-tokeninvalidatedevent"], [22, "ocp-authentication-events-tokeninvalidatedevent"]], "OCP\\Authentication\\TwoFactorAuth\\RegistryEvent": [[17, "ocp-authentication-twofactorauth-registryevent"], [22, "ocp-authentication-twofactorauth-registryevent"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengeFailed": [[17, "ocp-authentication-twofactorauth-twofactorproviderchallengefailed"], [22, "ocp-authentication-twofactorauth-twofactorproviderchallengefailed"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengePassed": [[17, "ocp-authentication-twofactorauth-twofactorproviderchallengepassed"], [22, "ocp-authentication-twofactorauth-twofactorproviderchallengepassed"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderDisabled": [[17, "ocp-authentication-twofactorauth-twofactorproviderdisabled"], [22, "ocp-authentication-twofactorauth-twofactorproviderdisabled"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserDisabled": [[17, "ocp-authentication-twofactorauth-twofactorproviderforuserdisabled"], [22, "ocp-authentication-twofactorauth-twofactorproviderforuserdisabled"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserEnabled": [[17, "ocp-authentication-twofactorauth-twofactorproviderforuserenabled"], [22, "ocp-authentication-twofactorauth-twofactorproviderforuserenabled"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserRegistered": [[17, "ocp-authentication-twofactorauth-twofactorproviderforuserregistered"], [22, "ocp-authentication-twofactorauth-twofactorproviderforuserregistered"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserUnregistered": [[17, "ocp-authentication-twofactorauth-twofactorproviderforuserunregistered"], [22, "ocp-authentication-twofactorauth-twofactorproviderforuserunregistered"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderUserDeleted": [[17, "ocp-authentication-twofactorauth-twofactorprovideruserdeleted"], [22, "ocp-authentication-twofactorauth-twofactorprovideruserdeleted"]], "OCP\\BeforeSabrePubliclyLoadedEvent": [[17, "ocp-beforesabrepubliclyloadedevent"], [22, "ocp-beforesabrepubliclyloadedevent"]], "OCP\\Calendar\\Events\\CalendarObjectCreatedEvent": [[17, "ocp-calendar-events-calendarobjectcreatedevent"], [22, "ocp-calendar-events-calendarobjectcreatedevent"]], "OCP\\Calendar\\Events\\CalendarObjectDeletedEvent": [[17, "ocp-calendar-events-calendarobjectdeletedevent"], [22, "ocp-calendar-events-calendarobjectdeletedevent"]], "OCP\\Calendar\\Events\\CalendarObjectMovedEvent": [[17, "ocp-calendar-events-calendarobjectmovedevent"], [22, "ocp-calendar-events-calendarobjectmovedevent"]], "OCP\\Calendar\\Events\\CalendarObjectMovedToTrashEvent": [[17, "ocp-calendar-events-calendarobjectmovedtotrashevent"], [22, "ocp-calendar-events-calendarobjectmovedtotrashevent"]], "OCP\\Calendar\\Events\\CalendarObjectRestoredEvent": [[17, "ocp-calendar-events-calendarobjectrestoredevent"], [22, "ocp-calendar-events-calendarobjectrestoredevent"]], "OCP\\Calendar\\Events\\CalendarObjectUpdatedEvent": [[17, "ocp-calendar-events-calendarobjectupdatedevent"], [22, "ocp-calendar-events-calendarobjectupdatedevent"]], "OCP\\Collaboration\\AutoComplete\\AutoCompleteEvent": [[17, "ocp-collaboration-autocomplete-autocompleteevent"], [22, "ocp-collaboration-autocomplete-autocompleteevent"]], "OCP\\Collaboration\\AutoComplete\\AutoCompleteFilterEvent": [[17, "ocp-collaboration-autocomplete-autocompletefilterevent"], [22, "ocp-collaboration-autocomplete-autocompletefilterevent"]], "OCP\\Collaboration\\Reference\\RenderReferenceEvent": [[17, "ocp-collaboration-reference-renderreferenceevent"], [22, "ocp-collaboration-reference-renderreferenceevent"]], "OCP\\Collaboration\\Resources\\LoadAdditionalScriptsEvent": [[17, "ocp-collaboration-resources-loadadditionalscriptsevent"], [22, "ocp-collaboration-resources-loadadditionalscriptsevent"]], "OCP\\Comments\\CommentsEntityEvent": [[17, "ocp-comments-commentsentityevent"], [22, "ocp-comments-commentsentityevent"]], "OCP\\Comments\\CommentsEvent": [[17, "ocp-comments-commentsevent"], [22, "ocp-comments-commentsevent"]], "OCP\\Config\\BeforePreferenceDeletedEvent": [[17, "ocp-config-beforepreferencedeletedevent"], [22, "ocp-config-beforepreferencedeletedevent"]], "OCP\\Config\\BeforePreferenceSetEvent": [[17, "ocp-config-beforepreferencesetevent"], [22, "ocp-config-beforepreferencesetevent"]], "OCP\\Console\\ConsoleEvent": [[17, "ocp-console-consoleevent"], [22, "ocp-console-consoleevent"]], "OCP\\Contacts\\Events\\ContactInteractedWithEvent": [[17, "ocp-contacts-events-contactinteractedwithevent"], [22, "ocp-contacts-events-contactinteractedwithevent"]], "OCP\\DB\\Events\\AddMissingColumnsEvent": [[17, "ocp-db-events-addmissingcolumnsevent"], [22, "ocp-db-events-addmissingcolumnsevent"]], "OCP\\DB\\Events\\AddMissingIndicesEvent": [[17, "ocp-db-events-addmissingindicesevent"], [22, "ocp-db-events-addmissingindicesevent"]], "OCP\\DB\\Events\\AddMissingPrimaryKeyEvent": [[17, "ocp-db-events-addmissingprimarykeyevent"], [22, "ocp-db-events-addmissingprimarykeyevent"]], "OCP\\DirectEditing\\RegisterDirectEditorEvent": [[17, "ocp-directediting-registerdirecteditorevent"], [22, "ocp-directediting-registerdirecteditorevent"]], "OCP\\EventDispatcher\\GenericEvent": [[17, "ocp-eventdispatcher-genericevent"], [22, "ocp-eventdispatcher-genericevent"]], "OCP\\Federation\\Events\\TrustedServerRemovedEvent": [[17, "ocp-federation-events-trustedserverremovedevent"], [22, "ocp-federation-events-trustedserverremovedevent"]], "OCP\\FilesMetadata\\Event\\MetadataBackgroundEvent": [[17, "ocp-filesmetadata-event-metadatabackgroundevent"], [22, "ocp-filesmetadata-event-metadatabackgroundevent"]], "OCP\\FilesMetadata\\Event\\MetadataLiveEvent": [[17, "ocp-filesmetadata-event-metadataliveevent"], [22, "ocp-filesmetadata-event-metadataliveevent"]], "OCP\\FilesMetadata\\Event\\MetadataNamedEvent": [[17, "ocp-filesmetadata-event-metadatanamedevent"], [22, "ocp-filesmetadata-event-metadatanamedevent"]], "OCP\\Files\\Cache\\AbstractCacheEvent": [[17, "ocp-files-cache-abstractcacheevent"], [22, "ocp-files-cache-abstractcacheevent"]], "OCP\\Files\\Cache\\CacheEntryInsertedEvent": [[17, "ocp-files-cache-cacheentryinsertedevent"], [22, "ocp-files-cache-cacheentryinsertedevent"]], "OCP\\Files\\Cache\\CacheEntryRemovedEvent": [[17, "ocp-files-cache-cacheentryremovedevent"], [22, "ocp-files-cache-cacheentryremovedevent"]], "OCP\\Files\\Cache\\CacheEntryUpdatedEvent": [[17, "ocp-files-cache-cacheentryupdatedevent"], [22, "ocp-files-cache-cacheentryupdatedevent"]], "OCP\\Files\\Cache\\CacheInsertEvent": [[17, "ocp-files-cache-cacheinsertevent"], [22, "ocp-files-cache-cacheinsertevent"]], "OCP\\Files\\Cache\\CacheUpdateEvent": [[17, "ocp-files-cache-cacheupdateevent"], [22, "ocp-files-cache-cacheupdateevent"]], "OCP\\Files\\Config\\Event\\UserMountAddedEvent": [[17, "ocp-files-config-event-usermountaddedevent"], [22, "ocp-files-config-event-usermountaddedevent"]], "OCP\\Files\\Config\\Event\\UserMountRemovedEvent": [[17, "ocp-files-config-event-usermountremovedevent"], [22, "ocp-files-config-event-usermountremovedevent"]], "OCP\\Files\\Config\\Event\\UserMountUpdatedEvent": [[17, "ocp-files-config-event-usermountupdatedevent"], [22, "ocp-files-config-event-usermountupdatedevent"]], "OCP\\Files\\Events\\BeforeDirectFileDownloadEvent": [[17, "ocp-files-events-beforedirectfiledownloadevent"], [22, "ocp-files-events-beforedirectfiledownloadevent"]], "OCP\\Files\\Events\\BeforeFileScannedEvent": [[17, "ocp-files-events-beforefilescannedevent"], [22, "ocp-files-events-beforefilescannedevent"]], "OCP\\Files\\Events\\BeforeFileSystemSetupEvent": [[17, "ocp-files-events-beforefilesystemsetupevent"], [22, "ocp-files-events-beforefilesystemsetupevent"]], "OCP\\Files\\Events\\BeforeFolderScannedEvent": [[17, "ocp-files-events-beforefolderscannedevent"], [22, "ocp-files-events-beforefolderscannedevent"]], "OCP\\Files\\Events\\BeforeZipCreatedEvent": [[17, "ocp-files-events-beforezipcreatedevent"], [22, "ocp-files-events-beforezipcreatedevent"]], "OCP\\Files\\Events\\FileCacheUpdated": [[17, "ocp-files-events-filecacheupdated"], [22, "ocp-files-events-filecacheupdated"]], "OCP\\Files\\Events\\FileScannedEvent": [[17, "ocp-files-events-filescannedevent"], [22, "ocp-files-events-filescannedevent"]], "OCP\\Files\\Events\\FolderScannedEvent": [[17, "ocp-files-events-folderscannedevent"], [22, "ocp-files-events-folderscannedevent"]], "OCP\\Files\\Events\\InvalidateMountCacheEvent": [[17, "ocp-files-events-invalidatemountcacheevent"], [22, "ocp-files-events-invalidatemountcacheevent"]], "OCP\\Files\\Events\\NodeAddedToCache": [[17, "ocp-files-events-nodeaddedtocache"], [22, "ocp-files-events-nodeaddedtocache"]], "OCP\\Files\\Events\\NodeAddedToFavorite": [[17, "ocp-files-events-nodeaddedtofavorite"], [22, "ocp-files-events-nodeaddedtofavorite"]], "OCP\\Files\\Events\\NodeRemovedFromCache": [[17, "ocp-files-events-noderemovedfromcache"], [22, "ocp-files-events-noderemovedfromcache"]], "OCP\\Files\\Events\\NodeRemovedFromFavorite": [[17, "ocp-files-events-noderemovedfromfavorite"], [22, "ocp-files-events-noderemovedfromfavorite"]], "OCP\\Files\\Events\\Node\\BeforeNodeCopiedEvent": [[17, "ocp-files-events-node-beforenodecopiedevent"], [22, "ocp-files-events-node-beforenodecopiedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeCreatedEvent": [[17, "ocp-files-events-node-beforenodecreatedevent"], [22, "ocp-files-events-node-beforenodecreatedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeDeletedEvent": [[17, "ocp-files-events-node-beforenodedeletedevent"], [22, "ocp-files-events-node-beforenodedeletedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeReadEvent": [[17, "ocp-files-events-node-beforenodereadevent"], [22, "ocp-files-events-node-beforenodereadevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeRenamedEvent": [[17, "ocp-files-events-node-beforenoderenamedevent"], [22, "ocp-files-events-node-beforenoderenamedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeTouchedEvent": [[17, "ocp-files-events-node-beforenodetouchedevent"], [22, "ocp-files-events-node-beforenodetouchedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeWrittenEvent": [[17, "ocp-files-events-node-beforenodewrittenevent"], [22, "ocp-files-events-node-beforenodewrittenevent"]], "OCP\\Files\\Events\\Node\\FilesystemTornDownEvent": [[17, "ocp-files-events-node-filesystemtorndownevent"], [22, "ocp-files-events-node-filesystemtorndownevent"]], "OCP\\Files\\Events\\Node\\NodeCopiedEvent": [[17, "ocp-files-events-node-nodecopiedevent"], [22, "ocp-files-events-node-nodecopiedevent"]], "OCP\\Files\\Events\\Node\\NodeCreatedEvent": [[17, "ocp-files-events-node-nodecreatedevent"], [22, "ocp-files-events-node-nodecreatedevent"]], "OCP\\Files\\Events\\Node\\NodeDeletedEvent": [[17, "ocp-files-events-node-nodedeletedevent"], [22, "ocp-files-events-node-nodedeletedevent"]], "OCP\\Files\\Events\\Node\\NodeRenamedEvent": [[17, "ocp-files-events-node-noderenamedevent"], [22, "ocp-files-events-node-noderenamedevent"]], "OCP\\Files\\Events\\Node\\NodeTouchedEvent": [[17, "ocp-files-events-node-nodetouchedevent"], [22, "ocp-files-events-node-nodetouchedevent"]], "OCP\\Files\\Events\\Node\\NodeWrittenEvent": [[17, "ocp-files-events-node-nodewrittenevent"], [22, "ocp-files-events-node-nodewrittenevent"]], "OCP\\Files\\ObjectStore\\Events\\BucketCreatedEvent": [[17, "ocp-files-objectstore-events-bucketcreatedevent"], [22, "ocp-files-objectstore-events-bucketcreatedevent"]], "OCP\\Files\\Template\\BeforeGetTemplatesEvent": [[17, "ocp-files-template-beforegettemplatesevent"], [22, "ocp-files-template-beforegettemplatesevent"]], "OCP\\Files\\Template\\FileCreatedFromTemplateEvent": [[17, "ocp-files-template-filecreatedfromtemplateevent"], [22, "ocp-files-template-filecreatedfromtemplateevent"]], "OCP\\Files\\Template\\RegisterTemplateCreatorEvent": [[17, "ocp-files-template-registertemplatecreatorevent"], [22, "ocp-files-template-registertemplatecreatorevent"]], "OCP\\Group\\Events\\BeforeGroupChangedEvent": [[17, "ocp-group-events-beforegroupchangedevent"], [22, "ocp-group-events-beforegroupchangedevent"]], "OCP\\Group\\Events\\BeforeGroupCreatedEvent": [[17, "ocp-group-events-beforegroupcreatedevent"], [22, "ocp-group-events-beforegroupcreatedevent"]], "OCP\\Group\\Events\\BeforeGroupDeletedEvent": [[17, "ocp-group-events-beforegroupdeletedevent"], [22, "ocp-group-events-beforegroupdeletedevent"]], "OCP\\Group\\Events\\BeforeUserAddedEvent": [[17, "ocp-group-events-beforeuseraddedevent"], [22, "ocp-group-events-beforeuseraddedevent"]], "OCP\\Group\\Events\\BeforeUserRemovedEvent": [[17, "ocp-group-events-beforeuserremovedevent"], [22, "ocp-group-events-beforeuserremovedevent"]], "OCP\\Group\\Events\\GroupChangedEvent": [[17, "ocp-group-events-groupchangedevent"], [22, "ocp-group-events-groupchangedevent"]], "OCP\\Group\\Events\\GroupCreatedEvent": [[17, "ocp-group-events-groupcreatedevent"], [22, "ocp-group-events-groupcreatedevent"]], "OCP\\Group\\Events\\GroupDeletedEvent": [[17, "ocp-group-events-groupdeletedevent"], [22, "ocp-group-events-groupdeletedevent"]], "OCP\\Group\\Events\\SubAdminAddedEvent": [[17, "ocp-group-events-subadminaddedevent"], [22, "ocp-group-events-subadminaddedevent"]], "OCP\\Group\\Events\\SubAdminRemovedEvent": [[17, "ocp-group-events-subadminremovedevent"], [22, "ocp-group-events-subadminremovedevent"]], "OCP\\Group\\Events\\UserAddedEvent": [[17, "ocp-group-events-useraddedevent"], [22, "ocp-group-events-useraddedevent"]], "OCP\\Group\\Events\\UserRemovedEvent": [[17, "ocp-group-events-userremovedevent"], [22, "ocp-group-events-userremovedevent"]], "OCP\\Log\\Audit\\CriticalActionPerformedEvent": [[17, "ocp-log-audit-criticalactionperformedevent"], [22, "ocp-log-audit-criticalactionperformedevent"]], "OCP\\Log\\BeforeMessageLoggedEvent": [[17, "ocp-log-beforemessageloggedevent"], [22, "ocp-log-beforemessageloggedevent"]], "OCP\\Mail\\Events\\BeforeMessageSent": [[17, "ocp-mail-events-beforemessagesent"], [22, "ocp-mail-events-beforemessagesent"]], "OCP\\Navigation\\Events\\LoadAdditionalEntriesEvent": [[17, "ocp-navigation-events-loadadditionalentriesevent"], [22, "ocp-navigation-events-loadadditionalentriesevent"]], "OCP\\OCM\\Events\\ResourceTypeRegisterEvent": [[17, "ocp-ocm-events-resourcetyperegisterevent"], [22, "ocp-ocm-events-resourcetyperegisterevent"]], "OCP\\Preview\\BeforePreviewFetchedEvent": [[17, "ocp-preview-beforepreviewfetchedevent"], [22, "ocp-preview-beforepreviewfetchedevent"]], "OCP\\Profile\\BeforeTemplateRenderedEvent": [[17, "ocp-profile-beforetemplaterenderedevent"], [22, "ocp-profile-beforetemplaterenderedevent"]], "OCP\\SabrePluginEvent": [[17, "ocp-sabrepluginevent"], [22, "ocp-sabrepluginevent"]], "OCP\\Security\\CSP\\AddContentSecurityPolicyEvent": [[17, "ocp-security-csp-addcontentsecuritypolicyevent"], [22, "ocp-security-csp-addcontentsecuritypolicyevent"]], "OCP\\Security\\Events\\GenerateSecurePasswordEvent": [[17, "ocp-security-events-generatesecurepasswordevent"], [22, "ocp-security-events-generatesecurepasswordevent"]], "OCP\\Security\\Events\\ValidatePasswordPolicyEvent": [[17, "ocp-security-events-validatepasswordpolicyevent"], [22, "ocp-security-events-validatepasswordpolicyevent"]], "OCP\\Security\\FeaturePolicy\\AddFeaturePolicyEvent": [[17, "ocp-security-featurepolicy-addfeaturepolicyevent"], [22, "ocp-security-featurepolicy-addfeaturepolicyevent"]], "OCP\\Settings\\Events\\DeclarativeSettingsGetValueEvent": [[17, "ocp-settings-events-declarativesettingsgetvalueevent"], [22, "ocp-settings-events-declarativesettingsgetvalueevent"]], "OCP\\Settings\\Events\\DeclarativeSettingsRegisterFormEvent": [[17, "ocp-settings-events-declarativesettingsregisterformevent"], [22, "ocp-settings-events-declarativesettingsregisterformevent"]], "OCP\\Settings\\Events\\DeclarativeSettingsSetValueEvent": [[17, "ocp-settings-events-declarativesettingssetvalueevent"], [22, "ocp-settings-events-declarativesettingssetvalueevent"]], "OCP\\Share\\Events\\BeforeShareCreatedEvent": [[17, "ocp-share-events-beforesharecreatedevent"], [22, "ocp-share-events-beforesharecreatedevent"]], "OCP\\Share\\Events\\BeforeShareDeletedEvent": [[17, "ocp-share-events-beforesharedeletedevent"], [22, "ocp-share-events-beforesharedeletedevent"]], "OCP\\Share\\Events\\ShareAcceptedEvent": [[17, "ocp-share-events-shareacceptedevent"], [22, "ocp-share-events-shareacceptedevent"]], "OCP\\Share\\Events\\ShareCreatedEvent": [[17, "ocp-share-events-sharecreatedevent"], [22, "ocp-share-events-sharecreatedevent"]], "OCP\\Share\\Events\\ShareDeletedEvent": [[17, "ocp-share-events-sharedeletedevent"], [22, "ocp-share-events-sharedeletedevent"]], "OCP\\Share\\Events\\ShareDeletedFromSelfEvent": [[17, "ocp-share-events-sharedeletedfromselfevent"], [22, "ocp-share-events-sharedeletedfromselfevent"]], "OCP\\Share\\Events\\VerifyMountPointEvent": [[17, "ocp-share-events-verifymountpointevent"], [22, "ocp-share-events-verifymountpointevent"]], "OCP\\SpeechToText\\Events\\TranscriptionFailedEvent": [[17, "ocp-speechtotext-events-transcriptionfailedevent"], [22, "ocp-speechtotext-events-transcriptionfailedevent"]], "OCP\\SpeechToText\\Events\\TranscriptionSuccessfulEvent": [[17, "ocp-speechtotext-events-transcriptionsuccessfulevent"], [22, "ocp-speechtotext-events-transcriptionsuccessfulevent"]], "OCP\\SystemTag\\ManagerEvent": [[17, "ocp-systemtag-managerevent"], [22, "ocp-systemtag-managerevent"]], "OCP\\SystemTag\\MapperEvent": [[17, "ocp-systemtag-mapperevent"], [22, "ocp-systemtag-mapperevent"]], "OCP\\SystemTag\\SystemTagsEntityEvent": [[17, "ocp-systemtag-systemtagsentityevent"], [22, "ocp-systemtag-systemtagsentityevent"]], "OCP\\TaskProcessing\\Events\\GetTaskProcessingProvidersEvent": [[17, "ocp-taskprocessing-events-gettaskprocessingprovidersevent"], [22, "ocp-taskprocessing-events-gettaskprocessingprovidersevent"]], "OCP\\TaskProcessing\\Events\\TaskFailedEvent": [[17, "ocp-taskprocessing-events-taskfailedevent"], [22, "ocp-taskprocessing-events-taskfailedevent"]], "OCP\\TaskProcessing\\Events\\TaskSuccessfulEvent": [[17, "ocp-taskprocessing-events-tasksuccessfulevent"], [22, "ocp-taskprocessing-events-tasksuccessfulevent"]], "OCP\\TextProcessing\\Events\\TaskFailedEvent": [[17, "ocp-textprocessing-events-taskfailedevent"], [22, "ocp-textprocessing-events-taskfailedevent"]], "OCP\\TextProcessing\\Events\\TaskSuccessfulEvent": [[17, "ocp-textprocessing-events-tasksuccessfulevent"], [22, "ocp-textprocessing-events-tasksuccessfulevent"]], "OCP\\TextToImage\\Events\\TaskFailedEvent": [[17, "ocp-texttoimage-events-taskfailedevent"], [22, "ocp-texttoimage-events-taskfailedevent"]], "OCP\\TextToImage\\Events\\TaskSuccessfulEvent": [[17, "ocp-texttoimage-events-tasksuccessfulevent"], [22, "ocp-texttoimage-events-tasksuccessfulevent"]], "OCP\\User\\Events\\BeforePasswordUpdatedEvent": [[17, "ocp-user-events-beforepasswordupdatedevent"], [22, "ocp-user-events-beforepasswordupdatedevent"]], "OCP\\User\\Events\\BeforeUserCreatedEvent": [[17, "ocp-user-events-beforeusercreatedevent"], [22, "ocp-user-events-beforeusercreatedevent"]], "OCP\\User\\Events\\BeforeUserDeletedEvent": [[17, "ocp-user-events-beforeuserdeletedevent"], [22, "ocp-user-events-beforeuserdeletedevent"]], "OCP\\User\\Events\\BeforeUserIdUnassignedEvent": [[17, "ocp-user-events-beforeuseridunassignedevent"], [22, "ocp-user-events-beforeuseridunassignedevent"]], "OCP\\User\\Events\\BeforeUserLoggedInEvent": [[17, "ocp-user-events-beforeuserloggedinevent"], [22, "ocp-user-events-beforeuserloggedinevent"]], "OCP\\User\\Events\\BeforeUserLoggedInWithCookieEvent": [[17, "ocp-user-events-beforeuserloggedinwithcookieevent"], [22, "ocp-user-events-beforeuserloggedinwithcookieevent"]], "OCP\\User\\Events\\BeforeUserLoggedOutEvent": [[17, "ocp-user-events-beforeuserloggedoutevent"], [22, "ocp-user-events-beforeuserloggedoutevent"]], "OCP\\User\\Events\\OutOfOfficeChangedEvent": [[17, "ocp-user-events-outofofficechangedevent"], [22, "ocp-user-events-outofofficechangedevent"]], "OCP\\User\\Events\\OutOfOfficeClearedEvent": [[17, "ocp-user-events-outofofficeclearedevent"], [22, "ocp-user-events-outofofficeclearedevent"]], "OCP\\User\\Events\\OutOfOfficeEndedEvent": [[17, "ocp-user-events-outofofficeendedevent"], [22, "ocp-user-events-outofofficeendedevent"]], "OCP\\User\\Events\\OutOfOfficeScheduledEvent": [[17, "ocp-user-events-outofofficescheduledevent"], [22, "ocp-user-events-outofofficescheduledevent"]], "OCP\\User\\Events\\OutOfOfficeStartedEvent": [[17, "ocp-user-events-outofofficestartedevent"], [22, "ocp-user-events-outofofficestartedevent"]], "OCP\\User\\Events\\PasswordUpdatedEvent": [[17, "ocp-user-events-passwordupdatedevent"], [22, "ocp-user-events-passwordupdatedevent"]], "OCP\\User\\Events\\PostLoginEvent": [[17, "ocp-user-events-postloginevent"], [22, "ocp-user-events-postloginevent"]], "OCP\\User\\Events\\UserChangedEvent": [[17, "ocp-user-events-userchangedevent"], [22, "ocp-user-events-userchangedevent"]], "OCP\\User\\Events\\UserCreatedEvent": [[17, "ocp-user-events-usercreatedevent"], [22, "ocp-user-events-usercreatedevent"]], "OCP\\User\\Events\\UserDeletedEvent": [[17, "ocp-user-events-userdeletedevent"], [22, "ocp-user-events-userdeletedevent"]], "OCP\\User\\Events\\UserFirstTimeLoggedInEvent": [[17, "ocp-user-events-userfirsttimeloggedinevent"], [22, "ocp-user-events-userfirsttimeloggedinevent"]], "OCP\\User\\Events\\UserIdAssignedEvent": [[17, "ocp-user-events-useridassignedevent"], [22, "ocp-user-events-useridassignedevent"]], "OCP\\User\\Events\\UserIdUnassignedEvent": [[17, "ocp-user-events-useridunassignedevent"], [22, "ocp-user-events-useridunassignedevent"]], "OCP\\User\\Events\\UserLiveStatusEvent": [[17, "ocp-user-events-userlivestatusevent"], [22, "ocp-user-events-userlivestatusevent"]], "OCP\\User\\Events\\UserLoggedInEvent": [[17, "ocp-user-events-userloggedinevent"], [22, "ocp-user-events-userloggedinevent"]], "OCP\\User\\Events\\UserLoggedInWithCookieEvent": [[17, "ocp-user-events-userloggedinwithcookieevent"], [22, "ocp-user-events-userloggedinwithcookieevent"]], "OCP\\User\\Events\\UserLoggedOutEvent": [[17, "ocp-user-events-userloggedoutevent"], [22, "ocp-user-events-userloggedoutevent"]], "OCP\\User\\GetQuotaEvent": [[17, "ocp-user-getquotaevent"], [22, "ocp-user-getquotaevent"]], "OCP\\WorkflowEngine\\Events\\LoadSettingsScriptsEvent": [[17, "ocp-workflowengine-events-loadsettingsscriptsevent"], [22, "ocp-workflowengine-events-loadsettingsscriptsevent"]], "OCP\\WorkflowEngine\\Events\\RegisterChecksEvent": [[17, "ocp-workflowengine-events-registerchecksevent"], [22, "ocp-workflowengine-events-registerchecksevent"]], "OCP\\WorkflowEngine\\Events\\RegisterEntitiesEvent": [[17, "ocp-workflowengine-events-registerentitiesevent"], [22, "ocp-workflowengine-events-registerentitiesevent"]], "OCP\\WorkflowEngine\\Events\\RegisterOperationsEvent": [[17, "ocp-workflowengine-events-registeroperationsevent"], [22, "ocp-workflowengine-events-registeroperationsevent"]], "OCS": [[20, "ocs"]], "OCS API": [[45, null], [190, "ocs-api"]], "OCS APIs overview": [[46, null]], "OCS FullTextSearch Collection API": [[48, null]], "OCS OpenAPI tutorial": [[49, null]], "OCS Out-of-office API": [[50, null]], "OCS Recommendations API": [[51, null]], "OCS Share API": [[52, null]], "OCS Sharee API": [[53, null]], "OCS Status API": [[54, null]], "OCS TaskProcessing API": [[55, null]], "OCS Text-To-Image API": [[56, null]], "OCS TextProcessing API": [[57, null]], "OCS Translation API": [[58, null]], "OCS changes": [[215, "ocs-changes"]], "OCS routes": [[33, "ocs-routes"]], "OCS user preferences API": [[59, null]], "OPTIONS request": [[112, "options-request"]], "ObjectStorage": [[236, "objectstorage"]], "Objects": [[186, "objects"]], "Objects, functions, arrays & variables": [[187, "objects-functions-arrays-variables"]], "Obtaining the currently installed ACLs": [[107, "obtaining-the-currently-installed-acls"]], "Obtaining the initial state in JavaScript": [[25, "obtaining-the-initial-state-in-javascript"]], "Obtaining the library": [[72, "obtaining-the-library"]], "Obtaining the login credentials": [[44, "obtaining-the-login-credentials"]], "Obtaining wipe status": [[60, "obtaining-wipe-status"]], "Older deprecations": [[211, "older-deprecations"]], "Only quote properties when needed.": [[186, "id14"]], "OnlyOffice": [[192, "onlyoffice"]], "Open Metrics exporter": [[120, null]], "Open a file": [[101, "open-a-file"]], "Open the assistant modal": [[87, "open-the-assistant-modal"]], "OpenID Connect (Oidc)": [[119, null]], "Opening a file": [[101, "opening-a-file"]], "Opening the editor": [[101, "opening-the-editor"]], "Opening the webview": [[44, "opening-the-webview"]], "Operations": [[105, "operations"]], "Operators": [[186, "operators"], [187, "operators"]], "Optimized class loader": [[228, "optimized-class-loader"]], "Optional attributes": [[132, "optional-attributes"]], "Optional fields": [[69, "optional-fields"]], "Optional params": [[171, "optional-params"], [181, "optional-params"]], "Optional services": [[21, "optional-services"]], "Options": [[165, "options"], [165, "id2"]], "Other OCS APIs": [[176, null]], "Other documentation requirements": [[206, "other-documentation-requirements"]], "Other implementations": [[158, "other-implementations"]], "Other removed back-end APIs": [[210, "other-removed-back-end-apis"]], "Out-of-office periods": [[121, null]], "Output": [[240, "output"]], "Outputting information": [[130, "outputting-information"]], "Overview": [[16, "overview"], [22, "overview"], [101, "overview"], [148, "overview"], [150, "overview"], [165, "overview"]], "Ownership": [[107, "ownership"]], "PHP": [[41, "php"], [42, "php"], [190, "php"]], "PHP 7.4": [[227, "php-7-4"]], "PHP 8 attributes": [[190, "php-8-attributes"]], "PHP 8 support": [[222, "php-8-support"]], "PHP 8.1": [[225, "php-8-1"]], "PHP 8.2": [[227, "php-8-2"]], "PHP 8.3": [[229, "php-8-3"]], "PHP Backend": [[42, "php-backend"]], "PHP Performance": [[122, "php-performance"]], "PHP Templates": [[42, "php-templates"]], "PHP coding standards": [[187, null]], "PHP concepts you will encounter": [[190, "php-concepts-you-will-encounter"]], "PHP public API": [[85, "php-public-api"]], "PHP static analysis": [[242, "php-static-analysis"]], "PHP unit testing": [[243, "php-unit-testing"]], "PHP unstable API": [[85, "php-unstable-api"]], "POST request": [[112, "post-request"]], "PREFER to expose your APIs using OCS": [[49, "prefer-to-expose-your-apis-using-ocs"]], "PSR": [[127, null]], "PSR container": [[223, "psr-container"]], "PSR events": [[223, "psr-events"]], "PSR-0 deprecation": [[222, "psr-0-deprecation"]], "PSR-0: Autoloading": [[127, "psr-0-autoloading"]], "PSR-11 integration": [[221, "psr-11-integration"]], "PSR-11: Container Interface": [[127, "psr-11-container-interface"]], "PSR-20: Clock": [[127, "psr-20-clock"]], "PSR-3 integration": [[221, "psr-3-integration"]], "PSR-3: Logger Interface": [[127, "psr-3-logger-interface"]], "PSR-4: Autoloading": [[127, "psr-4-autoloading"]], "PUT request": [[112, "put-request"]], "Packages in detail": [[115, "packages-in-detail"]], "Pagination": [[132, "pagination"]], "Parameters": [[69, "parameters"]], "Params": [[169, "params"], [169, "id2"], [171, "params"], [171, "id1"], [174, "params"], [175, "params"], [175, "id2"], [179, "params"], [179, "id1"], [181, "params"], [181, "id1"], [181, "id2"], [181, "id3"], [181, "id4"], [181, "id5"], [181, "id6"], [181, "id7"]], "Parsing annotations": [[30, "parsing-annotations"]], "Patch updates": [[16, "patch-updates"]], "Performance and concurrency": [[20, "performance-and-concurrency"]], "Performance considerations": [[2, "performance-considerations"], [122, null]], "Permanent Solution": [[156, "permanent-solution"]], "Persistent storage": [[154, "persistent-storage"]], "Personal settings section Groupware moved to Availability": [[227, "personal-settings-section-groupware-moved-to-availability"]], "Phone number util": [[123, null]], "Pickers": [[76, "pickers"]], "Pinned entry": [[199, "pinned-entry"]], "Placeholders and variables": [[81, "placeholders-and-variables"]], "Planned removal of PSR-0 class loading": [[227, "planned-removal-of-psr-0-class-loading"]], "Popover menu": [[200, null]], "Popovermenu in item": [[198, "popovermenu-in-item"]], "Populating input from a file": [[87, "populating-input-from-a-file"]], "Pre-releases": [[16, "pre-releases"]], "Precondition": [[202, "precondition"]], "Predefined core services": [[21, "predefined-core-services"]], "Prefer regular top-level functions.": [[186, "id11"]], "Prefer shorthand properties": [[186, "id15"]], "Prefer template literals for readability.": [[186, "id5"]], "Preferences": [[177, null]], "Prepare follow-up releases": [[16, "prepare-follow-up-releases"]], "Prerequisites: Node.js and npm": [[239, "prerequisites-node-js-and-npm"]], "Preset": [[92, "preset"]], "Preview API": [[210, "preview-api"]], "Previous release notes": [[214, null]], "Primary color variables": [[194, "primary-color-variables"]], "Primary colors": [[77, "primary-colors"]], "Primary object store with S3": [[192, "primary-object-store-with-s3"]], "Privacy": [[132, "privacy"]], "Processing tasks in the context of a user": [[142, "processing-tasks-in-the-context-of-a-user"]], "Profile": [[124, null]], "Profile app": [[234, "profile-app"]], "Profiler": [[125, null]], "Progress bar": [[195, "progress-bar"]], "Projects": [[126, null]], "Prologue": [[208, null]], "Properties of the external calendar \u2013 IProperties": [[107, "properties-of-the-external-calendar-iproperties"]], "Provide a user interface": [[96, "provide-a-user-interface"], [126, "provide-a-user-interface"]], "Provide context hints for translators": [[42, "provide-context-hints-for-translators"]], "Provide generic data for clients": [[129, "provide-generic-data-for-clients"]], "Provide personal settings (optional)": [[144, "provide-personal-settings-optional"]], "Provider and task type registration": [[140, "provider-and-task-type-registration"]], "Provider registration": [[116, "provider-registration"], [132, "provider-registration"], [137, "provider-registration"], [141, "provider-registration"], [142, "provider-registration"]], "Provider with user context": [[116, "provider-with-user-context"], [137, "provider-with-user-context"]], "Providing a Mail Service": [[110, "providing-a-mail-service"]], "Providing additional inputs and outputs": [[140, "providing-additional-inputs-and-outputs"]], "Providing an icon (optional)": [[144, "providing-an-icon-optional"]], "Providing input defaults": [[140, "providing-input-defaults"]], "Providing language detection": [[116, "providing-language-detection"]], "Providing more task types": [[140, "providing-more-task-types"], [142, "providing-more-task-types"]], "Providing privileges individually": [[107, "providing-privileges-individually"]], "Providing the initial state with PHP": [[25, "providing-the-initial-state-with-php"]], "Providing widgets to clients": [[96, "providing-widgets-to-clients"]], "Public Pages": [[128, null]], "Public emitter": [[22, "public-emitter"]], "Public page templates": [[20, "public-page-templates"]], "Public share template": [[31, null]], "Public shares": [[61, "public-shares"]], "Query Status": [[138, "query-status"]], "Querying the calendar \u2013 ICalendarObjectContainer": [[107, "querying-the-calendar-icalendarobjectcontainer"]], "Querying the database provider": [[37, "querying-the-database-provider"]], "Questions?": [[202, "questions"]], "Quick method/header cheat sheet": [[61, "quick-method-header-cheat-sheet"]], "REST API (v2)": [[69, "rest-api-v2"]], "REST APIs": [[131, null]], "RTL guidelines": [[194, "rtl-guidelines"]], "Radio": [[99, "radio"]], "Radio groups": [[76, "radio-groups"]], "Rate Limiting": [[133, "rate-limiting"]], "Rate limiting": [[20, "rate-limiting"]], "Read file": [[70, "read-file"]], "Read folder": [[70, "read-folder"]], "Read metadata using occ command": [[104, "read-metadata-using-occ-command"]], "Read shared items by link": [[70, "read-shared-items-by-link"]], "Read-only support": [[107, "read-only-support"]], "Reading behavior with lazy parameter": [[90, "reading-behavior-with-lazy-parameter"]], "Reading data that has just been written": [[122, "reading-data-that-has-just-been-written"]], "Reading from a file": [[38, "reading-from-a-file"]], "Reading headers, files, cookies and environment variables": [[20, "reading-headers-files-cookies-and-environment-variables"]], "Recommendation": [[53, "recommendation"]], "Recommendations - Retrieval": [[51, "recommendations-retrieval"]], "Redirect to ExApp UI page (top menu)": [[171, "redirect-to-exapp-ui-page-top-menu"]], "Redirects": [[20, "redirects"]], "Redis": [[192, "redis"]], "Redis Cluster": [[192, "redis-cluster"]], "Reference providers": [[129, null]], "References": [[97, "references"]], "Register": [[169, "register"], [171, "register"], [175, "register"], [178, "register"]], "Register ExApp Talk bot (OCS)": [[180, "register-exapp-talk-bot-ocs"]], "Register Menu Entry": [[181, "register-menu-entry"]], "Register Settings": [[179, "register-settings"]], "Register a custom picker component": [[129, "register-a-custom-picker-component"]], "Register a dashboard widget": [[96, "register-a-dashboard-widget"]], "Register a migrator": [[145, "register-a-migrator"]], "Register a new exporter": [[120, "register-a-new-exporter"]], "Register a profile action": [[124, "register-a-profile-action"]], "Register a reference provider": [[129, "register-a-reference-provider"]], "Register a repair-step": [[130, "register-a-repair-step"]], "Register a resource provider": [[126, "register-a-resource-provider"]], "Register a setup check": [[135, "register-a-setup-check"]], "Register get/set listeners": [[99, "register-get-set-listeners"]], "Register the calendar provider": [[107, "register-the-calendar-provider"]], "Register the provider state": [[144, "register-the-provider-state"]], "Registering Settings and Sections": [[134, "registering-settings-and-sections"]], "Registering a DAV plugin": [[2, "registering-a-dav-plugin"]], "Registering a background job": [[18, "registering-a-background-job"]], "Registering a command": [[1, "registering-a-command"]], "Registering a two-factor auth provider": [[144, "registering-a-two-factor-auth-provider"]], "Registering activity components": [[69, "registering-activity-components"]], "Registering an editor": [[101, "registering-an-editor"]], "Registering manually": [[18, "registering-manually"]], "Registering methods": [[240, "registering-methods"]], "Registering resources": [[33, "registering-resources"]], "Registering settings schema": [[99, "registering-settings-schema"]], "Registering the calendar with the Nextcloud API interface": [[107, "registering-the-calendar-with-the-nextcloud-api-interface"]], "Registering the editor": [[101, "registering-the-editor"]], "Registering your Lexicon": [[92, "registering-your-lexicon"]], "Related documentation": [[47, "related-documentation"]], "Relation of REST and OCS": [[131, "relation-of-rest-and-ocs"]], "Release Automation": [[15, null]], "Release notes": [[212, null]], "Release process": [[16, null]], "Remote API": [[210, "remote-api"]], "Remote Host Validation": [[133, "remote-host-validation"]], "Remote wipe": [[60, null]], "Removal of PSR-0 class loader": [[228, "removal-of-psr-0-class-loader"]], "Removal of calendars": [[107, "removal-of-calendars"]], "Removal of entries": [[107, "removal-of-entries"]], "Remove Initial state": [[181, "remove-initial-state"]], "Remove script": [[181, "remove-script"]], "Remove style": [[181, "remove-style"]], "Remove unneeded files from packages": [[3, "remove-unneeded-files-from-packages"]], "Removed APIs": [[215, "removed-apis"], [216, "removed-apis"], [216, "id1"], [217, "removed-apis"], [223, "removed-apis"], [226, "removed-apis"], [227, "removed-apis"], [227, "id1"], [228, "removed-apis"], [229, "removed-apis"], [229, "id3"], [230, "removed-apis"], [231, "removed-apis"], [232, "removed-apis"], [232, "id1"], [233, "removed-apis"], [234, "removed-apis"], [234, "id6"]], "Removed WebDAV properties": [[229, "removed-webdav-properties"]], "Removed back-end APIs": [[210, "removed-back-end-apis"], [235, "removed-back-end-apis"]], "Removed deprecated aliases": [[232, "id2"]], "Removed events": [[229, "removed-events"], [230, "removed-events"]], "Removed from public namespace": [[218, "removed-from-public-namespace"], [221, "removed-from-public-namespace"]], "Removed front-end APIs and libraries": [[210, "removed-front-end-apis-and-libraries"], [235, "removed-front-end-apis-and-libraries"]], "Removed globals": [[220, "removed-globals"], [221, "removed-globals"], [230, "removed-globals"]], "Removed jQuery plugins": [[218, "removed-jquery-plugins"], [221, "removed-jquery-plugins"]], "Removed libraries": [[220, "removed-libraries"]], "Removed support for database.xml": [[223, "removed-support-for-database-xml"]], "Render dashboard widgets using the API": [[96, "render-dashboard-widgets-using-the-api"]], "Render link previews in clients": [[129, "render-link-previews-in-clients"]], "Repair steps": [[130, null]], "Repair-step types": [[130, "repair-step-types"]], "Replaced well-known handler API": [[222, "replaced-well-known-handler-api"]], "Replacing Nextcloud\u2019s autoloader": [[89, "replacing-nextcloud-s-autoloader"]], "Replacing indices": [[40, "replacing-indices"]], "Repository permissions": [[8, "repository-permissions"]], "Reproducing the issue": [[204, "reproducing-the-issue"]], "Request Headers": [[61, "request-headers"]], "Request data": [[168, "request-data"], [168, "id1"], [168, "id3"], [170, "request-data"], [170, "id3"], [173, "request-data"], [177, "request-data"], [177, "id1"], [177, "id3"], [180, "request-data"], [180, "id1"]], "Request examples": [[129, "request-examples"]], "Request flow": [[171, "request-flow"]], "Request lifecycle": [[32, null]], "Request payload": [[174, "request-payload"]], "Requesting properties": [[61, "requesting-properties"]], "Required PHP extensions": [[242, "required-php-extensions"]], "Required fields": [[69, "required-fields"]], "Requirements": [[14, "requirements"]], "Requirements and prerequisites": [[49, "requirements-and-prerequisites"]], "Reset collection": [[48, "reset-collection"]], "Resolving links": [[129, "resolving-links"]], "Resources": [[106, "resources"]], "Respect the users": [[14, "respect-the-users"]], "Responders": [[20, "responders"]], "Response": [[168, "response"], [177, "response"]], "Response Headers": [[61, "response-headers"]], "Response data": [[168, "response-data"], [168, "id2"], [170, "response-data"], [170, "id1"], [170, "id2"], [170, "id4"], [170, "id5"], [173, "response-data"], [177, "response-data"], [177, "id2"], [182, "response-data"]], "Response headers": [[69, "response-headers"]], "Responses": [[20, "responses"], [43, "responses"]], "Restoring a version": [[68, "restoring-a-version"]], "Restoring from the trashbin": [[67, "restoring-from-the-trashbin"]], "Retrieve metadata using PROPFIND": [[104, "retrieve-metadata-using-propfind"]], "Retrieving a config value": [[90, "retrieving-a-config-value"], [93, "retrieving-a-config-value"]], "Retrieving the list of document to be (re-)indexed": [[48, "retrieving-the-list-of-document-to-be-re-indexed"]], "Retrying deadlocks": [[97, "retrying-deadlocks"]], "Return codes": [[1, "return-codes"]], "Returning data": [[240, "returning-data"]], "Returning the content type": [[107, "returning-the-content-type"]], "Rich object strings": [[69, "rich-object-strings"]], "Rooms": [[106, "rooms"]], "Root": [[35, "root"]], "Route": [[190, "route"]], "Router": [[73, "router"]], "Routes": [[178, null]], "Routing": [[33, null]], "Rules": [[199, "rules"]], "Rules and information": [[193, "rules-and-information"], [198, "rules-and-information"]], "Running HTTP requests against the server": [[135, "running-http-requests-against-the-server"]], "Running a task": [[87, "running-a-task"]], "Running all tests": [[243, "running-all-tests"]], "Running unit tests for the Nextcloud server project": [[243, "running-unit-tests-for-the-nextcloud-server-project"]], "Running your ExApp with a non-root user": [[152, "running-your-exapp-with-a-non-root-user"]], "S3 external storage": [[192, "s3-external-storage"]], "SAML setup with onelogin": [[192, "saml-setup-with-onelogin"]], "SCSS support removal": [[226, "scss-support-removal"]], "SMB external storage": [[192, "smb-external-storage"]], "SQL injection": [[209, "sql-injection"]], "Scaling": [[160, null]], "Schedule a task": [[56, "schedule-a-task"], [57, "schedule-a-task"]], "Scheduling": [[18, "scheduling"]], "Schema field types": [[99, "schema-field-types"]], "Scopes": [[49, "scopes"]], "Scss variable and compilation deprecation": [[223, "scss-variable-and-compilation-deprecation"]], "Search": [[53, "search"], [66, null], [132, null], [221, "search"]], "Search & Discovery": [[102, null]], "Search scope": [[66, "search-scope"]], "Search sharees": [[53, "search-sharees"]], "Section": [[134, "section"]], "Section type admin": [[99, "section-type-admin"]], "Section type personal": [[99, "section-type-personal"]], "Security": [[133, null]], "Security considerations": [[20, "security-considerations"]], "Security guidelines": [[209, null]], "See also": [[101, "see-also"]], "Select and Multi-select": [[99, "select-and-multi-select"]], "Semicolons": [[186, "semicolons"]], "Send email": [[52, "send-email"]], "Send log message (OCS)": [[173, "send-log-message-ocs"]], "Send notification (OCS)": [[174, "send-notification-ocs"]], "Sending the CSRF token": [[25, "sending-the-csrf-token"]], "Sensitive data exposure": [[209, "sensitive-data-exposure"]], "Sensitive field type": [[99, "sensitive-field-type"]], "Sensitive values": [[90, "sensitive-values"]], "Server Internals": [[114, null]], "Server autoloading": [[89, "server-autoloading"]], "Server development": [[241, null]], "Session": [[22, "session"]], "Sessions and session variables": [[20, "sessions-and-session-variables"]], "Set ExApp init progress": [[170, "set-exapp-init-progress"]], "Set Initial state": [[181, "set-initial-state"]], "Set a custom message (predefined)": [[54, "set-a-custom-message-predefined"]], "Set a custom message (user-defined)": [[54, "set-a-custom-message-user-defined"]], "Set app config value": [[168, "set-app-config-value"]], "Set credentials": [[70, "set-credentials"]], "Set document as indexed": [[48, "set-document-as-indexed"]], "Set the parsed subject": [[69, "set-the-parsed-subject"]], "Set up Web server and database": [[189, "set-up-web-server-and-database"]], "Set user config value": [[177, "set-user-config-value"]], "Set your own status": [[54, "set-your-own-status"]], "Setting a preference": [[59, "setting-a-preference"]], "Setting cookies": [[20, "setting-cookies"]], "Setting multiple preference": [[59, "setting-multiple-preference"]], "Setting the access rules of the calendar": [[107, "setting-the-access-rules-of-the-calendar"]], "Setting the modification time": [[63, "setting-the-modification-time"]], "Setting up Microsoft Visual Studio": [[82, "setting-up-microsoft-visual-studio"]], "Setting up dev environment": [[149, null]], "Settings": [[34, null], [76, "settings"], [134, null], [199, "settings"]], "Settings favorites": [[61, "settings-favorites"]], "Settings form": [[134, "settings-form"]], "Settings title left-alignment": [[235, "settings-title-left-alignment"]], "Setup checks": [[135, null]], "Setup of the transifex sync": [[8, "setup-of-the-transifex-sync"]], "Shape types": [[140, "shape-types"]], "Share attributes": [[52, "share-attributes"]], "Share link of file or folder": [[70, "share-link-of-file-or-folder"]], "Share type response definitions": [[49, "share-type-response-definitions"]], "Sharee recommendations": [[53, "sharee-recommendations"]], "Shell injection": [[209, "shell-injection"]], "Shipped Apps": [[16, "shipped-apps"]], "Short vs. long translations": [[69, "short-vs-long-translations"]], "Showing an HTML page by the user": [[20, "showing-an-html-page-by-the-user"]], "Sidebar": [[76, "sidebar"], [234, "sidebar"]], "Sidebar tabs redesign": [[235, "sidebar-tabs-redesign"]], "Signalling completion": [[60, "signalling-completion"]], "Simple search providers": [[132, "simple-search-providers"]], "SimpleFS": [[236, "simplefs"]], "Slugs": [[37, "slugs"]], "Snowflake IDS": [[234, "snowflake-ids"]], "Snowflake IDs": [[136, null]], "Source Code Version Control": [[188, "source-code-version-control"]], "Special Headers": [[61, "special-headers"]], "Speech-To-Text": [[137, null]], "Split long conditions into multiple lines.": [[186, "id21"]], "Starting a bulk upload": [[62, "starting-a-bulk-upload"]], "Starting a chunked upload": [[63, "starting-a-chunked-upload"]], "State colors variables": [[194, "state-colors-variables"]], "State-of-the-Art methods and comparison": [[131, "state-of-the-art-methods-and-comparison"]], "Static analysis": [[95, "static-analysis"], [242, null]], "Status colors": [[77, "status-colors"]], "Status colors are now based on secondary styling": [[233, "status-colors-are-now-based-on-secondary-styling"]], "Statuscodes": [[240, "statuscodes"]], "Step 1: Create a Mail Provider Class": [[110, "step-1-create-a-mail-provider-class"]], "Step 1: String split": [[42, "step-1-string-split"]], "Step 2: Create a Mail Service Class": [[110, "step-2-create-a-mail-service-class"]], "Step 2: HTML Markup": [[42, "step-2-html-markup"]], "Step 3: Placeholders": [[42, "step-3-placeholders"]], "Step 3: Register the Mail Provider": [[110, "step-3-register-the-mail-provider"]], "Steps needed to adapt an ExApp": [[152, "steps-needed-to-adapt-an-exapp"]], "Storage": [[236, "storage"]], "Storage and database": [[39, null]], "Storage layer": [[236, "storage-layer"]], "Storage/Cache wrappers": [[236, "storage-cache-wrappers"]], "Store a Snowflake ID in database": [[136, "store-a-snowflake-id-in-database"]], "Storing a config value": [[90, "storing-a-config-value"], [93, "storing-a-config-value"]], "Streamed and lazily rendered responses": [[20, "streamed-and-lazily-rendered-responses"]], "Streamlining processing for fast providers": [[142, "streamlining-processing-for-fast-providers"]], "Streams": [[236, "streams"]], "Strings": [[186, "strings"]], "Structured data logging": [[29, "structured-data-logging"]], "Submitting ContentItem data": [[94, "submitting-contentitem-data"]], "Subscribing to the event in a plugin": [[148, "subscribing-to-the-event-in-a-plugin"]], "Summary": [[152, "summary"]], "Support for PHP 8.0 removed": [[231, "support-for-php-8-0-removed"]], "Support for PHP 8.1 removed": [[234, "support-for-php-8-1-removed"]], "Support for PHP 8.4 added": [[232, "support-for-php-8-4-added"]], "Support for PHP 8.5 added": [[234, "support-for-php-8-5-added"]], "Supported DAV properties": [[66, "supported-dav-properties"]], "Supported clients": [[43, "supported-clients"]], "Supported properties": [[61, "supported-properties"]], "Supported server apps": [[43, "supported-server-apps"]], "Supporting more databases": [[37, "supporting-more-databases"]], "Svg color api": [[196, "svg-color-api"]], "Symfony update": [[220, "symfony-update"]], "Symptoms": [[156, "symptoms"]], "System requirements": [[82, "system-requirements"]], "System values": [[36, "system-values"]], "Table management tips": [[37, "table-management-tips"]], "Table of contents": [[201, "table-of-contents"]], "Tags": [[49, "tags"]], "Talk Integration": [[139, null]], "Talk bots": [[180, null]], "Target Branches for Contributions": [[188, "target-branches-for-contributions"]], "Task Processing": [[140, null], [213, "task-processing"]], "Task processing": [[211, "task-processing"]], "Task statuses": [[140, "task-statuses"], [141, "task-statuses"], [142, "task-statuses"]], "Tasks": [[140, "tasks"], [141, "tasks"], [142, "tasks"]], "Tasks types": [[140, "tasks-types"], [142, "tasks-types"]], "Technical details": [[10, "technical-details"], [183, null], [200, "technical-details"]], "Template": [[190, "template"]], "Templates": [[20, "templates"], [26, null], [209, "templates"]], "Terminology": [[110, "terminology"]], "Testing": [[41, null]], "Testing requests": [[61, "testing-requests"]], "Testing requests with curl": [[46, "testing-requests-with-curl"]], "Testing translations": [[42, "testing-translations"]], "Text Processing": [[142, null]], "Text colors": [[77, "text-colors"]], "Text-To-Image": [[141, null]], "The Application class": [[0, "the-application-class"]], "The Cache View": [[125, "the-cache-view"]], "The Database Queries View": [[125, "the-database-queries-view"]], "The Event View": [[125, "the-event-view"]], "The General Request and Response View": [[125, "the-general-request-and-response-view"]], "The IAPIWidget interface": [[96, "the-iapiwidget-interface"]], "The IAPIWidgetV2 interface": [[96, "the-iapiwidgetv2-interface"]], "The IButtonWidget interface": [[96, "the-ibuttonwidget-interface"]], "The IConditionalWidget interface": [[96, "the-iconditionalwidget-interface"]], "The IContentProvider interface": [[94, "the-icontentprovider-interface"]], "The IIconWidget interface": [[96, "the-iiconwidget-interface"]], "The IOptionWidget interface": [[96, "the-ioptionwidget-interface"]], "The IReloadableWidget interface": [[96, "the-ireloadablewidget-interface"]], "The LDAP View": [[125, "the-ldap-view"]], "The Nextcloud app store rules": [[14, null]], "The calendar class": [[107, "the-calendar-class"]], "The calendar object class": [[107, "the-calendar-object-class"]], "The calendar plugin class": [[107, "the-calendar-plugin-class"]], "The editor class": [[101, "the-editor-class"]], "The interface object": [[101, "the-interface-object"]], "The language and platform": [[190, "the-language-and-platform"]], "The process": [[15, "the-process"]], "The release": [[16, "the-release"]], "The simple filesystem": [[35, "the-simple-filesystem"]], "Theming capabilities": [[46, "theming-capabilities"]], "Theming support": [[27, null]], "Timezone picker": [[76, "timezone-picker"]], "Tips": [[70, "tips"]], "Tips and tricks": [[49, "tips-and-tricks"]], "Todo": [[213, "id1"], [235, "id1"], [235, "id2"], [235, "id3"], [235, "id4"]], "Token exchange": [[119, "token-exchange"]], "Tone": [[81, "tone"]], "Tooltip Response": [[43, "tooltip-response"]], "Top Menu Entry": [[181, null]], "Transactions": [[37, "transactions"]], "Transient attributes": [[37, "transient-attributes"]], "Transifex configuration .tx/config": [[8, "transifex-configuration-tx-config"]], "Transifex sync": [[167, "transifex-sync"]], "Translatable strings": [[81, "translatable-strings"]], "Translate a string": [[58, "translate-a-string"]], "Translation": [[8, null]], "Translation tool": [[8, "translation-tool"], [167, "translation-tool"]], "Translations": [[42, null], [167, null]], "Translator comments": [[81, "translator-comments"]], "Trashbin": [[67, null]], "Triggerable providers": [[140, "triggerable-providers"]], "Troubleshooting": [[44, "troubleshooting"], [156, "troubleshooting"], [161, null]], "Trusted domain": [[133, "trusted-domain"]], "Tutorial": [[9, null]], "Tutorial: How to add OpenAPI support to your OCS API": [[49, "tutorial-how-to-add-openapi-support-to-your-ocs-api"]], "Two-factor providers": [[144, null]], "Type": [[236, "type"]], "Typed Config Values": [[93, "typed-config-values"]], "Typed config values": [[90, "typed-config-values"]], "Typed query builder": [[213, "typed-query-builder"]], "Types": [[37, "types"]], "Types of background jobs": [[18, "types-of-background-jobs"]], "Types of caches": [[19, "types-of-caches"]], "Typing and documentation": [[49, "typing-and-documentation"]], "Typography and wording": [[77, "typography-and-wording"]], "Understanding the locking situation": [[97, "understanding-the-locking-situation"]], "Undo entry": [[199, "undo-entry"]], "Unified sharing": [[235, "unified-sharing"]], "Unit test paths": [[243, "unit-test-paths"]], "Unit tests": [[187, "unit-tests"]], "Unit-Testing": [[243, null]], "Unregister": [[169, "unregister"], [171, "unregister"], [175, "unregister"], [178, "unregister"]], "Unregister ExApp Talk bot (OCS)": [[180, "unregister-exapp-talk-bot-ocs"]], "Unregister Menu Entry": [[179, "unregister-menu-entry"], [181, "unregister-menu-entry"]], "Unvalidated redirects": [[209, "unvalidated-redirects"]], "Update Share": [[52, "update-share"]], "Update a provider last usage date": [[129, "update-a-provider-last-usage-date"]], "Update metadata using PROPPATCH": [[104, "update-metadata-using-proppatch"]], "Updated PHP requirements": [[210, "updated-php-requirements"]], "Updated core libraries": [[222, "updated-core-libraries"], [224, "updated-core-libraries"], [229, "updated-core-libraries"]], "Updated database requirements": [[210, "updated-database-requirements"]], "Updating the calendar ACLs": [[107, "updating-the-calendar-acls"]], "Updating the content of a calendar event": [[107, "updating-the-content-of-a-calendar-event"]], "Updating the name of an event": [[107, "updating-the-name-of-an-event"]], "Updating the properties": [[107, "updating-the-properties"]], "Updating the status programmatically": [[138, "updating-the-status-programmatically"]], "Upgrade to Nextcloud 14": [[215, null]], "Upgrade to Nextcloud 15": [[216, null]], "Upgrade to Nextcloud 16": [[217, null]], "Upgrade to Nextcloud 17": [[218, null]], "Upgrade to Nextcloud 18": [[219, null]], "Upgrade to Nextcloud 19": [[220, null]], "Upgrade to Nextcloud 20": [[221, null]], "Upgrade to Nextcloud 21": [[222, null]], "Upgrade to Nextcloud 22": [[223, null]], "Upgrade to Nextcloud 23": [[224, null]], "Upgrade to Nextcloud 24": [[225, null]], "Upgrade to Nextcloud 25": [[226, null]], "Upgrade to Nextcloud 26": [[227, null]], "Upgrade to Nextcloud 27": [[228, null]], "Upgrade to Nextcloud 28": [[229, null]], "Upgrade to Nextcloud 29": [[230, null]], "Upgrade to Nextcloud 30": [[231, null]], "Upgrade to Nextcloud 31": [[232, null]], "Upgrade to Nextcloud 32": [[233, null]], "Upgrade to Nextcloud 33": [[234, null]], "Upgrade to Nextcloud 34": [[235, null]], "Upload a file": [[70, "upload-a-file"]], "Uploading chunks": [[63, "uploading-chunks"]], "Uploading files": [[61, "uploading-files"]], "Usage": [[62, "usage"], [115, "usage"], [240, "usage"]], "Use PascalCase for classes, interfaces, types and Vue components": [[186, "id2"]], "Use automatic dependency assembly (recommended)": [[21, "use-automatic-dependency-assembly-recommended"]], "Use camelCase for functions, methods, properties, and variables": [[186, "id1"]], "Use consistent new lines in function parameters": [[186, "id10"]], "Use dangling commas, this reduces the diff when adding new properties.": [[186, "id7"], [186, "id18"]], "Use explicit comparisons": [[186, "id19"]], "Use parenthesis for multi-line body of arrow functions.": [[186, "id13"]], "Use single quotes.": [[186, "id4"]], "Use the API": [[96, "use-the-api"]], "Use the Smart Picker in clients": [[129, "use-the-smart-picker-in-clients"]], "Use the Smart Picker in your app": [[129, "use-the-smart-picker-in-your-app"]], "Use the Unified Search API": [[129, "use-the-unified-search-api"]], "User Status": [[138, null]], "User Status - Predefined statuses": [[54, "user-status-predefined-statuses"]], "User Status - Retrieve statuses": [[54, "user-status-retrieve-statuses"]], "User Status - Status Manipulation": [[54, "user-status-status-manipulation"]], "User action": [[171, "user-action"]], "User bubbles": [[76, "user-bubbles"]], "User interface": [[185, "user-interface"]], "User management": [[146, null]], "User managers": [[146, "user-managers"]], "User metadata": [[46, "user-metadata"]], "User metadata - List user IDs": [[46, "user-metadata-list-user-ids"]], "User migration": [[145, null]], "User objects": [[146, "user-objects"]], "User session information": [[146, "user-session-information"]], "User status": [[108, "user-status"]], "User status - Restore backup": [[54, "user-status-restore-backup"]], "User values": [[36, "user-values"]], "User-, guest-, and public-template layout": [[232, "user-guest-and-public-template-layout"]], "UserConfig": [[93, null]], "UserManager": [[22, "usermanager"]], "Users & Authentication": [[88, null]], "Using GitHub": [[82, "using-github"]], "Using a PHP debugger (XDebug)": [[98, "using-a-php-debugger-xdebug"]], "Using a container": [[21, "using-a-container"]], "Using alternative app directories": [[98, "using-alternative-app-directories"]], "Using custom reference widgets": [[129, "using-custom-reference-widgets"]], "Using the IContentManager service": [[94, "using-the-icontentmanager-service"]], "Using the URLGenerator": [[33, "using-the-urlgenerator"]], "Using the app": [[125, "using-the-app"]], "Using the collection OCS API": [[48, "using-the-collection-ocs-api"]], "Using the default widget": [[129, "using-the-default-widget"]], "Utils: menu, counter & buttons": [[199, "utils-menu-counter-buttons"]], "Validate source strings": [[8, "validate-source-strings"]], "Values Sensitivity": [[93, "values-sensitivity"]], "Various information": [[199, "various-information"]], "Version control issue": [[129, "version-control-issue"]], "Version control issue or pull request comment": [[129, "version-control-issue-or-pull-request-comment"]], "Version control pull request": [[129, "version-control-pull-request"]], "Versioning": [[16, "versioning"], [16, "id1"]], "Versions": [[68, null]], "View.php": [[236, "view-php"]], "Vite": [[190, "vite"]], "Vue": [[42, "vue"]], "Web Host Metadata": [[147, null]], "WebAuthn without SSL": [[192, "webauthn-without-ssl"]], "WebDAV": [[65, null]], "WebDAV SEARCH based on metadata": [[104, "webdav-search-based-on-metadata"]], "WebDAV basics": [[61, "webdav-basics"]], "WebDAV collection preload events": [[148, null]], "Webview integration": [[101, "webview-integration"]], "What is a popover menu": [[200, "what-is-a-popover-menu"]], "When the event is emitted": [[148, "when-the-event-is-emitted"]], "When to use #[UseSession]": [[20, "when-to-use-usesession"]], "Which classes should be added": [[21, "which-classes-should-be-added"]], "Why did Nextcloud add code signing?": [[10, "why-did-nextcloud-add-code-signing"]], "Why do you want to join": [[204, "why-do-you-want-to-join"]], "Windows Development Build": [[82, "windows-development-build"]], "Windows Installer (i.e. Deployment) Build (Cross-Compile)": [[82, "windows-installer-i-e-deployment-build-cross-compile"]], "Wiping the actual device": [[60, "wiping-the-actual-device"]], "With curl": [[61, "with-curl"]], "Wording": [[77, "wording"]], "Working with Enum shape types": [[140, "working-with-enum-shape-types"]], "Working with time": [[143, null]], "Write support": [[107, "write-support"]], "Writing PHP unit tests": [[243, "writing-php-unit-tests"]], "Writing a background job": [[18, "writing-a-background-job"]], "Writing a handler": [[147, "writing-a-handler"]], "Writing a listener": [[22, "writing-a-listener"]], "Writing events": [[22, "writing-events"]], "Writing guide": [[81, null]], "Writing scalable transactions": [[122, "writing-scalable-transactions"]], "Writing to a file": [[38, "writing-to-a-file"]], "\\OCA\\DAV\\Events\\AddressBookCreatedEvent": [[22, "oca-dav-events-addressbookcreatedevent"]], "\\OCA\\DAV\\Events\\AddressBookDeletedEvent": [[22, "oca-dav-events-addressbookdeletedevent"]], "\\OCA\\DAV\\Events\\AddressBookShareUpdatedEvent": [[22, "oca-dav-events-addressbookshareupdatedevent"]], "\\OCA\\DAV\\Events\\AddressBookUpdatedEvent": [[22, "oca-dav-events-addressbookupdatedevent"]], "\\OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent": [[22, "oca-dav-events-cachedcalendarobjectcreatedevent"]], "\\OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent": [[22, "oca-dav-events-cachedcalendarobjectdeletedevent"]], "\\OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent": [[22, "oca-dav-events-cachedcalendarobjectupdatedevent"]], "\\OCA\\DAV\\Events\\CalendarCreatedEvent": [[22, "oca-dav-events-calendarcreatedevent"]], "\\OCA\\DAV\\Events\\CalendarDeletedEvent": [[22, "oca-dav-events-calendardeletedevent"]], "\\OCA\\DAV\\Events\\CalendarObjectCreatedEvent": [[22, "oca-dav-events-calendarobjectcreatedevent"]], "\\OCA\\DAV\\Events\\CalendarObjectDeletedEvent": [[22, "oca-dav-events-calendarobjectdeletedevent"]], "\\OCA\\DAV\\Events\\CalendarObjectUpdatedEvent": [[22, "oca-dav-events-calendarobjectupdatedevent"]], "\\OCA\\DAV\\Events\\CalendarPublishedEvent": [[22, "oca-dav-events-calendarpublishedevent"]], "\\OCA\\DAV\\Events\\CalendarShareUpdatedEvent": [[22, "oca-dav-events-calendarshareupdatedevent"]], "\\OCA\\DAV\\Events\\CalendarUnpublishedEvent": [[22, "oca-dav-events-calendarunpublishedevent"]], "\\OCA\\DAV\\Events\\CalendarUpdatedEvent": [[22, "oca-dav-events-calendarupdatedevent"]], "\\OCA\\DAV\\Events\\CardCreatedEvent": [[22, "oca-dav-events-cardcreatedevent"]], "\\OCA\\DAV\\Events\\CardDeletedEvent": [[22, "oca-dav-events-carddeletedevent"]], "\\OCA\\DAV\\Events\\CardUpdatedEvent": [[22, "oca-dav-events-cardupdatedevent"]], "\\OCA\\DAV\\Events\\SabrePluginAuthInitEvent": [[22, "oca-dav-events-sabrepluginauthinitevent"]], "\\OCA\\DAV\\Events\\SubscriptionCreatedEvent": [[22, "oca-dav-events-subscriptioncreatedevent"]], "\\OCA\\DAV\\Events\\SubscriptionDeletedEvent": [[22, "oca-dav-events-subscriptiondeletedevent"]], "\\OCA\\DAV\\Events\\SubscriptionUpdatedEvent": [[22, "oca-dav-events-subscriptionupdatedevent"]], "\\OCA\\FederatedFileSharing\\Events\\FederatedShareAddedEvent": [[22, "oca-federatedfilesharing-events-federatedshareaddedevent"]], "\\OCA\\Files\\Event\\LoadAdditionalScriptsEvent": [[22, "oca-files-event-loadadditionalscriptsevent"]], "\\OCA\\Files_Sharing\\Event\\BeforeTemplateRenderedEvent": [[22, "oca-files-sharing-event-beforetemplaterenderedevent"]], "\\OCA\\Files_Trashbin\\Events\\MoveToTrashEvent": [[22, "oca-files-trashbin-events-movetotrashevent"]], "\\OCA\\Settings\\Events\\BeforeTemplateRenderedEvent": [[22, "oca-settings-events-beforetemplaterenderedevent"]], "\\OCA\\User_LDAP\\Events\\GroupBackendRegistered": [[22, "oca-user-ldap-events-groupbackendregistered"]], "\\OCA\\User_LDAP\\Events\\UserBackendRegistered": [[22, "oca-user-ldap-events-userbackendregistered"]], "\\OCA\\Viewer\\Event\\LoadViewer": [[22, "oca-viewer-event-loadviewer"]], "appinfo/info.xml": [[190, "appinfo-info-xml"]], "christophwurst/nextcloud replaced": [[226, "christophwurst-nextcloud-replaced"]], "doctrine/dbal": [[222, "doctrine-dbal"], [224, "doctrine-dbal"], [229, "doctrine-dbal"]], "files": [[231, "files"]], "getLinkWithPicker": [[129, "getlinkwithpicker"]], "guzzlehttp/guzzle": [[222, "guzzlehttp-guzzle"]], "iOS": [[42, "ios"]], "info.xml": [[18, "info-xml"], [95, "info-xml"], [225, "info-xml"], [226, "info-xml"], [227, "info-xml"], [228, "info-xml"], [229, "info-xml"], [230, "info-xml"]], "info.xml requirements": [[210, "info-xml-requirements"]], "jQuery deprecation": [[220, "jquery-deprecation"]], "jQuery update": [[221, "jquery-update"]], "l10n:createjs": [[42, "l10n-createjs"]], "macOS Development Build": [[82, "macos-development-build"]], "migrations:execute": [[40, "migrations-execute"]], "migrations:generate": [[40, "migrations-generate"]], "migrations:migrate": [[40, "migrations-migrate"]], "migrations:preview": [[40, "migrations-preview"]], "migrations:status": [[40, "migrations-status"]], "npm and package.json": [[190, "npm-and-package-json"]], "npm build": [[118, "npm-build"]], "npm packages": [[115, "npm-packages"]], "npm run dev, npm run watch": [[118, "npm-run-dev-npm-run-watch"]], "npm run lint (optional)": [[118, "npm-run-lint-optional"]], "npm test": [[118, "npm-test"]], "occ commands": [[1, null]], "occ \u2014 the command-line tool": [[190, "occ-the-command-line-tool"]], "openAssistantForm options": [[87, "id1"]], "php": [[95, "php"]], "php-cs": [[95, "php-cs"]], "psr/log": [[222, "psr-log"]], "router:list": [[33, "router-list"]], "router:match": [[33, "router-match"]], "sabre/*": [[222, "sabre"]], "symfony/event-dispatcher": [[229, "symfony-event-dispatcher"]]}, "docnames": ["app_development/bootstrap", "app_development/commands", "app_development/dav_extension", "app_development/dependency_management", "app_development/index", "app_development/info", "app_development/init", "app_development/intro", "app_development/translation", "app_development/tutorial", "app_publishing_maintenance/code_signing", "app_publishing_maintenance/index", "app_publishing_maintenance/maintainer", "app_publishing_maintenance/monetizing", "app_publishing_maintenance/publishing", "app_publishing_maintenance/release_automation", "app_publishing_maintenance/release_process", "basics/_available_events_ocp", "basics/backgroundjobs", "basics/caching", "basics/controllers", "basics/dependency_injection", "basics/events", "basics/front-end/css", "basics/front-end/index", "basics/front-end/js", "basics/front-end/templates", "basics/front-end/theming", "basics/index", "basics/logging", "basics/middlewares", "basics/public_share_template", "basics/request_lifecycle", "basics/routing", "basics/setting", "basics/storage/appdata", "basics/storage/configuration", "basics/storage/database", "basics/storage/filesystem", "basics/storage/index", "basics/storage/migrations", "basics/testing", "basics/translations", "client_apis/ClientIntegration/index", "client_apis/LoginFlow/index", "client_apis/OCS/index", "client_apis/OCS/ocs-api-overview", "client_apis/OCS/ocs-assistant-api", "client_apis/OCS/ocs-fulltextsearch-collections-api", "client_apis/OCS/ocs-openapi", "client_apis/OCS/ocs-out-of-office-api", "client_apis/OCS/ocs-recommendations-api", "client_apis/OCS/ocs-share-api", "client_apis/OCS/ocs-sharee-api", "client_apis/OCS/ocs-status-api", "client_apis/OCS/ocs-taskprocessing-api", "client_apis/OCS/ocs-text2image-api", "client_apis/OCS/ocs-textprocessing-api", "client_apis/OCS/ocs-translation-api", "client_apis/OCS/ocs-user-preferences-api", "client_apis/RemoteWipe/index", "client_apis/WebDAV/basic", "client_apis/WebDAV/bulkupload", "client_apis/WebDAV/chunking", "client_apis/WebDAV/comments", "client_apis/WebDAV/index", "client_apis/WebDAV/search", "client_apis/WebDAV/trashbin", "client_apis/WebDAV/versions", "client_apis/activity-api", "client_apis/android_library/examples", "client_apis/android_library/index", "client_apis/android_library/library_installation", "client_apis/files", "client_apis/general", "client_apis/index", "design/components", "design/foundations", "design/index", "design/introduction", "design/layout", "design/writing", "desktop/building", "desktop/index", "digging_deeper/ai", "digging_deeper/api", "digging_deeper/apis", "digging_deeper/assistant_integration", "digging_deeper/auth", "digging_deeper/classloader", "digging_deeper/config/appconfig", "digging_deeper/config/index", "digging_deeper/config/lexicon", "digging_deeper/config/userconfig", "digging_deeper/context_chat", "digging_deeper/continuous_integration", "digging_deeper/dashboard", "digging_deeper/deadlock", "digging_deeper/debugging", "digging_deeper/declarative_settings", "digging_deeper/devtools", "digging_deeper/direct_editing", "digging_deeper/discovery", "digging_deeper/email", "digging_deeper/files-metadata", "digging_deeper/flow", "digging_deeper/groupware/calendar", "digging_deeper/groupware/calendar_provider", "digging_deeper/groupware/contacts_menu", "digging_deeper/groupware/index", "digging_deeper/groupware/mail_provider", "digging_deeper/groupware_workflows", "digging_deeper/http_client", "digging_deeper/index", "digging_deeper/internals", "digging_deeper/javascript-apis", "digging_deeper/machinetranslation", "digging_deeper/notifications", "digging_deeper/npm", "digging_deeper/oidc", "digging_deeper/openmetrics", "digging_deeper/out_of_office", "digging_deeper/performance", "digging_deeper/phonenumberutil", "digging_deeper/profile", "digging_deeper/profiler", "digging_deeper/projects", "digging_deeper/psr", "digging_deeper/publicpage", "digging_deeper/reference", "digging_deeper/repair", "digging_deeper/rest_apis", "digging_deeper/search", "digging_deeper/security", "digging_deeper/settings", "digging_deeper/setup_checks", "digging_deeper/snowflake_ids", "digging_deeper/speech-to-text", "digging_deeper/status", "digging_deeper/talk", "digging_deeper/task_processing", "digging_deeper/text2image", "digging_deeper/text_processing", "digging_deeper/time", "digging_deeper/two-factor-provider", "digging_deeper/user_migration", "digging_deeper/users", "digging_deeper/web_host_metadata", "digging_deeper/webdav_collection_preload", "exapp_development/DevSetup", "exapp_development/Introduction", "exapp_development/development_overview/ExAppDevelopmentSteps", "exapp_development/development_overview/ExAppHarpIntegration", "exapp_development/development_overview/ExAppLifecycle", "exapp_development/development_overview/ExAppOverview", "exapp_development/development_overview/index", "exapp_development/faq/BehindCompanyProxy", "exapp_development/faq/DockerContainerRegistry", "exapp_development/faq/DockerSocketProxy", "exapp_development/faq/GpuSupport", "exapp_development/faq/Scaling", "exapp_development/faq/Troubleshooting", "exapp_development/faq/index", "exapp_development/index", "exapp_development/tech_details/Authentication", "exapp_development/tech_details/Deployment", "exapp_development/tech_details/InstallationFlow", "exapp_development/tech_details/Translations", "exapp_development/tech_details/api/appconfig", "exapp_development/tech_details/api/events_listener", "exapp_development/tech_details/api/exapp", "exapp_development/tech_details/api/fileactionsmenu", "exapp_development/tech_details/api/index", "exapp_development/tech_details/api/logging", "exapp_development/tech_details/api/notifications", "exapp_development/tech_details/api/occ_command", "exapp_development/tech_details/api/other_ocs", "exapp_development/tech_details/api/preferences", "exapp_development/tech_details/api/routes", "exapp_development/tech_details/api/settings", "exapp_development/tech_details/api/talkbots", "exapp_development/tech_details/api/topmenu", "exapp_development/tech_details/api/utils", "exapp_development/tech_details/index", "getting_started/coding_standards/html_css", "getting_started/coding_standards/index", "getting_started/coding_standards/javascript", "getting_started/coding_standards/php", "getting_started/development_process", "getting_started/devenv", "getting_started/glossary", "getting_started/index", "how_to/index", "html_css_design/content", "html_css_design/css", "html_css_design/html", "html_css_design/icons", "html_css_design/index", "html_css_design/list", "html_css_design/navigation", "html_css_design/popovermenu", "index", "prologue/bugtracker/codereviews", "prologue/bugtracker/index", "prologue/bugtracker/triaging", "prologue/code-of-conduct", "prologue/compatibility_app_ecosystem", "prologue/help_communication", "prologue/index", "prologue/security", "release_notes/critical_changes", "release_notes/deprecations", "release_notes/index", "release_notes/new", "release_notes/previous/index", "release_notes/previous/upgrade_to_14", "release_notes/previous/upgrade_to_15", "release_notes/previous/upgrade_to_16", "release_notes/previous/upgrade_to_17", "release_notes/previous/upgrade_to_18", "release_notes/previous/upgrade_to_19", "release_notes/previous/upgrade_to_20", "release_notes/previous/upgrade_to_21", "release_notes/previous/upgrade_to_22", "release_notes/previous/upgrade_to_23", "release_notes/previous/upgrade_to_24", "release_notes/previous/upgrade_to_25", "release_notes/previous/upgrade_to_26", "release_notes/previous/upgrade_to_27", "release_notes/previous/upgrade_to_28", "release_notes/previous/upgrade_to_29", "release_notes/previous/upgrade_to_30", "release_notes/previous/upgrade_to_31", "release_notes/previous/upgrade_to_32", "release_notes/previous/upgrade_to_33", "release_notes/previous/upgrade_to_34", "server/architecture/files", "server/architecture/index", "server/code-back-end", "server/code-front-end", "server/externalapi", "server/index", "server/static-analysis", "server/unit-testing"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2}, "filenames": ["app_development/bootstrap.rst", "app_development/commands.rst", "app_development/dav_extension.rst", "app_development/dependency_management.rst", "app_development/index.rst", "app_development/info.rst", "app_development/init.rst", "app_development/intro.rst", "app_development/translation.rst", "app_development/tutorial.rst", "app_publishing_maintenance/code_signing.rst", "app_publishing_maintenance/index.rst", "app_publishing_maintenance/maintainer.rst", "app_publishing_maintenance/monetizing.rst", "app_publishing_maintenance/publishing.rst", "app_publishing_maintenance/release_automation.rst", "app_publishing_maintenance/release_process.rst", "basics/_available_events_ocp.rst", "basics/backgroundjobs.rst", "basics/caching.rst", "basics/controllers.rst", "basics/dependency_injection.rst", "basics/events.rst", "basics/front-end/css.rst", "basics/front-end/index.rst", "basics/front-end/js.rst", "basics/front-end/templates.rst", "basics/front-end/theming.rst", "basics/index.rst", "basics/logging.rst", "basics/middlewares.rst", "basics/public_share_template.rst", "basics/request_lifecycle.rst", "basics/routing.rst", "basics/setting.rst", "basics/storage/appdata.rst", "basics/storage/configuration.rst", "basics/storage/database.rst", "basics/storage/filesystem.rst", "basics/storage/index.rst", "basics/storage/migrations.rst", "basics/testing.rst", "basics/translations.rst", "client_apis/ClientIntegration/index.rst", "client_apis/LoginFlow/index.rst", "client_apis/OCS/index.rst", "client_apis/OCS/ocs-api-overview.rst", "client_apis/OCS/ocs-assistant-api.rst", "client_apis/OCS/ocs-fulltextsearch-collections-api.rst", "client_apis/OCS/ocs-openapi.rst", "client_apis/OCS/ocs-out-of-office-api.rst", "client_apis/OCS/ocs-recommendations-api.rst", "client_apis/OCS/ocs-share-api.rst", "client_apis/OCS/ocs-sharee-api.rst", "client_apis/OCS/ocs-status-api.rst", "client_apis/OCS/ocs-taskprocessing-api.rst", "client_apis/OCS/ocs-text2image-api.rst", "client_apis/OCS/ocs-textprocessing-api.rst", "client_apis/OCS/ocs-translation-api.rst", "client_apis/OCS/ocs-user-preferences-api.rst", "client_apis/RemoteWipe/index.rst", "client_apis/WebDAV/basic.rst", "client_apis/WebDAV/bulkupload.rst", "client_apis/WebDAV/chunking.rst", "client_apis/WebDAV/comments.rst", "client_apis/WebDAV/index.rst", "client_apis/WebDAV/search.rst", "client_apis/WebDAV/trashbin.rst", "client_apis/WebDAV/versions.rst", "client_apis/activity-api.rst", "client_apis/android_library/examples.rst", "client_apis/android_library/index.rst", "client_apis/android_library/library_installation.rst", "client_apis/files.rst", "client_apis/general.rst", "client_apis/index.rst", "design/components.rst", "design/foundations.rst", "design/index.rst", "design/introduction.rst", "design/layout.rst", "design/writing.rst", "desktop/building.rst", "desktop/index.rst", "digging_deeper/ai.rst", "digging_deeper/api.rst", "digging_deeper/apis.rst", "digging_deeper/assistant_integration.rst", "digging_deeper/auth.rst", "digging_deeper/classloader.rst", "digging_deeper/config/appconfig.rst", "digging_deeper/config/index.rst", "digging_deeper/config/lexicon.rst", "digging_deeper/config/userconfig.rst", "digging_deeper/context_chat.rst", "digging_deeper/continuous_integration.rst", "digging_deeper/dashboard.rst", "digging_deeper/deadlock.rst", "digging_deeper/debugging.rst", "digging_deeper/declarative_settings.rst", "digging_deeper/devtools.rst", "digging_deeper/direct_editing.rst", "digging_deeper/discovery.rst", "digging_deeper/email.rst", "digging_deeper/files-metadata.rst", "digging_deeper/flow.rst", "digging_deeper/groupware/calendar.rst", "digging_deeper/groupware/calendar_provider.rst", "digging_deeper/groupware/contacts_menu.rst", "digging_deeper/groupware/index.rst", "digging_deeper/groupware/mail_provider.rst", "digging_deeper/groupware_workflows.rst", "digging_deeper/http_client.rst", "digging_deeper/index.rst", "digging_deeper/internals.rst", "digging_deeper/javascript-apis.rst", "digging_deeper/machinetranslation.rst", "digging_deeper/notifications.rst", "digging_deeper/npm.rst", "digging_deeper/oidc.rst", "digging_deeper/openmetrics.rst", "digging_deeper/out_of_office.rst", "digging_deeper/performance.rst", "digging_deeper/phonenumberutil.rst", "digging_deeper/profile.rst", "digging_deeper/profiler.rst", "digging_deeper/projects.rst", "digging_deeper/psr.rst", "digging_deeper/publicpage.rst", "digging_deeper/reference.rst", "digging_deeper/repair.rst", "digging_deeper/rest_apis.rst", "digging_deeper/search.rst", "digging_deeper/security.rst", "digging_deeper/settings.rst", "digging_deeper/setup_checks.rst", "digging_deeper/snowflake_ids.rst", "digging_deeper/speech-to-text.rst", "digging_deeper/status.rst", "digging_deeper/talk.rst", "digging_deeper/task_processing.rst", "digging_deeper/text2image.rst", "digging_deeper/text_processing.rst", "digging_deeper/time.rst", "digging_deeper/two-factor-provider.rst", "digging_deeper/user_migration.rst", "digging_deeper/users.rst", "digging_deeper/web_host_metadata.rst", "digging_deeper/webdav_collection_preload.rst", "exapp_development/DevSetup.rst", "exapp_development/Introduction.rst", "exapp_development/development_overview/ExAppDevelopmentSteps.rst", "exapp_development/development_overview/ExAppHarpIntegration.rst", "exapp_development/development_overview/ExAppLifecycle.rst", "exapp_development/development_overview/ExAppOverview.rst", "exapp_development/development_overview/index.rst", "exapp_development/faq/BehindCompanyProxy.rst", "exapp_development/faq/DockerContainerRegistry.rst", "exapp_development/faq/DockerSocketProxy.rst", "exapp_development/faq/GpuSupport.rst", "exapp_development/faq/Scaling.rst", "exapp_development/faq/Troubleshooting.rst", "exapp_development/faq/index.rst", "exapp_development/index.rst", "exapp_development/tech_details/Authentication.rst", "exapp_development/tech_details/Deployment.rst", "exapp_development/tech_details/InstallationFlow.rst", "exapp_development/tech_details/Translations.rst", "exapp_development/tech_details/api/appconfig.rst", "exapp_development/tech_details/api/events_listener.rst", "exapp_development/tech_details/api/exapp.rst", "exapp_development/tech_details/api/fileactionsmenu.rst", "exapp_development/tech_details/api/index.rst", "exapp_development/tech_details/api/logging.rst", "exapp_development/tech_details/api/notifications.rst", "exapp_development/tech_details/api/occ_command.rst", "exapp_development/tech_details/api/other_ocs.rst", "exapp_development/tech_details/api/preferences.rst", "exapp_development/tech_details/api/routes.rst", "exapp_development/tech_details/api/settings.rst", "exapp_development/tech_details/api/talkbots.rst", "exapp_development/tech_details/api/topmenu.rst", "exapp_development/tech_details/api/utils.rst", "exapp_development/tech_details/index.rst", "getting_started/coding_standards/html_css.rst", "getting_started/coding_standards/index.rst", "getting_started/coding_standards/javascript.rst", "getting_started/coding_standards/php.rst", "getting_started/development_process.rst", "getting_started/devenv.rst", "getting_started/glossary.rst", "getting_started/index.rst", "how_to/index.rst", "html_css_design/content.rst", "html_css_design/css.rst", "html_css_design/html.rst", "html_css_design/icons.rst", "html_css_design/index.rst", "html_css_design/list.rst", "html_css_design/navigation.rst", "html_css_design/popovermenu.rst", "index.rst", "prologue/bugtracker/codereviews.rst", "prologue/bugtracker/index.rst", "prologue/bugtracker/triaging.rst", "prologue/code-of-conduct.rst", "prologue/compatibility_app_ecosystem.rst", "prologue/help_communication.rst", "prologue/index.rst", "prologue/security.rst", "release_notes/critical_changes.rst", "release_notes/deprecations.rst", "release_notes/index.rst", "release_notes/new.rst", "release_notes/previous/index.rst", "release_notes/previous/upgrade_to_14.rst", "release_notes/previous/upgrade_to_15.rst", "release_notes/previous/upgrade_to_16.rst", "release_notes/previous/upgrade_to_17.rst", "release_notes/previous/upgrade_to_18.rst", "release_notes/previous/upgrade_to_19.rst", "release_notes/previous/upgrade_to_20.rst", "release_notes/previous/upgrade_to_21.rst", "release_notes/previous/upgrade_to_22.rst", "release_notes/previous/upgrade_to_23.rst", "release_notes/previous/upgrade_to_24.rst", "release_notes/previous/upgrade_to_25.rst", "release_notes/previous/upgrade_to_26.rst", "release_notes/previous/upgrade_to_27.rst", "release_notes/previous/upgrade_to_28.rst", "release_notes/previous/upgrade_to_29.rst", "release_notes/previous/upgrade_to_30.rst", "release_notes/previous/upgrade_to_31.rst", "release_notes/previous/upgrade_to_32.rst", "release_notes/previous/upgrade_to_33.rst", "release_notes/previous/upgrade_to_34.rst", "server/architecture/files.rst", "server/architecture/index.rst", "server/code-back-end.rst", "server/code-front-end.rst", "server/externalapi.rst", "server/index.rst", "server/static-analysis.rst", "server/unit-testing.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 2, 3, 5, 8, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 29, 30, 32, 33, 36, 37, 38, 42, 43, 44, 45, 49, 50, 56, 57, 58, 61, 64, 66, 69, 73, 74, 76, 77, 79, 82, 90, 92, 94, 95, 96, 98, 101, 105, 106, 107, 108, 110, 112, 115, 116, 118, 121, 122, 124, 125, 129, 130, 132, 133, 134, 136, 137, 139, 140, 141, 142, 144, 147, 148, 151, 152, 153, 165, 166, 167, 170, 174, 175, 181, 185, 186, 187, 188, 189, 190, 192, 199, 204, 206, 209, 222, 223, 224, 228, 229, 231, 232, 233, 239], "0": [1, 3, 5, 6, 7, 14, 16, 17, 20, 21, 22, 25, 29, 34, 40, 43, 44, 46, 48, 49, 50, 52, 55, 56, 57, 61, 64, 66, 69, 70, 72, 82, 87, 89, 90, 94, 95, 96, 97, 98, 99, 100, 104, 107, 108, 113, 116, 118, 120, 121, 122, 124, 129, 130, 131, 132, 134, 137, 139, 140, 141, 142, 143, 145, 148, 149, 153, 155, 165, 166, 168, 170, 171, 175, 177, 179, 181, 185, 186, 187, 188, 192, 194, 199, 210, 215, 216, 217, 218, 223, 224, 229, 232, 233, 234, 239, 240], "00": [20, 61, 66, 69, 76, 139], "000": [2, 37], "000000": 46, "00000007oc9l3j5ur4db": 61, "00000259oczn5x60nrdu": 61, "00001": 63, "00002": 63, "0020": 42, "00293f": 194, "005416": 194, "005a8a": 194, "0066ac": 194, "00679e": 194, "0077c7": 194, "0082c9": 46, "00a0": 42, "00z": 66, "01": [20, 61, 64, 66, 96, 187], "01t00": 61, "01t17": 66, "03": 96, "04": 139, "044": 123, "04c36b75222cd9fd47f2607333029106": 61, "04z": 96, "05": [61, 129], "050": 136, "07": 139, "08": 243, "09": 97, "099f05": 194, "0e53dfb6": 61, "1": [0, 1, 2, 3, 5, 7, 14, 15, 16, 17, 20, 21, 22, 25, 29, 30, 33, 37, 39, 43, 44, 46, 48, 52, 57, 61, 62, 63, 64, 66, 69, 70, 72, 74, 87, 89, 95, 96, 98, 99, 101, 104, 106, 108, 116, 118, 120, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 145, 147, 148, 149, 152, 153, 154, 155, 158, 165, 166, 168, 170, 175, 177, 181, 185, 186, 187, 190, 192, 194, 198, 199, 202, 204, 209, 215, 217, 222, 223, 224, 231, 232, 233, 240], "10": [20, 34, 46, 52, 58, 61, 64, 69, 82, 96, 99, 104, 129, 130, 136, 140, 142, 153, 179, 187, 192, 210], "100": [13, 20, 34, 46, 52, 53, 69, 92, 96, 122, 129, 134, 140, 145, 165, 166, 168, 177, 182, 187, 194, 195, 232], "1000": [37, 40, 104], "10000": [63, 122], "10000000": 66, "100644": [154, 192], "100kib": 145, "100m": [79, 194], "100px": 77, "1024px": 194, "1025": 192, "1084": 168, "10mb": [63, 66], "10min": 142, "10z": 96, "11": [21, 46, 69, 82, 96, 100, 113, 140, 210, 223, 239], "113": 194, "114": 194, "116": 198, "12": [23, 46, 61, 64, 123, 129, 136, 140, 152, 210], "120": 179, "120m": 179, "121": 202, "123": [87, 104, 168, 171, 174, 175, 177, 186, 194], "1234": [104, 107, 132], "12345": [66, 92, 165, 175], "124": [129, 171], "125": 171, "127": [98, 192], "1270351409912": 122, "127815235": 61, "12px": [77, 194], "13": [136, 139, 140], "130000000": 129, "1337": 120, "139": 192, "13px": 77, "13t12": 96, "14": [64, 96, 139, 140, 144, 193, 214, 233, 234], "141": 198, "144": 198, "146": 202, "14px": [20, 200], "15": [17, 22, 61, 140, 143, 144, 153, 214], "150": [69, 192], "15000000": 63, "151": 198, "152": [87, 192, 198], "1547545326": 63, "1553": 132, "156": 198, "1575981518": 136, "1578283711000": 46, "15px": [77, 194], "16": [17, 22, 42, 48, 52, 61, 64, 124, 185, 214, 234], "163": 194, "1675789581": 61, "168": 192, "16px": 194, "17": [17, 22, 46, 192, 214, 227, 229, 234], "1711545301": 87, "1711545302": 87, "1711545303": 87, "1711545305": 87, "172": 192, "1728000": 131, "173": 194, "1742": 104, "18": [17, 22, 29, 64, 101, 214, 218, 234], "1800": 123, "19": [16, 17, 22, 127, 152, 187, 214, 233, 234, 235], "192": [192, 198], "197": 198, "1970": 61, "19z": 96, "1_linux_": 152, "1_linux_amd64": 152, "1_linux_arm64": 152, "1e1": 187, "1e2": 187, "1min": 140, "1px": 194, "1snze11cibf6v6dsz": 10, "1st": 46, "1st_user": 46, "2": [1, 3, 5, 14, 15, 16, 17, 20, 22, 29, 39, 46, 48, 52, 56, 57, 58, 61, 62, 63, 64, 77, 85, 87, 101, 104, 106, 107, 123, 125, 127, 129, 132, 140, 141, 142, 152, 154, 165, 177, 185, 186, 187, 192, 194, 195, 198, 199, 202, 204, 210, 221, 222, 229, 232, 233, 234, 243], "20": [17, 21, 22, 30, 37, 44, 46, 56, 57, 61, 64, 100, 113, 132, 214, 222, 228, 229, 230, 232, 233, 234, 235], "200": [43, 44, 48, 49, 50, 51, 52, 54, 56, 57, 58, 59, 60, 69, 96, 101, 104, 129, 153, 170, 173, 240], "2001": [5, 95, 108, 130], "2008": 243, "2012": 129, "2014": [129, 222], "2015": [20, 69], "2016": [64, 185], "2018": 97, "2019": [82, 136], "2020": 15, "20200101t170000z": 107, "20200130t170000z": 107, "20200130t180000z": 107, "2021": [66, 96], "2022": [61, 82, 96], "2023": 228, "2024": [42, 185], "20240101120000": 190, "2026": 139, "2034": 40, "204": 69, "20632824998": 46, "20cat": 132, "20cute": 132, "20music": 70, "20px": [77, 184], "20st": 132, "20standard": 228, "20t12": 69, "20thcenturystudio": 129, "21": [17, 22, 127, 132, 147, 152, 214, 225, 233], "21474836480": 46, "2153599501": 122, "2156": 64, "216": 198, "219": 194, "22": [17, 22, 29, 64, 127, 214, 226, 229, 231, 233, 234], "222222": 194, "22t15": 96, "23": [16, 34, 37, 61, 69, 124, 127, 210, 214, 227, 234], "231": 198, "2345": 153, "24": [16, 17, 18, 22, 29, 37, 63, 64, 97, 125, 145, 179, 210, 214, 231, 233, 239], "240": 48, "2401fed2eea6f2c1027c482a633e8e25cd46701f811e2d2c10dc213fd95fa60e350b": 10, "2404date20220903071748": 40, "2432": 166, "24px": [76, 77, 194, 231], "25": [16, 17, 22, 25, 58, 129, 132, 145, 188, 196, 214, 227, 228, 234], "255": 194, "256": [5, 61], "25px": 194, "26": [16, 17, 20, 22, 30, 43, 58, 69, 116, 122, 129, 143, 214, 229], "26e7beeca3c0": 63, "27": [16, 17, 18, 20, 22, 34, 37, 48, 57, 73, 96, 97, 107, 127, 137, 142, 145, 146, 214, 227, 229, 230, 231, 234], "277": 156, "28": [2, 17, 20, 21, 22, 29, 37, 48, 49, 50, 56, 57, 104, 121, 132, 141, 142, 171, 188, 210, 214, 232], "282": 132, "29": [5, 17, 20, 22, 33, 40, 61, 90, 99, 116, 122, 132, 137, 143, 179, 214, 231, 232], "2fa": [61, 144], "2g": 227, "2nd": 46, "2nd_user": 46, "2px": 194, "2xx": 49, "3": [5, 8, 14, 15, 16, 20, 29, 30, 33, 35, 37, 39, 41, 43, 46, 52, 61, 64, 69, 70, 76, 82, 87, 90, 96, 97, 100, 101, 113, 128, 129, 139, 140, 141, 142, 152, 154, 155, 185, 186, 188, 189, 192, 194, 202, 204, 210, 222, 224, 225, 231, 232, 234, 238, 240, 243], "30": [17, 20, 22, 37, 40, 52, 55, 57, 64, 69, 116, 127, 129, 131, 137, 140, 141, 142, 149, 153, 214, 233, 234], "300m": 194, "300px": [194, 199], "3030237": 61, "304": 69, "3097fca9b1ec8942c4305e550ef1b50a": 129, "31": [5, 17, 22, 52, 61, 69, 70, 90, 93, 127, 171, 198, 214, 229, 234], "310": 87, "3166": 123, "32": [2, 5, 17, 22, 48, 61, 92, 94, 96, 99, 132, 139, 152, 168, 177, 194, 214, 228], "32060": 226, "3209": 96, "321": 177, "3285b1": 194, "32866": 228, "32bit": 227, "32px": 76, "32x32": 69, "33": [17, 22, 43, 90, 120, 136, 139, 140, 214], "333": 96, "33333344": 194, "34": [40, 96, 101, 139, 211, 214], "34081": 226, "34302": 97, "34329": 227, "34490": 227, "3456": 61, "34773": 228, "34807": 227, "34893": 227, "34px": [77, 194, 231], "35": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243], "35789": 227, "35872": 228, "35966": 227, "36": 43, "3600": [18, 19], "36033": 227, "36073": 227, "36114": 227, "36198": 227, "36310": 227, "36363": 227, "36393": 227, "364": 69, "36434": 227, "3650": 192, "36591": 228, "36665": 228, "36836": 228, "369": 104, "36c3": 105, "37040": 228, "37316": 228, "37324": 228, "37542": 228, "37674": 228, "37820": 97, "37835": 228, "37929": 228, "37943": 228, "37955": 228, "38": 136, "38003": 228, "38030": [97, 228], "38104": 228, "389": 129, "3927bf23": 192, "3950773": 61, "3986": 44, "39th": 132, "39z": 96, "3rd": [3, 8, 46, 89, 95, 127, 132, 151, 154, 233], "3rd_user": 46, "3rdparti": [151, 192, 222, 227, 229], "4": [5, 15, 16, 29, 37, 42, 46, 48, 52, 61, 87, 89, 100, 101, 113, 118, 139, 140, 141, 142, 152, 154, 155, 185, 186, 187, 188, 192, 210, 220, 222, 225, 228, 230, 233, 234], "40": [153, 179], "400": [49, 50, 52, 54, 57, 58, 59, 192], "401": [50, 59, 60, 61, 161, 178, 240], "403": [44, 52, 60, 69, 101, 223], "403354469": 129, "404": [44, 49, 50, 52, 54, 56, 57, 69, 104, 128, 153, 165, 166, 170, 240], "4052412": 61, "409": 129, "4096": [10, 192], "40email": 46, "40m": 179, "41": [123, 198], "412": [56, 57, 58, 228], "41446681800": 123, "42": [29, 46, 69, 112, 120, 125, 195], "42513563": 154, "429": [20, 56, 57, 58, 133], "44": [76, 123], "441": 136, "4423": 63, "443": 192, "4433": 192, "444444": 194, "445": 192, "44px": [199, 231], "44x44px": 96, "45": 194, "46f0": 61, "483c1e56f95e88835747b1c7c60581215016cbf2": 15, "487903ffcf4": 192, "48px": 194, "49": [69, 123], "4918": 61, "49279cc7": 192, "4e43": 106, "4e4672cs58q": 243, "4efe": 63, "4px": [77, 194, 232], "4xx": 49, "5": [5, 20, 37, 49, 56, 57, 64, 66, 69, 76, 79, 95, 97, 118, 125, 132, 133, 140, 155, 165, 187, 194, 200, 217, 231, 233, 243], "50": [48, 69, 132, 134, 136], "500": [101, 178], "500px": 194, "501": [153, 165, 166], "503": [74, 228], "507": 63, "509": 10, "50ef2eba7b74aa84feff013efee2a5ef": 61, "50k": 92, "50px": 194, "512": [10, 145], "51803": 235, "55": 132, "55548cc16b457cd74241990cc9d3b72b6335f2e5f45eee95171da024087d114fcbc2": 10, "555555": 46, "565656": 107, "567": 132, "59": 198, "595959": 194, "597996": 48, "5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f": 15, "5gb": 63, "5mb": 63, "6": [5, 16, 19, 46, 52, 61, 82, 140, 154, 155, 192, 194, 200, 210], "60": [46, 96, 124, 133, 140, 179], "600": 152, "60m": 179, "61": 152, "61b4": 61, "64": [5, 19, 40, 93, 96, 136], "640": 48, "6436d084d4805": 61, "64px": 76, "65": [118, 194], "664700": 194, "668": 123, "67": [154, 166], "6768789079123765868": 136, "68": 129, "6b6b6b": 194, "6h": 19, "7": [5, 15, 16, 43, 46, 52, 61, 82, 96, 122, 154, 192, 199, 210, 215, 216, 217, 222, 225, 229, 233], "70": [34, 69], "7000": 192, "70981": 129, "72": 198, "7222": 235, "728": 227, "7520": 235, "7641": 235, "77": 194, "79": [154, 195], "7d7d7d": 194, "8": [5, 16, 17, 20, 22, 46, 48, 52, 56, 61, 62, 64, 66, 81, 97, 104, 107, 141, 143, 154, 194, 198, 210, 233, 243], "80": [134, 185], "8025": 192, "8080": 156, "817c": 106, "8400ba9c": 192, "842011482": 46, "8443": 133, "86": 154, "8601": [61, 69], "87": 96, "878": 129, "88": 154, "8904": 215, "8910": 104, "8a0000": 194, "8aa06618": 154, "8px": [77, 194, 232], "9": [5, 17, 22, 25, 49, 61, 76, 96, 118, 139, 210, 217, 231, 235, 238, 240], "90": [107, 165], "9000": [98, 192], "92": 46, "9261": 132, "95": 192, "96": 198, "9648": 129, "97": 198, "98": 34, "983": 177, "9876": 243, "99": [134, 199], "9940": 223, "996": 240, "9980": 192, "999": [199, 240], "9d52": 106, "A": [3, 5, 10, 16, 18, 19, 20, 21, 22, 29, 32, 35, 41, 42, 44, 46, 49, 57, 58, 62, 63, 69, 76, 77, 81, 87, 89, 90, 92, 94, 95, 96, 101, 105, 106, 107, 116, 122, 124, 126, 128, 129, 130, 132, 134, 137, 138, 139, 140, 141, 142, 145, 146, 147, 156, 185, 190, 199, 202, 206, 209, 222, 226, 228, 231, 233, 236, 240, 243], "AND": [122, 129], "AS": [152, 210], "And": [15, 18, 35, 61, 62, 63, 99, 125, 129, 154, 185, 204, 234], "As": [15, 18, 20, 22, 29, 37, 46, 61, 70, 101, 107, 122, 126, 128, 129, 131, 134, 135, 144, 149, 160, 185, 195, 198, 202, 215, 220, 221, 222, 224, 227, 234], "At": [0, 14, 16, 43, 66, 69, 105, 107], "BY": [37, 210], "Be": [3, 10, 25, 44, 81, 115, 122, 204, 240], "Being": 14, "But": [22, 40, 42, 44, 129, 130, 158, 204, 222, 232], "By": [10, 17, 20, 21, 22, 37, 48, 49, 52, 61, 82, 97, 98, 99, 104, 130, 131, 139, 140, 152, 158, 199], "For": [1, 2, 3, 6, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 25, 29, 30, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44, 46, 49, 52, 61, 63, 64, 66, 69, 71, 76, 77, 79, 80, 81, 82, 87, 90, 95, 98, 99, 105, 106, 107, 110, 115, 118, 124, 125, 129, 131, 132, 133, 134, 137, 140, 141, 142, 144, 145, 149, 151, 152, 154, 156, 158, 159, 165, 166, 167, 169, 175, 185, 186, 187, 188, 190, 192, 194, 196, 199, 200, 204, 205, 214, 221, 222, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 239, 243], "IF": 14, "IN": 37, "If": [2, 3, 5, 8, 10, 13, 14, 15, 16, 17, 20, 21, 22, 25, 29, 30, 32, 33, 34, 37, 38, 40, 42, 43, 44, 46, 48, 49, 50, 54, 56, 59, 61, 63, 64, 69, 71, 74, 76, 79, 81, 82, 85, 87, 89, 90, 92, 93, 95, 96, 104, 105, 106, 107, 108, 110, 115, 116, 118, 119, 121, 122, 128, 129, 130, 131, 132, 135, 137, 138, 140, 141, 142, 144, 145, 149, 150, 151, 152, 156, 159, 161, 162, 165, 166, 170, 171, 173, 185, 187, 188, 189, 190, 193, 196, 198, 199, 200, 202, 203, 204, 209, 210, 217, 220, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 239, 240, 243], "In": [0, 1, 2, 3, 8, 10, 15, 16, 18, 20, 21, 22, 25, 28, 29, 32, 33, 34, 35, 37, 40, 42, 44, 46, 49, 54, 60, 61, 74, 76, 82, 85, 90, 95, 96, 97, 105, 106, 107, 116, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 136, 137, 140, 141, 142, 144, 148, 152, 154, 158, 159, 160, 163, 164, 166, 167, 185, 186, 188, 190, 198, 199, 202, 204, 210, 211, 217, 222, 223, 224, 225, 227, 228, 229, 231, 232, 233, 234, 242, 243], "It": [3, 8, 10, 15, 16, 17, 20, 21, 22, 25, 27, 30, 31, 33, 34, 36, 37, 42, 43, 46, 49, 50, 52, 61, 63, 64, 69, 71, 76, 79, 82, 85, 87, 89, 90, 96, 97, 98, 104, 106, 107, 115, 117, 119, 121, 122, 123, 125, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 141, 145, 151, 152, 153, 154, 156, 158, 162, 165, 170, 177, 185, 186, 189, 190, 192, 194, 199, 204, 206, 209, 213, 222, 223, 227, 228, 229, 231, 232, 233, 234], "Its": [96, 107, 140, 141, 142], "NOT": [45, 52, 153, 198, 231], "No": [42, 44, 59, 61, 69, 76, 87, 96, 98, 133, 135, 145, 185], "Not": [14, 16, 50, 54, 56, 57, 61, 69, 104, 147, 156, 188, 204], "ON": [82, 98], "Of": [18, 107, 141, 142, 204], "On": [37, 44, 48, 61, 77, 82, 93, 98, 106, 127, 128, 129, 154, 168, 177, 193, 198, 212, 218, 220, 243], "One": [15, 49, 81, 107, 110, 120, 122, 135, 171, 199], "Or": [18, 21, 106, 129, 188, 231, 239, 240], "Such": 20, "That": [0, 3, 8, 20, 21, 32, 46, 122, 128, 131, 185, 204], "The": [1, 3, 4, 5, 7, 8, 10, 11, 12, 13, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 76, 77, 79, 80, 81, 82, 85, 87, 89, 90, 92, 93, 95, 97, 98, 99, 103, 104, 105, 106, 108, 109, 110, 112, 113, 115, 116, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 157, 158, 161, 164, 165, 166, 168, 170, 171, 173, 174, 175, 177, 178, 181, 185, 187, 189, 191, 192, 193, 194, 195, 196, 198, 199, 200, 201, 204, 206, 209, 210, 213, 217, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 242, 243], "Then": [7, 8, 10, 15, 20, 21, 22, 82, 94, 106, 107, 120, 129, 134, 146, 149, 189, 192, 239, 243], "There": [3, 10, 14, 16, 18, 20, 21, 25, 27, 35, 42, 44, 46, 49, 63, 70, 72, 76, 87, 96, 97, 99, 107, 115, 116, 119, 122, 125, 129, 131, 132, 134, 140, 149, 151, 153, 154, 158, 165, 167, 170, 173, 182, 186, 188, 189, 192, 194, 195, 204, 206, 209, 213, 222, 225, 227, 229, 240], "These": [13, 14, 16, 20, 37, 41, 42, 47, 69, 76, 82, 98, 107, 108, 122, 124, 128, 131, 132, 154, 179, 202, 206, 209, 214, 233, 234, 243], "To": [0, 2, 3, 8, 9, 12, 13, 14, 15, 17, 20, 21, 22, 25, 26, 30, 33, 34, 37, 40, 42, 43, 44, 45, 46, 47, 49, 52, 61, 63, 67, 68, 69, 73, 75, 76, 77, 82, 84, 85, 90, 93, 94, 96, 98, 99, 101, 104, 106, 107, 110, 113, 115, 116, 118, 123, 125, 128, 129, 130, 131, 132, 135, 136, 140, 142, 144, 146, 149, 152, 154, 156, 159, 165, 166, 167, 169, 171, 175, 176, 180, 181, 189, 190, 195, 199, 202, 204, 209, 210, 220, 222, 229, 232, 233, 234, 236, 239, 240, 243], "Will": [27, 42, 123, 135, 140, 218], "With": [0, 18, 21, 22, 40, 43, 46, 92, 99, 106, 107, 122, 132, 140, 176, 226, 227, 228, 232], "_": [20, 26, 36, 54, 134, 154, 167, 190, 231], "__construct": [0, 1, 18, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 49, 90, 96, 99, 101, 103, 104, 106, 107, 108, 110, 112, 116, 120, 124, 126, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 145, 146, 147, 190], "__dir__": [0, 3, 89], "__webpack_nonce__": [154, 231], "__webpack_public_path__": 154, "_capabl": 218, "_cooki": 20, "_data": 154, "_different_": 209, "_env": 20, "_file": 20, "_get": 209, "_n": [154, 167], "_pkei": 37, "_post": 21, "_rout": 230, "_sensitive_": 93, "_server": 20, "_session": 20, "_user": 46, "a011fe619bcf6e77ddebc96f9908e1af4071b9c1": 15, "a2xityipixkscripb": 10, "a37200": 194, "a9cd": 63, "a_valu": 92, "aa": [79, 164], "aa_vers": 165, "aaaaaa": 46, "aarch64": 152, "abbrevi": [33, 81, 186], "abc": [25, 43], "abc123": [139, 188], "abcd": 92, "abil": [14, 38, 82, 132, 179, 204, 223], "abl": [15, 16, 20, 82, 95, 104, 107, 129, 131, 135, 151, 156, 160, 188, 204, 209, 215, 220, 233], "abort": [1, 17, 22, 61, 129, 133], "about": [5, 10, 14, 17, 18, 21, 22, 25, 40, 44, 45, 46, 48, 49, 70, 76, 77, 79, 80, 87, 90, 92, 93, 95, 96, 97, 104, 105, 106, 115, 118, 121, 125, 127, 129, 131, 135, 136, 137, 140, 141, 142, 154, 169, 174, 180, 185, 188, 202, 204, 206, 209, 213, 222, 225, 227, 229, 230, 232, 233, 234, 243], "abov": [0, 2, 5, 8, 10, 14, 15, 20, 22, 29, 33, 42, 43, 49, 52, 69, 76, 82, 96, 101, 105, 107, 126, 130, 131, 132, 140, 185, 186, 190, 192, 199, 200, 209, 229, 234], "absenc": [50, 121], "absent": [1, 5, 49], "absolut": [38, 69, 82, 94, 96, 131, 135, 165, 174, 231, 233, 234], "absolutepath": 22, "abstract": [16, 32, 95, 107, 122, 129, 133, 186, 222, 224, 229], "abstractdatacollector": 125, "abstractnodeev": 231, "abstractnodesev": 231, "abstracttaskprocessingev": 140, "abstracttextprocessingev": [141, 142, 231], "abstracttexttoimageev": [141, 231], "abstracttranscriptionev": [137, 231], "ac": 192, "accent": 194, "accept": [1, 8, 20, 29, 32, 40, 45, 46, 61, 64, 76, 85, 87, 95, 96, 112, 129, 131, 135, 164, 165, 166, 178, 192, 199, 213, 215, 229, 234, 240], "accept_languag": 44, "access": [5, 8, 10, 15, 17, 20, 22, 25, 26, 28, 29, 30, 34, 35, 39, 41, 44, 46, 48, 50, 52, 53, 54, 61, 70, 71, 76, 79, 82, 88, 90, 93, 94, 96, 99, 101, 109, 110, 113, 115, 122, 125, 129, 131, 132, 137, 139, 140, 149, 152, 156, 158, 161, 165, 167, 176, 178, 186, 187, 189, 190, 192, 194, 195, 199, 202, 204, 209, 213, 226, 231, 232, 233, 236, 240, 243], "access_level": 178, "accesstoken": 70, "accid": 209, "accommod": 150, "accomplish": 110, "accord": [3, 5, 14, 140, 192, 215], "accordingli": [16, 176, 222, 223], "account": [8, 13, 14, 15, 42, 44, 45, 46, 60, 70, 81, 82, 92, 96, 103, 107, 110, 124, 135, 185, 192, 202, 204, 209, 228, 229, 231, 233], "accountmanag": [124, 229], "accur": [49, 121, 213], "accuraci": 145, "achiev": [20, 62, 107], "acl": 61, "acm": 82, "acpu": 242, "acquir": [19, 29, 86, 113, 132, 146], "acquiremailprovid": 110, "acquiremailservic": 110, "acreateempti": 101, "acreatefromtempl": 101, "across": [19, 20, 37, 49, 76, 81, 94, 101, 118, 148, 190, 199], "act": [0, 6, 21, 22, 101, 105, 115, 117, 222], "action": [10, 11, 14, 20, 22, 29, 34, 38, 42, 48, 61, 70, 75, 77, 78, 88, 90, 95, 96, 101, 105, 106, 107, 109, 113, 115, 126, 135, 138, 140, 149, 150, 151, 166, 170, 172, 175, 183, 189, 194, 199, 204, 206, 209, 227, 229, 231, 232, 233, 234], "action1": 187, "action2": 187, "action_handl": 171, "action_handler_rout": [169, 171], "actionbutton": 87, "actionfactori": 108, "actionhandl": [25, 169, 171], "actioninclud": 233, "actionlabel": 228, "activ": [5, 14, 15, 18, 20, 21, 25, 37, 51, 70, 75, 76, 77, 96, 98, 132, 144, 147, 154, 176, 190, 198, 199, 201, 204, 216, 217, 226, 227, 231, 232, 234, 239], "activat": [88, 113], "activity_id": 69, "activitymanag": [69, 232], "actor": 69, "actorid": 64, "actortyp": 64, "actual": [18, 20, 21, 22, 40, 43, 44, 46, 49, 75, 76, 96, 98, 101, 107, 116, 122, 129, 131, 132, 140, 141, 142, 148, 149, 152, 156, 158, 175, 206, 231], "ad": [4, 5, 8, 13, 14, 16, 17, 18, 20, 22, 25, 28, 29, 30, 33, 37, 39, 43, 46, 48, 49, 50, 54, 55, 56, 57, 58, 61, 63, 69, 71, 73, 76, 82, 89, 90, 92, 93, 94, 96, 99, 101, 104, 105, 107, 110, 116, 118, 120, 121, 122, 127, 131, 132, 134, 136, 137, 140, 141, 142, 144, 146, 152, 160, 166, 185, 190, 199, 204, 206, 220, 222, 223, 226, 238], "adapt": [49, 76, 155, 163, 185, 194, 220, 231], "adb9aa24cbfa8e372c88431d1d99629a": 62, "add": [1, 2, 3, 5, 8, 13, 15, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 33, 34, 37, 38, 40, 42, 43, 45, 52, 69, 70, 76, 81, 82, 89, 94, 96, 101, 104, 105, 106, 108, 115, 118, 120, 122, 125, 126, 128, 129, 131, 132, 134, 135, 136, 140, 144, 152, 154, 156, 165, 167, 169, 172, 185, 188, 192, 193, 195, 198, 199, 200, 202, 204, 206, 209, 210, 222, 225, 229, 231, 232, 233, 234, 239], "add_missing_column": [223, 229], "add_missing_columns_ev": 223, "add_missing_index": [223, 229], "add_missing_indexes_ev": 223, "add_missing_primary_kei": [223, 229], "add_missing_primary_keys_ev": 223, "addact": 108, "addallowedchildsrcdomain": [20, 235], "addallowedconnectdomain": 20, "addallowedfontdomain": 20, "addallowedframedomain": [20, 31], "addallowedimagedomain": 20, "addallowedmediadomain": 20, "addallowedobjectdomain": 20, "addallowedscriptdomain": 20, "addallowedstyledomain": 20, "addargu": 1, "addattende": 106, "addattribut": 132, "addchild": 20, "addcolumn": [37, 40, 136], "addcooki": 20, "adddatatransferprogresslisten": 70, "addev": 22, "addeventlisten": [96, 129], "addfavorit": 229, "addfilecont": 145, "addhead": [20, 30, 31, 45], "addindex": 40, "addinitscript": [25, 229], "addit": [0, 2, 5, 10, 16, 17, 20, 22, 25, 26, 29, 30, 34, 37, 40, 45, 61, 63, 69, 71, 74, 76, 81, 82, 83, 90, 92, 96, 99, 107, 122, 128, 129, 131, 134, 141, 142, 150, 152, 154, 160, 165, 166, 185, 188, 202, 204, 206, 209, 226, 227, 231, 234, 238], "addition": [16, 20, 33, 34, 37, 49, 69, 99, 101, 116, 118, 125, 128, 129, 135, 137, 142, 158, 188, 209, 230, 232, 233], "addjob": 18, "addlink": 147, "addlisten": [22, 126, 138], "addmenuentri": 25, "addmissingcolumnsev": 229, "addmissingindex": 40, "addmissingindicesev": [40, 229], "addmissingindiceslisten": 40, "addmissingprimarykeyev": 229, "addnewfilemenuentri": 229, "addon": 98, "addopt": 1, "addplugin": [2, 229], "addprovid": [17, 22], "address": [20, 22, 27, 44, 46, 52, 76, 81, 106, 108, 110, 150, 156, 161, 185, 192, 212, 233], "addscript": [25, 26, 96, 126, 129, 190, 229, 233], "addsearchcalendar": 106, "addservicelisten": 22, "addstyl": 26, "addtasktyp": [17, 22], "addtocount": 22, "addtransl": [218, 227, 233], "addtwo": 243, "addtwolisten": 22, "addtyp": 37, "adduniqueindex": 37, "addus": [152, 215], "addvendorscript": 233, "adher": 21, "adiscoverablereferenceprovid": 129, "adjust": [2, 3, 16, 17, 22, 40, 46, 95, 130, 139, 140, 154, 167, 189, 194, 210, 213, 222, 223, 225, 229, 230, 231, 232, 234, 238, 243], "adler32": 61, "admin": [5, 8, 10, 14, 16, 17, 19, 20, 22, 28, 34, 42, 46, 48, 49, 52, 61, 62, 81, 82, 83, 88, 90, 103, 113, 122, 134, 135, 140, 146, 149, 151, 153, 161, 174, 178, 179, 181, 182, 190, 192, 206, 209, 231], "admin_audit": [17, 22], "administr": [1, 5, 8, 10, 29, 40, 42, 49, 130, 134, 135, 140, 150, 156, 161, 167, 190, 194, 206, 213, 219, 223, 231], "adminrequir": 181, "adminsect": 134, "adminset": 134, "adopt": [16, 21, 49, 90], "adult": 129, "advanc": [20, 29, 52, 76, 79, 82, 84, 102, 113, 130, 136, 185, 192, 213], "advantag": [10, 19, 28, 44, 151], "adventur": 129, "advertis": [69, 101, 206, 228], "advis": [20, 104, 132, 209], "afefcaf556d98dc7896cca380e181decb609ca44": 15, "affect": [11, 14, 20, 22, 82, 121, 130, 188, 208, 229], "affero": [15, 185], "aforement": 37, "after": [5, 7, 8, 10, 11, 14, 15, 17, 18, 20, 21, 22, 25, 30, 32, 33, 37, 40, 41, 44, 49, 52, 63, 66, 82, 87, 89, 90, 92, 96, 99, 101, 104, 122, 130, 132, 139, 140, 153, 164, 165, 166, 171, 173, 187, 192, 195, 199, 200, 204, 222, 228, 229, 231, 238, 243], "afterappid": [25, 181], "aftercontrol": 30, "afterexcept": 30, "afterward": [8, 32, 46, 49, 63, 89, 90, 94, 95, 149, 228], "ag": [76, 131, 227], "again": [0, 30, 81, 107, 123, 131, 132, 156, 161, 229], "against": [1, 17, 20, 21, 22, 33, 61, 95, 119, 188, 190, 209, 222], "agent": [44, 140], "aggreg": 37, "aggress": 20, "agil": 243, "agnost": [116, 137, 140, 141, 142, 234], "ago": [42, 198], "agpl": [5, 14, 185], "agre": 190, "agreement": 204, "ai": [18, 43, 47, 77, 79, 113, 140, 141, 201, 231], "ai_integration_team": 179, "aim": [14, 79, 96, 115, 185, 204, 206, 218, 240], "aio": 162, "ajax": [209, 232], "alert": [12, 29, 209, 231], "alessandro": 5, "alex": [79, 81, 185], "algorithm": [61, 132, 153], "alia": [40, 104, 210, 231, 232], "alias": [5, 21, 104, 110, 189, 229], "alic": [61, 122, 139, 182], "align": [85, 186, 194, 197, 199, 233], "alik": 21, "aliv": [14, 101, 229], "all": [0, 3, 5, 8, 10, 12, 13, 14, 15, 16, 18, 20, 21, 26, 30, 32, 33, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 48, 50, 51, 53, 56, 57, 58, 59, 60, 61, 63, 64, 66, 67, 68, 69, 70, 72, 73, 76, 77, 79, 81, 82, 85, 89, 90, 93, 94, 95, 96, 97, 98, 101, 104, 105, 106, 108, 110, 115, 118, 119, 121, 122, 125, 126, 128, 129, 130, 132, 135, 139, 140, 141, 142, 144, 149, 150, 151, 152, 153, 156, 158, 159, 160, 165, 166, 169, 170, 171, 172, 178, 181, 186, 187, 188, 189, 190, 192, 194, 198, 199, 200, 202, 204, 205, 209, 210, 211, 215, 222, 226, 227, 228, 229, 230, 231, 232, 233, 235, 236], "allconfig": 232, "allfilenam": 42, "allhead": 112, "allow": [5, 8, 14, 16, 17, 18, 19, 20, 21, 22, 23, 30, 33, 34, 35, 36, 37, 40, 42, 43, 44, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 66, 69, 71, 76, 82, 89, 92, 93, 94, 96, 98, 104, 105, 107, 115, 116, 120, 122, 123, 125, 126, 128, 129, 131, 132, 133, 134, 135, 136, 138, 139, 140, 142, 145, 153, 156, 158, 164, 167, 169, 174, 175, 178, 190, 194, 198, 199, 200, 202, 204, 209, 210, 215, 216, 220, 222, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 240], "allowedapp": 69, "allowenumer": 220, "allowevalscript": [20, 218, 235], "allowevalwasm": 229, "allowinlinescript": 20, "allowinlinestyl": 20, "almost": [35, 76, 132, 140, 190], "alon": [76, 81, 131], "along": [82, 98, 105, 129, 153], "alongsid": 42, "alpha": [5, 16], "alphanumer": 16, "alpin": 152, "alreadi": [16, 17, 22, 33, 40, 48, 49, 70, 73, 82, 90, 96, 97, 101, 107, 125, 126, 134, 156, 179, 185, 188, 189, 190, 195, 202, 204, 209, 220, 222, 228, 229, 231, 233, 234, 240], "also": [0, 5, 8, 10, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 33, 34, 36, 37, 38, 40, 42, 44, 46, 49, 52, 54, 58, 61, 64, 69, 71, 72, 76, 77, 79, 82, 90, 93, 95, 97, 104, 106, 107, 110, 113, 115, 116, 117, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 140, 141, 142, 144, 145, 149, 151, 154, 159, 164, 165, 169, 185, 186, 188, 192, 194, 195, 199, 204, 206, 209, 211, 213, 217, 222, 223, 228, 229, 230, 231, 232, 234, 236, 238, 239, 243], "alt": 226, "alter": [17, 20, 22, 33, 209, 229], "altern": [3, 7, 20, 21, 72, 82, 100, 108, 113, 149], "although": [22, 231], "altogeth": 14, "alwai": [10, 14, 18, 20, 30, 37, 41, 43, 49, 51, 61, 63, 66, 72, 76, 77, 81, 82, 83, 89, 90, 97, 99, 106, 122, 125, 129, 134, 136, 140, 141, 142, 144, 184, 185, 187, 190, 192, 194, 198, 204, 206, 209, 215, 220, 222, 228, 232, 243], "alwaysen": 189, "am": [26, 34, 76, 129, 190, 204], "amass": 37, "ambigu": [81, 90], "amd": [151, 159], "amend": 147, "among": [71, 188, 228], "amount": [38, 61, 97, 122, 204, 209], "an": [1, 2, 3, 4, 5, 6, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 27, 29, 30, 32, 33, 34, 35, 37, 38, 40, 42, 43, 45, 46, 48, 49, 50, 54, 56, 57, 58, 61, 62, 63, 64, 69, 70, 71, 72, 74, 75, 76, 77, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 103, 104, 105, 106, 108, 110, 113, 115, 116, 117, 119, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 135, 137, 138, 139, 141, 142, 145, 146, 147, 149, 153, 154, 155, 156, 159, 161, 162, 164, 165, 166, 167, 169, 170, 173, 175, 178, 179, 180, 181, 185, 187, 188, 189, 190, 192, 194, 195, 198, 199, 202, 203, 204, 206, 209, 213, 220, 221, 222, 223, 227, 228, 229, 231, 232, 233, 234, 235, 236, 238, 240, 243], "analysi": [100, 113, 186, 201, 222, 229, 241], "analyz": [22, 97, 140], "analyzeimag": [140, 233], "anchestor": 217, "android": [43, 70, 72, 75, 79, 101, 131, 201, 203], "andx": 231, "angular": 25, "angularj": [25, 199], "ani": [0, 10, 13, 14, 16, 20, 22, 25, 27, 29, 37, 40, 42, 46, 47, 49, 56, 58, 59, 61, 66, 70, 71, 76, 77, 81, 82, 92, 94, 96, 101, 104, 105, 106, 107, 110, 112, 115, 116, 120, 121, 126, 129, 132, 133, 135, 137, 140, 141, 142, 146, 147, 149, 150, 151, 152, 153, 154, 158, 159, 166, 169, 176, 179, 188, 190, 193, 199, 202, 204, 206, 209, 217, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 236, 240], "anim": [27, 194, 199], "anit": 82, "annot": [20, 28, 34, 37, 49, 115, 128, 131, 209, 231, 238], "annotating_cod": 49, "announc": [64, 233, 234, 235], "announcementcent": 64, "annoy": 209, "anon": 133, "anonratelimit": 20, "anonratethrottl": 20, "anonym": [20, 44, 61, 186], "anoth": [10, 14, 17, 20, 21, 22, 25, 40, 42, 44, 58, 69, 76, 82, 92, 97, 104, 105, 110, 120, 122, 140, 148, 150, 190, 209, 220, 233], "anotherexport": 120, "ansi": [3, 156], "answer": [42, 70, 94, 140, 162, 204, 209, 232], "anti": [21, 122], "anymor": [14, 25, 61, 96, 130, 193, 196, 211, 215, 216, 217, 221, 223, 227, 234], "anyon": [20, 139, 190, 209], "anyrequest": 148, "anyth": [0, 7, 20, 21, 22, 32, 43, 81, 82, 85, 110, 115, 128, 129, 190, 204, 221, 231, 232, 233], "anywai": [40, 223], "anywher": [14, 28, 82, 98, 171], "apach": [5, 189, 204], "apache2": 189, "apart": [33, 42, 122, 232], "apcu": [19, 89], "api": [0, 1, 3, 5, 11, 14, 17, 19, 20, 21, 22, 25, 28, 33, 39, 41, 42, 43, 44, 60, 62, 63, 64, 66, 70, 73, 74, 84, 87, 91, 92, 94, 95, 97, 102, 106, 109, 112, 113, 121, 123, 125, 132, 139, 150, 151, 153, 154, 158, 161, 163, 164, 165, 168, 169, 170, 171, 173, 174, 175, 177, 179, 180, 181, 183, 185, 186, 187, 188, 197, 201, 206, 209, 211, 212, 218, 237, 238, 241], "apicontrol": [21, 33, 43, 49, 131], "apiexcept": 187, "apirequest": [20, 44, 46, 48, 50, 51, 52, 53, 54, 56, 57, 58, 59, 101, 129, 131], "apirout": [20, 33, 43, 190, 230], "apiv2": 69, "apk": 152, "app": [1, 2, 3, 8, 9, 12, 15, 19, 20, 21, 23, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 39, 40, 41, 42, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 57, 59, 61, 64, 69, 70, 71, 72, 73, 75, 76, 77, 79, 80, 82, 85, 87, 88, 90, 93, 94, 95, 96, 99, 100, 101, 102, 104, 106, 107, 108, 110, 112, 113, 116, 117, 118, 119, 122, 124, 126, 128, 130, 131, 133, 134, 135, 137, 139, 140, 141, 142, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 156, 162, 163, 164, 165, 167, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 192, 193, 194, 196, 197, 198, 201, 203, 204, 207, 208, 209, 210, 211, 212, 214, 215, 217, 218, 220, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 236, 239, 240, 243], "app_api": [149, 153, 154, 156, 164, 165, 166, 168, 169, 170, 171, 173, 174, 175, 177, 178, 179, 180, 181, 182], "app_api_ex_app": 174, "app_api_id": 174, "app_api_proxy_url_prefix": 154, "app_api_router_bas": 154, "app_config": 150, "app_display_nam": 165, "app_host": 165, "app_id": [25, 31, 43, 49, 96, 110, 124, 126, 129, 132, 137, 140, 141, 142, 145, 154, 165, 166, 168, 177], "app_nam": 15, "app_path": 7, "app_persistent_storag": [154, 165], "app_port": 165, "app_prefer": 150, "app_private_kei": 15, "app_public_cert": 15, "app_public_crt": 15, "app_python_skeleton": 165, "app_secret": 165, "app_vers": 165, "appapi": [17, 22, 150, 151, 152, 154, 155, 159, 160, 161, 162, 163, 165, 166, 167, 171, 174, 176, 178, 179, 180, 181, 183, 190], "appapiauth": [150, 151, 153, 170, 172, 183], "appconfig": [91, 99, 113, 114, 172, 179, 183, 216, 218, 230, 232, 234], "appconfig_ex": 171, "appdata": [28, 39, 237], "appdomain": 148, "appear": [13, 29, 43, 49, 69, 76, 81, 82, 129, 131, 134, 190, 234, 243], "append": [20, 42, 103, 129, 181, 240], "appendchild": 126, "appfetch": 232, "appframework": [0, 6, 18, 20, 21, 25, 30, 31, 33, 34, 35, 36, 37, 49, 85, 91, 96, 97, 99, 101, 104, 110, 116, 124, 125, 126, 127, 128, 131, 132, 134, 137, 140, 141, 142, 143, 145, 147, 190, 209, 211, 215, 218, 221, 227, 228, 229, 230, 231, 232, 233, 235, 240], "appid": [1, 8, 42, 56, 57, 59, 87, 89, 93, 94, 131, 132, 137, 140, 141, 142, 161, 165, 167, 168, 170, 175, 177, 186, 235], "appinfo": [0, 1, 5, 6, 7, 10, 16, 20, 21, 22, 25, 30, 31, 32, 33, 34, 36, 37, 41, 43, 49, 69, 89, 96, 99, 101, 104, 108, 110, 116, 120, 124, 126, 129, 131, 132, 135, 137, 140, 141, 142, 145, 147, 151, 154, 156, 165, 167, 189, 217, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234, 240], "appl": [79, 82, 107], "appli": [3, 16, 17, 20, 22, 37, 40, 81, 85, 89, 98, 107, 132, 153, 154, 156, 164, 185, 188, 189, 190, 198, 199, 232, 233, 236], "applic": [3, 4, 5, 10, 12, 14, 15, 17, 18, 19, 20, 21, 22, 25, 29, 30, 31, 32, 34, 36, 41, 42, 43, 44, 46, 47, 49, 61, 71, 72, 76, 79, 87, 92, 94, 95, 96, 97, 98, 99, 101, 104, 105, 106, 107, 110, 112, 116, 122, 124, 125, 126, 129, 131, 132, 135, 137, 138, 139, 140, 141, 142, 145, 147, 150, 152, 154, 156, 166, 179, 183, 185, 188, 193, 194, 204, 209, 229, 232, 233, 234, 240, 243], "apply2fil": 82, "appmanag": 232, "appnam": [15, 18, 20, 21, 33, 35, 36, 126, 131, 190, 227], "appnavigationentryutil": 199, "appoint": [76, 107, 124], "apppassword": 44, "approach": [10, 19, 21, 22, 37, 96, 107, 122, 126, 129, 131, 166, 192, 223], "approot": 186, "appropri": [0, 13, 20, 21, 25, 38, 52, 76, 90, 107, 110, 118, 156, 188, 222, 231], "approv": [14, 15, 185], "approxim": 236, "apps_path": 7, "appset": 229, "appstor": [7, 13, 15, 155, 232], "appstore_sign_dir": 15, "appstore_token": 15, "appswebroot": 218, "apptoken": [44, 60], "apt": [8, 192], "ar": [0, 1, 2, 3, 5, 6, 8, 10, 12, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 27, 29, 32, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44, 46, 49, 51, 52, 56, 61, 63, 64, 66, 69, 70, 71, 72, 74, 76, 77, 79, 82, 83, 85, 87, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 104, 105, 106, 107, 108, 110, 112, 115, 116, 117, 119, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 140, 141, 142, 144, 149, 150, 151, 152, 153, 154, 156, 158, 160, 161, 165, 166, 167, 168, 169, 170, 171, 173, 175, 177, 178, 179, 182, 185, 186, 188, 189, 190, 192, 193, 194, 195, 196, 198, 199, 200, 202, 204, 206, 209, 210, 211, 213, 215, 217, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 234, 235, 238, 239, 240, 242, 243], "arbitrari": [29, 90, 107, 140, 142, 209], "arbitrarili": 140, "arch": 152, "architect": 150, "architectur": [4, 122, 132, 152, 153, 154, 160, 201, 241], "archiv": [5, 15, 17, 22, 61, 167, 232], "area": [5, 77, 80, 193, 194, 199, 204], "areavatarsen": 216, "arg": [42, 140, 152, 227], "argc": 15, "argument": [0, 4, 17, 18, 20, 21, 22, 29, 30, 40, 42, 49, 52, 53, 73, 82, 85, 90, 92, 101, 106, 107, 129, 130, 132, 140, 141, 142, 152, 175, 186, 192, 209, 220, 221, 222, 229, 231, 233, 234, 243], "argument_hash": 122, "argument_nam": 175, "argv": 15, "aris": 162, "around": [12, 42, 76, 115, 122, 123, 132, 206, 222, 228], "arr": 186, "arrai": [7, 10, 18, 19, 20, 21, 22, 23, 25, 26, 28, 30, 33, 34, 36, 40, 43, 46, 49, 52, 56, 57, 58, 59, 60, 61, 69, 70, 90, 92, 93, 94, 96, 98, 99, 101, 104, 105, 107, 108, 110, 116, 124, 126, 129, 131, 132, 134, 136, 138, 140, 141, 145, 169, 170, 175, 178, 181, 189, 192, 209, 227, 228, 232, 233, 234, 240], "arrang": [34, 42, 134], "array_filt": 146, "array_intersect": 69, "array_map": [104, 107, 146], "array_reduc": 148, "array_walk_recurs": 20, "arraylist": 70, "arrow": [199, 200], "articl": [82, 192], "articles_api": 33, "articlesapicontrol": 33, "artifact": [15, 16], "artifici": 140, "asarrai": 104, "asc": [69, 152], "ascend": [34, 66, 124, 132, 134], "ascii": [5, 42], "ask": [1, 3, 5, 12, 14, 20, 30, 42, 44, 52, 70, 79, 101, 115, 119, 122, 129, 159, 161, 163, 185, 188, 190, 201, 202, 204, 205, 209, 233], "aspect": [22, 42], "assembl": 21, "assembli": 28, "assert": 192, "assertequ": [187, 243], "assess": 188, "asset": [3, 101, 115, 149, 209, 231], "asset_nam": 15, "assign": [16, 17, 20, 21, 22, 37, 56, 57, 105, 115, 121, 185, 204, 218], "assigneduserid": 232, "assist": [43, 45, 72, 75, 84, 94, 113, 140, 156], "associ": [17, 22, 76, 92, 129, 140, 141, 152, 169, 195], "assum": [0, 10, 22, 33, 37, 44, 63, 82, 107, 140, 175, 194, 209], "assur": [37, 44], "asxml": 20, "async": [126, 129], "asynccommandbu": 232, "asynchron": [140, 141, 142, 169], "atempl": 101, "atom": [5, 37, 228], "atomicretri": [97, 228], "attach": [15, 25, 40, 76, 86, 110, 113, 154, 159, 160, 171, 190], "attach_to_releas": 15, "attachinlin": 103, "attack": [14, 20, 190, 209], "attempt": [20, 137, 156], "attent": [76, 204, 221], "attitud": 188, "attract": 199, "attribut": [5, 10, 20, 29, 33, 34, 40, 45, 49, 61, 64, 85, 99, 107, 115, 128, 129, 131, 133, 164, 170, 184, 185, 199, 209, 223, 228, 230, 231, 233, 238], "audienc": [81, 192], "audio": [20, 43, 137, 139, 140], "audio2text": [43, 140], "audiotoimag": 140, "audiototext": 140, "audiototextsubtitl": 140, "audit": [14, 28, 209], "augment": 204, "auth": [5, 20, 46, 61, 88, 113, 154, 165, 178, 192, 208, 220, 231], "authent": [6, 10, 30, 32, 44, 45, 54, 61, 70, 71, 82, 86, 101, 113, 115, 119, 129, 144, 150, 155, 156, 158, 160, 161, 162, 163, 165, 166, 170, 173, 176, 177, 183, 192, 201, 215, 220, 227, 229, 231, 233], "authenticatorassertionresponsevalid": 192, "authenticatorattestationresponsevalid": 192, "authenticod": 82, "authf": 5, "authfail": 128, "authinit": 221, "author": [5, 10, 14, 15, 20, 25, 33, 34, 37, 42, 44, 46, 61, 129, 131, 146, 164, 185, 190, 202, 206, 223, 240], "author_api": [20, 33, 131], "authorapi": 20, "authorapicontrol": [20, 33, 131], "authorcontrol": [20, 21, 33], "authordao": 37, "authorit": [89, 228], "authorizationjwt": 192, "authorizedadminset": [34, 231], "authormapp": [21, 37], "authornamecount": 37, "authorservic": [21, 29, 36, 42], "authorstorag": 41, "authorstoragetest": 41, "authorurl": 25, "authpublicsharecontrol": 128, "authsucceed": 128, "auto": [37, 45, 89, 116, 121, 122, 227], "autocomplet": [46, 210], "autocompleteev": [46, 210], "autocompletefilterev": 210, "autoincr": 37, "autolink": 129, "autoload": [0, 3, 40, 41, 100, 113, 122, 217, 228, 233, 238], "autoloadercheck": 238, "autom": [1, 11, 42, 54, 95, 151, 152, 167, 185, 201], "automat": [1, 8, 15, 16, 20, 23, 25, 27, 28, 29, 37, 42, 49, 54, 61, 67, 69, 71, 76, 79, 82, 89, 90, 93, 94, 96, 97, 101, 107, 115, 116, 119, 122, 127, 129, 130, 134, 139, 140, 149, 152, 154, 158, 165, 167, 178, 181, 185, 186, 187, 190, 193, 194, 196, 198, 209, 210, 211, 215, 222, 227, 228, 231, 232, 234, 235, 243], "automkcol": 61, "autos": 230, "autosubmit": 227, "autotest": 243, "autowir": 21, "auxiliari": 82, "avail": [1, 5, 6, 8, 16, 17, 18, 20, 21, 25, 26, 27, 28, 34, 40, 42, 45, 46, 48, 49, 54, 61, 62, 63, 67, 68, 69, 72, 74, 76, 82, 83, 87, 89, 90, 92, 94, 95, 96, 98, 99, 101, 104, 105, 106, 110, 115, 116, 119, 120, 122, 125, 126, 129, 130, 132, 135, 138, 140, 141, 142, 149, 151, 152, 153, 154, 157, 159, 160, 161, 166, 174, 189, 192, 197, 198, 204, 215, 217, 229, 231, 233, 234, 236, 240, 243], "avatar": [35, 69, 78, 96, 108, 129, 132], "avatarmanag": 232, "averag": 140, "avoid": [3, 12, 18, 19, 20, 21, 38, 40, 49, 76, 81, 82, 85, 90, 92, 93, 96, 122, 125, 145, 148, 150, 184, 185, 189, 190, 194, 199, 206, 209, 211, 232, 240], "awai": [18, 32, 54, 122, 138, 210, 226, 229], "await": [61, 129, 185], "awar": [10, 107, 122, 135, 194, 209], "awesom": [116, 137, 140, 141, 142], "awk": [62, 125, 152], "axio": [129, 154, 190], "b": [3, 15, 103, 154, 188, 192, 209, 210], "b38e": 61, "b42f6819007f00f88e364fd4036a9c25bf357dd4": 152, "b5e6f6": 194, "babel": 115, "babelrc": 16, "back": [14, 17, 19, 22, 37, 40, 43, 49, 60, 76, 90, 95, 97, 99, 101, 106, 107, 108, 115, 122, 129, 156, 183, 190, 201, 241], "backbon": [219, 235], "backend": [17, 22, 28, 32, 35, 38, 46, 55, 56, 57, 76, 87, 104, 107, 119, 120, 129, 131, 139, 151, 155, 190, 228, 229, 231, 232, 233, 235, 236, 240, 243], "backend_caldav": 231, "backendcap": 46, "backendwis": 64, "background": [5, 17, 20, 22, 28, 42, 46, 56, 76, 90, 102, 106, 113, 122, 130, 137, 140, 141, 142, 166, 179, 184, 198, 201, 227, 231, 233], "backgroundcolor": 27, "backgroundjob": [18, 21, 134, 215, 227, 228, 230, 232, 234], "backport": [12, 16, 185, 233, 238], "backslash": 209, "backtrac": 125, "backup": [12, 45, 61, 145], "backward": [21, 22, 37, 43, 49, 63, 69, 115, 131, 144, 221, 222, 228, 229, 231, 232], "bad": [14, 20, 30, 42, 49, 50, 54, 57, 58, 59, 122, 168, 173, 177, 194], "badg": 76, "badrequestexcept": 49, "bakerycontrol": 20, "balanc": 122, "bamarni": 3, "ban": 14, "bandwidth": 62, "bantu": 232, "bar": [20, 21, 42, 62, 99, 179, 186, 187, 188, 190, 194, 197, 240], "barcontrol": 240, "bare": 101, "barservic": 21, "base": [1, 8, 10, 18, 21, 22, 25, 28, 32, 37, 42, 48, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 70, 77, 82, 92, 93, 94, 96, 101, 102, 105, 107, 112, 113, 122, 132, 134, 151, 152, 154, 166, 170, 171, 185, 190, 200, 221, 223, 227, 229, 231, 232, 234, 235, 236, 240], "base64": [49, 164], "base64_decod": 48, "base_url": 170, "baselin": [77, 95, 194], "basenam": [69, 219], "baseurl": 25, "bash": [1, 8, 62, 82, 154, 192], "basi": [10, 20, 44, 188, 233], "basic": [15, 26, 32, 33, 37, 40, 46, 64, 65, 70, 72, 75, 79, 82, 86, 90, 95, 97, 101, 106, 113, 115, 128, 131, 134, 140, 145, 147, 151, 154, 158, 160, 165, 189, 197, 201, 209], "basicsearch": [66, 104], "bat": 82, "batch": 152, "batchupd": 20, "battl": 129, "baz": [99, 179], "bazinga": 20, "bdebc0": 194, "bearer": [46, 70], "beautifi": 69, "becam": 221, "becaus": [2, 5, 16, 18, 19, 20, 21, 29, 37, 38, 40, 42, 48, 49, 62, 82, 87, 89, 97, 101, 104, 110, 122, 129, 130, 140, 156, 190, 222, 224, 227, 228], "becom": [2, 14, 21, 33, 37, 49, 82, 122, 132, 166, 204, 221, 230], "bee": [52, 231], "been": [3, 7, 10, 16, 17, 20, 22, 26, 29, 30, 40, 42, 48, 49, 61, 63, 70, 73, 77, 81, 82, 89, 96, 101, 107, 115, 116, 118, 126, 127, 129, 137, 140, 141, 142, 144, 185, 188, 194, 199, 202, 204, 210, 213, 220, 223, 225, 227, 228, 229, 230, 231, 232, 234, 235], "befor": [0, 5, 10, 11, 17, 20, 21, 22, 30, 32, 40, 42, 44, 48, 49, 50, 69, 70, 81, 90, 93, 94, 95, 101, 104, 115, 121, 122, 129, 130, 131, 133, 135, 140, 141, 142, 148, 165, 167, 189, 190, 199, 202, 203, 204, 209, 211, 221, 222, 223, 228, 229, 231, 232, 235, 238, 239, 240], "beforecontrol": 30, "beforegettemplatesev": 233, "beforegroupdeletedev": 229, "beforehand": 234, "beforemessageloggedev": 29, "beforemessages": 220, "beforeoutput": 30, "beforepasswordupdatedev": 229, "beforepreviewfetchedev": [229, 232], "beforesabrepubliclyloadedev": 227, "beforesharecreatedev": 229, "beforesharedeletedev": 229, "beforetemplaterenderedev": [221, 229], "beforeuseraddedev": 229, "beforeuserdeletedev": [0, 229], "beforeuseridunassignedev": 232, "beforeuserloggedinev": 220, "beforeuserremovedev": 229, "begin": [0, 10, 32, 37, 107, 145, 190], "beginn": 190, "begintransact": 37, "behalf": 20, "behavior": [2, 20, 21, 37, 61, 92, 93, 199, 236], "behaviour": [101, 152], "behind": [10, 29, 101, 103, 222], "being": [8, 14, 17, 20, 21, 22, 25, 30, 32, 33, 37, 38, 40, 76, 85, 97, 98, 101, 110, 115, 153, 154, 175, 209, 233, 234, 236], "belong": [17, 22, 35, 50, 69, 79, 89, 101, 107, 122, 190, 204], "below": [3, 5, 8, 20, 21, 37, 46, 57, 58, 61, 64, 69, 82, 99, 101, 106, 107, 110, 134, 140, 141, 142, 144, 154, 185, 189, 190, 225, 229, 231, 232, 234], "bem": 184, "benefici": 96, "benefit": [3, 20, 21, 76, 128, 204, 213], "benjamin": 15, "berlin": 106, "bernhard": 5, "beschreibung": 5, "besid": 236, "best": [16, 42, 45, 113, 114, 122, 130, 151, 152, 185, 188, 204, 206, 223, 233], "beta": [16, 234], "better": [0, 14, 16, 17, 20, 22, 42, 49, 73, 76, 79, 93, 115, 125, 184, 185, 186, 209, 227], "between": [0, 3, 17, 18, 20, 22, 32, 34, 38, 40, 42, 49, 63, 82, 90, 98, 101, 110, 131, 134, 140, 141, 142, 151, 152, 153, 154, 160, 164, 165, 190, 199, 200, 221, 222, 233, 239], "bewar": [18, 61, 229], "bf7900": 194, "bf_prev": 243, "bg": 8, "bg_bg": 8, "big": [21, 110, 122, 125, 132, 185], "bigger": [79, 122, 185], "biggest": 222, "bighostingapp": 110, "bigint": [37, 40, 136], "bin": [3, 15, 62, 82, 152, 192, 229], "binari": [37, 62, 63, 64, 82, 152], "bind": [165, 184, 186, 219, 222, 236], "bindparam": 222, "bindvalu": 222, "biographi": 124, "birth": [76, 231], "bit": [22, 35, 42, 63, 107, 122, 136, 228, 236], "bitflag": [48, 90, 93], "bla": [64, 198], "blabla": [87, 198], "blacklist_files_regex": [218, 231], "blank": 20, "blazingli": 96, "blazinglyfast": 96, "blizzz": 105, "blob": [37, 49, 64, 90, 152, 227, 243], "block": [14, 17, 20, 22, 25, 40, 42, 76, 93, 122, 137, 140, 141, 142, 161, 184, 185, 186, 187, 190, 194], "blog": [97, 118], "blogspot": 243, "blue": 187, "blueprint": [82, 190], "blur": 194, "blurhash": 61, "board": [42, 76], "boardid": 132, "bob": [122, 139, 182], "bodi": [43, 46, 49, 61, 65, 76, 77, 103, 112, 126, 129, 170, 193, 194, 198, 229, 231], "boil": 192, "boilerpl": [21, 101], "bold": [77, 194], "book": [22, 76], "bookmark": [20, 94, 126, 190, 209], "bool": [20, 25, 29, 31, 49, 53, 56, 58, 61, 90, 93, 96, 101, 104, 107, 110, 121, 125, 126, 128, 129, 140, 228, 229], "boolean": [20, 25, 37, 51, 52, 56, 66, 70, 73, 93, 96, 107, 116, 129, 132, 137, 140, 141, 142, 144, 186, 228, 231, 233, 234], "boot": [21, 25, 30, 49, 96, 101, 104, 106, 116, 124, 125, 126, 132, 137, 140, 141, 142, 145, 147, 210], "bootstrap": [3, 4, 6, 21, 22, 25, 30, 32, 41, 49, 90, 96, 99, 101, 104, 110, 116, 124, 126, 132, 135, 137, 140, 141, 142, 145, 147, 154, 192, 201, 227, 230, 231, 233], "borchardt": 5, "border": [46, 76, 78, 194, 200, 233], "bossi": 81, "bot": [8, 14, 172, 183, 188], "both": [3, 18, 20, 21, 25, 29, 33, 34, 40, 42, 52, 61, 69, 90, 94, 101, 104, 106, 107, 119, 123, 129, 131, 132, 134, 135, 137, 140, 166, 190, 194, 232, 234, 235], "bottleneck": 19, "bottom": [5, 15, 34, 43, 76, 96, 115, 125, 134, 199], "bound": 56, "boundari": 62, "boundary_": 62, "box": [20, 76, 194, 199], "br": 195, "brace": [20, 33, 185], "bracket": 42, "brahmer": 15, "branch": [10, 40, 72, 79, 82, 95, 125, 149, 185, 189, 191, 202, 204, 233, 238], "brand": 79, "break": [3, 14, 16, 21, 42, 47, 49, 85, 89, 97, 106, 123, 131, 135, 186, 187, 188, 190, 206, 210, 220, 222, 223, 227, 229, 231, 233, 240], "breakag": 211, "breakpoint": 194, "breviti": 101, "brew": 82, "brief": [20, 49, 81, 162], "briefli": [20, 151], "bright": [27, 46, 194, 231], "brighter": 194, "brightest": 194, "brilliant": 14, "bring": [150, 204, 221, 223, 227], "broad": [22, 37, 93], "broadcast": [199, 211], "broaden": 233, "brochur": 81, "broken": [49, 135, 185, 187], "broker": 139, "brown": 48, "brows": [45, 47, 131, 206], "browselink": 42, "browser": [13, 20, 25, 44, 76, 77, 79, 96, 98, 101, 131, 132, 135, 189, 190, 192, 209, 220, 223, 229], "browser_download_url": 15, "browserifi": 234, "bruteforc": [153, 178, 232], "bruteforce_protect": 178, "bruteforceprotect": 20, "bruteforceset": 8, "btn": 184, "btoa": 231, "bu": [12, 73, 227, 232, 234], "bubbl": [78, 129], "bucket": [90, 192, 215], "budget": 129, "bug": [5, 12, 14, 16, 49, 75, 90, 115, 129, 185, 188, 194, 202, 203, 231], "bug_triag": 204, "bugtrack": [201, 208], "build": [3, 5, 14, 15, 16, 17, 20, 21, 22, 42, 49, 61, 72, 83, 100, 104, 106, 113, 115, 125, 129, 132, 149, 151, 152, 154, 191, 199, 201, 232, 233, 236, 238, 241], "build_and_publish": 15, "build_owncloud_osx_bundl": 82, "buildappnamespac": 211, "builder": [104, 106, 190, 222, 224, 227, 229, 231], "buildnotexistingfilenam": 234, "built": [14, 19, 20, 21, 25, 49, 63, 79, 98, 105, 106, 107, 110, 112, 113, 114, 125, 126, 132, 133, 134, 140, 165, 175, 185, 190, 209, 223, 232], "bulk": [61, 65, 75, 94, 108, 148], "bulk_upload_request_": 62, "bulkloaddataforcollect": 148, "bullet": 197, "bump": [16, 115, 204], "bundl": [10, 16, 70, 82, 105, 115, 152, 190, 217, 220, 233, 235], "bundler": [118, 186], "button": [5, 13, 25, 42, 46, 77, 78, 82, 87, 96, 129, 134, 184, 193, 194, 197, 198, 200, 201, 226, 231, 233, 243], "button__icon": 184, "bye": 187, "bypass": [8, 20, 152, 164, 208], "byte": [61, 107], "bzr": 5, "c": [3, 8, 21, 36, 41, 61, 62, 64, 81, 82, 152, 189, 198, 199, 221, 243], "c90000": 194, "ca": [10, 82, 152], "cach": [20, 23, 28, 38, 41, 60, 82, 90, 93, 98, 100, 101, 113, 121, 148, 151, 152, 189, 201, 228, 233, 237, 243], "cachedcalendarobjectcreatedev": 221, "cachedcalendarobjectdeletedev": 221, "cachedcalendarobjectupdatedev": 221, "cachedpictur": 19, "cacheentryremovedev": 228, "cachefactori": 19, "cachejail": 236, "cachepermissionsmask": 236, "cal": 64, "calc": 194, "calcul": [96, 107], "calculate_hi": 20, "caldav": [29, 64, 106, 221, 231], "caldavbackend": 221, "calendar": [42, 69, 76, 80, 109, 111, 113, 128, 176, 190, 210, 224, 231, 232], "calendar_todo": 69, "calendarcreatedev": 221, "calendardata": [107, 227], "calendardeletedev": 221, "calendarmanag": [106, 232], "calendarobject": 107, "calendarobjectcreatedev": 221, "calendarobjectdeletedev": 221, "calendarobjectupdatedev": 221, "calendarplugin": 107, "calendarprovid": 107, "calendarpublishedev": 221, "calendarqueri": 107, "calendarreadwrit": 107, "calendarresourcebackendmanag": 232, "calendarroombackendmanag": 232, "calendarserv": 64, "calendarshareupdatedev": 221, "calendarunpublishedev": 221, "calendarupdatedev": 221, "calendaruri": [106, 107], "call": [0, 1, 2, 8, 12, 19, 20, 21, 22, 25, 26, 29, 30, 33, 37, 38, 41, 42, 44, 45, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 69, 70, 76, 77, 81, 82, 86, 87, 89, 92, 93, 94, 96, 104, 105, 107, 108, 113, 123, 124, 125, 126, 129, 130, 132, 136, 138, 140, 143, 144, 147, 148, 153, 166, 170, 186, 188, 190, 199, 204, 209, 221, 222, 224, 226, 227, 229, 231, 232, 233, 243], "callabl": [0, 21, 22, 140, 209, 240], "callback": [20, 25, 49, 96, 129, 140, 186, 213], "callcheck": [209, 218], "calledanonym": 133, "calledbyus": 133, "caller": [107, 232], "callhttpapi": 186, "camel": [186, 227], "camelcas": 33, "can": [0, 1, 2, 3, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 46, 48, 49, 51, 52, 54, 56, 57, 58, 61, 62, 63, 66, 67, 69, 71, 72, 73, 76, 77, 79, 80, 81, 82, 83, 85, 87, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 103, 104, 105, 106, 107, 108, 110, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 158, 160, 161, 162, 164, 165, 166, 167, 170, 171, 173, 174, 178, 179, 185, 186, 187, 188, 189, 190, 192, 194, 196, 198, 199, 200, 202, 204, 206, 209, 211, 213, 215, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 238, 239, 240, 243], "canaccessresourc": 126, "cancel": [70, 107, 126, 129, 140], "canceltask": 140, "canchangeemail": 233, "canchangemail": 69, "canchangestream": 69, "candetectlanguag": 116, "candid": [16, 90], "canexecut": 233, "canimport": 145, "cannot": [10, 17, 22, 42, 49, 63, 81, 90, 93, 94, 97, 107, 116, 129, 137, 140, 141, 142, 192, 193, 206, 219, 233], "cant": 38, "cap": [101, 192], "capabilitiesmanag": 232, "capabl": [0, 17, 22, 45, 54, 61, 75, 90, 110, 129, 139, 150, 160, 173, 192], "capac": 160, "capit": [81, 186], "cappedmemorycach": 19, "caption": [37, 77], "captur": 29, "card": [22, 64, 77, 78, 126, 190, 233], "cardcreatedev": 221, "carddav": [5, 64, 221], "carddavbackend": 221, "carddeletedev": 221, "cardid": 132, "cardupdatedev": 221, "care": [3, 15, 20, 25, 44, 79, 115, 129, 134, 187, 190, 204, 209, 240], "carefulli": [0, 16, 20, 45, 199, 209], "carri": [37, 46, 76, 101, 133, 166, 190], "case": [10, 14, 16, 18, 20, 21, 22, 25, 29, 33, 34, 36, 37, 42, 44, 46, 49, 54, 56, 57, 58, 60, 61, 76, 77, 81, 85, 89, 90, 96, 97, 98, 101, 104, 105, 106, 107, 115, 116, 119, 123, 128, 129, 131, 132, 133, 134, 135, 137, 140, 141, 142, 145, 148, 149, 154, 158, 160, 161, 165, 166, 185, 187, 188, 189, 198, 199, 200, 202, 204, 206, 215, 222, 226, 227, 228, 229, 230, 231, 232, 233], "caseinsensit": 93, "cast": [36, 37, 210], "cat": [62, 132], "catch": [20, 29, 36, 37, 38, 41, 44, 49, 87, 97, 112, 129, 133, 140, 141, 142, 145, 234], "catchabl": 233, "categori": [5, 76, 85, 134, 135, 186, 204], "categoryfetch": 232, "caught": [49, 97, 104, 228], "caus": [8, 14, 44, 49, 90, 97, 122, 130, 162, 188, 199, 222, 231, 243], "causal": 122, "caution": 188, "caveat": 186, "ccbbebdccc73a042b1a2799f673fbabadc783284cc288e4f1a1eacb74e3d": 10, "cccccc": 194, "cd": [7, 8, 15, 82, 125, 149, 189, 192], "cdata": 5, "censormiddlewar": 30, "center": [64, 194, 200], "central": [21, 92, 107, 116, 122, 137, 140, 141, 142], "cert": [15, 152, 192], "cert_dir": 15, "certain": [0, 18, 20, 37, 44, 45, 70, 76, 82, 97, 105, 107, 130, 207], "certainli": 149, "certif": [10, 15, 44, 82, 152, 161, 165, 192], "cf26dff4be60": 106, "ch": 123, "chain": [20, 29], "challeng": [20, 144], "chanc": [14, 42, 63, 115, 222], "chang": [0, 3, 5, 7, 10, 11, 14, 17, 20, 21, 22, 29, 37, 39, 46, 47, 49, 51, 61, 73, 81, 82, 85, 90, 93, 95, 96, 98, 99, 101, 104, 107, 118, 121, 122, 127, 129, 131, 132, 138, 140, 144, 151, 153, 154, 156, 167, 168, 179, 185, 188, 189, 190, 192, 196, 199, 202, 208, 209, 211, 212, 214, 235, 238, 241], "changelog": [4, 16, 115, 222, 230, 234], "changescheck": 234, "changeschema": [40, 136], "changeton": 140, "changeus": [22, 229], "channel": [16, 139], "chapter": [0, 42], "char": [37, 210], "charact": [5, 20, 37, 42, 70, 81, 89, 93, 123, 129, 185, 231], "charg": 70, "charset": 107, "chat": [46, 76, 84, 96, 113, 124, 139, 140, 199, 233], "chatti": 81, "chatwithtool": 140, "cheaper": 108, "cheat": 65, "check": [3, 5, 6, 8, 10, 12, 15, 17, 18, 20, 22, 25, 26, 30, 35, 37, 38, 41, 45, 49, 60, 61, 63, 73, 81, 85, 86, 90, 94, 95, 96, 99, 105, 106, 110, 113, 114, 115, 121, 122, 123, 127, 131, 132, 133, 134, 140, 141, 142, 145, 148, 152, 153, 161, 165, 170, 179, 186, 190, 192, 195, 198, 199, 209, 222, 223, 228, 229, 231, 232, 233, 234, 238, 239], "check1": 200, "check_missing_column": [223, 229], "check_missing_columns_ev": 229, "check_missing_index": [223, 229], "check_missing_indexes_ev": [223, 229], "check_missing_primary_kei": [223, 229], "check_missing_primary_keys_ev": [223, 229], "checkadminus": [209, 235], "checkappen": 218, "checkbox": [25, 78, 134, 158, 179, 197, 198, 200, 226], "checker": [20, 131], "checkloggedin": 209, "checkmark": [199, 200, 233], "checkout": [15, 95, 174, 188], "checkserverresponsetrait": [135, 232], "checksharetoken": 129, "checksubadminus": 209, "checksum": [61, 62, 66], "chees": 112, "cherri": 188, "child": [61, 107, 209, 215], "childexist": 107, "childnam": 107, "children": [2, 43, 107, 140, 148], "childrencount": 64, "chip": [77, 78, 194, 231], "chmod": [82, 152, 189, 192, 243], "choic": [3, 8, 14, 18, 107, 129, 130, 141, 142], "choos": [22, 38, 48, 76, 79, 82, 107, 122, 126, 129, 179, 190, 209, 231], "chose": [16, 35, 128], "chosen": [20, 204], "chown": [82, 152, 189], "christin": 81, "christoph": 5, "chrome": [98, 192, 217, 243], "chroot": 236, "chunk": [61, 65, 75, 132, 204], "chunk1": 63, "chunk2": 63, "ci": [3, 8, 16, 42, 125, 149, 152, 165, 167, 185, 210, 222], "circl": [5, 46, 48, 52, 61, 230], "circleid": 52, "circumst": 82, "citi": 42, "claim": 185, "clang": 82, "clarif": [110, 231, 233], "clarifi": 232, "class": [2, 3, 4, 5, 7, 17, 18, 19, 20, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 49, 61, 69, 70, 72, 85, 89, 90, 92, 94, 95, 96, 97, 103, 104, 105, 106, 108, 109, 112, 113, 116, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 184, 185, 187, 192, 193, 195, 197, 198, 199, 200, 209, 213, 215, 217, 220, 221, 222, 223, 229, 231, 232, 233, 234, 235, 238, 243], "class1": 20, "class2": [20, 21], "classic": [20, 97, 190], "classif": 5, "classifi": 185, "classload": [20, 100, 113, 127], "classnam": [228, 235], "classpath": 217, "claus": 210, "clean": [14, 21, 41, 129, 187, 188, 243], "cleanup": [22, 60, 215], "clear": [17, 18, 20, 22, 29, 45, 76, 77, 79, 90, 93, 150, 185, 194, 199, 204, 224, 232, 239], "clearat": 54, "clearbackend": 233, "clearcach": [90, 93, 121], "clearcacheal": 93, "clearer": 76, "clearli": [14, 21, 204, 238], "cli": [3, 118, 130, 135, 136, 137, 162, 163, 175, 220, 229], "click": [13, 20, 25, 43, 54, 82, 87, 108, 122, 125, 129, 134, 190, 199, 200, 209, 243], "clickabl": [77, 194, 199], "clickjack": 208, "client": [20, 44, 46, 47, 49, 60, 61, 63, 66, 69, 70, 73, 86, 98, 102, 104, 107, 113, 115, 116, 121, 131, 132, 133, 140, 141, 142, 152, 160, 190, 192, 201, 203, 215, 222, 231, 235], "client_integr": 43, "clientdatarpid": 192, "clientservic": 112, "clipboard": [217, 219], "clipboardj": [217, 219], "clock": [100, 113, 143, 228], "clockinterfac": [127, 143, 228], "clog": 18, "clone": [7, 8, 16, 82, 125, 149, 185, 189, 192], "close": [12, 16, 20, 37, 64, 76, 79, 87, 101, 126, 129, 131, 156, 184, 187, 199, 200, 204, 206], "closecursor": [37, 234], "closeonresult": 87, "closer": [49, 204, 223], "closur": [0, 25, 37, 40, 49, 92, 126, 136, 221], "cloud": [17, 22, 42, 43, 44, 45, 46, 48, 60, 61, 66, 67, 68, 69, 70, 82, 101, 104, 132, 190, 192, 194, 227, 233], "cloudlink": 42, "club": 92, "clue": 129, "cluster": [19, 37, 154, 241], "cmake": 82, "cmake_install_prefix": 82, "cmake_prefix_path": 82, "cmd": [3, 82], "cmocka": 82, "cn": 10, "cnf": 122, "co": [110, 118], "co2": 140, "co2_emiss": 140, "code": [0, 2, 3, 4, 5, 6, 7, 8, 11, 14, 16, 17, 20, 21, 22, 29, 30, 32, 33, 37, 40, 42, 43, 44, 46, 49, 50, 51, 53, 54, 56, 57, 58, 59, 60, 61, 62, 71, 72, 74, 81, 82, 85, 89, 90, 92, 93, 95, 96, 98, 99, 107, 110, 113, 114, 115, 116, 118, 122, 129, 130, 131, 133, 134, 136, 144, 149, 150, 151, 152, 153, 154, 165, 170, 173, 178, 190, 191, 192, 198, 201, 204, 208, 215, 220, 221, 223, 225, 228, 229, 231, 232, 233, 234, 237, 240, 241, 242, 243], "codebas": [190, 231], "codesign": 82, "codespac": 190, "cog": 76, "cogsvg": 87, "collabor": [5, 21, 46, 61, 82, 126, 129, 185, 190, 210, 219, 229, 231, 232, 235, 240], "collabora": [13, 101, 241], "collaborationview": 126, "collaboratorsearch": 232, "collaboratorsearchplugin": 5, "collaps": 197, "colleagu": 81, "collect": [2, 17, 22, 42, 45, 61, 66, 75, 76, 80, 113, 114, 125, 126, 129, 192, 206, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 233], "collection_nam": 48, "collectionlist": 126, "collector": 134, "collis": [63, 190], "colon": [42, 94], "color": [27, 46, 69, 78, 79, 105, 107, 129, 184, 195, 197, 198, 199, 229], "colour": 226, "column": [17, 22, 40, 76, 97, 190, 213, 222], "column_a": 40, "column_b": 40, "columncount": 222, "columntoproperti": 37, "columntyp": 40, "com": [3, 5, 7, 8, 10, 13, 14, 15, 20, 37, 43, 44, 46, 49, 52, 60, 61, 64, 66, 67, 68, 69, 70, 72, 73, 82, 96, 97, 98, 101, 106, 107, 108, 110, 112, 115, 124, 125, 129, 130, 140, 149, 152, 156, 170, 175, 189, 192, 198, 202, 204, 209, 219, 220, 221, 227, 240, 243], "combin": [29, 42, 69, 82, 95, 107, 131, 132, 152, 185, 198, 199], "come": [0, 14, 20, 21, 37, 42, 44, 49, 63, 70, 76, 85, 89, 92, 93, 107, 112, 122, 132, 164, 169, 190, 204], "comfort": 21, "comma": [43, 140, 142, 171, 178], "command": [0, 3, 4, 5, 10, 28, 39, 46, 49, 72, 76, 81, 82, 92, 98, 102, 113, 118, 125, 130, 131, 135, 136, 137, 144, 149, 152, 153, 154, 156, 165, 172, 183, 188, 189, 192, 201, 209, 215, 220, 221, 222, 231, 232, 238, 239], "comment": [42, 46, 48, 61, 65, 75, 76, 78, 85, 107, 148, 185, 186, 188, 190, 192, 202, 204, 220, 229, 232, 233], "comment_count": 129, "commentid": 64, "commentnod": 64, "commentpropertiesplugin": 148, "commentsentityev": 229, "commentsmanag": 232, "commiss": 13, "commit": [8, 16, 37, 89, 122, 152, 185, 188, 202, 238, 241], "common": [3, 8, 16, 20, 25, 38, 49, 61, 66, 70, 76, 80, 88, 90, 113, 122, 123, 126, 129, 135, 155, 161, 162, 165, 184, 190, 209, 229, 235], "commonli": [76, 143, 240], "commun": [8, 14, 22, 42, 70, 71, 76, 77, 82, 97, 98, 115, 129, 139, 151, 152, 153, 154, 190, 201, 204, 205, 206, 208, 236], "compact": [16, 76, 231], "compani": [52, 185], "compar": [42, 63, 82, 96, 122, 133], "compat": [12, 14, 16, 21, 22, 23, 37, 43, 49, 63, 69, 77, 144, 152, 189, 190, 193, 201, 208, 212, 215, 221, 222, 225, 227, 228, 229, 231, 232, 234, 241], "compens": 13, "compil": [8, 9, 16, 23, 42, 72, 154, 167, 186, 190, 209, 226, 229, 239], "compile_po_to_mo": [154, 167], "complet": [0, 1, 17, 22, 29, 45, 56, 75, 79, 81, 87, 107, 129, 132, 140, 149, 154, 171, 179, 181, 185, 194, 202], "completionexpectedat": 56, "complex": [20, 66, 79, 95, 96, 99, 105, 107, 134, 150, 151, 152, 188, 194], "compli": [14, 131, 204, 233], "complianc": [29, 185], "compliant": 184, "complic": [21, 132], "compon": [0, 1, 16, 17, 20, 21, 22, 23, 25, 42, 75, 77, 78, 95, 96, 103, 107, 111, 113, 115, 126, 145, 188, 190, 194, 196, 201, 223, 229, 231, 234, 235, 241], "componentvm": 126, "compos": [0, 4, 16, 21, 40, 49, 89, 95, 186, 199, 225, 226, 227, 228, 229, 231, 232, 234], "composer_dev_mod": 3, "comprehens": [5, 9], "compress": [10, 98], "comput": [61, 83, 140, 151, 159, 227], "compute_devic": 165, "computedevic": 166, "computerfiles": 233, "concaten": [42, 209], "concept": [21, 45, 86, 91, 102, 113, 147, 151, 154, 185, 191, 201], "conceptu": 222, "concern": [14, 188], "concis": 81, "conclud": 131, "conclus": 163, "concurr": [97, 132], "condit": [20, 29, 96, 107, 187, 190, 204, 222, 228, 229], "condition": [30, 132], "condition2": [186, 187], "condition3": [186, 187], "conduct": [14, 201, 208], "conf": 192, "conferenc": 139, "confid": 188, "config": [3, 7, 16, 21, 25, 29, 34, 36, 37, 38, 40, 49, 59, 95, 98, 99, 113, 114, 118, 119, 125, 134, 135, 152, 153, 158, 165, 172, 179, 189, 190, 192, 215, 218, 219, 222, 228, 230, 231, 232, 233, 243], "config_is_read_onli": 233, "configkei": [59, 99, 168, 177], "configlexicon": 92, "configur": [1, 3, 4, 7, 13, 14, 15, 16, 19, 20, 21, 28, 29, 32, 33, 39, 41, 42, 44, 49, 52, 79, 82, 87, 90, 92, 93, 96, 98, 104, 110, 111, 112, 113, 122, 124, 131, 135, 139, 144, 149, 150, 151, 152, 154, 156, 158, 159, 160, 161, 165, 168, 171, 185, 186, 187, 189, 190, 192, 194, 201, 204, 209, 223, 231, 233, 243], "configvalu": [59, 168, 177], "confirm": [1, 48, 76, 79, 81, 139, 140, 148, 185, 200, 204, 209, 231], "confirmationquest": 1, "confirmdestruct": 231, "confirmhtml": 231, "conflict": [37, 82, 90, 93, 115, 132, 186, 188, 217, 229, 235], "confus": [49, 146], "congratul": 15, "connect": [21, 22, 28, 37, 44, 63, 76, 81, 88, 96, 97, 98, 107, 113, 115, 122, 149, 152, 154, 156, 161, 165, 166, 170, 222, 224, 229], "connecthook": 0, "connector": [148, 192, 221, 229], "consecut": [42, 132, 147], "consensu": 185, "consent": 132, "consequ": [14, 222, 224], "consid": [14, 16, 18, 20, 21, 42, 44, 45, 63, 76, 85, 106, 107, 122, 131, 151, 153, 156, 165, 166, 185, 188, 202, 206, 211, 217, 233], "consider": [4, 28, 100, 107, 113, 115, 125, 155], "consist": [20, 21, 25, 32, 36, 37, 45, 46, 69, 76, 77, 81, 82, 101, 118, 122, 132, 151, 165, 185, 190, 194, 206, 228, 230, 236], "consol": [1, 3, 25, 28, 39, 73, 87, 104, 115, 129, 130, 145, 175, 229, 231, 232, 243], "consoleev": 229, "consolid": 144, "const": [25, 49, 61, 96, 110, 124, 126, 129, 140, 145, 154, 186, 190], "constant": [1, 5, 6, 49, 85, 94, 107, 124, 154, 215, 220, 222, 223, 227, 231, 232, 233, 238], "constraint": [49, 233], "construct": [21, 39, 110, 210], "constructor": [1, 17, 18, 20, 21, 22, 29, 33, 37, 40, 42, 90, 96, 107, 131, 134, 140, 141, 142, 144, 190, 220, 229, 231, 232, 233], "consult": 185, "consum": [14, 22, 29, 43, 49, 69, 84, 91, 101, 102, 109, 113, 125, 189, 192, 233], "contact": [10, 12, 14, 21, 43, 76, 80, 107, 109, 111, 113, 133, 162, 176, 198, 204, 207, 215, 220, 227, 232], "contactinteractedwithev": 220, "contactremoteserv": 133, "contactsmanag": 232, "contactsmenu": [108, 193], "contain": [0, 1, 2, 5, 6, 7, 10, 16, 17, 20, 22, 25, 28, 29, 33, 35, 36, 41, 42, 46, 49, 52, 61, 69, 70, 72, 76, 77, 80, 81, 85, 87, 90, 94, 96, 100, 104, 105, 107, 113, 116, 122, 123, 126, 129, 132, 135, 136, 137, 140, 141, 142, 149, 151, 152, 153, 154, 155, 158, 159, 160, 161, 162, 163, 164, 165, 166, 169, 171, 186, 190, 192, 194, 199, 201, 204, 209, 213, 215, 221, 225, 227, 229, 231, 232, 234, 236, 238], "containerinterfac": [21, 127, 221], "containernam": 192, "content": [8, 10, 15, 17, 22, 31, 35, 38, 40, 42, 48, 61, 62, 64, 65, 66, 69, 70, 77, 78, 80, 84, 87, 89, 96, 101, 103, 106, 112, 113, 122, 129, 131, 135, 140, 184, 190, 194, 197, 199, 204, 209, 226, 229, 231, 232], "contentmanag": 94, "contentprovid": 94, "contentsecuritypolici": [20, 31], "contentsecuritypolicymanag": 232, "contenttyp": [20, 112], "context": [0, 2, 17, 20, 21, 22, 25, 28, 30, 31, 37, 43, 46, 49, 70, 76, 81, 84, 92, 96, 99, 101, 104, 106, 107, 110, 113, 115, 124, 125, 126, 129, 132, 135, 140, 141, 145, 147, 150, 171, 175, 186, 221, 232, 233, 234], "contextag": 140, "contextagentinteract": 140, "contextchat": [94, 233], "continu": [12, 32, 49, 98, 100, 113, 188, 202, 222, 225, 229, 231, 232, 234], "contract": [49, 190], "contrari": 204, "contrast": [20, 27, 77, 107, 131, 194, 233], "contribut": [7, 14, 71, 79, 82, 100, 113, 129, 185, 191, 204], "contributor": [14, 185, 204, 205], "control": [3, 17, 18, 19, 22, 25, 26, 28, 30, 33, 34, 35, 36, 43, 45, 61, 69, 76, 90, 98, 115, 125, 126, 128, 131, 133, 141, 142, 164, 191, 201, 209, 227, 228, 230, 231, 233], "controllermethodreflector": [30, 232], "conveni": [17, 22, 82, 98, 140], "convent": [21, 22, 37, 101, 118, 130], "convers": [46, 52, 61, 76, 77, 86, 113, 140, 154, 232], "conversation_token": 140, "conversionprovid": 232, "convert": [5, 8, 15, 25, 37, 43, 75, 77, 90, 104, 105, 113, 114, 151, 154, 167, 171, 192, 222, 229, 233], "convert_translations_nc": 154, "converttopdf": 105, "converttostandardformat": [123, 229], "converttypetoint": 90, "converttypetostr": 90, "cookbook": 7, "cooki": [17, 22, 44, 46, 61, 62, 70, 98, 209, 228], "cool_event_finish": 138, "cool_event_start": 138, "coolendev": 138, "coolstartev": 138, "coordin": 12, "copi": [10, 15, 40, 42, 49, 65, 76, 85, 152, 154, 209], "copy_transl": 154, "copynameloc": 42, "copyright": [14, 15, 185], "cor": [33, 86, 113, 164, 208, 231], "core": [1, 10, 20, 24, 34, 43, 44, 46, 60, 69, 87, 96, 99, 107, 129, 132, 140, 144, 196, 202, 204, 215, 220, 223, 227, 231, 233, 234, 243], "coreapp": 218, "corner": [20, 96, 108, 129], "corpor": [162, 163], "correct": [3, 8, 20, 29, 36, 49, 70, 105, 107, 140, 150, 156, 190, 194, 199, 203], "correctli": [14, 37, 41, 49, 81, 95, 129, 135, 151, 156, 194, 220, 223, 231], "correl": 87, "correspond": [10, 13, 16, 20, 33, 38, 50, 61, 82, 93, 107, 129, 131, 134, 137, 140, 141, 142, 189, 190, 202, 222, 223], "corrupt": 82, "cosentino": 5, "could": [0, 8, 10, 13, 15, 18, 20, 40, 44, 49, 56, 57, 62, 72, 76, 81, 82, 95, 96, 97, 107, 125, 126, 128, 135, 140, 141, 142, 145, 147, 167, 171, 180, 186, 188, 190, 202, 204, 209, 222, 229], "couldn": 52, "couldnottranslateexcept": 231, "count": [14, 29, 37, 42, 61, 76, 81, 87, 90, 148, 167, 199, 232], "counter": [20, 78, 197], "counterformatt": 199, "counterpart": 115, "countri": [113, 114, 229], "coupl": [21, 150, 190], "cours": [18, 33, 107, 122, 128, 141, 142, 190, 204], "cover": [9, 45, 61, 76, 87, 101, 107, 115, 122, 161, 190, 213, 214], "coverag": [15, 95, 101, 213], "cow": 140, "cp": 152, "cpu": [125, 151, 154, 165, 166], "craft": 82, "craftenv": 82, "craftroot": 82, "craftsmanship": 243, "crash": 95, "crawler": 234, "creat": [4, 5, 6, 8, 10, 15, 16, 17, 18, 19, 21, 22, 33, 34, 35, 37, 38, 40, 43, 44, 45, 48, 49, 62, 63, 64, 65, 73, 75, 76, 79, 81, 82, 86, 88, 90, 92, 94, 95, 96, 99, 104, 105, 108, 109, 113, 114, 121, 125, 126, 128, 129, 131, 134, 135, 136, 140, 141, 142, 149, 152, 154, 158, 159, 162, 165, 166, 167, 185, 186, 188, 189, 190, 192, 195, 198, 199, 214, 218, 219, 223, 225, 227, 229, 230, 231, 238, 243], "creatabl": [61, 104], "createapp": 190, "createbackup": 138, "createcachedcalendarobject": 221, "createcalendar": 221, "createcalendarobject": 221, "createcard": 221, "createcli": 61, "createconvers": 139, "created_at": [129, 132], "createdat": 136, "createdistribut": 19, "createel": [126, 129], "createev": 106, "createeventbuild": 106, "createeventsourc": [221, 229], "createfakefileforlocal": 154, "createfakefileforvuefil": 154, "createfil": 107, "createfromstr": [106, 107], "createincalendar": 106, "createinmemori": 19, "createloc": 19, "createmessag": 103, "createnamedparamet": [37, 104], "createoper": 70, "createowncloudcli": 70, "createparamet": 229, "createpotfil": [154, 167], "createremotefolderoper": 70, "createremoteshareoper": 70, "createsubscript": 221, "createt": [40, 136], "createtodo": 49, "createus": 146, "creation": [17, 21, 22, 33, 40, 52, 61, 66, 77, 93, 129, 136, 185], "creation_tim": 61, "creationd": [61, 66], "creationdatetim": 64, "creator": [82, 113, 129], "creatorid": 101, "credenti": [46, 75, 82, 156, 192, 209], "credentialsmanag": 232, "credit": 204, "crisp": 131, "criteria": [20, 21, 106, 122, 231], "critic": [11, 29, 90, 97, 115, 122, 130, 166, 188, 209, 212, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 238], "criticalactionperformedev": 29, "cron": [1, 15, 28, 29, 106, 130, 201], "cronjob": 104, "crontab": 104, "crop": [17, 22, 229], "cross": [20, 29, 49, 190, 208], "crsf": 131, "crt": [10, 15, 152, 192], "crucial": 122, "crypt": 221, "crypto": [232, 234], "cryptosessiondata": 20, "cs_cz": 8, "csp": [20, 31, 209, 217, 229], "csp_nonc": 231, "csr": [10, 192], "csrf": [20, 24, 115, 131, 209, 231, 232], "csrftokenmanag": 232, "css": [6, 7, 14, 20, 24, 28, 96, 126, 132, 134, 154, 181, 185, 186, 189, 199, 200, 201, 223, 226, 229, 231, 233, 239], "csync": 82, "ctime": 61, "ctrl": 226, "cuda": [151, 154, 165, 166], "curl": [5, 44, 45, 48, 60, 62, 63, 64, 66, 82, 96, 101, 104, 129, 131, 152, 240, 242], "curli": [20, 33], "current": [5, 8, 10, 13, 16, 17, 20, 21, 22, 25, 38, 42, 43, 46, 47, 48, 50, 52, 56, 57, 61, 63, 69, 73, 76, 82, 85, 92, 94, 95, 96, 101, 105, 115, 116, 121, 125, 127, 132, 133, 134, 135, 137, 138, 140, 141, 142, 146, 148, 151, 154, 157, 159, 160, 167, 169, 175, 177, 186, 189, 211, 226, 231, 232, 233, 234, 239, 243], "currentus": 220, "cursor": [37, 129, 132], "custom": [1, 2, 5, 10, 17, 18, 22, 27, 28, 30, 31, 45, 61, 76, 77, 87, 98, 99, 106, 109, 110, 111, 113, 132, 135, 136, 140, 144, 151, 153, 166, 200, 204, 215, 223, 228, 229, 230, 232, 234, 236], "custom2": 49, "custom_app": 156, "custom_bool": 132, "custom_int": 132, "custom_us": 132, "customev": 129, "customexport": 120, "customfield": 20, "customid": [87, 140], "customiz": 195, "cut": [20, 62, 76, 81, 231], "cute": 132, "cycl": [20, 188], "d": [44, 60, 61, 62, 64, 66, 82, 89, 96, 104, 152, 189, 192, 204, 227], "d1680193199": 73, "d5f1fa": 194, "d8f3da": 194, "d9a428292998": 61, "daemon": [150, 151, 154, 158, 160, 161, 162, 165], "daemon_config_nam": 165, "daemonconfig": [149, 150, 166, 183], "dai": [18, 42, 50, 107, 179, 192], "daili": [16, 129], "damag": 209, "danger": [77, 97, 209], "dark": [20, 34, 42, 46, 77, 96, 129, 144, 194, 221, 231], "darker": [77, 194], "darkest": 129, "darwin": 234, "dash": 123, "dashboard": [86, 113, 126, 227, 230, 231], "dashboardmodel": 96, "data": [2, 5, 10, 14, 17, 18, 19, 21, 22, 25, 28, 33, 34, 35, 37, 38, 40, 42, 43, 44, 45, 46, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 73, 79, 88, 96, 98, 100, 101, 104, 106, 108, 113, 115, 120, 125, 131, 132, 134, 136, 140, 145, 148, 153, 156, 165, 166, 171, 175, 185, 187, 188, 189, 190, 192, 199, 208, 229, 231, 232, 233, 243], "databas": [2, 5, 9, 15, 16, 17, 21, 22, 28, 29, 36, 40, 44, 46, 50, 90, 92, 93, 95, 97, 98, 99, 100, 107, 113, 114, 130, 132, 135, 148, 168, 177, 179, 191, 201, 209, 213, 224, 228, 229, 234, 243], "databaseconnect": 232, "datacollector": 125, "dataprovid": 187, "datarespons": [20, 43, 49, 131, 190, 240], "dataset": 218, "date": [3, 16, 18, 37, 42, 48, 50, 52, 56, 61, 63, 66, 70, 76, 82, 85, 95, 106, 107, 115, 121, 136, 140, 141, 142, 206, 214, 231, 232, 239], "date_immut": [37, 232], "dateinterv": 106, "datetim": [20, 37, 64, 66, 69, 94, 132, 139, 140, 143, 232], "datetime_immut": [37, 232], "datetime_tz": [37, 232], "datetime_tz_immut": [37, 232], "datetimeformatt": [134, 232], "datetimeimmut": [37, 106, 127, 132, 136, 232], "datetimezon": [106, 143, 232], "dav": [4, 5, 46, 50, 61, 62, 63, 64, 65, 67, 68, 70, 89, 104, 107, 133, 148, 185, 201, 221, 222, 229, 232, 233], "davacl": 107, "davcalendardemo": 107, "davgetcli": 73, "dayo": 129, "dayo_android": 129, "db": [21, 29, 37, 40, 61, 97, 141, 142, 209, 211, 213, 215, 222, 224, 227, 228, 229, 231, 232, 234], "dbal": [95, 234], "dbalexcept": [97, 222], "dbdbdb": 194, "dbe4ea": 194, "dbgp": 98, "dc5047": 105, "dcmake_build_typ": 82, "dcmake_install_prefix": 82, "dcmake_prefix_path": 82, "dcvalue1": 122, "dcvalue2": 122, "dd": [50, 52], "ddo": 209, "de": [5, 15, 42, 46, 98, 123, 232, 243], "de_d": 46, "deactiv": 144, "deactivat": [88, 113], "dead": 14, "deadlock": [20, 113, 114, 122, 228], "deal": [33, 42, 49, 105, 129, 140], "dealing_with_code_issu": 49, "dealt": 204, "debt": [185, 204], "debug": [29, 33, 40, 82, 87, 100, 113, 118, 122, 125, 129, 135, 137, 140, 141, 142, 218, 223, 231], "debugg": [100, 113], "debugmodesetupcheck": 135, "decid": [14, 15, 16, 20, 42, 69, 144, 167, 188, 204, 227, 243], "decis": [51, 185, 204], "deck": [42, 61, 76, 80, 126], "deckcard": 132, "declar": [0, 1, 12, 30, 61, 89, 94, 96, 101, 102, 104, 107, 113, 114, 116, 120, 124, 125, 126, 133, 134, 135, 136, 137, 140, 141, 142, 145, 147, 154, 172, 178, 183, 190, 230, 239, 240], "declarative_set": 179, "declarativeset": [99, 167], "declarativesettingsgetvalueev": 99, "declarativesettingsregisterformev": 99, "declarativesettingssetvalueev": 99, "declarativesettingstyp": 99, "declin": 45, "decod": [37, 44, 48, 113, 114], "decoupl": 21, "decrypt": 215, "decryptal": 221, "dedic": [3, 16, 22, 60, 107, 115, 118, 122, 131, 199, 206, 221, 229], "deduc": 21, "deep": [17, 22, 104], "deeper": 201, "defacto": 233, "default": [5, 8, 13, 17, 18, 22, 25, 28, 29, 30, 31, 37, 44, 46, 48, 49, 52, 56, 61, 69, 76, 77, 82, 87, 90, 92, 93, 97, 98, 99, 101, 104, 106, 107, 123, 125, 126, 128, 131, 132, 139, 141, 142, 145, 149, 151, 152, 153, 154, 158, 159, 160, 165, 168, 171, 174, 175, 177, 179, 181, 186, 187, 188, 192, 194, 195, 196, 198, 199, 200, 216, 217, 218, 228, 229, 231, 232, 233, 240], "default_en": 5, "default_languag": 42, "default_valu": 175, "defaultact": 187, "defaultraw": 92, "defaultvalu": 33, "defens": 209, "defer": [141, 142], "defin": [1, 3, 5, 10, 16, 20, 21, 29, 30, 32, 33, 37, 40, 42, 43, 45, 49, 52, 53, 56, 57, 59, 61, 69, 76, 90, 92, 93, 94, 95, 96, 99, 101, 103, 105, 107, 110, 113, 114, 124, 129, 130, 131, 133, 134, 140, 141, 142, 146, 147, 153, 186, 190, 199, 209, 222, 230, 232, 240], "definit": [45, 58, 69, 92, 95, 107, 185, 206], "del": 152, "delai": [18, 20, 122, 199], "deleg": [0, 5, 107, 160, 234], "delegategetsupportedapp": 233, "delet": [15, 22, 33, 35, 37, 45, 48, 49, 50, 54, 63, 64, 65, 71, 73, 75, 76, 77, 81, 86, 89, 90, 93, 97, 102, 107, 113, 121, 122, 129, 131, 132, 140, 145, 146, 169, 170, 171, 172, 175, 178, 179, 180, 181, 190, 198, 199, 209, 228, 229, 231, 232, 234], "deletealluserconfig": 93, "deleteapp": [90, 93, 216], "deletecachedcalendarobject": 221, "deletecalendar": 221, "deletecalendarobject": 221, "deletecard": 221, "deletecont": 94, "deleteconvers": 139, "deletekei": [90, 93], "deletemetadata": [104, 229], "deleteprovid": 94, "deletesubscript": 221, "deletetask": 140, "deletetodo": 49, "deleteus": 0, "deleteuserconfig": 93, "deliber": 14, "delight": 14, "deliv": [14, 119], "deliver": 11, "demand": [20, 76, 94, 107, 134], "demonstr": [130, 132, 152], "deni": [17, 22, 61, 82], "denot": [5, 77], "dens": 76, "dep": [82, 85, 152], "depend": [0, 1, 4, 5, 8, 12, 16, 18, 20, 25, 28, 29, 33, 37, 40, 43, 49, 61, 69, 71, 80, 90, 110, 115, 116, 118, 120, 127, 128, 129, 131, 132, 134, 137, 140, 141, 142, 144, 149, 152, 154, 159, 169, 189, 193, 198, 201, 209, 210, 217, 222, 223, 224, 225, 226, 228, 230, 231, 232, 233, 234, 239, 243], "dependabot": 115, "deploi": [150, 151, 154, 156, 158, 160, 161, 162, 166, 222], "deploy": [12, 150, 152, 153, 162, 163, 183], "deployconfig": [150, 165], "deprec": [5, 11, 20, 21, 22, 26, 30, 34, 37, 49, 57, 61, 85, 92, 101, 115, 116, 127, 130, 131, 137, 141, 142, 152, 166, 186, 194, 196, 206, 210, 212, 238, 240], "depth": [32, 61, 66, 73, 104, 148, 189], "deriv": 190, "desc": 69, "descend": [66, 104], "describ": [8, 10, 16, 20, 29, 43, 49, 66, 71, 72, 81, 82, 99, 101, 106, 107, 127, 129, 134, 140, 144, 161, 165, 173, 179, 185, 189, 190, 206], "descript": [1, 5, 20, 31, 40, 42, 45, 50, 54, 56, 57, 58, 59, 61, 66, 69, 76, 81, 87, 90, 92, 99, 101, 106, 107, 110, 120, 124, 129, 131, 140, 144, 145, 175, 179, 180, 187, 194, 199], "descriptor": 42, "deserv": [79, 204], "design": [10, 14, 21, 33, 45, 79, 99, 115, 136, 151, 152, 160, 185, 197, 199, 201, 228, 231, 233], "desir": [13, 20, 44, 70, 134, 166, 185], "desktop": [43, 44, 82, 101, 129, 185, 190, 199, 201, 203], "despit": [85, 151, 209, 233], "dest": 63, "destin": [61, 62, 63, 209], "destroi": [33, 44, 126, 129], "destruct": [76, 77, 81], "destructur": 234, "detail": [5, 6, 11, 16, 17, 20, 21, 22, 29, 33, 38, 40, 42, 43, 48, 49, 61, 66, 69, 76, 80, 81, 85, 90, 93, 97, 98, 107, 110, 125, 127, 129, 132, 140, 151, 152, 153, 156, 158, 163, 175, 187, 193, 197, 198, 201, 213, 215, 221, 222, 226, 229, 231, 233, 234, 235, 236], "detect": [58, 82, 96, 97, 101, 115, 122, 125, 140, 154, 186, 222, 227, 228, 236], "detectlanguag": 116, "determin": [32, 49, 61, 80, 97, 110, 125, 129, 132, 153, 166, 226, 231, 233], "dev": [3, 16, 49, 62, 82, 95, 96, 97, 100, 113, 151, 152, 154, 163, 190, 192, 201, 239], "devdepend": 118, "develop": [5, 7, 8, 9, 10, 13, 14, 15, 16, 20, 21, 22, 27, 40, 42, 46, 75, 79, 81, 83, 92, 96, 97, 101, 106, 113, 118, 122, 124, 125, 126, 128, 129, 134, 135, 145, 149, 150, 153, 154, 162, 166, 167, 185, 191, 192, 194, 202, 203, 204, 208, 209, 212, 220, 222, 228, 231, 232, 234, 239, 240], "devic": [44, 46, 70, 75, 79, 151, 159, 160, 165, 192], "dhparam": 192, "di": [0, 21, 22, 29, 215, 232], "diagnost": [21, 232], "dialog": [5, 76, 77, 81, 218, 220, 230, 231, 235], "dialogbuild": 231, "dictat": 107, "dictionari": 73, "did": [20, 50, 125, 131, 204, 206, 209, 221, 231], "didn": 231, "diff": [154, 192], "differ": [0, 2, 5, 10, 17, 20, 21, 22, 27, 32, 37, 40, 42, 43, 44, 46, 49, 61, 69, 70, 72, 73, 76, 77, 79, 81, 82, 89, 90, 92, 93, 98, 107, 126, 128, 129, 132, 134, 135, 151, 159, 167, 187, 188, 190, 200, 209, 210, 222, 229, 231, 232, 243], "differenti": [61, 204, 233], "difficult": [10, 132], "diffus": 141, "dig": 201, "digit": [5, 40], "dir": [61, 69, 73, 82, 132, 171, 209], "direct": [17, 22, 45, 61, 76, 81, 113, 129, 148, 152, 185, 194, 199, 200, 201, 202, 209, 222, 229, 232], "directedit": 101, "directeditingmobileinterfac": 101, "directli": [13, 15, 17, 20, 21, 22, 32, 33, 38, 41, 44, 61, 63, 73, 107, 129, 130, 140, 141, 142, 149, 175, 185, 188, 190, 193, 194, 195, 199, 209, 213, 218, 222, 223, 231, 232, 233, 234], "directori": [3, 7, 15, 16, 20, 38, 41, 42, 52, 61, 63, 66, 72, 82, 83, 95, 100, 110, 113, 118, 130, 134, 146, 149, 152, 154, 167, 171, 189, 190, 192, 208, 229, 231, 232, 243], "directorori": 3, "dirnam": 219, "dirti": 122, "disabl": [13, 14, 17, 22, 27, 45, 52, 61, 76, 98, 100, 101, 113, 129, 130, 131, 132, 135, 140, 144, 146, 151, 153, 154, 166, 170, 173, 189, 190, 192, 195, 215, 219, 228, 229, 233], "disablekeyboardshortcut": [25, 226], "disableoriginalconstructor": 41, "disableproviderfor": 144, "disadvantag": 19, "disagr": 185, "disallowchildsrcdomain": 235, "disallowxyz": [17, 22], "disappear": 215, "discard": 107, "disclaim": 77, "disclos": [10, 12], "disclosur": 209, "discourag": [95, 115, 131, 233], "discov": [2, 106, 129, 190], "discover": 129, "discoveri": [21, 90, 101, 113, 192, 201, 222, 233], "discuss": [5, 13, 20, 115, 131, 145, 150, 185, 204, 240], "disk": 161, "dismiss": [76, 79, 101, 185, 204], "dispatch": [6, 17, 20, 28, 29, 101, 126, 129, 132, 138, 227, 228, 232, 233], "dispatchev": 129, "dispatchtyp": [29, 126, 129], "displai": [5, 10, 13, 25, 33, 46, 56, 57, 58, 61, 66, 69, 76, 84, 96, 99, 101, 102, 113, 117, 121, 122, 124, 125, 126, 128, 132, 134, 140, 144, 145, 165, 171, 179, 180, 181, 184, 190, 198, 199], "display_nam": 90, "displaynam": [25, 46, 50, 61, 66, 107, 121, 134, 171, 181], "disrupt": 42, "dist": [3, 129, 217], "distanc": 200, "distinct": [49, 164], "distribtut": 192, "distribut": [10, 14, 28, 82, 83, 98, 189, 192], "div": [26, 42, 126, 129, 134, 190, 193, 198, 199, 200, 232], "dive": [17, 22], "divid": [134, 204], "divis": 207, "django": 30, "dll": 82, "dn": 161, "dnd": 54, "do": [6, 8, 14, 15, 16, 17, 18, 20, 21, 22, 25, 29, 33, 34, 35, 37, 40, 44, 45, 46, 48, 54, 56, 60, 61, 62, 63, 69, 70, 71, 76, 77, 79, 81, 82, 90, 93, 97, 101, 104, 105, 106, 107, 115, 116, 122, 125, 128, 131, 132, 134, 139, 140, 142, 184, 185, 186, 187, 188, 189, 190, 192, 193, 199, 200, 202, 206, 209, 220, 227, 228, 231, 232, 233, 234, 239, 243], "do_someth": [33, 186], "doc": [3, 8, 34, 49, 55, 82, 97, 98, 115, 118, 119, 127, 140, 151, 159, 175, 220, 234], "doc_url": 99, "docblock": 190, "dock": 149, "dock2port": 149, "docker": [8, 82, 96, 150, 151, 152, 153, 154, 159, 161, 162, 163, 165, 183, 189, 190, 192, 243], "docker_instal": 149, "docker_local_sock": 165, "docker_socket_proxi": 156, "dockerfil": [82, 152, 153, 154], "dockersocketproxi": 152, "docron": 18, "doctrin": [95, 234], "doctyp": 103, "document": [1, 4, 5, 6, 11, 16, 20, 38, 43, 44, 45, 46, 60, 61, 62, 64, 66, 69, 71, 73, 76, 82, 83, 85, 94, 95, 96, 98, 99, 104, 105, 107, 113, 115, 117, 118, 121, 122, 126, 129, 131, 135, 140, 144, 150, 152, 155, 161, 162, 190, 192, 196, 199, 202, 204, 208, 221, 222, 226, 227, 228, 229, 230, 231, 232, 233, 235, 241], "document_id": 48, "documentclick": 199, "documentid": [48, 141], "documentload": 101, "documentserv": 192, "documentsmain": 101, "documenttitl": 141, "documenttyp": 94, "docx": 43, "doe": [10, 13, 14, 15, 20, 25, 37, 38, 41, 44, 46, 49, 50, 54, 61, 81, 92, 96, 106, 107, 122, 129, 132, 134, 135, 137, 140, 141, 142, 146, 152, 153, 156, 165, 166, 187, 188, 190, 193, 199, 204, 213, 221, 222, 228, 231, 232, 235], "doesn": [7, 52, 82, 122, 161, 204, 223, 227], "doesnotexistexcept": [37, 228], "dog": 48, "dom": [96, 129, 209], "domain": [20, 106, 108, 112, 113, 114, 124, 132, 135, 192, 209], "domcontentload": [96, 221], "domor": 20, "dompurifi": [219, 223], "don": [15, 16, 20, 21, 25, 32, 37, 96, 99, 108, 119, 122, 129, 130, 133, 137, 140, 141, 142, 157, 176, 184, 186, 189, 198, 199, 204, 209, 215, 218, 220, 222, 228, 239], "donat": 11, "done": [0, 10, 13, 15, 20, 21, 25, 26, 30, 37, 40, 44, 48, 52, 54, 59, 61, 62, 67, 68, 72, 79, 89, 90, 92, 99, 107, 125, 129, 134, 135, 141, 142, 146, 151, 154, 165, 166, 185, 188, 190, 204, 206, 210, 231, 234, 243], "door": 14, "doriskyth": 29, "dosometh": [20, 29, 186], "dosomework": 37, "dosomeworkwithresult": 37, "dot": [5, 42, 76, 190, 192, 199, 200], "doubl": [20, 26, 94, 106, 107, 122, 190, 209], "down": [14, 17, 20, 22, 49, 74, 82, 125, 154, 169, 192, 199, 204], "downgrad": [14, 16], "download": [3, 7, 16, 17, 22, 45, 63, 65, 71, 82, 101, 152, 153, 190, 192, 232], "download_url": 15, "downloada": 101, "downloadnextcloudwebsit": 112, "downloadoper": 70, "downloadremotefileoper": 70, "downloadrespons": 20, "downloadurl": 61, "downloadxmlfil": 20, "downsid": 132, "downstream": [49, 142], "dozen": [141, 142], "dperson": 192, "dpkg": 152, "dpkgarch": 152, "dqtkeychain_include_dir": 82, "draft": [110, 129], "drag": 197, "drawback": 21, "drive": 82, "driver": 95, "drop": [16, 40, 76, 81, 101, 152, 197, 202, 210, 211, 223, 225, 227], "drop_latest": 33, "dropcolumn": 40, "dropdown": [78, 126, 129], "dropindex": 40, "droplatest": 33, "droppabl": 199, "droptabl": 40, "dsp": [149, 152, 162], "dtend": 107, "dtstamp": 107, "dtstart": 107, "du": 62, "due": [33, 37, 49, 61, 82, 97, 140, 166, 187, 196, 204, 222, 229, 230], "dummi": [61, 132, 187], "dummydata": 187, "dump": [15, 40, 89], "duplic": [12, 148], "durat": [29, 106], "dure": [16, 17, 19, 20, 22, 37, 40, 42, 50, 61, 85, 90, 93, 96, 98, 106, 107, 119, 124, 126, 130, 145, 148, 153, 154, 161, 166, 167, 168, 170, 178, 189, 190, 213, 228, 233], "dylib": 82, "dynam": [20, 61, 82, 89, 140, 179, 194, 229, 231], "e": [0, 1, 3, 5, 8, 12, 16, 17, 18, 20, 21, 22, 25, 26, 29, 32, 33, 34, 36, 37, 38, 40, 41, 42, 46, 49, 52, 53, 54, 61, 69, 72, 81, 87, 89, 94, 95, 96, 97, 98, 101, 105, 107, 110, 112, 115, 122, 124, 125, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 144, 145, 150, 151, 152, 153, 154, 156, 161, 165, 167, 171, 181, 185, 186, 188, 189, 190, 192, 194, 199, 209, 221, 222, 223, 229, 234, 243], "e164": [123, 229], "e1663913": 63, "e2eepublicsharetemplateprovid": 31, "e5eff5": 194, "e6e6e6": 194, "each": [0, 1, 10, 12, 16, 17, 19, 20, 21, 22, 27, 29, 30, 32, 33, 34, 35, 37, 38, 43, 44, 61, 62, 66, 69, 76, 79, 87, 90, 92, 93, 96, 98, 99, 101, 104, 105, 106, 107, 110, 120, 129, 132, 135, 140, 141, 144, 151, 154, 159, 160, 164, 179, 189, 190, 199, 204, 209, 236], "eadndfjplgieldjbigjakmdgkmoaaaoc": 98, "earli": [0, 16, 20, 25, 49, 90, 135], "earlier": [18, 49, 82, 107, 212], "earth": 129, "eas": [0, 37, 92, 115, 135, 149, 194, 232], "easi": [14, 15, 21, 35, 43, 49, 79, 82, 98, 122, 127, 140, 152, 185, 190, 199], "easier": [15, 21, 22, 36, 42, 49, 81, 82, 85, 118, 143, 165, 189, 204, 232], "easiest": [49, 98, 188, 243], "easili": [8, 14, 18, 20, 22, 29, 42, 46, 49, 61, 98, 122, 131, 149, 166, 204, 209, 227], "echo": [15, 26, 48, 62, 82, 152, 209], "ecm_enable_sanit": 82, "eco": 22, "ecosystem": [150, 201, 208], "edb29d1d": 106, "eded": 194, "edg": [20, 115, 222, 229], "edit": [4, 10, 46, 104, 113, 129, 185, 192, 197, 200, 201, 232, 239], "edit_req_ownership": 104, "editor": [17, 22, 61, 76, 96, 113, 156], "editorid": 101, "educ": 92, "effc3d5818a6d5d55f2ae960ab39fd0414d0c542b72a3b9e08eb21206dd9": 10, "effect": [0, 20, 41, 107, 121, 188, 194, 222, 229, 231, 243], "effici": [20, 38, 122, 148, 228], "effort": [20, 107, 185, 226], "eg": 73, "eight": 29, "either": [5, 10, 25, 30, 38, 46, 61, 66, 87, 90, 106, 129, 132, 135, 147, 156, 186, 189, 202, 204, 206, 220, 221, 227, 228, 231, 243], "el": [96, 126, 129], "eleg": 21, "elem": [20, 229], "elemenet": 46, "element": [1, 5, 27, 35, 42, 43, 46, 61, 76, 78, 79, 81, 96, 107, 129, 132, 184, 185, 193, 197, 199, 200, 201, 231, 232, 233, 234, 235, 240], "elev": 20, "elig": 90, "elm": 199, "els": [10, 20, 21, 22, 37, 38, 41, 46, 49, 106, 110, 115, 128, 129, 132, 134, 135, 139, 140, 142, 146, 152, 154, 171, 187, 190, 199, 204, 229], "elseif": 154, "elsewher": [8, 82, 116, 132, 137, 140, 141, 142], "em": [42, 134], "email": [5, 17, 18, 22, 42, 45, 46, 61, 69, 76, 86, 99, 108, 110, 113, 124, 179, 185, 200, 215, 219, 227, 229, 231, 233, 241], "emailact": 108, "emailid": [140, 142], "emailtempl": 215, "emailtext": [140, 142], "emb": [131, 209], "embed": [107, 134, 154, 171, 209], "embrac": 150, "emerg": [29, 150], "emiss": 140, "emit": [2, 6, 17, 22, 25, 29, 49, 113, 114, 119, 121, 129, 230, 233], "emitt": [17, 28], "emoji": [49, 54], "emot": 81, "emphas": 194, "emphasi": [0, 69, 77], "emphat": 204, "employe": 185, "empti": [8, 15, 18, 19, 34, 37, 45, 48, 52, 61, 65, 69, 78, 87, 96, 99, 107, 108, 134, 162, 166, 173, 192, 215, 228, 243], "emptycontentmessag": 96, "emptycontentsecuritypolici": [218, 229, 235], "en": [5, 8, 46, 61, 62, 97, 98, 107, 129, 136, 230, 231, 234, 243], "enabl": [0, 4, 5, 8, 10, 13, 17, 20, 22, 27, 34, 40, 42, 44, 46, 48, 49, 51, 52, 54, 61, 69, 76, 82, 83, 90, 94, 96, 97, 98, 99, 100, 107, 113, 118, 119, 120, 121, 129, 130, 131, 134, 135, 139, 140, 144, 146, 149, 151, 152, 158, 161, 162, 165, 171, 172, 179, 181, 183, 186, 190, 192, 194, 200, 215, 228, 229, 231, 232, 234, 242], "enabledsidebar": 234, "enableproviderfor": 144, "encapsul": [20, 131, 132, 236], "encod": [5, 20, 44, 49, 52, 61, 64, 66, 70, 104, 164, 178, 231], "encodepath": [219, 235], "encount": [1, 10, 98, 156, 159, 161, 162, 191], "encourag": [49, 95, 199, 206, 220, 232], "encrypt": [20, 31, 61, 93, 99, 134, 146, 168, 177, 204, 232], "encryptedfil": 215, "encryptionfilehelp": 232, "encryptionkeystorag": 232, "encryptionmanag": 232, "end": [10, 16, 17, 19, 20, 22, 28, 37, 49, 50, 61, 69, 76, 81, 82, 95, 99, 104, 106, 107, 115, 121, 124, 126, 132, 134, 140, 183, 185, 187, 188, 190, 194, 201, 241], "enddat": [50, 106, 121], "endedat": 87, "endif": 134, "endoflif": 239, "endpoint": [17, 20, 22, 25, 33, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 65, 67, 68, 75, 87, 93, 101, 116, 120, 128, 129, 140, 141, 142, 153, 165, 166, 168, 169, 170, 171, 173, 174, 175, 177, 179, 180, 181, 182, 215, 227, 228, 232, 233, 234, 240], "enforc": [5, 10, 20, 61, 90, 92, 93, 101, 104, 144, 194], "engag": 204, "engin": [17, 20, 22, 48, 82, 97, 105, 149, 158, 159, 165, 209, 239, 243], "english": [42, 94, 137, 140, 141, 142], "enhanc": [115, 128, 144, 185, 188, 204], "enorm": 209, "enough": [61, 76, 79, 85, 104, 149, 158, 161, 162, 185, 188, 194, 202, 233], "ensur": [0, 3, 10, 12, 16, 20, 23, 27, 36, 37, 41, 44, 46, 61, 77, 93, 94, 115, 122, 128, 129, 135, 150, 151, 152, 156, 166, 204, 209], "enter": [8, 20, 25, 52, 70, 76, 82, 99, 128, 179, 192, 226], "enterpris": 11, "entir": [20, 42, 63, 69, 76, 82, 190, 199, 200], "entiti": [39, 42, 50, 107, 111, 113, 126, 227, 231, 232, 235], "entri": [0, 4, 5, 17, 20, 21, 22, 25, 26, 29, 33, 34, 37, 41, 43, 61, 76, 93, 101, 104, 108, 122, 126, 129, 132, 150, 154, 171, 172, 183, 186, 197, 198, 200, 209, 223, 229, 232, 243], "entrypoint": 152, "enum": [85, 92, 186, 233, 238], "enumer": 140, "env": [15, 20, 118, 152], "env_var": 15, "envelop": [76, 190], "environ": [3, 7, 9, 15, 16, 36, 41, 82, 98, 122, 135, 154, 155, 158, 163, 188, 190, 191, 192, 199, 201, 205, 231, 241, 243], "eof": 107, "eol": [16, 227], "epoch": 16, "eq": [3, 37, 66, 192], "equal": [16, 166], "equalto": 41, "equival": [20, 21, 33, 90, 101, 149, 190, 236], "error": [1, 11, 29, 37, 41, 42, 45, 48, 56, 57, 58, 62, 63, 75, 76, 77, 81, 82, 86, 87, 95, 97, 100, 101, 113, 116, 126, 129, 133, 135, 137, 140, 141, 142, 151, 153, 156, 161, 166, 168, 170, 173, 177, 194, 221, 222, 231, 233, 240], "errorbaselin": 95, "errorcod": 222, "errorcount": 48, "errorinfo": 222, "errorlevel": [49, 95], "errorlog": 29, "escal": 208, "escap": [190, 209, 215, 221], "escapehtml": [209, 217], "escapeshellarg": 209, "escapeshellcmd": 209, "eshapetyp": 140, "eslint": [118, 154], "esm": 135, "especi": [3, 14, 20, 40, 42, 44, 49, 76, 82, 90, 122, 154, 184, 189, 209, 231], "essenc": 21, "essenti": [46, 73, 199], "establish": 21, "estat": 134, "estim": [142, 145], "etag": [35, 49, 61, 62, 66, 69, 101, 107, 171], "etc": [20, 21, 29, 41, 46, 71, 77, 122, 129, 130, 150, 151, 153, 154, 156, 161, 176, 186, 189, 192, 217, 243], "eurooffic": 101, "europ": 106, "eux": 152, "eval": [209, 216, 218, 229], "evalu": 188, "evaluatejavascript": 101, "even": [10, 16, 17, 20, 22, 42, 49, 70, 98, 105, 119, 122, 140, 153, 170, 186, 188, 189, 202, 204, 209, 215], "event": [0, 4, 5, 15, 18, 20, 25, 28, 40, 42, 46, 75, 76, 85, 86, 87, 88, 101, 102, 105, 109, 113, 114, 119, 122, 129, 130, 134, 138, 172, 183, 199, 201, 210, 219, 220, 221, 224, 227, 228, 231, 232], "event_data": 169, "event_ent": 229, "event_fail": 229, "event_load_additional_script": [6, 221, 229], "event_load_additional_scripts_loggedin": [6, 221, 229], "event_run": 229, "event_subtyp": 169, "event_success": 229, "event_typ": 169, "eventdispatch": [2, 25, 29, 99, 101, 104, 126, 129, 137, 140, 141, 142, 220, 223, 229, 231], "eventdispatcherinterfac": 229, "eventlogg": 232, "events_listen": 169, "eventsdispatch": [85, 233], "eventslisten": 169, "eventsourc": 229, "eventsubtyp": 169, "eventtyp": 169, "eventu": 221, "ever": [14, 209], "everi": [0, 1, 2, 6, 8, 16, 18, 20, 21, 29, 37, 38, 42, 43, 49, 63, 76, 81, 82, 94, 95, 96, 101, 108, 118, 122, 129, 130, 147, 188, 190, 199, 200, 202, 209, 221, 230, 236, 239, 243], "everybodi": [14, 79, 118], "everyon": [5, 15, 20, 21, 205, 232], "everyth": [9, 15, 21, 46, 49, 61, 107, 115, 122, 185, 190, 199, 229], "everywher": [49, 190], "evolv": [21, 150], "ex": [20, 82, 152, 153, 164, 166, 168, 170, 177], "ex_app": 154, "ex_app_id": 154, "ex_app_menu_entry_nam": 154, "exact": [72, 107, 115], "exactli": [21, 33, 49, 76, 81, 107, 121, 190, 200, 204], "examin": 104, "exampl": [2, 5, 7, 8, 10, 13, 14, 15, 16, 17, 18, 20, 21, 22, 25, 29, 30, 33, 35, 36, 37, 40, 42, 44, 46, 48, 49, 60, 61, 62, 65, 67, 68, 75, 76, 79, 80, 81, 82, 87, 90, 92, 96, 97, 98, 99, 101, 104, 105, 106, 107, 113, 114, 122, 125, 126, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 144, 151, 154, 155, 156, 160, 166, 167, 170, 172, 174, 179, 185, 187, 188, 190, 194, 198, 200, 204, 209, 217, 227, 229, 230, 232, 233, 234, 236, 239, 240, 243], "exapp": [28, 140, 149, 150, 155, 157, 158, 160, 162, 164, 166, 167, 168, 169, 172, 173, 174, 175, 176, 177, 178, 179, 181, 182, 183, 201, 231], "exappconfig": [150, 168], "exappprefer": [150, 177], "exapprequir": 231, "exapps_dev": 152, "exappservic": 156, "exce": 129, "exceed": [56, 57, 58], "except": [0, 10, 20, 21, 28, 30, 33, 36, 38, 45, 63, 69, 77, 85, 92, 97, 98, 99, 104, 107, 112, 115, 125, 131, 133, 140, 141, 142, 143, 160, 172, 221, 222, 223, 228, 229, 231, 233, 234], "exceptionalimplement": 233, "excess": 14, "exchang": [20, 88, 101, 113], "exchangedtokenrequestedev": 119, "exclam": 81, "exclud": [178, 209], "exclus": [3, 61, 76, 129], "exec": [49, 152, 189, 190, 192, 209], "execut": [1, 5, 8, 10, 18, 20, 22, 30, 32, 37, 43, 56, 70, 82, 96, 104, 105, 106, 115, 116, 122, 125, 130, 133, 135, 137, 138, 140, 141, 142, 149, 152, 154, 189, 190, 204, 206, 208, 213, 222, 227, 229, 232, 234, 240], "execute_handl": 175, "executequeri": [37, 234], "executestat": [40, 97, 234], "exist": [3, 4, 10, 17, 20, 21, 22, 33, 35, 37, 38, 40, 41, 42, 49, 52, 54, 61, 66, 70, 82, 85, 86, 90, 94, 95, 99, 101, 110, 113, 115, 122, 127, 129, 131, 134, 135, 145, 146, 152, 161, 185, 190, 199, 209, 214, 215, 221, 223, 227, 229, 231, 232, 233], "existingmanag": 146, "exit": [1, 15, 76, 125, 156], "expand": 234, "expans": 150, "expect": [14, 15, 16, 20, 22, 41, 49, 52, 56, 85, 92, 93, 104, 132, 140, 141, 142, 151, 152, 153, 171, 185, 187, 206, 209], "expectedexcept": 41, "expens": [19, 20, 113, 114, 122], "experi": [20, 22, 25, 42, 44, 49, 79, 92, 115, 132, 135, 156, 185, 234], "experiment": [51, 85, 238], "expir": [18, 19, 20, 52, 61, 63, 139], "expired": 52, "expiri": 231, "explain": [0, 14, 49, 76, 81, 82, 105, 125, 129, 188, 189, 190, 192, 204], "explan": [49, 82, 149, 166], "explanatori": [116, 137, 140, 141, 142], "explicit": [21, 45, 90, 233], "explicitli": [14, 21, 29, 49, 81, 90, 94, 107, 130, 131, 140, 206, 209, 213, 220, 221, 228, 231, 233, 239], "explor": [129, 223], "export": [15, 82, 101, 113, 114, 126, 129, 145, 152, 154, 186, 217, 222, 234], "exportdestin": 145, "expos": [29, 45, 46, 54, 69, 73, 75, 90, 99, 101, 105, 115, 128, 147, 152, 158, 165, 234], "exposur": 208, "expr": [37, 104], "express": [37, 210], "ext": [25, 118], "extend": [0, 1, 4, 17, 18, 20, 21, 22, 24, 30, 31, 33, 34, 35, 36, 37, 40, 41, 49, 70, 85, 93, 96, 99, 101, 102, 104, 106, 107, 108, 110, 113, 116, 121, 124, 125, 126, 128, 131, 132, 135, 137, 140, 141, 142, 143, 145, 147, 148, 166, 187, 190, 201, 209, 221, 223, 225, 228, 229, 232, 233, 235, 240, 243], "extendedsupport": 46, "extens": [5, 15, 20, 22, 23, 49, 61, 63, 69, 89, 98, 101, 154, 181, 192, 204, 228, 231, 233], "extern": [17, 22, 29, 46, 48, 61, 72, 73, 76, 102, 113, 119, 125, 131, 134, 150, 154, 160, 164, 165, 178, 201, 204, 206, 209, 223, 231, 233, 234, 241], "externalcalendar": 107, "externallinkact": [224, 234], "externalshareact": [224, 234], "externaltokenrequestedev": 119, "extra": [1, 3, 7, 21, 67, 76, 87, 93, 96, 129, 185, 190], "extra_fil": 10, "extra_info": 129, "extra_param": 192, "extract": [8, 20, 28, 48, 49, 81, 92, 104, 107, 140, 154, 167, 223, 233], "extractmetadata": [104, 229], "extractor": [49, 233], "extrafil": [3, 95], "extrainform": 129, "extran": 232, "extrem": 206, "eyebal": 202, "f": [15, 48, 61, 122, 125, 152, 179], "f1": 62, "f12": 243, "f3e5a15d": 192, "f5ae6efb6e4a3307328a188898968abf000511ab": 152, "f5f5f5": 194, "faaborg": [79, 185], "face": [81, 96, 140, 194, 229], "facetid": 192, "facilit": [35, 44, 206], "fact": [93, 107, 151, 209], "facto": 98, "factor": [5, 12, 20, 44, 88, 113, 125, 159, 164], "factori": [19, 21, 112, 132, 143, 229], "factual": 81, "fae87e29aa7cdf1ea0b8033c67f60e75b10be2cd": 15, "fail": [5, 17, 20, 22, 29, 37, 49, 56, 57, 58, 63, 76, 77, 97, 101, 116, 123, 131, 135, 137, 140, 141, 142, 152, 153, 156, 162, 194, 204, 222, 223, 229, 233], "failover_error": 192, "failover_mod": 192, "failur": [1, 20, 87, 97, 137, 140, 141, 142], "fair": 14, "fairli": 66, "faith": 14, "fake": 192, "fall": [108, 122], "fallback": [5, 20, 25, 38, 107, 129], "fallback_them": 20, "fallbacknam": 129, "fals": [1, 7, 8, 15, 17, 18, 20, 22, 25, 29, 37, 40, 51, 52, 61, 62, 69, 70, 73, 87, 90, 92, 94, 96, 99, 101, 104, 107, 116, 125, 126, 129, 132, 135, 137, 140, 141, 142, 144, 146, 148, 170, 179, 186, 187, 192, 222, 228, 232, 233], "falsi": 231, "famili": [79, 92], "familiar": [21, 43, 82, 89, 98, 122, 190, 204, 205], "famou": 42, "fanci": [96, 107, 116], "faq": 11, "fashion": [37, 129, 238], "fast": [5, 35, 96, 122, 145, 150], "faster": [61, 107, 118, 122, 140, 148, 229, 233], "fastest": 89, "fatal": [29, 135], "faulti": 223, "favicon": 27, "favor": [8, 38, 145, 211, 224, 227, 228, 231, 232], "favorit": [5, 65, 66, 69, 76, 148, 171, 194, 200], "favoriteact": 5, "favoriteprovid": 5, "favour": 213, "favourit": [61, 198], "fea": 129, "feasibl": [10, 97, 134], "featur": [8, 10, 13, 14, 15, 16, 17, 20, 21, 22, 34, 43, 48, 52, 69, 71, 79, 98, 101, 116, 119, 121, 122, 125, 129, 138, 140, 141, 142, 185, 186, 188, 190, 192, 199, 204, 209, 212, 213, 214, 231, 234, 242, 243], "feder": [45, 46, 49, 61], "feed": 5, "feedback": [79, 185, 199, 204], "feel": [21, 32, 76, 159, 161, 162, 167, 202, 204, 223], "fetch": [0, 17, 19, 22, 25, 34, 37, 44, 45, 52, 60, 61, 104, 106, 108, 140, 141, 142, 148, 222, 223, 229, 232, 233, 234], "fetchal": [104, 229, 234], "fetchallassoci": [229, 234], "fetchallforcalendarhom": 107, "fetchallnumer": [229, 234], "fetchassoci": [37, 229, 234], "fetchcolumn": 222, "fetcher": 232, "fetchfirstcolumn": 234, "fetchnumer": [229, 234], "fetchon": [222, 229, 234], "few": [15, 16, 18, 43, 63, 74, 107, 122, 129, 154, 167, 199, 204, 223], "fewer": 16, "ffc3c3": 194, "ffe4a1": 194, "ffe7e7": 194, "ffeec5": 194, "fffff": 194, "ffffff": [46, 194], "fi": [8, 15, 152], "fi_fi": 8, "fichier": 132, "fiction": [0, 129], "field": [5, 21, 37, 43, 50, 52, 54, 56, 57, 58, 59, 78, 82, 87, 89, 93, 104, 134, 136, 140, 151, 154, 165, 178, 179, 188, 189, 190, 194, 202, 223, 231, 232, 233, 234, 239], "field1": 179, "fight": 129, "figur": 116, "file": [0, 2, 5, 6, 7, 10, 11, 12, 13, 15, 16, 21, 23, 28, 32, 33, 36, 40, 41, 42, 43, 45, 46, 48, 49, 51, 53, 60, 64, 65, 66, 67, 69, 71, 75, 80, 81, 82, 83, 84, 85, 89, 94, 95, 96, 98, 102, 105, 107, 110, 113, 116, 118, 122, 126, 127, 128, 129, 130, 132, 133, 134, 135, 137, 140, 141, 142, 148, 150, 151, 152, 154, 165, 167, 169, 172, 174, 175, 176, 178, 183, 185, 186, 187, 190, 192, 201, 208, 215, 219, 221, 222, 225, 226, 227, 228, 229, 230, 233, 235, 236, 238, 239, 243], "file1": [69, 188], "file2": 188, "file_cr": 69, "file_etag": 171, "file_filt": 8, "file_from_env": 15, "file_full_mim": 171, "file_get_cont": 156, "file_hash": 62, "file_id": [43, 104, 186], "file_local_path": 62, "file_mtim": 62, "file_nam": 62, "file_path": 43, "file_permissions_for_own": 171, "file_put_cont": 15, "file_remote_path": 62, "file_s": 62, "fileact": 167, "fileactionsmenu": [150, 169, 171], "filechang": 5, "filecopyrighttext": 185, "filecr": 5, "filedelet": 5, "filedownloadpath": 216, "fileexist": [35, 230, 231, 235], "filefavorit": 5, "fileformat": 8, "fileid": [31, 43, 46, 61, 66, 68, 69, 87, 101, 104, 132, 171, 174, 186, 233], "fileidfield": 104, "fileinfo": [228, 231, 234], "fileisblacklist": [218, 234], "filelistentri": 186, "filelistentryicon": 186, "filelistentrynam": 186, "filenam": [8, 10, 42, 67, 69, 70, 101, 106, 171, 217, 231, 233], "filepath": [15, 43, 70, 87, 220], "fileprogressstr": 42, "filereadingexampl": 38, "filerenam": 101, "filerequest": 52, "filerestor": 5, "files_extern": 192, "files_external_allow_create_new_loc": 36, "files_fulltextsearch": 48, "files_loc": 48, "files_lock": 61, "files_remind": 42, "files_shar": [6, 31, 52, 53, 54, 221, 229], "files_trashbin": [229, 231], "files_vers": 233, "files_zip": 43, "filesactionmenu": 153, "fileslist": 73, "filesmetadata": [104, 229], "filessharingdrop": 232, "filesystem": [0, 17, 28, 32, 39, 41, 42, 76, 122, 237, 241], "filesystem_cache_readonli": 36, "filesystemaccessexampl": 38, "filetablealia": 104, "filetoupload": 70, "filetyp": [25, 171], "fileutil": 70, "filewritingexampl": 38, "fill": [20, 34, 76, 87, 107, 132, 140, 148], "filter": [5, 17, 22, 33, 43, 45, 61, 66, 75, 76, 90, 93, 107, 132, 141, 194, 199, 227, 231, 233], "filterdefinit": 132, "filternotfoundexcept": 231, "filternotificationtyp": 217, "filtertyp": 69, "final": [3, 7, 16, 21, 44, 49, 60, 63, 82, 107, 131, 134, 165, 185, 187, 189, 199, 206, 235], "financi": 13, "find": [14, 15, 22, 37, 46, 49, 52, 61, 71, 79, 82, 83, 89, 95, 97, 105, 106, 107, 110, 118, 125, 127, 153, 154, 156, 161, 185, 189, 190, 199, 211, 212, 231, 234], "findal": [37, 190], "findent": 37, "findonequeri": 37, "findproviderbyid": 110, "findservicebyaddress": 110, "findservicebyid": 110, "findtranslatablefil": 154, "fine": [18, 20, 37, 76, 107, 122, 129, 131, 185], "finer": 19, "fingerprint": [61, 66], "finish": [0, 6, 8, 25, 29, 63, 76, 87, 101, 105, 107, 130, 137, 185, 204], "finishprogress": 130, "fire": [17, 22, 148, 221], "firefox": [98, 243], "firewal": [156, 161], "first": [0, 2, 3, 5, 7, 8, 15, 17, 20, 22, 25, 29, 30, 38, 40, 42, 45, 49, 50, 63, 64, 69, 71, 75, 76, 79, 81, 85, 87, 89, 90, 92, 93, 94, 96, 99, 101, 104, 107, 126, 129, 132, 134, 135, 147, 151, 165, 166, 179, 185, 186, 189, 190, 192, 198, 199, 203, 204, 209, 214, 221, 222, 225, 229, 232, 234, 239, 243], "first_menu": [154, 171], "firstdai": 50, "firstli": [49, 130], "firstlogin": 229, "firstnam": [186, 192], "firstresult": 104, "fist": [141, 142], "fit": [20, 82, 132, 134, 141, 142], "five": [20, 29, 133], "fix": [14, 16, 49, 72, 76, 79, 82, 97, 115, 118, 130, 140, 185, 188, 193, 204, 210, 211, 231], "fixer": [3, 187], "flag": [1, 17, 18, 22, 49, 52, 76, 92, 93, 119, 130, 170, 213, 231, 233, 234], "flag_": 92, "flag_index": 93, "flag_intern": 90, "flag_sensit": [90, 92, 93], "flat": 76, "fledg": 9, "flexibl": [21, 40, 76, 89, 129, 190], "flip": 194, "float": [20, 37, 76, 90, 93, 140, 145, 194, 227, 228], "flow": [60, 71, 75, 76, 90, 101, 111, 113, 153, 154, 163, 172, 183, 201, 204], "fluent": 222, "fly": [20, 76, 98], "fn": [2, 92, 148], "focu": [76, 101, 129, 198, 199], "focus": [20, 76, 129, 194], "focusoncr": 129, "focuss": 194, "folder": [5, 7, 8, 10, 17, 20, 22, 23, 25, 27, 38, 40, 41, 43, 45, 49, 51, 62, 63, 65, 66, 67, 68, 71, 73, 75, 76, 82, 89, 105, 107, 115, 129, 134, 148, 152, 154, 167, 189, 190, 192, 196, 199, 200, 209, 228, 229, 230, 231, 232, 233, 234, 236, 239], "folderpath": 70, "follow": [0, 5, 7, 8, 10, 14, 15, 19, 20, 21, 22, 25, 26, 27, 30, 32, 33, 37, 40, 41, 42, 43, 44, 48, 49, 52, 54, 62, 64, 66, 69, 72, 73, 79, 81, 82, 85, 87, 89, 94, 95, 96, 97, 98, 99, 101, 104, 106, 107, 112, 116, 118, 121, 125, 126, 127, 128, 129, 130, 131, 132, 137, 140, 141, 142, 143, 147, 149, 150, 151, 152, 153, 154, 156, 161, 164, 165, 166, 170, 171, 186, 188, 189, 190, 192, 198, 199, 204, 209, 210, 217, 225, 227, 228, 229, 231, 232, 233, 234, 238, 239, 240, 242, 243], "font": [194, 219], "font_siz": 20, "foo": [0, 3, 20, 21, 46, 99, 101, 146, 179, 186, 187, 188], "foobar": [20, 240], "fooservic": 21, "fopen": [209, 228], "forbid": [20, 218], "forbidden": [20, 26, 49, 69, 70, 107, 145], "forbidden_filenam": 231, "forbidden_filename_charact": 231, "forbidden_filename_extens": 231, "forbiddenexcept": 49, "forc": [14, 42, 45, 149, 204, 232], "force_languag": 42, "forcelanguag": [42, 46, 232], "foreach": [26, 106, 134, 135, 140, 234], "foreground": 233, "foreign": [37, 209], "forgeri": [190, 208], "forget": 209, "fork": 82, "form": [5, 13, 20, 23, 34, 42, 49, 69, 76, 77, 87, 99, 113, 114, 128, 199, 200, 209, 231], "formal": 140, "format": [20, 44, 48, 50, 52, 61, 69, 76, 101, 107, 113, 114, 118, 120, 129, 135, 140, 151, 154, 169, 186, 187, 190, 192, 206, 221, 229, 232, 234, 240], "formatd": [134, 215, 217, 220], "formatfiles": 221, "formattodo": 49, "former": 70, "formerli": 120, "formid": 179, "formschem": 179, "forum": [5, 14, 122, 185, 202, 208, 209], "forward": [3, 16, 18, 29, 149, 171], "found": [1, 5, 10, 14, 16, 17, 20, 21, 22, 25, 37, 40, 46, 49, 50, 54, 56, 57, 61, 66, 69, 89, 93, 95, 97, 104, 106, 107, 118, 129, 136, 151, 153, 166, 167, 173, 174, 192, 222, 225, 229, 232, 240, 243], "foundat": [78, 194, 201], "four": [8, 69, 76, 82], "fox": 48, "fragment": 33, "frame": [101, 133, 209, 217], "framework": [21, 49, 73, 96, 126, 133, 154, 190, 209, 232, 234], "free": [32, 46, 61, 76, 116, 132, 137, 140, 141, 142, 159, 161, 162, 167, 202, 223], "freedom": 129, "freeforal": 20, "freeprompttasktyp": [142, 231], "freespac": 233, "frequent": [90, 97, 130, 149, 150, 161, 163, 201], "fresh": [19, 110], "freshli": [48, 101], "friendli": [14, 79, 81, 204], "friendsofphp": 3, "from": [0, 1, 5, 7, 8, 9, 10, 14, 15, 16, 17, 18, 22, 25, 26, 28, 29, 30, 36, 37, 40, 41, 42, 43, 44, 45, 47, 49, 53, 54, 57, 58, 59, 61, 63, 65, 66, 69, 70, 72, 73, 76, 77, 79, 81, 82, 84, 85, 86, 88, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 103, 104, 105, 106, 107, 110, 113, 115, 116, 119, 122, 125, 126, 127, 129, 130, 131, 132, 133, 135, 136, 138, 139, 140, 141, 142, 145, 146, 148, 149, 150, 152, 154, 155, 162, 164, 165, 166, 167, 169, 170, 171, 173, 175, 178, 179, 185, 188, 189, 190, 192, 194, 198, 202, 204, 209, 210, 212, 215, 217, 219, 220, 222, 223, 224, 225, 228, 229, 230, 231, 232, 233, 234, 235, 236, 240, 243], "fromcal": [0, 126], "fromlabel": 58, "fromlanguag": [58, 116], "frommailaddress": 215, "fromparam": 227, "fromrow": 227, "front": [16, 28, 49, 95, 96, 99, 106, 115, 126, 148, 183, 199, 201, 241], "frontend": [17, 20, 22, 42, 47, 64, 82, 87, 96, 98, 125, 129, 131, 135, 140, 149, 151, 155, 171, 191, 226, 232], "frontpagerout": [33, 190, 230], "frp": 152, "frp_0": 152, "frp_url": 152, "frpc": 152, "fruit": 204, "fssl": 82, "ftp": 242, "fulfil": [107, 194], "full": [1, 9, 18, 19, 20, 25, 29, 38, 42, 47, 61, 66, 69, 76, 81, 96, 98, 108, 124, 132, 133, 135, 187, 190, 193, 198, 219, 221, 222, 223, 234, 239], "fulli": [69, 93, 106, 127, 130, 152, 185, 213, 220, 230], "fulltextsearch": [45, 75], "fun": 205, "func": 37, "function": [0, 1, 2, 3, 14, 16, 17, 18, 19, 20, 21, 22, 25, 26, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 49, 60, 69, 71, 73, 79, 87, 90, 92, 94, 96, 97, 99, 101, 103, 104, 105, 106, 107, 108, 110, 112, 115, 116, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 156, 167, 180, 185, 190, 199, 209, 210, 211, 215, 218, 221, 222, 227, 229, 231, 232, 233, 234, 240, 243], "fundament": 49, "funni": 140, "further": [5, 17, 20, 22, 42, 46, 51, 61, 75, 79, 85, 97, 98, 106, 131, 145, 156, 166, 185, 188], "futur": [10, 21, 37, 43, 47, 51, 85, 92, 115, 123, 125, 129, 144, 166, 186, 209, 215, 218, 220, 223, 227, 229, 231], "fwrite": 141, "g": [0, 1, 3, 5, 12, 16, 18, 20, 21, 22, 25, 26, 29, 32, 33, 34, 36, 37, 40, 42, 46, 49, 52, 53, 54, 61, 69, 72, 81, 82, 87, 89, 94, 95, 96, 98, 101, 105, 110, 115, 122, 124, 125, 130, 131, 132, 133, 134, 135, 138, 140, 141, 142, 150, 151, 152, 153, 154, 161, 165, 167, 171, 181, 185, 186, 188, 189, 190, 192, 194, 199, 209, 221, 222, 223, 229, 239], "galera": [37, 122], "game": 5, "gap": 40, "gaug": 120, "gave": 105, "gd": [15, 242], "gen": 150, "gender": 78, "gener": [5, 8, 10, 13, 15, 16, 17, 20, 21, 22, 24, 26, 27, 30, 33, 37, 38, 42, 44, 45, 47, 56, 61, 69, 75, 76, 77, 78, 79, 80, 85, 88, 89, 92, 96, 98, 101, 104, 106, 107, 113, 114, 115, 120, 122, 130, 131, 132, 134, 135, 140, 142, 161, 165, 171, 188, 191, 201, 202, 218, 222, 234, 235, 236, 238], "general_log": 98, "generatebirthdai": 5, "generateev": 69, "generatefilepath": 220, "generateocsurl": [129, 220], "generaterandombyt": 215, "generateremoteurl": [61, 220], "generatesecurepasswordev": 232, "generateurl": [25, 154, 220], "genericev": 229, "genericfileexcept": 228, "generichandl": 147, "genericrespons": 147, "genr": 129, "genrsa": 192, "genuin": 204, "germani": 123, "get": [0, 1, 8, 9, 11, 14, 15, 16, 17, 18, 19, 21, 22, 25, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 40, 41, 42, 43, 44, 45, 46, 49, 50, 51, 53, 54, 56, 60, 66, 69, 71, 72, 76, 79, 82, 86, 88, 90, 93, 96, 97, 98, 100, 101, 104, 106, 108, 113, 114, 121, 127, 128, 131, 132, 133, 134, 136, 138, 140, 141, 144, 146, 147, 149, 153, 154, 165, 166, 171, 172, 178, 185, 190, 192, 199, 201, 204, 208, 220, 221, 223, 229, 230, 231, 232, 233, 234, 240], "get_icon": 126, "getabsolutepath": 70, "getabsoluteurl": [96, 124, 211], "getacl": 107, "getactionlabel": 228, "getactivitymanag": 221, "getaddressbook": 227, "getal": [227, 229], "getallappvalu": 90, "getallsharesinfold": 233, "getallvalu": [90, 93], "getalternateid": 132, "getapp": [29, 69, 90, 93, 99], "getappconfig": [92, 221, 233], "getappcontain": 0, "getappdatadir": 221, "getappdatadirectorynam": 231, "getappfetch": 221, "getappfold": [22, 221], "getappfromnamespac": 235, "getappid": [94, 107, 124, 137, 140, 141, 142], "getappinfo": 229, "getappinstalledvers": 233, "getappkei": 90, "getappmanag": 221, "getappnamespac": [211, 235], "getapppassword": 44, "getappvalu": [36, 99, 134], "getappvaluebool": 90, "getappvalueint": 90, "getappvaluestr": 90, "getappvers": [229, 233], "getargu": 1, "getauthor": 42, "getauthorizedappconfig": 34, "getauthornam": 42, "getautocompletemanag": 221, "getavailablelanguag": 116, "getavailabletasktyp": [140, 142, 233], "getavailabletasktypeid": [140, 233], "getavatar": 108, "getavatarmanag": [221, 233], "getbodi": [112, 233], "getbruteforcethrottl": 221, "getbyid": [38, 41, 234], "getbytoken": 20, "getcach": 38, "getcalendar": [107, 224], "getcalendarincalendarhom": 107, "getcalendarmanag": [221, 233], "getcalendarresourcebackendmanag": [221, 233], "getcalendarroombackendmanag": [221, 233], "getcalendarsforprincip": 106, "getcanonicallocal": 221, "getcap": [43, 49, 218], "getcapabilitiesmanag": 221, "getcategori": [134, 135], "getcertificatemanag": 221, "getchild": 107, "getchildren": 107, "getcloudfederationfactori": [221, 233], "getcloudfederationprovidermanag": [221, 233], "getcloudidmanag": 221, "getcollaboratorsearch": 221, "getcommandbu": [221, 233], "getcommentsmanag": [221, 233], "getcompletionexpectedat": 140, "getconfig": 221, "getcont": [35, 38, 41, 228], "getcontactsmanag": 221, "getcontain": [21, 22, 30, 36, 41], "getcontentlanguag": 61, "getcontentlength": [61, 66], "getcontentsecuritypolicymanag": [221, 233], "getcontentsecuritypolicynoncemanag": 221, "getcontenttyp": [61, 66, 107], "getcontext": [17, 22, 232], "getcooki": 20, "getcountrycodeforregion": [123, 229], "getcreat": 101, "getcreatedat": 132, "getcredentialsmanag": [221, 233], "getcrop": 229, "getcrypto": 221, "getcspnonc": [154, 231], "getcsrftokenmanag": 221, "getcurrentoutofofficedata": 121, "getcurrentus": [61, 218, 220], "getcurrentuserfold": 38, "getcursor": 132, "getcustomfilt": 132, "getcustomid": 140, "getcustomlogg": [223, 230], "getcustompsrlogg": [29, 223, 230], "getdata": [20, 70, 121], "getdatabaseconnect": 221, "getdatabaseplatform": 231, "getdatabaseprovid": [37, 231, 233], "getdatetim": [139, 143, 228], "getdatetimeformatt": [221, 233], "getdatetimezon": [221, 233], "getdeclarativesettingsvaluelisten": 99, "getdefaultpageurl": 235, "getdefaulttimezon": 233, "getdefaulttyp": 217, "getdeletedbi": 231, "getdescript": [140, 142, 144, 145], "getdetail": [90, 93], "getdetailsbyid": 234, "getdirectorycont": 61, "getdirectorylist": 35, "getdisabledus": 231, "getdisableduserlist": 231, "getdisplayid": 124, "getdisplaynam": [1, 122, 124, 144, 145, 215], "geteditor": 101, "getelementbyid": 126, "getemailaddress": 108, "getencryptionfileshelp": 221, "getencryptionkeystorag": [221, 233], "getencryptionmanag": 221, "getendd": 121, "getendedat": 140, "getenv": [15, 20], "geteremotesharesforfileoper": 70, "geterrormessag": [137, 140, 141, 142], "getestimatedexports": [145, 228], "getetag": [35, 61, 66, 107], "getev": 105, "geteventdispatch": 221, "geteventlogg": [221, 233], "getexistinglock": 220, "getexpectedruntim": [140, 142], "getextens": 101, "getextrainform": 129, "getfieldid": 99, "getfil": [35, 101, 137], "getfilecont": [38, 145], "getfileid": 137, "getfilt": 132, "getfilterbyid": 231, "getfirstlogin": 232, "getfirstresult": 224, "getfold": 35, "getfoo": 240, "getforbiddenfilenamechar": 231, "getform": [34, 134, 232], "getfullnam": 108, "getgeneratorhelp": 221, "getgetredisfactori": 221, "getglobalscaleconfig": [221, 233], "getglobalstoragesservic": 221, "getgroup": [107, 215], "getgroupmanag": 221, "getgroupparamet": 217, "getgroupus": 215, "gethash": 221, "gethead": [20, 112, 135, 215], "getheight": 229, "gethelp": 1, "gethom": 146, "gethost": [218, 234], "gethostnam": [218, 234], "gethttpclientservic": [221, 233], "gethttprequest": 147, "geticon": [34, 69, 105, 124, 134], "geticonclass": [96, 231], "geticonurl": [96, 129, 231], "getid": [31, 34, 38, 94, 96, 101, 121, 124, 126, 129, 132, 134, 140, 141, 142, 144, 145, 231, 234], "getidentifi": [69, 141, 142], "getidremoteshar": 70, "getimageurl": 129, "getincludewatermark": [140, 234], "getiniwrapp": [221, 233], "getinput": [140, 141, 142], "getinputshap": 140, "getinputshapedefault": 140, "getinputshapeenumvalu": 140, "getintegritycodecheck": 221, "getitem": [96, 126], "getitemsv2": 96, "getitemurl": 94, "getjob": 227, "getjoblist": 221, "getjobsiter": 227, "getkei": [90, 93], "getknownmetadata": [104, 229], "getl10n": 221, "getl10nfactori": 221, "getlabel": 110, "getlanguag": 116, "getlanguagecod": 42, "getlastlogin": 37, "getlastmodifi": [61, 66, 107], "getlastupd": 140, "getldapprovid": 221, "getlevel": 29, "getlimit": 132, "getlinkdescript": 129, "getlinktitl": 129, "getlockingprovid": 221, "getlogfactori": [221, 233], "getlogg": [221, 232], "getlogoclaim": 229, "getlowstrengthgener": 217, "getmail": 221, "getmanageruid": 146, "getmediumstrengthgener": 217, "getmemcachefactori": 221, "getmessag": [29, 49, 69, 121], "getmetadata": [104, 229], "getmetadatakeyfield": [104, 229], "getmetadataqueri": [104, 229], "getmetadatavaluefield": [104, 229], "getmigratorvers": 145, "getmimetyp": [35, 101, 232], "getmimetypedetector": 221, "getmimetypeload": 221, "getmimetypesopt": 101, "getmock": 41, "getmockbuild": 41, "getmod": 229, "getmountmanag": [221, 233], "getmountpoint": 38, "getmountprovidercollect": [221, 233], "getmtim": 35, "getnam": [17, 22, 31, 34, 35, 69, 101, 105, 107, 116, 125, 130, 132, 134, 135, 137, 140, 141, 142, 186], "getnavig": [217, 229], "getnavigationmanag": [221, 233], "getnod": [31, 104, 229], "getnoexpirationd": 231, "getnonexistingnam": 234, "getnotificationmanag": 221, "getnotificationtyp": 217, "getnumberofimag": 141, "getobjectid": [69, 234], "getobjectnam": 69, "getobjecttyp": 69, "getocscli": 221, "getopt": 1, "getoptionalinputshap": 140, "getoptionalinputshapedefault": 140, "getoptionalinputshapeenumvalu": 140, "getoptionaloutputshap": 140, "getoptionaloutputshapeenumvalu": 140, "getord": [96, 129, 132], "getoutput": [140, 142], "getoutputimag": 141, "getoutputshap": 140, "getoutputshapeenumvalu": 140, "getown": [107, 228, 232], "getparam": [147, 230], "getpassword": 224, "getpasswordhash": [128, 231], "getpasswordprotectedshar": 20, "getphonenumb": 37, "getpictur": 19, "getport": [218, 234], "getpreferstream": [140, 213], "getpreviewbyfileid": 132, "getpreviewmanag": [221, 233], "getprimaryaddress": 110, "getprior": [34, 69, 124, 134], "getprogress": 140, "getproperti": [107, 108], "getprotocol": [218, 234], "getpsalm": [3, 95], "getquerybuild": [37, 40], "getqueryforfilt": 217, "getquerylogg": [221, 233], "getquerypart": 231, "getreason": 234, "getreferenceid": 220, "getreloadinterv": 96, "getremoteapifactori": [221, 233], "getremoteinstancefactori": [221, 233], "getremotesharesforfileoper": 70, "getremotesharesoper": 70, "getreplacementuserdisplaynam": 121, "getreplacementuserid": 121, "getreportintermediateoutput": 140, "getrequest": 221, "getrequesttoken": 231, "getrequesturi": 215, "getreshar": 70, "getresourcerichobject": 126, "getrevis": 233, "getrootfold": [22, 221], "getrootpath": [218, 220], "getrooturl": 220, "getrout": [221, 233], "getscheduledat": 140, "getschema": 99, "getscriptnam": 215, "getscrollbarwidth": 216, "getsearch": 221, "getsecondaryaddress": 110, "getsect": [34, 134], "getsecurerandom": 221, "getserv": [2, 21], "getservercontain": [104, 125], "getserverhost": 215, "getserverprotocol": 215, "getservicex": 21, "getsess": 221, "getsessioncryptowrapp": 221, "getsettingbyid": 231, "getsettingsmanag": 221, "getsettingsnavig": 229, "getshapetyp": 140, "getshar": 20, "getsharemanag": [221, 233], "getshareown": 31, "getsharesop": 70, "getsharingtoken": 232, "getshortmessag": 121, "getsiz": [35, 107, 227], "getslogan": 31, "getspecialparameterlist": 217, "getstartd": 121, "getstartedat": 140, "getstat": 231, "getstatu": [20, 140, 141, 142, 148], "getstatuscod": 112, "getstorag": [38, 233], "getstoragefactori": [221, 233], "getstoragesbackendservic": 221, "getstr": 70, "getstrict": 92, "getsubject": 69, "getsupportedapp": 233, "getsupportedfilt": 132, "getsupportedprivileg": 107, "getsupportedprivilegeset": 107, "getsupportedsearchproviderid": 129, "getsystemconfig": 221, "getsystemtagmanag": [221, 233], "getsystemtagobjectmapp": [221, 233], "getsystemvalu": [34, 36], "getsystemvaluebool": [36, 135], "getsystemvalueint": 36, "getsystemvaluestr": 36, "gettabl": 40, "gettagmanag": [221, 233], "gettagsbyid": 229, "gettarget": 124, "gettask": [140, 141, 142], "gettasktyp": 142, "gettasktypeid": 140, "gettempl": [101, 144], "gettempmanag": 221, "getter": [22, 37, 90, 108, 227, 228, 233], "gettext": 8, "getthemingdefault": 221, "gettim": [143, 228], "gettimezon": [143, 233], "gettitl": [96, 101, 124, 126, 129], "gettodo": 49, "gettoken": [128, 229], "gettranscript": 137, "gettrusteddomainhelp": 221, "gettwofactorauthmanag": 221, "gettyp": [126, 142], "gettypedquerybuild": 213, "gettypeicon": 217, "getuid": [38, 99, 124, 126, 146], "getuploadedfil": 20, "geturl": 96, "geturlgener": 221, "geturlparamet": [217, 220], "getus": [22, 38, 99, 101, 121, 209, 243], "getuserconfig": 92, "getuserdata": 145, "getuserfacingerrormessag": 140, "getuserfold": [22, 38], "getuserglobalstoragesservic": 221, "getuserid": [93, 126, 137, 138, 140, 141, 142], "getuserlanguag": 42, "getusermanag": 221, "getusermountcach": 221, "getusernam": 220, "getusersess": 221, "getuserstatus": 138, "getuserstoragesservic": 221, "getusertask": 141, "getusertasksbyapp": 141, "getuservalu": [36, 99], "getvalu": [93, 99], "getvaluearrai": [90, 93], "getvaluebool": [90, 93], "getvalueflag": 93, "getvaluefloat": [90, 93], "getvalueint": [90, 93], "getvaluesbyapp": 93, "getvaluesbyus": 93, "getvaluestr": [90, 92, 93], "getvaluetyp": [90, 93], "getvers": 145, "getwebhookmethod": 140, "getwebhookuri": 140, "getwebroot": 221, "getwidgetbutton": 96, "getwidgetitem": 96, "getwidgetitemsv2": 96, "getwidgetopt": 96, "getwidth": 229, "ghcr": [154, 165, 166], "giant": 21, "gif": [129, 171], "giphi": 129, "git": [3, 5, 7, 15, 82, 89, 125, 129, 149, 154, 185, 188, 189, 192], "github": [3, 5, 7, 8, 10, 11, 12, 14, 16, 37, 43, 49, 64, 71, 72, 73, 87, 95, 96, 97, 115, 125, 129, 149, 151, 152, 161, 165, 185, 187, 189, 190, 203, 204, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 232, 240, 243], "github_notif": 96, "github_token": 15, "github_usernam": 82, "githubusercont": [82, 152, 156], "githubusernam": 202, "gitignor": 3, "gitkeep": 8, "give": [0, 7, 10, 15, 16, 20, 22, 35, 46, 49, 71, 81, 82, 87, 97, 98, 101, 122, 125, 129, 132, 185, 188, 192, 199, 202, 220, 222, 232], "given": [5, 18, 20, 33, 40, 42, 45, 52, 58, 59, 66, 69, 94, 101, 106, 107, 123, 133, 144, 148, 150, 192, 199, 202, 204, 228, 229, 231, 232, 233], "glad": 150, "glass": 76, "glib": 82, "global": [20, 21, 25, 28, 36, 37, 42, 53, 61, 86, 90, 93, 95, 98, 104, 113, 132, 185, 186, 192, 198, 199, 226, 227, 234, 235], "glossari": [163, 191, 201], "gmbh": 185, "gmt": 61, "gnome": 79, "gnu": 185, "gnupg": 152, "gnupghom": 152, "go": [13, 20, 23, 41, 42, 45, 61, 72, 76, 82, 101, 105, 122, 126, 129, 148, 151, 166, 185, 188, 190, 192, 204, 231], "goal": [14, 82, 148, 199, 204], "goe": [0, 21, 23, 98, 106, 132, 165, 189, 199], "golang": 151, "good": [20, 36, 42, 44, 49, 71, 90, 107, 131, 160, 185, 194, 196, 202, 204], "googl": [20, 21, 79, 98], "googletest": 243, "gosu": 152, "gosu_vers": 152, "got": [115, 129, 215, 221, 222, 229], "goto": 73, "gotorout": 73, "gp": 229, "gpg": 152, "gpgconf": 152, "gpl": 5, "gpl3": 5, "gpt": 140, "gpu": [151, 162, 163, 165], "gracefulli": 115, "grain": [18, 185], "grammar": [8, 140], "grammat": 42, "grant": [8, 10, 20, 34, 44, 52, 176, 209], "graph": 129, "great": [14, 15, 49, 71, 81, 110], "greatli": [200, 204], "greet": [1, 190], "grep": [5, 16], "grid": [77, 194], "group": [0, 1, 8, 34, 36, 37, 45, 46, 48, 52, 61, 70, 73, 96, 122, 132, 134, 135, 138, 155, 176, 184, 185, 189, 209, 210, 215, 218, 221, 228, 229, 231], "group1": 48, "groupbackendregist": 221, "groupdeletedev": 229, "groupfold": [231, 236], "groupid": [22, 70], "groupinterfac": 228, "groupmanag": 232, "groupwar": [106, 113, 201], "grow": 185, "grunt": 118, "gt": [66, 104], "guarante": [18, 90, 121, 122, 135, 140, 190, 231], "guard": [1, 133], "guess": [20, 58], "guest": [20, 46, 56, 57, 58, 61, 76, 128, 235], "gui": 82, "guid": [8, 38, 63, 73, 76, 78, 79, 161, 201, 204, 214], "guidanc": [49, 81], "guidelin": [11, 28, 76, 77, 79, 151, 191, 201, 202, 203, 204, 208], "guidelines_and_howto": 204, "guyjgtckptkci4epiriupiexgj8wninmfsfhabacrpzukmeawzsm54bfkfuzwksbps7jmtfqjesklpyjxyhphlgk8szbn9hxlxjohix5ixgjkdokkztyczuwhlsg3yfg": 44, "gz": [15, 16, 152], "h": [44, 46, 48, 62, 64, 66, 82, 96, 101, 126, 129], "h2": 134, "h3": 134, "ha": [0, 3, 5, 10, 14, 16, 17, 18, 19, 20, 21, 22, 25, 29, 30, 33, 35, 37, 40, 42, 43, 44, 47, 48, 49, 52, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 73, 76, 77, 80, 81, 82, 94, 95, 96, 99, 101, 103, 107, 110, 115, 118, 123, 126, 127, 129, 131, 132, 134, 137, 139, 140, 141, 142, 144, 146, 149, 154, 165, 166, 169, 171, 175, 185, 188, 189, 190, 192, 199, 204, 206, 209, 210, 213, 215, 218, 221, 222, 223, 225, 228, 229, 230, 231, 232, 233, 234, 236, 238, 240], "had": [3, 202, 220, 227, 228], "hadn": 222, "hairi": [185, 188], "halfemptycontentmessag": 96, "ham": 187, "hamper": 14, "hand": [14, 21, 46, 81, 105, 140, 206], "handbook": 243, "handl": [4, 10, 14, 15, 21, 22, 25, 27, 29, 30, 36, 37, 40, 43, 45, 63, 86, 90, 94, 97, 98, 101, 102, 104, 113, 115, 122, 128, 129, 131, 134, 137, 139, 140, 141, 142, 144, 145, 147, 148, 150, 166, 167, 171, 186, 188, 190, 199, 200, 202, 204, 209, 222, 226, 231, 232, 235, 236], "handlebar": [219, 235, 239], "handleerror": 49, "handlegetproperti": [2, 148], "handleimipmessag": [107, 227], "handler": [2, 44, 49, 70, 86, 99, 101, 113, 148, 153, 166, 171, 234], "handler_rout": 175, "happen": [10, 17, 18, 22, 25, 37, 42, 46, 58, 81, 97, 105, 115, 118, 122, 140, 153, 209, 232], "happi": 14, "haproxi": [158, 165], "haproxy_password": 165, "hard": [14, 21, 22, 76, 107, 115, 190, 206], "hardcod": 231, "harder": [20, 21, 37, 185], "hardwar": 159, "harm": 15, "harp": [155, 163], "hasannot": 30, "hasappkei": 90, "hasbackend": 139, "hasbeenaccess": 101, "hascalendarincalendarhom": 107, "hasconfig": 90, "hash": [10, 61, 128, 136, 231], "hasher": 232, "haskei": [90, 93, 216], "hasmobilesupport": 192, "hasn": 16, "hasprovid": [116, 137, 140, 141, 142], "hasreservedjob": 228, "hasservic": 110, "hassvgsupport": 216, "hastabl": 136, "hastemplatesavea": 192, "have": [0, 5, 7, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 33, 34, 35, 37, 38, 40, 42, 44, 48, 49, 50, 52, 54, 61, 63, 64, 70, 72, 73, 76, 77, 79, 80, 81, 82, 83, 85, 87, 89, 90, 92, 93, 95, 96, 98, 99, 107, 110, 115, 116, 118, 121, 122, 123, 128, 129, 130, 131, 132, 133, 134, 137, 140, 141, 142, 144, 150, 151, 156, 158, 159, 160, 162, 166, 167, 170, 175, 176, 185, 186, 188, 189, 190, 192, 194, 195, 198, 199, 200, 202, 204, 206, 209, 210, 211, 213, 221, 222, 223, 225, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 241, 243], "haven": 222, "he": 81, "head": [9, 13, 16, 33, 62, 76, 77, 81, 82, 86, 113, 135, 144, 231], "header": [17, 22, 25, 30, 32, 44, 45, 46, 50, 51, 52, 53, 54, 56, 57, 58, 59, 62, 63, 64, 65, 74, 76, 86, 101, 108, 112, 113, 115, 125, 166, 170, 178, 183, 190, 191, 192, 193, 194, 199, 209, 227, 232, 233, 240], "headermiddlewar": 30, "headers_to_exclud": 178, "headlin": [42, 124, 140, 142], "headlinetasktyp": [142, 231], "health": 153, "healthcheck": 166, "healthi": 166, "hear": 14, "heartbeat": [151, 165, 183], "heavi": [104, 122, 160], "heavili": [3, 202, 226], "height": [17, 22, 77, 129, 194, 199, 229], "hell": 115, "hello": [1, 42, 43, 69, 81, 103, 130, 147, 186, 190, 198], "help": [0, 5, 8, 9, 14, 21, 22, 33, 37, 40, 42, 43, 48, 49, 76, 82, 92, 98, 99, 100, 104, 107, 108, 113, 120, 125, 129, 133, 149, 154, 159, 184, 185, 186, 188, 189, 199, 201, 202, 203, 204, 208, 231], "helper": [0, 1, 20, 21, 29, 45, 76, 87, 90, 97, 98, 102, 107, 113, 115, 129, 133, 190, 231, 234], "henc": [3, 5, 118, 132, 144, 221, 222], "her": 122, "here": [0, 9, 20, 21, 22, 25, 33, 36, 43, 45, 46, 49, 61, 70, 71, 73, 76, 82, 83, 89, 96, 98, 99, 101, 105, 106, 107, 116, 120, 128, 129, 131, 137, 140, 142, 148, 153, 154, 161, 162, 167, 171, 173, 174, 180, 186, 187, 188, 189, 190, 196, 198, 199, 204, 222, 229, 240, 243], "heveri": 243, "hex": [46, 62, 76], "hexadecim": 129, "hi": [20, 81, 186, 187], "hidden": [61, 69, 90, 93, 103, 175, 190, 193, 194, 198, 199, 231, 232], "hide": [42, 49, 61, 93, 118, 139, 192, 193, 194, 199, 200, 232], "high": [19, 20, 38, 76, 185, 194, 209, 237], "highcontrast": 221, "higher": [5, 16, 38, 199, 217, 227], "highest": 20, "highli": [0, 10, 12, 16, 20, 95, 115, 131, 149, 159, 211, 221, 229], "highlight": [19, 76, 77, 209, 233], "hint": [20, 21, 22, 36, 81, 99, 127, 190, 199, 215, 220, 221, 222], "hintexcept": 36, "histori": [47, 73, 140, 154, 199], "hit": 125, "hkp": 152, "ho": 187, "hoist": 186, "hold": [8, 17, 20, 22, 44, 76, 97, 131, 232, 240], "hole": [20, 209], "home": [15, 27, 38, 46, 76, 82, 146, 152, 192, 215], "homebrew": 82, "homepag": [5, 129], "homogen": 199, "hood": 190, "hook": [0, 2, 28, 30, 75, 221, 222, 232], "horizont": 160, "host": [8, 48, 86, 92, 101, 110, 113, 114, 115, 135, 149, 150, 152, 158, 159, 160, 161, 165, 190, 192, 199, 209, 218, 222, 234, 243], "hostnam": [133, 136, 156, 192, 218, 230, 234], "hostvalid": 133, "hot": 90, "hour": [18, 42, 46, 63, 69, 76, 133, 141, 198], "housekeep": [44, 64], "hover": [79, 125, 185, 194, 195, 198, 199, 233], "hoverclass": 199, "how": [0, 11, 18, 20, 25, 28, 32, 42, 43, 45, 46, 61, 66, 71, 72, 76, 79, 89, 95, 96, 97, 98, 101, 105, 106, 118, 125, 126, 127, 129, 132, 133, 140, 141, 142, 144, 147, 150, 162, 167, 179, 185, 188, 189, 191, 201, 206, 209, 213, 214, 223, 233, 234, 241, 243], "howev": [8, 14, 20, 35, 38, 46, 49, 82, 85, 93, 96, 97, 98, 106, 107, 115, 126, 140, 141, 142, 204, 209, 221, 222, 229, 232, 233, 238], "href": [42, 61, 66, 104, 108, 147, 198, 199, 200, 209], "html": [7, 14, 23, 26, 28, 49, 61, 73, 97, 100, 103, 110, 113, 131, 154, 156, 175, 185, 186, 189, 190, 192, 201, 209, 221, 227, 229, 243], "html5": [184, 195], "http": [0, 3, 5, 6, 7, 8, 10, 13, 15, 20, 25, 30, 31, 32, 33, 34, 37, 43, 44, 46, 48, 49, 60, 61, 62, 63, 64, 66, 67, 68, 70, 72, 73, 74, 82, 86, 95, 96, 97, 98, 104, 107, 108, 113, 115, 116, 118, 125, 128, 129, 130, 131, 132, 133, 134, 136, 137, 140, 141, 142, 147, 148, 149, 151, 152, 153, 156, 161, 165, 166, 170, 174, 175, 178, 189, 190, 192, 196, 202, 204, 209, 215, 218, 219, 220, 221, 222, 227, 228, 229, 230, 231, 232, 233, 234, 235, 240, 243], "http_content_typ": 20, "http_proxi": 156, "httpclient": 70, "httpd": 189, "httphelper": 215, "httpprovid": 25, "https_proxi": 156, "hu": 8, "hu_hu": 8, "hub": 43, "huggingfac": 166, "human": [42, 79, 90, 101, 129, 140], "humanfiles": [217, 220, 221, 233], "hundr": 206, "hungri": 104, "hurdl": [42, 44], "hw39yxkp": 96, "hyperlink": 101, "hyphen": 1, "i": [0, 1, 2, 3, 5, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 76, 77, 79, 80, 81, 83, 85, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 103, 104, 105, 106, 107, 108, 110, 113, 114, 115, 116, 118, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 141, 142, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 156, 158, 159, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 180, 181, 185, 186, 187, 188, 189, 190, 192, 193, 194, 196, 197, 198, 199, 202, 203, 206, 209, 210, 211, 212, 213, 215, 217, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 242, 243], "i_request": 186, "iaccountmanag": [124, 228, 231, 233], "iaction": [231, 233, 234], "iactionfactori": 108, "iactivatablebyadmin": 144, "iaddress": 110, "iapicollect": 210, "iapifactori": 210, "iapp": 231, "iappconfig": [21, 90, 92, 230, 232, 233], "iappcontain": [215, 221], "iappdata": [35, 38, 233], "iappmanag": [21, 211, 228, 229, 231, 232, 233, 235], "iattribut": 231, "iauthmechanismprovid": 25, "iauthormapp": 21, "iavailabilitycoordin": 121, "iavatarmanag": [21, 232], "ibackend": 106, "ibackendprovid": 25, "ibinaryfind": 233, "iboostrap": 233, "ibootcontext": [0, 21, 25, 30, 49, 96, 101, 104, 106, 116, 124, 125, 126, 132, 137, 140, 141, 142, 145, 147], "ibootstrap": [0, 2, 21, 25, 30, 31, 49, 96, 101, 104, 106, 116, 124, 125, 126, 132, 135, 137, 140, 141, 142, 145, 147], "ibroadcastev": 211, "ibrok": 139, "ibu": 232, "ibulkprovid": 108, "ic": [54, 106, 107], "icach": [21, 38, 232], "icachefactori": [19, 21, 232], "ical": 107, "icalendar": [106, 107], "icalendareventbuild": 106, "icalendarobject": 107, "icalendarprovid": 107, "icalendarqueri": 106, "icallbackrespons": 20, "icap": 49, "icapabilitiesapi": 210, "icapabilityawareocmprovid": 233, "icewind1991": 232, "iclientservic": [112, 133], "icloud": 82, "icollect": 148, "icom": 220, "icommentsmanag": [229, 232], "icomplexoper": 105, "icon": [5, 7, 20, 24, 25, 43, 46, 54, 69, 76, 78, 88, 96, 105, 108, 113, 124, 126, 129, 132, 134, 171, 181, 184, 193, 194, 197, 198, 199, 200, 201, 215, 223, 227, 231], "icon_class": 96, "icon_url": [96, 129], "iconclass": 25, "iconfig": [21, 34, 36, 99, 134, 135, 190, 232], "iconographi": 79, "iconstructablestorag": 232, "iconsvg": 87, "icontain": 221, "icontentsecuritypolicymanag": 232, "icontrollermethodreflector": [21, 30, 218, 232], "iconurl": [96, 126], "iconv": [5, 242], "icountusersbackend": 232, "icreatefromstr": [106, 107, 227], "icreategroupbackend": 231, "icreatenamedgroupbackend": 231, "icredenti": 210, "icredentialsmanag": 232, "icrypto": [21, 215, 232], "id": [1, 5, 8, 15, 17, 18, 20, 21, 22, 25, 29, 33, 37, 38, 41, 42, 43, 45, 48, 49, 50, 52, 54, 61, 64, 66, 69, 71, 82, 87, 90, 93, 94, 96, 99, 101, 104, 105, 108, 110, 113, 114, 121, 122, 124, 126, 127, 129, 130, 134, 139, 140, 141, 142, 145, 148, 149, 164, 165, 166, 168, 170, 171, 174, 177, 179, 182, 184, 186, 193, 195, 198, 199, 200, 209, 218, 227, 229, 230, 233], "id497799835": 82, "id_token": 46, "idatalogg": 29, "idatetimeformatt": [134, 232], "idatetimezon": [21, 232, 233], "idbconnect": [21, 37, 40, 213, 223, 229, 231, 232, 233], "idea": [16, 81, 101, 107, 115, 116, 122, 125, 129, 132, 137, 140, 141, 142, 185, 196], "ideactivatablebyadmin": 144, "ideal": [76, 79, 122, 129, 185, 188], "ideclarativesettingsform": 99, "idecod": 136, "idelegatedset": 34, "ident": [16, 79, 85, 119, 190, 221], "identifi": [2, 5, 10, 17, 20, 22, 29, 33, 37, 42, 44, 56, 57, 69, 76, 79, 87, 96, 100, 101, 107, 113, 116, 122, 125, 128, 129, 132, 136, 137, 140, 141, 142, 144, 161, 185, 189, 190, 204, 231, 234], "idetectlanguageprovid": [116, 231], "ie": 231, "ieditor": 101, "iemailvalid": 233, "ientiti": 105, "ientitycompat": 228, "ientri": 108, "ietf": 64, "ievent": [69, 231, 234], "ieventdispatch": [22, 29, 126, 138, 220, 229], "ieventlisten": [2, 22, 25, 29, 40, 99, 101, 104, 129, 137, 140, 141, 142], "ieventlogg": [21, 232], "ieventmerg": 69, "ieventsourc": 229, "ieventsourcefactori": [229, 231], "iexportdestin": 145, "iexpressionbuild": 231, "iexternalprovid": [132, 233], "ifactori": [42, 232], "iff": 215, "ifil": 232, "ifilenamevalid": [231, 233], "ifilesmetadata": 104, "ifilesmetadatamanag": [104, 229], "ifilt": 69, "ifilteringprovid": 132, "ifoomanag": 0, "ifram": 209, "ifs": [186, 187], "ifunctionbuild": 211, "igener": 136, "ignor": [8, 16, 23, 43, 45, 69, 90, 92, 101, 123, 198, 204, 232], "ignorefil": [3, 95], "ignoreopenapi": 49, "igroup": 229, "igroupmanag": [21, 122, 231, 232, 235], "ihandl": 147, "ihandleimipmessag": [107, 227], "ihash": [21, 231, 232], "ihelp": 215, "ii": 204, "iiconsect": [34, 134], "iiconwidget": 231, "iimag": [141, 232], "iimportsourc": 145, "iinappsearch": 132, "iinitialst": [25, 31, 190], "iinitialstateservic": [96, 115], "iinstanc": 210, "iinstancefactori": 210, "iinternaltasktyp": 140, "ijob": [18, 234], "ijoblist": [18, 21, 134, 227, 228, 232, 234], "il10n": [21, 31, 34, 42, 96, 116, 124, 132, 134, 135, 137, 140, 141, 142, 145, 215], "ildapprovid": 232, "ildapproviderfactori": 223, "ilexicon": 92, "ilimit": 133, "ilimitawarecountusersbackend": 232, "ilinkact": 124, "illeg": 14, "illustr": 3, "ilockingprovid": 232, "ilockmanag": 231, "ilogfactori": [29, 223, 230], "ilogg": [29, 215, 221, 232], "iloginsetupprovid": 233, "imag": [5, 7, 20, 24, 33, 45, 46, 47, 49, 61, 66, 75, 82, 84, 101, 113, 126, 131, 140, 151, 152, 154, 157, 158, 165, 171, 174, 183, 194, 209, 232, 233], "image2text": 140, "image_nam": [151, 166], "image_path": 26, "image_src": 166, "image_tag": 166, "image_typ": 129, "image_url": 129, "imagegenerationprovid": 141, "imagegenerationresultlisten": 141, "imageparam": 166, "imagepath": [34, 96, 124, 134, 220], "imagetotextopticalcharacterrecognit": [140, 234], "imageurl": 129, "imagick": 242, "imagin": [3, 49], "imail": [103, 232, 233], "imailmanag": 110, "imanag": [0, 21, 69, 106, 110, 138, 140, 141, 142, 210, 211, 216, 217, 219, 220, 224, 227, 231, 232, 235], "imap": 125, "imapperexcept": 228, "imdb_id": 129, "imenuact": 20, "imessag": [103, 110, 227, 229], "imessagesend": 110, "imetadatabackgroundev": 229, "imetadataliveev": 229, "imetadataqueri": [104, 229], "imetadatavaluewrapp": 104, "imetricfamili": [120, 234], "img": [5, 7, 26, 27, 33, 43, 69, 96, 108, 129, 132, 154, 171, 181, 196, 227], "imigr": 145, "imigrationstep": 215, "imimetypedetector": 232, "imimetypeload": [230, 232], "immedi": [2, 20, 29, 81, 140, 185, 220], "immut": 37, "imountmanag": 232, "imountpoint": [38, 232], "imountprovid": 38, "imountprovidercollect": [21, 38, 232], "impact": [18, 122, 188, 230, 233], "implement": [0, 1, 2, 5, 15, 17, 18, 20, 21, 22, 25, 29, 30, 31, 34, 37, 40, 49, 55, 56, 57, 60, 61, 64, 66, 70, 75, 81, 84, 86, 88, 92, 96, 99, 104, 105, 106, 107, 108, 110, 113, 114, 115, 124, 125, 126, 127, 129, 130, 131, 132, 134, 135, 136, 145, 147, 148, 150, 151, 153, 154, 162, 165, 166, 176, 190, 199, 209, 213, 220, 227, 228, 230, 231, 232, 233, 234, 236], "impli": [40, 48, 49, 129], "implic": [61, 131], "implicit": [20, 186], "implicitli": [37, 107, 220], "import": [16, 20, 23, 25, 29, 30, 37, 41, 42, 49, 61, 72, 73, 76, 77, 79, 82, 94, 96, 105, 106, 115, 120, 122, 125, 126, 129, 131, 135, 140, 145, 151, 154, 165, 185, 188, 190, 192, 198, 199, 204, 214, 220, 229, 231, 232, 243], "important_list_item": 184, "importlogg": 29, "importservic": 29, "importsourc": 145, "impos": 131, "imposs": 166, "improv": [21, 25, 49, 79, 81, 89, 90, 96, 122, 125, 132, 152, 185, 186, 188, 200, 204, 211, 233, 234], "impur": 21, "imyappmanag": 145, "in_arrai": [140, 142, 192], "inact": 63, "inadvertenli": 188, "inappsearch": 132, "inavigationmanag": [21, 232], "inbox": 192, "inc": 26, "includ": [3, 13, 14, 16, 20, 21, 23, 24, 25, 29, 37, 42, 44, 48, 49, 60, 61, 69, 71, 72, 82, 85, 89, 90, 92, 93, 95, 96, 104, 107, 124, 125, 129, 130, 131, 135, 140, 151, 152, 154, 167, 171, 179, 181, 188, 206, 209, 222, 232, 233, 234, 235, 238], "include_onc": 0, "includewatermark": [140, 213, 234], "inclus": [81, 204, 208], "incom": 190, "incompat": [16, 131, 222, 229], "incomplet": [16, 85, 204], "incompleteactivityexcept": 231, "incompletenotificationexcept": 231, "incompleteparsednotificationexcept": 231, "inconsist": [49, 122], "incorpor": 150, "incorrect": [49, 156], "incorrectli": [17, 22, 232], "increas": [14, 16, 20, 122, 134, 160, 202, 213, 219, 225, 229, 231, 232, 234], "increment": [16, 37, 90, 118, 122], "indent": [82, 184, 185], "independ": [33, 51, 115, 231], "index": [5, 6, 20, 21, 32, 33, 37, 40, 44, 45, 46, 56, 60, 92, 94, 96, 101, 104, 122, 124, 125, 126, 131, 132, 133, 140, 154, 171, 174, 186, 190, 192, 209, 236], "indic": [14, 17, 22, 39, 42, 43, 49, 56, 61, 76, 77, 79, 85, 107, 116, 123, 132, 137, 140, 141, 142, 150, 165, 181, 202, 213, 229, 232, 233, 234], "indirect": 222, "indirectli": 20, "individu": [8, 21, 34, 42, 61, 63, 95, 106, 204], "inevit": [222, 229], "infer": 49, "infin": [66, 104], "influenc": [37, 122, 146, 185], "info": [1, 5, 6, 12, 13, 15, 21, 22, 29, 32, 34, 37, 69, 70, 76, 77, 89, 97, 107, 109, 115, 118, 120, 129, 130, 134, 135, 144, 148, 151, 154, 156, 167, 170, 171, 174, 176, 178, 183, 185, 189, 194, 204, 231, 232, 233, 234], "inform": [10, 15, 17, 20, 22, 25, 26, 27, 29, 37, 38, 42, 44, 45, 46, 61, 70, 76, 77, 82, 83, 85, 88, 96, 97, 110, 113, 115, 116, 124, 125, 127, 129, 131, 132, 135, 136, 137, 140, 142, 144, 145, 154, 155, 169, 185, 197, 202, 204, 206, 209, 223, 225, 229, 231, 232, 233, 234, 236], "infrastructur": [14, 133, 236], "infrequ": [20, 90], "inherit": [1, 18, 30, 37, 54, 61, 107, 131], "inheritdoc": [96, 126], "inheritor": [49, 232], "ini": [98, 135, 243], "inigetwrapp": 232, "init": [25, 48, 82, 151, 165, 172, 179, 183, 189], "init_timeout": 153, "initcor": 218, "initi": [0, 2, 4, 17, 19, 22, 24, 31, 32, 44, 45, 49, 63, 76, 87, 94, 96, 104, 110, 135, 137, 148, 151, 153, 165, 166, 170, 171, 172, 179, 190, 204, 221, 222, 231], "initialis": 229, "initialprovid": 129, "initialst": [25, 31, 190], "initialstateservic": 96, "initiatemessag": 110, "initmetadata": [104, 229], "iniwrapp": 232, "inject": [0, 1, 17, 18, 19, 20, 22, 25, 28, 29, 33, 36, 38, 40, 42, 69, 90, 93, 96, 101, 103, 104, 106, 110, 112, 116, 125, 127, 129, 132, 133, 137, 139, 140, 141, 142, 143, 144, 146, 167, 193, 201, 208, 215, 221, 229, 232, 233, 243], "injectfn": [0, 126], "inlin": [20, 76, 86, 113, 184, 194, 209, 232], "inlineblock": 194, "inmemoryfil": 227, "inner": 236, "innodb": 97, "innodb_print_all_deadlock": 97, "inod": [2, 148], "inotif": [231, 233, 234], "inotifi": 231, "input": [1, 21, 46, 56, 57, 58, 69, 77, 78, 81, 82, 84, 113, 114, 116, 129, 134, 141, 142, 166, 175, 187, 194, 195, 198, 199, 200, 209, 221, 229, 231, 233], "inputargu": 1, "inputinterfac": 1, "inputopt": 1, "insecur": [17, 22, 192], "insensit": 122, "insert": [17, 18, 22, 37, 42, 76, 97, 101, 122, 129, 132, 136, 190, 234], "insertgraph": 101, "inset": [194, 232], "insid": [0, 7, 18, 20, 21, 27, 33, 34, 37, 42, 61, 62, 66, 76, 77, 80, 90, 96, 110, 120, 122, 129, 141, 142, 152, 154, 166, 192, 198, 199, 209, 228, 239, 240], "insight": [94, 97], "inspect": [32, 33, 136, 192], "inspir": [3, 158], "instal": [0, 3, 5, 8, 10, 13, 14, 16, 17, 18, 19, 20, 21, 22, 32, 37, 40, 42, 45, 47, 49, 56, 58, 61, 76, 79, 95, 98, 115, 118, 119, 122, 125, 129, 130, 134, 139, 145, 152, 153, 154, 159, 161, 163, 170, 178, 183, 185, 187, 189, 190, 192, 204, 210, 233, 239, 242], "installer_fil": 82, "instanc": [0, 5, 16, 17, 18, 19, 20, 21, 22, 27, 29, 30, 38, 40, 46, 52, 61, 62, 63, 82, 92, 95, 101, 104, 105, 106, 107, 108, 110, 112, 115, 121, 122, 125, 127, 129, 130, 133, 134, 135, 147, 152, 154, 165, 170, 175, 187, 189, 209, 213, 228, 229, 232, 233, 234], "instanceid": 171, "instanceof": [2, 20, 21, 22, 25, 29, 38, 40, 41, 70, 94, 99, 101, 104, 106, 126, 129, 137, 140, 141, 142, 147], "instanti": [0, 21, 22, 96, 110, 124, 145, 190], "instantli": [122, 140], "instead": [7, 8, 17, 20, 21, 22, 26, 33, 34, 37, 42, 46, 49, 57, 61, 69, 71, 76, 79, 82, 87, 98, 101, 107, 116, 127, 129, 130, 131, 137, 140, 141, 142, 145, 184, 185, 186, 187, 190, 196, 209, 210, 211, 218, 219, 220, 221, 222, 223, 224, 227, 228, 229, 230, 231, 232, 233, 234, 235], "instruct": [3, 42, 49, 61, 118, 140, 149, 151, 152, 167, 186], "insuffici": 63, "int": [1, 5, 18, 20, 22, 33, 34, 37, 38, 43, 49, 50, 52, 53, 54, 56, 57, 69, 70, 90, 92, 93, 96, 104, 121, 123, 124, 132, 134, 140, 141, 142, 143, 145, 171, 220, 228, 229, 234], "integ": [1, 20, 37, 40, 66, 129, 136, 140, 141, 165, 166, 171, 173, 192], "integr": [5, 10, 12, 15, 17, 22, 47, 71, 72, 75, 76, 84, 96, 98, 100, 104, 111, 113, 115, 124, 126, 127, 129, 134, 136, 145, 150, 155, 185, 201, 202, 222, 225, 229, 231, 232, 234], "integration_github": [96, 129], "integration_openstreetmap": 129, "integration_tmdb": 129, "integration_tmdb_movi": 129, "intellig": 140, "intend": [5, 14, 42, 115, 140], "intens": [56, 57, 58, 107], "intent": [14, 77], "inter": [22, 115], "interact": [0, 4, 17, 20, 21, 22, 69, 76, 77, 79, 94, 107, 115, 119, 131, 140, 144, 188, 190, 194, 199, 229, 231], "intercept": 30, "interchang": 199, "interest": [13, 14, 29, 32, 37, 71, 77, 129, 232], "interfac": [0, 17, 20, 22, 31, 38, 42, 69, 79, 85, 86, 90, 95, 98, 99, 100, 103, 105, 106, 109, 111, 113, 116, 121, 122, 124, 129, 130, 131, 132, 134, 135, 137, 138, 140, 141, 142, 144, 145, 147, 150, 158, 175, 191, 194, 202, 204, 209, 210, 213, 215, 220, 221, 222, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238], "interfer": 25, "interleav": 0, "intermedi": [213, 228], "intern": [5, 16, 17, 21, 22, 29, 32, 37, 38, 48, 81, 90, 93, 96, 106, 107, 113, 122, 123, 127, 129, 133, 134, 135, 159, 173, 182, 190, 192, 201, 218, 223, 232, 236], "internaltokenrequestedev": 119, "internation": 42, "internet": [156, 223], "interpol": 28, "interpret": [61, 132, 209], "interrupt": 63, "interv": [96, 179], "intervent": 20, "intric": 150, "introduc": [2, 14, 20, 43, 47, 64, 122, 129, 131, 140, 150, 164, 188, 206, 228, 231, 233], "introduct": [4, 28, 65, 78, 140, 163, 197, 201, 215, 241], "introductori": 190, "invalid": [1, 10, 17, 20, 22, 57, 59, 76, 81, 101, 122, 123, 128, 173, 192, 204, 227, 231], "invalid_hash": 10, "invalidargumentexcept": [69, 146, 222, 231], "invalidatecooki": 20, "invalidatetokensofus": 227, "invalidvalueexcept": [231, 233, 234], "invert": [27, 194, 231], "investig": 185, "invis": [54, 209], "invit": [8, 42], "invoc": 0, "invok": [0, 3, 8, 25, 118, 132, 171, 190], "involv": [82, 119, 131, 159, 166, 188], "io": [43, 79, 101, 107, 115, 154, 165, 166, 203, 225, 229, 232, 243], "iocmprovid": 233, "ioper": 105, "ioperationcompat": 228, "ioutofofficedata": 121, "ioutput": [20, 40, 130, 136], "ip": [20, 133, 161, 192], "ipaddress": 192, "iparallelawarejob": 228, "ipeparedstat": 222, "ipersonalproviderset": 233, "iphonenumberutil": [123, 229], "ipreloadablenotifi": 233, "ipreparedstat": 222, "ipreview": [21, 210, 229, 232], "iprofil": 125, "iprovid": [69, 108, 110, 126, 132, 140, 141, 142, 144, 227, 229, 231, 233, 234], "iprovideenabledstatebackend": [229, 231], "iprovidermanag": [126, 219], "iproviderwithexpectedruntim": [142, 231], "iproviderwithid": 231, "iproviderwithuserid": [142, 231], "iprovidesicon": 144, "iprovidespersonalset": 144, "ipublicreferenceprovid": [129, 231], "ipublicsharetemplateprovid": 31, "iquerybuild": [37, 104, 213, 231, 232, 234], "iquerylogg": [21, 232], "iratelimitexceededexcept": 133, "irefer": 129, "ireferenceprovid": 129, "iregistrationcontext": [0, 2, 21, 25, 30, 31, 43, 49, 92, 96, 99, 101, 104, 106, 110, 116, 124, 126, 132, 135, 137, 140, 141, 142, 145, 147, 210, 221, 230, 231], "iregistri": [229, 233], "iremotehostvalid": 133, "irepairstep": 130, "irepairstepexpens": [130, 213], "irequest": [18, 20, 21, 33, 35, 126, 131, 186, 190, 230, 232], "irequestcontext": 147, "iresourc": 126, "iresourceprovid": 126, "irespons": 147, "iresult": [222, 229, 234], "irichtextformatt": 232, "irootfold": [21, 38, 231, 232], "irootstorag": 38, "irout": [21, 232, 233], "irregular": 14, "irrelev": 204, "is_arrai": 1, "is_avail": 56, "is_en": 134, "isadmin": [231, 235], "isallow": 20, "isappload": 228, "isarrai": 192, "isavail": [56, 223], "isbackendrequir": 231, "ischemawrapp": [40, 136], "iscontentencod": 48, "iscontextchatavail": 94, "isdefaultenabledmail": 69, "isdefaultenabledstream": 69, "isdefaultexpiredateenforc": 211, "isdirectori": 70, "isearch": [21, 215, 232], "isearchablegroupbackend": 228, "isearchablereferenceprovid": 129, "isearchqueri": 132, "isecurerandom": [21, 217, 232], "isen": [96, 121, 224, 229], "isenabledforus": 229, "iservercontain": [21, 30, 36, 221, 232, 233], "iservic": 110, "isess": [20, 221], "iset": [34, 69, 134], "isetupcheck": 135, "isexternalprovid": 132, "isfiltervalid": 217, "isformattingfilteredobject": 69, "ishar": [31, 231], "ishareownerlessmount": 232, "ishareprovid": [233, 235], "ishareprovidersupportsallsharesinfold": 233, "isi": 223, "isie8": 216, "isimplefil": [227, 228], "isindex": 93, "isineffect": 121, "isinsideview": [87, 129], "isinteract": 1, "isintern": 140, "isizeestimationmigr": [145, 228], "islazi": [90, 93], "islegitimatedforuserid": 105, "ismimetypeicon": 69, "isn": [56, 130, 204, 217, 223], "iso": [58, 61, 69, 123], "isol": 95, "isp": 46, "ispagin": [129, 132], "ispasswordprotect": 128, "ispecificoper": 105, "ispeechtotextmanag": [137, 231], "ispeechtotextprovid": [137, 231], "ispeechtotextproviderwithid": 231, "ispeechtotextproviderwithuserid": [137, 231], "ispubliclinkpasswordrequir": 211, "ispublicshar": 232, "isreadonlyconfigen": 233, "issamepath": 219, "issecur": 101, "issensit": [90, 93], "isset": [19, 140], "issu": [2, 3, 5, 8, 10, 14, 20, 42, 46, 49, 71, 75, 76, 82, 92, 96, 97, 101, 122, 125, 130, 135, 145, 150, 156, 159, 162, 167, 185, 186, 187, 188, 203, 222, 226, 231, 232, 233, 240], "issuccess": [20, 70], "issuehandl": 95, "istatusmanag": 138, "istorag": [38, 231, 232], "istrusteddomain": 133, "istrustedurl": 133, "istwofactorauthenabledforus": 144, "istyp": 228, "isuseradmin": 218, "isvalid": 133, "isvalidfilenam": 231, "isvalidtoken": 128, "isynchronousoptionsawareprovid": [140, 211, 213], "isynchronousprovid": 140, "isynchronouswatermarkingprovid": [211, 234], "isystemtagmanag": 229, "isystemtagobjectmapp": 232, "itag": 220, "itagmanag": [21, 220, 232], "ital": 77, "itasktyp": [140, 142, 231], "item": [16, 17, 22, 29, 38, 42, 46, 49, 54, 67, 77, 78, 79, 80, 94, 96, 104, 126, 140, 148, 186, 194, 197, 199, 200, 229, 231], "item_icons_round": 96, "item_typ": 230, "itemid": [29, 46, 94, 126], "itempickerdialog": 126, "itempl": 233, "itemplatemanag": 233, "itempmanag": [21, 232], "items_process": 29, "itemsperpag": [46, 168, 177, 182], "itemtitl": 126, "itemtyp": [46, 53], "iter": [231, 234], "iterateassoci": 234, "iteratenumer": 234, "ithrottl": 232, "itimefactori": [18, 21, 127, 143, 215, 228, 232], "itinerari": 110, "itoken": [101, 229, 231], "itranslationmanag": [116, 231], "itranslationprovid": [116, 231], "itranslationproviderwithid": 231, "itranslationproviderwithuserid": [116, 231], "itrashitem": 231, "itriggerableprovid": 140, "itrusteddomainhelp": [133, 232], "its": [0, 2, 10, 16, 17, 19, 20, 21, 22, 26, 29, 35, 37, 38, 42, 44, 46, 48, 52, 61, 67, 69, 71, 73, 82, 90, 92, 93, 101, 104, 105, 107, 132, 134, 140, 141, 142, 148, 153, 158, 166, 186, 188, 189, 190, 200, 209, 220, 227, 229, 232, 235, 236, 240], "itself": [17, 21, 22, 30, 40, 43, 44, 52, 60, 77, 81, 89, 101, 105, 129, 160, 190, 193, 204, 223, 230, 232], "itypedquerybuild": 213, "iurlgener": [21, 31, 33, 34, 96, 124, 126, 132, 134, 147, 211, 230, 232, 235], "iuser": [22, 42, 121, 124, 126, 132, 133, 139, 144, 145, 146, 210, 220, 229, 231, 232, 233], "iuserapi": 210, "iuserconfig": [92, 93], "iusermanag": [1, 21, 22, 31, 122, 146, 231, 232, 233], "iusermountcach": 232, "iusersess": [21, 22, 38, 96, 146, 232], "iuserstatu": 138, "iversionbackend": 233, "iwebhookcompatibleev": 231, "iwidget": [96, 231], "j": [7, 8, 16, 25, 26, 42, 64, 96, 105, 115, 118, 126, 129, 131, 135, 151, 154, 167, 181, 186, 190, 198, 199, 200, 209, 220, 228, 229, 241], "ja": 8, "ja_jp": 8, "jail": 236, "jan": [5, 14], "jane": [29, 61, 96, 182], "janedo": 87, "jargon": 81, "jasmin": 243, "java": 70, "javascript": [6, 7, 8, 16, 17, 20, 22, 24, 28, 41, 81, 86, 96, 100, 105, 113, 118, 125, 126, 132, 134, 135, 154, 185, 189, 190, 218, 226, 228, 229, 231, 241], "javascriptmodul": 135, "jdoe": 186, "jitpack": 72, "joann": 46, "job": [1, 5, 15, 20, 28, 29, 42, 56, 90, 104, 106, 122, 130, 137, 140, 141, 142, 166, 179, 185, 201, 204, 225, 228, 230], "joblist": [18, 134, 232], "john": [20, 46, 182], "join": [54, 76, 77, 104], "joinindex": [104, 229], "joinpath": 219, "journalctl": 161, "journei": 129, "jpeg": [61, 129], "jpg": [5, 66, 69, 96, 129, 132, 194, 209], "jqueri": [20, 25, 199, 209, 217, 227, 232, 235], "jrdrespons": 147, "json": [3, 8, 10, 16, 25, 32, 37, 42, 44, 45, 46, 48, 52, 60, 61, 62, 90, 93, 95, 96, 99, 101, 112, 118, 121, 129, 131, 140, 145, 147, 154, 165, 166, 167, 170, 171, 178, 179, 189, 192, 209, 215, 222, 223, 225, 229, 231, 232, 234, 239, 240, 242], "json_decod": [112, 134, 145], "json_encod": [112, 131, 134, 145, 231], "json_pretty_print": 134, "json_throw_on_error": 145, "jsonrespons": [20, 49, 147, 190, 231], "jsonseri": 231, "jsonserializ": 121, "jstimezonedetect": 219, "jstz": 219, "jsx": 154, "judg": 204, "judgement": 188, "jul": 61, "juli": 42, "juliu": 149, "juliushaertl": 96, "jump": 48, "june": 185, "just": [7, 8, 14, 16, 18, 20, 21, 22, 35, 42, 67, 82, 97, 98, 99, 104, 107, 118, 128, 129, 130, 132, 140, 152, 154, 158, 167, 169, 171, 175, 180, 181, 185, 190, 194, 199, 200, 204, 209, 210, 227, 232, 234, 243], "jwt_enabl": 192, "jwt_header": 192, "jwt_secret": 192, "k": [48, 61, 62], "kann": 5, "karchiv": 82, "karma": [41, 243], "kde": [82, 204], "kebab": 186, "keep": [3, 5, 10, 13, 14, 16, 20, 21, 23, 29, 35, 40, 42, 44, 48, 49, 61, 70, 76, 77, 79, 81, 82, 90, 101, 105, 107, 115, 122, 125, 129, 131, 151, 152, 185, 190, 193, 194, 199, 210, 214, 228, 240], "kei": [10, 15, 17, 20, 21, 22, 25, 26, 29, 33, 36, 37, 42, 43, 52, 59, 61, 69, 87, 92, 101, 104, 105, 122, 136, 140, 146, 154, 155, 168, 169, 177, 181, 183, 185, 190, 192, 206, 221, 231, 232], "keithcirkel": 118, "kept": [14, 45, 85, 96, 154, 167, 211, 229], "key1": [92, 168, 177], "key2": [92, 168, 177], "key3": [92, 168, 177], "key_nam": 181, "keyboard": [24, 76, 209], "keymanag": 221, "keyout": 10, "keyserv": 152, "keyword": [154, 186, 204], "kib": 145, "kid": 140, "kihrmq3tytmghwsim": 10, "kill": 152, "killer": 20, "kind": [16, 20, 25, 77, 129, 140, 142, 204], "kindli": 209, "knorr": 149, "know": [12, 21, 25, 42, 49, 79, 81, 82, 95, 107, 122, 129, 132, 140, 142, 144, 169, 170, 185, 190, 204, 232], "knowledg": [81, 94, 204, 233], "known": [3, 17, 21, 22, 37, 45, 69, 82, 95, 96, 104, 105, 107, 123, 130, 147, 232, 234], "l": [5, 34, 42, 69, 95, 116, 132, 134, 137, 140, 141, 142, 152, 209], "l108": 64, "l10n": [8, 31, 43, 96, 124, 132, 134, 135, 145, 151, 155, 167, 218, 221, 232], "l10nfactori": [42, 232], "label": [20, 43, 52, 61, 69, 76, 78, 87, 99, 110, 120, 129, 134, 179, 191, 195, 198, 200, 202, 204], "lack": [37, 76], "land": 33, "landscap": 150, "lang": [5, 8, 42, 151, 154, 167], "lang_map": 8, "languag": [5, 8, 45, 55, 56, 57, 61, 69, 81, 94, 98, 140, 142, 150, 151, 154, 167, 185, 191, 194, 228, 230, 232], "languagedetect": 58, "languagetupl": [116, 231], "larg": [40, 55, 57, 63, 76, 82, 90, 92, 93, 122, 142, 194, 231], "larger": [13, 19, 77, 194, 231], "last": [0, 20, 21, 30, 34, 42, 46, 50, 61, 63, 66, 69, 76, 87, 97, 122, 132, 134, 140, 170, 171, 192, 204, 221, 227, 229, 234], "last_act": 66, "last_check_tim": 170, "last_report": 134, "last_sent": 134, "last_visit": 20, "lastdai": 50, "lastindex": 48, "lastlogin": [37, 46], "lastmodifi": 94, "lastnam": [186, 192], "lastreport": 134, "lastsentreportd": 134, "lastsentreporttim": 134, "lastupd": 87, "latenc": 19, "latent": 141, "later": [5, 8, 14, 15, 20, 21, 25, 34, 37, 46, 82, 90, 96, 107, 119, 129, 130, 185, 213, 221, 227, 233], "latest": [11, 14, 15, 16, 40, 61, 66, 72, 79, 82, 83, 95, 96, 125, 149, 154, 165, 166, 188, 214], "latestchilddatetim": 64, "latex": 209, "latter": 131, "launch": [70, 152, 165], "law": [14, 202], "lax": 228, "layer": [10, 20, 37, 101, 209, 222, 224, 229, 237], "layout": [14, 78, 194, 197, 201], "lazi": [0, 48, 92, 107, 129, 230], "lazili": 0, "lazyrespons": 20, "lazyrootfold": 232, "lc_messag": 154, "ldap": [22, 134, 218, 232, 242], "ldapgroupmemberassocattr": 218, "ldapprovid": 232, "lead": [13, 20, 21, 37, 42, 49, 76, 82, 115, 122, 129, 167, 185, 209], "leader": 10, "leak": [14, 82, 95, 132, 209], "learn": [72, 79, 90, 93, 106, 113, 185, 201], "least": [5, 17, 20, 22, 48, 49, 81, 96, 107, 129, 139, 140, 202, 204, 209, 211, 231, 240], "leav": [40, 46, 85, 118, 152, 190, 192, 233], "left": [10, 20, 42, 46, 47, 49, 76, 80, 96, 107, 129, 193, 194, 199, 200, 232], "legaci": [20, 21, 25, 46, 49, 61, 90, 109, 190, 231, 232, 233, 234, 235, 236], "legibl": 77, "length": [5, 37, 40, 42, 48, 61, 62, 63, 93, 116, 141, 185, 186], "less": [16, 21, 29, 38, 69, 76, 77, 81, 131, 152, 194, 204, 231, 235, 236], "lessspecificimplementedreturntyp": 49, "lessspecificreturnstat": 49, "lessspecificreturntyp": 49, "let": [19, 20, 33, 47, 49, 69, 76, 82, 95, 96, 107, 129, 151, 153, 169, 175, 185, 186, 188, 204, 209], "letter": [20, 30, 36, 61, 123, 186, 190, 231], "level": [20, 21, 28, 38, 79, 89, 122, 131, 135, 161, 173, 178, 188, 190, 199, 200, 215, 231, 232, 237, 243], "leverag": 3, "lexicon": [90, 91, 93, 113, 114], "lf": 185, "li": [184, 198, 199, 200, 209], "lib": [0, 1, 3, 5, 7, 10, 18, 19, 20, 21, 30, 31, 32, 33, 34, 37, 40, 43, 49, 64, 70, 82, 85, 89, 95, 98, 101, 103, 104, 108, 110, 116, 124, 129, 130, 132, 137, 140, 141, 142, 146, 154, 156, 170, 190, 192, 243], "liber": 204, "libphonenumb": 123, "librari": [25, 73, 75, 76, 82, 89, 95, 115, 123, 127, 129, 150, 159, 190, 192, 209, 231, 234], "libxml": [5, 242], "licenc": 5, "licens": [5, 14, 15, 71, 191], "life": [14, 15, 64, 188], "lifecycl": [20, 28, 90, 151, 155, 163, 201], "lifespan": 0, "lifetim": 0, "light": [0, 77, 104, 144, 194, 221, 229], "lighten": 93, "lighter": [229, 233], "lighthous": 79, "like": [0, 2, 3, 5, 7, 8, 10, 14, 16, 17, 18, 19, 20, 21, 22, 23, 29, 30, 36, 37, 38, 40, 41, 42, 43, 44, 46, 49, 52, 55, 57, 60, 61, 63, 66, 69, 71, 72, 76, 77, 79, 81, 82, 94, 95, 96, 97, 98, 99, 101, 104, 106, 107, 110, 115, 116, 118, 120, 122, 126, 128, 129, 131, 132, 135, 136, 137, 140, 141, 142, 144, 154, 169, 179, 184, 185, 186, 188, 190, 194, 198, 199, 200, 202, 204, 209, 210, 219, 220, 221, 222, 223, 227, 228, 229, 231, 233, 234, 243], "likelihood": [188, 229], "limit": [5, 10, 14, 17, 18, 21, 22, 33, 35, 37, 46, 54, 56, 57, 58, 63, 64, 66, 69, 77, 79, 85, 92, 93, 96, 97, 104, 107, 113, 114, 116, 122, 125, 129, 132, 137, 153, 154, 158, 161, 162, 164, 169, 174, 199, 206, 209, 228, 229, 232, 236], "limitenumerationtogroup": 220, "line": [0, 1, 8, 21, 25, 29, 42, 72, 76, 77, 82, 89, 98, 107, 136, 144, 152, 154, 156, 184, 185, 187, 194, 198, 199, 202, 233], "liner": 202, "link": [3, 5, 6, 10, 13, 17, 20, 22, 25, 26, 43, 45, 46, 52, 60, 61, 69, 82, 96, 101, 102, 108, 113, 124, 126, 128, 132, 133, 135, 139, 144, 174, 199, 200, 203, 206, 209, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 233, 234, 243], "linkact": 108, "linkactiveclass": 154, "linkautocomplet": 129, "linkend": 42, "linker": 82, "linkprovid": 108, "linkstart": 42, "linkto": [135, 211, 220], "linktoabsolut": 211, "linktodefaultpageurl": 235, "linktooc": 220, "linktopubl": [216, 229], "linktoremot": [211, 220], "linktoremov": 211, "linktorout": [33, 132], "linktorouteabsolut": [31, 96, 124, 126, 147], "lint": [100, 113], "linter": [222, 225, 229, 231, 232, 234], "linu": 202, "linux": [5, 83, 152, 192], "list": [1, 5, 6, 8, 16, 17, 20, 21, 22, 25, 34, 35, 37, 38, 40, 42, 43, 45, 49, 51, 57, 58, 59, 63, 64, 65, 69, 70, 78, 80, 82, 87, 90, 92, 93, 94, 95, 96, 99, 104, 107, 108, 110, 113, 116, 125, 132, 138, 140, 141, 142, 144, 149, 154, 162, 168, 171, 172, 177, 178, 179, 181, 184, 189, 190, 193, 194, 197, 201, 203, 204, 215, 217, 226, 231, 233, 234, 243], "list__item": 184, "list_item": 184, "listen": [0, 2, 6, 17, 25, 28, 40, 73, 88, 94, 101, 104, 105, 113, 115, 118, 122, 126, 129, 134, 138, 148, 165, 172, 183, 221, 229, 233, 234], "listofaudio": 140, "listoffil": 140, "listofimag": 140, "listofnumb": 140, "listoftext": 140, "listofvideo": 140, "listservic": 110, "listtemplatefield": 233, "liter": [66, 104], "littl": [222, 229], "live": [5, 15, 17, 22, 61, 85, 102, 113, 130, 190, 228, 235], "ll": [3, 21, 95, 132, 234, 239, 243], "llama": 140, "llvm": 82, "load": [0, 2, 3, 6, 17, 20, 21, 22, 24, 32, 37, 42, 76, 79, 81, 82, 87, 89, 92, 96, 97, 101, 107, 110, 115, 122, 124, 127, 129, 131, 148, 154, 156, 161, 185, 190, 194, 199, 218, 228, 229, 230, 231, 232, 233], "loadabl": [116, 132, 137, 140, 141, 142], "loadadditionalentriesev": 232, "loadadditionallisten": 25, "loadadditionalscript": [6, 221, 229], "loadadditionalscriptsev": [25, 126, 229], "loadadditionalscriptsloggedin": 229, "loadadditionalsettingscript": 221, "loadapp": 228, "loader": [89, 122, 227, 229, 233], "loadscript": 229, "loadsettingsscriptsev": 221, "loadsidebar": 219, "loadstat": [25, 190], "loadstyl": 229, "local": [8, 15, 16, 28, 42, 45, 46, 61, 62, 76, 82, 92, 115, 126, 135, 141, 149, 151, 152, 154, 158, 165, 167, 174, 192, 239], "locale_dir": 154, "localhost": [44, 98, 133, 153, 189, 192, 230, 243], "locat": [0, 8, 20, 21, 42, 46, 49, 61, 63, 67, 69, 70, 73, 82, 83, 85, 92, 98, 122, 124, 129, 134, 154, 156, 171, 186, 199, 209, 218, 234, 236], "lock": [16, 20, 37, 61, 113, 114, 122, 220, 231, 232], "lockdiscoveri": 61, "lockedexcept": 220, "lockentri": 61, "lockingprovid": 232, "lockscop": 61, "locktyp": 61, "lockwaittimeoutexcept": 231, "lodash": [220, 234], "log": [6, 20, 21, 25, 28, 32, 50, 69, 73, 92, 97, 98, 115, 122, 125, 127, 128, 130, 134, 146, 156, 161, 172, 183, 190, 192, 201, 209, 215, 220, 221, 230, 231, 232, 243], "log_lvl": 173, "log_output": 98, "log_rotate_s": 36, "logdata": 29, "logeventlisten": 29, "logexcept": [216, 221], "logfactori": 29, "logfil": 122, "logger": [29, 97, 100, 113, 130, 221, 222, 223, 230, 232], "loggerinterfac": [21, 29, 127, 130, 221, 229, 232], "logic": [0, 1, 18, 20, 21, 30, 40, 97, 99, 106, 107, 132, 140, 147, 151, 153, 182, 194, 199, 225, 236], "login": [17, 20, 22, 60, 71, 75, 88, 113, 144, 146, 156, 201, 224, 227, 232], "loginfailedev": 220, "loginnam": 44, "loglevel": [29, 122, 173, 227, 232], "logo": [13, 20, 46], "logout": [5, 22, 146], "long": [0, 14, 21, 40, 54, 70, 76, 90, 116, 121, 130, 132, 133, 137, 140, 141, 142, 166, 185, 187, 190, 198, 204, 213, 227], "long_query_tim": 122, "longer": [3, 14, 16, 17, 18, 22, 37, 50, 69, 73, 116, 122, 141, 142, 146, 196, 199, 204, 210, 215, 218, 220, 223, 228, 230, 231, 232, 233], "look": [5, 10, 20, 21, 27, 29, 40, 41, 42, 43, 44, 46, 49, 61, 73, 76, 79, 96, 101, 106, 107, 115, 118, 122, 128, 129, 134, 135, 136, 137, 140, 141, 142, 151, 154, 156, 184, 185, 190, 194, 196, 202, 204], "lookup": [2, 53, 231], "loop": [105, 187, 190, 229], "loos": 190, "lose": [10, 11, 42], "loss": 188, "lost": [10, 20, 42, 60, 115, 215], "lot": [27, 37, 44, 97, 104, 115, 122, 125, 128, 134, 188, 239], "low": [18, 19, 76, 104, 185, 188, 222, 236], "lower": [5, 22, 36, 37, 82, 104, 122, 134, 190, 230, 234], "lowercamelcas": [37, 187], "lowercas": [1, 5, 69, 81, 134, 190], "lowest": [20, 232], "lt": [104, 210, 223, 239], "ltr": 194, "lukasreschk": 10, "m": [61, 152, 179, 188, 198], "m1dqhwuzwwjec3ku7gjsspr7bzxopwf01kj0xgppyvzekgtbzbraxlouxfzdbgj6zk9owg9x": 44, "mac": 82, "machin": [10, 82, 113, 149, 160, 161, 201], "maco": 83, "made": [20, 29, 60, 66, 104, 118, 131, 134, 153, 166, 167, 185, 188, 209, 229], "magic": [37, 128, 134, 232, 235], "magnifi": 76, "mai": [0, 1, 2, 10, 15, 16, 17, 18, 20, 21, 22, 29, 33, 40, 42, 44, 47, 49, 61, 69, 70, 71, 72, 76, 77, 82, 90, 94, 96, 97, 98, 106, 107, 110, 115, 116, 121, 122, 127, 129, 132, 137, 140, 142, 145, 148, 152, 156, 158, 161, 162, 188, 190, 198, 202, 204, 206, 209, 223, 227, 228, 232, 233], "mail": [5, 14, 20, 52, 76, 80, 94, 103, 109, 111, 113, 124, 125, 129, 132, 144, 198, 209, 215, 219, 220, 227, 229, 232, 233], "mail_recipi": 132, "mail_smtphost": 192, "mail_smtpmod": [192, 215], "mail_smtpnam": 36, "mail_smtpport": 192, "mailbox": 76, "mailer": [103, 125, 232], "mailhog": 192, "mailmanag": 110, "mailprovid": 110, "mailservic": [103, 110], "mailto": 124, "main": [0, 8, 16, 18, 19, 20, 25, 26, 27, 29, 49, 76, 77, 79, 80, 82, 95, 96, 104, 107, 110, 119, 126, 129, 140, 149, 150, 151, 152, 156, 181, 184, 185, 186, 188, 190, 194, 197, 198, 199, 200, 201, 202, 203, 209, 222, 229, 231, 232], "mainact": 70, "mainli": [74, 79, 131, 140, 221], "maintain": [10, 11, 14, 16, 18, 21, 37, 43, 48, 79, 85, 152, 184, 185, 201, 204, 206, 208, 212, 226, 233, 236], "maintainership": 14, "mainten": [82, 130, 188, 190, 201], "major": [0, 5, 40, 46, 76, 85, 115, 188, 204, 221, 222, 225, 229, 233, 238], "major_vers": 125, "make": [8, 10, 12, 14, 15, 16, 17, 18, 20, 21, 22, 25, 30, 33, 36, 37, 40, 41, 42, 48, 49, 56, 57, 58, 65, 67, 68, 79, 81, 82, 88, 89, 90, 94, 97, 98, 101, 105, 106, 107, 110, 113, 115, 118, 119, 122, 125, 129, 132, 139, 140, 142, 149, 152, 156, 161, 172, 184, 185, 186, 189, 190, 192, 193, 194, 204, 209, 210, 215, 217, 219, 220, 221, 222, 225, 226, 227, 228, 229, 230, 231, 232, 234, 239, 240, 241, 242, 243], "makefil": [3, 155, 165], "malici": [14, 190, 209], "man": 140, "manag": [0, 4, 10, 12, 17, 20, 22, 39, 40, 47, 61, 69, 82, 88, 94, 101, 104, 106, 110, 113, 116, 118, 129, 137, 140, 141, 142, 162, 188, 190, 193, 201, 210, 227, 232, 233, 234, 236, 239], "manageruid": 146, "mandatori": [52, 82, 229], "mani": [1, 3, 15, 20, 22, 42, 49, 56, 57, 58, 61, 62, 76, 79, 82, 98, 107, 115, 125, 140, 141, 152, 188, 192, 204, 222, 232, 233], "manipul": [20, 30, 37, 45, 209], "mankind": 129, "manner": 232, "manpag": 82, "manual": [4, 10, 21, 29, 37, 40, 49, 69, 82, 83, 90, 93, 98, 129, 149, 151, 154, 183, 189, 190, 231, 233, 243], "manual_instal": [149, 151, 154, 165], "map": [17, 22, 28, 33, 35, 40, 61, 73, 89, 90, 107, 123, 129, 186, 190, 228, 237], "mapper": [21, 39, 95, 209, 215, 227, 233], "margin": [194, 200, 232], "maria": 52, "mariadb": [97, 122, 210, 233], "mark": [13, 16, 33, 34, 48, 61, 64, 76, 81, 85, 90, 122, 139, 152, 187, 190, 194, 213, 217, 220, 229, 231, 238, 239, 240], "markdown": [5, 76, 101, 129, 190], "marker": 199, "market": [80, 81], "markfieldupd": 227, "markup": 187, "martin": 243, "mask": [61, 236], "massiv": 230, "master": [3, 8, 16, 37, 46, 49, 64, 72, 82, 95, 125, 188, 190, 204, 231, 238, 243], "match": [5, 21, 27, 28, 43, 44, 49, 53, 69, 76, 89, 90, 92, 105, 106, 107, 189, 190, 227, 228, 230, 231, 240], "matcher": 105, "matchrefer": 129, "materi": [76, 77, 79, 197, 233], "matric": [231, 234], "matrix": [15, 95, 98, 210, 225, 229, 232], "matter": [0, 18, 63, 64, 76, 122, 188, 226], "max": [5, 48, 131, 132, 190, 192, 194, 195, 199, 210, 225, 226, 227, 228, 229, 230, 231, 232, 234], "maxcontrast": [77, 194, 229], "maxdepth": 189, "maximum": [5, 20, 46, 129, 130, 185, 194, 199], "maxuploadfiles": 233, "mb_array_change_key_cas": 233, "mb_str_replac": 216, "mb_substr_replac": 216, "mbstring": 242, "mclient": 70, "md": [5, 16, 43, 96, 101, 185, 230], "md5": [61, 62, 107, 128, 210, 211, 219, 234], "md5sum": 62, "mdn": [20, 209], "me": [17, 22, 31, 87, 108, 126, 198], "mean": [1, 3, 5, 14, 17, 20, 21, 22, 30, 32, 37, 40, 42, 44, 48, 61, 63, 66, 73, 81, 82, 85, 93, 99, 101, 104, 107, 122, 130, 131, 132, 135, 148, 160, 166, 180, 185, 188, 190, 204, 206, 209, 213, 218, 222, 229, 231, 232, 233], "meaning": 231, "meant": [101, 140, 189, 223], "meantim": 239, "measur": [14, 20, 131, 153, 209], "mechan": [0, 22, 42, 101, 107, 108, 116, 132, 137, 140, 141, 142, 147, 151, 222, 223], "media": [17, 20, 22, 46, 137, 228], "medium": [92, 185], "meet": [76, 101, 106, 138, 139], "member": [10, 22, 187], "memcach": [19, 35, 192, 223], "memcachefactori": 232, "memori": [14, 20, 21, 28, 82, 90, 125, 231], "mention": [10, 49, 76, 85, 96, 131, 134, 135, 140, 188, 204, 234], "menu": [5, 20, 43, 47, 78, 96, 109, 111, 113, 129, 150, 153, 167, 172, 183, 193, 194, 197, 198, 201, 229, 231, 235], "menuitem": 200, "mercuri": 5, "merg": [12, 16, 129, 135, 185, 188, 189, 202, 204, 206, 233, 234], "merger": 69, "mesh": [61, 233], "mess": 42, "messag": [17, 22, 28, 42, 43, 44, 45, 46, 48, 49, 50, 56, 57, 58, 64, 69, 76, 81, 96, 103, 110, 113, 115, 116, 121, 122, 129, 130, 132, 135, 137, 140, 141, 142, 147, 161, 168, 170, 172, 174, 177, 182, 199, 209, 223, 231, 240], "message_rich": 69, "messagehandl": 101, "messageid": [54, 138], "messagenam": 101, "messagetd": 209, "met": [49, 69], "meta": [31, 43, 44, 46, 48, 96, 101, 104, 129, 131, 132, 168, 177, 182, 222, 231, 233, 240], "metacharact": 209, "metadata": [4, 7, 17, 22, 38, 39, 45, 61, 76, 86, 90, 95, 102, 113, 140, 190, 192, 201, 229, 234, 236], "metadata_etag": 61, "metadatabackgroundev": [104, 229], "metadatakei": 104, "metadataliveev": [104, 229], "metadatamanag": 104, "metadataqueri": 104, "method": [0, 1, 2, 3, 8, 17, 18, 20, 21, 22, 25, 26, 28, 30, 32, 33, 34, 37, 38, 41, 42, 43, 45, 46, 50, 51, 52, 53, 54, 56, 57, 58, 59, 65, 69, 70, 72, 73, 85, 90, 92, 93, 94, 95, 96, 97, 99, 101, 104, 105, 106, 107, 108, 110, 113, 114, 115, 116, 121, 125, 126, 127, 129, 130, 132, 135, 137, 140, 141, 142, 144, 145, 146, 148, 150, 151, 154, 155, 164, 170, 187, 190, 204, 209, 210, 211, 213, 215, 220, 221, 222, 223, 224, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 243], "method_exist": [110, 229], "methodnam": 30, "methodologi": 82, "methodtest": 33, "metric": [113, 114, 140, 234], "metrictyp": 120, "mhandler": 70, "micro": 46, "microservic": [151, 153, 154], "microsoft": 204, "middlewar": [20, 28, 90, 164, 201, 227], "might": [0, 3, 14, 16, 17, 20, 21, 22, 23, 25, 31, 35, 36, 42, 44, 46, 48, 49, 50, 53, 71, 74, 79, 82, 93, 96, 97, 104, 105, 107, 115, 118, 119, 122, 128, 129, 130, 131, 132, 133, 135, 141, 142, 144, 152, 154, 156, 170, 185, 188, 189, 204, 209, 213, 223, 231, 232, 239, 243], "migrat": [5, 23, 28, 37, 39, 44, 88, 90, 96, 98, 113, 115, 130, 136, 210, 215, 229, 232, 234, 235], "miibvtccasagawibagiupvawyqjwcwyazcv7iz16twxfeumwdqyjkozihvcnaqef": 10, "miko": 243, "mileston": 16, "million": 129, "millisecond": [122, 136], "mime": [61, 62, 66, 132, 135, 171, 232], "mimetyp": [17, 20, 22, 35, 43, 62, 69, 70, 101, 232, 236], "mimetype_filt": 43, "mimetypedetector": 232, "mimetypeload": 232, "min": [5, 132, 154, 189, 192, 194, 199, 210, 225, 226, 227, 228, 229, 230, 231, 232, 234], "mind": [16, 23, 44, 48, 79, 82, 101, 107, 122, 131], "mingw": 82, "minif": 239, "minifi": [8, 98], "minim": [20, 97, 151, 164], "minimalist": 144, "minimum": [3, 5, 14, 18, 48, 69, 77, 107, 125, 194, 199, 210], "minio": 192, "minioadmin": 192, "minor": [40, 46, 222, 229], "minut": [15, 18, 44, 56, 57, 58, 96, 141, 142, 153, 179], "mirror": 101, "miscellan": [28, 172, 183], "misdetect": 167, "miss": [17, 22, 34, 40, 49, 58, 61, 125, 135, 150, 185, 204, 209, 210, 229], "missing_fil": 10, "mistak": [8, 15, 82, 140], "misus": 92, "mit": [5, 71], "mitig": [2, 113, 114, 233], "mix": [90, 93, 122, 129, 153, 199, 200, 227], "mixin": 129, "mj": [135, 154, 228], "mkcol": [61, 62, 63], "mkdir": [15, 82, 152, 189, 192], "mknod": 192, "mktemp": 152, "mm": [50, 52], "mncwv0ujg9s63lf8": 10, "mo": [42, 154, 167], "mobil": [43, 46, 76, 101, 129, 132, 190, 192, 193, 194, 198, 231], "mocha": 118, "mock": [19, 21, 41, 243], "mockup": 235, "modal": [78, 194, 231], "mode": [17, 22, 40, 42, 90, 100, 113, 125, 135, 149, 150, 154, 156, 161, 175, 186, 190, 193, 194, 198, 223, 229, 231, 243], "model": [18, 30, 55, 57, 96, 104, 140, 141, 142, 153], "moder": 139, "modern": [21, 115, 135, 190], "modif": [35, 61, 62, 104, 206, 236], "modifi": [10, 17, 22, 34, 36, 40, 45, 48, 49, 54, 59, 61, 66, 69, 82, 85, 86, 88, 104, 107, 113, 115, 121, 147, 156, 171, 184, 193], "modifycolumn": 40, "modifyparticipantev": 138, "modul": [20, 25, 82, 98, 118, 135, 186, 190, 228, 229, 231, 239], "modular": [21, 185], "mom": 198, "moment": [5, 43, 66, 70, 71, 107, 121, 125, 140, 219, 222], "monet": [11, 201], "monitor": [5, 12, 29, 122], "monitoringmiddlewar": 30, "month": 204, "monthlyreport": 134, "more": [2, 3, 5, 6, 8, 10, 12, 13, 14, 15, 17, 18, 20, 21, 22, 25, 26, 31, 33, 35, 38, 39, 40, 42, 43, 46, 49, 52, 54, 69, 76, 77, 79, 81, 82, 83, 90, 93, 95, 96, 99, 106, 107, 110, 115, 118, 122, 124, 125, 129, 131, 134, 148, 150, 151, 152, 153, 154, 158, 169, 174, 175, 180, 184, 185, 186, 188, 189, 190, 194, 196, 198, 199, 200, 204, 206, 209, 222, 223, 226, 229, 231, 232, 233, 234, 236, 239, 243], "moreov": [3, 5, 222, 229, 231], "morespecificreturntyp": 49, "most": [14, 18, 19, 20, 21, 33, 37, 42, 49, 54, 61, 69, 76, 77, 79, 80, 82, 90, 107, 115, 123, 129, 131, 132, 135, 140, 148, 155, 162, 185, 189, 190, 204, 209, 211, 214, 220, 221, 223, 229, 230, 231, 234, 240, 243], "mostli": [17, 22, 42, 64, 95, 115, 129, 222, 223, 229], "mount": [17, 22, 61, 96, 126, 129, 165, 190, 232, 233, 237], "mountconfigmanag": 232, "mountmanag": 232, "mountpoint": [38, 231, 232, 236], "move": [3, 11, 17, 22, 37, 42, 63, 65, 67, 68, 73, 76, 77, 89, 96, 105, 131, 204, 215, 221, 222, 226, 229, 231, 232, 233, 239], "moveabl": 61, "moveoper": 70, "moveremotefileoper": 70, "movetotrash": 229, "movetotrashev": 229, "movi": 129, "mozilla": [79, 98, 185, 234], "mpl": 5, "mquyqdffosamjytm8pvpkosvqxt5hglnuspo5embgjmnepfgaide8oujvrj2wcycbslgqynu9japfvzhml83ybmvp6adidarjtfibprwod6p32fl9lipistvc6k8wrs1": 44, "msg": 20, "msword": 43, "mtime": [22, 61, 62, 63, 171], "much": [19, 82, 93, 125, 142, 184, 204, 226, 229, 233], "multi": [20, 42, 61, 76, 98, 134, 179, 222], "multi_checkbox": 99, "multi_select": 99, "multilin": 50, "multimedia": 5, "multipart": 62, "multipl": [1, 5, 10, 17, 18, 20, 22, 23, 34, 40, 42, 45, 49, 66, 76, 77, 81, 82, 85, 93, 95, 98, 99, 110, 119, 129, 131, 148, 179, 187, 194, 198, 228, 229, 230, 233, 236], "multipleobjectsreturnedexcept": [37, 228], "multipli": 77, "multiselect": 140, "multistatu": [64, 104], "must": [0, 1, 5, 10, 14, 17, 20, 22, 29, 33, 36, 37, 40, 42, 43, 44, 49, 54, 60, 61, 63, 69, 70, 79, 81, 82, 85, 90, 92, 93, 96, 97, 99, 101, 105, 107, 119, 120, 129, 132, 134, 140, 144, 151, 154, 157, 160, 164, 165, 167, 176, 178, 187, 190, 195, 199, 200, 212, 231, 233, 234, 243], "mustach": 42, "mutabl": [37, 106], "mutat": [106, 190], "mutual": 76, "mv": 152, "my": [2, 19, 29, 30, 31, 33, 46, 49, 81, 87, 96, 99, 104, 107, 108, 116, 122, 124, 126, 129, 130, 132, 133, 137, 140, 141, 142, 145, 165, 181, 186, 190], "my_alia": 104, "my_app": [29, 99, 104, 108, 126, 140, 141, 142], "my_app_id": [87, 124, 175], "my_app_t": 21, "my_checkbox_field": 99, "my_class": 185, "my_config_kei": 92, "my_declarative_settings_form": 99, "my_field_kei": 99, "my_field_unique_id": 99, "my_index": 40, "my_multi_select_field": 99, "my_multicheckbox_field": 99, "my_new_index": 40, "my_notebook": 190, "my_notes_set": 34, "my_old_index_on": 40, "my_old_index_two": 40, "my_other_appwidgetid": 96, "my_radio_field": 99, "my_rich_object_typ": 129, "my_section_id": 99, "my_select_field": 99, "my_tabl": [40, 104, 136], "my_unique_act": 124, "myapp": [0, 1, 6, 8, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41, 42, 63, 69, 89, 90, 92, 93, 94, 96, 99, 101, 104, 106, 108, 116, 118, 120, 124, 125, 126, 129, 130, 131, 132, 135, 136, 137, 140, 141, 142, 145, 146, 147, 222, 243], "myapp_act": 69, "myapp_author": 37, "myapp_metr": 120, "myappcollector": 125, "myappdatacollector": 125, "myappid": 134, "myapplic": 2, "myappmanag": 145, "myappmigr": 145, "myappwidget": [96, 126], "myappwidgetid": 96, "myarrai": 186, "myawesomeservic": 129, "mybeautifulapp": [21, 89], "mybulkprovid": 108, "mycamelcaseapp": 33, "myclass": [90, 97, 186, 187], "mycontrol": [35, 126], "mycooki": 20, "mycustompickerel": 129, "mycustomtemplatefilenam": 31, "mycustomwidgetcompon": 129, "mydata": [96, 125], "mydavplugin": [2, 133, 148], "mydeclarativesettingsform": 99, "myeditor": 101, "myevent": 138, "myfil": [20, 38], "myfilemenuplugin": 25, "myfooimpl": 0, "myfunct": [97, 187], "mygreatapp": 138, "myhead": [30, 184], "myicon": 184, "mykei": [90, 93], "mylink": 129, "mylisten": 2, "mymethod": 187, "mynam": 21, "mynotebook": 190, "myobject": [69, 136], "myobjectfactori": 136, "myprofileact": 124, "mypromptresultlisten": [140, 142], "myproperti": 186, "myprovid": 108, "mypublicsharetemplateprovid": 31, "myreferencelisten": [129, 137], "myremoteserverintegr": [112, 133], "myrepairstep": 130, "myresourceprovid": 126, "myscop": 49, "mysearchprovid": 132, "myservic": [18, 21, 37, 96, 106, 138], "myset": 34, "mysql": [5, 15, 37, 97, 98, 122, 210, 233, 243], "mysqld": 97, "mystat": 25, "mysteri": 129, "mytag1": 49, "mytestclass": 21, "mytestclass2": 21, "mytestservic": 110, "mytranscriptionlisten": 137, "myuser": 38, "myvalu": [90, 93], "myvar": [186, 187], "myvari": 187, "mywidget": [96, 129], "n": [1, 8, 10, 15, 42, 61, 62, 64, 66, 67, 81, 82, 104, 107, 125, 129, 135, 140, 148, 154, 165, 185, 186, 198], "n1": 95, "nachrichten": 5, "name": [0, 3, 4, 5, 6, 8, 10, 14, 15, 17, 20, 21, 23, 25, 26, 27, 29, 32, 33, 34, 35, 37, 40, 42, 43, 46, 48, 49, 52, 57, 58, 61, 63, 64, 66, 68, 69, 70, 73, 76, 78, 82, 85, 89, 90, 95, 99, 101, 103, 104, 105, 106, 108, 110, 115, 118, 120, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 139, 140, 141, 144, 145, 154, 165, 166, 170, 171, 174, 175, 178, 179, 180, 181, 185, 187, 189, 190, 192, 199, 202, 206, 210, 217, 219, 222, 227, 228, 229, 230, 231, 232, 233, 234, 239, 240], "namespac": [0, 1, 18, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 35, 36, 37, 41, 49, 69, 85, 89, 90, 95, 96, 99, 101, 104, 107, 108, 110, 115, 116, 120, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 144, 145, 146, 147, 186, 187, 215, 219, 223, 229, 231, 232, 238, 243], "nan": 5, "nano": 156, "narrow": 49, "nativ": [20, 23, 76, 77, 113, 186, 233, 243], "natur": [61, 81, 94], "navig": [4, 5, 20, 23, 32, 42, 69, 73, 77, 78, 80, 132, 134, 190, 193, 194, 197, 200, 201, 231, 232], "navigationmanag": 232, "nb": [8, 62], "nb_no": 8, "nbqawizehmb8ga1uecgwyb3duq2xvdwqgq29kzsbtawduaw5nienbmb4xdte1mtax": 10, "nc": [20, 44, 61, 81, 96, 104, 172, 192, 229, 232], "nc16": [192, 217], "nc31": 140, "nc32": 140, "nc33": 140, "nc_app_": [154, 161], "nc_favorite_flag": 171, "nc_py_api": 165, "ncaction": 76, "ncappnavig": [76, 235], "ncappnavigationcapt": 76, "ncappnavigationitem": 76, "ncappnavigationnew": 76, "ncappnavigationsearch": 76, "ncappsettingsdialog": 76, "ncappsettingssect": 76, "ncappsidebar": [76, 234], "ncappsidebarhead": 76, "ncappsidebartab": 76, "ncavatar": 76, "ncbutton": 76, "nccheckboxradioswitch": [76, 99], "ncchip": 76, "nccolorpick": 76, "nccounterbubbl": 76, "nccustompickerrenderresult": 129, "ncdatetim": 235, "ncdatetimepick": 76, "ncdatetimepickern": 76, "ncdialog": 76, "ncemojipick": 76, "ncemptycont": 76, "ncfilepick": 76, "ncformbox": 76, "ncformgroup": 76, "nciconsvgwrapp": 196, "nclistitem": 76, "ncmodal": 76, "ncnotecard": 76, "ncpasswordfield": 76, "ncradiogroup": 76, "ncrichcontentedit": 76, "ncrichtext": 76, "ncselect": 76, "ncsettingssect": 99, "nctextarea": 76, "nctextfield": 76, "nctimezonepick": 76, "ncu": 85, "ncuserbubbl": 76, "ndqyjkozihvcnaqebbqadgy0amigjaogbanoqesgdcw0l2l": 10, "necessari": [12, 40, 42, 95, 129, 131, 134, 144, 150, 151, 156, 159, 170, 188, 189, 190, 206], "necessarili": 188, "need": [0, 3, 5, 6, 8, 10, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 29, 31, 33, 34, 37, 38, 40, 42, 43, 44, 46, 48, 49, 52, 61, 62, 63, 64, 67, 68, 70, 71, 73, 76, 77, 82, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 104, 105, 107, 110, 116, 119, 120, 122, 124, 125, 126, 128, 129, 131, 132, 134, 135, 137, 139, 140, 141, 142, 144, 145, 148, 151, 153, 154, 155, 156, 158, 161, 165, 166, 169, 171, 175, 181, 185, 187, 188, 189, 190, 192, 193, 195, 196, 198, 199, 200, 202, 204, 206, 209, 210, 218, 223, 225, 227, 229, 230, 231, 232, 233, 234, 235, 238, 239, 243], "needinfo": 204, "needspartfil": 232, "neg": [0, 76, 122, 132, 185], "negat": 175, "nein": 5, "neither": [37, 185], "net": [48, 104, 165, 222, 225, 229, 231, 232], "netlifi": [115, 196], "network": [62, 107, 122, 135, 150, 151, 152, 156, 162, 165], "networkofflin": 115, "networkonlin": 115, "networkset": 192, "neutral": 81, "never": [20, 42, 44, 77, 81, 85, 134, 188, 190, 209, 222, 232], "nevertheless": [185, 222], "new": [1, 2, 5, 7, 8, 10, 13, 15, 16, 17, 19, 20, 21, 22, 23, 26, 29, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 48, 49, 54, 61, 69, 70, 73, 76, 85, 90, 92, 93, 94, 96, 98, 99, 101, 104, 105, 106, 110, 113, 114, 115, 121, 122, 125, 126, 127, 129, 131, 132, 134, 136, 139, 140, 141, 142, 144, 145, 146, 147, 150, 154, 162, 178, 185, 188, 190, 192, 193, 197, 198, 200, 201, 204, 206, 210, 212, 215, 221, 222, 223, 224, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 243], "new_tabl": 40, "newbasiccredenti": 70, "newbearercredenti": 70, "newclient": 112, "newconversationopt": 139, "newemailact": 108, "newer": [16, 43, 46, 82, 145, 204, 220, 222], "newest": 238, "newfil": [35, 38], "newfilemenu": 25, "newfilepath": 70, "newfold": 35, "newfolderpath": 70, "newkei": 10, "newli": [15, 16, 52, 82, 165, 228], "newlinkact": 108, "newnam": 101, "newqueri": 106, "newsamlssocredenti": 70, "next": [13, 16, 20, 34, 40, 41, 49, 50, 69, 76, 81, 96, 97, 104, 107, 122, 126, 132, 144, 150, 151, 171, 188, 199, 204, 243], "nextcloud": [1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 28, 29, 32, 34, 37, 39, 40, 41, 42, 43, 44, 46, 48, 49, 52, 53, 54, 61, 62, 63, 64, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 85, 87, 88, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 103, 104, 106, 108, 109, 110, 111, 112, 113, 116, 118, 120, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 171, 173, 174, 175, 177, 178, 179, 181, 183, 185, 186, 187, 188, 189, 191, 192, 194, 195, 196, 199, 200, 202, 203, 205, 206, 209, 210, 211, 212, 214, 238, 239, 240, 241], "nextcloud33": 234, "nextcloud_base_url": [50, 51, 52, 53, 54, 56, 57, 58, 59], "nextcloud_build_vari": 82, "nextcloud_myapp_metr": 120, "nextcloud_url": [150, 165, 170], "nextcloudcredentialsfactori": 70, "nextcloudtest": 147, "nextid": 136, "nextlcoud": 231, "nf": 152, "nfiv0cvgquzbx": 10, "nginx": 204, "nice": 44, "nig": 10, "night": [8, 14, 122], "nightli": [15, 18], "nikic": 227, "ninja": 82, "njce9invp368xv0btrobrqesnsgoggl5ceavr0c9bg": 10, "njkkfzyemeuqfagmbaaewdqyjkozihvcnaqefbqadgyeavf": 10, "nkx5snu3fs45mscdb61xbyjbslfgr4qi6mcocippw4sur28eaexvvgpsvqujylgp": 10, "nndezmtcxmfoxdte2mtaxndezmtcxmfowezerma8ga1ueawwiy29udgfjdhmwgz8w": 10, "no_prefer": 25, "noadminrequir": [20, 43, 49, 190, 231], "nobodi": [10, 122, 185], "nocsrfrequir": [20, 131, 209, 231], "node": [2, 10, 31, 39, 61, 73, 104, 107, 118, 122, 148, 190, 228, 229, 231, 233, 234, 237, 241], "node_ev": 169, "node_modul": 190, "nodeaddedtofavorit": 229, "nodecopiedev": 169, "nodecreatedev": 169, "nodedeletedev": 169, "nodeinfo": 222, "nodej": [239, 243], "noderemovedfromfavorit": 229, "noderenamedev": 169, "nodetouchedev": 169, "nodewrittenev": 169, "noexpirationd": 231, "non": [1, 8, 15, 42, 44, 45, 48, 61, 76, 90, 115, 130, 131, 155, 190, 192, 199, 211, 213, 215, 223, 228, 232], "nonamespaceschemaloc": [5, 108, 130], "none": [15, 20, 40, 61, 92, 175, 184, 185, 192, 243], "nonessenti": 77, "nonsgml": 107, "noop": [221, 222], "noquotesneed": 186, "nor": [0, 37, 193, 204], "norespons": 135, "normal": [15, 20, 29, 42, 48, 49, 67, 68, 89, 90, 97, 104, 105, 128, 130, 140, 194, 209, 233], "notabl": 221, "notat": [21, 190, 194, 215], "note": [0, 11, 14, 17, 20, 22, 29, 34, 36, 37, 38, 40, 44, 49, 52, 60, 71, 78, 104, 107, 113, 116, 129, 131, 140, 145, 176, 190, 192, 201, 204, 206, 211, 222, 227, 233, 239, 243], "notebook": 190, "notecontrol": 190, "notemapp": 190, "notempti": 192, "notes_": 34, "notesadmin": 34, "notessettingscontrol": 34, "notessubadmin": 34, "notestutori": 34, "notfounderror": 49, "notfoundexcept": [17, 20, 22, 38, 41, 49], "noth": [76, 107, 220], "notic": [29, 40, 48, 51, 92, 185, 239], "notif": [0, 15, 25, 45, 69, 81, 86, 96, 113, 169, 172, 176, 183, 227, 230, 231, 232, 233, 234, 235], "notifi": [0, 5, 17, 22, 96, 103, 115, 137, 140, 141, 142, 231, 233], "notificationmanag": 232, "notion": 107, "notnul": [37, 40, 136], "notpermittedexcept": 38, "notwofactorrequir": 20, "noun": [42, 81], "novel": 150, "now": [7, 8, 15, 16, 18, 20, 21, 25, 37, 43, 44, 49, 50, 63, 82, 96, 98, 106, 107, 108, 116, 122, 127, 129, 137, 140, 142, 143, 156, 165, 185, 189, 196, 202, 204, 209, 210, 211, 213, 215, 217, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 234, 235], "nowadai": 61, "npm": [16, 86, 100, 113, 125, 126, 149, 241], "npmj": [219, 220, 221, 229], "nr": 204, "nresult": [66, 104], "nrikhcly3at3glks2791bc": 10, "ns_caldav": 107, "nsi": 82, "null": [1, 19, 21, 22, 25, 37, 38, 49, 50, 54, 57, 58, 62, 69, 73, 90, 92, 93, 96, 101, 106, 107, 108, 110, 116, 121, 123, 124, 125, 126, 129, 132, 134, 137, 140, 141, 142, 143, 145, 146, 147, 148, 171, 181, 186, 187, 215, 220, 223, 224, 228, 229, 231, 232, 240], "nullabl": [17, 21, 22, 223, 224, 228], "num": 186, "number": [3, 5, 16, 20, 21, 36, 40, 42, 53, 56, 61, 63, 69, 72, 76, 77, 82, 97, 99, 107, 113, 114, 122, 124, 125, 129, 130, 132, 140, 141, 153, 162, 168, 169, 178, 179, 185, 186, 190, 199, 204, 206, 222, 229, 232, 234, 240, 243], "numberofimag": [56, 140, 141], "numer": [29, 61], "nvidia": [151, 159], "nvm": 239, "nvmrc": 239, "nvo4pzoto": 10, "nwdmgidb7iahf0f": 10, "o": [8, 20, 21, 82, 152, 189, 192], "oasi": 43, "oauth2": 70, "obei": 20, "obfusc": [29, 122], "obfuscateparamet": 29, "obj": [70, 186], "object": [0, 20, 21, 22, 27, 30, 31, 37, 38, 42, 44, 49, 56, 70, 87, 88, 92, 94, 96, 99, 104, 108, 109, 110, 113, 116, 121, 126, 129, 131, 132, 135, 136, 137, 140, 141, 142, 147, 168, 170, 174, 177, 179, 190, 213, 219, 229, 231, 232, 233, 234, 236, 241], "object_id": [69, 174], "object_nam": 69, "object_typ": 69, "objectid": 64, "objectstor": [192, 215], "objectstorag": 237, "objecttyp": 64, "obscur": 76, "obsolet": [115, 221, 222], "obtain": [29, 46, 67, 68, 70, 75, 97, 104, 116, 119, 129, 133, 137, 140, 141, 142, 189], "obviou": [2, 81, 122, 188], "oc": [1, 22, 25, 28, 38, 43, 44, 61, 62, 63, 64, 66, 69, 74, 75, 86, 87, 95, 96, 101, 104, 113, 116, 121, 125, 129, 132, 133, 138, 140, 141, 142, 150, 153, 154, 165, 166, 168, 169, 170, 171, 172, 175, 177, 179, 181, 183, 192, 201, 213, 216, 218, 219, 220, 221, 223, 224, 227, 228, 229, 230, 231, 232, 233, 234, 235, 240, 243], "oc_": [37, 215, 231], "oc_api": 232, "oc_app": [221, 228, 229, 232, 233], "oc_app_": 233, "oc_appconfig": 218, "oc_appswebroot": 218, "oc_autotest": 243, "oc_cap": 218, "oc_config": 218, "oc_current_us": 218, "oc_debug": 218, "oc_default": 229, "oc_eventsourc": 231, "oc_fil": 232, "oc_group_backend": 215, "oc_help": [233, 234], "oc_imag": 232, "oc_isadmin": 218, "oc_job": 234, "oc_mount": 233, "oc_preview": 234, "oc_properti": 107, "oc_requesttoken": 218, "oc_respons": [215, 234], "oc_shar": 230, "oc_share_extern": 234, "oc_templ": [209, 233], "oc_them": 215, "oc_us": [0, 209, 221, 233], "oc_util": [233, 234, 235], "oc_webroot": 218, "oca": [0, 1, 2, 5, 6, 18, 19, 20, 21, 25, 27, 29, 30, 31, 33, 34, 35, 36, 37, 41, 49, 69, 87, 89, 90, 92, 94, 96, 99, 101, 104, 105, 106, 107, 108, 110, 116, 119, 120, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 144, 145, 146, 147, 148, 154, 186, 190, 209, 215, 219, 221, 224, 227, 229, 231, 232, 233, 234, 243], "occ": [4, 5, 10, 15, 17, 22, 33, 40, 42, 48, 98, 102, 113, 125, 130, 135, 136, 144, 149, 153, 154, 156, 165, 172, 183, 189, 192, 201, 215, 222, 223, 231], "occ_command": 175, "occ_command_nam": 175, "occasion": [90, 122, 144, 204], "occur": [5, 20, 22, 49, 81, 97, 105, 156, 161, 166, 173, 209, 228], "occurr": [29, 49], "ocdialog": 218, "oci": [37, 243], "ocm": [61, 233], "ocp": [0, 1, 2, 3, 6, 18, 19, 20, 21, 25, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 46, 49, 64, 69, 73, 85, 87, 88, 90, 92, 93, 94, 95, 96, 97, 99, 101, 103, 104, 105, 106, 107, 108, 110, 112, 113, 116, 120, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 176, 190, 209, 210, 211, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238, 240], "ocpactivityifilt": 5, "ocpactivityiprovid": 5, "ocpactivityiset": 5, "ocpcollaborationcollaboratorsisearchplugin": 5, "ocpcommentsicommentsmanag": 64, "ocpconfiglexiconilexicon": 92, "ocpeventdispatcherev": [17, 22], "ocphintexcept": [17, 22], "ocpserv": 21, "ocpsettingsisect": 5, "ocpsettingsiset": 5, "ocpshar": 5, "ocptaskid": 87, "ocr": 140, "ocsbadrequestexcept": [49, 240], "ocscontrol": [20, 33, 49, 131, 190, 240], "ocsexcept": 240, "ocsforbiddenexcept": 240, "ocshar": 70, "ocsnotfoundexcept": 240, "off": [20, 76, 122, 190, 209, 226], "offer": [13, 18, 19, 27, 30, 49, 71, 73, 76, 79, 94, 101, 104, 106, 108, 116, 122, 125, 131, 132, 137, 140, 141, 142, 150, 185, 204, 209], "offic": [5, 17, 22, 45, 52, 61, 75, 88, 113, 227], "officedocu": 43, "offici": [10, 14, 71, 82, 107, 117, 151, 222, 229], "offlin": [54, 60, 115], "offset": [37, 54, 64, 69, 132, 229, 232], "often": [6, 18, 25, 35, 42, 49, 62, 76, 77, 80, 90, 118, 122, 125, 133, 140, 144, 179, 186, 188, 204, 209, 231, 240], "og": 31, "ogp": 31, "oidc": [46, 61, 88, 113], "ok": [43, 44, 46, 48, 50, 51, 54, 56, 57, 58, 59, 69, 71, 76, 81, 96, 101, 104, 129, 166, 168, 177, 182, 200, 240], "okai": [25, 202, 226], "old": [0, 3, 5, 10, 18, 40, 44, 45, 73, 96, 115, 152, 221, 222, 223, 229, 234, 235, 236], "older": [20, 34, 49, 69, 82, 131, 185, 188, 190, 210, 222, 226, 229], "oldest": 204, "omit": [1, 20, 29, 37, 46, 76, 81, 101, 106, 232], "onc": [0, 5, 8, 18, 20, 21, 22, 25, 33, 38, 40, 41, 44, 48, 60, 63, 72, 76, 85, 89, 90, 93, 98, 101, 105, 107, 108, 118, 121, 122, 129, 130, 131, 140, 151, 185, 188, 190, 204, 214, 221, 232, 233, 238, 239, 240], "onclick": 87, "oncreat": 70, "ondatatransferprogresslisten": 70, "one": [3, 5, 7, 8, 10, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 33, 34, 37, 40, 42, 44, 48, 49, 52, 54, 61, 62, 70, 71, 76, 79, 81, 82, 83, 85, 89, 90, 93, 94, 97, 99, 101, 104, 105, 108, 110, 115, 116, 118, 119, 120, 121, 122, 129, 131, 132, 133, 134, 135, 139, 140, 141, 142, 144, 147, 148, 158, 166, 179, 180, 184, 185, 186, 187, 188, 189, 190, 198, 199, 200, 202, 204, 209, 217, 221, 222, 227, 229, 230, 231], "onelin": 16, "onelogin": 241, "ones": [16, 49, 94, 98, 101, 105, 107, 129, 200, 204, 231], "onev": 105, "ongo": [45, 121], "onli": [2, 3, 5, 8, 10, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 29, 30, 33, 34, 35, 36, 37, 40, 42, 43, 44, 46, 48, 49, 50, 52, 56, 57, 58, 60, 61, 62, 63, 66, 69, 72, 76, 79, 81, 82, 85, 87, 89, 90, 93, 96, 97, 99, 101, 104, 105, 106, 115, 121, 122, 125, 128, 130, 131, 132, 134, 135, 137, 140, 141, 142, 144, 148, 152, 154, 158, 161, 165, 167, 169, 170, 171, 179, 181, 182, 185, 188, 189, 190, 193, 194, 199, 200, 204, 209, 213, 215, 218, 222, 223, 226, 227, 228, 229, 231, 232, 233, 234, 238, 239, 243], "onlin": [5, 54, 115, 192], "only_full_group_bi": 37, "onlyoffic": [13, 241], "onlyofficedock": 192, "onremoteoperationfinish": 70, "onremoteoperationlisten": 70, "onto": 37, "ontransferprogress": 70, "onward": 131, "oo": 192, "oop": 81, "op": [94, 101], "open": [8, 13, 15, 20, 21, 47, 61, 72, 75, 76, 82, 107, 113, 114, 122, 124, 128, 129, 156, 167, 171, 185, 188, 190, 192, 198, 199, 200, 204, 209, 215, 233, 234, 240, 243], "open_basedir": 243, "openai": 140, "openapi": [45, 47, 55, 75, 231, 233], "openassistanttask": 87, "openconflictpick": [230, 231], "opendocu": 43, "opengraph": [31, 129], "opengraphobject": 129, "openid": [88, 113], "openmetr": [120, 234], "openpgp": 152, "openssl": [10, 62, 82, 192, 242], "openstreetmap": 129, "opensus": 82, "openxmlformat": 43, "oper": [19, 20, 25, 29, 37, 38, 40, 49, 65, 66, 70, 75, 76, 79, 90, 107, 108, 111, 113, 122, 128, 133, 152, 166, 188, 228], "oppos": 42, "opposit": 235, "opt": [25, 82, 96, 132, 226], "optim": [20, 25, 38, 62, 89, 107, 122, 142], "optimist": [222, 229], "option": [0, 4, 5, 10, 13, 16, 20, 25, 26, 28, 29, 33, 35, 37, 40, 42, 43, 45, 46, 48, 51, 56, 61, 76, 79, 82, 86, 88, 89, 90, 92, 96, 97, 99, 100, 101, 104, 105, 106, 108, 110, 113, 129, 136, 139, 140, 141, 150, 151, 153, 159, 160, 166, 169, 170, 174, 175, 179, 180, 185, 189, 192, 193, 194, 198, 199, 200, 209, 213, 215, 226, 229, 231, 233, 234, 236, 242], "option_nam": 175, "optionalmimetyp": 101, "oracl": [37, 223, 243], "orchestr": 150, "order": [3, 5, 6, 17, 18, 20, 22, 30, 32, 34, 35, 42, 44, 62, 63, 66, 81, 82, 95, 96, 97, 99, 104, 107, 115, 118, 124, 126, 129, 130, 131, 132, 134, 144, 153, 169, 171, 185, 190, 199, 202, 204, 211, 223, 234], "order_in_file_actions_menu": 171, "orderbi": [66, 104], "org": [3, 5, 61, 64, 66, 67, 73, 95, 96, 98, 104, 108, 129, 130, 136, 152, 204, 229, 234, 243], "organ": [5, 8, 11, 15, 49, 76, 106, 199, 203], "organis": [92, 124, 190, 199], "organiz": 42, "orient": 43, "origin": [54, 56, 57, 61, 63, 67, 87, 129, 140, 141, 142, 149, 175, 188, 189, 192, 204, 209, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228], "origin_languag": 140, "original_languag": 129, "original_titl": 129, "orx": 231, "oscar": 142, "oscarwildetasktyp": 142, "osslsigncod": 82, "other": [0, 3, 5, 10, 12, 13, 14, 15, 16, 17, 20, 21, 22, 25, 26, 29, 30, 33, 35, 37, 49, 50, 61, 69, 76, 77, 80, 81, 82, 87, 89, 90, 94, 95, 96, 97, 98, 101, 105, 106, 107, 110, 112, 115, 122, 126, 128, 129, 130, 131, 132, 134, 135, 136, 139, 140, 144, 146, 147, 150, 151, 152, 153, 154, 155, 159, 162, 165, 166, 172, 183, 185, 186, 188, 190, 194, 202, 204, 208, 209, 223, 226, 230, 231, 232, 236], "other_app": 29, "other_t": 40, "other_templ": 26, "otherclass": [21, 89], "otherwis": [10, 14, 20, 42, 46, 51, 56, 63, 76, 77, 90, 94, 101, 107, 132, 134, 140, 141, 142, 143, 194, 209, 231, 232, 233, 234], "our": [5, 8, 10, 14, 18, 34, 49, 71, 79, 95, 104, 107, 110, 122, 126, 154, 156, 158, 165, 193, 202, 203, 204, 205, 207, 209, 211, 215, 232, 233, 240], "out": [10, 13, 17, 18, 20, 21, 22, 25, 29, 37, 42, 45, 46, 56, 61, 75, 76, 79, 81, 82, 88, 96, 113, 115, 116, 122, 132, 144, 145, 146, 150, 154, 156, 166, 185, 192, 199, 204, 206, 210, 211, 223, 226, 227], "outbound": 152, "outbox": 192, "outer": 131, "outgo": 61, "outlin": [8, 76, 77], "outofoffic": 50, "outofofficechangedev": 121, "outofofficedeletedev": 121, "outofofficeendedev": 121, "outofofficescheduledev": 121, "outofofficestartedev": 121, "output": [1, 15, 20, 21, 29, 30, 40, 42, 49, 57, 64, 87, 97, 98, 115, 116, 118, 122, 123, 131, 136, 141, 142, 145, 151, 186, 190, 209, 213, 231, 233, 234, 243], "outputinterfac": [1, 145], "outsid": [21, 49, 52, 53, 54, 59, 129, 133, 150, 188, 190, 193, 199, 231], "over": [14, 20, 29, 32, 46, 48, 52, 53, 54, 59, 61, 66, 76, 81, 98, 101, 107, 122, 129, 145, 186, 190, 196, 204, 223, 229, 230, 231, 234], "overal": [0, 16, 20, 116, 122, 131, 132, 137, 140, 141, 142, 215, 219, 231], "overcompl": 199, "overflow": [145, 193], "overhead": [20, 90, 236], "overlai": [76, 96], "overlayiconurl": 96, "overload": 122, "overlook": 209, "overrid": [1, 29, 31, 37, 40, 46, 70, 120, 147, 195, 199], "overse": 12, "overtak": 209, "overview": [0, 5, 11, 20, 28, 32, 44, 45, 60, 61, 75, 91, 96, 102, 113, 114, 115, 129, 151, 153, 163, 183, 185, 188, 190, 201, 237], "overwhelm": 77, "overwrit": [8, 15, 25, 30, 41, 61, 70, 92, 128, 135, 231, 236, 243], "overwritten": [54, 61, 107, 128], "own": [8, 17, 20, 21, 22, 26, 29, 30, 37, 38, 41, 42, 44, 45, 46, 48, 52, 61, 72, 73, 76, 82, 83, 90, 96, 98, 101, 105, 107, 124, 125, 126, 129, 134, 140, 142, 148, 158, 186, 188, 190, 196, 200, 217, 218, 219, 220, 223, 225, 226, 227, 230, 231, 234], "owncloud": [61, 64, 66, 70, 104, 202, 243], "owncloudcli": 70, "owncloudclientfactori": 70, "owner": [8, 31, 61, 66, 104, 139, 152, 231], "ownerid": [48, 61], "ownership": [152, 231], "oxygen": 194, "p": [8, 15, 26, 42, 89, 92, 129, 134, 152, 185, 190, 192, 209], "pack": [20, 40, 107], "packag": [0, 16, 25, 42, 70, 82, 85, 86, 95, 98, 113, 118, 126, 152, 155, 186, 217, 219, 220, 221, 222, 226, 229, 231, 232, 233, 239], "pad": [61, 199, 200], "page": [3, 5, 6, 7, 10, 13, 16, 17, 21, 22, 25, 33, 42, 43, 48, 49, 53, 69, 76, 80, 82, 86, 90, 93, 98, 99, 106, 113, 115, 124, 126, 127, 129, 131, 132, 144, 161, 167, 172, 185, 188, 189, 190, 192, 194, 203, 204, 206, 209, 212, 213, 214, 215, 227, 228, 229, 232, 234, 235, 243], "page_numb": 232, "page_s": 232, "pagecontrol": [20, 21, 33, 190], "pagedprovid": 234, "pagin": [33, 54, 129, 232], "pai": 221, "pain": 204, "pair": [33, 59, 93, 116], "palett": 76, "panel": 81, "paper": 231, "paperclip": 76, "paragraph": [107, 129], "parallel": [20, 40, 82, 122, 132], "param": [20, 25, 43, 49, 64, 73, 94, 104, 107, 129, 130, 134, 137, 138, 143, 144, 170, 172, 187, 209, 227, 228, 234], "param1": 69, "param_d": 232, "param_date_immut": 232, "param_date_mut": 232, "param_datetime_immut": 232, "param_datetime_mut": 232, "param_datetime_tz_immut": 232, "param_datetime_tz_mut": 232, "param_int": 37, "param_str": 37, "param_time_immut": 232, "param_time_mut": 232, "paramet": [15, 22, 26, 28, 29, 32, 33, 34, 37, 42, 45, 46, 52, 60, 61, 70, 73, 82, 92, 96, 97, 98, 99, 101, 104, 105, 107, 110, 116, 125, 126, 128, 129, 130, 132, 134, 135, 140, 149, 153, 154, 165, 166, 169, 171, 175, 187, 192, 209, 215, 222, 229, 231, 232, 233, 234, 240], "parcel": 115, "parent": [0, 1, 18, 20, 21, 22, 25, 26, 30, 33, 35, 36, 37, 41, 49, 61, 70, 96, 99, 104, 106, 107, 110, 124, 126, 129, 131, 145, 190, 192, 193, 243], "parenthesi": 42, "parentid": 64, "pars": [20, 25, 28, 70, 101, 107, 132, 190, 227, 231, 232], "parsedrelyingpartyid": 192, "parser": [210, 227], "part": [10, 16, 20, 21, 24, 33, 34, 37, 40, 42, 48, 62, 82, 89, 93, 107, 125, 135, 138, 154, 155, 158, 162, 167, 185, 186, 190, 194, 199, 231, 232], "parti": [3, 8, 10, 14, 20, 46, 71, 89, 95, 101, 106, 123, 127, 131, 132, 151, 154, 188, 190, 233, 240], "partial": [94, 129, 131, 132], "particip": [76, 138, 205], "particular": [20, 21, 49, 61, 82, 125, 190], "particularli": 61, "partli": 236, "partnership": 13, "pascal": 227, "pascalcas": 190, "pass": [12, 18, 20, 21, 22, 26, 29, 33, 42, 46, 61, 62, 63, 69, 82, 87, 90, 95, 101, 105, 106, 107, 116, 122, 128, 129, 130, 131, 135, 137, 140, 141, 142, 146, 154, 164, 175, 180, 190, 209, 222, 228, 229, 231, 232, 234, 236], "passm": 144, "passthru": 209, "passwd": [96, 129], "password": [17, 20, 22, 29, 46, 48, 52, 61, 66, 70, 75, 76, 81, 99, 101, 128, 146, 156, 165, 179, 192, 215, 224, 231, 232, 240, 243], "passwordconfirmationrequir": [34, 115, 231], "passwordcontext": 232, "passwordupdatedev": 229, "past": [10, 20, 54, 101, 115, 121, 217, 223], "patch": [20, 33, 89, 115, 131, 188, 202], "path": [7, 10, 15, 20, 21, 29, 31, 33, 38, 46, 48, 52, 61, 62, 63, 69, 70, 73, 82, 87, 90, 95, 101, 131, 132, 134, 135, 148, 152, 154, 156, 165, 167, 171, 174, 181, 190, 192, 209, 219, 236], "path_myapp_fil": 145, "path_root": 145, "path_separ": 70, "path_to_fil": 15, "patienc": 204, "pattern": [28, 33, 40, 42, 49, 80, 90, 97, 122, 146, 190], "paul": 52, "payload": [43, 101, 153, 166, 172], "paypal": 13, "pdf": [43, 105], "pdo": [37, 242], "pdo_mysql": 15, "pdo_pgsql": 15, "pdo_sqlit": 15, "peak": 122, "pecl": 192, "peer": 12, "pem": 192, "penalti": 122, "pend": [40, 45, 54, 185, 190], "peopl": [10, 14, 15, 42, 79, 81, 122, 185, 204, 209], "per": [8, 16, 20, 36, 37, 44, 46, 49, 53, 76, 79, 81, 93, 97, 99, 101, 133, 148, 162, 184, 186, 232], "percona": 97, "perfect": 122, "perform": [0, 4, 10, 18, 32, 37, 38, 46, 61, 67, 70, 76, 96, 100, 110, 113, 119, 125, 132, 135, 145, 149, 152, 154, 160, 166, 175, 190, 196, 202, 209, 230, 233], "perhap": 204, "period": [16, 17, 20, 22, 50, 88, 96, 106, 113, 153, 161], "permalink": 129, "perman": [76, 162, 163, 192], "permiss": [45, 49, 61, 66, 76, 82, 107, 149, 152, 156, 171, 189, 202, 232, 236], "permissionerror": 49, "permissionsmask": 236, "permit": 10, "perpag": 53, "persever": 204, "persist": [37, 69, 76, 144, 156, 165], "person": [5, 10, 34, 42, 61, 69, 76, 81, 88, 107, 113, 121, 132, 134, 231], "personalsect": 134, "perspect": 223, "pfx": 82, "pgsql": [5, 37, 243], "phar": [3, 8, 154], "phase": [2, 85, 211, 223], "phish": 209, "phone": [46, 113, 114, 124, 229], "phone_numb": 37, "phonenumb": 37, "photo": [61, 80], "php": [0, 1, 2, 3, 5, 7, 8, 10, 15, 16, 18, 19, 20, 21, 22, 23, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 43, 44, 46, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 81, 86, 87, 89, 90, 92, 94, 96, 99, 100, 101, 103, 104, 106, 107, 108, 110, 112, 113, 116, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 150, 151, 153, 154, 162, 163, 164, 165, 166, 167, 169, 170, 171, 174, 175, 179, 185, 189, 191, 192, 209, 215, 216, 217, 221, 233, 237, 238, 240, 241], "php_os_famili": 234, "phpdoc": [20, 187, 215], "phpmailer": 215, "phpredi": 192, "phpstorm": [98, 149], "phpunit": [3, 41, 95], "physic": [194, 232], "pi": 204, "pick": [18, 19, 54, 76, 82, 89, 97, 101, 129, 188, 190, 204], "picker": [17, 22, 78, 101, 102, 113, 126, 235], "pictur": [19, 71, 76, 124], "pictureservic": 19, "piec": [76, 185, 190], "pill": [77, 231], "pin": [15, 197], "pineappl": 112, "ping": [43, 124, 175, 223], "pingpong": 43, "pingus": 124, "pinia": 186, "pip": 152, "pipelin": 42, "pitfal": [49, 135], "pivot": 243, "pixel": [69, 219, 231], "pizza": 112, "pkcs12": 82, "place": [1, 8, 14, 29, 32, 33, 40, 42, 49, 76, 79, 82, 89, 92, 115, 122, 129, 130, 144, 151, 163, 171, 194, 199, 202, 204, 206, 209, 229, 239], "placehold": [29, 43, 69, 78, 96, 99, 156, 179, 194], "plai": [46, 122], "plain": [26, 44, 46, 49, 66, 69, 76, 81, 87, 96, 101, 103, 107, 110, 126, 129, 131, 190, 194, 223, 232], "plan": [107, 110, 185, 235], "platform": [21, 37, 43, 77, 81, 82, 101, 140, 191, 202, 204, 211, 213, 231], "player": 46, "plbdab2ba83bb6588": 243, "pleas": [3, 8, 9, 10, 14, 17, 21, 22, 26, 36, 41, 42, 43, 44, 45, 49, 73, 82, 95, 104, 106, 107, 110, 122, 127, 135, 145, 149, 156, 159, 161, 162, 169, 185, 189, 192, 195, 196, 199, 203, 209, 219, 222, 226, 229, 231, 232, 233, 234, 235, 238, 239, 241], "plu": [44, 110, 129, 233], "plug": [30, 144, 190], "pluggabl": 132, "plugin": [3, 4, 5, 17, 22, 25, 109, 113, 114, 133, 186, 227], "plural": 167, "pm": 76, "png": [5, 26, 48, 61, 66, 69, 96, 108, 129, 132, 227], "po": [8, 42, 154, 167], "poedit": 8, "point": [0, 16, 20, 49, 76, 101, 129, 131, 137, 152, 166, 186, 190, 192, 221], "pointer": 162, "polici": [17, 22, 41, 61, 209, 229, 239], "polit": 204, "poll": [44, 140], "pollinterv": 46, "polyfil": 23, "pong": 43, "poorli": [79, 185], "pop": 70, "popen": 209, "popmus": 70, "popov": [20, 76, 197, 198, 199, 201], "popovermenu": [197, 200], "popul": [19, 84, 113], "popular": [98, 129, 229], "popup": 42, "port": [98, 133, 149, 152, 156, 158, 165, 192, 218, 230, 234], "portal": 192, "posit": [1, 8, 42, 76, 77, 122, 136, 185, 194, 200, 202, 204, 229, 234], "posselt": 5, "possess": 81, "possibl": [2, 8, 14, 16, 17, 20, 21, 22, 25, 31, 33, 36, 37, 38, 40, 41, 42, 45, 46, 50, 52, 56, 61, 70, 76, 77, 81, 82, 85, 87, 90, 93, 97, 106, 107, 110, 115, 116, 119, 122, 125, 129, 131, 132, 133, 134, 135, 136, 138, 139, 144, 145, 147, 151, 152, 160, 166, 173, 176, 187, 188, 194, 204, 209, 217, 221, 224, 227, 231, 232, 233, 236, 240], "possibli": [42, 223], "post": [3, 5, 10, 20, 33, 39, 43, 44, 46, 48, 50, 52, 54, 56, 57, 58, 59, 60, 62, 64, 70, 86, 98, 101, 113, 118, 129, 130, 131, 153, 158, 165, 166, 168, 169, 170, 171, 173, 174, 175, 177, 178, 179, 180, 181, 209, 215], "post_removefromgroup": 221, "postacceptshar": 229, "postaddus": [22, 229], "postasset": 101, "postcontrol": 33, "postcopi": 22, "postcreat": 22, "postcreateus": 22, "postdelet": [22, 229], "postfix": 33, "postgr": 122, "postgrabfocu": 101, "postgresql": [37, 217], "postldapbackendad": 221, "postlogin": 22, "postmessag": 101, "postremoveus": [22, 229], "postrenam": 22, "postscanfil": 22, "postscanfold": 22, "postschemachang": 40, "postsetpassword": [22, 229], "postshar": 229, "posttouch": 22, "postunassigneduserid": 232, "postunshar": 229, "postunsharefromself": 229, "postwrit": 22, "pot": 8, "potenti": [21, 97, 129, 150, 209, 236], "power": [8, 222, 224, 229], "powershel": 82, "pr": [64, 129, 151, 185, 188, 202, 223, 227], "practic": [20, 45, 90, 113, 114, 151, 152, 190], "practis": 206, "pre": [4, 5, 12, 15, 20, 32, 40, 52, 53, 54, 59, 87, 126, 130, 140, 184, 201], "pre_deleteus": 0, "preaddus": [22, 229], "preced": 42, "precis": [16, 136], "precondit": [56, 57, 58, 135], "preconditionnotmetexcept": [140, 141, 142], "precopi": 22, "precreat": 22, "precreateus": 22, "predefin": [43, 45, 194], "predefined_status": 54, "predelet": [22, 229], "predict": 129, "prefer": [19, 20, 29, 45, 46, 69, 71, 75, 76, 79, 81, 93, 99, 113, 114, 132, 140, 145, 149, 172, 179, 183, 184, 185, 189, 236], "preferences_ex": 171, "preferstream": [140, 213], "prefil": 101, "prefix": [1, 22, 33, 37, 40, 54, 61, 82, 90, 93, 104, 107, 122, 131, 132, 186, 190, 231], "preflight": [131, 209], "preflighted_cor": 131, "preg_match": 135, "preliminari": 121, "preload": [2, 76, 113, 114, 124, 233], "preloadcollect": [148, 233], "prelogin": 22, "premad": 20, "prepar": [20, 97, 106, 107, 152, 209, 222, 231], "preparerulematch": 105, "prepend": [25, 29, 187], "prereleas": 15, "preremoveus": [22, 229], "prerenam": 22, "prerequisit": [45, 189, 241], "present": [1, 5, 20, 32, 33, 49, 52, 61, 63, 82, 101, 107, 124, 166, 167, 185, 189, 233], "preserv": [44, 105], "preset": [26, 76], "presetpassword": [22, 229], "preshar": 229, "presumpt": 132, "pretouch": 22, "pretti": [16, 204], "preunassigneduserid": 232, "preunshar": 229, "prev": 40, "prevent": [10, 15, 16, 18, 20, 26, 33, 37, 41, 42, 49, 52, 98, 132, 135, 156, 186, 187, 190, 209, 231], "preview": [5, 20, 61, 66, 69, 76, 101, 102, 113, 132, 229, 232, 233], "previewmanag": 232, "previewrequest": 229, "previou": [10, 16, 22, 29, 40, 49, 76, 82, 132, 147, 166, 185, 186, 210, 212, 230], "previous": [16, 20, 34, 82, 140, 165, 188, 222, 228, 231, 233, 234], "previousev": 69, "previousrespons": 147, "prewrit": 22, "primari": [12, 17, 20, 22, 37, 38, 46, 76, 110, 122, 136, 184, 195, 199, 200, 233, 241], "prime": [0, 15, 204], "primit": 22, "princip": [106, 107], "principaluri": 107, "principl": [79, 107, 175, 185], "print": [1, 26, 62, 98, 101, 125, 152, 209], "print0": 95, "print_unescap": [26, 134, 209], "prior": [21, 188], "prioriti": [20, 23, 34, 76, 99, 124, 134, 179, 188], "privaci": [14, 102, 113], "privat": [1, 2, 10, 15, 18, 19, 20, 21, 22, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 49, 70, 82, 90, 92, 96, 99, 101, 103, 106, 107, 108, 110, 112, 116, 124, 126, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 145, 146, 147, 148, 162, 173, 187, 190, 232, 234], "privatekei": [10, 15], "privileg": [20, 152, 189, 208, 236], "pro": 129, "probabl": [16, 49, 107, 128], "problem": [2, 3, 10, 20, 21, 37, 42, 49, 76, 79, 82, 97, 115, 122, 125, 150, 161, 189, 204, 209, 222, 223, 243], "problemat": [3, 63, 162], "proc_open": 209, "proce": [44, 60, 122], "procedur": [44, 95, 208], "proceed": 76, "process": [4, 10, 11, 12, 14, 17, 19, 20, 22, 29, 32, 40, 42, 47, 49, 55, 56, 57, 71, 82, 84, 85, 87, 89, 92, 95, 104, 107, 108, 113, 115, 116, 118, 122, 132, 137, 141, 150, 151, 152, 153, 154, 165, 171, 190, 191, 201, 204, 206, 228, 231, 233, 234], "processcalendardata": 106, "processingexcept": 140, "processor": 184, "prod": 118, "prodid": 107, "produc": [3, 29, 49, 87, 101, 126, 140, 196], "product": [3, 12, 16, 42, 95, 118, 125, 135, 189, 190, 204, 205, 228, 239], "productnam": [42, 192], "profil": [42, 76, 81, 82, 88, 100, 113, 156, 231], "profilesect": 234, "program": [0, 10, 44, 82, 125, 150, 151, 154, 167, 209], "programfil": 82, "programm": 209, "programmat": [20, 88, 106, 113, 115], "progress": [42, 62, 70, 118, 130, 140, 153, 165, 166, 172, 185, 197, 213, 235], "progressbar": 130, "progressr": 70, "project": [5, 10, 14, 16, 17, 22, 71, 111, 113, 118, 150, 154, 185], "projectfil": [3, 95], "prolif": 14, "prologu": [71, 201], "prometheu": [120, 129], "promin": 76, "promis": [14, 73, 87, 126, 129], "promot": [20, 21], "prompt": [1, 55, 57, 82, 141, 142, 231], "promptli": 204, "prone": 49, "pronoun": 78, "proof": 21, "proofread": 140, "prop": [61, 66, 104, 126, 129, 148, 186], "propag": [122, 140, 144, 169], "proper": [10, 14, 20, 42, 44, 81, 140, 161, 194, 209, 233, 234, 240], "properli": [10, 25, 41, 97, 128, 129, 217, 240], "properti": [2, 20, 21, 31, 37, 64, 65, 67, 104, 108, 124, 126, 129, 131, 132, 136, 146, 148, 190, 193, 194, 209, 228, 232, 233, 234], "property_birthd": 231, "property_displayname_legaci": 228, "propertytocolumn": 37, "propertyupd": [61, 104], "propfind": [2, 61, 64, 67, 68, 102, 113, 122, 148, 233], "propos": 76, "proppatch": [61, 64, 102, 107, 113], "propsdata": [96, 129], "propstat": 104, "prose": 142, "protect": [0, 1, 8, 18, 37, 41, 52, 82, 90, 107, 126, 128, 130, 153, 161, 164, 178, 190, 192, 209, 227, 228, 243], "protocol": [44, 62, 98, 110, 153, 165, 192, 209, 218, 234], "prototyp": 154, "provid": [0, 1, 5, 10, 13, 14, 15, 17, 18, 20, 21, 22, 26, 27, 29, 31, 32, 34, 35, 38, 39, 43, 44, 45, 46, 48, 49, 50, 52, 56, 57, 58, 60, 61, 63, 66, 67, 71, 75, 76, 77, 79, 81, 82, 84, 86, 88, 89, 90, 92, 93, 98, 101, 102, 108, 109, 111, 113, 115, 121, 123, 124, 125, 128, 131, 133, 135, 143, 145, 149, 150, 152, 154, 158, 162, 164, 165, 167, 169, 171, 175, 179, 180, 181, 185, 186, 187, 190, 192, 194, 195, 198, 199, 209, 210, 213, 215, 222, 224, 225, 226, 227, 228, 230, 231, 232, 233, 234, 236, 240, 243], "provideinitialst": [25, 31, 96, 190], "providelazyinitialst": 25, "provider1": 110, "provider_id": [48, 129], "providerclass": 94, "providerid": [48, 94, 129], "provis": [218, 228], "provisioning_api": 59, "proxi": [44, 107, 112, 151, 152, 154, 161, 162, 163, 165, 178, 181], "proxy_host": 156, "proxy_password": 156, "proxy_port": 156, "proxy_us": 156, "prune": 189, "ps1": 82, "psalm": [3, 49, 85, 95, 242], "psr": [3, 21, 29, 89, 100, 113, 130, 143, 232], "psr3": [223, 230], "pt1h": 106, "public": [0, 1, 2, 5, 6, 10, 14, 15, 16, 17, 18, 19, 21, 25, 28, 29, 30, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 46, 49, 52, 69, 70, 72, 86, 90, 92, 94, 96, 97, 99, 101, 103, 104, 106, 107, 108, 110, 112, 113, 116, 120, 121, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 178, 185, 187, 190, 192, 194, 201, 215, 222, 226, 227, 229, 231, 238, 243], "public_link": 70, "publicapi": 128, "publicapicontrol": 128, "publicdisplai": 128, "publicfunct": 170, "publicli": [157, 217], "publicpag": [20, 49, 128, 231], "publicshareauth": [6, 221], "publicsharecontrol": 128, "publictemplaterespons": [20, 31], "publicupload": 52, "publish": [7, 14, 15, 16, 20, 22, 75, 107, 131, 138, 155, 188, 201, 209, 214, 231], "publishact": 216, "publishcalendar": 221, "pull": [10, 12, 16, 64, 85, 95, 96, 97, 150, 151, 165, 167, 183, 185, 188, 189, 194, 202, 206, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 233, 240], "pure": [20, 21], "purpos": [6, 14, 22, 98, 131, 137, 140, 141, 142, 165, 198, 221], "push": [8, 10, 15, 16, 46, 151, 154, 166, 188, 202], "put": [3, 15, 20, 33, 42, 46, 49, 52, 54, 61, 63, 76, 79, 86, 95, 107, 113, 116, 122, 129, 131, 132, 137, 140, 141, 142, 152, 153, 165, 166, 170, 178, 185, 190, 199, 200], "putcont": [35, 38], "pwd": [64, 82, 189], "pwd1": 192, "pwd2": 192, "py": [152, 154], "python": [28, 82, 151, 152, 154, 167, 179, 190], "python3": 152, "qa": 185, "qb": [37, 97, 104, 234], "qbmapper": [37, 190, 215, 227, 231], "qsyqflqhouhdpq0w2aocwqgdaei": 129, "qt": 82, "qt5": 82, "qt5keychain": 82, "qt6": 82, "qt_path": 82, "qtkeychain": 82, "qtkeychain_librari": 82, "qualifi": [69, 106, 188, 220], "qualiti": [85, 202], "queri": [0, 2, 20, 21, 22, 25, 38, 39, 40, 42, 46, 47, 61, 66, 73, 76, 88, 90, 94, 97, 100, 102, 106, 113, 122, 129, 132, 148, 153, 166, 171, 184, 190, 204, 209, 210, 220, 221, 222, 224, 227, 228, 229, 230, 231, 232, 233, 234], "querybuild": [37, 104, 211, 213, 222, 224, 231, 232], "querylogg": 232, "querystatusforus": 138, "question": [1, 5, 14, 21, 37, 42, 43, 94, 150, 161, 163, 188, 201, 204, 206, 233], "questionhelp": 1, "queue": 18, "queuedjob": [18, 230], "quick": [20, 44, 46, 48, 60, 65, 79, 194, 200], "quickli": [2, 25, 115, 132, 204], "quiet": 93, "quit": [8, 33, 56, 57, 58, 98, 107, 190, 215], "quot": [13, 42, 61, 107, 185], "quota": [46, 61, 63], "qux": [99, 179], "r": [8, 48, 61, 62, 70, 82, 152, 186, 189, 243], "r0wi": [15, 152], "race": [3, 20, 129, 204, 229], "rach": 16, "radio": [46, 134, 179, 197, 200], "radio1": 200, "radiu": [77, 194], "rais": [81, 101, 221], "ran": [40, 82, 87, 135], "rand": 62, "random": [21, 63, 136, 204], "randomli": 165, "rang": [5, 96, 106, 140, 210], "rare": [16, 21, 76, 151, 222], "raspberri": 204, "rate": [11, 56, 57, 58, 113, 114, 153, 161, 164, 228], "ratelimit": [133, 228], "ratelimitedforal": 20, "rather": [18, 21, 22, 34, 37, 49, 81, 96, 101, 107, 129, 134, 140, 185, 190, 233], "raw": [56, 61, 77, 82, 106, 107, 152, 156, 190], "rc": 16, "re": [14, 17, 20, 22, 37, 42, 45, 79, 82, 97, 101, 104, 115, 156, 161, 178, 188, 198, 199, 200, 204, 231], "reach": [0, 13, 16, 19, 20, 69, 92, 133, 188, 206], "reachabl": [20, 49, 152, 161, 209], "react": [5, 22, 29, 115, 122, 129, 131, 147, 234], "reaction": [76, 79], "read": [1, 2, 15, 21, 35, 36, 37, 41, 42, 49, 52, 61, 64, 75, 76, 79, 93, 98, 101, 102, 108, 113, 115, 148, 152, 180, 185, 190, 202, 203, 204, 209, 228, 231, 236], "read_timeout": 192, "readabl": [8, 21, 49, 61, 90, 101, 106, 140, 152, 206], "reader": [5, 206], "readi": [0, 12, 16, 56, 57, 58, 101, 115, 151, 166, 185, 190, 221], "readm": [5, 12, 96, 186], "readmark": 64, "readonli": [134, 136], "readoper": 70, "readremotefileoper": 70, "readremotefolderoper": 70, "real": [44, 49, 64, 76, 107, 135, 190, 192], "realli": [21, 40, 96, 122, 125, 188, 204, 209, 218, 234], "reason": [8, 12, 29, 48, 82, 122, 131, 140, 141, 142, 152, 196, 204, 205, 206, 231, 232, 233], "reason_lock_wait_timeout": 231, "reason_serv": 231, "reason_unique_constraint_viol": 234, "rebas": [185, 189], "reboot": 156, "rebuild": [118, 239], "receiv": [0, 12, 13, 20, 21, 22, 52, 60, 61, 64, 69, 70, 101, 107, 117, 132, 140, 152, 153, 156, 165, 166, 188, 190, 222, 223], "recent": [8, 51, 76, 82, 129, 204, 222], "recipi": [17, 22, 52, 61, 76, 96, 192], "recogn": [22, 69, 76], "recognis": 29, "recommend": [0, 3, 10, 12, 16, 17, 22, 28, 29, 37, 38, 40, 45, 63, 75, 82, 95, 97, 110, 115, 118, 122, 127, 129, 131, 133, 137, 140, 149, 151, 152, 154, 158, 160, 184, 186, 189, 194, 199, 210, 211, 221, 222, 223, 227, 228, 229, 231, 232, 239], "reconsid": 131, "record": [44, 234], "recov": 146, "recover": 76, "recoveri": 66, "recoverpassword": 22, "recoverypassword": 146, "recreat": 204, "rector": [211, 234], "recurs": 61, "recursivearraysearch": [216, 233, 235], "recv": 152, "red": [134, 184], "redi": [19, 125, 241], "redirect": [33, 44, 151, 172, 199, 208, 218, 234], "redirect_handl": 171, "redirectrespons": [20, 33, 49], "redirecttodefaultpag": 235, "redirecturl": 209, "redisclust": 192, "reduc": [21, 38, 85, 90, 97, 115, 122, 152, 233], "redund": 148, "ref": [15, 151, 190, 227], "refactor": [90, 97, 231], "refer": [1, 3, 10, 20, 21, 33, 42, 72, 77, 81, 82, 86, 94, 95, 101, 102, 110, 113, 114, 131, 132, 140, 149, 151, 152, 159, 162, 188, 190, 206, 210, 231, 234], "referenc": 185, "reference_provider_id": 129, "referencedclass": 95, "referencetext": 129, "reflec": 218, "reflect": [21, 22, 33], "reflector": 30, "refman": 97, "reformul": 140, "refresh": [17, 22, 96, 98, 101, 104, 119, 190], "refreshmetadata": [104, 229], "refreshoper": 70, "refus": [10, 40], "regard": [20, 150], "regardless": [20, 37, 129], "regener": 20, "regex": [33, 34, 178, 218], "region": [113, 114, 192, 229], "regist": [0, 3, 4, 5, 6, 15, 17, 20, 21, 22, 25, 28, 29, 30, 31, 34, 38, 43, 44, 46, 49, 61, 62, 63, 75, 86, 88, 89, 94, 102, 104, 105, 106, 109, 111, 113, 114, 115, 116, 125, 132, 133, 137, 138, 140, 141, 142, 147, 148, 149, 153, 154, 156, 159, 165, 166, 172, 190, 210, 219, 221, 224, 226, 227, 229, 230, 231, 232, 234], "registeralternativelogin": 221, "registeranonrequest": 133, "registerbackend": [106, 233], "registercalendar": 224, "registercalendarprovid": 107, "registercap": [43, 49], "registercheck": 229, "registerchecksev": 229, "registercollaborationresourc": 126, "registerconfiglexicon": 92, "registercontentprovid": 94, "registercustomfoo": 0, "registercustompickerel": 129, "registerdashboardwidget": [96, 230], "registerdeclarativeset": 99, "registerdeclarativesettingslisten": 99, "registerdirecteditorev": 101, "registerent": 229, "registerentitiesev": 229, "registereventlisten": [0, 2, 25, 29, 94, 99, 101, 104, 129, 137, 140, 141, 142], "registerfileact": 229, "registerfoo": 0, "registerjob": 215, "registerlazylockprovid": 231, "registerlockprovid": 231, "registerlogin": 221, "registermailprovid": 110, "registermiddlewar": 30, "registermyeditorlisten": 101, "registernotifi": 235, "registernotifierservic": 0, "registeroper": [105, 229], "registeroperationsev": [105, 229], "registerparamet": 21, "registerprofilelinkact": 124, "registerprovid": [38, 210], "registerpublicsharetemplateprovid": 31, "registerrefer": 129, "registerresourceprovid": [126, 219, 235], "registerrespond": 20, "registerrout": 233, "registerschema": 99, "registersearchprovid": 132, "registersect": 234, "registerservic": [0, 21, 36, 41, 221], "registerservicealia": 21, "registersetupcheck": 135, "registersidebaract": 234, "registerspeechtotextprovid": 137, "registertaskprocessingprovid": [140, 231], "registertaskprocessingtasktyp": [140, 231], "registertextprocessingprovid": 142, "registertexttoimageprovid": 141, "registertranslationprovid": 116, "registertyp": 126, "registerusermigr": 145, "registeruserrequest": 133, "registerwellknownhandl": 147, "registerwidget": 129, "registerwidgetev": 230, "registr": [0, 22, 28, 41, 84, 86, 90, 96, 102, 106, 110, 113, 129, 134, 135, 149, 154, 183, 210, 234], "registri": [144, 151, 154, 162, 163, 165, 166], "registryev": 229, "regress": [185, 231], "regular": [20, 43, 46, 61, 101, 151, 154, 161, 175, 189, 190], "regularli": [79, 97, 185], "reject": [49, 61, 63, 107, 126, 129, 140, 164], "rejectunauthor": 192, "rel": [0, 38, 42, 43, 46, 66, 69, 107, 131, 132, 134, 169, 170, 171, 181, 185, 209, 219, 231, 235, 243], "relat": [0, 17, 20, 22, 36, 37, 45, 49, 62, 64, 69, 70, 86, 90, 99, 104, 113, 129, 134, 135, 139, 166, 185, 188, 194, 203, 204, 227, 231, 232, 233, 234, 235], "relationship": 131, "relative_modified_d": [217, 220], "relativedued": 42, "relativetim": 42, "relaunch": 243, "relax": [20, 122], "releas": [0, 5, 10, 11, 12, 14, 22, 47, 72, 82, 85, 89, 96, 115, 118, 122, 144, 149, 152, 165, 167, 185, 188, 190, 201, 204, 206, 210, 211, 221, 222, 223, 225, 227, 229, 231, 232, 234, 238, 240], "release_d": 129, "relev": [38, 49, 55, 61, 69, 89, 95, 107, 131, 137, 140, 141, 142, 147, 206, 215, 232], "reli": [0, 20, 101, 164, 190, 206, 230, 234, 235], "reliabl": [18, 49, 82, 150], "reliev": 204, "reload": [90, 93, 96, 101, 190, 218, 228, 234, 243], "relwithdebinfo": 82, "rem": 219, "remain": [20, 32, 41, 49, 61, 76, 107, 139, 152, 190, 221, 222, 243], "rememb": [17, 19, 22], "remind": [42, 61, 76, 229], "remnant": 229, "remot": [5, 46, 52, 61, 62, 63, 64, 66, 67, 68, 70, 75, 98, 104, 113, 114, 122, 151, 158, 165, 188, 189, 201, 232, 236], "remote_en": 98, "remote_fold": 62, "remote_handl": 98, "remote_host": 98, "remote_port": 98, "remote_shar": 52, "remotefil": 70, "remotelyedit": 104, "remoteoper": 70, "remoteoperationresult": 70, "remotepath": 70, "remov": [10, 14, 15, 16, 17, 18, 20, 22, 40, 44, 46, 48, 52, 60, 76, 81, 94, 104, 115, 126, 127, 129, 144, 146, 152, 154, 166, 168, 172, 186, 194, 199, 200, 204, 206, 209, 211, 212, 222, 238, 240], "removeclass": 199, "removedbyid": 234, "removefavorit": 229, "removejob": 18, "removelisten": [22, 220], "removeoper": 70, "removeremotefileoper": 70, "removeremoteshareoper": 70, "renam": [23, 40, 52, 61, 71, 76, 101, 199, 200, 230, 231], "rend": 144, "render": [5, 17, 22, 25, 30, 43, 69, 76, 87, 101, 126, 171, 179, 181, 190, 209, 231, 232], "rendera": 20, "renderpag": 31, "renderreferenceev": 129, "renderresult": 129, "reorder": 42, "reorgan": 76, "repair": [5, 113, 114], "repeat": [1, 20, 81, 107, 204], "repercuss": 14, "repetit": 33, "replac": [2, 8, 10, 30, 33, 39, 41, 42, 43, 44, 49, 50, 70, 73, 81, 82, 94, 121, 123, 127, 140, 156, 174, 189, 190, 193, 199, 209, 210, 215, 218, 220, 221, 223, 224, 225, 227, 228, 229, 231, 232, 233, 234, 235, 239], "replaceindex": 40, "replaceindiceslisten": 40, "replacementuserdisplaynam": [50, 121], "replacementuserid": [50, 121], "replacesvg": 216, "replacesvgicon": 216, "repli": [62, 101, 204, 220, 227], "replic": 122, "replica": 122, "repo": [8, 11, 72, 82, 125, 129, 152, 192, 240], "repo_token": 15, "report": [12, 43, 61, 64, 90, 93, 115, 134, 135, 140, 185, 188, 203, 206, 213, 231], "reportoutput": 140, "reportprogress": 140, "repositori": [5, 10, 12, 14, 15, 16, 69, 72, 82, 85, 89, 95, 101, 110, 129, 152, 161, 162, 165, 167, 185, 187, 188, 189, 192, 203, 204, 233, 234, 242], "repository_url": 82, "repres": [38, 49, 54, 76, 82, 96, 99, 107, 121, 124, 126, 140, 142, 145, 190, 199, 231], "represent": 107, "reproduc": [12, 161], "req": [10, 192], "request": [0, 2, 8, 10, 12, 13, 14, 15, 17, 18, 22, 25, 28, 30, 33, 35, 42, 43, 44, 45, 48, 49, 50, 54, 56, 57, 58, 59, 62, 63, 64, 65, 69, 81, 85, 86, 90, 95, 96, 97, 98, 101, 102, 104, 106, 107, 113, 115, 116, 122, 126, 130, 131, 133, 137, 140, 141, 142, 143, 147, 148, 150, 151, 152, 153, 154, 159, 164, 165, 166, 167, 172, 178, 181, 185, 188, 191, 192, 199, 201, 202, 204, 206, 208, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 232, 233, 240], "requestbackgroundjob": [104, 229], "requesthead": 233, "requestopt": 129, "requesttoken": [25, 218], "requir": [1, 3, 5, 8, 10, 15, 16, 17, 18, 20, 21, 22, 26, 33, 34, 37, 38, 40, 42, 43, 44, 45, 46, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 85, 87, 89, 90, 93, 95, 96, 97, 98, 99, 101, 104, 105, 107, 110, 115, 118, 119, 124, 127, 128, 129, 130, 131, 133, 134, 135, 138, 144, 149, 151, 152, 153, 154, 156, 158, 160, 165, 169, 170, 171, 172, 174, 175, 176, 178, 181, 182, 188, 189, 190, 192, 193, 194, 195, 200, 208, 209, 213, 215, 217, 221, 225, 227, 229, 230, 231, 232, 234, 236, 239, 243], "require_onc": [3, 89, 209, 243], "requiremax": 5, "requiremin": 5, "reserv": [69, 76, 96, 108, 231], "reservedopt": 231, "reset": [20, 45, 79, 121, 185], "resetquerypart": 231, "reshar": 52, "resid": [23, 25, 149], "resolut": [161, 220], "resolv": [12, 20, 21, 22, 29, 33, 87, 101, 126, 134, 156, 161, 188, 217], "resolvefromconfigfil": 95, "resolvepubl": 129, "resolverefer": 129, "resolvereferencepubl": 129, "resolvereshar": 215, "resort": 21, "resourc": [18, 20, 21, 28, 35, 37, 56, 57, 58, 61, 64, 96, 104, 107, 109, 111, 113, 128, 129, 131, 132, 141, 147, 206, 209, 210, 219, 229, 231, 232, 233, 235, 243], "resource_typ": 126, "resourcebackend": 106, "resourcemanag": [106, 126], "resourceprovid": 126, "resourcetyp": [61, 66], "resourceurl": [126, 129, 132], "respect": [20, 50, 61, 81, 129, 131, 156, 194, 204, 210, 228, 232, 233], "respond": [14, 121, 133, 153, 190, 204, 223], "respons": [2, 6, 10, 12, 14, 28, 30, 31, 33, 44, 45, 46, 48, 50, 51, 54, 56, 57, 58, 59, 60, 64, 65, 67, 74, 75, 79, 96, 101, 104, 107, 112, 129, 131, 135, 147, 148, 153, 166, 171, 181, 190, 194, 199, 209, 215, 222, 227, 236, 240], "responsedefinit": 49, "rest": [5, 16, 20, 33, 74, 75, 76, 86, 107, 113, 115, 190], "restart": [98, 189, 192], "restor": [45, 61, 65, 145], "restrict": [18, 37, 40, 69, 112, 129, 133, 156, 158, 199, 225, 229, 231, 232, 234, 236], "restructur": 85, "result": [10, 19, 20, 37, 38, 42, 45, 47, 49, 51, 52, 53, 66, 67, 69, 70, 76, 81, 82, 84, 90, 94, 101, 104, 113, 122, 129, 134, 135, 141, 143, 148, 174, 188, 190, 202, 209, 213, 221, 222, 231, 232, 234, 243], "resultinto": 104, "retain": 40, "retri": [76, 228], "retriev": [20, 25, 37, 45, 47, 61, 73, 87, 102, 110, 113, 115, 117, 121, 127, 132, 173, 179, 229, 231], "retrievemetadata": [104, 229], "retro": 23, "retry_count": 90, "retryabl": 228, "return": [2, 4, 5, 17, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 36, 37, 38, 40, 41, 42, 43, 44, 46, 48, 49, 50, 52, 54, 61, 69, 85, 87, 90, 92, 93, 94, 96, 99, 101, 104, 105, 106, 108, 110, 116, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 166, 168, 170, 173, 177, 182, 186, 187, 190, 199, 213, 215, 218, 220, 221, 222, 224, 227, 228, 229, 231, 232, 233, 234, 235, 243], "returnhi": 20, "returnjson": 20, "retyp": 189, "reus": [49, 185, 215, 232], "reusabl": 184, "reveal": 76, "revenu": 129, "revers": [30, 110, 152, 158], "revert": [14, 54, 93, 138], "revertuserstatu": 138, "review": [12, 15, 122, 129, 153, 185, 188, 204, 209, 223], "revis": [72, 188, 233], "revisit": 107, "revok": [10, 44, 81], "revokeshar": 18, "revolution": 150, "rework": [188, 230], "rewritten": 73, "rf": 152, "rfc": [44, 61, 107, 233], "rfc4918": 65, "rfc5323": 66, "rfc6415": 147, "rgb": [76, 194, 198, 233], "rgba": 194, "rgdnvw": 61, "rich": [61, 76, 96, 129, 135, 174, 232], "rich_messag": 174, "rich_message_param": 174, "rich_subject": 174, "rich_subject_param": 174, "richdocu": [43, 101], "richobject": 129, "richobjectstr": [69, 135, 232], "richobjecttyp": 129, "richparamet": 129, "richtopars": 232, "right": [5, 8, 18, 20, 22, 25, 42, 76, 82, 92, 94, 96, 104, 108, 122, 129, 130, 190, 193, 194, 199, 200, 202, 209, 223, 226, 229, 231, 232, 234, 243], "risk": [22, 131, 188, 190, 196, 209], "riski": [49, 76], "rm": [15, 152], "rmdirr": 233, "robert": 243, "roberto": 96, "robin": 122, "robot": 16, "roboto": 194, "robust": [21, 89], "rocm": [151, 154, 159, 165, 166], "roeland": 63, "role": [5, 12, 14, 107, 122, 124, 140], "roll": [37, 40, 97], "rollback": [37, 122], "room": [40, 109, 126, 138, 210, 231, 232], "roombackend": 106, "root": [5, 7, 8, 10, 16, 20, 38, 43, 46, 49, 61, 66, 70, 79, 82, 89, 95, 118, 126, 134, 154, 155, 169, 171, 181, 186, 189, 231, 236, 239], "rootfold": 38, "rootscop": 199, "rootstorag": 41, "rough": [16, 115], "roughli": [20, 236], "round": [96, 122, 129, 132, 231], "rounditemicon": 96, "roundtrip": 122, "rout": [5, 6, 21, 28, 32, 73, 101, 128, 131, 132, 147, 161, 170, 171, 172, 180, 183, 201, 230, 232, 233, 240], "route_of_talk_bot": 180, "routeparamet": 132, "router": [32, 61, 75, 154, 220, 228, 229, 232], "row": [20, 37, 43, 76, 97, 104, 132, 190, 194, 227, 234], "rpid": 192, "rsa": 10, "rss": 5, "rtl": 197, "rule": [11, 15, 17, 20, 22, 37, 61, 78, 85, 89, 90, 105, 122, 131, 140, 153, 185, 190, 197, 201, 211, 233], "rulematch": 105, "run": [0, 1, 2, 5, 7, 8, 10, 15, 16, 17, 18, 22, 25, 29, 30, 32, 37, 40, 41, 49, 55, 56, 57, 70, 79, 82, 84, 89, 95, 97, 98, 100, 101, 104, 106, 107, 113, 115, 122, 125, 130, 132, 140, 141, 142, 149, 151, 153, 154, 155, 156, 161, 165, 185, 187, 189, 190, 192, 199, 209, 221, 223, 228, 229, 238, 239], "runnabl": 70, "runner": 243, "running_psalm": 49, "runningonmac": 234, "runorscheduletask": [141, 142], "runrequest": 135, "runtask": [141, 142], "runtim": [29, 42, 49, 82, 90, 129, 141, 142, 152, 159], "runtimeexcept": [116, 137, 141, 142], "rw": [189, 192], "rwx": 82, "rx": 243, "s3": [63, 241], "sabr": [2, 17, 22, 109, 148, 221, 227, 229], "sabredav": [2, 22, 64, 148], "sabrepluginaddev": [2, 229], "sabrepluginauthinitev": 221, "sabrepluginev": 227, "sacr": [79, 185], "safe": [0, 14, 22, 46, 90, 97, 190, 209, 232], "safer": [21, 209], "safeti": [90, 209, 213], "sai": [33, 132, 204], "said": [107, 128], "sake": [107, 185], "sale": 13, "samba": 192, "same": [0, 3, 5, 19, 20, 21, 23, 30, 33, 40, 42, 45, 61, 69, 70, 76, 82, 85, 87, 89, 97, 99, 101, 107, 115, 122, 129, 130, 132, 134, 138, 140, 148, 151, 153, 154, 159, 160, 165, 167, 169, 170, 185, 189, 190, 199, 200, 204, 209, 219, 226, 227, 228, 232, 233, 234, 236], "saml": [70, 241], "saml2": 70, "sampl": [20, 37, 61, 72], "sample_cli": 72, "san": 194, "sanit": [209, 233], "sanitizefilenam": 233, "sanitizehtml": 235, "sass": [184, 239], "satisfi": [14, 107, 131], "save": [15, 17, 20, 21, 22, 34, 36, 49, 76, 81, 82, 99, 101, 104, 107, 110, 116, 129, 132, 137, 140, 141, 142, 156, 179, 190, 194, 233, 239], "savedinstancest": 70, "savemetadata": [104, 229], "saveset": [34, 49], "sayhello": 42, "sb": 62, "scalabl": 19, "scalar": 215, "scale": [37, 122, 162, 163], "scalefixforie8": 216, "scan": [17, 22, 42, 76], "scanfil": 22, "scanfold": 22, "scanner": [79, 236], "scenario": [3, 20, 54, 97, 131], "scene": 29, "schedul": [16, 17, 22, 45, 47, 50, 76, 87, 121, 124, 130, 137, 140, 141, 213, 230, 234, 235, 239], "scheduleaft": 18, "scheduledat": 87, "schedulefiletranscript": 137, "scheduletask": [140, 141, 142], "schema": [3, 5, 6, 16, 37, 39, 49, 95, 108, 130, 134, 136, 179, 183, 190, 222, 223, 229, 234], "schemaclosur": [40, 136], "schemaexcept": 95, "schemaloc": [3, 95], "scheme": [99, 131, 155, 179, 183, 192], "school": 92, "schott": 81, "scienc": [61, 129], "scloud": 42, "scope": [10, 19, 22, 25, 36, 45, 52, 61, 65, 90, 101, 104, 106, 148, 199, 220, 231], "scope_": 49, "scope_administr": 49, "scope_default": 49, "scope_ex_app": 231, "scope_feder": 49, "scope_filesystem": 231, "scope_ignor": 49, "scope_skip_password_valid": 231, "scopedpsrlogg": 29, "score": 202, "scrape": 8, "screen": [27, 42, 76, 125, 134, 193, 194, 198, 204], "screenread": [25, 226], "screenshot": [5, 154, 198], "script": [3, 8, 15, 16, 17, 20, 22, 25, 26, 37, 42, 48, 61, 82, 95, 96, 98, 101, 115, 118, 126, 129, 134, 151, 152, 153, 154, 167, 172, 192, 208, 218, 219, 220, 229, 230, 231, 241, 243], "scroll": [82, 129, 193, 198], "scrollabl": 193, "scrollbar": 194, "scrollto": [69, 132], "scss": [23, 239], "scssphp": 233, "seamlessli": [71, 150], "search": [5, 45, 48, 64, 65, 75, 76, 90, 93, 94, 106, 113, 146, 171, 193, 201, 204, 215, 224, 228, 231, 233, 234, 236], "search_providers_id": 129, "searchabl": 66, "searchbysystemtag": 229, "searchforprincip": 106, "searchingroup": 228, "searchinusercalendar": 106, "searchkei": 90, "searchrequest": [66, 104], "searchresult": [132, 234], "searchresultentri": 132, "searchusersbyvalu": 93, "searchusersbyvaluebool": 93, "searchusersbyvalueint": 93, "searchusersbyvaluestr": 93, "searchvalu": 90, "season": 185, "second": [18, 20, 22, 26, 29, 30, 40, 42, 44, 61, 63, 76, 87, 89, 96, 99, 104, 106, 122, 126, 129, 130, 132, 135, 136, 144, 147, 153, 165, 179, 186, 199, 229], "second_pag": 171, "secondari": [77, 79, 96, 110, 185, 194], "secret": [10, 15, 20, 164, 165, 192], "secretpassword": 128, "secrettoken": 128, "section": [0, 5, 6, 8, 10, 15, 20, 25, 32, 33, 34, 37, 42, 49, 69, 76, 77, 82, 87, 89, 97, 106, 107, 110, 113, 114, 115, 121, 122, 127, 129, 131, 144, 151, 153, 155, 161, 162, 166, 179, 189, 190, 192, 193, 198, 199, 202, 206, 211, 212, 222, 229, 230, 231, 234, 235, 243], "section_id": [99, 179], "section_typ": [99, 179], "section_type_admin": 99, "section_type_person": 99, "secur": [5, 10, 12, 21, 28, 30, 41, 44, 48, 61, 82, 99, 101, 107, 112, 113, 114, 115, 128, 131, 135, 151, 152, 153, 158, 164, 179, 188, 189, 190, 201, 208, 211, 215, 217, 218, 229, 231, 232], "securedrelyingpartyid": 192, "securerandom": 232, "see": [1, 2, 3, 5, 6, 11, 15, 16, 18, 20, 21, 22, 25, 26, 27, 32, 33, 34, 37, 38, 41, 42, 43, 44, 46, 49, 52, 55, 56, 57, 58, 61, 64, 69, 73, 76, 77, 79, 81, 82, 85, 87, 89, 90, 93, 95, 96, 98, 105, 106, 107, 110, 113, 115, 117, 118, 122, 125, 126, 127, 129, 132, 134, 144, 149, 151, 152, 154, 158, 164, 165, 171, 175, 185, 186, 187, 188, 189, 190, 192, 194, 198, 203, 204, 209, 211, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 239, 243], "seed": 192, "seen": [69, 80, 124, 130, 222, 229], "segment": 1, "sego": 194, "select": [20, 37, 42, 47, 66, 69, 70, 76, 80, 82, 87, 92, 98, 101, 104, 105, 107, 122, 126, 129, 134, 144, 161, 165, 171, 179, 192, 194, 195, 198, 200, 209, 210, 213, 230, 234], "select2": 217, "selectionlength": 42, "selector": [184, 199], "self": [1, 25, 31, 49, 96, 110, 124, 126, 138, 140, 141, 145, 147, 190, 192, 210, 217], "semant": [5, 16], "semicolon": 34, "semver": 16, "send": [8, 18, 24, 34, 42, 43, 45, 61, 66, 67, 68, 74, 96, 101, 103, 110, 112, 115, 117, 122, 124, 131, 132, 144, 164, 165, 166, 172, 187, 190, 209, 231, 240, 241], "sendemail": 42, "sendmail": [52, 215], "sendmessag": 110, "sendshareemail": 231, "sens": [12, 20, 21, 37, 49, 81, 107, 190, 222, 232], "sensibl": 76, "sensit": [18, 20, 29, 33, 92, 132, 134, 168, 177, 208, 230], "sent": [14, 17, 20, 22, 32, 50, 52, 54, 61, 62, 70, 101, 131, 132, 134, 166, 171, 209, 223, 227, 232], "sentenc": [42, 76, 79, 81, 199], "separ": [1, 5, 16, 20, 29, 34, 37, 40, 43, 47, 52, 69, 76, 77, 81, 82, 107, 118, 131, 140, 142, 151, 152, 160, 171, 178, 185, 190, 199, 223, 239], "sequenc": [0, 37, 136], "seri": [20, 122], "serial": [19, 29, 49, 52, 106, 121, 231, 232], "seriou": 122, "serv": [20, 23, 49, 79, 131, 135, 209, 231, 234], "server": [0, 3, 4, 8, 10, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 29, 32, 33, 37, 40, 42, 44, 46, 47, 49, 53, 56, 60, 61, 62, 63, 64, 66, 70, 71, 75, 76, 82, 83, 85, 95, 97, 98, 100, 101, 106, 107, 110, 112, 113, 115, 122, 123, 125, 129, 131, 132, 133, 134, 136, 138, 140, 144, 148, 152, 154, 156, 160, 164, 167, 169, 181, 190, 191, 192, 196, 201, 202, 203, 204, 209, 217, 220, 221, 227, 228, 229, 231, 232, 233, 234, 235, 240, 242], "server_base_url": 70, "serverconfighelp": 135, "servercontain": [21, 22, 36, 106], "serverplugin": [2, 148], "serveruri": 70, "serververs": 211, "servic": [0, 13, 18, 19, 20, 22, 25, 28, 29, 31, 36, 41, 42, 49, 61, 70, 82, 90, 103, 106, 109, 112, 119, 124, 125, 127, 132, 134, 138, 146, 147, 151, 152, 154, 156, 161, 186, 189, 190, 192, 221, 228, 229, 232, 240], "service1": 110, "serviceid": 110, "serviceus": 152, "session": [0, 44, 46, 61, 70, 88, 101, 113, 115, 119, 183, 209, 227, 231], "session_lifetim": 36, "set": [5, 7, 8, 9, 10, 13, 14, 15, 16, 18, 19, 25, 27, 28, 29, 33, 36, 37, 40, 41, 42, 44, 45, 46, 50, 52, 53, 56, 57, 58, 60, 65, 75, 78, 79, 81, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 104, 105, 108, 110, 112, 113, 114, 115, 121, 122, 125, 129, 131, 132, 135, 140, 146, 150, 152, 153, 154, 155, 161, 162, 163, 164, 165, 166, 167, 171, 172, 174, 183, 186, 187, 188, 190, 191, 192, 193, 194, 197, 201, 204, 209, 215, 217, 218, 220, 222, 225, 226, 228, 229, 230, 231, 232, 234, 239, 240, 241, 243], "setacl": 107, "setactionlabel": 228, "setaffectedus": 69, "setallowparallelrun": 18, "setapp": 69, "setappvalu": 36, "setappvaluearrai": 90, "setappvalueint": 90, "setappvaluestr": 90, "setattach": 110, "setauthor": 69, "setautosubmit": 227, "setbodyhtml": 110, "setbodyplain": 110, "setchannel": 211, "setchildev": 69, "setcontentsecuritypolici": [20, 31], "setcredenti": 70, "setdeclarativesettingsvaluelisten": 99, "setdescript": [1, 106, 129], "setdisplaynam": 46, "seten": 146, "setendd": 106, "setfetchmod": 222, "setfirstresult": [37, 224], "setfrom": 110, "sethead": 45, "setheaderact": 20, "setheaderdetail": 20, "setheadertitl": [20, 31], "sethtmlbodi": [103, 229], "seticon": [69, 231, 233, 234], "setid": [37, 234], "setimageurl": 129, "setincludewatermark": 234, "setint": 104, "setinterv": 18, "setlastlogin": 37, "setlink": [69, 231, 233, 234], "setloc": 106, "setmanageruid": 146, "setmaxresult": 37, "setmeetingd": 139, "setmessag": 69, "setnam": [1, 37, 107], "setnoexpirationd": 231, "setobject": 69, "setobjectid": 234, "setorgan": 106, "setown": 231, "setp": 130, "setparamet": 229, "setparsedmessag": [69, 227], "setparsedsubject": [69, 227], "setpassword": [46, 146], "setpasswordhash": 231, "setplainbodi": [103, 229], "setpreferstream": 213, "setprimarykei": [37, 136], "setpubl": 139, "setreferenceid": 220, "setrichmessag": [69, 227], "setrichobject": 129, "setrichsubject": [69, 227], "setstartd": 106, "setstatu": [20, 108, 215], "setstr": 104, "setsubject": [69, 103, 110, 229], "setsummari": 106, "setsystemvalu": 36, "setter": [37, 90, 227, 228, 231], "settimerangeend": 106, "settimerangestart": 106, "settimesensit": 18, "settimestamp": 69, "settimezon": 106, "settingnotfoundexcept": 231, "settings_exampl": 179, "settingsmenu": 193, "settingsview": 186, "settitl": 129, "setto": [103, 110], "settyp": 69, "setup": [4, 15, 17, 19, 20, 22, 37, 38, 41, 71, 82, 90, 92, 95, 98, 101, 105, 113, 114, 118, 122, 149, 151, 152, 154, 158, 170, 204, 218, 224, 232, 236, 239, 241, 243], "setupbeforeclass": [41, 243], "setupcheck": [135, 232], "setupresult": 135, "setuserdata": 145, "setuserid": [116, 137, 142], "setuserstatu": 138, "setuservalu": [36, 99], "setvalu": [99, 229], "setvaluearrai": [90, 93], "setvaluebool": [90, 93], "setvaluefloat": [90, 93], "setvalueint": [90, 93], "setvaluestr": [90, 93], "setwebhookmethod": 140, "setwebhookuri": 140, "seven": 185, "sever": [6, 20, 29, 34, 44, 76, 115, 122, 132, 135, 141, 149, 151, 153, 190, 204, 209, 215, 231], "sh": [8, 62, 82, 152, 154, 167, 189, 238, 239, 243], "sha": 10, "sha1": [15, 61, 188], "sha256": [61, 82], "sha3": 61, "shadow": 194, "shall": [0, 25, 42, 118, 127, 132, 202, 206, 226], "shallow": 202, "shape": [49, 77, 101, 129], "shapedescriptor": 140, "shapeenumvalu": 140, "share": [5, 6, 10, 18, 20, 21, 28, 42, 45, 46, 48, 75, 76, 81, 86, 92, 101, 113, 121, 129, 134, 148, 154, 160, 164, 165, 166, 176, 186, 187, 190, 192, 201, 204, 209, 211, 215, 216, 219, 220, 224, 229, 230, 231, 233, 234, 243], "share_backend": 235, "share_backend_collect": 235, "share_backend_file_depend": 235, "share_id": 52, "share_test": 128, "share_token": 61, "share_type_circl": 5, "shareabl": 61, "shareacceptedev": 229, "shareapicontrol": 231, "shareapilinkdefaultexpiredateenforc": 211, "shareapilinkenforcepassword": 211, "shareattribut": 171, "shareconfigmodel": 216, "sharecontrol": [20, 31], "sharecreatedev": 229, "sharedeletedev": 229, "sharedeletedfromselfev": 229, "sharees_recommend": [53, 54], "shareid": [18, 231], "sharemanag": [20, 232], "sharenod": 31, "sharenotfound": 128, "shareown": 171, "shareownerid": 171, "sharepermiss": 171, "sharer": [53, 61], "shareservic": 18, "sharesplugin": 148, "sharetoken": 129, "sharetyp": [46, 52, 70, 171], "sharetypeid": 61, "sharewith": 52, "sharewithus": 18, "sharingtoken": 129, "she": 81, "shed": 0, "sheet": [65, 101, 223, 239], "shell": [82, 131, 156, 208], "shell_exec": 209, "ship": [0, 3, 5, 8, 10, 11, 82, 89, 96, 101, 127, 188, 192, 196, 218, 219, 220, 222, 223, 227, 228, 229, 230, 233, 238], "shivammathur": 15, "short": [0, 5, 20, 49, 50, 76, 81, 87, 118, 121, 122, 124, 150, 151, 161, 166, 167, 221, 233], "shortcom": 107, "shortcut": [24, 42, 175], "shorter": 20, "shorthand": [5, 61], "shortmessag": [50, 121], "should": [0, 3, 5, 6, 8, 14, 15, 16, 17, 19, 20, 22, 23, 25, 26, 28, 29, 30, 31, 33, 34, 36, 37, 38, 40, 41, 42, 43, 44, 46, 49, 52, 54, 58, 60, 61, 63, 66, 69, 72, 76, 77, 79, 82, 94, 95, 96, 97, 98, 99, 101, 104, 107, 115, 116, 118, 122, 124, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 148, 150, 151, 153, 154, 156, 158, 165, 166, 169, 174, 179, 181, 184, 185, 186, 187, 190, 192, 194, 199, 200, 202, 204, 206, 209, 213, 215, 217, 218, 220, 221, 222, 227, 228, 229, 230, 231, 232, 234, 236, 238, 240], "shouldgetfield": 233, "shouldn": [186, 187], "shouldrespond": 31, "shout": 1, "show": [5, 25, 33, 40, 42, 43, 49, 69, 76, 79, 87, 96, 97, 106, 108, 125, 126, 128, 129, 130, 134, 137, 140, 141, 142, 144, 147, 154, 185, 193, 194, 198, 199, 200, 228, 231, 233, 235], "showauthent": 128, "showauthfail": 128, "showdetail": [193, 198], "showdis": 140, "shown": [13, 20, 29, 42, 43, 50, 58, 70, 76, 80, 81, 101, 107, 130, 140, 144, 151, 192, 193, 198, 199, 204, 227], "showshar": [31, 128], "showstopp": 188, "shrunk": 231, "sibl": 199, "side": [5, 20, 41, 42, 43, 44, 46, 47, 49, 60, 85, 90, 98, 101, 107, 122, 129, 154, 155, 167, 170, 175, 178, 188, 202, 233, 243], "sidebar": [34, 47, 69, 78, 80, 193, 194, 199, 215, 219, 229, 230], "sign": [8, 11, 16, 44, 70, 76, 82, 190, 192, 201, 204], "signal": [0, 2, 20, 22, 49, 75, 112, 185, 202], "signatur": [10, 16, 21, 22, 29, 227, 234], "signifi": [140, 185], "signific": [10, 20, 29, 188, 236], "significantli": [38, 122, 204], "signkei": 192, "signoff": 188, "signtool": 82, "silent": [90, 101, 209], "similar": [2, 13, 16, 17, 18, 20, 22, 33, 37, 40, 44, 80, 99, 107, 118, 121, 125, 129, 131, 134, 141, 142, 150, 151, 152, 156, 168, 175, 177, 221, 223, 233, 238], "similarli": [105, 128, 140, 166, 204], "simpl": [14, 15, 20, 22, 25, 37, 39, 42, 44, 63, 76, 79, 82, 87, 88, 90, 95, 99, 102, 107, 112, 113, 115, 122, 140, 147, 153, 154, 158, 166, 171, 174, 179, 199, 209, 228, 243], "simple_board": 42, "simplef": [227, 228, 237], "simplemenuact": 20, "simplemigrationstep": 40, "simpler": [97, 107], "simpleread": 20, "simplest": [82, 149, 188], "simplewrit": 20, "simplexml": [5, 242], "simplexmlel": 20, "simpli": [8, 16, 20, 21, 23, 29, 30, 37, 42, 62, 72, 76, 126, 129, 131, 135, 140, 142, 199, 204, 209, 220, 243], "simplic": [107, 131], "simplif": 140, "simplifi": [20, 35, 37, 38, 82, 107, 123, 128, 150, 152, 154, 236], "sinc": [3, 5, 16, 17, 18, 20, 21, 22, 29, 30, 33, 34, 35, 37, 40, 44, 46, 49, 52, 57, 61, 69, 73, 85, 90, 92, 93, 94, 96, 99, 101, 115, 116, 118, 121, 122, 124, 125, 126, 129, 131, 132, 137, 139, 140, 141, 142, 143, 145, 168, 177, 187, 188, 193, 194, 196, 204, 209, 210, 211, 223, 226, 227, 229, 232, 233, 234, 235, 238], "sinceid": 96, "singl": [19, 20, 40, 42, 46, 66, 69, 70, 76, 81, 85, 87, 92, 93, 95, 96, 98, 99, 101, 107, 110, 122, 123, 140, 179, 187, 190, 192, 199, 233, 236], "singleselect": 218, "singlesignon": 71, "singular": [42, 167], "sinon": 243, "sinonj": 243, "sit": 76, "site": [131, 189, 190, 192, 208], "site_nam": 31, "situat": [16, 20, 40, 113, 114], "size": [5, 35, 38, 61, 62, 63, 66, 70, 76, 78, 92, 97, 122, 129, 132, 145, 151, 171, 194, 219, 227, 229], "sk": 8, "sk_sk": 8, "skeleton": [7, 76, 151, 154, 166, 190], "sketch": 107, "skill": 204, "skin": 76, "skip": [1, 32, 58, 129, 145, 166], "slash": [33, 123, 169, 171, 181], "sleep": 130, "slide": [105, 199], "slideshow": [76, 101], "slight": 231, "slightli": [89, 95], "slocal": 42, "slogan": [27, 46], "slot": [76, 140], "slow": [14, 19, 20, 118, 122, 125, 140, 169, 194, 236], "slow_query_log": 122, "slow_query_log_fil": 122, "slower": [20, 62], "slowli": 223, "slugifi": 37, "sm": 144, "small": [5, 18, 61, 62, 76, 77, 90, 92, 96, 97, 122, 129, 132, 151, 154, 185, 188, 194, 199, 204, 231], "smaller": [63, 77, 185, 186, 194, 231], "smallest": [194, 231], "smart": [17, 22, 102, 113], "smb": 241, "smb1": 192, "smb2": 192, "smb3": 192, "smbclient": 192, "smbhome": 192, "smbmount": 192, "smbpublic": 192, "smillerdev": 15, "smoothen": 115, "smoother": 221, "smtp": 192, "snackbar": 43, "snapper": 235, "snappi": 194, "snapshot": 72, "snippet": [107, 134, 152, 199], "snowflak": [113, 114], "snowflake_id": 136, "so": [1, 3, 5, 10, 12, 14, 16, 18, 20, 21, 23, 25, 29, 33, 34, 37, 40, 41, 42, 46, 49, 52, 60, 61, 69, 76, 77, 81, 82, 89, 90, 95, 97, 98, 101, 105, 107, 119, 122, 127, 129, 131, 132, 133, 134, 135, 137, 140, 141, 142, 147, 148, 151, 152, 154, 161, 165, 166, 167, 185, 188, 189, 190, 194, 204, 206, 209, 210, 220, 221, 222, 223, 226, 227, 228, 229, 231, 232, 233, 234, 239, 243], "social": [5, 209], "sock": [149, 165], "socket": [151, 161, 162, 163, 165], "soft": 234, "softwar": [3, 16, 21, 42, 76, 79, 129, 159, 185, 188, 190, 243], "sole": [20, 107, 221], "solut": [21, 49, 107, 122, 134, 139, 162, 204], "solv": [21, 44, 46, 135, 185, 189, 204, 223], "some": [0, 3, 8, 10, 13, 14, 16, 18, 20, 21, 25, 26, 27, 34, 35, 36, 37, 40, 42, 43, 45, 46, 49, 54, 61, 62, 64, 66, 70, 73, 76, 79, 80, 82, 85, 89, 90, 93, 94, 95, 96, 97, 98, 99, 101, 103, 106, 107, 115, 116, 119, 122, 125, 128, 129, 131, 133, 134, 135, 140, 141, 142, 151, 152, 161, 165, 166, 171, 175, 179, 182, 185, 188, 190, 192, 194, 199, 204, 209, 211, 214, 215, 222, 223, 229, 231, 233, 234, 235, 236, 239, 242, 243], "some_api_endpoint": 154, "some_method": 20, "some_real_set": 179, "some_var": 20, "somearrai": [186, 187], "somebodi": 204, "somecontrol": [18, 49], "somecontrollermethod": 49, "somehelpermethod": 49, "somehow": 15, "somemethod": 20, "somenam": 190, "someon": [49, 133], "someprop": 186, "someservic": 18, "sometask": 18, "someth": [3, 10, 17, 20, 22, 25, 26, 29, 32, 42, 44, 49, 76, 79, 81, 85, 99, 106, 108, 120, 124, 129, 131, 139, 140, 141, 142, 179, 185, 186, 187, 188, 190, 199, 204, 206, 209], "sometim": [20, 21, 30, 33, 37, 38, 49, 116, 122, 135, 137, 141, 142, 190, 204, 233], "sometyp": [21, 186], "somewher": [15, 20, 49, 96, 137, 140, 141, 142], "soon": [21, 122, 222], "sooner": 221, "sophist": [222, 229], "sort": [5, 16, 66, 69, 96, 124, 129, 132], "sortabl": 66, "sorter": 46, "sound": [21, 95, 115], "sourc": [7, 11, 16, 21, 22, 42, 48, 58, 69, 71, 82, 95, 115, 116, 118, 129, 132, 140, 149, 154, 169, 186, 187, 191, 223], "source_fil": 8, "source_lang": 8, "space": [25, 42, 44, 46, 61, 76, 78, 94, 123, 161, 185, 187, 194, 226], "spam": [187, 209], "span": [42, 110, 122, 129, 184, 198, 199, 200], "sparingli": 77, "spdx": [5, 185], "speak": [81, 161, 222, 229], "spec": [49, 118, 243], "special": [20, 21, 29, 37, 44, 65, 67, 68, 76, 77, 115, 190], "specif": [5, 10, 15, 16, 18, 20, 22, 25, 32, 33, 36, 37, 38, 40, 42, 43, 45, 47, 61, 74, 76, 81, 82, 87, 90, 93, 94, 96, 97, 99, 105, 106, 107, 110, 124, 129, 132, 135, 140, 141, 147, 149, 150, 151, 154, 159, 161, 169, 177, 185, 191, 198, 204, 221, 225, 227, 228, 229, 231, 232, 233, 234, 239, 240, 243], "specifi": [3, 8, 10, 13, 17, 18, 20, 21, 22, 34, 37, 38, 40, 42, 43, 44, 46, 61, 63, 64, 72, 82, 83, 89, 90, 93, 96, 104, 107, 116, 118, 126, 128, 132, 134, 140, 141, 142, 144, 149, 153, 156, 159, 166, 168, 169, 190, 209, 217, 221, 227, 228, 232, 233], "spectrogram": 140, "speech": [17, 22, 43, 47, 84, 87, 113, 140, 233], "speech_to_text": 43, "speechtotext": [137, 228, 231], "speed": [19, 49, 89, 122, 131], "spell": [42, 81, 140], "spend": [14, 204], "spent": 125, "spinner": 194, "split": [20, 37, 76, 81, 85, 122, 132, 185, 187, 218, 233], "spot": 122, "spreed": [96, 124, 132], "spy": 14, "sql": [37, 40, 100, 104, 113, 190, 208, 210, 211, 233, 234], "sqlite": [5, 15, 16, 37, 122, 204, 243], "squar": 96, "src": [7, 20, 26, 118, 154, 186, 190, 192, 209, 229], "srv": [8, 189, 243], "ssh": 82, "ssl": [161, 241], "sso": 224, "stabil": [90, 93], "stabl": [8, 10, 16, 82, 95, 115, 125, 188, 189, 190, 202, 238, 240], "stable21": 15, "stable24": 16, "stable25": [16, 188, 227], "stable26": 16, "stable29": 233, "stable30": 233, "stable31": 233, "stablex": [8, 125, 188], "stack": [29, 206, 232, 236], "stage": [0, 20, 44, 46, 110, 166], "stai": [21, 76, 199], "stamp": 82, "stand": 40, "standalon": [5, 20, 25, 87], "standalonetemplaterespons": 221, "standard": [20, 21, 25, 49, 61, 73, 77, 79, 82, 95, 98, 107, 113, 114, 118, 127, 151, 168, 177, 191, 193, 198, 204, 206, 222, 227, 228, 232, 233, 239], "star": [37, 76, 194, 198], "start": [8, 9, 15, 17, 20, 22, 29, 30, 33, 37, 42, 43, 44, 49, 50, 56, 61, 66, 69, 70, 71, 76, 94, 96, 97, 98, 101, 107, 121, 122, 124, 125, 129, 140, 147, 148, 149, 152, 153, 155, 165, 166, 169, 171, 179, 181, 185, 187, 189, 190, 192, 194, 201, 204, 209, 217, 223, 229, 231, 232, 234, 239, 243], "startallsharesretriev": 70, "startcreationofgroupshareforfil": 70, "startcreationofpublicshareforfil": 70, "startcreationofusershareforfil": 70, "startdat": [50, 106, 121], "startdownload": 70, "startedat": 87, "starter": 153, "startfilemov": 70, "startfoldercr": 70, "startprogress": 130, "startreadfileproperti": 70, "startreadrootfold": 70, "startremovefil": 70, "startshareremov": 70, "startsharesretrievalforfileorfold": 70, "startsharesretrievalforfilesinfold": 70, "startup": [1, 90, 153, 165], "startupload": 70, "stat": 62, "state": [14, 24, 31, 37, 44, 46, 61, 76, 77, 79, 81, 88, 90, 96, 107, 113, 129, 132, 153, 166, 170, 172, 185, 199, 229, 233], "statement": [15, 40, 81, 82, 95, 104, 122, 186, 187, 222, 234], "static": [22, 25, 100, 107, 113, 126, 132, 138, 143, 145, 186, 201, 211, 222, 227, 229, 234, 235, 241], "statist": 125, "statu": [20, 43, 44, 45, 46, 48, 49, 50, 51, 53, 56, 57, 58, 59, 61, 66, 74, 75, 76, 81, 87, 88, 90, 93, 96, 97, 101, 104, 109, 112, 113, 121, 129, 131, 135, 141, 142, 153, 165, 166, 168, 172, 173, 176, 177, 178, 179, 182, 188, 190, 215, 223, 228, 240], "status": 45, "status_bad_request": 49, "status_cancel": 140, "status_cod": 170, "status_cr": 49, "status_fail": [87, 140, 141, 142], "status_forbidden": 49, "status_not_found": [20, 49], "status_ok": 49, "status_run": [87, 140, 141, 142], "status_schedul": [87, 140, 141, 142], "status_success": [87, 140, 141, 142], "status_unknown": [87, 140, 141, 142], "statuscod": [43, 44, 46, 48, 52, 96, 101, 129, 168, 177, 182], "statusicon": 54, "statusmanag": 138, "statustyp": 54, "stdclass": 49, "steal": 209, "step": [5, 8, 15, 16, 17, 22, 32, 34, 40, 44, 45, 49, 63, 76, 82, 97, 98, 107, 113, 114, 118, 132, 140, 141, 142, 149, 151, 153, 155, 156, 161, 165, 166, 170, 189, 190, 204, 206, 225, 229, 231, 232, 234, 238, 239], "stick": [5, 22], "sticki": 193, "still": [10, 16, 20, 21, 23, 26, 37, 40, 42, 44, 45, 46, 49, 52, 76, 77, 81, 95, 96, 107, 122, 129, 131, 140, 144, 151, 152, 153, 154, 156, 188, 190, 194, 198, 199, 200, 204, 209, 222, 223, 227, 229, 230, 231, 232, 233, 234, 235, 238, 239, 242], "stitcher": [225, 229, 232], "stop": [16, 49, 70, 204], "stoppableeventinterfac": 223, "storag": [9, 15, 28, 35, 41, 46, 61, 63, 90, 122, 134, 165, 201, 204, 215, 231, 232, 237, 241], "storage_typ": 99, "storage_type_extern": 99, "storage_type_intern": 99, "storageexcept": [38, 41], "storageloc": 46, "store": [5, 6, 7, 11, 13, 15, 16, 20, 21, 22, 29, 33, 35, 37, 40, 44, 49, 52, 61, 66, 70, 82, 92, 96, 98, 99, 104, 105, 107, 113, 114, 115, 119, 137, 140, 141, 142, 145, 154, 162, 168, 171, 177, 179, 186, 190, 201, 203, 209, 223, 227, 236, 241], "store_login_token": 119, "str": 171, "str_contain": 132, "str_replac": [30, 209], "str_starts_with": 129, "straight": [18, 165], "straightforward": [134, 150, 161], "strategi": [15, 20], "stream": [69, 140, 151, 156, 213, 237], "streamlin": 82, "streamrespons": [20, 49, 232], "strict": [20, 92, 129, 186, 199, 228, 229, 233], "strict_typ": [0, 1, 30, 89, 96, 99, 101, 104, 116, 120, 124, 125, 126, 132, 133, 135, 136, 137, 140, 141, 142, 145, 147], "strictcontentsecuritypolici": 235, "strictcookierequir": 231, "strictcookiesrequir": 231, "stricter": [90, 210], "strictevalcontentsecuritypolici": 235, "strictinlinecontentsecuritypolici": 235, "strictli": 215, "string": [5, 6, 18, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 36, 37, 38, 40, 45, 46, 49, 50, 52, 53, 54, 56, 57, 59, 61, 66, 70, 73, 78, 87, 90, 92, 93, 94, 96, 99, 101, 103, 104, 106, 107, 108, 110, 116, 120, 121, 123, 124, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 154, 165, 167, 170, 171, 174, 178, 187, 190, 209, 215, 220, 227, 228, 229, 231, 232, 233, 234, 235], "stringabl": 29, "stringent": 107, "stringifi": 101, "stringutil": 218, "strip": 61, "stripe": 13, "strive": 185, "strlen": 107, "strong": [69, 122, 185, 204], "stronger": 77, "strongli": [152, 186, 194, 210, 232], "strpo": 132, "strtoupper": 1, "structur": [8, 28, 33, 45, 48, 62, 76, 88, 107, 113, 122, 129, 132, 151, 155, 165, 170, 184, 190, 193, 198, 199, 215, 228], "stub": [107, 243], "studi": 106, "studio": [71, 72], "stuff": [41, 70, 122, 166, 234, 243], "style": [20, 23, 26, 42, 107, 118, 134, 151, 172, 184, 190, 191, 192, 194, 198, 199, 201, 202, 223, 231, 232, 241], "stylelint": 118, "stylis": 199, "su": [152, 243], "sub": [3, 25, 26, 38, 146, 169, 186, 189, 199, 203, 214, 221], "subadmin": 46, "subadminrequir": 231, "subclass": [20, 22], "subdirectori": 41, "subfil": 52, "subfold": [82, 190], "subj": 10, "subject": [22, 76, 82, 147, 174, 198, 229], "subject_kei": 69, "subject_param": 174, "subject_rich": 69, "subject_typ": 174, "sublim": 98, "sublimetextxdebug": 98, "sublin": [77, 129, 132], "submiss": 203, "submit": [10, 14, 25, 42, 43, 81, 129, 199, 200, 202, 203, 209, 226, 227], "submitcont": 94, "submodul": [82, 189], "subqueri": 210, "subscrib": [73, 113, 114, 115, 188, 223, 232], "subscript": [22, 233], "subscriptioncreatedev": 221, "subscriptiondeletedev": 221, "subscriptionupdatedev": 221, "subsequ": [101, 122, 132], "subset": 69, "substanti": 185, "substitut": 29, "substr": 154, "subsystem": [36, 185], "subtempl": 209, "subtext": 129, "subtitl": [20, 96, 140], "subtyp": 169, "suburl": 28, "subvers": 5, "succeed": 135, "success": [1, 14, 17, 20, 22, 30, 49, 52, 53, 56, 60, 76, 77, 87, 115, 116, 135, 141, 142, 164, 165, 166, 168, 170, 177, 194, 229, 233, 240], "successfulli": [1, 17, 22, 43, 81, 131, 140, 141, 142, 174], "successor": 132, "succinctli": 21, "sudo": [33, 40, 42, 82, 125, 136, 156, 165, 189, 190, 239], "suffer": [42, 204], "suffic": 204, "suffici": [16, 76, 131], "suffix": [16, 22, 37, 166, 231], "suggest": [14, 17, 20, 22, 82, 129, 149, 188, 202], "suit": [76, 89, 107, 152, 186, 243], "suitabl": 61, "summar": [43, 61, 135, 140, 142], "summari": [5, 43, 49, 87, 107, 121, 129, 130, 140, 155, 185, 222, 229, 233], "summarytask": [140, 142], "summarytasktyp": [140, 142, 231], "super": 122, "superglob": 20, "supersed": 129, "suppli": [5, 20, 25, 110, 140, 150, 190], "support": [1, 5, 8, 10, 11, 15, 16, 20, 22, 23, 24, 28, 29, 31, 33, 39, 42, 45, 46, 52, 54, 57, 58, 63, 65, 69, 75, 76, 77, 82, 90, 95, 98, 99, 102, 108, 110, 113, 115, 116, 119, 126, 132, 135, 140, 142, 148, 150, 151, 152, 154, 157, 160, 162, 163, 165, 166, 167, 169, 171, 175, 176, 188, 190, 192, 195, 196, 200, 204, 210, 211, 213, 215, 216, 217, 225, 227, 228, 229, 230, 233, 236], "supportedcalendarcomponentset": 107, "supportedlock": 61, "supports_emoji": 54, "suppos": [134, 138, 232, 234], "suppress": 95, "sure": [1, 10, 12, 14, 15, 16, 18, 25, 40, 41, 44, 49, 79, 81, 82, 89, 106, 107, 110, 122, 125, 129, 131, 134, 140, 149, 152, 156, 161, 189, 192, 193, 194, 204, 209, 210, 215, 217, 219, 220, 222, 225, 226, 227, 228, 229, 230, 239, 240, 241, 243], "surfac": 76, "surprisingli": 204, "surround": [42, 81], "survey_cli": 134, "suspect": 104, "svenstaro": 15, "svg": [5, 27, 34, 43, 69, 96, 124, 129, 132, 134, 171, 181, 197, 215, 226, 227], "swap": 21, "swift": 215, "swiftli": 204, "switch": [16, 76, 98, 101, 132, 141, 142, 185, 186, 187, 188, 222, 226, 227, 229, 233, 239], "symbol": [76, 77], "symfoni": [1, 3, 22, 145, 175, 223], "symfonycomponentgenericev": [17, 22], "symptom": 162, "sync": [4, 5, 29, 42, 48, 82, 83, 122, 132, 154, 204], "synchron": [19, 71, 83, 87, 140, 141, 142, 170, 234], "synchronousprovideropt": [140, 213], "syncjob": 5, "syntax": [3, 23, 42, 43, 49, 52, 53, 76, 81, 95, 190, 222], "sysadmin": 35, "syslog": 29, "system": [7, 8, 14, 17, 18, 22, 25, 26, 29, 30, 39, 41, 76, 77, 81, 93, 99, 107, 110, 122, 125, 129, 135, 150, 152, 161, 169, 176, 182, 192, 194, 209, 210, 227, 228, 229, 231, 233, 234, 235, 236, 243], "system_prompt": 140, "systemconfig": 232, "systemctl": 189, "systemd": 29, "systemtag": [229, 232, 233, 234], "systemtagobjectmapp": 232, "systemtagsentityev": 229, "sysvsem": 242, "t": [7, 8, 10, 14, 15, 16, 20, 21, 22, 25, 30, 31, 32, 34, 37, 43, 49, 52, 56, 61, 69, 82, 96, 99, 108, 116, 119, 122, 124, 126, 129, 130, 132, 133, 134, 135, 137, 140, 141, 142, 145, 152, 154, 157, 161, 166, 175, 176, 184, 186, 187, 189, 192, 198, 199, 204, 209, 215, 217, 218, 220, 221, 222, 223, 224, 227, 228, 231, 239], "tab": [13, 15, 20, 23, 76, 185, 186, 219, 234], "tabl": [19, 20, 33, 39, 40, 49, 61, 82, 95, 97, 98, 99, 104, 122, 136, 190, 194, 210, 230, 233, 234], "table_name_uniq_featur": 37, "tablenam": 21, "tablescolumn": 49, "tactic": 184, "tag": [5, 10, 13, 15, 16, 20, 21, 29, 45, 61, 76, 77, 81, 85, 129, 148, 149, 151, 154, 165, 176, 178, 184, 185, 186, 189, 221, 229, 231, 232, 233, 234], "tag_favorit": 220, "tagassignedev": 233, "tagmanag": [220, 232], "tagmapp": 232, "tagnam": [229, 234], "tagservic": 229, "tagsplugin": 148, "tagunassignedev": 233, "tail": 122, "take": [14, 15, 18, 20, 22, 40, 49, 63, 69, 101, 107, 116, 122, 129, 130, 132, 134, 137, 140, 141, 142, 151, 154, 171, 175, 181, 184, 185, 187, 188, 202, 204, 213, 233, 234, 240], "taken": [20, 29, 170, 202], "talk": [14, 21, 38, 46, 52, 54, 61, 76, 80, 86, 96, 105, 113, 124, 126, 129, 132, 138, 172, 183, 190, 236], "talk_bot": [165, 180], "talk_bot_webhook_route_on_ex_app": 180, "tar": [15, 16, 17, 22, 61, 152, 232], "tarbal": [15, 16, 61, 89], "target": [5, 13, 16, 17, 18, 22, 63, 82, 83, 96, 101, 124, 129, 132, 140, 151, 169, 191, 199], "target_languag": 140, "targetdirectori": 70, "targetus": [69, 124], "task": [16, 17, 20, 22, 33, 43, 45, 47, 55, 76, 84, 106, 107, 113, 116, 137, 150, 160, 198, 231, 233, 234], "task_id": 87, "taskfailedev": [140, 141, 142, 231], "taskfailureexcept": [141, 142, 231], "tasknotfoundexcept": 231, "taskprocess": [45, 57, 75, 84, 113, 116, 137, 141, 142, 211, 213, 231, 233, 234], "taskprocessingmanag": 140, "tasksuccessfulev": [140, 141, 142, 231], "tasktyp": [57, 87, 140, 142], "tasktypeid": 140, "tbd": [22, 210, 234], "team": [12, 13, 107, 129, 156, 185, 230], "teardown": [41, 243], "teardownafterclass": [41, 243], "technic": [11, 20, 73, 81, 163, 185, 197, 201], "technologi": [116, 137, 140, 141, 142, 150, 206], "tecnativa": 158, "tediou": 49, "tel": [99, 179], "tell": [20, 43, 44, 49, 76, 81, 96, 105, 107, 129, 190, 204], "temp": 35, "templat": [6, 7, 8, 23, 24, 25, 28, 29, 49, 69, 95, 100, 113, 126, 129, 131, 134, 144, 155, 189, 201, 204, 210, 215, 228, 233, 239], "templatecontrol": 233, "templatefilecr": 228, "templateid": 101, "templatenam": [20, 25, 26], "templaterespons": [6, 17, 20, 22, 31, 34, 49, 126, 129, 134, 190, 229], "tempmanag": 232, "temporari": 63, "temporarili": 222, "ten": 76, "term": [22, 42, 53, 94, 107, 129, 132, 150, 151, 185, 191, 230], "termin": [44, 82, 140, 190, 239], "terminologi": 109, "terrifi": 129, "tertiari": [76, 194, 231], "test": [3, 7, 16, 19, 20, 21, 28, 33, 37, 45, 48, 62, 64, 65, 66, 69, 70, 79, 82, 85, 89, 92, 95, 98, 100, 103, 104, 107, 110, 113, 122, 130, 135, 140, 144, 147, 149, 155, 156, 161, 165, 175, 177, 185, 188, 189, 190, 194, 201, 204, 210, 222, 225, 229, 231, 232, 233, 234, 241], "test1": [69, 195, 198], "test2": 195, "test3": 195, "test4": 195, "test_arg": 175, "test_ex_app_field_1": 179, "test_ex_app_field_1_1": 179, "test_ex_app_field_1_2": 179, "test_ex_app_field_1_3": 179, "test_ex_app_field_1_4": 179, "test_ex_app_field_2": 179, "test_ex_app_field_3": 179, "test_ex_app_field_4": 179, "test_ex_app_field_5": 179, "test_ex_app_field_6": 179, "test_harp_integr": 152, "test_kei": 168, "test_sensitive_field": 99, "test_sensitive_field_2": 99, "testabl": [21, 143], "testact": 70, "testaddtwo": 243, "testcas": [41, 187, 233, 243], "testdummi": 187, "tester": 16, "testfil": 135, "testfilenotfound": 41, "testm": 243, "testremot": 232, "testsuit": 243, "text": [5, 17, 20, 22, 25, 27, 29, 30, 37, 42, 43, 45, 46, 47, 49, 50, 57, 58, 61, 64, 66, 69, 75, 81, 82, 84, 87, 90, 93, 96, 98, 99, 101, 103, 107, 110, 113, 116, 121, 129, 135, 140, 156, 179, 186, 190, 194, 195, 199, 200, 209, 213, 215, 223, 229, 231, 232, 233], "text2imag": [56, 140], "text2imagemanag": 141, "text2imagetask": 141, "text2speech": [43, 140], "text2text": [43, 87, 140], "text_to_speech": 43, "textarea": 134, "textcont": 129, "textdocu": 101, "textdocumenttempl": 101, "textoutput": 140, "textprocess": [45, 75, 84, 113, 140, 231], "textprocessingmanag": [140, 142], "texttoimag": [87, 140, 141, 231], "texttoimageexcept": 231, "texttospeech": [140, 233], "texttotext": 140, "texttotextchangeton": 140, "texttotextchat": 140, "texttotextchatwithtool": 140, "texttotextform": 140, "texttotextheadlin": 140, "texttotextproofread": 140, "texttotextreformul": 140, "texttotextsimplif": 140, "texttotextsummari": 140, "texttotexttop": 140, "texttotexttransl": 140, "th": 8, "th_th": 8, "than": [5, 10, 12, 16, 18, 21, 22, 25, 33, 37, 38, 43, 49, 52, 54, 62, 69, 76, 77, 81, 82, 96, 101, 104, 107, 116, 122, 140, 141, 142, 184, 185, 189, 190, 196, 198, 199, 204, 209, 221, 222, 229, 230, 231, 233, 236, 243], "thank": [70, 203], "thei": [0, 3, 14, 15, 16, 18, 20, 21, 22, 25, 33, 35, 36, 37, 40, 42, 44, 46, 48, 49, 61, 63, 69, 76, 77, 79, 81, 82, 83, 85, 89, 95, 97, 101, 105, 106, 107, 115, 119, 122, 129, 130, 131, 132, 135, 136, 140, 142, 150, 151, 153, 154, 176, 179, 185, 186, 188, 190, 198, 202, 204, 206, 209, 210, 213, 221, 227, 229, 231, 233], "them": [0, 1, 10, 13, 14, 15, 16, 17, 20, 21, 22, 29, 33, 34, 37, 40, 41, 42, 44, 46, 49, 61, 69, 76, 81, 82, 85, 93, 97, 101, 107, 119, 122, 125, 127, 129, 140, 146, 150, 151, 154, 160, 167, 176, 185, 188, 189, 190, 192, 196, 199, 202, 204, 206, 209, 210, 215, 223, 225, 227, 229, 231, 233, 235, 239, 243], "theme": [5, 20, 24, 28, 45, 76, 77, 194, 195], "themoviedb": 129, "themselv": [14, 17, 22, 85, 185, 190, 205, 233], "theoret": 222, "theori": 40, "theplan": 110, "therebi": [89, 94], "therefor": [0, 5, 16, 18, 20, 22, 37, 40, 42, 44, 49, 106, 107, 130, 131, 132, 159, 160, 161, 193, 206, 221, 222, 223, 227, 229, 231], "thi": [0, 1, 2, 3, 5, 6, 7, 8, 10, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 46, 48, 49, 50, 51, 52, 54, 56, 57, 60, 61, 63, 66, 67, 68, 69, 70, 71, 72, 73, 76, 77, 79, 80, 82, 83, 85, 87, 89, 90, 92, 94, 95, 96, 97, 98, 99, 101, 103, 104, 105, 106, 107, 108, 110, 112, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 158, 159, 160, 161, 162, 164, 165, 166, 167, 169, 170, 175, 180, 185, 187, 188, 189, 190, 192, 194, 198, 199, 200, 202, 204, 206, 209, 210, 211, 212, 215, 217, 218, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 239, 240, 243], "thing": [14, 15, 16, 18, 20, 21, 25, 29, 35, 37, 40, 42, 44, 61, 76, 79, 82, 126, 130, 134, 166, 185, 188, 204, 226, 227, 229, 233], "think": [17, 20, 22, 49, 122, 131, 151, 154, 190, 202, 204, 236], "thinkabl": 20, "third": [10, 14, 20, 22, 29, 71, 99, 106, 123, 131, 132, 135, 186, 188, 190, 231, 240], "this_field": 40, "thisauthorsid": 61, "thoroughli": 185, "those": [8, 10, 14, 15, 16, 17, 20, 21, 22, 43, 49, 52, 61, 76, 77, 85, 92, 93, 96, 97, 104, 119, 128, 129, 132, 152, 185, 188, 189, 204, 217, 222, 228, 229, 231, 233], "though": [10, 20, 37, 82, 131, 140, 149, 222], "thought": 223, "thread": [17, 22, 82, 229], "three": [16, 35, 40, 61, 67, 69, 76, 101, 107, 126, 134, 161, 190, 199, 200, 204, 206, 209, 211, 222], "threw": 231, "thrive": 206, "throttl": 20, "throttler": 232, "through": [1, 5, 8, 12, 14, 16, 19, 20, 26, 40, 42, 46, 48, 49, 61, 74, 76, 79, 82, 90, 92, 96, 98, 101, 105, 106, 121, 126, 132, 139, 147, 150, 151, 156, 188, 209, 213, 222, 223, 231, 233, 236], "throughout": [20, 190], "throughput": 122, "throw": [17, 22, 30, 36, 37, 38, 41, 45, 69, 74, 98, 105, 107, 116, 128, 137, 140, 141, 142, 143, 145, 146, 187, 222, 228, 229, 231, 233, 234, 240], "throwabl": [29, 37, 125, 145, 228, 233], "throwexcept": 41, "thrown": [17, 21, 22, 107, 222, 231], "thu": [0, 20, 22, 44, 82, 107, 115, 131, 135, 137, 186, 204, 209, 211, 233], "thumb": [129, 131, 140, 185], "thumbnail": [5, 132, 233], "thumbnailurl": [129, 132], "ti": 20, "tianon": 152, "tick": [104, 158], "ticket": [8, 12, 185, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228], "tidi": 82, "tight": [21, 150], "tighten": 20, "time": [0, 2, 5, 12, 14, 15, 16, 17, 20, 21, 22, 33, 35, 37, 38, 40, 42, 44, 49, 54, 56, 61, 62, 67, 69, 76, 79, 82, 85, 89, 92, 97, 101, 104, 113, 114, 115, 116, 122, 125, 127, 130, 133, 135, 136, 137, 140, 141, 142, 148, 152, 156, 161, 162, 171, 185, 188, 189, 190, 194, 204, 206, 209, 213, 220, 228, 229, 232, 233, 234, 239, 243], "time_immut": [37, 232], "time_insensit": 18, "timedjob": [18, 230], "timefactori": [139, 232], "timelin": [206, 212], "timeout": [20, 61, 116, 137, 141, 142, 153, 165, 192], "timestamp": [50, 54, 56, 61, 68, 69, 76, 82, 96, 97, 121, 129, 136, 140, 170, 232, 235], "timezon": [37, 50, 127, 143, 232, 233], "tini": [63, 222], "tip": [39, 45, 76, 110, 122, 134], "tipsi": 221, "titl": [13, 20, 31, 42, 43, 48, 49, 76, 77, 87, 94, 96, 99, 101, 124, 129, 132, 134, 174, 179, 190, 199, 227], "titlecas": 49, "tld": [108, 112, 133, 209], "tldr": 188, "tmigratorbasicversionhandl": 145, "tmp": [62, 152, 192], "tmpfile": 215, "tmpfolder": 215, "to_gif": 171, "toast": 220, "todai": 101, "todo": [49, 69, 96, 101, 107, 108, 132, 136, 229], "todoapicontrol": 49, "todoitem": 49, "togeth": [10, 13, 15, 49, 62, 76, 77, 82, 90, 122, 129, 134, 152], "toggl": [25, 69, 78, 99, 132, 166, 179, 193, 198, 199, 226, 233], "toggleclass": 199, "togoogl": 20, "toic": 106, "token": [15, 17, 20, 22, 24, 29, 31, 44, 46, 60, 61, 70, 88, 101, 113, 115, 121, 128, 129, 131, 139, 140, 190, 192, 227, 229, 231, 232], "tolabel": 58, "tolanguag": [58, 116], "tom": 32, "toml": 152, "ton": 140, "tone": [76, 78, 79, 140], "too": [19, 20, 54, 56, 57, 58, 104, 118, 122, 132, 184, 204, 209, 210, 226, 231, 232], "took": [122, 125], "tool": [4, 5, 10, 14, 15, 16, 25, 27, 49, 71, 81, 82, 90, 93, 95, 113, 115, 118, 120, 140, 141, 142, 144, 151, 154, 183, 191, 201, 204, 220, 222, 226, 229], "tool_cal": 140, "tool_call_id": 140, "tool_messag": 140, "toolbar": 125, "toolkit": 159, "tooltip": [81, 227], "tootltip": 227, "top": [20, 21, 34, 37, 46, 48, 76, 89, 93, 112, 125, 131, 134, 151, 153, 167, 172, 183, 190, 199, 209, 243], "top_menu": 181, "topic": [43, 76, 140, 142], "topicstasktyp": [142, 231], "topmenu": [154, 181], "topmostparentid": 64, "torn": [17, 22], "total": [46, 61, 62, 63, 232], "totalitem": [46, 168, 177, 182], "totallytyp": 95, "totaltotransf": 70, "totaltransferredsofar": 70, "toto": 96, "touch": [90, 152, 190, 199], "toward": 239, "tr": 42, "trace": [29, 49, 122], "track": [37, 122, 125, 129, 188], "tracker": [5, 14, 204], "trademark": 14, "tradit": 221, "tradition": [21, 52, 152], "traffic": 19, "trail": [42, 76], "train": [18, 188], "trait": [37, 135, 145, 228, 238], "transact": [39, 97], "transcrib": [43, 137, 140], "transcribefil": 137, "transcript": [17, 22, 228], "transcriptionfailedev": [137, 231], "transcriptionsuccessfulev": [137, 231], "transfer": [8, 22], "transform": [11, 16, 33, 132, 154, 187, 223], "transifex": [4, 42, 81, 154], "transit": [194, 221, 226, 228], "translat": [4, 5, 14, 16, 28, 38, 43, 45, 75, 78, 84, 113, 115, 124, 129, 132, 134, 135, 140, 151, 155, 163, 183, 201, 217, 228, 231, 236], "translatablefil": 154, "translateplur": 154, "translation_templ": 154, "translationfil": [8, 42, 154], "translationtool": [8, 154, 167], "transmiss": 20, "transmit": 131, "transpar": [12, 14, 20, 44, 223], "transpil": 223, "transport": [22, 101, 152], "trap": 129, "trash": [67, 231], "trashbin": [18, 22, 65, 73, 75], "travers": 208, "treat": [40, 90, 204], "tree": [64, 82, 148, 194], "trev6tmyjlbj7hgdcpz": 10, "tri": [17, 19, 21, 22, 58, 97, 107], "triag": [12, 115, 185], "triager": [185, 204], "trick": [45, 98, 134, 190, 209], "trigger": [12, 17, 18, 20, 21, 22, 29, 30, 60, 73, 76, 81, 94, 96, 101, 104, 105, 122, 132, 153, 175, 178, 188, 199], "trigger_error": 98, "triggerinitialimport": 94, "trim": [42, 129], "tripl": 42, "trivial": 35, "troubl": 44, "troubleshoot": [75, 162, 163, 192], "true": [3, 15, 20, 21, 25, 27, 29, 30, 32, 34, 37, 40, 44, 46, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 70, 82, 87, 90, 92, 93, 94, 95, 96, 98, 99, 101, 104, 107, 112, 116, 122, 128, 129, 131, 132, 134, 135, 136, 138, 140, 144, 145, 164, 170, 179, 186, 187, 189, 192, 209, 228, 229, 231, 232], "trust": [10, 15, 20, 113, 114, 135], "trusteddomainhelp": 232, "try": [0, 3, 8, 10, 20, 29, 32, 36, 37, 38, 41, 49, 81, 97, 98, 107, 112, 122, 125, 129, 133, 140, 141, 142, 145, 151, 161, 166, 184, 204, 234], "tsx": 154, "tt1446714": 129, "ttl": [19, 61], "ttransact": [37, 97, 228], "tune": 199, "tupl": [45, 144], "turn": [20, 32, 33, 42, 89, 140, 142, 146, 196, 199, 209], "tutori": [4, 34, 45, 75, 189, 190, 201, 206], "tweak": 140, "twice": [3, 17, 22], "twitter": [46, 124], "two": [1, 3, 5, 14, 15, 17, 18, 19, 20, 22, 23, 25, 33, 34, 42, 43, 44, 49, 63, 71, 72, 76, 81, 82, 85, 87, 88, 99, 101, 104, 106, 107, 110, 113, 116, 122, 129, 131, 132, 134, 149, 152, 158, 164, 167, 170, 179, 185, 186, 189, 190, 198, 199, 202, 204, 215, 222, 231, 232, 234, 235, 236], "twofactor": 5, "twofactor_backupcod": 40, "twofactor_test": 144, "twofactorauth": [144, 215, 229, 233], "twofactorproviderchallengefail": 229, "twofactorproviderchallengepass": 229, "twofactorproviderdis": 229, "twofactorproviderforuserdis": 229, "twofactorproviderforuseren": 229, "twofactorproviderforuserregist": 229, "twofactorproviderforuserunregist": 229, "twofactorprovideruserdelet": 229, "twofactortestprovid": 144, "tx": 16, "txt": [38, 61, 62, 69, 87, 103, 104, 110, 152, 209], "type": [5, 8, 13, 15, 16, 17, 20, 22, 28, 29, 31, 32, 36, 40, 42, 43, 45, 46, 50, 52, 53, 54, 56, 58, 59, 61, 62, 64, 66, 69, 73, 76, 80, 82, 84, 85, 87, 92, 94, 95, 96, 98, 101, 103, 104, 110, 112, 113, 114, 115, 120, 125, 126, 127, 129, 132, 134, 135, 136, 147, 148, 150, 151, 152, 153, 165, 167, 172, 174, 179, 181, 184, 185, 189, 190, 192, 195, 198, 199, 200, 209, 215, 220, 221, 222, 228, 229, 230, 231, 232, 233, 234, 237], "type_bool": 132, "type_int": [104, 132], "type_mor": 96, "type_new": 96, "type_setup": 96, "type_us": 132, "typeda": 93, "typehint": 215, "typeiconclass": 126, "typeof": 101, "typescript": [28, 115, 185, 190], "typestr": 126, "typic": [3, 16, 19, 20, 21, 32, 42, 61, 69, 80, 95, 101, 107, 116, 118, 131, 132, 137, 140, 141, 142, 154, 185, 190], "typing_in_psalm": 49, "typo": 8, "typographi": 78, "u": [33, 40, 42, 44, 46, 48, 63, 64, 66, 82, 96, 98, 101, 125, 129, 136, 152, 156, 161, 165, 169, 190, 192, 234, 240], "u29tzvnpz25lzerhdgffegftcgxl": 10, "ubuntu": 15, "ui": [5, 25, 46, 69, 70, 76, 77, 81, 99, 101, 115, 126, 129, 132, 135, 138, 151, 153, 154, 165, 166, 167, 172, 179, 181, 192, 194, 199, 228, 231, 235], "ui_exampl": [154, 167, 171, 181], "uid": [17, 18, 22, 37, 40, 44, 61, 106, 107, 146, 218], "uk": 118, "ul": [184, 193, 198, 199, 200], "umgehen": 5, "un": [61, 130], "unabl": [14, 49, 135], "unam": 152, "unannounc": 14, "unauthent": 101, "unauthor": [50, 59, 161, 209], "unauthorizedexcept": 140, "uncertain": [141, 142], "unchang": 69, "unclear": 206, "uncomput": 61, "undefin": [42, 73, 82, 101, 186, 234], "undefinedclass": 95, "undefineddocblockclass": 95, "under": [1, 14, 15, 20, 21, 61, 71, 76, 79, 82, 101, 122, 152, 154, 185, 189, 190, 222, 228, 243], "undergo": 105, "underli": [38, 82, 132, 231, 232], "underscor": [5, 20, 37, 54, 69, 94, 187, 190], "understand": [16, 20, 22, 42, 43, 49, 73, 82, 113, 114, 125, 131, 140, 150, 151, 161, 190, 206], "undo": [79, 185, 197], "unescap": [26, 209], "unexpect": [14, 22, 37, 188], "unexpectedli": 233, "unfamiliar": 21, "unfavor": 76, "unfortun": [192, 228], "unfreez": 185, "unhandl": 101, "unhappi": 204, "unicod": 42, "unifi": [47, 101, 115, 118, 132, 220, 221, 231, 233], "uniform": [101, 236], "uninstal": [5, 14, 130, 149, 154, 178], "unintend": 188, "unintent": 14, "unintention": 231, "union": 49, "uniqu": [20, 37, 44, 46, 61, 63, 69, 79, 92, 94, 96, 99, 101, 106, 121, 124, 132, 136, 140, 141, 144, 145, 165, 175, 188, 190, 204, 234], "unique_name_of_file_action_menu": 171, "unique_name_of_file_actions_menu": 171, "unique_name_of_script": 181, "unique_name_of_styl": 181, "unique_name_of_top_menu": 181, "uniqueconstraintviolationexcept": 234, "uniquememb": 218, "unit": [19, 21, 37, 70, 95, 98, 120, 185, 190, 201, 219, 241], "univers": [92, 129], "unix": [54, 56, 107, 121, 140, 185, 232, 236], "unixtim": 63, "unknown": [52, 61, 69, 81, 92, 101, 104, 231, 234, 240], "unknownactivityexcept": [69, 231], "unknownnotificationexcept": 231, "unless": [14, 20, 61, 81, 90, 92, 97, 122, 131, 139, 140, 141, 142, 152, 185, 193, 209, 211, 222, 238], "unlik": [61, 82, 156, 166, 169, 190], "unlimit": 61, "unnecessari": 42, "unnecessarili": 20, "unnot": 15, "unoffici": 222, "unpredict": [49, 130], "unpublish": 22, "unread": [61, 76, 77, 96, 148, 199], "unregist": [153, 172], "unregistercalendar": 224, "unrel": [76, 122, 231], "unsaf": [216, 229], "unselect": 195, "unset": [52, 69, 218], "unshar": [22, 61], "unsign": [10, 37, 136], "unsigned_fil": 82, "unsplash": 73, "unstabl": [86, 113], "unsubscrib": 232, "unsupport": [13, 101, 204], "unsur": 204, "until": [18, 20, 44, 48, 115, 132, 137, 141, 142, 166, 231], "untouch": [40, 222], "untranslat": 8, "untyp": 22, "unus": [29, 122, 211, 222, 233], "unvalid": 208, "unwillingli": 209, "up": [3, 5, 7, 8, 9, 14, 15, 18, 19, 20, 21, 41, 42, 44, 48, 49, 64, 76, 85, 89, 94, 95, 96, 106, 115, 122, 132, 134, 140, 141, 142, 148, 152, 153, 155, 163, 167, 185, 187, 190, 191, 192, 199, 201, 204, 206, 214, 225, 227, 229, 231, 232, 234, 241, 243], "upcom": [45, 85, 138, 233, 238], "updat": [3, 5, 8, 10, 12, 14, 15, 17, 18, 21, 22, 33, 37, 40, 42, 45, 48, 49, 50, 61, 64, 70, 73, 81, 82, 88, 89, 90, 93, 94, 96, 97, 102, 113, 115, 118, 122, 130, 134, 140, 152, 153, 162, 165, 168, 170, 177, 178, 188, 189, 190, 192, 223, 227, 228, 230, 231, 233, 234, 235, 236, 238, 239], "updateaccess": 94, "updateaccessdeclar": 94, "updateaccessop": 94, "updateaccessprovid": 94, "updatecachedcalendarobject": 221, "updatecalendar": 221, "updatecalendarobject": 221, "updatecard": 221, "updated_at": 129, "updatefilesmetadata": 104, "updateglobalindex": 93, "updategloballazi": 93, "updateglobalsensit": 93, "updateindex": 93, "updatelazi": [90, 93], "updatenotif": [5, 230], "updatesensit": [90, 93], "updateshar": 221, "updatesubscript": 221, "updatetodo": 49, "updateusermanag": 146, "upgrad": [10, 21, 40, 82, 89, 130, 189, 206, 212, 214], "upload": [10, 15, 16, 52, 65, 66, 71, 73, 75, 76, 81, 101, 104, 122, 154, 209, 230, 231], "upload_path": 62, "upload_tim": [61, 66], "uploadlimit": 233, "uploadoper": 70, "uploadremotefileoper": 70, "upon": [6, 21, 82, 105, 107, 116, 117, 134, 137, 142, 206], "upper": [77, 82], "uppercamelcas": 187, "uppercas": [1, 20, 30, 42, 81, 89], "upscal": [171, 174], "upscaled_image_nam": 174, "upscaler_exampl": 171, "upstream": [222, 229], "upvot": 188, "urandom": 62, "urgenc": 90, "urgent": [14, 96], "uri": [52, 70, 106, 107, 108, 140], "url": [5, 7, 13, 19, 20, 21, 24, 27, 28, 31, 32, 37, 43, 44, 46, 48, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 69, 70, 73, 76, 82, 94, 96, 99, 101, 105, 106, 108, 115, 124, 126, 128, 129, 131, 132, 133, 135, 153, 154, 165, 169, 171, 172, 174, 178, 179, 181, 189, 190, 192, 194, 209, 215, 231, 240, 243], "url_regex_no_modifi": 230, "urlencod": [20, 44], "urlgener": [28, 31, 34, 96, 124, 132, 134, 135, 147, 215, 232], "urlparam": [21, 25, 30, 36, 49, 96, 99, 110, 124, 126, 145], "urlparamet": 33, "urn": 64, "us": [0, 1, 2, 3, 5, 8, 10, 14, 15, 16, 17, 18, 19, 22, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 52, 55, 56, 57, 60, 61, 62, 63, 64, 66, 69, 70, 71, 72, 73, 76, 77, 79, 81, 85, 87, 89, 90, 92, 93, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 108, 110, 112, 113, 115, 116, 118, 119, 120, 122, 123, 124, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 158, 160, 161, 162, 164, 165, 166, 167, 170, 171, 173, 174, 175, 176, 179, 184, 185, 187, 188, 189, 190, 192, 193, 194, 195, 196, 198, 199, 200, 202, 209, 210, 211, 213, 215, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 242, 243], "usabl": [79, 129, 185], "usag": [15, 21, 28, 35, 42, 65, 76, 86, 95, 107, 113, 125, 131, 154, 173, 175, 185, 188, 194, 196, 221, 222, 225, 232, 233, 241], "use_path_styl": 192, "use_ssl": 192, "usebackend": 233, "usecas": 232, "usedock": 243, "user": [0, 1, 5, 6, 8, 10, 13, 16, 18, 21, 25, 29, 32, 34, 35, 37, 38, 39, 43, 45, 50, 52, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 75, 77, 78, 79, 81, 82, 83, 84, 86, 90, 92, 93, 94, 98, 99, 101, 104, 105, 106, 107, 109, 110, 111, 113, 115, 117, 119, 121, 122, 124, 128, 129, 131, 132, 133, 135, 139, 140, 141, 144, 149, 150, 153, 155, 156, 160, 162, 165, 167, 170, 172, 174, 176, 178, 179, 186, 187, 188, 189, 190, 191, 192, 194, 199, 200, 201, 204, 209, 215, 218, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 233, 235, 240, 243], "user1": [48, 69, 110], "user123": 146, "user2": [48, 110], "user3": 48, "user_ag": 44, "user_id": 40, "user_ldap": [17, 134, 221, 229], "user_oidc": 119, "user_prefer": 25, "user_saml": 192, "user_statu": [54, 239], "useraddedev": 229, "userbackendregist": 221, "usercach": 232, "userchangedev": 229, "userconfig": [91, 113, 114], "userdeletedev": 229, "userdeletedlisten": 0, "userfacingprocessingexcept": 140, "userfirsttimeloggedinev": 229, "userfold": 38, "usergrouplist": 193, "userid": [1, 17, 21, 22, 29, 36, 46, 50, 54, 56, 57, 63, 70, 87, 93, 94, 96, 110, 116, 121, 124, 137, 138, 140, 141, 142, 146, 164, 170, 171, 190, 218, 227, 229, 233], "useridassignedev": 232, "useridunassignedev": 232, "userloggedinev": 224, "usermanag": [1, 31, 146, 232], "usermigr": [145, 228], "usermigrationexcept": 145, "usermountaddedev": 233, "usermountcach": 232, "usermountremovedev": 233, "usermountupdatedev": 233, "usernam": [44, 46, 61, 66, 70, 146, 156, 186, 190, 192, 209], "useroidc": 119, "userratelimit": 20, "userratethrottl": 20, "userremovedev": [221, 229], "userservic": 146, "usersess": [38, 146, 232], "userset": [186, 234], "usersingroup": 228, "userstatu": 138, "userupd": 229, "userupdatedev": 229, "usesess": 227, "usestrictdynam": 20, "usestrictdynamiconscript": [20, 229], "usetokenscop": 101, "usr": [15, 82, 98, 152], "usual": [10, 15, 20, 21, 22, 25, 42, 49, 61, 71, 76, 90, 99, 122, 136, 140, 148, 151, 154, 162, 165, 185, 188, 190, 199, 204, 232], "utc": 143, "utf": [5, 61, 64, 66, 104, 107], "util": [0, 18, 21, 22, 25, 30, 31, 82, 96, 113, 114, 115, 126, 127, 129, 143, 145, 152, 153, 166, 182, 190, 197, 211, 215, 216, 218, 221, 223, 227, 228, 229, 231, 232, 233, 235], "uuid": [63, 106], "ux": [79, 185, 200], "uxi": 10, "v": [16, 46, 61, 82, 126, 129, 149, 192, 232, 243], "v1": [3, 5, 20, 33, 43, 44, 46, 50, 51, 52, 53, 54, 59, 87, 96, 101, 107, 166, 168, 169, 170, 171, 173, 174, 175, 177, 179, 180, 181, 182, 222, 231, 233], "v12": 223, "v14": 223, "v2": [3, 20, 33, 43, 46, 48, 50, 51, 52, 54, 56, 57, 58, 59, 65, 75, 87, 96, 101, 129, 131, 132, 153, 171, 221, 233, 240], "v3": [16, 185], "v30": 5, "v31": [5, 93], "v32": 92, "v33": 140, "v4": [220, 234], "val": 25, "valid": [5, 10, 17, 20, 22, 44, 46, 49, 54, 61, 73, 76, 90, 95, 97, 101, 105, 107, 113, 114, 115, 119, 123, 128, 152, 153, 164, 186, 192, 194, 199, 204, 209, 215, 231, 233, 242], "validatefilenam": 234, "validatemailaddress": 233, "validateoper": 105, "validatepasswordpolicyev": 232, "validatesyncsetup": 8, "validationexcept": 140, "valu": [1, 2, 5, 14, 17, 20, 22, 25, 26, 28, 29, 34, 37, 39, 43, 45, 46, 52, 54, 59, 61, 69, 76, 81, 87, 92, 94, 96, 98, 99, 101, 104, 107, 110, 120, 122, 124, 125, 131, 132, 134, 139, 140, 141, 145, 148, 153, 166, 170, 172, 173, 174, 179, 181, 186, 187, 190, 192, 194, 195, 199, 200, 218, 220, 222, 227, 230, 231, 233], "value1": 69, "value_is_arrai": 1, "value_non": 1, "value_opt": 1, "value_requir": 1, "valuetyp": [92, 93], "valwithfallback": 25, "vanilla": [186, 232], "var": [0, 1, 7, 22, 25, 29, 35, 40, 42, 103, 104, 106, 107, 122, 124, 125, 126, 130, 132, 134, 136, 138, 139, 146, 147, 149, 156, 165, 184, 189, 192, 194, 199, 209, 231], "var_dump": [123, 187], "vari": [43, 110, 189], "variabl": [15, 21, 24, 25, 26, 36, 41, 42, 70, 77, 78, 82, 86, 100, 107, 113, 132, 154, 158, 185, 188, 190, 197, 209, 227, 229, 231, 233, 243], "variant": [37, 76, 87, 194, 227, 233], "varieti": 98, "variou": [13, 20, 21, 38, 41, 61, 76, 83, 98, 115, 129, 131, 138, 150, 197, 235, 236], "vc": 82, "vcal": 107, "vcalendar": 107, "vcard": 108, "vcs_comment": 129, "vcs_issu": 129, "vcs_pull_request": 129, "vcvarsal": 82, "vdebug": 98, "ve": [7, 21, 156, 204, 214, 234], "vector": 209, "vein": 140, "vendor": [0, 3, 8, 16, 23, 89, 95, 210], "vendor_script": 233, "vendor_styl": 23, "verb": [20, 21, 33, 42, 43, 64, 76, 81, 128, 131, 178, 190, 209, 240], "verbos": [21, 29], "veri": [0, 2, 3, 15, 16, 21, 23, 35, 44, 107, 122, 125, 128, 131, 140, 198, 199, 209], "verif": [10, 76, 152, 192], "verifi": [10, 99, 144, 152, 156, 161, 164, 179, 190, 192], "verify_peer_off": 192, "verifychalleng": 144, "verifymountpointev": 220, "verifypassword": [20, 128], "verifypath": 231, "versa": [37, 134], "versatil": 22, "version": [3, 5, 8, 10, 15, 17, 18, 20, 21, 22, 23, 25, 30, 33, 34, 37, 40, 42, 43, 44, 46, 48, 49, 50, 55, 56, 57, 58, 61, 63, 64, 65, 66, 69, 72, 73, 75, 82, 85, 89, 90, 92, 93, 94, 95, 96, 98, 99, 101, 104, 108, 110, 115, 116, 118, 120, 121, 122, 125, 127, 130, 131, 132, 134, 136, 137, 140, 141, 142, 145, 146, 149, 151, 154, 164, 165, 170, 171, 185, 189, 190, 191, 194, 196, 204, 206, 210, 212, 214, 217, 218, 220, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 238, 239, 240], "version2404date20220903071748": 40, "version30000date20240729185117": 40, "version_compar": 16, "versionnumb": 190, "versu": 188, "vertic": [43, 160], "vevent": 107, "vfc": 43, "vghlihf1awnrigjyb3duigzveapqdw1wcybvdmvycnrozsbsyxp5igrvzy4": 48, "via": [0, 8, 15, 16, 17, 20, 22, 25, 29, 40, 42, 44, 46, 49, 52, 54, 61, 64, 67, 68, 69, 72, 75, 76, 79, 82, 88, 99, 105, 108, 113, 115, 116, 119, 126, 128, 129, 132, 137, 140, 141, 142, 144, 147, 149, 151, 153, 154, 158, 171, 175, 178, 185, 190, 202, 207, 209, 210, 222, 231, 233, 243], "vice": [37, 134], "video": [20, 21, 71, 137, 139, 140, 171, 184], "view": [5, 16, 17, 22, 31, 32, 40, 52, 69, 73, 76, 87, 96, 98, 129, 131, 132, 144, 186, 192, 193, 198, 219, 228, 237], "viewer": [47, 52, 76, 87, 129, 189, 219, 230, 234], "vim": [98, 149, 192], "vimeo": [3, 95], "violat": [14, 20, 49], "virtual": [82, 152], "visibility_contacts_onli": 233, "visibility_priv": 233, "visibility_publ": 233, "visibl": [5, 14, 20, 27, 38, 46, 76, 129, 135, 140, 181, 194, 229, 233], "visit": [124, 243], "visual": [76, 77, 190, 194, 199, 231], "vm": 96, "vnd": 43, "voic": 140, "void": [0, 1, 2, 19, 21, 22, 25, 29, 30, 31, 36, 37, 40, 42, 43, 49, 70, 92, 94, 96, 99, 101, 103, 104, 106, 107, 108, 110, 112, 116, 121, 124, 125, 126, 129, 132, 133, 135, 137, 138, 140, 141, 142, 145, 146, 147, 148, 227, 228], "volum": [149, 154, 162, 165], "vpn": 161, "vtodo": 107, "vue": [7, 8, 20, 25, 28, 73, 76, 81, 96, 105, 118, 126, 129, 151, 154, 190, 194, 196, 209, 226, 231, 232, 234, 235, 241], "vueelement": 129, "vuej": [73, 196], "vuerout": 154, "vuex": 154, "vulner": [12, 14, 188, 209], "w": [61, 243], "w3": [5, 79, 95, 108, 130], "w500": 129, "wa": [1, 10, 15, 16, 17, 20, 22, 49, 50, 52, 56, 57, 58, 61, 63, 64, 69, 82, 87, 90, 97, 101, 105, 106, 107, 115, 121, 122, 125, 129, 131, 132, 136, 137, 140, 141, 142, 144, 167, 204, 210, 213, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238], "wai": [5, 15, 20, 21, 22, 25, 29, 37, 38, 40, 42, 46, 49, 52, 61, 79, 82, 87, 89, 90, 92, 93, 99, 107, 115, 119, 122, 125, 126, 129, 130, 131, 132, 134, 145, 149, 152, 154, 158, 159, 160, 167, 185, 189, 190, 194, 196, 199, 204, 209, 228, 229, 234, 243], "wait": [15, 25, 104, 115, 122, 161, 166, 188], "walin": 129, "walinej": 129, "want": [0, 3, 10, 14, 15, 18, 20, 22, 25, 29, 32, 33, 35, 46, 49, 53, 64, 70, 71, 76, 79, 82, 83, 89, 90, 92, 94, 95, 96, 99, 101, 105, 107, 115, 116, 118, 126, 127, 128, 129, 131, 140, 141, 142, 144, 149, 152, 154, 166, 171, 178, 185, 189, 190, 198, 199, 200, 205, 209, 214, 229, 231, 236, 240, 243], "warn": [10, 17, 22, 29, 49, 76, 77, 82, 87, 90, 92, 122, 130, 131, 135, 156, 186, 187, 192, 194, 220, 222, 233], "wasm": 229, "wasn": [116, 224], "watch": [14, 21, 100, 113, 122, 190, 239, 243], "watermark": [140, 234], "wave": 79, "wcag": 79, "we": [2, 8, 9, 14, 15, 18, 34, 37, 40, 42, 43, 44, 49, 62, 63, 72, 73, 82, 95, 105, 107, 110, 115, 118, 122, 124, 126, 128, 129, 135, 140, 141, 142, 147, 149, 150, 151, 152, 154, 157, 158, 165, 169, 175, 184, 185, 186, 188, 189, 193, 195, 198, 199, 200, 202, 204, 205, 210, 211, 215, 218, 220, 222, 223, 226, 227, 229, 232, 233, 234, 239, 240], "weather": 176, "web": [20, 23, 25, 27, 32, 42, 44, 46, 74, 86, 87, 98, 101, 112, 113, 122, 129, 130, 131, 135, 156, 191, 192, 204, 209, 231, 232, 234, 243], "web_compon": 234, "webassembli": 229, "webauthn": 241, "webbrows": 44, "webdav": [2, 17, 22, 44, 46, 64, 66, 67, 68, 73, 74, 75, 102, 107, 113, 114, 115, 122, 171, 201, 227, 232, 233], "webfing": 222, "webfingerhandl": 147, "webhook": [140, 231, 234], "webhook_listen": 231, "webkit": 101, "webpack": [115, 118, 220, 223, 231], "webpag": 44, "webroot": [21, 209, 220, 227], "webserv": [135, 149, 153, 165], "websit": [5, 20, 46, 79, 95, 124, 129, 131, 179, 209, 222], "websocket": 154, "webview": [75, 113], "wed": 61, "week": [139, 188], "weekend": 14, "weekli": [101, 139], "weight": [77, 231], "welch": 5, "welcom": [14, 122, 125, 202, 212, 240], "well": [0, 10, 14, 16, 20, 22, 42, 46, 52, 76, 80, 82, 95, 96, 107, 124, 125, 126, 128, 129, 131, 134, 137, 140, 145, 147, 188, 189, 192, 202, 204, 214, 225, 228, 229, 231, 232, 233, 234], "wellknown": 147, "went": [29, 81, 141, 142, 204, 226], "were": [10, 29, 33, 40, 79, 93, 116, 128, 129, 131, 148, 204, 210, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 238, 239], "wescan": 42, "wget": 152, "what": [14, 16, 20, 21, 49, 62, 70, 77, 79, 80, 81, 82, 96, 105, 106, 107, 115, 122, 125, 131, 140, 141, 142, 148, 166, 185, 187, 188, 190, 197, 202, 204, 209, 222, 228], "whatev": [15, 20, 107, 147, 190, 200], "whats_new": 234, "whatsnew": 234, "whatsnewcontrol": 234, "when": [0, 1, 3, 6, 10, 14, 15, 16, 17, 18, 21, 22, 25, 27, 29, 30, 33, 35, 36, 37, 40, 41, 42, 43, 44, 46, 48, 49, 52, 54, 56, 57, 58, 60, 61, 69, 70, 76, 77, 79, 81, 82, 87, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 104, 105, 107, 113, 114, 115, 118, 119, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 137, 138, 140, 141, 142, 144, 152, 153, 156, 159, 162, 165, 166, 168, 169, 171, 178, 179, 184, 185, 188, 189, 190, 194, 198, 199, 204, 206, 209, 210, 213, 215, 221, 222, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 243], "whenev": [22, 76, 96, 124, 127, 144, 145, 152, 188], "where": [0, 5, 10, 13, 18, 20, 21, 25, 29, 37, 44, 46, 49, 61, 62, 63, 66, 70, 76, 81, 82, 89, 90, 95, 97, 99, 104, 106, 115, 122, 125, 129, 131, 132, 144, 148, 149, 150, 154, 165, 171, 178, 180, 185, 188, 190, 192, 203, 204, 209, 222, 227, 228, 229, 231, 233, 234], "wherea": 144, "wherev": [21, 82, 83], "whether": [0, 31, 34, 49, 53, 56, 58, 61, 69, 96, 101, 105, 116, 132, 134, 136, 140, 144, 181, 188, 190, 213, 226, 231, 232, 233, 234], "which": [0, 1, 3, 5, 7, 8, 10, 14, 15, 16, 17, 20, 22, 25, 26, 28, 29, 32, 33, 37, 38, 40, 42, 43, 44, 47, 49, 50, 52, 61, 63, 69, 71, 72, 76, 80, 82, 89, 90, 94, 95, 96, 97, 98, 101, 104, 105, 107, 110, 115, 116, 119, 122, 125, 126, 129, 130, 131, 132, 135, 136, 137, 140, 141, 142, 143, 149, 150, 151, 152, 154, 156, 160, 161, 165, 166, 167, 169, 171, 175, 179, 185, 187, 189, 190, 192, 193, 194, 198, 199, 204, 209, 211, 222, 226, 227, 228, 231, 232, 233, 234, 235, 243], "while": [15, 20, 21, 22, 38, 40, 42, 44, 46, 56, 58, 76, 81, 82, 87, 96, 97, 98, 101, 105, 107, 122, 130, 140, 151, 152, 161, 186, 194, 204, 206, 220, 228, 234], "white": [42, 46, 187, 195, 200], "whiteboard": 101, "whitelist": [17, 20, 22], "whitespac": [42, 98], "who": [10, 14, 20, 29, 46, 69, 79, 101, 107, 132, 140, 153, 185, 204, 206, 231], "whoami": 82, "whoever": 204, "whole": [48, 49, 62, 77, 148, 193, 198], "whom": 12, "whose": [29, 166], "why": [20, 33, 125, 186, 187, 188], "wide": [21, 25, 37, 76, 118, 185, 190, 194, 231], "widget": [17, 22, 86, 113, 126, 230], "widget_url": 96, "widgetbutton": 96, "widgetitem": 96, "widgetopt": 96, "width": [17, 22, 77, 129, 184, 186, 194, 229], "wiki": [5, 82, 136], "wikipedia": [5, 136], "wild": 142, "willing": [188, 204], "win": 82, "win32": 82, "window": [18, 20, 83, 101, 154, 218, 234], "winter": 43, "wipe": [75, 201], "wire": [1, 41, 89, 90], "wise": [20, 122, 209, 233], "wiser": [141, 142], "wish": [82, 199, 204], "with_doc": 82, "withfield": 233, "within": [8, 10, 15, 20, 21, 49, 52, 56, 61, 63, 64, 70, 76, 82, 85, 88, 99, 101, 106, 107, 113, 134, 135, 148, 150, 153, 156, 175, 202, 218, 230, 231, 232, 234], "without": [3, 5, 20, 21, 37, 40, 41, 42, 43, 49, 51, 61, 64, 76, 81, 82, 85, 96, 98, 99, 101, 104, 107, 122, 123, 129, 131, 140, 149, 152, 153, 156, 166, 178, 188, 189, 190, 206, 209, 210, 224, 228, 229, 231, 232, 233, 236, 241, 243], "withtimezon": [127, 143], "won": [10, 14, 16, 42, 61, 96, 124, 152, 204, 215, 220, 221], "wonder": 49, "wopi": 101, "word": [1, 30, 42, 69, 76, 78, 81, 105, 129, 185, 186], "wordprocessingml": 43, "work": [1, 3, 8, 13, 14, 15, 16, 18, 20, 28, 32, 37, 38, 44, 46, 49, 52, 60, 61, 71, 76, 79, 82, 89, 96, 98, 104, 106, 107, 113, 114, 115, 122, 125, 126, 128, 130, 132, 134, 135, 144, 148, 151, 154, 156, 159, 160, 162, 166, 167, 175, 185, 186, 191, 194, 204, 206, 210, 213, 222, 225, 228, 229, 231, 233, 235, 236, 242], "workaround": 82, "workdir": 152, "worker": [140, 160, 229], "workflow": [3, 15, 17, 20, 22, 81, 95, 105, 113, 151, 152, 165, 171, 201, 210, 232], "workflow_ocr_backend": 152, "workflowengin": [105, 219, 221, 228, 229], "workflowpdfconvert": 105, "workspac": [61, 96, 239], "world": [42, 43, 130, 190], "worri": [21, 49, 222], "would": [0, 5, 7, 8, 14, 20, 21, 25, 30, 33, 37, 40, 41, 44, 46, 61, 72, 77, 89, 105, 106, 107, 116, 130, 131, 132, 134, 135, 137, 140, 141, 142, 150, 166, 187, 189, 196, 204, 209, 228, 230, 232, 243], "wrap": [1, 20, 29, 33, 94, 122, 143, 198, 229, 232, 240], "wrapper": [49, 97, 123, 193, 198, 228, 232, 237], "writabl": [7, 61, 107, 152, 167, 189, 209], "writablecalendar": 106, "write": [2, 8, 10, 15, 20, 21, 28, 29, 33, 35, 37, 41, 43, 49, 61, 77, 78, 82, 86, 90, 97, 99, 105, 106, 113, 129, 135, 140, 141, 150, 151, 152, 154, 184, 190, 201, 202, 209, 232], "writecontenttofil": 38, "writeln": [1, 145], "writelog": 229, "written": [5, 18, 20, 22, 29, 37, 42, 77, 107, 115, 141, 154, 167, 185, 190, 206, 239], "wrong": [8, 29, 33, 42, 49, 52, 70, 76, 81, 141, 142, 204], "wrongli": [42, 122], "www": [5, 7, 8, 20, 33, 40, 42, 95, 97, 108, 118, 125, 129, 130, 136, 156, 165, 189, 190, 192, 219, 220, 221, 231, 243], "wwwrun": 189, "x": [8, 10, 16, 20, 40, 44, 46, 48, 49, 60, 61, 62, 63, 64, 66, 69, 74, 96, 101, 125, 129, 132, 152, 188, 209, 222, 229, 232, 234, 238], "x3mucdk9lcfo1uwgtrtfkuxskx41pnjgtr6rqwgibd1v52q1qbc": 10, "x509": 192, "x64": 82, "x86": 82, "xarg": 95, "xcode": 82, "xdebug": [100, 113], "xdebug_config": 98, "xdebug_profil": 62, "xdebug_session_start": 98, "xhr": [125, 209], "xml": [1, 3, 5, 6, 13, 20, 21, 22, 32, 34, 37, 41, 44, 46, 52, 53, 61, 64, 66, 69, 89, 104, 107, 108, 120, 130, 131, 134, 144, 151, 154, 156, 167, 176, 178, 183, 189, 231, 232, 234, 240], "xmlhttprequest": 61, "xmln": [5, 61, 64, 66, 95, 104, 108, 130], "xmlreader": 242, "xmlrespons": 20, "xmlschema": [5, 95, 108, 130], "xmlstarlet": 154, "xsd": [3, 5, 95, 108, 130], "xsi": [3, 5, 95, 108, 130], "xss": [26, 209], "xx": 222, "xxx": 232, "xxxx": 199, "xzf": 152, "y": [1, 16, 62, 69, 132, 192, 232, 234, 238], "yaml": 15, "ye": [1, 81, 87, 104, 131, 186, 188, 192], "year": [14, 185, 211, 230, 238, 240], "yet": [5, 7, 20, 25, 40, 50, 56, 61, 107, 115, 122, 135, 144, 174, 185, 186, 206, 239], "yield": [33, 49, 120, 135], "yieldent": 231, "yktva4zgxjfivy52wqd8kw3m2pkgqr6srmuxmiprdunxjpfripjn0gmfmtnoqoolysuj6scn": 44, "you": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 37, 38, 40, 41, 42, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 69, 70, 71, 72, 73, 76, 79, 82, 83, 87, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 104, 105, 106, 107, 115, 116, 118, 120, 122, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 137, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 156, 158, 159, 161, 162, 164, 165, 166, 167, 169, 171, 173, 175, 179, 185, 186, 187, 189, 191, 192, 193, 194, 195, 196, 198, 199, 200, 203, 206, 209, 210, 211, 212, 214, 215, 217, 218, 219, 220, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238, 239, 240, 241, 243], "your": [0, 2, 3, 5, 7, 8, 9, 11, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 37, 38, 40, 41, 45, 46, 48, 61, 62, 63, 64, 69, 70, 75, 76, 79, 81, 82, 83, 87, 89, 90, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 110, 113, 115, 116, 118, 122, 125, 126, 128, 130, 131, 132, 134, 135, 136, 137, 139, 140, 141, 142, 148, 149, 151, 153, 154, 155, 156, 160, 161, 164, 165, 166, 167, 171, 179, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 198, 199, 200, 201, 204, 206, 209, 210, 213, 214, 217, 218, 219, 220, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238, 239, 240, 243], "your_app": 25, "your_app_": 134, "your_app_categori": 134, "your_app_mag": 134, "yourapp": [25, 134, 186, 190, 240], "yourappid": [134, 193], "yourappnam": [107, 190], "yourappnamespac": 134, "yourarch": 82, "yourpass": 82, "yourself": [8, 20, 29, 38, 43, 89, 185, 188, 190, 233], "yourselv": 190, "youtub": [184, 243], "yyyi": [50, 52], "yyyymmddhhmmss": 40, "z": [69, 231, 234, 238], "z87agy2o": 96, "zend_extens": 98, "zero": 122, "zip": [15, 43, 61, 63, 232, 242], "ziprespons": 232, "zone": 76}, "titles": ["Bootstrapping", "occ commands", "Extending the DAV server", "Dependency management", "App development", "App metadata", "Navigation and pre-app configuration", "Introduction", "Translation", "Tutorial", "Code signing", "App publishing and maintenance", "Maintainers", "Monetizing your app", "The Nextcloud app store rules", "Release Automation", "Release process", "OCP\\Accounts\\UserUpdatedEvent", "Background jobs (Cron)", "Caching", "Controllers", "Containers / Dependency Injection", "Events", "CSS", "Front-end", "JavaScript", "Templates", "Theming support", "Basic concepts", "Logging", "Middlewares", "Public share template", "Request lifecycle", "Routing", "Settings", "AppData", "Configuration", "Database access", "Nextcloud filesystem API", "Storage and database", "Migrations", "Testing", "Translations", "Client Integration", "Login Flow", "OCS API", "OCS APIs overview", "Assistant OCS API", "OCS FullTextSearch Collection API", "OCS OpenAPI tutorial", "OCS Out-of-office API", "OCS Recommendations API", "OCS Share API", "OCS Sharee API", "OCS Status API", "OCS TaskProcessing API", "OCS Text-To-Image API", "OCS TextProcessing API", "OCS Translation API", "OCS user preferences API", "Remote wipe", "Basic File & Folder Operations", "File bulk upload", "Chunked file upload", "Comments", "WebDAV", "Search", "Trashbin", "Versions", "Activity API", "Examples", "Android", "Library installation", "Files", "General", "Clients and Client APIs", "Components", "Foundations", "Design", "Introduction", "Layout", "Writing guide", "Building the Client", "Desktop Clients", "AI & Machine Learning", "API reference", "APIs & Integration", "Integrating the assistant", "Users & Authentication", "Classloader", "AppConfig", "Config & Preferences", "Lexicon", "UserConfig", "Context Chat", "Continuous Integration", "Dashboard", "Deadlocks", "Debugging", "Declarative settings", "Development Tools", "Direct editing", "Search & Discovery", "Email", "Files Metadata", "Nextcloud Flow", "Calendar integration", "Integration of custom calendar providers", "Contacts Menu", "Groupware integration", "Mail Provider Interface", "Groupware & Workflows", "HTTP Client", "Digging deeper", "Server Internals", "JavaScript APIs", "Machine Translation", "Notifications", "NPM", "OpenID Connect (Oidc)", "Open Metrics exporter", "Out-of-office periods", "Performance considerations", "Phone number util", "Profile", "Profiler", "Projects", "PSR", "Public Pages", "Reference providers", "Repair steps", "REST APIs", "Search", "Security", "Settings", "Setup checks", "Snowflake IDs", "Speech-To-Text", "User Status", "Talk Integration", "Task Processing", "Text-To-Image", "Text Processing", "Working with time", "Two-factor providers", "User migration", "User management", "Web Host Metadata", "WebDAV collection preload events", "Setting up dev environment", "Introduction", "ExApp development", "Adapting ExApps to HaRP", "ExApp lifecycle", "ExApp overview", "Development overview", "Corporate Proxy - Permanent Settings for PHP CLI", "Docker Container Registry", "Docker Socket Proxy", "GPU support", "Scaling", "Troubleshooting", "Frequently Asked Questions", "ExApp development", "Authentication", "Deployment", "App Installation Flow", "Translations", "AppConfig", "Events Listener", "ExApp", "File Actions Menu", "AppAPI Nextcloud APIs", "Logging", "Notifications", "OCC Command", "Other OCS APIs", "Preferences", "Routes", "Declarative Settings", "Talk bots", "Top Menu Entry", "Miscellaneous OCS APIs", "Technical details", "CSS and HTML coding standards", "Coding style & general guidelines", "JavaScript and Typescript", "PHP coding standards", "Development process", "Development environment", "Glossary", "Getting started", "How to test \u2026", "Main content", "CSS", "HTML elements", "Icons", "HTML/CSS guidelines", "Content list", "Introduction", "Popover menu", "Nextcloud developer documentation", "Code reviews on GitHub", "Bugtracker", "Nextcloud bug triaging", "Code of conduct", "Compatibility with the app ecosystem", "Help and communication", "Prologue", "Security guidelines", "Critical changes", "Deprecations", "Release notes", "New in this release", "Previous release notes", "Upgrade to Nextcloud 14", "Upgrade to Nextcloud 15", "Upgrade to Nextcloud 16", "Upgrade to Nextcloud 17", "Upgrade to Nextcloud 18", "Upgrade to Nextcloud 19", "Upgrade to Nextcloud 20", "Upgrade to Nextcloud 21", "Upgrade to Nextcloud 22", "Upgrade to Nextcloud 23", "Upgrade to Nextcloud 24", "Upgrade to Nextcloud 25", "Upgrade to Nextcloud 26", "Upgrade to Nextcloud 27", "Upgrade to Nextcloud 28", "Upgrade to Nextcloud 29", "Upgrade to Nextcloud 30", "Upgrade to Nextcloud 31", "Upgrade to Nextcloud 32", "Upgrade to Nextcloud 33", "Upgrade to Nextcloud 34", "Nextcloud filesystem API", "Nextcloud architecture", "Back-end code", "Front-end code", "External API", "Server development", "Static analysis", "Unit-Testing"], "titleterms": {"": [54, 89], "0": [127, 151, 222, 227, 228, 231], "1": [40, 42, 110, 151, 156, 225, 234], "11": [127, 221], "14": 215, "15": 216, "16": 217, "17": 218, "18": 219, "19": 220, "2": [40, 42, 110, 156, 227], "20": [0, 127, 221], "21": 222, "22": 223, "23": 224, "24": 225, "25": 226, "26": 227, "27": 228, "28": 229, "29": 230, "3": [40, 42, 110, 127, 151, 221, 229], "30": 231, "31": 232, "32": 233, "33": 234, "34": 235, "4": [127, 151, 227, 232], "401": 223, "5": [151, 234], "6": 151, "7": 227, "8": [190, 222, 225, 227, 229, 231, 232, 234], "A": 61, "Be": 14, "In": [19, 149], "NOT": 49, "No": 186, "Not": 10, "The": [0, 14, 15, 16, 35, 94, 96, 101, 107, 125, 190], "To": [56, 137, 141], "With": 61, "abort": 63, "about": [52, 61, 189], "abstractcacheev": [17, 22], "acceler": 151, "accept": 52, "access": [21, 37, 38, 106, 107, 108, 121], "account": [17, 22, 48], "acl": 107, "acquir": 112, "action": [15, 43, 76, 81, 108, 124, 171], "activ": 69, "activat": 144, "actual": 60, "ad": [6, 21, 38, 40, 42, 186, 213, 215, 227, 228, 229, 230, 231, 232, 233, 234], "adapt": 152, "add": [10, 49, 72, 181, 186], "addcontentsecuritypolicyev": [17, 22], "addfeaturepolicyev": [17, 22], "addhead": 49, "addit": 140, "addmissingcolumnsev": [17, 22], "addmissingindicesev": [17, 22], "addmissingprimarykeyev": [17, 22], "address": 82, "addressbookcreatedev": 22, "addressbookdeletedev": 22, "addressbookshareupdatedev": 22, "addressbookupdatedev": 22, "admin": [29, 99, 144], "advanc": [132, 140], "advantag": 21, "advic": 186, "affect": [10, 21, 206], "after": 16, "against": 135, "agent": 234, "ai": 84, "aio": 158, "ajax": [20, 190], "alias": 232, "align": [200, 235], "all": [49, 52, 54, 107, 243], "also": 101, "altern": 98, "alwai": 186, "an": [0, 7, 20, 44, 52, 101, 107, 128, 130, 140, 144, 152], "analysi": [95, 242], "android": [42, 71], "annot": [30, 227], "anyloginfailedev": [17, 22], "anymor": 10, "anywher": 21, "api": [38, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 69, 75, 85, 86, 90, 93, 96, 101, 104, 107, 115, 116, 128, 129, 131, 137, 140, 141, 142, 149, 172, 176, 182, 190, 196, 210, 213, 215, 216, 217, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 240], "app": [0, 4, 5, 6, 7, 10, 11, 13, 14, 16, 17, 22, 25, 36, 43, 44, 48, 56, 89, 92, 98, 115, 121, 125, 129, 132, 161, 166, 168, 189, 190, 199, 206, 221, 222, 234], "appapi": [149, 153, 158, 164, 172], "appapiauth": 164, "appconfig": [90, 168], "appdata": [35, 236], "appdisableev": [17, 22], "appenableev": [17, 22], "appframework": [17, 22, 90], "appinfo": 190, "applic": [0, 165, 190, 235], "appstor": 151, "appupdateev": [17, 22], "ar": 233, "architectur": [7, 237], "area": [76, 231], "argument": [1, 165], "around": 186, "arrai": [29, 186, 187], "arrow": 186, "art": 131, "ask": 162, "assembl": 63, "assembli": 21, "assist": [47, 77, 87], "associ": 107, "attach": 103, "attribut": [37, 52, 132, 190, 227], "audit": [17, 22, 29], "auth": [115, 144, 209], "authent": [17, 20, 22, 46, 88, 128, 153, 157, 164, 240], "auto": [21, 46], "autocomplet": [17, 22], "autocompleteev": [17, 22], "autocompletefilterev": [17, 22], "autoload": [89, 127], "autom": 15, "automat": [21, 188], "avail": [22, 29, 56, 57, 58, 196, 223, 227], "avatar": 76, "avoid": [97, 186], "axio": 115, "babel": 220, "back": [167, 210, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238], "backend": [20, 42, 154], "background": [18, 77, 104, 194], "backport": [8, 188], "backup": 54, "backward": 240, "bar": 195, "base": [20, 99, 104, 233], "basic": [20, 21, 28, 29, 61, 99, 103, 107, 198, 199, 200, 240], "been": 122, "befor": 16, "beforedirectfiledownloadev": [17, 22], "beforefilescannedev": [17, 22], "beforefilesystemsetupev": [17, 22], "beforefolderscannedev": [17, 22], "beforegettemplatesev": [17, 22], "beforegroupchangedev": [17, 22], "beforegroupcreatedev": [17, 22], "beforegroupdeletedev": [17, 22], "beforelogintemplaterenderedev": [17, 22], "beforemessageloggedev": [17, 22], "beforemessages": [17, 22], "beforenodecopiedev": [17, 22], "beforenodecreatedev": [17, 22], "beforenodedeletedev": [17, 22], "beforenodereadev": [17, 22], "beforenoderenamedev": [17, 22], "beforenodetouchedev": [17, 22], "beforenodewrittenev": [17, 22], "beforepasswordupdatedev": [17, 22], "beforepreferencedeletedev": [17, 22], "beforepreferencesetev": [17, 22], "beforepreviewfetchedev": [17, 22], "beforesabrepubliclyloadedev": [17, 22], "beforesharecreatedev": [17, 22], "beforesharedeletedev": [17, 22], "beforetemplaterenderedev": [17, 22], "beforeuseraddedev": [17, 22], "beforeusercreatedev": [17, 22], "beforeuserdeletedev": [17, 22], "beforeuseridunassignedev": [17, 22], "beforeuserloggedinev": [17, 22], "beforeuserloggedinwithcookieev": [17, 22], "beforeuserloggedoutev": [17, 22], "beforeuserremovedev": [17, 22], "beforezipcreatedev": [17, 22], "behavior": [90, 215, 218, 219, 228, 230], "benefit": 14, "best": [49, 148], "between": 186, "bodi": [66, 186, 221], "boolean": 223, "boot": 0, "bootstrap": [0, 221, 243], "border": [77, 231], "bot": 180, "brace": 186, "branch": [8, 16, 188], "break": 234, "brows": 87, "browser": 243, "brute": 20, "bu": 115, "bubbl": 76, "bucketcreatedev": [17, 22], "bug": [43, 204], "bugfix": 188, "bugtrack": 203, "build": [82, 118, 190, 239], "builder": 213, "built": 148, "bulk": 62, "bullet": 199, "button": [76, 81, 195, 199], "bypass": 209, "c": [42, 95], "cach": [17, 19, 22, 122, 125, 236], "cachedcalendarobjectcreatedev": 22, "cachedcalendarobjectdeletedev": 22, "cachedcalendarobjectupdatedev": 22, "cacheentryinsertedev": [17, 22], "cacheentryremovedev": [17, 22], "cacheentryupdatedev": [17, 22], "cacheinsertev": [17, 22], "cacheupdateev": [17, 22], "caldav": 107, "calendar": [17, 22, 106, 107], "calendarcreatedev": 22, "calendardeletedev": 22, "calendarobjectcreatedev": [17, 22], "calendarobjectdeletedev": [17, 22], "calendarobjectmovedev": [17, 22], "calendarobjectmovedtotrashev": [17, 22], "calendarobjectrestoredev": [17, 22], "calendarobjectupdatedev": [17, 22], "calendarpublishedev": 22, "calendarshareupdatedev": 22, "calendarunpublishedev": 22, "calendarupdatedev": 22, "call": [46, 101, 128], "callback": 22, "camelcas": 186, "capabl": [43, 46, 49, 69, 231], "card": 76, "cardcreatedev": 22, "carddeletedev": 22, "cardupdatedev": 22, "carefulli": 49, "case": 186, "cast": 20, "catchabl": 85, "caus": 156, "certain": 49, "chang": [15, 16, 40, 115, 206, 210, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 239, 240], "changelog": 5, "chat": 94, "cheat": 61, "check": [56, 69, 107, 135, 139, 189, 204], "checkbox": [76, 99, 195], "checker": 222, "chip": 76, "choos": 90, "christophwurst": 226, "chunk": 63, "class": [0, 1, 21, 22, 40, 99, 101, 107, 110, 186, 190, 194, 227, 228], "classload": 89, "clear": [50, 54], "cli": 156, "clickabl": 231, "clickjack": 209, "client": [42, 43, 71, 75, 82, 83, 96, 101, 112, 129, 228], "clock": 127, "cloud": 52, "cluster": [122, 192], "code": [1, 10, 15, 69, 70, 123, 184, 185, 186, 187, 188, 189, 202, 205, 209, 222, 236, 238, 239], "collabor": [17, 22], "collabora": 192, "collaps": 199, "collect": [48, 148], "color": [76, 77, 194, 196, 233], "column": [37, 223], "comma": 186, "command": [1, 33, 40, 42, 104, 175, 190, 223], "comment": [17, 22, 64, 81, 129, 187], "commentsentityev": [17, 22], "commentsev": [17, 22], "commit": 239, "common": 121, "commun": 207, "comparison": [131, 186], "compat": [115, 206, 238, 240], "compil": [82, 223], "complet": [20, 46, 60, 204], "compon": [69, 76, 105, 129, 186, 239], "compos": [3, 190], "concept": [28, 48, 90, 92, 93, 104, 128, 132, 190], "conclus": 149, "concurr": 20, "condit": [142, 186], "conduct": 205, "config": [8, 17, 22, 90, 91, 92, 93, 168, 177, 186], "configur": [6, 8, 18, 36, 105, 215], "confirm": 115, "conflict": 3, "connect": [20, 119], "consid": 49, "consider": [2, 20, 122, 152, 188, 204], "consist": [49, 186], "consol": [17, 22, 33, 40, 42], "consoleev": [17, 22], "constant": 90, "construct": 40, "consum": [85, 90, 93, 104, 110, 116, 137, 140, 141, 142], "contact": [17, 22, 108, 156], "contactinteractedwithev": [17, 22], "contain": [21, 30, 127, 157, 223], "content": [20, 67, 76, 94, 107, 186, 193, 198, 201], "contentitem": 94, "contentproviderregisterev": 94, "context": [29, 42, 94, 116, 137, 142], "continu": 95, "contribut": [125, 188], "control": [20, 21, 32, 49, 51, 129, 186, 187, 188, 190], "convent": [36, 184], "convers": 139, "convert": [44, 123], "cooki": [20, 153], "copi": 61, "cor": [131, 209], "core": [21, 25, 222, 224, 229], "corpor": 156, "correct": 42, "counter": [76, 199], "countri": 123, "creat": [1, 7, 20, 52, 61, 69, 70, 101, 106, 107, 110, 130, 139, 146, 161], "createj": 42, "creator": 101, "credenti": [44, 70], "critic": 210, "criticalactionperformedev": [17, 22], "cron": 18, "cross": [82, 209], "csp": [17, 22, 231], "csrf": [25, 190], "css": [23, 26, 27, 184, 194, 197, 219, 232], "curl": [46, 61], "current": 107, "custom": [20, 29, 37, 54, 107, 129, 139], "daemon": [149, 159], "daemonconfig": 165, "dangl": 186, "dashboard": 96, "data": [20, 29, 48, 49, 50, 94, 107, 121, 122, 129, 168, 170, 173, 177, 180, 182, 209, 240], "databas": [37, 39, 122, 125, 136, 189, 190, 210, 211, 222, 223], "date": [129, 189], "datetim": 76, "dav": [2, 22, 66], "db": [17, 22], "dbal": [222, 224, 229], "deactivat": 144, "deadlock": 97, "deal": 21, "debug": [98, 189, 243], "debugg": 98, "declar": [43, 99, 129, 132, 179], "declarativesettingsgetvalueev": [17, 22], "declarativesettingsregisterformev": [17, 22], "declarativesettingssetvalueev": [17, 22], "declin": 52, "decod": 136, "deeper": 113, "default": [20, 33, 129, 140, 234], "defin": [54, 135], "definit": [49, 186], "delet": [44, 52, 56, 59, 61, 67, 70, 104, 112, 139, 168, 177], "depend": [3, 21, 30, 72, 82, 190, 227, 229], "deploi": [149, 159, 165], "deploy": [82, 161, 165], "deprec": [211, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 230, 231, 232, 233, 234, 235], "descript": 49, "design": [49, 78, 196], "desktop": [42, 83], "detail": [10, 92, 115, 164, 183, 200], "detect": 116, "determin": 204, "dev": [118, 149], "develop": [3, 4, 43, 71, 82, 100, 115, 151, 155, 163, 165, 188, 189, 190, 201, 206, 229, 241], "devic": 60, "di": 190, "dialog": 115, "did": 10, "diff": 186, "differ": 131, "dig": 113, "direct": [38, 46, 101], "directedit": [17, 22], "directori": [98, 209], "disabl": [20, 50, 125, 226], "discoveri": 102, "dispatch": [22, 85, 229], "displai": [87, 129], "distribut": [16, 19], "do": [10, 42, 49, 194, 204], "docker": [149, 157, 158, 166, 167], "dockerfil": 151, "doctrin": [222, 224, 229], "document": [8, 47, 48, 49, 101, 201, 206, 238, 243], "doe": 21, "domain": 133, "don": [42, 194], "donat": 13, "down": 10, "download": [20, 46, 52, 61, 70], "drag": 199, "drop": 199, "dropdown": 76, "dsp": 158, "duplic": 204, "e": 82, "ecosystem": 206, "edit": [7, 101, 156, 199], "editor": 101, "element": [69, 77, 194, 195], "email": [44, 52, 103, 192], "emit": 148, "emitt": 22, "emoji": 76, "empti": [49, 67, 76, 161], "enabl": [7, 21, 125, 153, 159, 166, 170, 189], "encount": 190, "end": [24, 167, 210, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238, 239], "endpoint": [43, 49, 64, 69], "enterpris": 13, "entiti": [37, 105, 190, 225], "entri": [6, 92, 107, 179, 181, 199], "enum": 140, "environ": [20, 149, 151, 156, 165, 189], "error": [10, 20, 49, 74, 98, 112], "escal": 209, "eslint": 186, "event": [2, 6, 17, 22, 29, 69, 73, 94, 99, 104, 106, 107, 115, 121, 125, 137, 140, 141, 142, 148, 169, 211, 223, 229, 230, 233, 234], "eventdispatch": [17, 22], "exampl": [3, 43, 64, 66, 69, 70, 73, 129, 147, 148, 152, 165, 171, 175, 178, 202], "exapp": [42, 151, 152, 153, 154, 159, 161, 163, 165, 170, 171, 180, 190], "except": [29, 49, 240], "exceptionalimplement": 85, "exchang": 119, "exclud": 8, "execut": [40, 209], "exist": [7, 107, 139], "expens": [130, 213], "explicit": [49, 186], "export": 120, "expos": [43, 49], "exposur": 209, "extend": [2, 25, 129], "extens": 242, "extern": [99, 107, 132, 189, 190, 192, 240], "extract": 33, "factor": 144, "factori": 223, "fail": 161, "faq": 10, "fast": 142, "favorit": 61, "featurepolici": [17, 22], "feder": [17, 22, 52], "federatedfileshar": 22, "federatedshareaddedev": 22, "fetch": [50, 51, 54, 56, 57, 107, 132], "field": [69, 76, 99], "file": [3, 8, 17, 20, 22, 25, 29, 35, 38, 52, 54, 61, 62, 63, 68, 70, 73, 76, 87, 101, 104, 115, 156, 171, 209, 231, 232, 234], "filecacheupd": [17, 22], "filecreatedfromtemplateev": [17, 22], "filenam": 186, "files_shar": 22, "files_trashbin": 22, "filescannedev": [17, 22], "filesmetadata": [17, 22], "filesystem": [22, 35, 38, 186, 236], "filesystemtorndownev": [17, 22], "filter": [46, 69], "final": 204, "find": 204, "first": [43, 48], "flag": 90, "flow": [44, 105, 164, 166, 171], "folder": [35, 52, 61, 70], "folderscannedev": [17, 22], "follow": 16, "font": [77, 231], "forc": [20, 46], "forgeri": 209, "form": 134, "format": [123, 223], "formatt": 76, "forum": 207, "foundat": 77, "frequent": 162, "from": [3, 20, 21, 33, 38, 48, 52, 67, 87, 121, 128, 151, 161, 218, 221, 227], "front": [24, 32, 167, 210, 215, 216, 217, 218, 219, 220, 221, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 239], "frontend": [154, 190], "fulltextsearch": 48, "function": [186, 187], "further": [69, 243], "gather": 189, "gender": 81, "gener": [25, 40, 49, 74, 81, 82, 119, 125, 129, 136, 141, 147, 185, 186, 190, 194, 204, 215, 223, 225, 226, 227, 228, 229, 230, 231, 233], "generatesecurepasswordev": [17, 22], "genericev": [17, 22], "get": [10, 20, 38, 48, 52, 57, 58, 61, 70, 92, 99, 107, 112, 119, 122, 123, 125, 129, 168, 170, 177, 182, 189, 191, 209, 243], "getlinkwithpick": 129, "getquotaev": [17, 22], "gettaskprocessingprovidersev": [17, 22], "git": [16, 72], "github": [15, 82, 202], "given": [46, 70], "global": [30, 115, 218, 219, 220, 221, 223, 230], "glossari": [150, 190], "gpu": [159, 160], "gradl": 72, "group": [17, 22, 49, 76, 107], "groupbackendregist": 22, "groupchangedev": [17, 22], "groupcreatedev": [17, 22], "groupdeletedev": [17, 22], "groupmanag": 22, "groupwar": [109, 111, 227], "guest": 232, "guid": 81, "guidelin": [14, 42, 185, 194, 197, 209], "guzzl": 222, "guzzlehttp": 222, "ha": 122, "handl": [2, 20, 49, 82, 99, 107, 112, 132], "handler": [147, 222], "hardwar": 151, "harp": 152, "head": 112, "header": [20, 49, 61, 69, 131, 164, 185], "healthcheck": 153, "heartbeat": [153, 166], "heavi": 18, "height": 231, "hell": [3, 229], "help": [122, 207, 209], "helper": [49, 104], "high": 236, "highlight": 199, "hint": 42, "histor": 131, "hook": [22, 43], "host": [133, 147], "how": [10, 14, 21, 49, 157, 159, 161, 190, 192, 202, 204], "html": [20, 42, 98, 184, 195, 197], "http": [17, 22, 69, 101, 112, 135, 223], "hybrid": 16, "i": [10, 82, 119, 140, 148, 161, 200, 204], "iacl": 107, "iapiwidget": 96, "iapiwidgetv2": 96, "ibuttonwidget": 96, "icalendarobjectcontain": 107, "icollect": 107, "icon": [27, 77, 144, 196, 233], "iconditionalwidget": 96, "icontentmanag": 94, "icontentprovid": 94, "id": [46, 56, 57, 132, 136, 190, 234], "identifi": 98, "ie11": 223, "ifil": 107, "ignor": [49, 97], "iiconwidget": 96, "imag": [26, 56, 129, 141, 166], "imip": 107, "implement": [38, 69, 85, 94, 101, 116, 120, 128, 137, 140, 141, 142, 144, 158], "improv": 42, "includ": 26, "inclus": 209, "indent": 186, "index": [48, 93], "indic": 40, "individu": [107, 132], "info": [18, 95, 108, 165, 190, 210, 225, 226, 227, 228, 229, 230], "inform": [52, 107, 130, 146, 189, 193, 198, 199], "ini": 156, "init": [70, 153, 166, 170], "initi": [6, 25, 48, 115, 181], "inject": [21, 30, 190, 209, 220, 227], "inlin": 103, "inod": 107, "input": [76, 87, 99, 123, 140], "insensit": 18, "instal": [48, 72, 82, 107, 149, 165, 166, 167, 243], "instruct": 82, "integr": [43, 86, 87, 95, 101, 106, 107, 109, 139, 152, 221], "interact": [1, 129], "interfac": [21, 94, 96, 101, 107, 110, 126, 127, 185, 186, 190], "intern": [99, 114, 115, 140, 215], "interpol": 29, "introduct": [7, 20, 21, 62, 63, 79, 150, 198, 199, 202, 240], "invalid": 223, "invalidatemountcacheev": [17, 22], "io": 42, "ioptionwidget": 96, "iproperti": 107, "ireloadablewidget": 96, "issu": [43, 129, 161, 204], "item": [70, 76, 198], "j": [223, 239, 243], "javascript": [25, 26, 27, 42, 61, 98, 115, 186, 209, 217, 243], "job": 18, "join": 204, "jqueri": [218, 220, 221], "json": [20, 49, 190], "just": [61, 122], "keep": 189, "kei": [90, 93, 152, 164], "keyboard": [25, 226], "known": [52, 222], "l10n": [42, 115, 154], "l10nignor": 8, "label": [81, 185], "languag": [42, 46, 58, 116, 190], "last": [107, 129, 222], "later": 0, "layer": 236, "layout": [80, 198, 199, 200, 232], "lazi": [90, 93], "lazili": 20, "ldap": [125, 223], "learn": 84, "left": 235, "legaci": 107, "legal": 14, "level": [29, 186, 236], "lexicon": 92, "librari": [70, 71, 72, 210, 217, 220, 222, 224, 229, 235], "licens": 185, "lifecycl": [21, 32, 153], "limit": [20, 133, 159], "line": [186, 190, 231], "link": [48, 70, 129], "lint": [95, 118], "list": [33, 46, 48, 52, 54, 56, 61, 67, 68, 76, 101, 129, 161, 170, 182, 196, 198], "listen": [22, 29, 85, 99, 121, 137, 140, 141, 142, 169], "liter": 186, "live": 104, "llm": 140, "load": [18, 25, 90, 93, 227], "loadadditionalentriesev": [17, 22], "loadadditionalscriptsev": [17, 22], "loader": 228, "loadsettingsscriptsev": [17, 22], "loadview": 22, "local": [19, 52], "lock": [10, 97], "log": [16, 17, 22, 29, 151, 173, 222, 223], "logger": [115, 127], "logic": [221, 232], "login": [44, 119], "loginfailedev": [17, 22], "long": [69, 122, 186], "loosen": 20, "lose": 14, "machin": [84, 116], "maco": 82, "mail": [17, 22, 110], "main": 193, "maintain": [12, 207], "mainten": [11, 74], "major": 16, "make": [61, 66, 144, 170], "makefil": [15, 154], "manag": [3, 16, 37, 90, 93, 107, 146, 161, 235], "managerev": [17, 22], "mandatori": 10, "manipul": 54, "manual": [8, 18, 165, 167, 188], "map": [29, 37, 236], "mapper": [37, 190], "mapperev": [17, 22], "mariadb": 98, "markup": 42, "match": [33, 129], "materi": 196, "measur": 122, "memori": 19, "menu": [25, 76, 108, 171, 179, 181, 199, 200], "merg": 69, "messag": [29, 54, 101, 173], "metadata": [5, 40, 46, 48, 104, 147, 154], "metadatabackgroundev": [17, 22], "metadataliveev": [17, 22], "metadatanamedev": [17, 22], "method": [29, 49, 61, 131, 143, 153, 156, 186, 240], "metric": 120, "microsoft": 82, "middlewar": 30, "migrat": [40, 145, 190, 213, 222, 223, 227], "minor": 16, "miscellan": [20, 90, 93, 182], "mitig": 97, "modal": [76, 87], "mode": [74, 98, 189], "modif": [63, 107], "modifi": [20, 50, 131, 146], "moment": 115, "monet": 13, "more": [37, 140, 142], "mount": [38, 236], "move": [14, 61, 70, 227], "movetotrashev": 22, "multi": [99, 186], "multilingu": 140, "multipl": [59, 186], "name": [1, 22, 36, 44, 81, 107, 184, 186, 188, 220], "namespac": [61, 190, 218, 221, 235], "nativ": [101, 227], "navig": [6, 17, 22, 76, 199, 235], "nc": 182, "ncreferencepickermod": 129, "ncreferencewidget": 129, "ncrichcontentedit": 129, "ncrichtext": 129, "need": [152, 186], "network": [115, 161], "new": [25, 52, 107, 120, 186, 199, 211, 213, 219, 220], "nextcloud": [0, 10, 14, 38, 71, 89, 105, 107, 115, 119, 121, 153, 158, 170, 172, 190, 201, 204, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 243], "nightli": 16, "nocsrfrequir": 190, "node": [17, 22, 38, 169, 223, 236, 239, 243], "nodeaddedtocach": [17, 22], "nodeaddedtofavorit": [17, 22], "nodecopiedev": [17, 22], "nodecreatedev": [17, 22], "nodedeletedev": [17, 22], "noderemovedfromcach": [17, 22], "noderemovedfromfavorit": [17, 22], "noderenamedev": [17, 22], "nodetouchedev": [17, 22], "nodewrittenev": [17, 22], "non": [49, 152], "nonc": 231, "note": [61, 76, 101, 212, 214], "notif": [46, 117, 174], "now": 233, "npm": [115, 118, 190, 239], "number": [123, 159], "o": 140, "object": [69, 101, 106, 107, 146, 186, 187, 192], "objectstor": [17, 22], "objectstorag": 236, "obtain": [25, 44, 60, 72, 107], "oc": [20, 33, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 115, 131, 173, 174, 176, 180, 182, 190, 215], "oca": [22, 115], "occ": [1, 92, 104, 175, 190], "ocm": [17, 22], "ocp": [17, 22, 115, 121], "off": 16, "offic": [50, 121], "oidc": 119, "older": 211, "one": 107, "onelogin": 192, "ongo": 50, "onli": [107, 186], "onlyoffic": 192, "open": [10, 44, 87, 101, 120], "openapi": 49, "openassistantform": 87, "openid": 119, "oper": [61, 105, 186, 187], "optim": 228, "option": [1, 21, 58, 69, 87, 112, 118, 131, 132, 144, 165, 171, 181], "organ": 14, "other": [42, 158, 176, 206, 210], "out": [50, 121, 189], "outgo": 234, "outlin": 233, "outofofficechangedev": [17, 22], "outofofficeclearedev": [17, 22], "outofofficeendedev": [17, 22], "outofofficescheduledev": [17, 22], "outofofficestartedev": [17, 22], "output": [130, 140, 240], "overview": [16, 22, 46, 48, 90, 92, 93, 101, 104, 132, 148, 150, 154, 155, 165, 236], "own": 54, "owner": 107, "ownership": 107, "packag": [3, 115, 151, 190, 234], "page": [20, 87, 101, 128, 171], "pagin": 132, "parallel": 18, "param": [169, 171, 174, 175, 179, 181], "paramet": [20, 21, 49, 69, 90, 186, 227], "parenthesi": 186, "pars": [30, 69], "part": 25, "pascalcas": 186, "password": [44, 115, 223], "passwordupdatedev": [17, 22], "patch": 16, "path": [115, 243], "pattern": 21, "payload": [169, 171, 174], "pend": 52, "per": 159, "perform": [2, 20, 122], "period": 121, "perman": 156, "permiss": [8, 52], "persist": 154, "person": [99, 144, 227], "phone": 123, "php": [25, 41, 42, 85, 95, 98, 122, 156, 187, 190, 210, 222, 225, 227, 229, 231, 232, 234, 236, 242, 243], "phpdoc": 227, "phpunit": 243, "picker": [76, 129], "pin": 199, "place": 149, "placehold": [42, 81], "plan": 227, "platform": 190, "plugin": [2, 107, 148, 218, 221], "plural": 42, "polici": 20, "polyfil": 220, "popov": 200, "popovermenu": 198, "popul": 87, "posit": 232, "possibl": 49, "post": [40, 112, 213], "postloginev": [17, 22], "practic": [49, 148], "pre": [6, 16], "precondit": 202, "predefin": [21, 54], "prefer": [49, 59, 91, 177, 186], "preload": 148, "prepar": 16, "prerequisit": [49, 239], "preset": 92, "preview": [17, 22, 40, 129, 210], "previou": 214, "primari": [77, 192, 194], "primit": 21, "privaci": 132, "privat": 157, "privileg": [107, 209], "procedur": 206, "process": [0, 8, 15, 16, 140, 142, 188, 211, 213], "profil": [17, 22, 124, 125, 234], "program": 190, "programmat": 138, "progress": [170, 195], "project": [72, 126, 243], "prologu": 208, "prompt": 140, "pronoun": 81, "properti": [61, 66, 107, 186, 229], "propfind": 104, "proppatch": 104, "protect": 20, "provid": [25, 37, 42, 69, 94, 96, 106, 107, 110, 116, 119, 126, 129, 132, 137, 140, 141, 142, 144], "proxi": [149, 156, 158], "psr": [127, 221, 222, 223, 227, 228], "public": [20, 22, 31, 61, 85, 115, 128, 218, 221, 232], "publish": [11, 69, 151], "pull": [129, 166], "put": 112, "python": 42, "qt": 42, "queri": [37, 98, 104, 107, 125, 138, 213], "question": [162, 202], "quick": 61, "quot": 186, "radii": 77, "radio": [76, 99, 195], "radiu": 231, "rate": [14, 20, 133], "re": 48, "read": [20, 38, 69, 70, 90, 104, 107, 122, 243], "readabl": 186, "recommend": [21, 51, 53], "redesign": 235, "redi": 192, "redirect": [20, 171, 209], "reduc": 186, "refer": [17, 22, 85, 97, 129], "region": 123, "regist": [1, 2, 18, 33, 69, 92, 96, 99, 101, 107, 110, 120, 124, 126, 129, 130, 134, 135, 144, 145, 169, 171, 175, 178, 179, 180, 181, 240], "registerchecksev": [17, 22], "registerdirecteditorev": [17, 22], "registerentitiesev": [17, 22], "registeroperationsev": [17, 22], "registertemplatecreatorev": [17, 22], "registr": [30, 99, 116, 132, 137, 140, 141, 142, 147, 165], "registri": 157, "registryev": [17, 22], "regular": 186, "relat": [47, 131], "releas": [15, 16, 212, 213, 214], "relev": 204, "remot": [60, 133, 149, 210], "remov": [3, 107, 181, 210, 215, 216, 217, 218, 220, 221, 223, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "render": [20, 96, 129], "renderreferenceev": [17, 22], "repair": [130, 213], "replac": [40, 89, 222, 226], "repo": 14, "report": 204, "repositori": 8, "reproduc": 204, "request": [20, 21, 32, 46, 52, 61, 66, 112, 125, 129, 132, 135, 168, 170, 171, 173, 174, 177, 180, 190, 209, 234], "requir": [14, 49, 69, 82, 206, 210, 242], "reset": 48, "resolv": 129, "resourc": [17, 22, 33, 70, 106, 126], "resourcetyperegisterev": [17, 22], "respect": 14, "respond": 20, "respons": [20, 43, 49, 61, 69, 125, 168, 170, 173, 177, 182], "rest": [69, 131], "restor": [54, 67, 68], "restrict": [20, 107], "result": [46, 56, 87, 132, 171], "retri": 97, "retriev": [48, 51, 54, 90, 93, 104], "return": [1, 107, 240], "review": 202, "revis": 235, "rfc4918": 61, "rich": 69, "room": 106, "root": [22, 35, 152], "rout": [20, 33, 154, 178, 190], "router": [33, 73, 115], "rtl": 194, "rule": [14, 81, 107, 186, 193, 198, 199, 232], "run": [87, 118, 135, 152, 243], "s3": 192, "sabr": [107, 222], "sabrepluginaddev": 22, "sabrepluginauthinitev": 22, "sabrepluginev": [17, 22], "same": [49, 186], "saml": 192, "sanit": 82, "scalabl": 122, "scale": 160, "scanner": 22, "schedul": [18, 56, 57, 142], "schema": [40, 99, 165], "scheme": [22, 153, 165], "scope": [49, 66], "script": [181, 209, 239], "scss": [223, 226], "search": [46, 53, 66, 102, 104, 129, 132, 221], "secondari": 233, "section": [99, 134, 227], "secur": [14, 17, 20, 22, 133, 209], "see": 101, "select": [8, 99], "semicolon": 186, "send": [25, 52, 173, 174, 192], "sensit": [90, 93, 99, 209], "server": [2, 43, 89, 114, 135, 189, 241, 243], "servic": [21, 94, 110, 220], "session": [20, 22, 146, 164], "set": [17, 20, 22, 34, 48, 49, 51, 54, 59, 61, 63, 69, 70, 76, 82, 99, 107, 134, 144, 149, 151, 156, 168, 170, 177, 179, 181, 189, 199, 227, 235], "sethead": 49, "setup": [8, 135, 189, 192], "shape": 140, "share": [17, 22, 31, 49, 52, 53, 54, 61, 70, 115, 128, 232, 235], "shareacceptedev": [17, 22], "sharecreatedev": [17, 22], "sharedeletedev": [17, 22], "sharedeletedfromselfev": [17, 22], "sheet": 61, "shell": 209, "ship": [16, 189, 217], "short": 69, "shortcut": [25, 226], "shorthand": 186, "should": [21, 90, 233], "show": 20, "side": 153, "sidebar": [76, 234, 235], "sign": [10, 15], "signal": 60, "simpl": [35, 132, 144], "simplef": 236, "singl": 186, "site": 209, "situat": 97, "size": [77, 107, 231], "slug": [37, 225], "smart": 129, "smb": 192, "snowflak": [136, 234], "socket": [149, 158], "solut": 156, "sound": 14, "sourc": [8, 10, 188, 189], "space": [77, 186], "special": 61, "specif": [49, 52, 54, 190], "speech": 137, "speechtotext": [17, 22], "split": [42, 186], "sql": [98, 209], "ssl": 192, "stamp": 107, "standard": [123, 184, 185, 187], "start": [62, 63, 151, 191], "state": [25, 115, 131, 144, 181, 194], "static": [95, 242], "statu": [40, 54, 60, 69, 77, 108, 138, 170, 233], "status": [54, 140, 141, 142], "statuscod": 240, "step": [42, 48, 110, 130, 152, 213], "storag": [38, 39, 99, 154, 192, 236], "store": [10, 14, 90, 93, 136, 161, 192], "stream": [20, 236], "streamlin": 142, "string": [8, 42, 58, 69, 81, 186], "structur": [29, 49, 58, 121, 154, 186, 187, 194], "studio": 82, "style": [181, 185, 186, 233, 235, 239], "subadminaddedev": [17, 22], "subadminremovedev": [17, 22], "subject": 69, "submit": 94, "submodul": 72, "subscrib": 148, "subscriptioncreatedev": 22, "subscriptiondeletedev": 22, "subscriptionupdatedev": 22, "suburl": 33, "summari": 152, "support": [13, 27, 37, 43, 49, 61, 66, 107, 129, 156, 159, 222, 223, 226, 231, 232, 234], "svg": 196, "symfoni": [220, 229], "symptom": 156, "sync": [8, 167], "system": [36, 82, 156], "systemtag": [17, 22], "systemtagsentityev": [17, 22], "t": [42, 194], "tab": 235, "tabl": [37, 201], "tag": [49, 107, 204], "talk": [139, 180], "target": 188, "task": [56, 57, 87, 140, 141, 142, 211, 213], "taskfailedev": [17, 22], "taskprocess": [17, 22, 55, 140], "tasksuccessfulev": [17, 22], "technic": [10, 14, 183, 200], "templat": [17, 20, 22, 26, 31, 42, 98, 101, 151, 186, 190, 209, 232], "term": 190, "terminologi": 110, "test": [41, 42, 46, 61, 118, 151, 152, 187, 192, 243], "text": [56, 76, 77, 137, 141, 142], "textprocess": [17, 22, 57, 142], "texttoimag": [17, 22], "theme": [27, 46, 221], "thi": [21, 186, 213], "through": 107, "throw": 49, "throwabl": 85, "time": [18, 63, 107, 143], "timestamp": 107, "timezon": 76, "tip": [37, 49, 70], "titl": 235, "todo": [213, 235], "toggl": 76, "token": [25, 119], "tokeninvalidatedev": [17, 22], "tone": 81, "tool": [3, 8, 100, 167, 190], "tooltip": 43, "top": [171, 181, 186], "track": 16, "transact": [37, 122], "transcript": 137, "transcriptionfailedev": [17, 22], "transcriptionsuccessfulev": [17, 22], "transient": 37, "transifex": [8, 167], "translat": [8, 42, 58, 69, 81, 116, 154, 167], "trashbin": 67, "travers": 209, "triag": 204, "trick": 49, "trigger": 140, "troubleshoot": [44, 156, 161], "trust": 133, "trustedserverremovedev": [17, 22], "tupl": 58, "tutori": [9, 49], "two": 144, "twofactorauth": [17, 22], "twofactorproviderchallengefail": [17, 22], "twofactorproviderchallengepass": [17, 22], "twofactorproviderdis": [17, 22], "twofactorproviderforuserdis": [17, 22], "twofactorproviderforuseren": [17, 22], "twofactorproviderforuserregist": [17, 22], "twofactorproviderforuserunregist": [17, 22], "twofactorprovideruserdelet": [17, 22], "tx": 8, "type": [18, 19, 21, 37, 49, 57, 90, 93, 99, 107, 130, 131, 140, 142, 149, 169, 186, 213, 236], "typescript": [42, 186], "typographi": 77, "ui": [43, 171], "understand": 97, "undo": 199, "unifi": [129, 235], "uniqu": 107, "unit": [187, 243], "unneed": 3, "unregist": [169, 171, 175, 178, 179, 180, 181], "unstabl": 85, "unvalid": 209, "up": [16, 82, 149, 151, 189], "upcom": 50, "updat": [16, 52, 104, 107, 129, 138, 210, 220, 221, 222, 224, 229], "upgrad": [215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "upload": [61, 62, 63, 70], "uri": 61, "url": [25, 33, 170], "urlgener": 33, "us": [20, 21, 33, 48, 49, 82, 94, 96, 98, 104, 125, 129, 157, 186, 204], "usag": [20, 29, 62, 103, 115, 129, 240], "user": [14, 17, 20, 22, 36, 42, 44, 46, 48, 51, 54, 59, 76, 88, 96, 108, 116, 126, 137, 138, 142, 145, 146, 152, 171, 177, 182, 185, 232, 234], "user_ldap": 22, "useraddedev": [17, 22], "userbackendregist": 22, "userchangedev": [17, 22], "userconfig": 93, "usercreatedev": [17, 22], "userdeletedev": [17, 22], "userfirsttimeloggedinev": [17, 22], "useridassignedev": [17, 22], "useridunassignedev": [17, 22], "userlivestatusev": [17, 22], "userloggedinev": [17, 22], "userloggedinwithcookieev": [17, 22], "userloggedoutev": [17, 22], "usermanag": 22, "usermountaddedev": [17, 22], "usermountremovedev": [17, 22], "usermountupdatedev": [17, 22], "usernam": 223, "userremovedev": [17, 22], "userupdatedev": [17, 22], "usesess": 20, "util": [123, 199], "v": [44, 69], "v2": [44, 63, 69], "valid": [8, 133], "validatepasswordpolicyev": [17, 22], "valu": [33, 36, 49, 90, 93, 168, 177], "variabl": [20, 27, 81, 98, 115, 156, 165, 186, 187, 194, 218, 219, 220, 221, 223], "variou": 199, "verifymountpointev": [17, 22], "version": [16, 68, 107, 129, 188, 222], "via": [43, 121], "view": [125, 236], "viewer": 22, "visual": 82, "vite": 190, "volum": 161, "vue": [42, 115, 186, 239], "want": 204, "watch": 118, "we": 10, "web": [147, 189, 190], "webauthn": 192, "webdav": [61, 65, 104, 148, 229], "webfing": 147, "webview": [44, 101], "well": 222, "what": [90, 200], "when": [20, 148, 186], "where": 186, "which": 21, "why": [10, 204], "wide": 156, "widget": [96, 129], "window": 82, "wipe": 60, "wire": 21, "within": 121, "without": 192, "word": 77, "work": [21, 140, 143, 190, 202], "workflow": 111, "workflowengin": [17, 22], "wrapper": 236, "write": [18, 22, 38, 81, 107, 122, 147, 243], "written": 122, "xdebug": 98, "xml": [18, 95, 165, 190, 210, 222, 223, 225, 226, 227, 228, 229, 230], "you": [190, 204], "your": [10, 13, 14, 42, 43, 49, 54, 72, 92, 129, 152]}}) \ No newline at end of file +Search.setIndex({"alltitles": {"./occ config:app:get \u2013details": [[92, "occ-config-app-get-details"]], "0. Setting up the development environment": [[151, "setting-up-the-development-environment"]], "1. Migration 1: Schema change": [[40, "migration-1-schema-change"]], "1. Starting from template": [[151, "starting-from-template"]], "2. Migration 1: Post schema change": [[40, "migration-1-post-schema-change"]], "3. Development": [[151, "development"]], "3. Migration 2: Schema change": [[40, "migration-2-schema-change"]], "4. Packaging": [[151, "packaging"]], "4.1 Hardware acceleration": [[151, "hardware-acceleration"]], "5. AppStore publishing": [[151, "appstore-publishing"]], "6. Testing": [[151, "testing"]], "@nextcloud/auth": [[115, "nextcloud-auth"]], "@nextcloud/axios": [[115, "nextcloud-axios"]], "@nextcloud/dialogs": [[115, "nextcloud-dialogs"]], "@nextcloud/event-bus": [[115, "nextcloud-event-bus"]], "@nextcloud/files": [[115, "nextcloud-files"]], "@nextcloud/initial-state": [[115, "nextcloud-initial-state"]], "@nextcloud/l10n": [[115, "nextcloud-l10n"]], "@nextcloud/logger": [[115, "nextcloud-logger"]], "@nextcloud/moment": [[115, "nextcloud-moment"]], "@nextcloud/password-confirmation": [[115, "nextcloud-password-confirmation"]], "@nextcloud/paths": [[115, "nextcloud-paths"]], "@nextcloud/router": [[115, "nextcloud-router"]], "@nextcloud/sharing": [[115, "nextcloud-sharing"]], "@nextcloud/vue": [[115, "nextcloud-vue"]], "A note about namespaces URI": [[61, "a-note-about-namespaces-uri"]], "AI & Machine Learning": [[84, null]], "AJAX": [[190, "ajax"]], "API (Application Programming Interface)": [[190, "api-application-programming-interface"]], "API design and consistency": [[49, "api-design-and-consistency"]], "API reference": [[85, null]], "API to resolve links": [[129, "api-to-resolve-links"]], "APIs & Integration": [[86, null]], "Aborting the upload": [[63, "aborting-the-upload"]], "Accept a pending Federated Cloud Share": [[52, "accept-a-pending-federated-cloud-share"]], "Access calendars and events": [[106, "access-calendars-and-events"]], "Access data from within a Nextcloud App via OCP": [[121, "access-data-from-within-a-nextcloud-app-via-ocp"]], "Access restrictions \u2013 IACL": [[107, "access-restrictions-iacl"]], "Access through CalDAV": [[107, "access-through-caldav"]], "Accessing attributes": [[37, "accessing-attributes"]], "Accessing contact info": [[108, "accessing-contact-info"]], "Accessing the container from anywhere": [[21, "accessing-the-container-from-anywhere"]], "Acquiring a HTTP Client": [[112, "acquiring-a-http-client"]], "Action menus": [[76, "action-menus"]], "Action payload to ExApp": [[171, "action-payload-to-exapp"]], "Action results": [[171, "action-results"]], "Actions": [[108, "actions"]], "Activity API": [[69, null]], "Activity element fields": [[69, "activity-element-fields"]], "Adapting ExApps to HaRP": [[152, null]], "Add script": [[181, "add-script"]], "Add spaces around content when needed": [[186, "id17"]], "Add style": [[181, "add-style"]], "Add the library as a Gradle dependency": [[72, "add-the-library-as-a-gradle-dependency"]], "Add the library project to your project as a Git submodule": [[72, "add-the-library-project-to-your-project-as-a-git-submodule"]], "Add the library to a project": [[72, "add-the-library-to-a-project"]], "Added APIs": [[213, "added-apis"], [215, "added-apis"], [227, "added-apis"], [228, "added-apis"], [228, "id2"], [229, "added-apis"], [229, "id1"], [230, "added-apis"], [231, "added-apis"], [232, "added-apis"], [233, "added-apis"], [234, "added-apis"], [234, "id3"]], "Added Events": [[233, "added-events"], [234, "added-events"]], "Added events": [[229, "added-events"]], "Adding a navigation entry": [[6, "adding-a-navigation-entry"]], "Adding indices": [[40, "adding-indices"]], "Adding mounts to the filesystem": [[38, "adding-mounts-to-the-filesystem"]], "Adding translations": [[42, "adding-translations"]], "Address Sanitizer": [[82, "address-sanitizer"]], "Admin audit logging": [[29, "admin-audit-logging"]], "Advanced search provider": [[132, "advanced-search-provider"]], "Advantages": [[21, "advantages"]], "After the release": [[16, "after-the-release"]], "Alignment": [[200, "alignment"]], "Always use braces.": [[186, "id20"]], "Always use parenthesis for arrow function parameters.": [[186, "id12"]], "Android": [[42, "android"], [71, null]], "Android Nextcloud client development": [[71, "android-nextcloud-client-development"]], "App ID": [[190, "app-id"]], "App Installation Flow": [[166, null]], "App architecture": [[7, "app-architecture"]], "App autoloading": [[89, "app-autoloading"]], "App bootstrap logic": [[221, "app-bootstrap-logic"]], "App code checker deprecation": [[222, "app-code-checker-deprecation"]], "App development": [[4, null]], "App guidelines": [[14, "app-guidelines"]], "App metadata": [[5, null]], "App navigation menu": [[199, "app-navigation-menu"]], "App publishing and maintenance": [[11, null]], "App values": [[36, "app-values"]], "AppAPI Authentication": [[153, "appapi-authentication"]], "AppAPI Nextcloud APIs": [[172, null]], "AppAPI session keys": [[164, "appapi-session-keys"]], "AppAPIAuth": [[164, "appapiauth"]], "AppConfig": [[90, null], [168, null]], "AppData": [[35, null], [236, "appdata"]], "AppFramework": [[90, "appframework"]], "Application installation scheme": [[165, "application-installation-scheme"]], "Application namespace management": [[235, "application-namespace-management"]], "Arguments": [[165, "arguments"], [165, "id1"]], "Arguments and options": [[1, "arguments-and-options"]], "Arrays": [[186, "arrays"]], "Assembling the chunks": [[63, "assembling-the-chunks"]], "Assistant OCS API": [[47, null]], "Assistant colors": [[77, "assistant-colors"]], "Auth bypass / privilege escalations": [[209, "auth-bypass-privilege-escalations"]], "Authentication": [[20, "authentication"], [46, "authentication"], [164, null]], "Authentication & basics": [[240, "authentication-basics"]], "Authentication flow": [[164, "authentication-flow"]], "Authentication flow in details": [[164, "authentication-flow-in-details"]], "Authentication headers": [[164, "authentication-headers"]], "Auto-complete and user search": [[46, "auto-complete-and-user-search"]], "Automatic Backport": [[188, "automatic-backport"]], "Available Events": [[22, "available-events"]], "Available hooks": [[22, "available-hooks"]], "Available log methods": [[29, "available-log-methods"]], "Avatars": [[76, "avatars"]], "Avoid multiple properties on the same line": [[186, "id6"], [186, "id16"]], "Avoid semicolons where not needed.": [[186, "id3"]], "Avoiding deadlocks": [[97, "avoiding-deadlocks"]], "Babel Polyfill removal": [[220, "babel-polyfill-removal"]], "Back-end": [[167, "back-end"]], "Back-end changes": [[215, "back-end-changes"], [216, "back-end-changes"], [217, "back-end-changes"], [218, "back-end-changes"], [219, "back-end-changes"], [220, "back-end-changes"], [221, "back-end-changes"], [222, "back-end-changes"], [223, "back-end-changes"], [224, "back-end-changes"], [225, "back-end-changes"], [226, "back-end-changes"], [227, "back-end-changes"], [228, "back-end-changes"], [229, "back-end-changes"], [230, "back-end-changes"], [231, "back-end-changes"], [232, "back-end-changes"], [233, "back-end-changes"], [234, "back-end-changes"]], "Back-end code": [[238, null]], "Backend": [[154, "backend"]], "Background colors": [[77, "background-colors"]], "Background jobs (Cron)": [[18, null]], "Background variables": [[194, "background-variables"]], "Backporting Considerations": [[188, "backporting-considerations"]], "Basic Calendar information \u2013 INode": [[107, "basic-calendar-information-inode"]], "Basic File & Folder Operations": [[61, null]], "Basic Pattern of Dependency Injection": [[21, "basic-pattern-of-dependency-injection"]], "Basic concepts": [[28, null]], "Basic event information \u2013 INode": [[107, "basic-event-information-inode"]], "Basic input types": [[99, "basic-input-types"]], "Basic layout": [[198, "basic-layout"], [199, "basic-layout"], [199, "id3"], [199, "id5"], [200, "basic-layout"]], "Basic rules": [[199, "basic-rules"]], "Basic usage": [[20, "basic-usage"], [29, "basic-usage"], [103, "basic-usage"]], "Be technically sound": [[14, "be-technically-sound"]], "Before the release": [[16, "before-the-release"]], "Behavioral changes": [[215, "behavioral-changes"], [218, "behavioral-changes"], [219, "behavioral-changes"], [228, "behavioral-changes"]], "Benefits": [[14, "benefits"]], "Best practices": [[49, "best-practices"], [148, "best-practices"]], "Body theme": [[221, "body-theme"]], "Boolean database columns": [[223, "boolean-database-columns"]], "Booting an app": [[0, "booting-an-app"]], "Bootstrapping": [[0, null]], "Bootstrapping Nextcloud": [[243, "bootstrapping-nextcloud"]], "Bootstrapping process": [[0, "bootstrapping-process"]], "Border colors": [[77, "border-colors"]], "Border radii": [[77, "border-radii"]], "Border radius": [[231, "border-radius"]], "Borders": [[77, "borders"]], "Braces on same line as the definition.": [[186, "id9"]], "Branch Names": [[188, "branch-names"]], "Branch off": [[16, "branch-off"]], "Branch selection .tx/backport": [[8, "branch-selection-tx-backport"]], "Breaking changes in the Files API package": [[234, "breaking-changes-in-the-files-api-package"]], "Browse the task result page": [[87, "browse-the-task-result-page"]], "Brute-force protection": [[20, "brute-force-protection"]], "Bugfixes": [[188, "bugfixes"]], "Bugtracker": [[203, null]], "Building Vue components and scripts": [[239, "building-vue-components-and-scripts"]], "Building styles": [[239, "building-styles"]], "Building the Client": [[82, null]], "Built-in examples": [[148, "built-in-examples"]], "Button and action labels": [[81, "button-and-action-labels"]], "Buttons": [[76, "buttons"], [195, "buttons"], [199, "buttons"]], "C++ (Qt) / Desktop client": [[42, "c-qt-desktop-client"]], "CAREFULLY handle empty values in JSON Responses": [[49, "carefully-handle-empty-values-in-json-responses"]], "CONSIDER how your API will be used": [[49, "consider-how-your-api-will-be-used"]], "CORS": [[209, "cors"]], "CSP Nonce": [[231, "csp-nonce"]], "CSRF and the #[NoCSRFRequired] attribute": [[190, "csrf-and-the-nocsrfrequired-attribute"]], "CSS": [[23, null], [184, "css"], [194, null], [219, "css"]], "CSS and HTML coding standards": [[184, null]], "CSS classes": [[194, "css-classes"]], "CSS variables": [[27, "css-variables"], [194, "css-variables"]], "Cache": [[236, "cache"]], "Cached data": [[122, "cached-data"]], "Caching": [[19, null]], "Calendar integration": [[106, null]], "Calendar objects": [[106, "calendar-objects"]], "Calendar providers": [[106, "calendar-providers"]], "Calendars": [[106, "calendars"]], "Calls: native client \u2192 editor page": [[101, "calls-native-client-editor-page"]], "Capabilities": [[69, "capabilities"], [231, "capabilities"]], "Capabilities API": [[46, "capabilities-api"]], "Casting parameters": [[20, "casting-parameters"]], "Cause": [[156, "cause"]], "Change log": [[16, "change-log"]], "Change tracking": [[16, "change-tracking"]], "Changed APIs": [[213, "changed-apis"], [215, "changed-apis"], [215, "id1"], [220, "changed-apis"], [224, "changed-apis"], [227, "changed-apis"], [228, "changed-apis"], [228, "id7"], [229, "changed-apis"], [230, "changed-apis"], [230, "id1"], [231, "changed-apis"], [232, "changed-apis"], [233, "changed-apis"], [234, "changed-apis"], [234, "id4"]], "Changed behavior": [[230, "changed-behavior"]], "Changelog": [[5, "changelog"]], "Changing API and backwards compatibility": [[240, "changing-api-and-backwards-compatibility"]], "Check availability": [[56, "check-availability"]], "Check for Talk existence": [[139, "check-for-talk-existence"]], "Check out external shipped apps": [[189, "check-out-external-shipped-apps"]], "Check out the code": [[189, "check-out-the-code"]], "Check responsibility": [[69, "check-responsibility"]], "Checkbox and Multi-checkbox": [[99, "checkbox-and-multi-checkbox"]], "Checkboxes and radios": [[195, "checkboxes-and-radios"]], "Checkboxes and toggles": [[76, "checkboxes-and-toggles"]], "Checking for existence of events": [[107, "checking-for-existence-of-events"]], "Checking if the issue is useful": [[204, "checking-if-the-issue-is-useful"]], "Chips": [[76, "chips"]], "Choosing what should be lazy": [[90, "choosing-what-should-be-lazy"]], "Chunked file upload": [[63, null]], "Chunked upload v2": [[63, "chunked-upload-v2"]], "Class": [[190, "class"]], "Class-based schema registration": [[99, "class-based-schema-registration"]], "Classloader": [[89, null]], "Clear data and disable out-of-office": [[50, "clear-data-and-disable-out-of-office"]], "Clear message": [[54, "clear-message"]], "Clickable area": [[231, "clickable-area"]], "Clickjacking": [[209, "clickjacking"]], "Client APIs": [[228, "client-apis"]], "Client Integration": [[43, null]], "Clients and Client APIs": [[75, null]], "Code Map": [[236, "code-map"]], "Code example": [[70, "code-example"], [70, "id1"], [70, "id2"], [70, "id3"], [70, "id4"], [70, "id5"], [70, "id6"], [70, "id7"], [70, "id8"], [70, "id9"], [70, "id10"], [70, "id11"], [70, "id12"]], "Code executions / file inclusions": [[209, "code-executions-file-inclusions"]], "Code of conduct": [[205, null]], "Code reviews on GitHub": [[202, null]], "Code signing": [[10, null]], "Code style": [[186, "code-style"]], "Coding standards": [[185, "coding-standards"]], "Coding style & general guidelines": [[185, null]], "Collabora without SSL": [[192, "collabora-without-ssl"]], "Collapsible entry": [[199, "collapsible-entry"]], "Color picker": [[76, "color-picker"]], "Colors": [[77, "colors"]], "Command naming": [[1, "command-naming"]], "Comments": [[64, null], [187, "comments"]], "Committing changes": [[239, "committing-changes"]], "Common data structure": [[121, "common-data-structure"]], "Comparison of different API types": [[131, "id4"], [131, "id5"]], "Compatibility": [[115, "compatibility"]], "Compatibility documentation": [[238, "compatibility-documentation"]], "Compatibility with the app ecosystem": [[206, null]], "Compiling": [[82, "compiling"]], "Completely disabled authentication": [[20, "completely-disabled-authentication"]], "Components": [[76, null]], "Composer": [[3, "composer"]], "Composer and composer.json": [[190, "composer-and-composer-json"]], "Concept": [[128, "concept"]], "Concept overview": [[48, "concept-overview"], [90, "concept-overview"], [92, "concept-overview"], [93, "concept-overview"], [104, "concept-overview"], [132, "concept-overview"]], "Conditional scheduling of tasks": [[142, "conditional-scheduling-of-tasks"]], "Config & Preferences": [[91, null]], "Config Lexicon Entry": [[92, "config-lexicon-entry"]], "Configuration": [[36, null]], "Configuration Component": [[105, "configuration-component"]], "Configuration changes": [[215, "configuration-changes"]], "Configuring parallelism": [[18, "configuring-parallelism"]], "Conflict example": [[3, "conflict-example"]], "Connecting a controller and a route": [[20, "connecting-a-controller-and-a-route"]], "Console commands": [[33, "console-commands"], [40, "console-commands"], [42, "console-commands"]], "Constants and flags": [[90, "constants-and-flags"]], "Construction of migration classes": [[40, "construction-of-migration-classes"]], "Consumable, Listenable and Catchable": [[85, "consumable-listenable-and-catchable"]], "Consuming a Mail Service": [[110, "consuming-a-mail-service"]], "Consuming the AppConfig API": [[90, "consuming-the-appconfig-api"]], "Consuming the Files Metadata API": [[104, "consuming-the-files-metadata-api"]], "Consuming the Speech-To-Text API": [[137, "consuming-the-speech-to-text-api"]], "Consuming the Task Processing API": [[140, "consuming-the-task-processing-api"]], "Consuming the Text Processing API": [[142, "consuming-the-text-processing-api"]], "Consuming the Text-To-Image API": [[141, "consuming-the-text-to-image-api"]], "Consuming the Translation API": [[116, "consuming-the-translation-api"]], "Consuming the UserConfig API": [[93, "consuming-the-userconfig-api"]], "Contact Support": [[156, "contact-support"]], "Contacts Menu": [[108, null]], "Containers / Dependency Injection": [[21, null]], "Content list": [[198, null]], "Content size of the event": [[107, "content-size-of-the-event"]], "Context Chat": [[94, null]], "Context array": [[29, "context-array"]], "Continuous Integration": [[95, null]], "Contributing": [[125, "contributing"]], "Control structures": [[186, "control-structures"], [187, "control-structures"]], "Controller": [[190, "controller"]], "Controller Injection": [[21, "controller-injection"]], "Controllers": [[20, null]], "Convert input into standard format": [[123, "convert-input-into-standard-format"]], "Converting to app passwords": [[44, "converting-to-app-passwords"]], "Cookies": [[153, "cookies"]], "Copying files and folders (rfc4918)": [[61, "copying-files-and-folders-rfc4918"]], "Corporate Proxy - Permanent Settings for PHP CLI": [[156, null]], "Correct plurals": [[42, "correct-plurals"]], "Counter": [[199, "counter"]], "Counter bubbles": [[76, "counter-bubbles"]], "Create a conversation": [[139, "create-a-conversation"]], "Create a file": [[101, "create-a-file"]], "Create a folder": [[70, "create-a-folder"]], "Create a new Federated Cloud Share": [[52, "create-a-new-federated-cloud-share"]], "Create a new Share": [[52, "create-a-new-share"]], "Create an app": [[7, "create-an-app"]], "Create calendar events": [[106, "create-calendar-events"]], "Creating a command class": [[1, "creating-a-command-class"]], "Creating a repair step": [[130, "creating-a-repair-step"]], "Creating an expensive repair step": [[130, "creating-an-expensive-repair-step"]], "Creating and publishing events": [[69, "creating-and-publishing-events"]], "Creating custom responses": [[20, "creating-custom-responses"]], "Creating folders (rfc4918)": [[61, "creating-folders-rfc4918"]], "Creating new calendar events": [[107, "creating-new-calendar-events"]], "Creating users": [[146, "creating-users"]], "Critical changes": [[210, null]], "Cross site request forgery": [[209, "cross-site-request-forgery"]], "Cross site scripting": [[209, "cross-site-scripting"]], "Custom attribute to database column mapping": [[37, "custom-attribute-to-database-column-mapping"]], "Custom log file": [[29, "custom-log-file"]], "Customize the conversation": [[139, "customize-the-conversation"]], "DELETE request": [[112, "delete-request"]], "DO NOT throw non-OCS*Exceptions": [[49, "do-not-throw-non-ocs-exceptions"]], "DO NOT use the addHeader (use setHeaders)": [[49, "do-not-use-the-addheader-use-setheaders"]], "DO set all descriptions for parameters and methods": [[49, "do-set-all-descriptions-for-parameters-and-methods"]], "DO type controller and helper methods as explicit as possible": [[49, "do-type-controller-and-helper-methods-as-explicit-as-possible"]], "DO use the same data structures for the same group of responses": [[49, "do-use-the-same-data-structures-for-the-same-group-of-responses"]], "DaemonConfig registration": [[165, "daemonconfig-registration"]], "Dashboard": [[96, null]], "Dashboard API": [[96, "dashboard-api"]], "Data-based responses": [[20, "data-based-responses"]], "Database": [[211, "database"]], "Database access": [[37, null]], "Database clusters": [[122, "database-clusters"]], "Database concepts": [[190, "database-concepts"]], "Database performance": [[122, "database-performance"]], "Datetime picker": [[76, "datetime-picker"]], "Deadlocks": [[97, null]], "Debug mode": [[98, "debug-mode"]], "Debugging": [[98, null]], "Debugging HTML and templates": [[98, "debugging-html-and-templates"]], "Debugging JavaScript": [[98, "debugging-javascript"]], "Debugging MariaDB queries": [[98, "debugging-mariadb-queries"]], "Debugging SQL queries": [[98, "debugging-sql-queries"]], "Debugging tests in the browser": [[243, "debugging-tests-in-the-browser"]], "Debugging variables": [[98, "debugging-variables"]], "Declarative Settings": [[179, null]], "Declarative UI response": [[43, "declarative-ui-response"]], "Declarative settings": [[99, null]], "Declare in-app search": [[132, "declare-in-app-search"]], "Declare supported Unified Search providers": [[129, "declare-supported-unified-search-providers"]], "Decline a pending Federated Cloud Share": [[52, "decline-a-pending-federated-cloud-share"]], "Decode a Snowflake ID": [[136, "decode-a-snowflake-id"]], "Default user agent for outgoing requests changed": [[234, "default-user-agent-for-outgoing-requests-changed"]], "Default values for subURL": [[33, "default-values-for-suburl"]], "Define a setup check": [[135, "define-a-setup-check"]], "Delete Share": [[52, "delete-share"]], "Delete a conversation": [[139, "delete-a-conversation"]], "Delete a share resource": [[70, "delete-a-share-resource"]], "Delete a task": [[56, "delete-a-task"]], "Delete an accepted Federated Cloud Share": [[52, "delete-an-accepted-federated-cloud-share"]], "Delete app config values": [[168, "delete-app-config-values"]], "Delete file or folder": [[70, "delete-file-or-folder"]], "Delete metadata using PROPPATCH": [[104, "delete-metadata-using-proppatch"]], "Delete user config values": [[177, "delete-user-config-values"]], "Deleting a preference": [[59, "deleting-a-preference"]], "Deleting an app password": [[44, "deleting-an-app-password"]], "Deleting files and folders (rfc4918)": [[61, "deleting-files-and-folders-rfc4918"]], "Deleting from the trashbin": [[67, "deleting-from-the-trashbin"]], "Deleting multiple preference": [[59, "deleting-multiple-preference"]], "Dependency Injection Container Registration": [[30, "dependency-injection-container-registration"]], "Dependency Injection Parameters": [[227, "dependency-injection-parameters"]], "Dependency hell": [[3, "dependency-hell"]], "Dependency injection (DI)": [[190, "dependency-injection-di"]], "Dependency management": [[3, null]], "Deploy daemons types": [[149, "deploy-daemons-types"]], "Deploy environment variables": [[165, "deploy-environment-variables"]], "Deployment": [[165, null]], "Deprecated": [[227, "deprecated"]], "Deprecated APIs": [[215, "deprecated-apis"], [216, "deprecated-apis"], [221, "deprecated-apis"], [223, "deprecated-apis"], [224, "deprecated-apis"], [224, "id1"], [228, "deprecated-apis"], [229, "deprecated-apis"], [229, "id2"], [230, "deprecated-apis"], [231, "deprecated-apis"], [231, "id2"], [232, "deprecated-apis"], [233, "deprecated-apis"], [233, "id1"], [234, "deprecated-apis"], [234, "id5"]], "Deprecated events": [[229, "deprecated-events"]], "Deprecated global variables": [[218, "deprecated-global-variables"], [219, "deprecated-global-variables"], [220, "deprecated-global-variables"], [221, "deprecated-global-variables"], [223, "deprecated-global-variables"]], "Deprecation of injection of named services": [[220, "deprecation-of-injection-of-named-services"]], "Deprecation of shipped JavaScript libraries": [[217, "deprecation-of-shipped-javascript-libraries"]], "Deprecations": [[211, null], [218, "deprecations"], [219, "deprecations"], [235, "deprecations"]], "Design": [[78, null]], "Desktop Clients": [[83, null]], "Determining if the report is complete": [[204, "determining-if-the-report-is-complete"]], "Determining relevance of issue": [[204, "determining-relevance-of-issue"]], "Develop your first app with client integration": [[43, "develop-your-first-app-with-client-integration"]], "Development": [[115, "development"]], "Development Tools": [[100, null]], "Development dependency hell": [[229, "development-dependency-hell"]], "Development environment": [[189, null]], "Development overview": [[155, null]], "Development process": [[188, null]], "Development tools": [[3, "development-tools"]], "Digging deeper": [[113, null]], "Direct Download": [[46, "direct-download"]], "Direct editing": [[101, null]], "Direct storage access": [[38, "direct-storage-access"]], "Directory traversal": [[209, "directory-traversal"]], "Disable the app": [[125, "disable-the-app"]], "Disabled keyboard shortcuts": [[226, "disabled-keyboard-shortcuts"]], "Display link previews": [[129, "display-link-previews"]], "Displaying a task result": [[87, "displaying-a-task-result"]], "Distributed cache": [[19, "distributed-cache"]], "Do we lock down Nextcloud?": [[10, "do-we-lock-down-nextcloud"]], "Docker Container Registry": [[157, null]], "Docker Socket Proxy": [[149, "docker-socket-proxy"], [158, null]], "Docker by socket": [[149, "docker-by-socket"]], "Docker install": [[167, "docker-install"]], "Docker remote API": [[149, "docker-remote-api"]], "Dockerfile": [[151, "dockerfile"]], "Document creators": [[101, "document-creators"]], "Documentation": [[243, "documentation"]], "Documentation on the translation process": [[8, "documentation-on-the-translation-process"]], "Documentation procedures of changes that affect app developers": [[206, "documentation-procedures-of-changes-that-affect-app-developers"]], "Donations": [[13, "donations"]], "Dos and Don\u2019ts": [[42, "dos-and-don-ts"], [194, "dos-and-don-ts"]], "Download a file": [[70, "download-a-file"]], "Download permission": [[52, "download-permission"]], "Downloading files": [[61, "downloading-files"]], "Downloading folders": [[61, "downloading-folders"]], "Downloads": [[20, "downloads"]], "Drag and drop": [[199, "drag-and-drop"]], "Dropdown": [[76, "dropdown"]], "ESLint config": [[186, "eslint-config"]], "Edit an existing app": [[7, "edit-an-existing-app"]], "Edit entry": [[199, "edit-entry"]], "Element sizes and spacing": [[77, "element-sizes-and-spacing"]], "Element structure variables": [[194, "element-structure-variables"]], "Email": [[103, null]], "Email sending": [[192, "email-sending"]], "Emoji picker": [[76, "emoji-picker"]], "Empty content": [[76, "empty-content"]], "Emptying the trashbin": [[67, "emptying-the-trashbin"]], "Enable the app": [[7, "enable-the-app"], [125, "enable-the-app"]], "Enabled": [[153, "enabled"], [166, "enabled"]], "Enabling debug mode": [[189, "enabling-debug-mode"]], "Endpoint": [[43, "endpoint"], [64, "endpoint"]], "Endpoints": [[69, "endpoints"]], "Enterprise support": [[13, "enterprise-support"]], "Entities": [[37, "entities"], [105, "entities"]], "Entity": [[190, "entity"]], "Entity slug deprecation": [[225, "entity-slug-deprecation"]], "Entries in the calendar \u2013 ICollection": [[107, "entries-in-the-calendar-icollection"]], "Entry bullet": [[199, "entry-bullet"]], "Error handling": [[112, "error-handling"]], "Errors": [[10, "errors"]], "Errors and headers": [[49, "errors-and-headers"]], "Event data \u2013 IFile": [[107, "event-data-ifile"]], "Event payload": [[169, "event-payload"]], "Event-based schema registration": [[99, "event-based-schema-registration"]], "Events": [[22, null], [73, "events"], [115, "events"], [211, "events"]], "Events Listener": [[169, null]], "Events types": [[169, "events-types"]], "ExApp": [[170, null]], "ExApp (external app)": [[190, "exapp-external-app"]], "ExApp deployment issues": [[161, "exapp-deployment-issues"]], "ExApp development": [[151, null], [163, null]], "ExApp info.xml schema": [[165, "exapp-info-xml-schema"]], "ExApp lifecycle": [[153, null]], "ExApp lifecycle methods": [[153, "exapp-lifecycle-methods"]], "ExApp lifecycle scheme": [[153, "exapp-lifecycle-scheme"]], "ExApp metadata": [[154, "exapp-metadata"]], "ExApp overview": [[154, null]], "ExApp registration": [[165, "exapp-registration"]], "ExApp structure": [[154, "exapp-structure"]], "ExApps (Python)": [[42, "exapps-python"]], "ExApps management list of apps from App Store is empty": [[161, "exapps-management-list-of-apps-from-app-store-is-empty"]], "Example": [[43, "example"], [165, "example"], [175, "example"], [178, "example"]], "Example generic handler": [[147, "example-generic-handler"]], "Example response": [[69, "example-response"]], "Example webfinger handler": [[147, "example-webfinger-handler"]], "Examples": [[64, "examples"], [70, null], [73, "examples"], [73, "id1"], [171, "examples"], [202, "examples"]], "Examples search bodies": [[66, "examples-search-bodies"]], "ExceptionalImplementable": [[85, "exceptionalimplementable"]], "Exceptions": [[240, "exceptions"]], "Excluding files .l10nignore": [[8, "excluding-files-l10nignore"]], "Expensive post migration repair steps": [[213, "expensive-post-migration-repair-steps"]], "Expensive repair steps": [[130, "expensive-repair-steps"]], "Expose capabilities": [[49, "expose-capabilities"]], "Exposing actions via capability": [[43, "exposing-actions-via-capability"]], "Extend link preview support": [[129, "extend-link-preview-support"]], "Extend the Smart Picker": [[129, "extend-the-smart-picker"]], "Extending core parts": [[25, "extending-core-parts"]], "Extending the DAV server": [[2, null]], "Extending the \u201cnew\u201d menu in the files app": [[25, "extending-the-new-menu-in-the-files-app"]], "External API": [[240, null]], "External search provider": [[132, "external-search-provider"]], "External storage type": [[99, "external-storage-type"]], "Extracting values from the URL": [[33, "extracting-values-from-the-url"]], "FAQ": [[10, "faq"]], "Failed to create volume": [[161, "failed-to-create-volume"]], "Federated Cloud Shares": [[52, "federated-cloud-shares"]], "Fetch a list of all set user-statuses": [[54, "fetch-a-list-of-all-set-user-statuses"]], "Fetch a result image": [[56, "fetch-a-result-image"]], "Fetch a specific user\u2019s status": [[54, "fetch-a-specific-user-s-status"]], "Fetch a task by ID": [[56, "fetch-a-task-by-id"], [57, "fetch-a-task-by-id"]], "Fetch a user\u2019s backup status": [[54, "fetch-a-user-s-backup-status"]], "Fetch ongoing data": [[50, "fetch-ongoing-data"]], "Fetch the list of predefined statuses": [[54, "fetch-the-list-of-predefined-statuses"]], "Fetch upcoming or ongoing data": [[50, "fetch-upcoming-or-ongoing-data"]], "Fetch user setting and recommendations": [[51, "fetch-user-setting-and-recommendations"]], "Fetch user-controlled recommendations": [[51, "fetch-user-controlled-recommendations"]], "Fetch your own status": [[54, "fetch-your-own-status"]], "Fetching a calendar entry": [[107, "fetching-a-calendar-entry"]], "Fetching all calendar entries": [[107, "fetching-all-calendar-entries"]], "Fetching individual search results": [[132, "fetching-individual-search-results"]], "Fetching provider IDs": [[132, "fetching-provider-ids"]], "Fetching the access rules of the calendar": [[107, "fetching-the-access-rules-of-the-calendar"]], "Fetching the name of an event": [[107, "fetching-the-name-of-an-event"]], "File": [[35, "file"]], "File Actions Menu": [[171, null]], "File bulk upload": [[62, null]], "File picker": [[76, "file-picker"]], "File request": [[52, "file-request"]], "Filenames": [[186, "filenames"]], "Files": [[73, null]], "Files API": [[234, "files-api"]], "Files Metadata": [[104, null]], "Files Sharing": [[54, "files-sharing"]], "Files and Files sharing": [[232, "files-and-files-sharing"]], "Filesystem layer": [[236, "filesystem-layer"]], "Filesystem root": [[22, "filesystem-root"]], "Filesystem scanner": [[22, "filesystem-scanner"]], "Filesystem structure": [[186, "filesystem-structure"]], "Filtering the auto-complete results": [[46, "filtering-the-auto-complete-results"]], "Finalizing and tagging": [[204, "finalizing-and-tagging"]], "Finding bugs to triage": [[204, "finding-bugs-to-triage"]], "Finding duplicates": [[204, "finding-duplicates"]], "First steps": [[48, "first-steps"]], "Folder": [[35, "folder"]], "Font sizes": [[77, "font-sizes"], [231, "font-sizes"]], "Fonts": [[77, "fonts"]], "Force language for a given call": [[46, "force-language-for-a-given-call"]], "Formattable text area": [[76, "formattable-text-area"]], "Forums": [[207, "forums"]], "Foundations": [[77, null]], "Frequently Asked Questions": [[162, null]], "Front controller": [[32, "front-controller"]], "Front-end": [[24, null], [167, "front-end"]], "Front-end changes": [[215, "front-end-changes"], [216, "front-end-changes"], [217, "front-end-changes"], [218, "front-end-changes"], [219, "front-end-changes"], [220, "front-end-changes"], [221, "front-end-changes"], [223, "front-end-changes"], [224, "front-end-changes"], [226, "front-end-changes"], [227, "front-end-changes"], [228, "front-end-changes"], [229, "front-end-changes"], [230, "front-end-changes"], [231, "front-end-changes"], [232, "front-end-changes"], [233, "front-end-changes"], [234, "front-end-changes"]], "Front-end code": [[239, null]], "Frontend": [[154, "frontend"]], "Frontend and build tools": [[190, "frontend-and-build-tools"]], "Frontend routing": [[154, "frontend-routing"]], "Functions": [[186, "functions"]], "Further reading": [[69, "further-reading"], [243, "further-reading"]], "GET request": [[112, "get-request"]], "GPU support": [[159, null]], "GPUs scaling": [[160, "gpus-scaling"]], "Gather information about server setup": [[189, "gather-information-about-server-setup"]], "General": [[74, null], [185, "general"], [186, "general"], [215, "general"], [223, "general"], [225, "general"], [226, "general"], [227, "general"], [228, "general"], [228, "id1"], [229, "general"], [230, "general"], [231, "general"], [233, "general"]], "General color variables": [[194, "general-color-variables"]], "General considerations": [[204, "general-considerations"]], "General rules": [[81, "general-rules"]], "General rules and advice": [[186, "general-rules-and-advice"]], "General web development terms": [[190, "general-web-development-terms"]], "Generate a Snowflake ID": [[136, "generate-a-snowflake-id"]], "Generate the specification": [[49, "generate-the-specification"]], "Generating URLs": [[25, "generating-urls"]], "Generating a token if Nextcloud is the provider": [[119, "generating-a-token-if-nextcloud-is-the-provider"]], "Generic Build Instructions": [[82, "generic-build-instructions"]], "Generic Errors": [[74, "generic-errors"]], "Get ExApp enabled status": [[170, "get-exapp-enabled-status"]], "Get ExApps list": [[170, "get-exapps-list"]], "Get Nextcloud URL": [[170, "get-nextcloud-url"]], "Get Shares from a specific file or folder": [[52, "get-shares-from-a-specific-file-or-folder"]], "Get a unique tag for one event version": [[107, "get-a-unique-tag-for-one-event-version"]], "Get all Shares": [[52, "get-all-shares"]], "Get app config values": [[168, "get-app-config-values"]], "Get available task types": [[57, "get-available-task-types"]], "Get available translation options": [[58, "get-available-translation-options"]], "Get content of a calendar event": [[107, "get-content-of-a-calendar-event"]], "Get data and metadata from a document": [[48, "get-data-and-metadata-from-a-document"]], "Get groups of calendar": [[107, "get-groups-of-calendar"]], "Get information about a known Federated Cloud Share": [[52, "get-information-about-a-known-federated-cloud-share"]], "Get information about a known Share": [[52, "get-information-about-a-known-share"]], "Get list of NC users": [[182, "get-list-of-nc-users"]], "Get the app": [[125, "get-the-app"]], "Get the country code for a region": [[123, "get-the-country-code-for-a-region"]], "Get the provider list": [[129, "get-the-provider-list"]], "Get the share resources for a given file or folder": [[70, "get-the-share-resources-for-a-given-file-or-folder"]], "Get the source": [[189, "get-the-source"]], "Get user config values": [[177, "get-user-config-values"]], "Getting PHPUnit": [[243, "getting-phpunit"]], "Getting access": [[38, "getting-access"]], "Getting data from the backend using AJAX requests": [[20, "getting-data-from-the-backend-using-ajax-requests"]], "Getting help": [[122, "getting-help"], [209, "getting-help"]], "Getting properties for just the folder": [[61, "getting-properties-for-just-the-folder"]], "Getting request parameters": [[20, "getting-request-parameters"]], "Getting started": [[191, null]], "Getting the last modification time stamp": [[107, "getting-the-last-modification-time-stamp"]], "Getting the login token": [[119, "getting-the-login-token"]], "Getting the modification timestamp": [[107, "getting-the-modification-timestamp"]], "Getting the owner of a calendar": [[107, "getting-the-owner-of-a-calendar"]], "Getting the privileges associated with the calendar": [[107, "getting-the-privileges-associated-with-the-calendar"]], "Getting the properties": [[107, "getting-the-properties"]], "Git branch management": [[16, "git-branch-management"]], "GitHub Actions": [[15, "github-actions"]], "Global Middlewares": [[30, "global-middlewares"]], "Global variables": [[115, "global-variables"]], "Glossary": [[150, "glossary"], [190, null]], "GroupManager": [[22, "groupmanager"]], "Groupware & Workflows": [[111, null]], "Groupware integration": [[109, null]], "Guidelines": [[42, "guidelines"]], "HEAD request": [[112, "head-request"]], "HTML": [[184, "html"]], "HTML elements": [[195, null]], "HTML-based Responses": [[20, "html-based-responses"]], "HTML/CSS guidelines": [[197, null]], "HTTP 401 for invalid username/password": [[223, "http-401-for-invalid-username-password"]], "HTTP API": [[101, "http-api"]], "HTTP Client": [[112, null]], "HTTP status codes": [[69, "http-status-codes"]], "Handle exceptions": [[49, "handle-exceptions"]], "Handler registration": [[147, "handler-registration"]], "Handling DAV events": [[2, "handling-dav-events"]], "Handling errors": [[20, "handling-errors"]], "Handling iMIP data": [[107, "handling-imip-data"]], "Handling search requests": [[132, "handling-search-requests"]], "Handling settings storage": [[99, "handling-settings-storage"]], "Handling the dependencies": [[82, "handling-the-dependencies"]], "Healthcheck": [[153, "healthcheck"]], "Heartbeat": [[153, "heartbeat"], [166, "heartbeat"]], "Heavy load and time insensitive": [[18, "heavy-load-and-time-insensitive"]], "Help and communication": [[207, null]], "High level overview": [[236, "high-level-overview"]], "Highlighted counter": [[199, "highlighted-counter"]], "Historical options": [[131, "historical-options"]], "Hooks": [[22, "hooks"], [43, "hooks"]], "How code signing affects apps in the app store": [[10, "how-code-signing-affects-apps-in-the-app-store"]], "How do you triage bugs": [[204, "how-do-you-triage-bugs"]], "How does auto-wiring work": [[21, "how-does-auto-wiring-work"]], "How does it affect the request lifecycle": [[21, "how-does-it-affect-the-request-lifecycle"]], "How does this affect controllers": [[21, "how-does-this-affect-controllers"]], "How the container works": [[21, "how-the-container-works"]], "How to deal with interface and primitive type parameters": [[21, "how-to-deal-with-interface-and-primitive-type-parameters"]], "How to enable GPU support for the Deploy daemon?": [[159, "how-to-enable-gpu-support-for-the-deploy-daemon"]], "How to enable it": [[21, "how-to-enable-it"]], "How to get your app signed": [[10, "how-to-get-your-app-signed"]], "How to limit the number of GPUs per ExApp?": [[159, "how-to-limit-the-number-of-gpus-per-exapp"]], "How to move": [[14, "how-to-move"]], "How to test \u2026": [[192, null]], "How to troubleshoot networking issues?": [[161, "how-to-troubleshoot-networking-issues"]], "How to use a private Docker container registry with authentication?": [[157, "how-to-use-a-private-docker-container-registry-with-authentication"]], "How web requests work in Nextcloud": [[190, "how-web-requests-work-in-nextcloud"]], "How will it work?": [[202, "how-will-it-work"]], "Hybrid Distribution": [[16, "hybrid-distribution"]], "IE11 removal": [[223, "ie11-removal"]], "Icons": [[27, "icons"], [77, "icons"], [196, null]], "Icons should be outlined": [[233, "icons-should-be-outlined"]], "Identifying errors": [[98, "identifying-errors"]], "Ignore certain endpoints": [[49, "ignore-certain-endpoints"]], "Ignoring deadlocks": [[97, "ignoring-deadlocks"]], "Image Pulling (Docker)": [[166, "image-pulling-docker"]], "Images": [[129, "images"]], "Implement a new exporter": [[120, "implement-a-new-exporter"]], "Implementable, Dispatchable and Throwable": [[85, "implementable-dispatchable-and-throwable"]], "Implementation notes": [[101, "implementation-notes"]], "Implementing a Speech-To-Text provider": [[137, "implementing-a-speech-to-text-provider"]], "Implementing a TaskProcessing provider": [[140, "implementing-a-taskprocessing-provider"]], "Implementing a Text-To-Image provider": [[141, "implementing-a-text-to-image-provider"]], "Implementing a TextProcessing provider": [[142, "implementing-a-textprocessing-provider"]], "Implementing a Translation provider": [[116, "implementing-a-translation-provider"]], "Implementing a content provider for Context Chat": [[94, "implementing-a-content-provider-for-context-chat"]], "Implementing a filter": [[69, "implementing-a-filter"]], "Implementing a provider": [[69, "implementing-a-provider"]], "Implementing a setting": [[69, "implementing-a-setting"]], "Implementing a simple two-factor auth provider": [[144, "implementing-a-simple-two-factor-auth-provider"]], "Implementing a storage": [[38, "implementing-a-storage"]], "Implementing an API called from a public share page": [[128, "implementing-an-api-called-from-a-public-share-page"]], "Implementing an advanced TaskProcessing provider": [[140, "implementing-an-advanced-taskprocessing-provider"]], "Implementing an authenticated public page": [[128, "implementing-an-authenticated-public-page"]], "Implementing the ContentProviderRegisterEvent event": [[94, "implementing-the-contentproviderregisterevent-event"]], "Improving your translations": [[42, "improving-your-translations"]], "In Place of a Conclusion": [[149, "in-place-of-a-conclusion"]], "In-memory cache": [[19, "in-memory-cache"]], "Including CSS and JavaScript": [[26, "including-css-and-javascript"]], "Including images": [[26, "including-images"]], "Including templates": [[26, "including-templates"]], "Indentation": [[186, "indentation"]], "Indexed values": [[93, "indexed-values"]], "Init": [[153, "init"], [166, "init"]], "Init the library": [[70, "init-the-library"]], "Initialization events": [[6, "initialization-events"]], "Initializing the collection": [[48, "initializing-the-collection"]], "Inline attachments": [[103, "inline-attachments"]], "Input and output shapes": [[140, "input-and-output-shapes"]], "Input fields": [[76, "input-fields"]], "Install AppAPI": [[149, "install-appapi"]], "Installing Node JS": [[243, "installing-node-js"]], "Installing the apps": [[48, "installing-the-apps"]], "Integrating the assistant": [[87, null]], "Integration of custom calendar providers": [[107, null]], "Integration test example": [[152, "integration-test-example"]], "Interactive commands": [[1, "interactive-commands"]], "Interactive widgets": [[129, "interactive-widgets"]], "Interface": [[190, "interface"]], "Internal changes": [[215, "internal-changes"]], "Internal storage type": [[99, "internal-storage-type"]], "Internal task types": [[140, "internal-task-types"]], "Introduction": [[7, null], [20, "introduction"], [21, "introduction"], [62, "introduction"], [63, "introduction"], [79, null], [150, null], [198, "introduction"], [199, null], [199, "id1"], [199, "id2"], [199, "id4"], [202, "introduction"], [240, "introduction"]], "Is code signing mandatory for apps?": [[10, "is-code-signing-mandatory-for-apps"]], "Issues/Bugs": [[43, "issues-bugs"]], "JSON": [[20, "json"], [190, "json"]], "JSON parameters": [[20, "json-parameters"]], "JavaScript": [[25, null], [27, "javascript"], [209, "javascript"]], "JavaScript / TypeScript": [[42, "javascript-typescript"]], "JavaScript / TypeScript / Vue": [[42, "javascript-typescript-vue"]], "JavaScript APIs": [[115, null]], "JavaScript and Typescript": [[186, null]], "JavaScript unit testing for server": [[243, "javascript-unit-testing-for-server"]], "Keep the code up-to-date": [[189, "keep-the-code-up-to-date"]], "Key integration considerations": [[152, "key-integration-considerations"]], "Keyboard shortcuts": [[25, "keyboard-shortcuts"]], "L10n translations": [[154, "l10n-translations"]], "LDAP factory availability": [[223, "ldap-factory-availability"]], "LLM Prompts and multilingual I/O": [[140, "llm-prompts-and-multilingual-i-o"]], "Labels": [[185, "labels"]], "Language of other users": [[42, "language-of-other-users"]], "Language tuple structure": [[58, "language-tuple-structure"]], "Last version with database.xml support and migration": [[222, "last-version-with-database-xml-support-and-migration"]], "Layout": [[80, null]], "Lazy Loading": [[93, "lazy-loading"]], "Lazy loading": [[90, "lazy-loading"]], "Legacy access to the Sabre classes": [[107, "legacy-access-to-the-sabre-classes"]], "Legal and security": [[14, "legal-and-security"]], "Lexicon": [[92, null]], "Library installation": [[72, null]], "License headers": [[185, "license-headers"]], "Line height": [[231, "line-height"]], "Linking a collection to a user account": [[48, "linking-a-collection-to-a-user-account"]], "Linting": [[95, "linting"]], "List accepted Federated Cloud Shares": [[52, "list-accepted-federated-cloud-shares"]], "List editors and creators": [[101, "list-editors-and-creators"]], "List item": [[76, "list-item"]], "List of available icons": [[196, "list-of-available-icons"]], "List pending Federated Cloud Shares": [[52, "list-pending-federated-cloud-shares"]], "List tasks by App": [[56, "list-tasks-by-app"]], "List templates": [[101, "list-templates"]], "Listener callbacks": [[22, "listener-callbacks"]], "Listener classes": [[22, "listener-classes"]], "Listening to events": [[121, "listening-to-events"]], "Listening to log events": [[29, "listening-to-log-events"]], "Listening to the image generation events": [[141, "listening-to-the-image-generation-events"]], "Listening to the task processing events": [[140, "listening-to-the-task-processing-events"]], "Listening to the text processing events": [[142, "listening-to-the-text-processing-events"]], "Listening to the transcription events": [[137, "listening-to-the-transcription-events"]], "Listing favorites": [[61, "listing-favorites"]], "Listing folders (rfc4918)": [[61, "listing-folders-rfc4918"]], "Listing the trashbin content": [[67, "listing-the-trashbin-content"]], "Listing the versions of a file": [[68, "listing-the-versions-of-a-file"]], "Live & Background Events": [[104, "live-background-events"]], "Loading initial state": [[25, "loading-initial-state"]], "Local Shares": [[52, "local-shares"]], "Local cache": [[19, "local-cache"]], "Log format": [[223, "log-format"]], "Log level mapping": [[29, "log-level-mapping"]], "Logging": [[29, null], [151, "logging"], [173, null]], "Logging exceptions": [[29, "logging-exceptions"]], "Logical position CSS rules": [[232, "logical-position-css-rules"]], "Login Flow": [[44, null]], "Login flow v2": [[44, "login-flow-v2"]], "Login in the user": [[44, "login-in-the-user"]], "Login name vs. email login": [[44, "login-name-vs-email-login"]], "Long transactions": [[122, "long-transactions"]], "Loosening the default restrictions": [[20, "loosening-the-default-restrictions"]], "Losing a rating": [[14, "losing-a-rating"]], "Machine Translation": [[116, null]], "Mail Provider Interface": [[110, null]], "Main content": [[193, null]], "Maintainers": [[12, null], [207, "maintainers"]], "Maintenance Mode": [[74, "maintenance-mode"]], "Major update": [[16, "major-update"]], "Make Requests to ExApps": [[170, "make-requests-to-exapps"]], "Make a provider activatable by the admin (optional)": [[144, "make-a-provider-activatable-by-the-admin-optional"]], "Make a provider deactivatable by the admin (optional)": [[144, "make-a-provider-deactivatable-by-the-admin-optional"]], "Makefile": [[154, "makefile"]], "Makefile changes for code signing": [[15, "makefile-changes-for-code-signing"]], "Making requests in JavaScript": [[61, "making-requests-in-javascript"]], "Making search requests": [[66, "making-search-requests"]], "Managing config keys": [[90, "managing-config-keys"], [93, "managing-config-keys"]], "Managing the access to the calendar \u2013 IACL": [[107, "managing-the-access-to-the-calendar-iacl"]], "Manual Backport": [[188, "manual-backport"]], "Manual install": [[167, "manual-install"]], "Manual install for development": [[165, "manual-install-for-development"]], "Manual translation": [[8, "manual-translation"]], "Manual translations": [[167, "manual-translations"]], "Mapper": [[190, "mapper"]], "Mappers": [[37, "mappers"]], "Match links": [[129, "match-links"]], "Matching subURLs": [[33, "matching-suburls"]], "Material design icons": [[196, "material-design-icons"]], "Measuring performance": [[122, "measuring-performance"]], "Menu": [[199, "menu"]], "Merging activities": [[69, "merging-activities"]], "Message interpolation": [[29, "message-interpolation"]], "Messages: editor page \u2192 native client": [[101, "messages-editor-page-native-client"]], "Metadata Query Helper": [[104, "metadata-query-helper"]], "Method 1: Edit PHP CLI php.ini File": [[156, "method-1-edit-php-cli-php-ini-file"]], "Method 2: Set System-Wide Environment Variables": [[156, "method-2-set-system-wide-environment-variables"]], "Methods": [[143, "methods"]], "Middlewares": [[30, null]], "Migration": [[190, "migration"]], "Migration commands": [[223, "migration-commands"]], "Migration from PHPDoc annotations to native PHP attributes": [[227, "migration-from-phpdoc-annotations-to-native-php-attributes"]], "Migrations": [[40, null]], "Migrations and Metadata": [[40, "migrations-and-metadata"]], "Minor updates": [[16, "minor-updates"]], "Miscellaneous": [[90, "miscellaneous"], [93, "miscellaneous"]], "Miscellaneous OCS APIs": [[182, null]], "Miscellaneous responses": [[20, "miscellaneous-responses"]], "Mitigations": [[97, "mitigations"]], "Modals": [[76, "modals"]], "Modify out-of-office data": [[50, "modify-out-of-office-data"]], "Modifying the CORS headers": [[131, "modifying-the-cors-headers"]], "Modifying the content security policy": [[20, "modifying-the-content-security-policy"]], "Modifying users": [[146, "modifying-users"]], "Monetizing your app": [[13, null]], "Mount": [[236, "mount"]], "Move a file or folder": [[70, "move-a-file-or-folder"]], "Moving files and folders (rfc4918)": [[61, "moving-files-and-folders-rfc4918"]], "Moving your repo to the Nextcloud organization": [[14, "moving-your-repo-to-the-nextcloud-organization"]], "NPM": [[118, null]], "Names, pronouns, and gender": [[81, "names-pronouns-and-gender"]], "Namespace": [[190, "namespace"]], "Naming and casing": [[186, "naming-and-casing"]], "Naming convention": [[184, "naming-convention"]], "Naming conventions": [[36, "naming-conventions"]], "Naming scheme": [[22, "naming-scheme"]], "Navigation": [[76, "navigation"]], "Navigation and pre-app configuration": [[6, null]], "Navigation styling revisions": [[235, "navigation-styling-revisions"]], "NcReferencePickerModal": [[129, "ncreferencepickermodal"]], "NcReferenceWidget": [[129, "ncreferencewidget"]], "NcRichContenteditable": [[129, "ncrichcontenteditable"]], "NcRichText": [[129, "ncrichtext"]], "Network state changes": [[115, "network-state-changes"]], "New APIs": [[219, "new-apis"], [220, "new-apis"]], "New button": [[199, "new-button"]], "New deprecations": [[211, "new-deprecations"]], "New in this release": [[213, null]], "Nextcloud": [[190, "nextcloud"]], "Nextcloud 20 and later": [[0, "nextcloud-20-and-later"]], "Nextcloud AIO": [[158, "nextcloud-aio"]], "Nextcloud Android library": [[71, "nextcloud-android-library"]], "Nextcloud AppAPI DSP": [[158, "nextcloud-appapi-dsp"]], "Nextcloud Flow": [[105, null]], "Nextcloud architecture": [[237, null]], "Nextcloud bug triaging": [[204, null]], "Nextcloud developer documentation": [[201, null]], "Nextcloud filesystem API": [[38, null], [236, null]], "Nextcloud-side ExApp lifecycle methods": [[153, "nextcloud-side-exapp-lifecycle-methods"]], "Nextcloud-specific terms": [[190, "nextcloud-specific-terms"]], "Nightly releases": [[16, "nightly-releases"]], "No space between function name and parameters": [[186, "id8"]], "Node": [[236, "node"]], "Node API": [[38, "node-api"]], "Node Events": [[169, "node-events"]], "Node.js upgrade": [[223, "node-js-upgrade"]], "Not open source anymore?": [[10, "not-open-source-anymore"]], "Note card": [[76, "note-card"]], "Notifications": [[46, "notifications"], [117, null], [174, null]], "OC \u2013 internal APIs": [[115, "oc-internal-apis"]], "OCA \u2013 App APIs": [[115, "oca-app-apis"]], "OCA\\DAV\\Events\\SabrePluginAddEvent": [[22, "oca-dav-events-sabrepluginaddevent"]], "OCC Command": [[175, null]], "OCP event dispatcher": [[22, "ocp-event-dispatcher"]], "OCP \u2013 Public APIs": [[115, "ocp-public-apis"]], "OCP\\Accounts\\UserUpdatedEvent": [[17, null], [22, "ocp-accounts-userupdatedevent"]], "OCP\\AppFramework\\Http\\Events\\BeforeLoginTemplateRenderedEvent": [[17, "ocp-appframework-http-events-beforelogintemplaterenderedevent"], [22, "ocp-appframework-http-events-beforelogintemplaterenderedevent"]], "OCP\\AppFramework\\Http\\Events\\BeforeTemplateRenderedEvent": [[17, "ocp-appframework-http-events-beforetemplaterenderedevent"], [22, "ocp-appframework-http-events-beforetemplaterenderedevent"]], "OCP\\App\\Events\\AppDisableEvent": [[17, "ocp-app-events-appdisableevent"], [22, "ocp-app-events-appdisableevent"]], "OCP\\App\\Events\\AppEnableEvent": [[17, "ocp-app-events-appenableevent"], [22, "ocp-app-events-appenableevent"]], "OCP\\App\\Events\\AppUpdateEvent": [[17, "ocp-app-events-appupdateevent"], [22, "ocp-app-events-appupdateevent"]], "OCP\\App\\ManagerEvent": [[17, "ocp-app-managerevent"], [22, "ocp-app-managerevent"]], "OCP\\Authentication\\Events\\AnyLoginFailedEvent": [[17, "ocp-authentication-events-anyloginfailedevent"], [22, "ocp-authentication-events-anyloginfailedevent"]], "OCP\\Authentication\\Events\\LoginFailedEvent": [[17, "ocp-authentication-events-loginfailedevent"], [22, "ocp-authentication-events-loginfailedevent"]], "OCP\\Authentication\\Events\\TokenInvalidatedEvent": [[17, "ocp-authentication-events-tokeninvalidatedevent"], [22, "ocp-authentication-events-tokeninvalidatedevent"]], "OCP\\Authentication\\TwoFactorAuth\\RegistryEvent": [[17, "ocp-authentication-twofactorauth-registryevent"], [22, "ocp-authentication-twofactorauth-registryevent"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengeFailed": [[17, "ocp-authentication-twofactorauth-twofactorproviderchallengefailed"], [22, "ocp-authentication-twofactorauth-twofactorproviderchallengefailed"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengePassed": [[17, "ocp-authentication-twofactorauth-twofactorproviderchallengepassed"], [22, "ocp-authentication-twofactorauth-twofactorproviderchallengepassed"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderDisabled": [[17, "ocp-authentication-twofactorauth-twofactorproviderdisabled"], [22, "ocp-authentication-twofactorauth-twofactorproviderdisabled"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserDisabled": [[17, "ocp-authentication-twofactorauth-twofactorproviderforuserdisabled"], [22, "ocp-authentication-twofactorauth-twofactorproviderforuserdisabled"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserEnabled": [[17, "ocp-authentication-twofactorauth-twofactorproviderforuserenabled"], [22, "ocp-authentication-twofactorauth-twofactorproviderforuserenabled"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserRegistered": [[17, "ocp-authentication-twofactorauth-twofactorproviderforuserregistered"], [22, "ocp-authentication-twofactorauth-twofactorproviderforuserregistered"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserUnregistered": [[17, "ocp-authentication-twofactorauth-twofactorproviderforuserunregistered"], [22, "ocp-authentication-twofactorauth-twofactorproviderforuserunregistered"]], "OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderUserDeleted": [[17, "ocp-authentication-twofactorauth-twofactorprovideruserdeleted"], [22, "ocp-authentication-twofactorauth-twofactorprovideruserdeleted"]], "OCP\\BeforeSabrePubliclyLoadedEvent": [[17, "ocp-beforesabrepubliclyloadedevent"], [22, "ocp-beforesabrepubliclyloadedevent"]], "OCP\\Calendar\\Events\\CalendarObjectCreatedEvent": [[17, "ocp-calendar-events-calendarobjectcreatedevent"], [22, "ocp-calendar-events-calendarobjectcreatedevent"]], "OCP\\Calendar\\Events\\CalendarObjectDeletedEvent": [[17, "ocp-calendar-events-calendarobjectdeletedevent"], [22, "ocp-calendar-events-calendarobjectdeletedevent"]], "OCP\\Calendar\\Events\\CalendarObjectMovedEvent": [[17, "ocp-calendar-events-calendarobjectmovedevent"], [22, "ocp-calendar-events-calendarobjectmovedevent"]], "OCP\\Calendar\\Events\\CalendarObjectMovedToTrashEvent": [[17, "ocp-calendar-events-calendarobjectmovedtotrashevent"], [22, "ocp-calendar-events-calendarobjectmovedtotrashevent"]], "OCP\\Calendar\\Events\\CalendarObjectRestoredEvent": [[17, "ocp-calendar-events-calendarobjectrestoredevent"], [22, "ocp-calendar-events-calendarobjectrestoredevent"]], "OCP\\Calendar\\Events\\CalendarObjectUpdatedEvent": [[17, "ocp-calendar-events-calendarobjectupdatedevent"], [22, "ocp-calendar-events-calendarobjectupdatedevent"]], "OCP\\Collaboration\\AutoComplete\\AutoCompleteEvent": [[17, "ocp-collaboration-autocomplete-autocompleteevent"], [22, "ocp-collaboration-autocomplete-autocompleteevent"]], "OCP\\Collaboration\\AutoComplete\\AutoCompleteFilterEvent": [[17, "ocp-collaboration-autocomplete-autocompletefilterevent"], [22, "ocp-collaboration-autocomplete-autocompletefilterevent"]], "OCP\\Collaboration\\Reference\\RenderReferenceEvent": [[17, "ocp-collaboration-reference-renderreferenceevent"], [22, "ocp-collaboration-reference-renderreferenceevent"]], "OCP\\Collaboration\\Resources\\LoadAdditionalScriptsEvent": [[17, "ocp-collaboration-resources-loadadditionalscriptsevent"], [22, "ocp-collaboration-resources-loadadditionalscriptsevent"]], "OCP\\Comments\\CommentsEntityEvent": [[17, "ocp-comments-commentsentityevent"], [22, "ocp-comments-commentsentityevent"]], "OCP\\Comments\\CommentsEvent": [[17, "ocp-comments-commentsevent"], [22, "ocp-comments-commentsevent"]], "OCP\\Config\\BeforePreferenceDeletedEvent": [[17, "ocp-config-beforepreferencedeletedevent"], [22, "ocp-config-beforepreferencedeletedevent"]], "OCP\\Config\\BeforePreferenceSetEvent": [[17, "ocp-config-beforepreferencesetevent"], [22, "ocp-config-beforepreferencesetevent"]], "OCP\\Console\\ConsoleEvent": [[17, "ocp-console-consoleevent"], [22, "ocp-console-consoleevent"]], "OCP\\Contacts\\Events\\ContactInteractedWithEvent": [[17, "ocp-contacts-events-contactinteractedwithevent"], [22, "ocp-contacts-events-contactinteractedwithevent"]], "OCP\\DB\\Events\\AddMissingColumnsEvent": [[17, "ocp-db-events-addmissingcolumnsevent"], [22, "ocp-db-events-addmissingcolumnsevent"]], "OCP\\DB\\Events\\AddMissingIndicesEvent": [[17, "ocp-db-events-addmissingindicesevent"], [22, "ocp-db-events-addmissingindicesevent"]], "OCP\\DB\\Events\\AddMissingPrimaryKeyEvent": [[17, "ocp-db-events-addmissingprimarykeyevent"], [22, "ocp-db-events-addmissingprimarykeyevent"]], "OCP\\DirectEditing\\RegisterDirectEditorEvent": [[17, "ocp-directediting-registerdirecteditorevent"], [22, "ocp-directediting-registerdirecteditorevent"]], "OCP\\EventDispatcher\\GenericEvent": [[17, "ocp-eventdispatcher-genericevent"], [22, "ocp-eventdispatcher-genericevent"]], "OCP\\Federation\\Events\\TrustedServerRemovedEvent": [[17, "ocp-federation-events-trustedserverremovedevent"], [22, "ocp-federation-events-trustedserverremovedevent"]], "OCP\\FilesMetadata\\Event\\MetadataBackgroundEvent": [[17, "ocp-filesmetadata-event-metadatabackgroundevent"], [22, "ocp-filesmetadata-event-metadatabackgroundevent"]], "OCP\\FilesMetadata\\Event\\MetadataLiveEvent": [[17, "ocp-filesmetadata-event-metadataliveevent"], [22, "ocp-filesmetadata-event-metadataliveevent"]], "OCP\\FilesMetadata\\Event\\MetadataNamedEvent": [[17, "ocp-filesmetadata-event-metadatanamedevent"], [22, "ocp-filesmetadata-event-metadatanamedevent"]], "OCP\\Files\\Cache\\AbstractCacheEvent": [[17, "ocp-files-cache-abstractcacheevent"], [22, "ocp-files-cache-abstractcacheevent"]], "OCP\\Files\\Cache\\CacheEntryInsertedEvent": [[17, "ocp-files-cache-cacheentryinsertedevent"], [22, "ocp-files-cache-cacheentryinsertedevent"]], "OCP\\Files\\Cache\\CacheEntryRemovedEvent": [[17, "ocp-files-cache-cacheentryremovedevent"], [22, "ocp-files-cache-cacheentryremovedevent"]], "OCP\\Files\\Cache\\CacheEntryUpdatedEvent": [[17, "ocp-files-cache-cacheentryupdatedevent"], [22, "ocp-files-cache-cacheentryupdatedevent"]], "OCP\\Files\\Cache\\CacheInsertEvent": [[17, "ocp-files-cache-cacheinsertevent"], [22, "ocp-files-cache-cacheinsertevent"]], "OCP\\Files\\Cache\\CacheUpdateEvent": [[17, "ocp-files-cache-cacheupdateevent"], [22, "ocp-files-cache-cacheupdateevent"]], "OCP\\Files\\Config\\Event\\UserMountAddedEvent": [[17, "ocp-files-config-event-usermountaddedevent"], [22, "ocp-files-config-event-usermountaddedevent"]], "OCP\\Files\\Config\\Event\\UserMountRemovedEvent": [[17, "ocp-files-config-event-usermountremovedevent"], [22, "ocp-files-config-event-usermountremovedevent"]], "OCP\\Files\\Config\\Event\\UserMountUpdatedEvent": [[17, "ocp-files-config-event-usermountupdatedevent"], [22, "ocp-files-config-event-usermountupdatedevent"]], "OCP\\Files\\Events\\BeforeDirectFileDownloadEvent": [[17, "ocp-files-events-beforedirectfiledownloadevent"], [22, "ocp-files-events-beforedirectfiledownloadevent"]], "OCP\\Files\\Events\\BeforeFileScannedEvent": [[17, "ocp-files-events-beforefilescannedevent"], [22, "ocp-files-events-beforefilescannedevent"]], "OCP\\Files\\Events\\BeforeFileSystemSetupEvent": [[17, "ocp-files-events-beforefilesystemsetupevent"], [22, "ocp-files-events-beforefilesystemsetupevent"]], "OCP\\Files\\Events\\BeforeFolderScannedEvent": [[17, "ocp-files-events-beforefolderscannedevent"], [22, "ocp-files-events-beforefolderscannedevent"]], "OCP\\Files\\Events\\BeforeZipCreatedEvent": [[17, "ocp-files-events-beforezipcreatedevent"], [22, "ocp-files-events-beforezipcreatedevent"]], "OCP\\Files\\Events\\FileCacheUpdated": [[17, "ocp-files-events-filecacheupdated"], [22, "ocp-files-events-filecacheupdated"]], "OCP\\Files\\Events\\FileScannedEvent": [[17, "ocp-files-events-filescannedevent"], [22, "ocp-files-events-filescannedevent"]], "OCP\\Files\\Events\\FolderScannedEvent": [[17, "ocp-files-events-folderscannedevent"], [22, "ocp-files-events-folderscannedevent"]], "OCP\\Files\\Events\\InvalidateMountCacheEvent": [[17, "ocp-files-events-invalidatemountcacheevent"], [22, "ocp-files-events-invalidatemountcacheevent"]], "OCP\\Files\\Events\\NodeAddedToCache": [[17, "ocp-files-events-nodeaddedtocache"], [22, "ocp-files-events-nodeaddedtocache"]], "OCP\\Files\\Events\\NodeAddedToFavorite": [[17, "ocp-files-events-nodeaddedtofavorite"], [22, "ocp-files-events-nodeaddedtofavorite"]], "OCP\\Files\\Events\\NodeRemovedFromCache": [[17, "ocp-files-events-noderemovedfromcache"], [22, "ocp-files-events-noderemovedfromcache"]], "OCP\\Files\\Events\\NodeRemovedFromFavorite": [[17, "ocp-files-events-noderemovedfromfavorite"], [22, "ocp-files-events-noderemovedfromfavorite"]], "OCP\\Files\\Events\\Node\\BeforeNodeCopiedEvent": [[17, "ocp-files-events-node-beforenodecopiedevent"], [22, "ocp-files-events-node-beforenodecopiedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeCreatedEvent": [[17, "ocp-files-events-node-beforenodecreatedevent"], [22, "ocp-files-events-node-beforenodecreatedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeDeletedEvent": [[17, "ocp-files-events-node-beforenodedeletedevent"], [22, "ocp-files-events-node-beforenodedeletedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeReadEvent": [[17, "ocp-files-events-node-beforenodereadevent"], [22, "ocp-files-events-node-beforenodereadevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeRenamedEvent": [[17, "ocp-files-events-node-beforenoderenamedevent"], [22, "ocp-files-events-node-beforenoderenamedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeTouchedEvent": [[17, "ocp-files-events-node-beforenodetouchedevent"], [22, "ocp-files-events-node-beforenodetouchedevent"]], "OCP\\Files\\Events\\Node\\BeforeNodeWrittenEvent": [[17, "ocp-files-events-node-beforenodewrittenevent"], [22, "ocp-files-events-node-beforenodewrittenevent"]], "OCP\\Files\\Events\\Node\\FilesystemTornDownEvent": [[17, "ocp-files-events-node-filesystemtorndownevent"], [22, "ocp-files-events-node-filesystemtorndownevent"]], "OCP\\Files\\Events\\Node\\NodeCopiedEvent": [[17, "ocp-files-events-node-nodecopiedevent"], [22, "ocp-files-events-node-nodecopiedevent"]], "OCP\\Files\\Events\\Node\\NodeCreatedEvent": [[17, "ocp-files-events-node-nodecreatedevent"], [22, "ocp-files-events-node-nodecreatedevent"]], "OCP\\Files\\Events\\Node\\NodeDeletedEvent": [[17, "ocp-files-events-node-nodedeletedevent"], [22, "ocp-files-events-node-nodedeletedevent"]], "OCP\\Files\\Events\\Node\\NodeRenamedEvent": [[17, "ocp-files-events-node-noderenamedevent"], [22, "ocp-files-events-node-noderenamedevent"]], "OCP\\Files\\Events\\Node\\NodeTouchedEvent": [[17, "ocp-files-events-node-nodetouchedevent"], [22, "ocp-files-events-node-nodetouchedevent"]], "OCP\\Files\\Events\\Node\\NodeWrittenEvent": [[17, "ocp-files-events-node-nodewrittenevent"], [22, "ocp-files-events-node-nodewrittenevent"]], "OCP\\Files\\ObjectStore\\Events\\BucketCreatedEvent": [[17, "ocp-files-objectstore-events-bucketcreatedevent"], [22, "ocp-files-objectstore-events-bucketcreatedevent"]], "OCP\\Files\\Template\\BeforeGetTemplatesEvent": [[17, "ocp-files-template-beforegettemplatesevent"], [22, "ocp-files-template-beforegettemplatesevent"]], "OCP\\Files\\Template\\FileCreatedFromTemplateEvent": [[17, "ocp-files-template-filecreatedfromtemplateevent"], [22, "ocp-files-template-filecreatedfromtemplateevent"]], "OCP\\Files\\Template\\RegisterTemplateCreatorEvent": [[17, "ocp-files-template-registertemplatecreatorevent"], [22, "ocp-files-template-registertemplatecreatorevent"]], "OCP\\Group\\Events\\BeforeGroupChangedEvent": [[17, "ocp-group-events-beforegroupchangedevent"], [22, "ocp-group-events-beforegroupchangedevent"]], "OCP\\Group\\Events\\BeforeGroupCreatedEvent": [[17, "ocp-group-events-beforegroupcreatedevent"], [22, "ocp-group-events-beforegroupcreatedevent"]], "OCP\\Group\\Events\\BeforeGroupDeletedEvent": [[17, "ocp-group-events-beforegroupdeletedevent"], [22, "ocp-group-events-beforegroupdeletedevent"]], "OCP\\Group\\Events\\BeforeUserAddedEvent": [[17, "ocp-group-events-beforeuseraddedevent"], [22, "ocp-group-events-beforeuseraddedevent"]], "OCP\\Group\\Events\\BeforeUserRemovedEvent": [[17, "ocp-group-events-beforeuserremovedevent"], [22, "ocp-group-events-beforeuserremovedevent"]], "OCP\\Group\\Events\\GroupChangedEvent": [[17, "ocp-group-events-groupchangedevent"], [22, "ocp-group-events-groupchangedevent"]], "OCP\\Group\\Events\\GroupCreatedEvent": [[17, "ocp-group-events-groupcreatedevent"], [22, "ocp-group-events-groupcreatedevent"]], "OCP\\Group\\Events\\GroupDeletedEvent": [[17, "ocp-group-events-groupdeletedevent"], [22, "ocp-group-events-groupdeletedevent"]], "OCP\\Group\\Events\\SubAdminAddedEvent": [[17, "ocp-group-events-subadminaddedevent"], [22, "ocp-group-events-subadminaddedevent"]], "OCP\\Group\\Events\\SubAdminRemovedEvent": [[17, "ocp-group-events-subadminremovedevent"], [22, "ocp-group-events-subadminremovedevent"]], "OCP\\Group\\Events\\UserAddedEvent": [[17, "ocp-group-events-useraddedevent"], [22, "ocp-group-events-useraddedevent"]], "OCP\\Group\\Events\\UserRemovedEvent": [[17, "ocp-group-events-userremovedevent"], [22, "ocp-group-events-userremovedevent"]], "OCP\\Log\\Audit\\CriticalActionPerformedEvent": [[17, "ocp-log-audit-criticalactionperformedevent"], [22, "ocp-log-audit-criticalactionperformedevent"]], "OCP\\Log\\BeforeMessageLoggedEvent": [[17, "ocp-log-beforemessageloggedevent"], [22, "ocp-log-beforemessageloggedevent"]], "OCP\\Mail\\Events\\BeforeMessageSent": [[17, "ocp-mail-events-beforemessagesent"], [22, "ocp-mail-events-beforemessagesent"]], "OCP\\Navigation\\Events\\LoadAdditionalEntriesEvent": [[17, "ocp-navigation-events-loadadditionalentriesevent"], [22, "ocp-navigation-events-loadadditionalentriesevent"]], "OCP\\OCM\\Events\\ResourceTypeRegisterEvent": [[17, "ocp-ocm-events-resourcetyperegisterevent"], [22, "ocp-ocm-events-resourcetyperegisterevent"]], "OCP\\Preview\\BeforePreviewFetchedEvent": [[17, "ocp-preview-beforepreviewfetchedevent"], [22, "ocp-preview-beforepreviewfetchedevent"]], "OCP\\Profile\\BeforeTemplateRenderedEvent": [[17, "ocp-profile-beforetemplaterenderedevent"], [22, "ocp-profile-beforetemplaterenderedevent"]], "OCP\\SabrePluginEvent": [[17, "ocp-sabrepluginevent"], [22, "ocp-sabrepluginevent"]], "OCP\\Security\\CSP\\AddContentSecurityPolicyEvent": [[17, "ocp-security-csp-addcontentsecuritypolicyevent"], [22, "ocp-security-csp-addcontentsecuritypolicyevent"]], "OCP\\Security\\Events\\GenerateSecurePasswordEvent": [[17, "ocp-security-events-generatesecurepasswordevent"], [22, "ocp-security-events-generatesecurepasswordevent"]], "OCP\\Security\\Events\\ValidatePasswordPolicyEvent": [[17, "ocp-security-events-validatepasswordpolicyevent"], [22, "ocp-security-events-validatepasswordpolicyevent"]], "OCP\\Security\\FeaturePolicy\\AddFeaturePolicyEvent": [[17, "ocp-security-featurepolicy-addfeaturepolicyevent"], [22, "ocp-security-featurepolicy-addfeaturepolicyevent"]], "OCP\\Settings\\Events\\DeclarativeSettingsGetValueEvent": [[17, "ocp-settings-events-declarativesettingsgetvalueevent"], [22, "ocp-settings-events-declarativesettingsgetvalueevent"]], "OCP\\Settings\\Events\\DeclarativeSettingsRegisterFormEvent": [[17, "ocp-settings-events-declarativesettingsregisterformevent"], [22, "ocp-settings-events-declarativesettingsregisterformevent"]], "OCP\\Settings\\Events\\DeclarativeSettingsSetValueEvent": [[17, "ocp-settings-events-declarativesettingssetvalueevent"], [22, "ocp-settings-events-declarativesettingssetvalueevent"]], "OCP\\Share\\Events\\BeforeShareCreatedEvent": [[17, "ocp-share-events-beforesharecreatedevent"], [22, "ocp-share-events-beforesharecreatedevent"]], "OCP\\Share\\Events\\BeforeShareDeletedEvent": [[17, "ocp-share-events-beforesharedeletedevent"], [22, "ocp-share-events-beforesharedeletedevent"]], "OCP\\Share\\Events\\ShareAcceptedEvent": [[17, "ocp-share-events-shareacceptedevent"], [22, "ocp-share-events-shareacceptedevent"]], "OCP\\Share\\Events\\ShareCreatedEvent": [[17, "ocp-share-events-sharecreatedevent"], [22, "ocp-share-events-sharecreatedevent"]], "OCP\\Share\\Events\\ShareDeletedEvent": [[17, "ocp-share-events-sharedeletedevent"], [22, "ocp-share-events-sharedeletedevent"]], "OCP\\Share\\Events\\ShareDeletedFromSelfEvent": [[17, "ocp-share-events-sharedeletedfromselfevent"], [22, "ocp-share-events-sharedeletedfromselfevent"]], "OCP\\Share\\Events\\VerifyMountPointEvent": [[17, "ocp-share-events-verifymountpointevent"], [22, "ocp-share-events-verifymountpointevent"]], "OCP\\SpeechToText\\Events\\TranscriptionFailedEvent": [[17, "ocp-speechtotext-events-transcriptionfailedevent"], [22, "ocp-speechtotext-events-transcriptionfailedevent"]], "OCP\\SpeechToText\\Events\\TranscriptionSuccessfulEvent": [[17, "ocp-speechtotext-events-transcriptionsuccessfulevent"], [22, "ocp-speechtotext-events-transcriptionsuccessfulevent"]], "OCP\\SystemTag\\ManagerEvent": [[17, "ocp-systemtag-managerevent"], [22, "ocp-systemtag-managerevent"]], "OCP\\SystemTag\\MapperEvent": [[17, "ocp-systemtag-mapperevent"], [22, "ocp-systemtag-mapperevent"]], "OCP\\SystemTag\\SystemTagsEntityEvent": [[17, "ocp-systemtag-systemtagsentityevent"], [22, "ocp-systemtag-systemtagsentityevent"]], "OCP\\TaskProcessing\\Events\\GetTaskProcessingProvidersEvent": [[17, "ocp-taskprocessing-events-gettaskprocessingprovidersevent"], [22, "ocp-taskprocessing-events-gettaskprocessingprovidersevent"]], "OCP\\TaskProcessing\\Events\\TaskFailedEvent": [[17, "ocp-taskprocessing-events-taskfailedevent"], [22, "ocp-taskprocessing-events-taskfailedevent"]], "OCP\\TaskProcessing\\Events\\TaskSuccessfulEvent": [[17, "ocp-taskprocessing-events-tasksuccessfulevent"], [22, "ocp-taskprocessing-events-tasksuccessfulevent"]], "OCP\\TextProcessing\\Events\\TaskFailedEvent": [[17, "ocp-textprocessing-events-taskfailedevent"], [22, "ocp-textprocessing-events-taskfailedevent"]], "OCP\\TextProcessing\\Events\\TaskSuccessfulEvent": [[17, "ocp-textprocessing-events-tasksuccessfulevent"], [22, "ocp-textprocessing-events-tasksuccessfulevent"]], "OCP\\TextToImage\\Events\\TaskFailedEvent": [[17, "ocp-texttoimage-events-taskfailedevent"], [22, "ocp-texttoimage-events-taskfailedevent"]], "OCP\\TextToImage\\Events\\TaskSuccessfulEvent": [[17, "ocp-texttoimage-events-tasksuccessfulevent"], [22, "ocp-texttoimage-events-tasksuccessfulevent"]], "OCP\\User\\Events\\BeforePasswordUpdatedEvent": [[17, "ocp-user-events-beforepasswordupdatedevent"], [22, "ocp-user-events-beforepasswordupdatedevent"]], "OCP\\User\\Events\\BeforeUserCreatedEvent": [[17, "ocp-user-events-beforeusercreatedevent"], [22, "ocp-user-events-beforeusercreatedevent"]], "OCP\\User\\Events\\BeforeUserDeletedEvent": [[17, "ocp-user-events-beforeuserdeletedevent"], [22, "ocp-user-events-beforeuserdeletedevent"]], "OCP\\User\\Events\\BeforeUserIdUnassignedEvent": [[17, "ocp-user-events-beforeuseridunassignedevent"], [22, "ocp-user-events-beforeuseridunassignedevent"]], "OCP\\User\\Events\\BeforeUserLoggedInEvent": [[17, "ocp-user-events-beforeuserloggedinevent"], [22, "ocp-user-events-beforeuserloggedinevent"]], "OCP\\User\\Events\\BeforeUserLoggedInWithCookieEvent": [[17, "ocp-user-events-beforeuserloggedinwithcookieevent"], [22, "ocp-user-events-beforeuserloggedinwithcookieevent"]], "OCP\\User\\Events\\BeforeUserLoggedOutEvent": [[17, "ocp-user-events-beforeuserloggedoutevent"], [22, "ocp-user-events-beforeuserloggedoutevent"]], "OCP\\User\\Events\\OutOfOfficeChangedEvent": [[17, "ocp-user-events-outofofficechangedevent"], [22, "ocp-user-events-outofofficechangedevent"]], "OCP\\User\\Events\\OutOfOfficeClearedEvent": [[17, "ocp-user-events-outofofficeclearedevent"], [22, "ocp-user-events-outofofficeclearedevent"]], "OCP\\User\\Events\\OutOfOfficeEndedEvent": [[17, "ocp-user-events-outofofficeendedevent"], [22, "ocp-user-events-outofofficeendedevent"]], "OCP\\User\\Events\\OutOfOfficeScheduledEvent": [[17, "ocp-user-events-outofofficescheduledevent"], [22, "ocp-user-events-outofofficescheduledevent"]], "OCP\\User\\Events\\OutOfOfficeStartedEvent": [[17, "ocp-user-events-outofofficestartedevent"], [22, "ocp-user-events-outofofficestartedevent"]], "OCP\\User\\Events\\PasswordUpdatedEvent": [[17, "ocp-user-events-passwordupdatedevent"], [22, "ocp-user-events-passwordupdatedevent"]], "OCP\\User\\Events\\PostLoginEvent": [[17, "ocp-user-events-postloginevent"], [22, "ocp-user-events-postloginevent"]], "OCP\\User\\Events\\UserChangedEvent": [[17, "ocp-user-events-userchangedevent"], [22, "ocp-user-events-userchangedevent"]], "OCP\\User\\Events\\UserCreatedEvent": [[17, "ocp-user-events-usercreatedevent"], [22, "ocp-user-events-usercreatedevent"]], "OCP\\User\\Events\\UserDeletedEvent": [[17, "ocp-user-events-userdeletedevent"], [22, "ocp-user-events-userdeletedevent"]], "OCP\\User\\Events\\UserFirstTimeLoggedInEvent": [[17, "ocp-user-events-userfirsttimeloggedinevent"], [22, "ocp-user-events-userfirsttimeloggedinevent"]], "OCP\\User\\Events\\UserIdAssignedEvent": [[17, "ocp-user-events-useridassignedevent"], [22, "ocp-user-events-useridassignedevent"]], "OCP\\User\\Events\\UserIdUnassignedEvent": [[17, "ocp-user-events-useridunassignedevent"], [22, "ocp-user-events-useridunassignedevent"]], "OCP\\User\\Events\\UserLiveStatusEvent": [[17, "ocp-user-events-userlivestatusevent"], [22, "ocp-user-events-userlivestatusevent"]], "OCP\\User\\Events\\UserLoggedInEvent": [[17, "ocp-user-events-userloggedinevent"], [22, "ocp-user-events-userloggedinevent"]], "OCP\\User\\Events\\UserLoggedInWithCookieEvent": [[17, "ocp-user-events-userloggedinwithcookieevent"], [22, "ocp-user-events-userloggedinwithcookieevent"]], "OCP\\User\\Events\\UserLoggedOutEvent": [[17, "ocp-user-events-userloggedoutevent"], [22, "ocp-user-events-userloggedoutevent"]], "OCP\\User\\GetQuotaEvent": [[17, "ocp-user-getquotaevent"], [22, "ocp-user-getquotaevent"]], "OCP\\WorkflowEngine\\Events\\LoadSettingsScriptsEvent": [[17, "ocp-workflowengine-events-loadsettingsscriptsevent"], [22, "ocp-workflowengine-events-loadsettingsscriptsevent"]], "OCP\\WorkflowEngine\\Events\\RegisterChecksEvent": [[17, "ocp-workflowengine-events-registerchecksevent"], [22, "ocp-workflowengine-events-registerchecksevent"]], "OCP\\WorkflowEngine\\Events\\RegisterEntitiesEvent": [[17, "ocp-workflowengine-events-registerentitiesevent"], [22, "ocp-workflowengine-events-registerentitiesevent"]], "OCP\\WorkflowEngine\\Events\\RegisterOperationsEvent": [[17, "ocp-workflowengine-events-registeroperationsevent"], [22, "ocp-workflowengine-events-registeroperationsevent"]], "OCS": [[20, "ocs"]], "OCS API": [[45, null], [190, "ocs-api"]], "OCS APIs overview": [[46, null]], "OCS FullTextSearch Collection API": [[48, null]], "OCS OpenAPI tutorial": [[49, null]], "OCS Out-of-office API": [[50, null]], "OCS Recommendations API": [[51, null]], "OCS Share API": [[52, null]], "OCS Sharee API": [[53, null]], "OCS Status API": [[54, null]], "OCS TaskProcessing API": [[55, null]], "OCS Text-To-Image API": [[56, null]], "OCS TextProcessing API": [[57, null]], "OCS Translation API": [[58, null]], "OCS changes": [[215, "ocs-changes"]], "OCS routes": [[33, "ocs-routes"]], "OCS user preferences API": [[59, null]], "OPTIONS request": [[112, "options-request"]], "ObjectStorage": [[236, "objectstorage"]], "Objects": [[186, "objects"]], "Objects, functions, arrays & variables": [[187, "objects-functions-arrays-variables"]], "Obtaining the currently installed ACLs": [[107, "obtaining-the-currently-installed-acls"]], "Obtaining the initial state in JavaScript": [[25, "obtaining-the-initial-state-in-javascript"]], "Obtaining the library": [[72, "obtaining-the-library"]], "Obtaining the login credentials": [[44, "obtaining-the-login-credentials"]], "Obtaining wipe status": [[60, "obtaining-wipe-status"]], "Older deprecations": [[211, "older-deprecations"]], "Only quote properties when needed.": [[186, "id14"]], "OnlyOffice": [[192, "onlyoffice"]], "Open Metrics exporter": [[120, null]], "Open a file": [[101, "open-a-file"]], "Open the assistant modal": [[87, "open-the-assistant-modal"]], "OpenID Connect (Oidc)": [[119, null]], "Opening a file": [[101, "opening-a-file"]], "Opening the editor": [[101, "opening-the-editor"]], "Opening the webview": [[44, "opening-the-webview"]], "Operations": [[105, "operations"]], "Operators": [[186, "operators"], [187, "operators"]], "Optimized class loader": [[228, "optimized-class-loader"]], "Optional attributes": [[132, "optional-attributes"]], "Optional fields": [[69, "optional-fields"]], "Optional params": [[171, "optional-params"], [181, "optional-params"]], "Optional services": [[21, "optional-services"]], "Options": [[165, "options"], [165, "id2"]], "Other OCS APIs": [[176, null]], "Other documentation requirements": [[206, "other-documentation-requirements"]], "Other implementations": [[158, "other-implementations"]], "Other removed back-end APIs": [[210, "other-removed-back-end-apis"]], "Out-of-office periods": [[121, null]], "Output": [[240, "output"]], "Outputting information": [[130, "outputting-information"]], "Overview": [[16, "overview"], [22, "overview"], [101, "overview"], [148, "overview"], [150, "overview"], [165, "overview"]], "Ownership": [[107, "ownership"]], "PHP": [[41, "php"], [42, "php"], [190, "php"]], "PHP 7.4": [[227, "php-7-4"]], "PHP 8 attributes": [[190, "php-8-attributes"]], "PHP 8 support": [[222, "php-8-support"]], "PHP 8.1": [[225, "php-8-1"]], "PHP 8.2": [[227, "php-8-2"]], "PHP 8.3": [[229, "php-8-3"]], "PHP Backend": [[42, "php-backend"]], "PHP Performance": [[122, "php-performance"]], "PHP Templates": [[42, "php-templates"]], "PHP coding standards": [[187, null]], "PHP concepts you will encounter": [[190, "php-concepts-you-will-encounter"]], "PHP public API": [[85, "php-public-api"]], "PHP static analysis": [[242, "php-static-analysis"]], "PHP unit testing": [[243, "php-unit-testing"]], "PHP unstable API": [[85, "php-unstable-api"]], "POST request": [[112, "post-request"]], "PREFER to expose your APIs using OCS": [[49, "prefer-to-expose-your-apis-using-ocs"]], "PSR": [[127, null]], "PSR container": [[223, "psr-container"]], "PSR events": [[223, "psr-events"]], "PSR-0 deprecation": [[222, "psr-0-deprecation"]], "PSR-0: Autoloading": [[127, "psr-0-autoloading"]], "PSR-11 integration": [[221, "psr-11-integration"]], "PSR-11: Container Interface": [[127, "psr-11-container-interface"]], "PSR-20: Clock": [[127, "psr-20-clock"]], "PSR-3 integration": [[221, "psr-3-integration"]], "PSR-3: Logger Interface": [[127, "psr-3-logger-interface"]], "PSR-4: Autoloading": [[127, "psr-4-autoloading"]], "PUT request": [[112, "put-request"]], "Packages in detail": [[115, "packages-in-detail"]], "Pagination": [[132, "pagination"]], "Parameters": [[69, "parameters"]], "Params": [[169, "params"], [169, "id2"], [171, "params"], [171, "id1"], [174, "params"], [175, "params"], [175, "id2"], [179, "params"], [179, "id1"], [181, "params"], [181, "id1"], [181, "id2"], [181, "id3"], [181, "id4"], [181, "id5"], [181, "id6"], [181, "id7"]], "Parsing annotations": [[30, "parsing-annotations"]], "Patch updates": [[16, "patch-updates"]], "Performance and concurrency": [[20, "performance-and-concurrency"]], "Performance considerations": [[2, "performance-considerations"], [122, null]], "Permanent Solution": [[156, "permanent-solution"]], "Persistent storage": [[154, "persistent-storage"]], "Personal settings section Groupware moved to Availability": [[227, "personal-settings-section-groupware-moved-to-availability"]], "Phone number util": [[123, null]], "Pickers": [[76, "pickers"]], "Pinned entry": [[199, "pinned-entry"]], "Placeholders and variables": [[81, "placeholders-and-variables"]], "Planned removal of PSR-0 class loading": [[227, "planned-removal-of-psr-0-class-loading"]], "Popover menu": [[200, null]], "Popovermenu in item": [[198, "popovermenu-in-item"]], "Populating input from a file": [[87, "populating-input-from-a-file"]], "Pre-releases": [[16, "pre-releases"]], "Precondition": [[202, "precondition"]], "Predefined core services": [[21, "predefined-core-services"]], "Prefer regular top-level functions.": [[186, "id11"]], "Prefer shorthand properties": [[186, "id15"]], "Prefer template literals for readability.": [[186, "id5"]], "Preferences": [[177, null]], "Prepare follow-up releases": [[16, "prepare-follow-up-releases"]], "Prerequisites: Node.js and npm": [[239, "prerequisites-node-js-and-npm"]], "Preset": [[92, "preset"]], "Preview API": [[210, "preview-api"]], "Previous release notes": [[214, null]], "Primary color variables": [[194, "primary-color-variables"]], "Primary colors": [[77, "primary-colors"]], "Primary object store with S3": [[192, "primary-object-store-with-s3"]], "Privacy": [[132, "privacy"]], "Processing tasks in the context of a user": [[142, "processing-tasks-in-the-context-of-a-user"]], "Profile": [[124, null]], "Profile app": [[234, "profile-app"]], "Profiler": [[125, null]], "Progress bar": [[195, "progress-bar"]], "Projects": [[126, null]], "Prologue": [[208, null]], "Properties of the external calendar \u2013 IProperties": [[107, "properties-of-the-external-calendar-iproperties"]], "Provide a user interface": [[96, "provide-a-user-interface"], [126, "provide-a-user-interface"]], "Provide context hints for translators": [[42, "provide-context-hints-for-translators"]], "Provide generic data for clients": [[129, "provide-generic-data-for-clients"]], "Provide personal settings (optional)": [[144, "provide-personal-settings-optional"]], "Provider and task type registration": [[140, "provider-and-task-type-registration"]], "Provider registration": [[116, "provider-registration"], [132, "provider-registration"], [137, "provider-registration"], [141, "provider-registration"], [142, "provider-registration"]], "Provider with user context": [[116, "provider-with-user-context"], [137, "provider-with-user-context"]], "Providing a Mail Service": [[110, "providing-a-mail-service"]], "Providing additional inputs and outputs": [[140, "providing-additional-inputs-and-outputs"]], "Providing an icon (optional)": [[144, "providing-an-icon-optional"]], "Providing input defaults": [[140, "providing-input-defaults"]], "Providing language detection": [[116, "providing-language-detection"]], "Providing more task types": [[140, "providing-more-task-types"], [142, "providing-more-task-types"]], "Providing privileges individually": [[107, "providing-privileges-individually"]], "Providing the initial state with PHP": [[25, "providing-the-initial-state-with-php"]], "Providing widgets to clients": [[96, "providing-widgets-to-clients"]], "Public Pages": [[128, null]], "Public emitter": [[22, "public-emitter"]], "Public page templates": [[20, "public-page-templates"]], "Public share template": [[31, null]], "Public shares": [[61, "public-shares"]], "Query Status": [[138, "query-status"]], "Querying the calendar \u2013 ICalendarObjectContainer": [[107, "querying-the-calendar-icalendarobjectcontainer"]], "Querying the database provider": [[37, "querying-the-database-provider"]], "Questions?": [[202, "questions"]], "Quick method/header cheat sheet": [[61, "quick-method-header-cheat-sheet"]], "REST API (v2)": [[69, "rest-api-v2"]], "REST APIs": [[131, null]], "RTL guidelines": [[194, "rtl-guidelines"]], "Radio": [[99, "radio"]], "Radio groups": [[76, "radio-groups"]], "Rate Limiting": [[133, "rate-limiting"]], "Rate limiting": [[20, "rate-limiting"]], "Read file": [[70, "read-file"]], "Read folder": [[70, "read-folder"]], "Read metadata using occ command": [[104, "read-metadata-using-occ-command"]], "Read shared items by link": [[70, "read-shared-items-by-link"]], "Read-only support": [[107, "read-only-support"]], "Reading behavior with lazy parameter": [[90, "reading-behavior-with-lazy-parameter"]], "Reading data that has just been written": [[122, "reading-data-that-has-just-been-written"]], "Reading from a file": [[38, "reading-from-a-file"]], "Reading headers, files, cookies and environment variables": [[20, "reading-headers-files-cookies-and-environment-variables"]], "Recommendation": [[53, "recommendation"]], "Recommendations - Retrieval": [[51, "recommendations-retrieval"]], "Redirect to ExApp UI page (top menu)": [[171, "redirect-to-exapp-ui-page-top-menu"]], "Redirects": [[20, "redirects"]], "Redis": [[192, "redis"]], "Redis Cluster": [[192, "redis-cluster"]], "Reference providers": [[129, null]], "References": [[97, "references"]], "Register": [[169, "register"], [171, "register"], [175, "register"], [178, "register"]], "Register ExApp Talk bot (OCS)": [[180, "register-exapp-talk-bot-ocs"]], "Register Menu Entry": [[181, "register-menu-entry"]], "Register Settings": [[179, "register-settings"]], "Register a custom picker component": [[129, "register-a-custom-picker-component"]], "Register a dashboard widget": [[96, "register-a-dashboard-widget"]], "Register a migrator": [[145, "register-a-migrator"]], "Register a new exporter": [[120, "register-a-new-exporter"]], "Register a profile action": [[124, "register-a-profile-action"]], "Register a reference provider": [[129, "register-a-reference-provider"]], "Register a repair-step": [[130, "register-a-repair-step"]], "Register a resource provider": [[126, "register-a-resource-provider"]], "Register a setup check": [[135, "register-a-setup-check"]], "Register get/set listeners": [[99, "register-get-set-listeners"]], "Register the calendar provider": [[107, "register-the-calendar-provider"]], "Register the provider state": [[144, "register-the-provider-state"]], "Registering Settings and Sections": [[134, "registering-settings-and-sections"]], "Registering a DAV plugin": [[2, "registering-a-dav-plugin"]], "Registering a background job": [[18, "registering-a-background-job"]], "Registering a command": [[1, "registering-a-command"]], "Registering a two-factor auth provider": [[144, "registering-a-two-factor-auth-provider"]], "Registering activity components": [[69, "registering-activity-components"]], "Registering an editor": [[101, "registering-an-editor"]], "Registering manually": [[18, "registering-manually"]], "Registering methods": [[240, "registering-methods"]], "Registering resources": [[33, "registering-resources"]], "Registering settings schema": [[99, "registering-settings-schema"]], "Registering the calendar with the Nextcloud API interface": [[107, "registering-the-calendar-with-the-nextcloud-api-interface"]], "Registering the editor": [[101, "registering-the-editor"]], "Registering your Lexicon": [[92, "registering-your-lexicon"]], "Related documentation": [[47, "related-documentation"]], "Relation of REST and OCS": [[131, "relation-of-rest-and-ocs"]], "Release Automation": [[15, null]], "Release notes": [[212, null]], "Release process": [[16, null]], "Remote API": [[210, "remote-api"]], "Remote Host Validation": [[133, "remote-host-validation"]], "Remote wipe": [[60, null]], "Removal of PSR-0 class loader": [[228, "removal-of-psr-0-class-loader"]], "Removal of calendars": [[107, "removal-of-calendars"]], "Removal of entries": [[107, "removal-of-entries"]], "Remove Initial state": [[181, "remove-initial-state"]], "Remove script": [[181, "remove-script"]], "Remove style": [[181, "remove-style"]], "Remove unneeded files from packages": [[3, "remove-unneeded-files-from-packages"]], "Removed APIs": [[215, "removed-apis"], [216, "removed-apis"], [216, "id1"], [217, "removed-apis"], [223, "removed-apis"], [226, "removed-apis"], [227, "removed-apis"], [227, "id1"], [228, "removed-apis"], [229, "removed-apis"], [229, "id3"], [230, "removed-apis"], [231, "removed-apis"], [232, "removed-apis"], [232, "id1"], [233, "removed-apis"], [234, "removed-apis"], [234, "id6"]], "Removed WebDAV properties": [[229, "removed-webdav-properties"]], "Removed back-end APIs": [[210, "removed-back-end-apis"], [235, "removed-back-end-apis"]], "Removed deprecated aliases": [[232, "id2"]], "Removed events": [[229, "removed-events"], [230, "removed-events"]], "Removed from public namespace": [[218, "removed-from-public-namespace"], [221, "removed-from-public-namespace"]], "Removed front-end APIs and libraries": [[210, "removed-front-end-apis-and-libraries"], [235, "removed-front-end-apis-and-libraries"]], "Removed globals": [[220, "removed-globals"], [221, "removed-globals"], [230, "removed-globals"]], "Removed jQuery plugins": [[218, "removed-jquery-plugins"], [221, "removed-jquery-plugins"]], "Removed libraries": [[220, "removed-libraries"]], "Removed support for database.xml": [[223, "removed-support-for-database-xml"]], "Render dashboard widgets using the API": [[96, "render-dashboard-widgets-using-the-api"]], "Render link previews in clients": [[129, "render-link-previews-in-clients"]], "Repair steps": [[130, null]], "Repair-step types": [[130, "repair-step-types"]], "Replaced well-known handler API": [[222, "replaced-well-known-handler-api"]], "Replacing Nextcloud\u2019s autoloader": [[89, "replacing-nextcloud-s-autoloader"]], "Replacing indices": [[40, "replacing-indices"]], "Repository permissions": [[8, "repository-permissions"]], "Reproducing the issue": [[204, "reproducing-the-issue"]], "Request Headers": [[61, "request-headers"]], "Request data": [[168, "request-data"], [168, "id1"], [168, "id3"], [170, "request-data"], [170, "id3"], [173, "request-data"], [177, "request-data"], [177, "id1"], [177, "id3"], [180, "request-data"], [180, "id1"]], "Request examples": [[129, "request-examples"]], "Request flow": [[171, "request-flow"]], "Request lifecycle": [[32, null]], "Request payload": [[174, "request-payload"]], "Requesting properties": [[61, "requesting-properties"]], "Required PHP extensions": [[242, "required-php-extensions"]], "Required fields": [[69, "required-fields"]], "Requirements": [[14, "requirements"]], "Requirements and prerequisites": [[49, "requirements-and-prerequisites"]], "Reset collection": [[48, "reset-collection"]], "Resolving links": [[129, "resolving-links"]], "Resources": [[106, "resources"]], "Respect the users": [[14, "respect-the-users"]], "Responders": [[20, "responders"]], "Response": [[168, "response"], [177, "response"]], "Response Headers": [[61, "response-headers"]], "Response data": [[168, "response-data"], [168, "id2"], [170, "response-data"], [170, "id1"], [170, "id2"], [170, "id4"], [170, "id5"], [173, "response-data"], [177, "response-data"], [177, "id2"], [182, "response-data"]], "Response headers": [[69, "response-headers"]], "Responses": [[20, "responses"], [43, "responses"]], "Restoring a version": [[68, "restoring-a-version"]], "Restoring from the trashbin": [[67, "restoring-from-the-trashbin"]], "Retrieve metadata using PROPFIND": [[104, "retrieve-metadata-using-propfind"]], "Retrieving a config value": [[90, "retrieving-a-config-value"], [93, "retrieving-a-config-value"]], "Retrieving the list of document to be (re-)indexed": [[48, "retrieving-the-list-of-document-to-be-re-indexed"]], "Retrying deadlocks": [[97, "retrying-deadlocks"]], "Return codes": [[1, "return-codes"]], "Returning data": [[240, "returning-data"]], "Returning the content type": [[107, "returning-the-content-type"]], "Rich object strings": [[69, "rich-object-strings"]], "Rooms": [[106, "rooms"]], "Root": [[35, "root"]], "Route": [[190, "route"]], "Router": [[73, "router"]], "Routes": [[178, null]], "Routing": [[33, null]], "Rules": [[199, "rules"]], "Rules and information": [[193, "rules-and-information"], [198, "rules-and-information"]], "Running HTTP requests against the server": [[135, "running-http-requests-against-the-server"]], "Running a task": [[87, "running-a-task"]], "Running all tests": [[243, "running-all-tests"]], "Running unit tests for the Nextcloud server project": [[243, "running-unit-tests-for-the-nextcloud-server-project"]], "Running your ExApp with a non-root user": [[152, "running-your-exapp-with-a-non-root-user"]], "S3 external storage": [[192, "s3-external-storage"]], "SAML setup with onelogin": [[192, "saml-setup-with-onelogin"]], "SCSS support removal": [[226, "scss-support-removal"]], "SMB external storage": [[192, "smb-external-storage"]], "SQL injection": [[209, "sql-injection"]], "Scaling": [[160, null]], "Schedule a task": [[56, "schedule-a-task"], [57, "schedule-a-task"]], "Scheduling": [[18, "scheduling"]], "Schema field types": [[99, "schema-field-types"]], "Scopes": [[49, "scopes"]], "Scss variable and compilation deprecation": [[223, "scss-variable-and-compilation-deprecation"]], "Search": [[53, "search"], [66, null], [132, null], [221, "search"]], "Search & Discovery": [[102, null]], "Search scope": [[66, "search-scope"]], "Search sharees": [[53, "search-sharees"]], "Section": [[134, "section"]], "Section type admin": [[99, "section-type-admin"]], "Section type personal": [[99, "section-type-personal"]], "Security": [[133, null]], "Security considerations": [[20, "security-considerations"]], "Security guidelines": [[209, null]], "See also": [[101, "see-also"]], "Select and Multi-select": [[99, "select-and-multi-select"]], "Semicolons": [[186, "semicolons"]], "Send email": [[52, "send-email"]], "Send log message (OCS)": [[173, "send-log-message-ocs"]], "Send notification (OCS)": [[174, "send-notification-ocs"]], "Sending the CSRF token": [[25, "sending-the-csrf-token"]], "Sensitive data exposure": [[209, "sensitive-data-exposure"]], "Sensitive field type": [[99, "sensitive-field-type"]], "Sensitive values": [[90, "sensitive-values"]], "Server Internals": [[114, null]], "Server autoloading": [[89, "server-autoloading"]], "Server development": [[241, null]], "Session": [[22, "session"]], "Sessions and session variables": [[20, "sessions-and-session-variables"]], "Set ExApp init progress": [[170, "set-exapp-init-progress"]], "Set Initial state": [[181, "set-initial-state"]], "Set a custom message (predefined)": [[54, "set-a-custom-message-predefined"]], "Set a custom message (user-defined)": [[54, "set-a-custom-message-user-defined"]], "Set app config value": [[168, "set-app-config-value"]], "Set credentials": [[70, "set-credentials"]], "Set document as indexed": [[48, "set-document-as-indexed"]], "Set the parsed subject": [[69, "set-the-parsed-subject"]], "Set up Web server and database": [[189, "set-up-web-server-and-database"]], "Set user config value": [[177, "set-user-config-value"]], "Set your own status": [[54, "set-your-own-status"]], "Setting a preference": [[59, "setting-a-preference"]], "Setting cookies": [[20, "setting-cookies"]], "Setting multiple preference": [[59, "setting-multiple-preference"]], "Setting the access rules of the calendar": [[107, "setting-the-access-rules-of-the-calendar"]], "Setting the modification time": [[63, "setting-the-modification-time"]], "Setting up Microsoft Visual Studio": [[82, "setting-up-microsoft-visual-studio"]], "Setting up dev environment": [[149, null]], "Settings": [[34, null], [76, "settings"], [134, null], [199, "settings"]], "Settings favorites": [[61, "settings-favorites"]], "Settings form": [[134, "settings-form"]], "Settings title left-alignment": [[235, "settings-title-left-alignment"]], "Setup checks": [[135, null]], "Setup of the transifex sync": [[8, "setup-of-the-transifex-sync"]], "Shape types": [[140, "shape-types"]], "Share attributes": [[52, "share-attributes"]], "Share link of file or folder": [[70, "share-link-of-file-or-folder"]], "Share type response definitions": [[49, "share-type-response-definitions"]], "Sharee recommendations": [[53, "sharee-recommendations"]], "Shell injection": [[209, "shell-injection"]], "Shipped Apps": [[16, "shipped-apps"]], "Short vs. long translations": [[69, "short-vs-long-translations"]], "Showing an HTML page by the user": [[20, "showing-an-html-page-by-the-user"]], "Sidebar": [[76, "sidebar"], [234, "sidebar"]], "Sidebar tabs redesign": [[235, "sidebar-tabs-redesign"]], "Signalling completion": [[60, "signalling-completion"]], "Simple search providers": [[132, "simple-search-providers"]], "SimpleFS": [[236, "simplefs"]], "Slugs": [[37, "slugs"]], "Snowflake IDS": [[234, "snowflake-ids"]], "Snowflake IDs": [[136, null]], "Source Code Version Control": [[188, "source-code-version-control"]], "Special Headers": [[61, "special-headers"]], "Speech-To-Text": [[137, null]], "Split long conditions into multiple lines.": [[186, "id21"]], "Starting a bulk upload": [[62, "starting-a-bulk-upload"]], "Starting a chunked upload": [[63, "starting-a-chunked-upload"]], "State colors variables": [[194, "state-colors-variables"]], "State-of-the-Art methods and comparison": [[131, "state-of-the-art-methods-and-comparison"]], "Static analysis": [[95, "static-analysis"], [242, null]], "Status colors": [[77, "status-colors"]], "Status colors are now based on secondary styling": [[233, "status-colors-are-now-based-on-secondary-styling"]], "Statuscodes": [[240, "statuscodes"]], "Step 1: Create a Mail Provider Class": [[110, "step-1-create-a-mail-provider-class"]], "Step 1: String split": [[42, "step-1-string-split"]], "Step 2: Create a Mail Service Class": [[110, "step-2-create-a-mail-service-class"]], "Step 2: HTML Markup": [[42, "step-2-html-markup"]], "Step 3: Placeholders": [[42, "step-3-placeholders"]], "Step 3: Register the Mail Provider": [[110, "step-3-register-the-mail-provider"]], "Steps needed to adapt an ExApp": [[152, "steps-needed-to-adapt-an-exapp"]], "Storage": [[236, "storage"]], "Storage and database": [[39, null]], "Storage layer": [[236, "storage-layer"]], "Storage/Cache wrappers": [[236, "storage-cache-wrappers"]], "Store a Snowflake ID in database": [[136, "store-a-snowflake-id-in-database"]], "Storing a config value": [[90, "storing-a-config-value"], [93, "storing-a-config-value"]], "Streamed and lazily rendered responses": [[20, "streamed-and-lazily-rendered-responses"]], "Streamlining processing for fast providers": [[142, "streamlining-processing-for-fast-providers"]], "Streams": [[236, "streams"]], "Strings": [[186, "strings"]], "Structured data logging": [[29, "structured-data-logging"]], "Submitting ContentItem data": [[94, "submitting-contentitem-data"]], "Subscribing to the event in a plugin": [[148, "subscribing-to-the-event-in-a-plugin"]], "Summary": [[152, "summary"]], "Support for PHP 8.0 removed": [[231, "support-for-php-8-0-removed"]], "Support for PHP 8.1 removed": [[234, "support-for-php-8-1-removed"]], "Support for PHP 8.4 added": [[232, "support-for-php-8-4-added"]], "Support for PHP 8.5 added": [[234, "support-for-php-8-5-added"]], "Supported DAV properties": [[66, "supported-dav-properties"]], "Supported clients": [[43, "supported-clients"]], "Supported properties": [[61, "supported-properties"]], "Supported server apps": [[43, "supported-server-apps"]], "Supporting more databases": [[37, "supporting-more-databases"]], "Svg color api": [[196, "svg-color-api"]], "Symfony update": [[220, "symfony-update"]], "Symptoms": [[156, "symptoms"]], "System requirements": [[82, "system-requirements"]], "System values": [[36, "system-values"]], "Table management tips": [[37, "table-management-tips"]], "Table of contents": [[201, "table-of-contents"]], "Tags": [[49, "tags"]], "Talk Integration": [[139, null]], "Talk bots": [[180, null]], "Target Branches for Contributions": [[188, "target-branches-for-contributions"]], "Task Processing": [[140, null], [213, "task-processing"]], "Task processing": [[211, "task-processing"]], "Task statuses": [[140, "task-statuses"], [141, "task-statuses"], [142, "task-statuses"]], "Tasks": [[140, "tasks"], [141, "tasks"], [142, "tasks"]], "Tasks types": [[140, "tasks-types"], [142, "tasks-types"]], "Technical details": [[10, "technical-details"], [183, null], [200, "technical-details"]], "Template": [[190, "template"]], "Templates": [[20, "templates"], [26, null], [209, "templates"]], "Terminology": [[110, "terminology"]], "Testing": [[41, null]], "Testing requests": [[61, "testing-requests"]], "Testing requests with curl": [[46, "testing-requests-with-curl"]], "Testing translations": [[42, "testing-translations"]], "Text Processing": [[142, null]], "Text colors": [[77, "text-colors"]], "Text-To-Image": [[141, null]], "The Application class": [[0, "the-application-class"]], "The Cache View": [[125, "the-cache-view"]], "The Database Queries View": [[125, "the-database-queries-view"]], "The Event View": [[125, "the-event-view"]], "The General Request and Response View": [[125, "the-general-request-and-response-view"]], "The IAPIWidget interface": [[96, "the-iapiwidget-interface"]], "The IAPIWidgetV2 interface": [[96, "the-iapiwidgetv2-interface"]], "The IButtonWidget interface": [[96, "the-ibuttonwidget-interface"]], "The IConditionalWidget interface": [[96, "the-iconditionalwidget-interface"]], "The IContentProvider interface": [[94, "the-icontentprovider-interface"]], "The IIconWidget interface": [[96, "the-iiconwidget-interface"]], "The IOptionWidget interface": [[96, "the-ioptionwidget-interface"]], "The IReloadableWidget interface": [[96, "the-ireloadablewidget-interface"]], "The LDAP View": [[125, "the-ldap-view"]], "The Nextcloud app store rules": [[14, null]], "The calendar class": [[107, "the-calendar-class"]], "The calendar object class": [[107, "the-calendar-object-class"]], "The calendar plugin class": [[107, "the-calendar-plugin-class"]], "The editor class": [[101, "the-editor-class"]], "The interface object": [[101, "the-interface-object"]], "The language and platform": [[190, "the-language-and-platform"]], "The process": [[15, "the-process"]], "The release": [[16, "the-release"]], "The simple filesystem": [[35, "the-simple-filesystem"]], "Theming capabilities": [[46, "theming-capabilities"]], "Theming support": [[27, null]], "Timezone picker": [[76, "timezone-picker"]], "Tips": [[70, "tips"]], "Tips and tricks": [[49, "tips-and-tricks"]], "Todo": [[213, "id1"], [235, "id1"], [235, "id2"], [235, "id3"], [235, "id4"]], "Token exchange": [[119, "token-exchange"]], "Tone": [[81, "tone"]], "Tooltip Response": [[43, "tooltip-response"]], "Top Menu Entry": [[181, null]], "Transactions": [[37, "transactions"]], "Transient attributes": [[37, "transient-attributes"]], "Transifex configuration .tx/config": [[8, "transifex-configuration-tx-config"]], "Transifex sync": [[167, "transifex-sync"]], "Translatable strings": [[81, "translatable-strings"]], "Translate a string": [[58, "translate-a-string"]], "Translation": [[8, null]], "Translation tool": [[8, "translation-tool"], [167, "translation-tool"]], "Translations": [[42, null], [167, null]], "Translator comments": [[81, "translator-comments"]], "Trashbin": [[67, null]], "Triggerable providers": [[140, "triggerable-providers"]], "Troubleshooting": [[44, "troubleshooting"], [156, "troubleshooting"], [161, null]], "Trusted domain": [[133, "trusted-domain"]], "Tutorial": [[9, null]], "Tutorial: How to add OpenAPI support to your OCS API": [[49, "tutorial-how-to-add-openapi-support-to-your-ocs-api"]], "Two-factor providers": [[144, null]], "Type": [[236, "type"]], "Typed Config Values": [[93, "typed-config-values"]], "Typed config values": [[90, "typed-config-values"]], "Typed query builder": [[213, "typed-query-builder"]], "Types": [[37, "types"]], "Types of background jobs": [[18, "types-of-background-jobs"]], "Types of caches": [[19, "types-of-caches"]], "Typing and documentation": [[49, "typing-and-documentation"]], "Typography and wording": [[77, "typography-and-wording"]], "Understanding the locking situation": [[97, "understanding-the-locking-situation"]], "Undo entry": [[199, "undo-entry"]], "Unified sharing": [[235, "unified-sharing"]], "Unit test paths": [[243, "unit-test-paths"]], "Unit tests": [[187, "unit-tests"]], "Unit-Testing": [[243, null]], "Unregister": [[169, "unregister"], [171, "unregister"], [175, "unregister"], [178, "unregister"]], "Unregister ExApp Talk bot (OCS)": [[180, "unregister-exapp-talk-bot-ocs"]], "Unregister Menu Entry": [[179, "unregister-menu-entry"], [181, "unregister-menu-entry"]], "Unvalidated redirects": [[209, "unvalidated-redirects"]], "Update Share": [[52, "update-share"]], "Update a provider last usage date": [[129, "update-a-provider-last-usage-date"]], "Update metadata using PROPPATCH": [[104, "update-metadata-using-proppatch"]], "Updated PHP requirements": [[210, "updated-php-requirements"]], "Updated core libraries": [[222, "updated-core-libraries"], [224, "updated-core-libraries"], [229, "updated-core-libraries"]], "Updated database requirements": [[210, "updated-database-requirements"]], "Updating the calendar ACLs": [[107, "updating-the-calendar-acls"]], "Updating the content of a calendar event": [[107, "updating-the-content-of-a-calendar-event"]], "Updating the name of an event": [[107, "updating-the-name-of-an-event"]], "Updating the properties": [[107, "updating-the-properties"]], "Updating the status programmatically": [[138, "updating-the-status-programmatically"]], "Upgrade to Nextcloud 14": [[215, null]], "Upgrade to Nextcloud 15": [[216, null]], "Upgrade to Nextcloud 16": [[217, null]], "Upgrade to Nextcloud 17": [[218, null]], "Upgrade to Nextcloud 18": [[219, null]], "Upgrade to Nextcloud 19": [[220, null]], "Upgrade to Nextcloud 20": [[221, null]], "Upgrade to Nextcloud 21": [[222, null]], "Upgrade to Nextcloud 22": [[223, null]], "Upgrade to Nextcloud 23": [[224, null]], "Upgrade to Nextcloud 24": [[225, null]], "Upgrade to Nextcloud 25": [[226, null]], "Upgrade to Nextcloud 26": [[227, null]], "Upgrade to Nextcloud 27": [[228, null]], "Upgrade to Nextcloud 28": [[229, null]], "Upgrade to Nextcloud 29": [[230, null]], "Upgrade to Nextcloud 30": [[231, null]], "Upgrade to Nextcloud 31": [[232, null]], "Upgrade to Nextcloud 32": [[233, null]], "Upgrade to Nextcloud 33": [[234, null]], "Upgrade to Nextcloud 34": [[235, null]], "Upload a file": [[70, "upload-a-file"]], "Uploading chunks": [[63, "uploading-chunks"]], "Uploading files": [[61, "uploading-files"]], "Usage": [[62, "usage"], [115, "usage"], [240, "usage"]], "Use PascalCase for classes, interfaces, types and Vue components": [[186, "id2"]], "Use automatic dependency assembly (recommended)": [[21, "use-automatic-dependency-assembly-recommended"]], "Use camelCase for functions, methods, properties, and variables": [[186, "id1"]], "Use consistent new lines in function parameters": [[186, "id10"]], "Use dangling commas, this reduces the diff when adding new properties.": [[186, "id7"], [186, "id18"]], "Use explicit comparisons": [[186, "id19"]], "Use parenthesis for multi-line body of arrow functions.": [[186, "id13"]], "Use single quotes.": [[186, "id4"]], "Use the API": [[96, "use-the-api"]], "Use the Smart Picker in clients": [[129, "use-the-smart-picker-in-clients"]], "Use the Smart Picker in your app": [[129, "use-the-smart-picker-in-your-app"]], "Use the Unified Search API": [[129, "use-the-unified-search-api"]], "User Status": [[138, null]], "User Status - Predefined statuses": [[54, "user-status-predefined-statuses"]], "User Status - Retrieve statuses": [[54, "user-status-retrieve-statuses"]], "User Status - Status Manipulation": [[54, "user-status-status-manipulation"]], "User action": [[171, "user-action"]], "User bubbles": [[76, "user-bubbles"]], "User interface": [[185, "user-interface"]], "User management": [[146, null]], "User managers": [[146, "user-managers"]], "User metadata": [[46, "user-metadata"]], "User metadata - List user IDs": [[46, "user-metadata-list-user-ids"]], "User migration": [[145, null]], "User objects": [[146, "user-objects"]], "User session information": [[146, "user-session-information"]], "User status": [[108, "user-status"]], "User status - Restore backup": [[54, "user-status-restore-backup"]], "User values": [[36, "user-values"]], "User-, guest-, and public-template layout": [[232, "user-guest-and-public-template-layout"]], "UserConfig": [[93, null]], "UserManager": [[22, "usermanager"]], "Users & Authentication": [[88, null]], "Using GitHub": [[82, "using-github"]], "Using a PHP debugger (XDebug)": [[98, "using-a-php-debugger-xdebug"]], "Using a container": [[21, "using-a-container"]], "Using alternative app directories": [[98, "using-alternative-app-directories"]], "Using custom reference widgets": [[129, "using-custom-reference-widgets"]], "Using the IContentManager service": [[94, "using-the-icontentmanager-service"]], "Using the URLGenerator": [[33, "using-the-urlgenerator"]], "Using the app": [[125, "using-the-app"]], "Using the collection OCS API": [[48, "using-the-collection-ocs-api"]], "Using the default widget": [[129, "using-the-default-widget"]], "Utils: menu, counter & buttons": [[199, "utils-menu-counter-buttons"]], "Validate source strings": [[8, "validate-source-strings"]], "Values Sensitivity": [[93, "values-sensitivity"]], "Various information": [[199, "various-information"]], "Version control issue": [[129, "version-control-issue"]], "Version control issue or pull request comment": [[129, "version-control-issue-or-pull-request-comment"]], "Version control pull request": [[129, "version-control-pull-request"]], "Versioning": [[16, "versioning"], [16, "id1"]], "Versions": [[68, null]], "View.php": [[236, "view-php"]], "Vite": [[190, "vite"]], "Vue": [[42, "vue"]], "Web Host Metadata": [[147, null]], "WebAuthn without SSL": [[192, "webauthn-without-ssl"]], "WebDAV": [[65, null]], "WebDAV SEARCH based on metadata": [[104, "webdav-search-based-on-metadata"]], "WebDAV basics": [[61, "webdav-basics"]], "WebDAV collection preload events": [[148, null]], "Webview integration": [[101, "webview-integration"]], "What is a popover menu": [[200, "what-is-a-popover-menu"]], "When the event is emitted": [[148, "when-the-event-is-emitted"]], "When to use #[UseSession]": [[20, "when-to-use-usesession"]], "Which classes should be added": [[21, "which-classes-should-be-added"]], "Why did Nextcloud add code signing?": [[10, "why-did-nextcloud-add-code-signing"]], "Why do you want to join": [[204, "why-do-you-want-to-join"]], "Windows Development Build": [[82, "windows-development-build"]], "Windows Installer (i.e. Deployment) Build (Cross-Compile)": [[82, "windows-installer-i-e-deployment-build-cross-compile"]], "Wiping the actual device": [[60, "wiping-the-actual-device"]], "With curl": [[61, "with-curl"]], "Wording": [[77, "wording"]], "Working with Enum shape types": [[140, "working-with-enum-shape-types"]], "Working with time": [[143, null]], "Write support": [[107, "write-support"]], "Writing PHP unit tests": [[243, "writing-php-unit-tests"]], "Writing a background job": [[18, "writing-a-background-job"]], "Writing a handler": [[147, "writing-a-handler"]], "Writing a listener": [[22, "writing-a-listener"]], "Writing events": [[22, "writing-events"]], "Writing guide": [[81, null]], "Writing scalable transactions": [[122, "writing-scalable-transactions"]], "Writing to a file": [[38, "writing-to-a-file"]], "\\OCA\\DAV\\Events\\AddressBookCreatedEvent": [[22, "oca-dav-events-addressbookcreatedevent"]], "\\OCA\\DAV\\Events\\AddressBookDeletedEvent": [[22, "oca-dav-events-addressbookdeletedevent"]], "\\OCA\\DAV\\Events\\AddressBookShareUpdatedEvent": [[22, "oca-dav-events-addressbookshareupdatedevent"]], "\\OCA\\DAV\\Events\\AddressBookUpdatedEvent": [[22, "oca-dav-events-addressbookupdatedevent"]], "\\OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent": [[22, "oca-dav-events-cachedcalendarobjectcreatedevent"]], "\\OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent": [[22, "oca-dav-events-cachedcalendarobjectdeletedevent"]], "\\OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent": [[22, "oca-dav-events-cachedcalendarobjectupdatedevent"]], "\\OCA\\DAV\\Events\\CalendarCreatedEvent": [[22, "oca-dav-events-calendarcreatedevent"]], "\\OCA\\DAV\\Events\\CalendarDeletedEvent": [[22, "oca-dav-events-calendardeletedevent"]], "\\OCA\\DAV\\Events\\CalendarObjectCreatedEvent": [[22, "oca-dav-events-calendarobjectcreatedevent"]], "\\OCA\\DAV\\Events\\CalendarObjectDeletedEvent": [[22, "oca-dav-events-calendarobjectdeletedevent"]], "\\OCA\\DAV\\Events\\CalendarObjectUpdatedEvent": [[22, "oca-dav-events-calendarobjectupdatedevent"]], "\\OCA\\DAV\\Events\\CalendarPublishedEvent": [[22, "oca-dav-events-calendarpublishedevent"]], "\\OCA\\DAV\\Events\\CalendarShareUpdatedEvent": [[22, "oca-dav-events-calendarshareupdatedevent"]], "\\OCA\\DAV\\Events\\CalendarUnpublishedEvent": [[22, "oca-dav-events-calendarunpublishedevent"]], "\\OCA\\DAV\\Events\\CalendarUpdatedEvent": [[22, "oca-dav-events-calendarupdatedevent"]], "\\OCA\\DAV\\Events\\CardCreatedEvent": [[22, "oca-dav-events-cardcreatedevent"]], "\\OCA\\DAV\\Events\\CardDeletedEvent": [[22, "oca-dav-events-carddeletedevent"]], "\\OCA\\DAV\\Events\\CardUpdatedEvent": [[22, "oca-dav-events-cardupdatedevent"]], "\\OCA\\DAV\\Events\\SabrePluginAuthInitEvent": [[22, "oca-dav-events-sabrepluginauthinitevent"]], "\\OCA\\DAV\\Events\\SubscriptionCreatedEvent": [[22, "oca-dav-events-subscriptioncreatedevent"]], "\\OCA\\DAV\\Events\\SubscriptionDeletedEvent": [[22, "oca-dav-events-subscriptiondeletedevent"]], "\\OCA\\DAV\\Events\\SubscriptionUpdatedEvent": [[22, "oca-dav-events-subscriptionupdatedevent"]], "\\OCA\\FederatedFileSharing\\Events\\FederatedShareAddedEvent": [[22, "oca-federatedfilesharing-events-federatedshareaddedevent"]], "\\OCA\\Files\\Event\\LoadAdditionalScriptsEvent": [[22, "oca-files-event-loadadditionalscriptsevent"]], "\\OCA\\Files_Sharing\\Event\\BeforeTemplateRenderedEvent": [[22, "oca-files-sharing-event-beforetemplaterenderedevent"]], "\\OCA\\Files_Trashbin\\Events\\MoveToTrashEvent": [[22, "oca-files-trashbin-events-movetotrashevent"]], "\\OCA\\Settings\\Events\\BeforeTemplateRenderedEvent": [[22, "oca-settings-events-beforetemplaterenderedevent"]], "\\OCA\\User_LDAP\\Events\\GroupBackendRegistered": [[22, "oca-user-ldap-events-groupbackendregistered"]], "\\OCA\\User_LDAP\\Events\\UserBackendRegistered": [[22, "oca-user-ldap-events-userbackendregistered"]], "\\OCA\\Viewer\\Event\\LoadViewer": [[22, "oca-viewer-event-loadviewer"]], "appinfo/info.xml": [[190, "appinfo-info-xml"]], "christophwurst/nextcloud replaced": [[226, "christophwurst-nextcloud-replaced"]], "doctrine/dbal": [[222, "doctrine-dbal"], [224, "doctrine-dbal"], [229, "doctrine-dbal"]], "files": [[231, "files"]], "getLinkWithPicker": [[129, "getlinkwithpicker"]], "guzzlehttp/guzzle": [[222, "guzzlehttp-guzzle"]], "iOS": [[42, "ios"]], "info.xml": [[18, "info-xml"], [95, "info-xml"], [225, "info-xml"], [226, "info-xml"], [227, "info-xml"], [228, "info-xml"], [229, "info-xml"], [230, "info-xml"]], "info.xml requirements": [[210, "info-xml-requirements"]], "jQuery deprecation": [[220, "jquery-deprecation"]], "jQuery update": [[221, "jquery-update"]], "l10n:createjs": [[42, "l10n-createjs"]], "macOS Development Build": [[82, "macos-development-build"]], "migrations:execute": [[40, "migrations-execute"]], "migrations:generate": [[40, "migrations-generate"]], "migrations:migrate": [[40, "migrations-migrate"]], "migrations:preview": [[40, "migrations-preview"]], "migrations:status": [[40, "migrations-status"]], "npm and package.json": [[190, "npm-and-package-json"]], "npm build": [[118, "npm-build"]], "npm packages": [[115, "npm-packages"]], "npm run dev, npm run watch": [[118, "npm-run-dev-npm-run-watch"]], "npm run lint (optional)": [[118, "npm-run-lint-optional"]], "npm test": [[118, "npm-test"]], "occ commands": [[1, null]], "occ \u2014 the command-line tool": [[190, "occ-the-command-line-tool"]], "openAssistantForm options": [[87, "id1"]], "php": [[95, "php"]], "php-cs": [[95, "php-cs"]], "psr/log": [[222, "psr-log"]], "router:list": [[33, "router-list"]], "router:match": [[33, "router-match"]], "sabre/*": [[222, "sabre"]], "symfony/event-dispatcher": [[229, "symfony-event-dispatcher"]]}, "docnames": ["app_development/bootstrap", "app_development/commands", "app_development/dav_extension", "app_development/dependency_management", "app_development/index", "app_development/info", "app_development/init", "app_development/intro", "app_development/translation", "app_development/tutorial", "app_publishing_maintenance/code_signing", "app_publishing_maintenance/index", "app_publishing_maintenance/maintainer", "app_publishing_maintenance/monetizing", "app_publishing_maintenance/publishing", "app_publishing_maintenance/release_automation", "app_publishing_maintenance/release_process", "basics/_available_events_ocp", "basics/backgroundjobs", "basics/caching", "basics/controllers", "basics/dependency_injection", "basics/events", "basics/front-end/css", "basics/front-end/index", "basics/front-end/js", "basics/front-end/templates", "basics/front-end/theming", "basics/index", "basics/logging", "basics/middlewares", "basics/public_share_template", "basics/request_lifecycle", "basics/routing", "basics/setting", "basics/storage/appdata", "basics/storage/configuration", "basics/storage/database", "basics/storage/filesystem", "basics/storage/index", "basics/storage/migrations", "basics/testing", "basics/translations", "client_apis/ClientIntegration/index", "client_apis/LoginFlow/index", "client_apis/OCS/index", "client_apis/OCS/ocs-api-overview", "client_apis/OCS/ocs-assistant-api", "client_apis/OCS/ocs-fulltextsearch-collections-api", "client_apis/OCS/ocs-openapi", "client_apis/OCS/ocs-out-of-office-api", "client_apis/OCS/ocs-recommendations-api", "client_apis/OCS/ocs-share-api", "client_apis/OCS/ocs-sharee-api", "client_apis/OCS/ocs-status-api", "client_apis/OCS/ocs-taskprocessing-api", "client_apis/OCS/ocs-text2image-api", "client_apis/OCS/ocs-textprocessing-api", "client_apis/OCS/ocs-translation-api", "client_apis/OCS/ocs-user-preferences-api", "client_apis/RemoteWipe/index", "client_apis/WebDAV/basic", "client_apis/WebDAV/bulkupload", "client_apis/WebDAV/chunking", "client_apis/WebDAV/comments", "client_apis/WebDAV/index", "client_apis/WebDAV/search", "client_apis/WebDAV/trashbin", "client_apis/WebDAV/versions", "client_apis/activity-api", "client_apis/android_library/examples", "client_apis/android_library/index", "client_apis/android_library/library_installation", "client_apis/files", "client_apis/general", "client_apis/index", "design/components", "design/foundations", "design/index", "design/introduction", "design/layout", "design/writing", "desktop/building", "desktop/index", "digging_deeper/ai", "digging_deeper/api", "digging_deeper/apis", "digging_deeper/assistant_integration", "digging_deeper/auth", "digging_deeper/classloader", "digging_deeper/config/appconfig", "digging_deeper/config/index", "digging_deeper/config/lexicon", "digging_deeper/config/userconfig", "digging_deeper/context_chat", "digging_deeper/continuous_integration", "digging_deeper/dashboard", "digging_deeper/deadlock", "digging_deeper/debugging", "digging_deeper/declarative_settings", "digging_deeper/devtools", "digging_deeper/direct_editing", "digging_deeper/discovery", "digging_deeper/email", "digging_deeper/files-metadata", "digging_deeper/flow", "digging_deeper/groupware/calendar", "digging_deeper/groupware/calendar_provider", "digging_deeper/groupware/contacts_menu", "digging_deeper/groupware/index", "digging_deeper/groupware/mail_provider", "digging_deeper/groupware_workflows", "digging_deeper/http_client", "digging_deeper/index", "digging_deeper/internals", "digging_deeper/javascript-apis", "digging_deeper/machinetranslation", "digging_deeper/notifications", "digging_deeper/npm", "digging_deeper/oidc", "digging_deeper/openmetrics", "digging_deeper/out_of_office", "digging_deeper/performance", "digging_deeper/phonenumberutil", "digging_deeper/profile", "digging_deeper/profiler", "digging_deeper/projects", "digging_deeper/psr", "digging_deeper/publicpage", "digging_deeper/reference", "digging_deeper/repair", "digging_deeper/rest_apis", "digging_deeper/search", "digging_deeper/security", "digging_deeper/settings", "digging_deeper/setup_checks", "digging_deeper/snowflake_ids", "digging_deeper/speech-to-text", "digging_deeper/status", "digging_deeper/talk", "digging_deeper/task_processing", "digging_deeper/text2image", "digging_deeper/text_processing", "digging_deeper/time", "digging_deeper/two-factor-provider", "digging_deeper/user_migration", "digging_deeper/users", "digging_deeper/web_host_metadata", "digging_deeper/webdav_collection_preload", "exapp_development/DevSetup", "exapp_development/Introduction", "exapp_development/development_overview/ExAppDevelopmentSteps", "exapp_development/development_overview/ExAppHarpIntegration", "exapp_development/development_overview/ExAppLifecycle", "exapp_development/development_overview/ExAppOverview", "exapp_development/development_overview/index", "exapp_development/faq/BehindCompanyProxy", "exapp_development/faq/DockerContainerRegistry", "exapp_development/faq/DockerSocketProxy", "exapp_development/faq/GpuSupport", "exapp_development/faq/Scaling", "exapp_development/faq/Troubleshooting", "exapp_development/faq/index", "exapp_development/index", "exapp_development/tech_details/Authentication", "exapp_development/tech_details/Deployment", "exapp_development/tech_details/InstallationFlow", "exapp_development/tech_details/Translations", "exapp_development/tech_details/api/appconfig", "exapp_development/tech_details/api/events_listener", "exapp_development/tech_details/api/exapp", "exapp_development/tech_details/api/fileactionsmenu", "exapp_development/tech_details/api/index", "exapp_development/tech_details/api/logging", "exapp_development/tech_details/api/notifications", "exapp_development/tech_details/api/occ_command", "exapp_development/tech_details/api/other_ocs", "exapp_development/tech_details/api/preferences", "exapp_development/tech_details/api/routes", "exapp_development/tech_details/api/settings", "exapp_development/tech_details/api/talkbots", "exapp_development/tech_details/api/topmenu", "exapp_development/tech_details/api/utils", "exapp_development/tech_details/index", "getting_started/coding_standards/html_css", "getting_started/coding_standards/index", "getting_started/coding_standards/javascript", "getting_started/coding_standards/php", "getting_started/development_process", "getting_started/devenv", "getting_started/glossary", "getting_started/index", "how_to/index", "html_css_design/content", "html_css_design/css", "html_css_design/html", "html_css_design/icons", "html_css_design/index", "html_css_design/list", "html_css_design/navigation", "html_css_design/popovermenu", "index", "prologue/bugtracker/codereviews", "prologue/bugtracker/index", "prologue/bugtracker/triaging", "prologue/code-of-conduct", "prologue/compatibility_app_ecosystem", "prologue/help_communication", "prologue/index", "prologue/security", "release_notes/critical_changes", "release_notes/deprecations", "release_notes/index", "release_notes/new", "release_notes/previous/index", "release_notes/previous/upgrade_to_14", "release_notes/previous/upgrade_to_15", "release_notes/previous/upgrade_to_16", "release_notes/previous/upgrade_to_17", "release_notes/previous/upgrade_to_18", "release_notes/previous/upgrade_to_19", "release_notes/previous/upgrade_to_20", "release_notes/previous/upgrade_to_21", "release_notes/previous/upgrade_to_22", "release_notes/previous/upgrade_to_23", "release_notes/previous/upgrade_to_24", "release_notes/previous/upgrade_to_25", "release_notes/previous/upgrade_to_26", "release_notes/previous/upgrade_to_27", "release_notes/previous/upgrade_to_28", "release_notes/previous/upgrade_to_29", "release_notes/previous/upgrade_to_30", "release_notes/previous/upgrade_to_31", "release_notes/previous/upgrade_to_32", "release_notes/previous/upgrade_to_33", "release_notes/previous/upgrade_to_34", "server/architecture/files", "server/architecture/index", "server/code-back-end", "server/code-front-end", "server/externalapi", "server/index", "server/static-analysis", "server/unit-testing"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2}, "filenames": ["app_development/bootstrap.rst", "app_development/commands.rst", "app_development/dav_extension.rst", "app_development/dependency_management.rst", "app_development/index.rst", "app_development/info.rst", "app_development/init.rst", "app_development/intro.rst", "app_development/translation.rst", "app_development/tutorial.rst", "app_publishing_maintenance/code_signing.rst", "app_publishing_maintenance/index.rst", "app_publishing_maintenance/maintainer.rst", "app_publishing_maintenance/monetizing.rst", "app_publishing_maintenance/publishing.rst", "app_publishing_maintenance/release_automation.rst", "app_publishing_maintenance/release_process.rst", "basics/_available_events_ocp.rst", "basics/backgroundjobs.rst", "basics/caching.rst", "basics/controllers.rst", "basics/dependency_injection.rst", "basics/events.rst", "basics/front-end/css.rst", "basics/front-end/index.rst", "basics/front-end/js.rst", "basics/front-end/templates.rst", "basics/front-end/theming.rst", "basics/index.rst", "basics/logging.rst", "basics/middlewares.rst", "basics/public_share_template.rst", "basics/request_lifecycle.rst", "basics/routing.rst", "basics/setting.rst", "basics/storage/appdata.rst", "basics/storage/configuration.rst", "basics/storage/database.rst", "basics/storage/filesystem.rst", "basics/storage/index.rst", "basics/storage/migrations.rst", "basics/testing.rst", "basics/translations.rst", "client_apis/ClientIntegration/index.rst", "client_apis/LoginFlow/index.rst", "client_apis/OCS/index.rst", "client_apis/OCS/ocs-api-overview.rst", "client_apis/OCS/ocs-assistant-api.rst", "client_apis/OCS/ocs-fulltextsearch-collections-api.rst", "client_apis/OCS/ocs-openapi.rst", "client_apis/OCS/ocs-out-of-office-api.rst", "client_apis/OCS/ocs-recommendations-api.rst", "client_apis/OCS/ocs-share-api.rst", "client_apis/OCS/ocs-sharee-api.rst", "client_apis/OCS/ocs-status-api.rst", "client_apis/OCS/ocs-taskprocessing-api.rst", "client_apis/OCS/ocs-text2image-api.rst", "client_apis/OCS/ocs-textprocessing-api.rst", "client_apis/OCS/ocs-translation-api.rst", "client_apis/OCS/ocs-user-preferences-api.rst", "client_apis/RemoteWipe/index.rst", "client_apis/WebDAV/basic.rst", "client_apis/WebDAV/bulkupload.rst", "client_apis/WebDAV/chunking.rst", "client_apis/WebDAV/comments.rst", "client_apis/WebDAV/index.rst", "client_apis/WebDAV/search.rst", "client_apis/WebDAV/trashbin.rst", "client_apis/WebDAV/versions.rst", "client_apis/activity-api.rst", "client_apis/android_library/examples.rst", "client_apis/android_library/index.rst", "client_apis/android_library/library_installation.rst", "client_apis/files.rst", "client_apis/general.rst", "client_apis/index.rst", "design/components.rst", "design/foundations.rst", "design/index.rst", "design/introduction.rst", "design/layout.rst", "design/writing.rst", "desktop/building.rst", "desktop/index.rst", "digging_deeper/ai.rst", "digging_deeper/api.rst", "digging_deeper/apis.rst", "digging_deeper/assistant_integration.rst", "digging_deeper/auth.rst", "digging_deeper/classloader.rst", "digging_deeper/config/appconfig.rst", "digging_deeper/config/index.rst", "digging_deeper/config/lexicon.rst", "digging_deeper/config/userconfig.rst", "digging_deeper/context_chat.rst", "digging_deeper/continuous_integration.rst", "digging_deeper/dashboard.rst", "digging_deeper/deadlock.rst", "digging_deeper/debugging.rst", "digging_deeper/declarative_settings.rst", "digging_deeper/devtools.rst", "digging_deeper/direct_editing.rst", "digging_deeper/discovery.rst", "digging_deeper/email.rst", "digging_deeper/files-metadata.rst", "digging_deeper/flow.rst", "digging_deeper/groupware/calendar.rst", "digging_deeper/groupware/calendar_provider.rst", "digging_deeper/groupware/contacts_menu.rst", "digging_deeper/groupware/index.rst", "digging_deeper/groupware/mail_provider.rst", "digging_deeper/groupware_workflows.rst", "digging_deeper/http_client.rst", "digging_deeper/index.rst", "digging_deeper/internals.rst", "digging_deeper/javascript-apis.rst", "digging_deeper/machinetranslation.rst", "digging_deeper/notifications.rst", "digging_deeper/npm.rst", "digging_deeper/oidc.rst", "digging_deeper/openmetrics.rst", "digging_deeper/out_of_office.rst", "digging_deeper/performance.rst", "digging_deeper/phonenumberutil.rst", "digging_deeper/profile.rst", "digging_deeper/profiler.rst", "digging_deeper/projects.rst", "digging_deeper/psr.rst", "digging_deeper/publicpage.rst", "digging_deeper/reference.rst", "digging_deeper/repair.rst", "digging_deeper/rest_apis.rst", "digging_deeper/search.rst", "digging_deeper/security.rst", "digging_deeper/settings.rst", "digging_deeper/setup_checks.rst", "digging_deeper/snowflake_ids.rst", "digging_deeper/speech-to-text.rst", "digging_deeper/status.rst", "digging_deeper/talk.rst", "digging_deeper/task_processing.rst", "digging_deeper/text2image.rst", "digging_deeper/text_processing.rst", "digging_deeper/time.rst", "digging_deeper/two-factor-provider.rst", "digging_deeper/user_migration.rst", "digging_deeper/users.rst", "digging_deeper/web_host_metadata.rst", "digging_deeper/webdav_collection_preload.rst", "exapp_development/DevSetup.rst", "exapp_development/Introduction.rst", "exapp_development/development_overview/ExAppDevelopmentSteps.rst", "exapp_development/development_overview/ExAppHarpIntegration.rst", "exapp_development/development_overview/ExAppLifecycle.rst", "exapp_development/development_overview/ExAppOverview.rst", "exapp_development/development_overview/index.rst", "exapp_development/faq/BehindCompanyProxy.rst", "exapp_development/faq/DockerContainerRegistry.rst", "exapp_development/faq/DockerSocketProxy.rst", "exapp_development/faq/GpuSupport.rst", "exapp_development/faq/Scaling.rst", "exapp_development/faq/Troubleshooting.rst", "exapp_development/faq/index.rst", "exapp_development/index.rst", "exapp_development/tech_details/Authentication.rst", "exapp_development/tech_details/Deployment.rst", "exapp_development/tech_details/InstallationFlow.rst", "exapp_development/tech_details/Translations.rst", "exapp_development/tech_details/api/appconfig.rst", "exapp_development/tech_details/api/events_listener.rst", "exapp_development/tech_details/api/exapp.rst", "exapp_development/tech_details/api/fileactionsmenu.rst", "exapp_development/tech_details/api/index.rst", "exapp_development/tech_details/api/logging.rst", "exapp_development/tech_details/api/notifications.rst", "exapp_development/tech_details/api/occ_command.rst", "exapp_development/tech_details/api/other_ocs.rst", "exapp_development/tech_details/api/preferences.rst", "exapp_development/tech_details/api/routes.rst", "exapp_development/tech_details/api/settings.rst", "exapp_development/tech_details/api/talkbots.rst", "exapp_development/tech_details/api/topmenu.rst", "exapp_development/tech_details/api/utils.rst", "exapp_development/tech_details/index.rst", "getting_started/coding_standards/html_css.rst", "getting_started/coding_standards/index.rst", "getting_started/coding_standards/javascript.rst", "getting_started/coding_standards/php.rst", "getting_started/development_process.rst", "getting_started/devenv.rst", "getting_started/glossary.rst", "getting_started/index.rst", "how_to/index.rst", "html_css_design/content.rst", "html_css_design/css.rst", "html_css_design/html.rst", "html_css_design/icons.rst", "html_css_design/index.rst", "html_css_design/list.rst", "html_css_design/navigation.rst", "html_css_design/popovermenu.rst", "index.rst", "prologue/bugtracker/codereviews.rst", "prologue/bugtracker/index.rst", "prologue/bugtracker/triaging.rst", "prologue/code-of-conduct.rst", "prologue/compatibility_app_ecosystem.rst", "prologue/help_communication.rst", "prologue/index.rst", "prologue/security.rst", "release_notes/critical_changes.rst", "release_notes/deprecations.rst", "release_notes/index.rst", "release_notes/new.rst", "release_notes/previous/index.rst", "release_notes/previous/upgrade_to_14.rst", "release_notes/previous/upgrade_to_15.rst", "release_notes/previous/upgrade_to_16.rst", "release_notes/previous/upgrade_to_17.rst", "release_notes/previous/upgrade_to_18.rst", "release_notes/previous/upgrade_to_19.rst", "release_notes/previous/upgrade_to_20.rst", "release_notes/previous/upgrade_to_21.rst", "release_notes/previous/upgrade_to_22.rst", "release_notes/previous/upgrade_to_23.rst", "release_notes/previous/upgrade_to_24.rst", "release_notes/previous/upgrade_to_25.rst", "release_notes/previous/upgrade_to_26.rst", "release_notes/previous/upgrade_to_27.rst", "release_notes/previous/upgrade_to_28.rst", "release_notes/previous/upgrade_to_29.rst", "release_notes/previous/upgrade_to_30.rst", "release_notes/previous/upgrade_to_31.rst", "release_notes/previous/upgrade_to_32.rst", "release_notes/previous/upgrade_to_33.rst", "release_notes/previous/upgrade_to_34.rst", "server/architecture/files.rst", "server/architecture/index.rst", "server/code-back-end.rst", "server/code-front-end.rst", "server/externalapi.rst", "server/index.rst", "server/static-analysis.rst", "server/unit-testing.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 2, 3, 5, 8, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 29, 30, 32, 33, 36, 37, 38, 42, 43, 44, 45, 49, 50, 56, 57, 58, 61, 64, 66, 69, 73, 74, 76, 77, 79, 82, 90, 92, 94, 95, 96, 98, 101, 105, 106, 107, 108, 110, 112, 115, 116, 118, 121, 122, 124, 125, 129, 130, 132, 133, 134, 136, 137, 139, 140, 141, 142, 144, 147, 148, 151, 152, 153, 165, 166, 167, 170, 174, 175, 181, 185, 186, 187, 188, 189, 190, 192, 199, 204, 206, 209, 222, 223, 224, 228, 229, 231, 232, 233, 239], "0": [1, 3, 5, 6, 7, 14, 16, 17, 20, 21, 22, 25, 29, 34, 40, 43, 44, 46, 48, 49, 50, 52, 55, 56, 57, 61, 64, 66, 69, 70, 72, 82, 87, 89, 90, 94, 95, 96, 97, 98, 99, 100, 104, 107, 108, 113, 116, 118, 120, 121, 122, 124, 129, 130, 131, 132, 134, 137, 139, 140, 141, 142, 143, 145, 148, 149, 153, 155, 165, 166, 168, 170, 171, 175, 177, 179, 181, 185, 186, 187, 188, 192, 194, 199, 210, 215, 216, 217, 218, 223, 224, 229, 232, 233, 234, 239, 240], "00": [20, 61, 66, 69, 76, 139], "000": [2, 37], "000000": 46, "00000007oc9l3j5ur4db": 61, "00000259oczn5x60nrdu": 61, "00001": 63, "00002": 63, "0020": 42, "00293f": 194, "005416": 194, "005a8a": 194, "0066ac": 194, "00679e": 194, "0077c7": 194, "0082c9": 46, "00a0": 42, "00z": 66, "01": [20, 61, 64, 66, 96, 187], "01t00": 61, "01t17": 66, "03": 96, "04": 139, "044": 123, "04c36b75222cd9fd47f2607333029106": 61, "04z": 96, "05": [61, 129], "050": 136, "07": 139, "08": 243, "09": 97, "099f05": 194, "0e53dfb6": 61, "1": [0, 1, 2, 3, 5, 7, 14, 15, 16, 17, 20, 21, 22, 25, 29, 30, 33, 37, 39, 43, 44, 46, 48, 52, 57, 61, 62, 63, 64, 66, 69, 70, 72, 74, 87, 89, 95, 96, 98, 99, 101, 104, 106, 108, 116, 118, 120, 122, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 145, 147, 148, 149, 152, 153, 154, 155, 158, 165, 166, 168, 170, 175, 177, 181, 185, 186, 187, 190, 192, 194, 198, 199, 202, 204, 209, 215, 217, 222, 223, 224, 231, 232, 233, 240], "10": [20, 34, 46, 52, 58, 61, 64, 69, 82, 96, 99, 104, 129, 130, 136, 140, 142, 153, 179, 187, 192, 210], "100": [13, 20, 34, 46, 52, 53, 69, 92, 96, 122, 129, 134, 140, 145, 165, 166, 168, 177, 182, 187, 194, 195, 232], "1000": [37, 40, 104], "10000": [63, 122], "10000000": 66, "100644": [154, 192], "100kib": 145, "100m": [79, 194], "100px": 77, "1024px": 194, "1025": 192, "1084": 168, "10mb": [63, 66], "10min": 142, "10z": 96, "11": [21, 46, 69, 82, 96, 100, 113, 140, 210, 223, 239], "113": 194, "114": 194, "116": 198, "12": [23, 46, 61, 64, 123, 129, 136, 140, 152, 210], "120": 179, "120m": 179, "121": 202, "123": [87, 104, 168, 171, 174, 175, 177, 186, 194], "1234": [104, 107, 132], "12345": [66, 92, 165, 175], "124": [129, 171], "125": 171, "127": [98, 192], "1270351409912": 122, "127815235": 61, "12px": [77, 194], "13": [136, 139, 140], "130000000": 129, "1337": 120, "139": 192, "13px": 77, "13t12": 96, "14": [64, 96, 139, 140, 144, 193, 214, 233, 234], "141": 198, "144": 198, "146": 202, "14px": [20, 200], "15": [17, 22, 61, 140, 143, 144, 153, 214], "150": [69, 192], "15000000": 63, "151": 198, "152": [87, 192, 198], "1547545326": 63, "1553": 132, "156": 198, "1575981518": 136, "1578283711000": 46, "15px": [77, 194], "16": [17, 22, 42, 48, 52, 61, 64, 124, 185, 214, 234], "163": 194, "1675789581": 61, "168": 192, "16px": 194, "17": [17, 22, 46, 192, 214, 227, 229, 234], "1711545301": 87, "1711545302": 87, "1711545303": 87, "1711545305": 87, "172": 192, "1728000": 131, "173": 194, "1742": 104, "18": [17, 22, 29, 64, 101, 214, 218, 234], "1800": 123, "19": [16, 17, 22, 127, 152, 187, 214, 233, 234, 235], "192": [192, 198], "197": 198, "1970": 61, "19z": 96, "1_linux_": 152, "1_linux_amd64": 152, "1_linux_arm64": 152, "1e1": 187, "1e2": 187, "1min": 140, "1px": 194, "1snze11cibf6v6dsz": 10, "1st": 46, "1st_user": 46, "2": [1, 3, 5, 14, 15, 16, 17, 20, 22, 29, 39, 46, 48, 52, 56, 57, 58, 61, 62, 63, 64, 77, 85, 87, 101, 104, 106, 107, 123, 125, 127, 129, 132, 140, 141, 142, 152, 154, 165, 177, 185, 186, 187, 192, 194, 195, 198, 199, 202, 204, 210, 221, 222, 229, 232, 233, 234, 243], "20": [17, 21, 22, 30, 37, 44, 46, 56, 57, 61, 64, 100, 113, 132, 214, 222, 228, 229, 230, 232, 233, 234, 235], "200": [43, 44, 48, 49, 50, 51, 52, 54, 56, 57, 58, 59, 60, 69, 96, 101, 104, 129, 153, 170, 173, 240], "2001": [5, 95, 108, 130], "2008": 243, "2012": 129, "2014": [129, 222], "2015": [20, 69], "2016": [64, 185], "2018": 97, "2019": [82, 136], "2020": 15, "20200101t170000z": 107, "20200130t170000z": 107, "20200130t180000z": 107, "2021": [66, 96], "2022": [61, 82, 96], "2023": 228, "2024": [42, 185], "20240101120000": 190, "2026": 139, "2034": 40, "204": 69, "20632824998": 46, "20cat": 132, "20cute": 132, "20music": 70, "20px": [77, 184], "20st": 132, "20standard": 228, "20t12": 69, "20thcenturystudio": 129, "21": [17, 22, 127, 132, 147, 152, 214, 225, 233], "21474836480": 46, "2153599501": 122, "2156": 64, "216": 198, "219": 194, "22": [17, 22, 29, 64, 127, 214, 226, 229, 231, 233, 234], "222222": 194, "22t15": 96, "23": [16, 34, 37, 61, 69, 124, 127, 210, 214, 227, 234], "231": 198, "2345": 153, "24": [16, 17, 18, 22, 29, 37, 63, 64, 97, 125, 145, 179, 210, 214, 231, 233, 239], "240": 48, "2401fed2eea6f2c1027c482a633e8e25cd46701f811e2d2c10dc213fd95fa60e350b": 10, "2404date20220903071748": 40, "2432": 166, "24px": [76, 77, 194, 231], "25": [16, 17, 22, 25, 58, 129, 132, 145, 188, 196, 214, 227, 228, 234], "255": 194, "256": [5, 61], "25px": 194, "26": [16, 17, 20, 22, 30, 43, 58, 69, 116, 122, 129, 143, 214, 229], "26e7beeca3c0": 63, "27": [16, 17, 18, 20, 22, 34, 37, 48, 57, 73, 96, 97, 107, 127, 137, 142, 145, 146, 214, 227, 229, 230, 231, 234], "277": 156, "28": [2, 17, 20, 21, 22, 29, 37, 48, 49, 50, 56, 57, 104, 121, 132, 141, 142, 171, 188, 210, 214, 232], "282": 132, "29": [5, 17, 20, 22, 33, 40, 61, 90, 99, 116, 122, 132, 137, 143, 179, 214, 231, 232], "2fa": [61, 144], "2g": 227, "2nd": 46, "2nd_user": 46, "2px": 194, "2xx": 49, "3": [5, 8, 14, 15, 16, 20, 29, 30, 33, 35, 37, 39, 41, 43, 46, 52, 61, 64, 69, 70, 76, 82, 87, 90, 96, 97, 100, 101, 113, 128, 129, 139, 140, 141, 142, 152, 154, 155, 185, 186, 188, 189, 192, 194, 202, 204, 210, 222, 224, 225, 231, 232, 234, 238, 240, 243], "30": [17, 20, 22, 37, 40, 52, 55, 57, 64, 69, 116, 127, 129, 131, 137, 140, 141, 142, 149, 153, 214, 233, 234], "300m": 194, "300px": [194, 199], "3030237": 61, "304": 69, "3097fca9b1ec8942c4305e550ef1b50a": 129, "31": [5, 17, 22, 52, 61, 69, 70, 90, 93, 127, 171, 198, 214, 229, 234], "310": 87, "3166": 123, "32": [2, 5, 17, 22, 48, 61, 92, 94, 96, 99, 132, 139, 152, 168, 177, 194, 214, 228], "32060": 226, "3209": 96, "321": 177, "3285b1": 194, "32866": 228, "32bit": 227, "32px": 76, "32x32": 69, "33": [17, 22, 43, 90, 120, 136, 139, 140, 214], "333": 96, "33333344": 194, "34": [40, 96, 101, 139, 211, 214], "34081": 226, "34302": 97, "34329": 227, "34490": 227, "3456": 61, "34773": 228, "34807": 227, "34893": 227, "34px": [77, 194, 231], "35": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243], "35789": 227, "35872": 228, "35966": 227, "36": 43, "3600": [18, 19], "36033": 227, "36073": 227, "36114": 227, "36198": 227, "36310": 227, "36363": 227, "36393": 227, "364": 69, "36434": 227, "3650": 192, "36591": 228, "36665": 228, "36836": 228, "369": 104, "36c3": 105, "37040": 228, "37316": 228, "37324": 228, "37542": 228, "37674": 228, "37820": 97, "37835": 228, "37929": 228, "37943": 228, "37955": 228, "38": 136, "38003": 228, "38030": [97, 228], "38104": 228, "389": 129, "3927bf23": 192, "3950773": 61, "3986": 44, "39th": 132, "39z": 96, "3rd": [3, 8, 46, 89, 95, 127, 132, 151, 154, 233], "3rd_user": 46, "3rdparti": [151, 192, 222, 227, 229], "4": [5, 15, 16, 29, 37, 42, 46, 48, 52, 61, 87, 89, 100, 101, 113, 118, 139, 140, 141, 142, 152, 154, 155, 185, 186, 187, 188, 192, 210, 220, 222, 225, 228, 230, 233, 234], "40": [153, 179], "400": [49, 50, 52, 54, 57, 58, 59, 192], "401": [50, 59, 60, 61, 161, 178, 240], "403": [44, 52, 60, 69, 101, 223], "403354469": 129, "404": [44, 49, 50, 52, 54, 56, 57, 69, 104, 128, 153, 165, 166, 170, 240], "4052412": 61, "409": 129, "4096": [10, 192], "40email": 46, "40m": 179, "41": [123, 198], "412": [56, 57, 58, 228], "41446681800": 123, "42": [29, 46, 69, 112, 120, 125, 195], "42513563": 154, "429": [20, 56, 57, 58, 133], "44": [76, 123], "441": 136, "4423": 63, "443": 192, "4433": 192, "444444": 194, "445": 192, "44px": [199, 231], "44x44px": 96, "45": 194, "46f0": 61, "483c1e56f95e88835747b1c7c60581215016cbf2": 15, "487903ffcf4": 192, "48px": 194, "49": [69, 123], "4918": 61, "49279cc7": 192, "4e43": 106, "4e4672cs58q": 243, "4efe": 63, "4px": [77, 194, 232], "4xx": 49, "5": [5, 20, 37, 49, 56, 57, 64, 66, 69, 76, 79, 95, 97, 118, 125, 132, 133, 140, 155, 165, 187, 194, 200, 217, 231, 233, 243], "50": [48, 69, 132, 134, 136], "500": [101, 178], "500px": 194, "501": [153, 165, 166], "503": [74, 228], "507": 63, "509": 10, "50ef2eba7b74aa84feff013efee2a5ef": 61, "50k": 92, "50px": 194, "512": [10, 145], "51803": 235, "55": 132, "55548cc16b457cd74241990cc9d3b72b6335f2e5f45eee95171da024087d114fcbc2": 10, "555555": 46, "565656": 107, "567": 132, "59": 198, "595959": 194, "597996": 48, "5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f": 15, "5gb": 63, "5mb": 63, "6": [5, 16, 19, 46, 52, 61, 82, 140, 154, 155, 192, 194, 200, 210], "60": [46, 96, 124, 133, 140, 179], "600": 152, "60m": 179, "61": 152, "61b4": 61, "64": [5, 19, 40, 93, 96, 136], "640": 48, "6436d084d4805": 61, "64px": 76, "65": [118, 194], "664700": 194, "668": 123, "67": [154, 166], "6768789079123765868": 136, "68": 129, "6b6b6b": 194, "6h": 19, "7": [5, 15, 16, 43, 46, 52, 61, 82, 96, 122, 154, 192, 199, 210, 215, 216, 217, 222, 225, 229, 233], "70": [34, 69], "7000": 192, "70981": 129, "72": 198, "7222": 235, "728": 227, "7520": 235, "7641": 235, "77": 194, "79": [154, 195], "7d7d7d": 194, "8": [5, 16, 17, 20, 22, 46, 48, 52, 56, 61, 62, 64, 66, 81, 97, 104, 107, 141, 143, 154, 194, 198, 210, 233, 243], "80": [134, 185], "8025": 192, "8080": 156, "817c": 106, "8400ba9c": 192, "842011482": 46, "8443": 133, "86": 154, "8601": [61, 69], "87": 96, "878": 129, "88": 154, "8904": 215, "8910": 104, "8a0000": 194, "8aa06618": 154, "8px": [77, 194, 232], "9": [5, 17, 22, 25, 49, 61, 76, 96, 118, 139, 210, 217, 231, 235, 238, 240], "90": [107, 165], "9000": [98, 192], "92": 46, "9261": 132, "95": 192, "96": 198, "9648": 129, "97": 198, "98": 34, "983": 177, "9876": 243, "99": [134, 199], "9940": 223, "996": 240, "9980": 192, "999": [199, 240], "9d52": 106, "A": [3, 5, 10, 16, 18, 19, 20, 21, 22, 29, 32, 35, 41, 42, 44, 46, 49, 57, 58, 62, 63, 69, 76, 77, 81, 87, 89, 90, 92, 94, 95, 96, 101, 105, 106, 107, 116, 122, 124, 126, 128, 129, 130, 132, 134, 137, 138, 139, 140, 141, 142, 145, 146, 147, 156, 185, 190, 199, 202, 206, 209, 222, 226, 228, 231, 233, 236, 240, 243], "AND": [122, 129], "AS": [152, 210], "And": [15, 18, 35, 61, 62, 63, 99, 125, 129, 154, 185, 204, 234], "As": [15, 18, 20, 22, 29, 37, 46, 61, 70, 101, 107, 122, 126, 128, 129, 131, 134, 135, 144, 149, 160, 185, 195, 198, 202, 215, 220, 221, 222, 224, 227, 234], "At": [0, 14, 16, 43, 66, 69, 105, 107], "BY": [37, 210], "Be": [3, 10, 25, 44, 81, 115, 122, 204, 240], "Being": 14, "But": [22, 40, 42, 44, 129, 130, 158, 204, 222, 232], "By": [10, 17, 20, 21, 22, 37, 48, 49, 52, 61, 82, 97, 98, 99, 104, 130, 131, 139, 140, 152, 158, 199], "For": [1, 2, 3, 6, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 25, 29, 30, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44, 46, 49, 52, 61, 63, 64, 66, 69, 71, 76, 77, 79, 80, 81, 82, 87, 90, 95, 98, 99, 105, 106, 107, 110, 115, 118, 124, 125, 129, 131, 132, 133, 134, 137, 140, 141, 142, 144, 145, 149, 151, 152, 154, 156, 158, 159, 165, 166, 167, 169, 175, 185, 186, 187, 188, 190, 192, 194, 196, 199, 200, 204, 205, 214, 221, 222, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 239, 243], "IF": 14, "IN": 37, "If": [2, 3, 5, 8, 10, 13, 14, 15, 16, 17, 20, 21, 22, 25, 29, 30, 32, 33, 34, 37, 38, 40, 42, 43, 44, 46, 48, 49, 50, 54, 56, 59, 61, 63, 64, 69, 71, 74, 76, 79, 81, 82, 85, 87, 89, 90, 92, 93, 95, 96, 104, 105, 106, 107, 108, 110, 115, 116, 118, 119, 121, 122, 128, 129, 130, 131, 132, 135, 137, 138, 140, 141, 142, 144, 145, 149, 150, 151, 152, 156, 159, 161, 162, 165, 166, 170, 171, 173, 185, 187, 188, 189, 190, 193, 196, 198, 199, 200, 202, 203, 204, 209, 210, 217, 220, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 239, 240, 243], "In": [0, 1, 2, 3, 8, 10, 15, 16, 18, 20, 21, 22, 25, 28, 29, 32, 33, 34, 35, 37, 40, 42, 44, 46, 49, 54, 60, 61, 74, 76, 82, 85, 90, 95, 96, 97, 105, 106, 107, 116, 118, 123, 125, 126, 128, 129, 130, 131, 132, 133, 136, 137, 140, 141, 142, 144, 148, 152, 154, 158, 159, 160, 163, 164, 166, 167, 185, 186, 188, 190, 198, 199, 202, 204, 210, 211, 217, 222, 223, 224, 225, 227, 228, 229, 231, 232, 233, 234, 242, 243], "It": [3, 8, 10, 15, 16, 17, 20, 21, 22, 25, 27, 30, 31, 33, 34, 36, 37, 42, 43, 46, 49, 50, 52, 61, 63, 64, 69, 71, 76, 79, 82, 85, 87, 89, 90, 96, 97, 98, 104, 106, 107, 115, 117, 119, 121, 122, 123, 125, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 141, 145, 151, 152, 153, 154, 156, 158, 162, 165, 170, 177, 185, 186, 189, 190, 192, 194, 199, 204, 206, 209, 213, 222, 223, 227, 228, 229, 231, 232, 233, 234], "Its": [96, 107, 140, 141, 142], "NOT": [45, 52, 153, 198, 231], "No": [42, 44, 59, 61, 69, 76, 87, 96, 98, 133, 135, 145, 185], "Not": [14, 16, 50, 54, 56, 57, 61, 69, 104, 147, 156, 188, 204], "ON": [82, 98], "Of": [18, 107, 141, 142, 204], "On": [37, 44, 48, 61, 77, 82, 93, 98, 106, 127, 128, 129, 154, 168, 177, 193, 198, 212, 218, 220, 243], "One": [15, 49, 81, 107, 110, 120, 122, 135, 171, 199], "Or": [18, 21, 106, 129, 188, 231, 239, 240], "Such": 20, "That": [0, 3, 8, 20, 21, 32, 46, 122, 128, 131, 185, 204], "The": [1, 3, 4, 5, 7, 8, 10, 11, 12, 13, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 76, 77, 79, 80, 81, 82, 85, 87, 89, 90, 92, 93, 95, 97, 98, 99, 103, 104, 105, 106, 108, 109, 110, 112, 113, 115, 116, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 157, 158, 161, 164, 165, 166, 168, 170, 171, 173, 174, 175, 177, 178, 181, 185, 187, 189, 191, 192, 193, 194, 195, 196, 198, 199, 200, 201, 204, 206, 209, 210, 213, 217, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 242, 243], "Then": [7, 8, 10, 15, 20, 21, 22, 82, 94, 106, 107, 120, 129, 134, 146, 149, 189, 192, 239, 243], "There": [3, 10, 14, 16, 18, 20, 21, 25, 27, 35, 42, 44, 46, 49, 63, 70, 72, 76, 87, 96, 97, 99, 107, 115, 116, 119, 122, 125, 129, 131, 132, 134, 140, 149, 151, 153, 154, 158, 165, 167, 170, 173, 182, 186, 188, 189, 192, 194, 195, 204, 206, 209, 213, 222, 225, 227, 229, 240], "These": [13, 14, 16, 20, 37, 41, 42, 47, 69, 76, 82, 98, 107, 108, 122, 124, 128, 131, 132, 154, 179, 202, 206, 209, 214, 233, 234, 243], "To": [0, 2, 3, 8, 9, 12, 13, 14, 15, 17, 20, 21, 22, 25, 26, 30, 33, 34, 37, 40, 42, 43, 44, 45, 46, 47, 49, 52, 61, 63, 67, 68, 69, 73, 75, 76, 77, 82, 84, 85, 90, 93, 94, 96, 98, 99, 101, 104, 106, 107, 110, 113, 115, 116, 118, 123, 125, 128, 129, 130, 131, 132, 135, 136, 140, 142, 144, 146, 149, 152, 154, 156, 159, 165, 166, 167, 169, 171, 175, 176, 180, 181, 189, 190, 195, 199, 202, 204, 209, 210, 220, 222, 229, 232, 233, 234, 236, 239, 240, 243], "Will": [27, 42, 123, 135, 140, 218], "With": [0, 18, 21, 22, 40, 43, 46, 92, 99, 106, 107, 122, 132, 140, 176, 226, 227, 228, 232], "_": [20, 26, 36, 54, 134, 154, 167, 190, 231], "__construct": [0, 1, 18, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 49, 90, 96, 99, 101, 103, 104, 106, 107, 108, 110, 112, 116, 120, 124, 126, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 145, 146, 147, 190], "__dir__": [0, 3, 89], "__webpack_nonce__": [154, 231], "__webpack_public_path__": 154, "_capabl": 218, "_cooki": 20, "_data": 154, "_different_": 209, "_env": 20, "_file": 20, "_get": 209, "_n": [154, 167], "_pkei": 37, "_post": 21, "_rout": 230, "_sensitive_": 93, "_server": 20, "_session": 20, "_user": 46, "a011fe619bcf6e77ddebc96f9908e1af4071b9c1": 15, "a2xityipixkscripb": 10, "a37200": 194, "a9cd": 63, "a_valu": 92, "aa": [79, 164], "aa_vers": 165, "aaaaaa": 46, "aarch64": 152, "abbrevi": [33, 81, 186], "abc": [25, 43], "abc123": [139, 188], "abcd": 92, "abil": [14, 38, 82, 132, 179, 204, 223], "abl": [15, 16, 20, 82, 95, 104, 107, 129, 131, 135, 151, 156, 160, 188, 204, 209, 215, 220, 233], "abort": [1, 17, 22, 61, 129, 133], "about": [5, 10, 14, 17, 18, 21, 22, 25, 40, 44, 45, 46, 48, 49, 70, 76, 77, 79, 80, 87, 90, 92, 93, 95, 96, 97, 104, 105, 106, 115, 118, 121, 125, 127, 129, 131, 135, 136, 137, 140, 141, 142, 154, 169, 174, 180, 185, 188, 202, 204, 206, 209, 213, 222, 225, 227, 229, 230, 232, 233, 234, 243], "abov": [0, 2, 5, 8, 10, 14, 15, 20, 22, 29, 33, 42, 43, 49, 52, 69, 76, 82, 96, 101, 105, 107, 126, 130, 131, 132, 140, 185, 186, 190, 192, 199, 200, 209, 229, 234], "absenc": [50, 121], "absent": [1, 5, 49], "absolut": [38, 69, 82, 94, 96, 131, 135, 165, 174, 231, 233, 234], "absolutepath": 22, "abstract": [16, 32, 95, 107, 122, 129, 133, 186, 222, 224, 229], "abstractdatacollector": 125, "abstractnodeev": 231, "abstractnodesev": 231, "abstracttaskprocessingev": 140, "abstracttextprocessingev": [141, 142, 231], "abstracttexttoimageev": [141, 231], "abstracttranscriptionev": [137, 231], "ac": 192, "accent": 194, "accept": [1, 8, 20, 29, 32, 40, 45, 46, 61, 64, 76, 85, 87, 95, 96, 112, 129, 131, 135, 164, 165, 166, 178, 192, 199, 213, 215, 229, 234, 240], "accept_languag": 44, "access": [5, 8, 10, 15, 17, 20, 22, 25, 26, 28, 29, 30, 34, 35, 39, 41, 44, 46, 48, 50, 52, 53, 54, 61, 70, 71, 76, 79, 82, 88, 90, 93, 94, 96, 99, 101, 109, 110, 113, 115, 122, 125, 129, 131, 132, 137, 139, 140, 149, 152, 156, 158, 161, 165, 167, 176, 178, 186, 187, 189, 190, 192, 194, 195, 199, 202, 204, 209, 213, 226, 231, 232, 233, 236, 240, 243], "access_level": 178, "accesstoken": 70, "accid": 209, "accommod": 150, "accomplish": 110, "accord": [3, 5, 14, 140, 192, 215], "accordingli": [16, 176, 222, 223], "account": [8, 13, 14, 15, 42, 44, 45, 46, 60, 70, 81, 82, 92, 96, 103, 107, 110, 124, 135, 185, 192, 202, 204, 209, 228, 229, 231, 233], "accountmanag": [124, 229], "accur": [49, 121, 213], "accuraci": 145, "achiev": [20, 62, 107], "acl": 61, "acm": 82, "acpu": 242, "acquir": [19, 29, 86, 113, 132, 146], "acquiremailprovid": 110, "acquiremailservic": 110, "acreateempti": 101, "acreatefromtempl": 101, "across": [19, 20, 37, 49, 76, 81, 94, 101, 118, 148, 190, 199], "act": [0, 6, 21, 22, 101, 105, 115, 117, 222], "action": [10, 11, 14, 20, 22, 29, 34, 38, 42, 48, 61, 70, 75, 77, 78, 88, 90, 95, 96, 101, 105, 106, 107, 109, 113, 115, 126, 135, 138, 140, 149, 150, 151, 166, 170, 172, 175, 183, 189, 194, 199, 204, 206, 209, 227, 229, 231, 232, 233, 234], "action1": 187, "action2": 187, "action_handl": 171, "action_handler_rout": [169, 171], "actionbutton": 87, "actionfactori": 108, "actionhandl": [25, 169, 171], "actioninclud": 233, "actionlabel": 228, "activ": [5, 14, 15, 18, 20, 21, 25, 37, 51, 70, 75, 76, 77, 96, 98, 132, 144, 147, 154, 176, 190, 198, 199, 201, 204, 216, 217, 226, 227, 231, 232, 234, 239], "activat": [88, 113], "activity_id": 69, "activitymanag": [69, 232], "actor": 69, "actorid": 64, "actortyp": 64, "actual": [18, 20, 21, 22, 40, 43, 44, 46, 49, 75, 76, 96, 98, 101, 107, 116, 122, 129, 131, 132, 140, 141, 142, 148, 149, 152, 156, 158, 175, 206, 231], "ad": [4, 5, 8, 13, 14, 16, 17, 18, 20, 22, 25, 28, 29, 30, 33, 37, 39, 43, 46, 48, 49, 50, 54, 55, 56, 57, 58, 61, 63, 69, 71, 73, 76, 82, 89, 90, 92, 93, 94, 96, 99, 101, 104, 105, 107, 110, 116, 118, 120, 121, 122, 127, 131, 132, 134, 136, 137, 140, 141, 142, 144, 146, 152, 160, 166, 185, 190, 199, 204, 206, 220, 222, 223, 226, 238], "adapt": [49, 76, 155, 163, 185, 194, 220, 231], "adb9aa24cbfa8e372c88431d1d99629a": 62, "add": [1, 2, 3, 5, 8, 13, 15, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 33, 34, 37, 38, 40, 42, 43, 45, 52, 69, 70, 76, 81, 82, 89, 94, 96, 101, 104, 105, 106, 108, 115, 118, 120, 122, 125, 126, 128, 129, 131, 132, 134, 135, 136, 140, 144, 152, 154, 156, 165, 167, 169, 172, 185, 188, 192, 193, 195, 198, 199, 200, 202, 204, 206, 209, 210, 222, 225, 229, 231, 232, 233, 234, 239], "add_missing_column": [223, 229], "add_missing_columns_ev": 223, "add_missing_index": [223, 229], "add_missing_indexes_ev": 223, "add_missing_primary_kei": [223, 229], "add_missing_primary_keys_ev": 223, "addact": 108, "addallowedchildsrcdomain": [20, 235], "addallowedconnectdomain": 20, "addallowedfontdomain": 20, "addallowedframedomain": [20, 31], "addallowedimagedomain": 20, "addallowedmediadomain": 20, "addallowedobjectdomain": 20, "addallowedscriptdomain": 20, "addallowedstyledomain": 20, "addargu": 1, "addattende": 106, "addattribut": 132, "addchild": 20, "addcolumn": [37, 40, 136], "addcooki": 20, "adddatatransferprogresslisten": 70, "addev": 22, "addeventlisten": [96, 129], "addfavorit": 229, "addfilecont": 145, "addhead": [20, 30, 31, 45], "addindex": 40, "addinitscript": [25, 229], "addit": [0, 2, 5, 10, 16, 17, 20, 22, 25, 26, 29, 30, 34, 37, 40, 45, 61, 63, 69, 71, 74, 76, 81, 82, 83, 90, 92, 96, 99, 107, 122, 128, 129, 131, 134, 141, 142, 150, 152, 154, 160, 165, 166, 185, 188, 202, 204, 206, 209, 226, 227, 231, 234, 238], "addition": [16, 20, 33, 34, 37, 49, 69, 99, 101, 116, 118, 125, 128, 129, 135, 137, 142, 158, 188, 209, 230, 232, 233], "addjob": 18, "addlink": 147, "addlisten": [22, 126, 138], "addmenuentri": 25, "addmissingcolumnsev": 229, "addmissingindex": 40, "addmissingindicesev": [40, 229], "addmissingindiceslisten": 40, "addmissingprimarykeyev": 229, "addnewfilemenuentri": 229, "addon": 98, "addopt": 1, "addplugin": [2, 229], "addprovid": [17, 22], "address": [20, 22, 27, 44, 46, 52, 76, 81, 106, 108, 110, 150, 156, 161, 185, 192, 212, 233], "addscript": [25, 26, 96, 126, 129, 190, 229, 233], "addsearchcalendar": 106, "addservicelisten": 22, "addstyl": 26, "addtasktyp": [17, 22], "addtocount": 22, "addtransl": [218, 227, 233], "addtwo": 243, "addtwolisten": 22, "addtyp": 37, "adduniqueindex": 37, "addus": [152, 215], "addvendorscript": 233, "adher": 21, "adiscoverablereferenceprovid": 129, "adjust": [2, 3, 16, 17, 22, 40, 46, 95, 130, 139, 140, 154, 167, 189, 194, 210, 213, 222, 223, 225, 229, 230, 231, 232, 234, 238, 243], "adler32": 61, "admin": [5, 8, 10, 14, 16, 17, 19, 20, 22, 28, 34, 42, 46, 48, 49, 52, 61, 62, 81, 82, 83, 88, 90, 103, 113, 122, 134, 135, 140, 146, 149, 151, 153, 161, 174, 178, 179, 181, 182, 190, 192, 206, 209, 231], "admin_audit": [17, 22], "administr": [1, 5, 8, 10, 29, 40, 42, 49, 130, 134, 135, 140, 150, 156, 161, 167, 190, 194, 206, 213, 219, 223, 231], "adminrequir": 181, "adminsect": 134, "adminset": 134, "adopt": [16, 21, 49, 90], "adult": 129, "advanc": [20, 29, 52, 76, 79, 82, 84, 102, 113, 130, 136, 185, 192, 213], "advantag": [10, 19, 28, 44, 151], "adventur": 129, "advertis": [69, 101, 206, 228], "advis": [20, 104, 132, 209], "afefcaf556d98dc7896cca380e181decb609ca44": 15, "affect": [11, 14, 20, 22, 82, 121, 130, 188, 208, 229], "affero": [15, 185], "aforement": 37, "after": [5, 7, 8, 10, 11, 14, 15, 17, 18, 20, 21, 22, 25, 30, 32, 33, 37, 40, 41, 44, 49, 52, 63, 66, 82, 87, 89, 90, 92, 96, 99, 101, 104, 122, 130, 132, 139, 140, 153, 164, 165, 166, 171, 173, 187, 192, 195, 199, 200, 204, 222, 228, 229, 231, 238, 243], "afterappid": [25, 181], "aftercontrol": 30, "afterexcept": 30, "afterward": [8, 32, 46, 49, 63, 89, 90, 94, 95, 149, 228], "ag": [76, 131, 227], "again": [0, 30, 81, 107, 123, 131, 132, 156, 161, 229], "against": [1, 17, 20, 21, 22, 33, 61, 95, 119, 188, 190, 209, 222], "agent": [44, 140], "aggreg": 37, "aggress": 20, "agil": 243, "agnost": [116, 137, 140, 141, 142, 234], "ago": [42, 198], "agpl": [5, 14, 185], "agre": 190, "agreement": 204, "ai": [18, 43, 47, 77, 79, 113, 140, 141, 201, 231], "ai_integration_team": 179, "aim": [14, 79, 96, 115, 185, 204, 206, 218, 240], "aio": 162, "ajax": [209, 232], "alert": [12, 29, 209, 231], "alessandro": 5, "alex": [79, 81, 185], "algorithm": [61, 132, 153], "alia": [40, 104, 210, 231, 232], "alias": [5, 21, 104, 110, 189, 229], "alic": [61, 122, 139, 182], "align": [85, 186, 194, 197, 199, 233], "alik": 21, "aliv": [14, 101, 229], "all": [0, 3, 5, 8, 10, 12, 13, 14, 15, 16, 18, 20, 21, 26, 30, 32, 33, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 48, 50, 51, 53, 56, 57, 58, 59, 60, 61, 63, 64, 66, 67, 68, 69, 70, 72, 73, 76, 77, 79, 81, 82, 85, 89, 90, 93, 94, 95, 96, 97, 98, 101, 104, 105, 106, 108, 110, 115, 118, 119, 121, 122, 125, 126, 128, 129, 130, 132, 135, 139, 140, 141, 142, 144, 149, 150, 151, 152, 153, 156, 158, 159, 160, 165, 166, 169, 170, 171, 172, 178, 181, 186, 187, 188, 189, 190, 192, 194, 198, 199, 200, 202, 204, 205, 209, 210, 211, 215, 222, 226, 227, 228, 229, 230, 231, 232, 233, 235, 236], "allconfig": 232, "allfilenam": 42, "allhead": 112, "allow": [5, 8, 14, 16, 17, 18, 19, 20, 21, 22, 23, 30, 33, 34, 35, 36, 37, 40, 42, 43, 44, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 66, 69, 71, 76, 82, 89, 92, 93, 94, 96, 98, 104, 105, 107, 115, 116, 120, 122, 123, 125, 126, 128, 129, 131, 132, 133, 134, 135, 136, 138, 139, 140, 142, 145, 153, 156, 158, 164, 167, 169, 174, 175, 178, 190, 194, 198, 199, 200, 202, 204, 209, 210, 215, 216, 220, 222, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 240], "allowedapp": 69, "allowenumer": 220, "allowevalscript": [20, 218, 235], "allowevalwasm": 229, "allowinlinescript": 20, "allowinlinestyl": 20, "almost": [35, 76, 132, 140, 190], "alon": [76, 81, 131], "along": [82, 98, 105, 129, 153], "alongsid": 42, "alpha": [5, 16], "alphanumer": 16, "alpin": 152, "alreadi": [16, 17, 22, 33, 40, 48, 49, 70, 73, 82, 90, 96, 97, 101, 107, 125, 126, 134, 156, 179, 185, 188, 189, 190, 195, 202, 204, 209, 220, 222, 228, 229, 231, 233, 234, 240], "also": [0, 5, 8, 10, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 33, 34, 36, 37, 38, 40, 42, 44, 46, 49, 52, 54, 58, 61, 64, 69, 71, 72, 76, 77, 79, 82, 90, 93, 95, 97, 104, 106, 107, 110, 113, 115, 116, 117, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 140, 141, 142, 144, 145, 149, 151, 154, 159, 164, 165, 169, 185, 186, 188, 192, 194, 195, 199, 204, 206, 209, 211, 213, 217, 222, 223, 228, 229, 230, 231, 232, 234, 236, 238, 239, 243], "alt": 226, "alter": [17, 20, 22, 33, 209, 229], "altern": [3, 7, 20, 21, 72, 82, 100, 108, 113, 149], "although": [22, 231], "altogeth": 14, "alwai": [10, 14, 18, 20, 30, 37, 41, 43, 49, 51, 61, 63, 66, 72, 76, 77, 81, 82, 83, 89, 90, 97, 99, 106, 122, 125, 129, 134, 136, 140, 141, 142, 144, 184, 185, 187, 190, 192, 194, 198, 204, 206, 209, 215, 220, 222, 228, 232, 243], "alwaysen": 189, "am": [26, 34, 76, 129, 190, 204], "amass": 37, "ambigu": [81, 90], "amd": [151, 159], "amend": 147, "among": [71, 188, 228], "amount": [38, 61, 97, 122, 204, 209], "an": [1, 2, 3, 4, 5, 6, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 27, 29, 30, 32, 33, 34, 35, 37, 38, 40, 42, 43, 45, 46, 48, 49, 50, 54, 56, 57, 58, 61, 62, 63, 64, 69, 70, 71, 72, 74, 75, 76, 77, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 103, 104, 105, 106, 108, 110, 113, 115, 116, 117, 119, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 135, 137, 138, 139, 141, 142, 145, 146, 147, 149, 153, 154, 155, 156, 159, 161, 162, 164, 165, 166, 167, 169, 170, 173, 175, 178, 179, 180, 181, 185, 187, 188, 189, 190, 192, 194, 195, 198, 199, 202, 203, 204, 206, 209, 213, 220, 221, 222, 223, 227, 228, 229, 231, 232, 233, 234, 235, 236, 238, 240, 243], "analysi": [100, 113, 186, 201, 222, 229, 241], "analyz": [22, 97, 140], "analyzeimag": [140, 233], "anchestor": 217, "android": [43, 70, 72, 75, 79, 101, 131, 201, 203], "andx": 231, "angular": 25, "angularj": [25, 199], "ani": [0, 10, 13, 14, 16, 20, 22, 25, 27, 29, 37, 40, 42, 46, 47, 49, 56, 58, 59, 61, 66, 70, 71, 76, 77, 81, 82, 92, 94, 96, 101, 104, 105, 106, 107, 110, 112, 115, 116, 120, 121, 126, 129, 132, 133, 135, 137, 140, 141, 142, 146, 147, 149, 150, 151, 152, 153, 154, 158, 159, 166, 169, 176, 179, 188, 190, 193, 199, 202, 204, 206, 209, 210, 217, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 236, 240], "anim": [27, 194, 199], "anit": 82, "annot": [20, 28, 34, 37, 49, 115, 128, 131, 209, 231, 238], "annotating_cod": 49, "announc": [64, 233, 234, 235], "announcementcent": 64, "annoy": 209, "anon": 133, "anonratelimit": 20, "anonratethrottl": 20, "anonym": [20, 44, 61, 186], "anoth": [10, 14, 17, 20, 21, 22, 25, 40, 42, 44, 58, 69, 76, 82, 92, 97, 104, 105, 110, 120, 122, 140, 148, 150, 190, 209, 220, 233], "anotherexport": 120, "ansi": [3, 156], "answer": [42, 70, 94, 140, 162, 204, 209, 232], "anti": [21, 122], "anymor": [14, 25, 61, 96, 130, 193, 196, 210, 211, 215, 216, 217, 221, 223, 227, 234], "anyon": [20, 139, 190, 209], "anyrequest": 148, "anyth": [0, 7, 20, 21, 22, 32, 43, 81, 82, 85, 110, 115, 128, 129, 190, 204, 221, 231, 232, 233], "anywai": [40, 223], "anywher": [14, 28, 82, 98, 171], "apach": [5, 189, 204], "apache2": 189, "apart": [33, 42, 122, 232], "apcu": [19, 89], "api": [0, 1, 3, 5, 11, 14, 17, 19, 20, 21, 22, 25, 28, 33, 39, 41, 42, 43, 44, 60, 62, 63, 64, 66, 70, 73, 74, 84, 87, 91, 92, 94, 95, 97, 102, 106, 109, 112, 113, 121, 123, 125, 132, 139, 150, 151, 153, 154, 158, 161, 163, 164, 165, 168, 169, 170, 171, 173, 174, 175, 177, 179, 180, 181, 183, 185, 186, 187, 188, 197, 201, 206, 209, 211, 212, 218, 237, 238, 241], "apicontrol": [21, 33, 43, 49, 131], "apiexcept": 187, "apirequest": [20, 44, 46, 48, 50, 51, 52, 53, 54, 56, 57, 58, 59, 101, 129, 131], "apirout": [20, 33, 43, 190, 230], "apiv2": 69, "apk": 152, "app": [1, 2, 3, 8, 9, 12, 15, 19, 20, 21, 23, 26, 27, 29, 30, 31, 32, 33, 35, 37, 38, 39, 40, 41, 42, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 57, 59, 61, 64, 69, 70, 71, 72, 73, 75, 76, 77, 79, 80, 82, 85, 87, 88, 90, 93, 94, 95, 96, 99, 100, 101, 102, 104, 106, 107, 108, 110, 112, 113, 116, 117, 118, 119, 122, 124, 126, 128, 130, 131, 133, 134, 135, 137, 139, 140, 141, 142, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 156, 162, 163, 164, 165, 167, 169, 170, 171, 172, 173, 174, 175, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 192, 193, 194, 196, 197, 198, 201, 203, 204, 207, 208, 209, 210, 211, 212, 214, 215, 217, 218, 220, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 235, 236, 239, 240, 243], "app_api": [149, 153, 154, 156, 164, 165, 166, 168, 169, 170, 171, 173, 174, 175, 177, 178, 179, 180, 181, 182], "app_api_ex_app": 174, "app_api_id": 174, "app_api_proxy_url_prefix": 154, "app_api_router_bas": 154, "app_config": 150, "app_display_nam": 165, "app_host": 165, "app_id": [25, 31, 43, 49, 96, 110, 124, 126, 129, 132, 137, 140, 141, 142, 145, 154, 165, 166, 168, 177], "app_nam": 15, "app_path": 7, "app_persistent_storag": [154, 165], "app_port": 165, "app_prefer": 150, "app_private_kei": 15, "app_public_cert": 15, "app_public_crt": 15, "app_python_skeleton": 165, "app_secret": 165, "app_vers": 165, "appapi": [17, 22, 150, 151, 152, 154, 155, 159, 160, 161, 162, 163, 165, 166, 167, 171, 174, 176, 178, 179, 180, 181, 183, 190], "appapiauth": [150, 151, 153, 170, 172, 183], "appconfig": [91, 99, 113, 114, 172, 179, 183, 216, 218, 230, 232, 234], "appconfig_ex": 171, "appdata": [28, 39, 237], "appdomain": 148, "appear": [13, 29, 43, 49, 69, 76, 81, 82, 129, 131, 134, 190, 234, 243], "append": [20, 42, 103, 129, 181, 240], "appendchild": 126, "appfetch": 232, "appframework": [0, 6, 18, 20, 21, 25, 30, 31, 33, 34, 35, 36, 37, 49, 85, 91, 96, 97, 99, 101, 104, 110, 116, 124, 125, 126, 127, 128, 131, 132, 134, 137, 140, 141, 142, 143, 145, 147, 190, 209, 211, 215, 218, 221, 227, 228, 229, 230, 231, 232, 233, 235, 240], "appid": [1, 8, 42, 56, 57, 59, 87, 89, 93, 94, 131, 132, 137, 140, 141, 142, 161, 165, 167, 168, 170, 175, 177, 186, 235], "appinfo": [0, 1, 5, 6, 7, 10, 16, 20, 21, 22, 25, 30, 31, 32, 33, 34, 36, 37, 41, 43, 49, 69, 89, 96, 99, 101, 104, 108, 110, 116, 120, 124, 126, 129, 131, 132, 135, 137, 140, 141, 142, 145, 147, 151, 154, 156, 165, 167, 189, 217, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 234, 240], "appl": [79, 82, 107], "appli": [3, 16, 17, 20, 22, 37, 40, 81, 85, 89, 98, 107, 132, 153, 154, 156, 164, 185, 188, 189, 190, 198, 199, 232, 233, 236], "applic": [3, 4, 5, 10, 12, 14, 15, 17, 18, 19, 20, 21, 22, 25, 29, 30, 31, 32, 34, 36, 41, 42, 43, 44, 46, 47, 49, 61, 71, 72, 76, 79, 87, 92, 94, 95, 96, 97, 98, 99, 101, 104, 105, 106, 107, 110, 112, 116, 122, 124, 125, 126, 129, 131, 132, 135, 137, 138, 139, 140, 141, 142, 145, 147, 150, 152, 154, 156, 166, 179, 183, 185, 188, 193, 194, 204, 209, 229, 232, 233, 234, 240, 243], "apply2fil": 82, "appmanag": 232, "appnam": [15, 18, 20, 21, 33, 35, 36, 126, 131, 190, 227], "appnavigationentryutil": 199, "appoint": [76, 107, 124], "apppassword": 44, "approach": [10, 19, 21, 22, 37, 96, 107, 122, 126, 129, 131, 166, 192, 223], "approot": 186, "appropri": [0, 13, 20, 21, 25, 38, 52, 76, 90, 107, 110, 118, 156, 188, 222, 231], "approv": [14, 15, 185], "approxim": 236, "apps_path": 7, "appset": 229, "appstor": [7, 13, 15, 155, 232], "appstore_sign_dir": 15, "appstore_token": 15, "appswebroot": 218, "apptoken": [44, 60], "apt": [8, 192], "ar": [0, 1, 2, 3, 5, 6, 8, 10, 12, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 27, 29, 32, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44, 46, 49, 51, 52, 56, 61, 63, 64, 66, 69, 70, 71, 72, 74, 76, 77, 79, 82, 83, 85, 87, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 104, 105, 106, 107, 108, 110, 112, 115, 116, 117, 119, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 140, 141, 142, 144, 149, 150, 151, 152, 153, 154, 156, 158, 160, 161, 165, 166, 167, 168, 169, 170, 171, 173, 175, 177, 178, 179, 182, 185, 186, 188, 189, 190, 192, 193, 194, 195, 196, 198, 199, 200, 202, 204, 206, 209, 210, 211, 213, 215, 217, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 234, 235, 238, 239, 240, 242, 243], "arbitrari": [29, 90, 107, 140, 142, 209], "arbitrarili": 140, "arch": 152, "architect": 150, "architectur": [4, 122, 132, 152, 153, 154, 160, 201, 241], "archiv": [5, 15, 17, 22, 61, 167, 232], "area": [5, 77, 80, 193, 194, 199, 204], "areavatarsen": 216, "arg": [42, 140, 152, 227], "argc": 15, "argument": [0, 4, 17, 18, 20, 21, 22, 29, 30, 40, 42, 49, 52, 53, 73, 82, 85, 90, 92, 101, 106, 107, 129, 130, 132, 140, 141, 142, 152, 175, 186, 192, 209, 220, 221, 222, 229, 231, 233, 234, 243], "argument_hash": 122, "argument_nam": 175, "argv": 15, "aris": 162, "around": [12, 42, 76, 115, 122, 123, 132, 206, 222, 228], "arr": 186, "arrai": [7, 10, 18, 19, 20, 21, 22, 23, 25, 26, 28, 30, 33, 34, 36, 40, 43, 46, 49, 52, 56, 57, 58, 59, 60, 61, 69, 70, 90, 92, 93, 94, 96, 98, 99, 101, 104, 105, 107, 108, 110, 116, 124, 126, 129, 131, 132, 134, 136, 138, 140, 141, 145, 169, 170, 175, 178, 181, 189, 192, 209, 227, 228, 232, 233, 234, 240], "arrang": [34, 42, 134], "array_filt": 146, "array_intersect": 69, "array_map": [104, 107, 146], "array_reduc": 148, "array_walk_recurs": 20, "arraylist": 70, "arrow": [199, 200], "articl": [82, 192], "articles_api": 33, "articlesapicontrol": 33, "artifact": [15, 16], "artifici": 140, "asarrai": 104, "asc": [69, 152], "ascend": [34, 66, 124, 132, 134], "ascii": [5, 42], "ask": [1, 3, 5, 12, 14, 20, 30, 42, 44, 52, 70, 79, 101, 115, 119, 122, 129, 159, 161, 163, 185, 188, 190, 201, 202, 204, 205, 209, 233], "aspect": [22, 42], "assembl": 21, "assembli": 28, "assert": 192, "assertequ": [187, 243], "assess": 188, "asset": [3, 101, 115, 149, 209, 231], "asset_nam": 15, "assign": [16, 17, 20, 21, 22, 37, 56, 57, 105, 115, 121, 185, 204, 218], "assigneduserid": 232, "assist": [43, 45, 72, 75, 84, 94, 113, 140, 156], "associ": [17, 22, 76, 92, 129, 140, 141, 152, 169, 195], "assum": [0, 10, 22, 33, 37, 44, 63, 82, 107, 140, 175, 194, 209], "assur": [37, 44], "asxml": 20, "async": [126, 129], "asynccommandbu": 232, "asynchron": [140, 141, 142, 169], "atempl": 101, "atom": [5, 37, 228], "atomicretri": [97, 228], "attach": [15, 25, 40, 76, 86, 110, 113, 154, 159, 160, 171, 190], "attach_to_releas": 15, "attachinlin": 103, "attack": [14, 20, 190, 209], "attempt": [20, 137, 156], "attent": [76, 204, 221], "attitud": 188, "attract": 199, "attribut": [5, 10, 20, 29, 33, 34, 40, 45, 49, 61, 64, 85, 99, 107, 115, 128, 129, 131, 133, 164, 170, 184, 185, 199, 209, 223, 228, 230, 231, 233, 238], "audienc": [81, 192], "audio": [20, 43, 137, 139, 140], "audio2text": [43, 140], "audiotoimag": 140, "audiototext": 140, "audiototextsubtitl": 140, "audit": [14, 28, 209], "augment": 204, "auth": [5, 20, 46, 61, 88, 113, 154, 165, 178, 192, 208, 220, 231], "authent": [6, 10, 30, 32, 44, 45, 54, 61, 70, 71, 82, 86, 101, 113, 115, 119, 129, 144, 150, 155, 156, 158, 160, 161, 162, 163, 165, 166, 170, 173, 176, 177, 183, 192, 201, 215, 220, 227, 229, 231, 233], "authenticatorassertionresponsevalid": 192, "authenticatorattestationresponsevalid": 192, "authenticod": 82, "authf": 5, "authfail": 128, "authinit": 221, "author": [5, 10, 14, 15, 20, 25, 33, 34, 37, 42, 44, 46, 61, 129, 131, 146, 164, 185, 190, 202, 206, 223, 240], "author_api": [20, 33, 131], "authorapi": 20, "authorapicontrol": [20, 33, 131], "authorcontrol": [20, 21, 33], "authordao": 37, "authorit": [89, 228], "authorizationjwt": 192, "authorizedadminset": [34, 231], "authormapp": [21, 37], "authornamecount": 37, "authorservic": [21, 29, 36, 42], "authorstorag": 41, "authorstoragetest": 41, "authorurl": 25, "authpublicsharecontrol": 128, "authsucceed": 128, "auto": [37, 45, 89, 116, 121, 122, 227], "autocomplet": [46, 210], "autocompleteev": [46, 210], "autocompletefilterev": 210, "autoincr": 37, "autolink": 129, "autoload": [0, 3, 40, 41, 100, 113, 122, 217, 228, 233, 238], "autoloadercheck": 238, "autom": [1, 11, 42, 54, 95, 151, 152, 167, 185, 201], "automat": [1, 8, 15, 16, 20, 23, 25, 27, 28, 29, 37, 42, 49, 54, 61, 67, 69, 71, 76, 79, 82, 89, 90, 93, 94, 96, 97, 101, 107, 115, 116, 119, 122, 127, 129, 130, 134, 139, 140, 149, 152, 154, 158, 165, 167, 178, 181, 185, 186, 187, 190, 193, 194, 196, 198, 209, 210, 211, 215, 222, 227, 228, 231, 232, 234, 235, 243], "automkcol": 61, "autos": 230, "autosubmit": 227, "autotest": 243, "autowir": 21, "auxiliari": 82, "avail": [1, 5, 6, 8, 16, 17, 18, 20, 21, 25, 26, 27, 28, 34, 40, 42, 45, 46, 48, 49, 54, 61, 62, 63, 67, 68, 69, 72, 74, 76, 82, 83, 87, 89, 90, 92, 94, 95, 96, 98, 99, 101, 104, 105, 106, 110, 115, 116, 119, 120, 122, 125, 126, 129, 130, 132, 135, 138, 140, 141, 142, 149, 151, 152, 153, 154, 157, 159, 160, 161, 166, 174, 189, 192, 197, 198, 204, 215, 217, 229, 231, 233, 234, 236, 240, 243], "avatar": [35, 69, 78, 96, 108, 129, 132], "avatarmanag": 232, "averag": 140, "avoid": [3, 12, 18, 19, 20, 21, 38, 40, 49, 76, 81, 82, 85, 90, 92, 93, 96, 122, 125, 145, 148, 150, 184, 185, 189, 190, 194, 199, 206, 209, 211, 232, 240], "awai": [18, 32, 54, 122, 138, 210, 226, 229], "await": [61, 129, 185], "awar": [10, 107, 122, 135, 194, 209], "awesom": [116, 137, 140, 141, 142], "awk": [62, 125, 152], "axio": [129, 154, 190], "b": [3, 15, 103, 154, 188, 192, 209, 210], "b38e": 61, "b42f6819007f00f88e364fd4036a9c25bf357dd4": 152, "b5e6f6": 194, "babel": 115, "babelrc": 16, "back": [14, 17, 19, 22, 37, 40, 43, 49, 60, 76, 90, 95, 97, 99, 101, 106, 107, 108, 115, 122, 129, 156, 183, 190, 201, 241], "backbon": [219, 235], "backend": [17, 22, 28, 32, 35, 38, 46, 55, 56, 57, 76, 87, 104, 107, 119, 120, 129, 131, 139, 151, 155, 190, 228, 229, 231, 232, 233, 235, 236, 240, 243], "backend_caldav": 231, "backendcap": 46, "backendwis": 64, "background": [5, 17, 20, 22, 28, 42, 46, 56, 76, 90, 102, 106, 113, 122, 130, 137, 140, 141, 142, 166, 179, 184, 198, 201, 227, 231, 233], "backgroundcolor": 27, "backgroundjob": [18, 21, 134, 215, 227, 228, 230, 232, 234], "backport": [12, 16, 185, 233, 238], "backslash": 209, "backtrac": 125, "backup": [12, 45, 61, 145], "backward": [21, 22, 37, 43, 49, 63, 69, 115, 131, 144, 221, 222, 228, 229, 231, 232], "bad": [14, 20, 30, 42, 49, 50, 54, 57, 58, 59, 122, 168, 173, 177, 194], "badg": 76, "badrequestexcept": 49, "bakerycontrol": 20, "balanc": 122, "bamarni": 3, "ban": 14, "bandwidth": 62, "bantu": 232, "bar": [20, 21, 42, 62, 99, 179, 186, 187, 188, 190, 194, 197, 240], "barcontrol": 240, "bare": 101, "barservic": 21, "base": [1, 8, 10, 18, 21, 22, 25, 28, 32, 37, 42, 48, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 70, 77, 82, 92, 93, 94, 96, 101, 102, 105, 107, 112, 113, 122, 132, 134, 151, 152, 154, 166, 170, 171, 185, 190, 200, 221, 223, 227, 229, 231, 232, 234, 235, 236, 240], "base64": [49, 164], "base64_decod": 48, "base_url": 170, "baselin": [77, 95, 194], "basenam": [69, 219], "baseurl": 25, "bash": [1, 8, 62, 82, 154, 192], "basi": [10, 20, 44, 188, 233], "basic": [15, 26, 32, 33, 37, 40, 46, 64, 65, 70, 72, 75, 79, 82, 86, 90, 95, 97, 101, 106, 113, 115, 128, 131, 134, 140, 145, 147, 151, 154, 158, 160, 165, 189, 197, 201, 209], "basicsearch": [66, 104], "bat": 82, "batch": 152, "batchupd": 20, "battl": 129, "baz": [99, 179], "bazinga": 20, "bdebc0": 194, "bearer": [46, 70], "beautifi": 69, "becam": 221, "becaus": [2, 5, 16, 18, 19, 20, 21, 29, 37, 38, 40, 42, 48, 49, 62, 82, 87, 89, 97, 101, 104, 110, 122, 129, 130, 140, 156, 190, 222, 224, 227, 228], "becom": [2, 14, 21, 33, 37, 49, 82, 122, 132, 166, 204, 221, 230], "bee": [52, 231], "been": [3, 7, 10, 16, 17, 20, 22, 26, 29, 30, 40, 42, 48, 49, 61, 63, 70, 73, 77, 81, 82, 89, 96, 101, 107, 115, 116, 118, 126, 127, 129, 137, 140, 141, 142, 144, 185, 188, 194, 199, 202, 204, 210, 213, 220, 223, 225, 227, 228, 229, 230, 231, 232, 234, 235], "befor": [0, 5, 10, 11, 17, 20, 21, 22, 30, 32, 40, 42, 44, 48, 49, 50, 69, 70, 81, 90, 93, 94, 95, 101, 104, 115, 121, 122, 129, 130, 131, 133, 135, 140, 141, 142, 148, 165, 167, 189, 190, 199, 202, 203, 204, 209, 211, 221, 222, 223, 228, 229, 231, 232, 235, 238, 239, 240], "beforecontrol": 30, "beforegettemplatesev": 233, "beforegroupdeletedev": 229, "beforehand": 234, "beforemessageloggedev": 29, "beforemessages": 220, "beforeoutput": 30, "beforepasswordupdatedev": 229, "beforepreviewfetchedev": [229, 232], "beforesabrepubliclyloadedev": 227, "beforesharecreatedev": 229, "beforesharedeletedev": 229, "beforetemplaterenderedev": [221, 229], "beforeuseraddedev": 229, "beforeuserdeletedev": [0, 229], "beforeuseridunassignedev": 232, "beforeuserloggedinev": 220, "beforeuserremovedev": 229, "begin": [0, 10, 32, 37, 107, 145, 190], "beginn": 190, "begintransact": 37, "behalf": 20, "behavior": [2, 20, 21, 37, 61, 92, 93, 199, 236], "behaviour": [101, 152], "behind": [10, 29, 101, 103, 222], "being": [8, 14, 17, 20, 21, 22, 25, 30, 32, 33, 37, 38, 40, 76, 85, 97, 98, 101, 110, 115, 153, 154, 175, 209, 233, 234, 236], "belong": [17, 22, 35, 50, 69, 79, 89, 101, 107, 122, 190, 204], "below": [3, 5, 8, 20, 21, 37, 46, 57, 58, 61, 64, 69, 82, 99, 101, 106, 107, 110, 134, 140, 141, 142, 144, 154, 185, 189, 190, 225, 229, 231, 232, 234], "bem": 184, "benefici": 96, "benefit": [3, 20, 21, 76, 128, 204, 213], "benjamin": 15, "berlin": 106, "bernhard": 5, "beschreibung": 5, "besid": 236, "best": [16, 42, 45, 113, 114, 122, 130, 151, 152, 185, 188, 204, 206, 223, 233], "beta": [16, 234], "better": [0, 14, 16, 17, 20, 22, 42, 49, 73, 76, 79, 93, 115, 125, 184, 185, 186, 209, 227], "between": [0, 3, 17, 18, 20, 22, 32, 34, 38, 40, 42, 49, 63, 82, 90, 98, 101, 110, 131, 134, 140, 141, 142, 151, 152, 153, 154, 160, 164, 165, 190, 199, 200, 221, 222, 233, 239], "bewar": [18, 61, 229], "bf7900": 194, "bf_prev": 243, "bg": 8, "bg_bg": 8, "big": [21, 110, 122, 125, 132, 185], "bigger": [79, 122, 185], "biggest": 222, "bighostingapp": 110, "bigint": [37, 40, 136], "bin": [3, 15, 62, 82, 152, 192, 229], "binari": [37, 62, 63, 64, 82, 152], "bind": [165, 184, 186, 219, 222, 236], "bindparam": 222, "bindvalu": 222, "biographi": 124, "birth": [76, 231], "bit": [22, 35, 42, 63, 107, 122, 136, 228, 236], "bitflag": [48, 90, 93], "bla": [64, 198], "blabla": [87, 198], "blacklist_files_regex": [218, 231], "blank": 20, "blazingli": 96, "blazinglyfast": 96, "blizzz": 105, "blob": [37, 49, 64, 90, 152, 227, 243], "block": [14, 17, 20, 22, 25, 40, 42, 76, 93, 122, 137, 140, 141, 142, 161, 184, 185, 186, 187, 190, 194], "blog": [97, 118], "blogspot": 243, "blue": 187, "blueprint": [82, 190], "blur": 194, "blurhash": 61, "board": [42, 76], "boardid": 132, "bob": [122, 139, 182], "bodi": [43, 46, 49, 61, 65, 76, 77, 103, 112, 126, 129, 170, 193, 194, 198, 229, 231], "boil": 192, "boilerpl": [21, 101], "bold": [77, 194], "book": [22, 76], "bookmark": [20, 94, 126, 190, 209], "bool": [20, 25, 29, 31, 49, 53, 56, 58, 61, 90, 93, 96, 101, 104, 107, 110, 121, 125, 126, 128, 129, 140, 228, 229], "boolean": [20, 25, 37, 51, 52, 56, 66, 70, 73, 93, 96, 107, 116, 129, 132, 137, 140, 141, 142, 144, 186, 228, 231, 233, 234], "boot": [21, 25, 30, 49, 96, 101, 104, 106, 116, 124, 125, 126, 132, 137, 140, 141, 142, 145, 147, 210], "bootstrap": [3, 4, 6, 21, 22, 25, 30, 32, 41, 49, 90, 96, 99, 101, 104, 110, 116, 124, 126, 132, 135, 137, 140, 141, 142, 145, 147, 154, 192, 201, 227, 230, 231, 233], "borchardt": 5, "border": [46, 76, 78, 194, 200, 233], "bossi": 81, "bot": [8, 14, 172, 183, 188], "both": [3, 18, 20, 21, 25, 29, 33, 34, 40, 42, 52, 61, 69, 90, 94, 101, 104, 106, 107, 119, 123, 129, 131, 132, 134, 135, 137, 140, 166, 190, 194, 232, 234, 235], "bottleneck": 19, "bottom": [5, 15, 34, 43, 76, 96, 115, 125, 134, 199], "bound": 56, "boundari": 62, "boundary_": 62, "box": [20, 76, 194, 199], "br": 195, "brace": [20, 33, 185], "bracket": 42, "brahmer": 15, "branch": [10, 40, 72, 79, 82, 95, 125, 149, 185, 189, 191, 202, 204, 233, 238], "brand": 79, "break": [3, 14, 16, 21, 42, 47, 49, 85, 89, 97, 106, 123, 131, 135, 186, 187, 188, 190, 206, 210, 220, 222, 223, 227, 229, 231, 233, 240], "breakag": 211, "breakpoint": 194, "breviti": 101, "brew": 82, "brief": [20, 49, 81, 162], "briefli": [20, 151], "bright": [27, 46, 194, 231], "brighter": 194, "brightest": 194, "brilliant": 14, "bring": [150, 204, 221, 223, 227], "broad": [22, 37, 93], "broadcast": [199, 211], "broaden": 233, "brochur": 81, "broken": [49, 135, 185, 187], "broker": 139, "brown": 48, "brows": [45, 47, 131, 206], "browselink": 42, "browser": [13, 20, 25, 44, 76, 77, 79, 96, 98, 101, 131, 132, 135, 189, 190, 192, 209, 220, 223, 229], "browser_download_url": 15, "browserifi": 234, "bruteforc": [153, 178, 232], "bruteforce_protect": 178, "bruteforceprotect": 20, "bruteforceset": 8, "btn": 184, "btoa": 231, "bu": [12, 73, 227, 232, 234], "bubbl": [78, 129], "bucket": [90, 192, 215], "budget": 129, "bug": [5, 12, 14, 16, 49, 75, 90, 115, 129, 185, 188, 194, 202, 203, 231], "bug_triag": 204, "bugtrack": [201, 208], "build": [3, 5, 14, 15, 16, 17, 20, 21, 22, 42, 49, 61, 72, 83, 100, 104, 106, 113, 115, 125, 129, 132, 149, 151, 152, 154, 191, 199, 201, 232, 233, 236, 238, 241], "build_and_publish": 15, "build_owncloud_osx_bundl": 82, "buildappnamespac": 211, "builder": [104, 106, 190, 222, 224, 227, 229, 231], "buildnotexistingfilenam": 234, "built": [14, 19, 20, 21, 25, 49, 63, 79, 98, 105, 106, 107, 110, 112, 113, 114, 125, 126, 132, 133, 134, 140, 165, 175, 185, 190, 209, 223, 232], "bulk": [61, 65, 75, 94, 108, 148], "bulk_upload_request_": 62, "bulkloaddataforcollect": 148, "bullet": 197, "bump": [16, 115, 204], "bundl": [10, 16, 70, 82, 105, 115, 152, 190, 217, 220, 233, 235], "bundler": [118, 186], "button": [5, 13, 25, 42, 46, 77, 78, 82, 87, 96, 129, 134, 184, 193, 194, 197, 198, 200, 201, 226, 231, 233, 243], "button__icon": 184, "bye": 187, "bypass": [8, 20, 152, 164, 208], "byte": [61, 107], "bzr": 5, "c": [3, 8, 21, 36, 41, 61, 62, 64, 81, 82, 152, 189, 198, 199, 221, 243], "c90000": 194, "ca": [10, 82, 152], "cach": [20, 23, 28, 38, 41, 60, 82, 90, 93, 98, 100, 101, 113, 121, 148, 151, 152, 189, 201, 228, 233, 237, 243], "cachedcalendarobjectcreatedev": 221, "cachedcalendarobjectdeletedev": 221, "cachedcalendarobjectupdatedev": 221, "cachedpictur": 19, "cacheentryremovedev": 228, "cachefactori": 19, "cachejail": 236, "cachepermissionsmask": 236, "cal": 64, "calc": 194, "calcul": [96, 107], "calculate_hi": 20, "caldav": [29, 64, 106, 221, 231], "caldavbackend": 221, "calendar": [42, 69, 76, 80, 109, 111, 113, 128, 176, 190, 210, 224, 231, 232], "calendar_todo": 69, "calendarcreatedev": 221, "calendardata": [107, 227], "calendardeletedev": 221, "calendarmanag": [106, 232], "calendarobject": 107, "calendarobjectcreatedev": 221, "calendarobjectdeletedev": 221, "calendarobjectupdatedev": 221, "calendarplugin": 107, "calendarprovid": 107, "calendarpublishedev": 221, "calendarqueri": 107, "calendarreadwrit": 107, "calendarresourcebackendmanag": 232, "calendarroombackendmanag": 232, "calendarserv": 64, "calendarshareupdatedev": 221, "calendarunpublishedev": 221, "calendarupdatedev": 221, "calendaruri": [106, 107], "call": [0, 1, 2, 8, 12, 19, 20, 21, 22, 25, 26, 29, 30, 33, 37, 38, 41, 42, 44, 45, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 69, 70, 76, 77, 81, 82, 86, 87, 89, 92, 93, 94, 96, 104, 105, 107, 108, 113, 123, 124, 125, 126, 129, 130, 132, 136, 138, 140, 143, 144, 147, 148, 153, 166, 170, 186, 188, 190, 199, 204, 209, 221, 222, 224, 226, 227, 229, 231, 232, 233, 243], "callabl": [0, 21, 22, 140, 209, 240], "callback": [20, 25, 49, 96, 129, 140, 186, 213], "callcheck": [209, 218], "calledanonym": 133, "calledbyus": 133, "caller": [107, 232], "callhttpapi": 186, "camel": [186, 227], "camelcas": 33, "can": [0, 1, 2, 3, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 46, 48, 49, 51, 52, 54, 56, 57, 58, 61, 62, 63, 66, 67, 69, 71, 72, 73, 76, 77, 79, 80, 81, 82, 83, 85, 87, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 103, 104, 105, 106, 107, 108, 110, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 158, 160, 161, 162, 164, 165, 166, 167, 170, 171, 173, 174, 178, 179, 185, 186, 187, 188, 189, 190, 192, 194, 196, 198, 199, 200, 202, 204, 206, 209, 211, 213, 215, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 238, 239, 240, 243], "canaccessresourc": 126, "cancel": [70, 107, 126, 129, 140], "canceltask": 140, "canchangeemail": 233, "canchangemail": 69, "canchangestream": 69, "candetectlanguag": 116, "candid": [16, 90], "canexecut": 233, "canimport": 145, "cannot": [10, 17, 22, 42, 49, 63, 81, 90, 93, 94, 97, 107, 116, 129, 137, 140, 141, 142, 192, 193, 206, 219, 233], "cant": 38, "cap": [101, 192], "capabilitiesmanag": 232, "capabl": [0, 17, 22, 45, 54, 61, 75, 90, 110, 129, 139, 150, 160, 173, 192], "capac": 160, "capit": [81, 186], "cappedmemorycach": 19, "caption": [37, 77], "captur": 29, "card": [22, 64, 77, 78, 126, 190, 233], "cardcreatedev": 221, "carddav": [5, 64, 221], "carddavbackend": 221, "carddeletedev": 221, "cardid": 132, "cardupdatedev": 221, "care": [3, 15, 20, 25, 44, 79, 115, 129, 134, 187, 190, 204, 209, 240], "carefulli": [0, 16, 20, 45, 199, 209], "carri": [37, 46, 76, 101, 133, 166, 190], "case": [10, 14, 16, 18, 20, 21, 22, 25, 29, 33, 34, 36, 37, 42, 44, 46, 49, 54, 56, 57, 58, 60, 61, 76, 77, 81, 85, 89, 90, 96, 97, 98, 101, 104, 105, 106, 107, 115, 116, 119, 123, 128, 129, 131, 132, 133, 134, 135, 137, 140, 141, 142, 145, 148, 149, 154, 158, 160, 161, 165, 166, 185, 187, 188, 189, 198, 199, 200, 202, 204, 206, 215, 222, 226, 227, 228, 229, 230, 231, 232, 233], "caseinsensit": 93, "cast": [36, 37, 210], "cat": [62, 132], "catch": [20, 29, 36, 37, 38, 41, 44, 49, 87, 97, 112, 129, 133, 140, 141, 142, 145, 234], "catchabl": 233, "categori": [5, 76, 85, 134, 135, 186, 204], "categoryfetch": 232, "caught": [49, 97, 104, 228], "caus": [8, 14, 44, 49, 90, 97, 122, 130, 162, 188, 199, 222, 231, 243], "causal": 122, "caution": 188, "caveat": 186, "ccbbebdccc73a042b1a2799f673fbabadc783284cc288e4f1a1eacb74e3d": 10, "cccccc": 194, "cd": [7, 8, 15, 82, 125, 149, 189, 192], "cdata": 5, "censormiddlewar": 30, "center": [64, 194, 200], "central": [21, 92, 107, 116, 122, 137, 140, 141, 142], "cert": [15, 152, 192], "cert_dir": 15, "certain": [0, 18, 20, 37, 44, 45, 70, 76, 82, 97, 105, 107, 130, 207], "certainli": 149, "certif": [10, 15, 44, 82, 152, 161, 165, 192], "cf26dff4be60": 106, "ch": 123, "chain": [20, 29], "challeng": [20, 144], "chanc": [14, 42, 63, 115, 222], "chang": [0, 3, 5, 7, 10, 11, 14, 17, 20, 21, 22, 29, 37, 39, 46, 47, 49, 51, 61, 73, 81, 82, 85, 90, 93, 95, 96, 98, 99, 101, 104, 107, 118, 121, 122, 127, 129, 131, 132, 138, 140, 144, 151, 153, 154, 156, 167, 168, 179, 185, 188, 189, 190, 192, 196, 199, 202, 208, 209, 211, 212, 214, 235, 238, 241], "changelog": [4, 16, 115, 222, 230, 234], "changescheck": 234, "changeschema": [40, 136], "changeton": 140, "changeus": [22, 229], "channel": [16, 139], "chapter": [0, 42], "char": [37, 210], "charact": [5, 20, 37, 42, 70, 81, 89, 93, 123, 129, 185, 231], "charg": 70, "charset": 107, "chat": [46, 76, 84, 96, 113, 124, 139, 140, 199, 233], "chatti": 81, "chatwithtool": 140, "cheaper": 108, "cheat": 65, "check": [3, 5, 6, 8, 10, 12, 15, 17, 18, 20, 22, 25, 26, 30, 35, 37, 38, 41, 45, 49, 60, 61, 63, 73, 81, 85, 86, 90, 94, 95, 96, 99, 105, 106, 110, 113, 114, 115, 121, 122, 123, 127, 131, 132, 133, 134, 140, 141, 142, 145, 148, 152, 153, 161, 165, 170, 179, 186, 190, 192, 195, 198, 199, 209, 222, 223, 228, 229, 231, 232, 233, 234, 238, 239], "check1": 200, "check_missing_column": [223, 229], "check_missing_columns_ev": 229, "check_missing_index": [223, 229], "check_missing_indexes_ev": [223, 229], "check_missing_primary_kei": [223, 229], "check_missing_primary_keys_ev": [223, 229], "checkadminus": [209, 235], "checkappen": 218, "checkbox": [25, 78, 134, 158, 179, 197, 198, 200, 226], "checker": [20, 131], "checkloggedin": 209, "checkmark": [199, 200, 233], "checkout": [15, 95, 174, 188], "checkserverresponsetrait": [135, 232], "checksharetoken": 129, "checksubadminus": 209, "checksum": [61, 62, 66], "chees": 112, "cherri": 188, "child": [61, 107, 209, 215], "childexist": 107, "childnam": 107, "children": [2, 43, 107, 140, 148], "childrencount": 64, "chip": [77, 78, 194, 231], "chmod": [82, 152, 189, 192, 243], "choic": [3, 8, 14, 18, 107, 129, 130, 141, 142], "choos": [22, 38, 48, 76, 79, 82, 107, 122, 126, 129, 179, 190, 209, 231], "chose": [16, 35, 128], "chosen": [20, 204], "chown": [82, 152, 189], "christin": 81, "christoph": 5, "chrome": [98, 192, 217, 243], "chroot": 236, "chunk": [61, 65, 75, 132, 204], "chunk1": 63, "chunk2": 63, "ci": [3, 8, 16, 42, 125, 149, 152, 165, 167, 185, 210, 222], "circl": [5, 46, 48, 52, 61, 230], "circleid": 52, "circumst": 82, "citi": 42, "claim": 185, "clang": 82, "clarif": [110, 231, 233], "clarifi": 232, "class": [2, 3, 4, 5, 7, 17, 18, 19, 20, 25, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 49, 61, 69, 70, 72, 85, 89, 90, 92, 94, 95, 96, 97, 103, 104, 105, 106, 108, 109, 112, 113, 116, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 184, 185, 187, 192, 193, 195, 197, 198, 199, 200, 209, 213, 215, 217, 220, 221, 222, 223, 229, 231, 232, 233, 234, 235, 238, 243], "class1": 20, "class2": [20, 21], "classic": [20, 97, 190], "classif": 5, "classifi": 185, "classload": [20, 100, 113, 127], "classnam": [228, 235], "classpath": 217, "claus": 210, "clean": [14, 21, 41, 129, 187, 188, 243], "cleanup": [22, 60, 215], "clear": [17, 18, 20, 22, 29, 45, 76, 77, 79, 90, 93, 150, 185, 194, 199, 204, 224, 232, 239], "clearat": 54, "clearbackend": 233, "clearcach": [90, 93, 121], "clearcacheal": 93, "clearer": 76, "clearli": [14, 21, 204, 238], "cli": [3, 118, 130, 135, 136, 137, 162, 163, 175, 220, 229], "click": [13, 20, 25, 43, 54, 82, 87, 108, 122, 125, 129, 134, 190, 199, 200, 209, 243], "clickabl": [77, 194, 199], "clickjack": 208, "client": [20, 44, 46, 47, 49, 60, 61, 63, 66, 69, 70, 73, 86, 98, 102, 104, 107, 113, 115, 116, 121, 131, 132, 133, 140, 141, 142, 152, 160, 190, 192, 201, 203, 215, 222, 231, 235], "client_integr": 43, "clientdatarpid": 192, "clientservic": 112, "clipboard": [217, 219], "clipboardj": [217, 219], "clock": [100, 113, 143, 228], "clockinterfac": [127, 143, 228], "clog": 18, "clone": [7, 8, 16, 82, 125, 149, 185, 189, 192], "close": [12, 16, 20, 37, 64, 76, 79, 87, 101, 126, 129, 131, 156, 184, 187, 199, 200, 204, 206], "closecursor": [37, 234], "closeonresult": 87, "closer": [49, 204, 223], "closur": [0, 25, 37, 40, 49, 92, 126, 136, 221], "cloud": [17, 22, 42, 43, 44, 45, 46, 48, 60, 61, 66, 67, 68, 69, 70, 82, 101, 104, 132, 190, 192, 194, 227, 233], "cloudlink": 42, "club": 92, "clue": 129, "cluster": [19, 37, 154, 241], "cmake": 82, "cmake_install_prefix": 82, "cmake_prefix_path": 82, "cmd": [3, 82], "cmocka": 82, "cn": 10, "cnf": 122, "co": [110, 118], "co2": 140, "co2_emiss": 140, "code": [0, 2, 3, 4, 5, 6, 7, 8, 11, 14, 16, 17, 20, 21, 22, 29, 30, 32, 33, 37, 40, 42, 43, 44, 46, 49, 50, 51, 53, 54, 56, 57, 58, 59, 60, 61, 62, 71, 72, 74, 81, 82, 85, 89, 90, 92, 93, 95, 96, 98, 99, 107, 110, 113, 114, 115, 116, 118, 122, 129, 130, 131, 133, 134, 136, 144, 149, 150, 151, 152, 153, 154, 165, 170, 173, 178, 190, 191, 192, 198, 201, 204, 208, 215, 220, 221, 223, 225, 228, 229, 231, 232, 233, 234, 237, 240, 241, 242, 243], "codebas": [190, 231], "codesign": 82, "codespac": 190, "cog": 76, "cogsvg": 87, "collabor": [5, 21, 46, 61, 82, 126, 129, 185, 190, 210, 219, 229, 231, 232, 235, 240], "collabora": [13, 101, 241], "collaborationview": 126, "collaboratorsearch": 232, "collaboratorsearchplugin": 5, "collaps": 197, "colleagu": 81, "collect": [2, 17, 22, 42, 45, 61, 66, 75, 76, 80, 113, 114, 125, 126, 129, 192, 206, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 233], "collection_nam": 48, "collectionlist": 126, "collector": 134, "collis": [63, 190], "colon": [42, 94], "color": [27, 46, 69, 78, 79, 105, 107, 129, 184, 195, 197, 198, 199, 229], "colour": 226, "column": [17, 22, 40, 76, 97, 190, 213, 222], "column_a": 40, "column_b": 40, "columncount": 222, "columntoproperti": 37, "columntyp": 40, "com": [3, 5, 7, 8, 10, 13, 14, 15, 20, 37, 43, 44, 46, 49, 52, 60, 61, 64, 66, 67, 68, 69, 70, 72, 73, 82, 96, 97, 98, 101, 106, 107, 108, 110, 112, 115, 124, 125, 129, 130, 140, 149, 152, 156, 170, 175, 189, 192, 198, 202, 204, 209, 219, 220, 221, 227, 240, 243], "combin": [29, 42, 69, 82, 95, 107, 131, 132, 152, 185, 198, 199], "come": [0, 14, 20, 21, 37, 42, 44, 49, 63, 70, 76, 85, 89, 92, 93, 107, 112, 122, 132, 164, 169, 190, 204], "comfort": 21, "comma": [43, 140, 142, 171, 178], "command": [0, 3, 4, 5, 10, 28, 39, 46, 49, 72, 76, 81, 82, 92, 98, 102, 113, 118, 125, 130, 131, 135, 136, 137, 144, 149, 152, 153, 154, 156, 165, 172, 183, 188, 189, 192, 201, 209, 215, 220, 221, 222, 231, 232, 238, 239], "comment": [42, 46, 48, 61, 65, 75, 76, 78, 85, 107, 148, 185, 186, 188, 190, 192, 202, 204, 220, 229, 232, 233], "comment_count": 129, "commentid": 64, "commentnod": 64, "commentpropertiesplugin": 148, "commentsentityev": 229, "commentsmanag": 232, "commiss": 13, "commit": [8, 16, 37, 89, 122, 152, 185, 188, 202, 238, 241], "common": [3, 8, 16, 20, 25, 38, 49, 61, 66, 70, 76, 80, 88, 90, 113, 122, 123, 126, 129, 135, 155, 161, 162, 165, 184, 190, 209, 229, 235], "commonli": [76, 143, 240], "commun": [8, 14, 22, 42, 70, 71, 76, 77, 82, 97, 98, 115, 129, 139, 151, 152, 153, 154, 190, 201, 204, 205, 206, 208, 236], "compact": [16, 76, 231], "compani": [52, 185], "compar": [42, 63, 82, 96, 122, 133], "compat": [12, 14, 16, 21, 22, 23, 37, 43, 49, 63, 69, 77, 144, 152, 189, 190, 193, 201, 208, 212, 215, 221, 222, 225, 227, 228, 229, 231, 232, 234, 241], "compens": 13, "compil": [8, 9, 16, 23, 42, 72, 154, 167, 186, 190, 209, 226, 229, 239], "compile_po_to_mo": [154, 167], "complet": [0, 1, 17, 22, 29, 45, 56, 75, 79, 81, 87, 107, 129, 132, 140, 149, 154, 171, 179, 181, 185, 194, 202], "completionexpectedat": 56, "complex": [20, 66, 79, 95, 96, 99, 105, 107, 134, 150, 151, 152, 188, 194], "compli": [14, 131, 204, 233], "complianc": [29, 185], "compliant": 184, "complic": [21, 132], "compon": [0, 1, 16, 17, 20, 21, 22, 23, 25, 42, 75, 77, 78, 95, 96, 103, 107, 111, 113, 115, 126, 145, 188, 190, 194, 196, 201, 223, 229, 231, 234, 235, 241], "componentvm": 126, "compos": [0, 4, 16, 21, 40, 49, 89, 95, 186, 199, 225, 226, 227, 228, 229, 231, 232, 234], "composer_dev_mod": 3, "comprehens": [5, 9], "compress": [10, 98], "comput": [61, 83, 140, 151, 159, 227], "compute_devic": 165, "computedevic": 166, "computerfiles": 233, "concaten": [42, 209], "concept": [21, 45, 86, 91, 102, 113, 147, 151, 154, 185, 191, 201], "conceptu": 222, "concern": [14, 188], "concis": 81, "conclud": 131, "conclus": 163, "concurr": [97, 132], "condit": [20, 29, 96, 107, 187, 190, 204, 222, 228, 229], "condition": [30, 132], "condition2": [186, 187], "condition3": [186, 187], "conduct": [14, 201, 208], "conf": 192, "conferenc": 139, "confid": 188, "config": [3, 7, 16, 21, 25, 29, 34, 36, 37, 38, 40, 49, 59, 95, 98, 99, 113, 114, 118, 119, 125, 134, 135, 152, 153, 158, 165, 172, 179, 189, 190, 192, 215, 218, 219, 222, 228, 230, 231, 232, 233, 243], "config_is_read_onli": 233, "configkei": [59, 99, 168, 177], "configlexicon": 92, "configur": [1, 3, 4, 7, 13, 14, 15, 16, 19, 20, 21, 28, 29, 32, 33, 39, 41, 42, 44, 49, 52, 79, 82, 87, 90, 92, 93, 96, 98, 104, 110, 111, 112, 113, 122, 124, 131, 135, 139, 144, 149, 150, 151, 152, 154, 156, 158, 159, 160, 161, 165, 168, 171, 185, 186, 187, 189, 190, 192, 194, 201, 204, 209, 223, 231, 233, 243], "configvalu": [59, 168, 177], "confirm": [1, 48, 76, 79, 81, 139, 140, 148, 185, 200, 204, 209, 231], "confirmationquest": 1, "confirmdestruct": 231, "confirmhtml": 231, "conflict": [37, 82, 90, 93, 115, 132, 186, 188, 217, 229, 235], "confus": [49, 146], "congratul": 15, "connect": [21, 22, 28, 37, 44, 63, 76, 81, 88, 96, 97, 98, 107, 113, 115, 122, 149, 152, 154, 156, 161, 165, 166, 170, 222, 224, 229], "connecthook": 0, "connector": [148, 192, 221, 229], "consecut": [42, 132, 147], "consensu": 185, "consent": 132, "consequ": [14, 222, 224], "consid": [14, 16, 18, 20, 21, 42, 44, 45, 63, 76, 85, 106, 107, 122, 131, 151, 153, 156, 165, 166, 185, 188, 202, 206, 211, 217, 233], "consider": [4, 28, 100, 107, 113, 115, 125, 155], "consist": [20, 21, 25, 32, 36, 37, 45, 46, 69, 76, 77, 81, 82, 101, 118, 122, 132, 151, 165, 185, 190, 194, 206, 228, 230, 236], "consol": [1, 3, 25, 28, 39, 73, 87, 104, 115, 129, 130, 145, 175, 229, 231, 232, 243], "consoleev": 229, "consolid": 144, "const": [25, 49, 61, 96, 110, 124, 126, 129, 140, 145, 154, 186, 190], "constant": [1, 5, 6, 49, 85, 94, 107, 124, 154, 215, 220, 222, 223, 227, 231, 232, 233, 238], "constraint": [49, 233], "construct": [21, 39, 110, 210], "constructor": [1, 17, 18, 20, 21, 22, 29, 33, 37, 40, 42, 90, 96, 107, 131, 134, 140, 141, 142, 144, 190, 220, 229, 231, 232, 233], "consult": 185, "consum": [14, 22, 29, 43, 49, 69, 84, 91, 101, 102, 109, 113, 125, 189, 192, 233], "contact": [10, 12, 14, 21, 43, 76, 80, 107, 109, 111, 113, 133, 162, 176, 198, 204, 207, 215, 220, 227, 232], "contactinteractedwithev": 220, "contactremoteserv": 133, "contactsmanag": 232, "contactsmenu": [108, 193], "contain": [0, 1, 2, 5, 6, 7, 10, 16, 17, 20, 22, 25, 28, 29, 33, 35, 36, 41, 42, 46, 49, 52, 61, 69, 70, 72, 76, 77, 80, 81, 85, 87, 90, 94, 96, 100, 104, 105, 107, 113, 116, 122, 123, 126, 129, 132, 135, 136, 137, 140, 141, 142, 149, 151, 152, 153, 154, 155, 158, 159, 160, 161, 162, 163, 164, 165, 166, 169, 171, 186, 190, 192, 194, 199, 201, 204, 209, 213, 215, 221, 225, 227, 229, 231, 232, 234, 236, 238], "containerinterfac": [21, 127, 221], "containernam": 192, "content": [8, 10, 15, 17, 22, 31, 35, 38, 40, 42, 48, 61, 62, 64, 65, 66, 69, 70, 77, 78, 80, 84, 87, 89, 96, 101, 103, 106, 112, 113, 122, 129, 131, 135, 140, 184, 190, 194, 197, 199, 204, 209, 226, 229, 231, 232], "contentmanag": 94, "contentprovid": 94, "contentsecuritypolici": [20, 31], "contentsecuritypolicymanag": 232, "contenttyp": [20, 112], "context": [0, 2, 17, 20, 21, 22, 25, 28, 30, 31, 37, 43, 46, 49, 70, 76, 81, 84, 92, 96, 99, 101, 104, 106, 107, 110, 113, 115, 124, 125, 126, 129, 132, 135, 140, 141, 145, 147, 150, 171, 175, 186, 221, 232, 233, 234], "contextag": 140, "contextagentinteract": 140, "contextchat": [94, 233], "continu": [12, 32, 49, 98, 100, 113, 188, 202, 222, 225, 229, 231, 232, 234], "contract": [49, 190], "contrari": 204, "contrast": [20, 27, 77, 107, 131, 194, 233], "contribut": [7, 14, 71, 79, 82, 100, 113, 129, 185, 191, 204], "contributor": [14, 185, 204, 205], "control": [3, 17, 18, 19, 22, 25, 26, 28, 30, 33, 34, 35, 36, 43, 45, 61, 69, 76, 90, 98, 115, 125, 126, 128, 131, 133, 141, 142, 164, 191, 201, 209, 227, 228, 230, 231, 233], "controllermethodreflector": [30, 232], "conveni": [17, 22, 82, 98, 140], "convent": [21, 22, 37, 101, 118, 130], "convers": [46, 52, 61, 76, 77, 86, 113, 140, 154, 232], "conversation_token": 140, "conversionprovid": 232, "convert": [5, 8, 15, 25, 37, 43, 75, 77, 90, 104, 105, 113, 114, 151, 154, 167, 171, 192, 222, 229, 233], "convert_translations_nc": 154, "converttopdf": 105, "converttostandardformat": [123, 229], "converttypetoint": 90, "converttypetostr": 90, "cookbook": 7, "cooki": [17, 22, 44, 46, 61, 62, 70, 98, 209, 228], "cool_event_finish": 138, "cool_event_start": 138, "coolendev": 138, "coolstartev": 138, "coordin": 12, "copi": [10, 15, 40, 42, 49, 65, 76, 85, 152, 154, 209], "copy_transl": 154, "copynameloc": 42, "copyright": [14, 15, 185], "cor": [33, 86, 113, 164, 208, 231], "core": [1, 10, 20, 24, 34, 43, 44, 46, 60, 69, 87, 96, 99, 107, 129, 132, 140, 144, 196, 202, 204, 215, 220, 223, 227, 231, 233, 234, 243], "coreapp": 218, "corner": [20, 96, 108, 129], "corpor": [162, 163], "correct": [3, 8, 20, 29, 36, 49, 70, 105, 107, 140, 150, 156, 190, 194, 199, 203], "correctli": [14, 37, 41, 49, 81, 95, 129, 135, 151, 156, 194, 220, 223, 231], "correl": 87, "correspond": [10, 13, 16, 20, 33, 38, 50, 61, 82, 93, 107, 129, 131, 134, 137, 140, 141, 142, 189, 190, 202, 222, 223], "corrupt": 82, "cosentino": 5, "could": [0, 8, 10, 13, 15, 18, 20, 40, 44, 49, 56, 57, 62, 72, 76, 81, 82, 95, 96, 97, 107, 125, 126, 128, 135, 140, 141, 142, 145, 147, 167, 171, 180, 186, 188, 190, 202, 204, 209, 222, 229], "couldn": 52, "couldnottranslateexcept": 231, "count": [14, 29, 37, 42, 61, 76, 81, 87, 90, 148, 167, 199, 232], "counter": [20, 78, 197], "counterformatt": 199, "counterpart": 115, "countri": [113, 114, 229], "coupl": [21, 150, 190], "cours": [18, 33, 107, 122, 128, 141, 142, 190, 204], "cover": [9, 45, 61, 76, 87, 101, 107, 115, 122, 161, 190, 213, 214], "coverag": [15, 95, 101, 213], "cow": 140, "cp": 152, "cpu": [125, 151, 154, 165, 166], "craft": 82, "craftenv": 82, "craftroot": 82, "craftsmanship": 243, "crash": 95, "crawler": 234, "creat": [4, 5, 6, 8, 10, 15, 16, 17, 18, 19, 21, 22, 33, 34, 35, 37, 38, 40, 43, 44, 45, 48, 49, 62, 63, 64, 65, 73, 75, 76, 79, 81, 82, 86, 88, 90, 92, 94, 95, 96, 99, 104, 105, 108, 109, 113, 114, 121, 125, 126, 128, 129, 131, 134, 135, 136, 140, 141, 142, 149, 152, 154, 158, 159, 162, 165, 166, 167, 185, 186, 188, 189, 190, 192, 195, 198, 199, 214, 218, 219, 223, 225, 227, 229, 230, 231, 238, 243], "creatabl": [61, 104], "createapp": 190, "createbackup": 138, "createcachedcalendarobject": 221, "createcalendar": 221, "createcalendarobject": 221, "createcard": 221, "createcli": 61, "createconvers": 139, "created_at": [129, 132], "createdat": 136, "createdistribut": 19, "createel": [126, 129], "createev": 106, "createeventbuild": 106, "createeventsourc": [221, 229], "createfakefileforlocal": 154, "createfakefileforvuefil": 154, "createfil": 107, "createfromstr": [106, 107], "createincalendar": 106, "createinmemori": 19, "createloc": 19, "createmessag": 103, "createnamedparamet": [37, 104], "createoper": 70, "createowncloudcli": 70, "createparamet": 229, "createpotfil": [154, 167], "createremotefolderoper": 70, "createremoteshareoper": 70, "createsubscript": 221, "createt": [40, 136], "createtodo": 49, "createus": 146, "creation": [17, 21, 22, 33, 40, 52, 61, 66, 77, 93, 129, 136, 185], "creation_tim": 61, "creationd": [61, 66], "creationdatetim": 64, "creator": [82, 113, 129], "creatorid": 101, "credenti": [46, 75, 82, 156, 192, 209], "credentialsmanag": 232, "credit": 204, "crisp": 131, "criteria": [20, 21, 106, 122, 231], "critic": [11, 29, 90, 97, 115, 122, 130, 166, 188, 209, 212, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 238], "criticalactionperformedev": 29, "cron": [1, 15, 28, 29, 106, 130, 201], "cronjob": 104, "crontab": 104, "crop": [17, 22, 229], "cross": [20, 29, 49, 190, 208], "crsf": 131, "crt": [10, 15, 152, 192], "crucial": 122, "crypt": 221, "crypto": [232, 234], "cryptosessiondata": 20, "cs_cz": 8, "csp": [20, 31, 209, 217, 229], "csp_nonc": 231, "csr": [10, 192], "csrf": [20, 24, 115, 131, 209, 231, 232], "csrftokenmanag": 232, "css": [6, 7, 14, 20, 24, 28, 96, 126, 132, 134, 154, 181, 185, 186, 189, 199, 200, 201, 223, 226, 229, 231, 233, 239], "csync": 82, "ctime": 61, "ctrl": 226, "cuda": [151, 154, 165, 166], "curl": [5, 44, 45, 48, 60, 62, 63, 64, 66, 82, 96, 101, 104, 129, 131, 152, 240, 242], "curli": [20, 33], "current": [5, 8, 10, 13, 16, 17, 20, 21, 22, 25, 38, 42, 43, 46, 47, 48, 50, 52, 56, 57, 61, 63, 69, 73, 76, 82, 85, 92, 94, 95, 96, 101, 105, 115, 116, 121, 125, 127, 132, 133, 134, 135, 137, 138, 140, 141, 142, 146, 148, 151, 154, 157, 159, 160, 167, 169, 175, 177, 186, 189, 211, 226, 231, 232, 233, 234, 239, 243], "currentus": 220, "cursor": [37, 129, 132], "custom": [1, 2, 5, 10, 17, 18, 22, 27, 28, 30, 31, 45, 61, 76, 77, 87, 98, 99, 106, 109, 110, 111, 113, 132, 135, 136, 140, 144, 151, 153, 166, 200, 204, 215, 223, 228, 229, 230, 232, 234, 236], "custom2": 49, "custom_app": 156, "custom_bool": 132, "custom_int": 132, "custom_us": 132, "customev": 129, "customexport": 120, "customfield": 20, "customid": [87, 140], "customiz": 195, "cut": [20, 62, 76, 81, 231], "cute": 132, "cycl": [20, 188], "d": [44, 60, 61, 62, 64, 66, 82, 89, 96, 104, 152, 189, 192, 204, 227], "d1680193199": 73, "d5f1fa": 194, "d8f3da": 194, "d9a428292998": 61, "daemon": [150, 151, 154, 158, 160, 161, 162, 165], "daemon_config_nam": 165, "daemonconfig": [149, 150, 166, 183], "dai": [18, 42, 50, 107, 179, 192], "daili": [16, 129], "damag": 209, "danger": [77, 97, 209], "dark": [20, 34, 42, 46, 77, 96, 129, 144, 194, 221, 231], "darker": [77, 194], "darkest": 129, "darwin": 234, "dash": 123, "dashboard": [86, 113, 126, 227, 230, 231], "dashboardmodel": 96, "data": [2, 5, 10, 14, 17, 18, 19, 21, 22, 25, 28, 33, 34, 35, 37, 38, 40, 42, 43, 44, 45, 46, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 73, 79, 88, 96, 98, 100, 101, 104, 106, 108, 113, 115, 120, 125, 131, 132, 134, 136, 140, 145, 148, 153, 156, 165, 166, 171, 175, 185, 187, 188, 189, 190, 192, 199, 208, 229, 231, 232, 233, 243], "databas": [2, 5, 9, 15, 16, 17, 21, 22, 28, 29, 36, 40, 44, 46, 50, 90, 92, 93, 95, 97, 98, 99, 100, 107, 113, 114, 130, 132, 135, 148, 168, 177, 179, 191, 201, 209, 213, 224, 228, 229, 234, 243], "databaseconnect": 232, "datacollector": 125, "dataprovid": 187, "datarespons": [20, 43, 49, 131, 190, 240], "dataset": 218, "date": [3, 16, 18, 37, 42, 48, 50, 52, 56, 61, 63, 66, 70, 76, 82, 85, 95, 106, 107, 115, 121, 136, 140, 141, 142, 206, 214, 231, 232, 239], "date_immut": [37, 232], "dateinterv": 106, "datetim": [20, 37, 64, 66, 69, 94, 132, 139, 140, 143, 232], "datetime_immut": [37, 232], "datetime_tz": [37, 232], "datetime_tz_immut": [37, 232], "datetimeformatt": [134, 232], "datetimeimmut": [37, 106, 127, 132, 136, 232], "datetimezon": [106, 143, 232], "dav": [4, 5, 46, 50, 61, 62, 63, 64, 65, 67, 68, 70, 89, 104, 107, 133, 148, 185, 201, 221, 222, 229, 232, 233], "davacl": 107, "davcalendardemo": 107, "davgetcli": 73, "dayo": 129, "dayo_android": 129, "db": [21, 29, 37, 40, 61, 97, 141, 142, 209, 211, 213, 215, 222, 224, 227, 228, 229, 231, 232, 234], "dbal": [95, 234], "dbalexcept": [97, 222], "dbdbdb": 194, "dbe4ea": 194, "dbgp": 98, "dc5047": 105, "dcmake_build_typ": 82, "dcmake_install_prefix": 82, "dcmake_prefix_path": 82, "dcvalue1": 122, "dcvalue2": 122, "dd": [50, 52], "ddo": 209, "de": [5, 15, 42, 46, 98, 123, 232, 243], "de_d": 46, "deactiv": 144, "deactivat": [88, 113], "dead": 14, "deadlock": [20, 113, 114, 122, 228], "deal": [33, 42, 49, 105, 129, 140], "dealing_with_code_issu": 49, "dealt": 204, "debt": [185, 204], "debug": [29, 33, 40, 82, 87, 100, 113, 118, 122, 125, 129, 135, 137, 140, 141, 142, 218, 223, 231], "debugg": [100, 113], "debugmodesetupcheck": 135, "decid": [14, 15, 16, 20, 42, 69, 144, 167, 188, 204, 227, 243], "decis": [51, 185, 204], "deck": [42, 61, 76, 80, 126], "deckcard": 132, "declar": [0, 1, 12, 30, 61, 89, 94, 96, 101, 102, 104, 107, 113, 114, 116, 120, 124, 125, 126, 133, 134, 135, 136, 137, 140, 141, 142, 145, 147, 154, 172, 178, 183, 190, 230, 239, 240], "declarative_set": 179, "declarativeset": [99, 167], "declarativesettingsgetvalueev": 99, "declarativesettingsregisterformev": 99, "declarativesettingssetvalueev": 99, "declarativesettingstyp": 99, "declin": 45, "decod": [37, 44, 48, 113, 114], "decoupl": 21, "decrypt": 215, "decryptal": 221, "dedic": [3, 16, 22, 60, 107, 115, 118, 122, 131, 199, 206, 221, 229], "deduc": 21, "deep": [17, 22, 104], "deeper": 201, "defacto": 233, "default": [5, 8, 13, 17, 18, 22, 25, 28, 29, 30, 31, 37, 44, 46, 48, 49, 52, 56, 61, 69, 76, 77, 82, 87, 90, 92, 93, 97, 98, 99, 101, 104, 106, 107, 123, 125, 126, 128, 131, 132, 139, 141, 142, 145, 149, 151, 152, 153, 154, 158, 159, 160, 165, 168, 171, 174, 175, 177, 179, 181, 186, 187, 188, 192, 194, 195, 196, 198, 199, 200, 216, 217, 218, 228, 229, 231, 232, 233, 240], "default_en": 5, "default_languag": 42, "default_valu": 175, "defaultact": 187, "defaultraw": 92, "defaultvalu": 33, "defens": 209, "defer": [141, 142], "defin": [1, 3, 5, 10, 16, 20, 21, 29, 30, 32, 33, 37, 40, 42, 43, 45, 49, 52, 53, 56, 57, 59, 61, 69, 76, 90, 92, 93, 94, 95, 96, 99, 101, 103, 105, 107, 110, 113, 114, 124, 129, 130, 131, 133, 134, 140, 141, 142, 146, 147, 153, 186, 190, 199, 209, 210, 222, 230, 232, 240], "definit": [45, 58, 69, 92, 95, 107, 185, 206], "del": 152, "delai": [18, 20, 122, 199], "deleg": [0, 5, 107, 160, 234], "delegategetsupportedapp": 233, "delet": [15, 22, 33, 35, 37, 45, 48, 49, 50, 54, 63, 64, 65, 71, 73, 75, 76, 77, 81, 86, 89, 90, 93, 97, 102, 107, 113, 121, 122, 129, 131, 132, 140, 145, 146, 169, 170, 171, 172, 175, 178, 179, 180, 181, 190, 198, 199, 209, 228, 229, 231, 232, 234], "deletealluserconfig": 93, "deleteapp": [90, 93, 216], "deletecachedcalendarobject": 221, "deletecalendar": 221, "deletecalendarobject": 221, "deletecard": 221, "deletecont": 94, "deleteconvers": 139, "deletekei": [90, 93], "deletemetadata": [104, 229], "deleteprovid": 94, "deletesubscript": 221, "deletetask": 140, "deletetodo": 49, "deleteus": 0, "deleteuserconfig": 93, "deliber": 14, "delight": 14, "deliv": [14, 119], "deliver": 11, "demand": [20, 76, 94, 107, 134], "demonstr": [130, 132, 152], "deni": [17, 22, 61, 82], "denot": [5, 77], "dens": 76, "dep": [82, 85, 152], "depend": [0, 1, 4, 5, 8, 12, 16, 18, 20, 25, 28, 29, 33, 37, 40, 43, 49, 61, 69, 71, 80, 90, 110, 115, 116, 118, 120, 127, 128, 129, 131, 132, 134, 137, 140, 141, 142, 144, 149, 152, 154, 159, 169, 189, 193, 198, 201, 209, 210, 217, 222, 223, 224, 225, 226, 228, 230, 231, 232, 233, 234, 239, 243], "dependabot": 115, "deploi": [150, 151, 154, 156, 158, 160, 161, 162, 166, 222], "deploy": [12, 150, 152, 153, 162, 163, 183], "deployconfig": [150, 165], "deprec": [5, 11, 20, 21, 22, 26, 30, 34, 37, 49, 57, 61, 85, 92, 101, 115, 116, 127, 130, 131, 137, 141, 142, 152, 166, 186, 194, 196, 206, 210, 212, 238, 240], "depth": [32, 61, 66, 73, 104, 148, 189], "deriv": 190, "desc": 69, "descend": [66, 104], "describ": [8, 10, 16, 20, 29, 43, 49, 66, 71, 72, 81, 82, 99, 101, 106, 107, 127, 129, 134, 140, 144, 161, 165, 173, 179, 185, 189, 190, 206], "descript": [1, 5, 20, 31, 40, 42, 45, 50, 54, 56, 57, 58, 59, 61, 66, 69, 76, 81, 87, 90, 92, 99, 101, 106, 107, 110, 120, 124, 129, 131, 140, 144, 145, 175, 179, 180, 187, 194, 199], "descriptor": 42, "deserv": [79, 204], "design": [10, 14, 21, 33, 45, 79, 99, 115, 136, 151, 152, 160, 185, 197, 199, 201, 228, 231, 233], "desir": [13, 20, 44, 70, 134, 166, 185], "desktop": [43, 44, 82, 101, 129, 185, 190, 199, 201, 203], "despit": [85, 151, 209, 233], "dest": 63, "destin": [61, 62, 63, 209], "destroi": [33, 44, 126, 129], "destruct": [76, 77, 81], "destructur": 234, "detail": [5, 6, 11, 16, 17, 20, 21, 22, 29, 33, 38, 40, 42, 43, 48, 49, 61, 66, 69, 76, 80, 81, 85, 90, 93, 97, 98, 107, 110, 125, 127, 129, 132, 140, 151, 152, 153, 156, 158, 163, 175, 187, 193, 197, 198, 201, 213, 215, 221, 222, 226, 229, 231, 233, 234, 235, 236], "detect": [58, 82, 96, 97, 101, 115, 122, 125, 140, 154, 186, 222, 227, 228, 236], "detectlanguag": 116, "determin": [32, 49, 61, 80, 97, 110, 125, 129, 132, 153, 166, 226, 231, 233], "dev": [3, 16, 49, 62, 82, 95, 96, 97, 100, 113, 151, 152, 154, 163, 190, 192, 201, 239], "devdepend": 118, "develop": [5, 7, 8, 9, 10, 13, 14, 15, 16, 20, 21, 22, 27, 40, 42, 46, 75, 79, 81, 83, 92, 96, 97, 101, 106, 113, 118, 122, 124, 125, 126, 128, 129, 134, 135, 145, 149, 150, 153, 154, 162, 166, 167, 185, 191, 192, 194, 202, 203, 204, 208, 209, 212, 220, 222, 228, 231, 232, 234, 239, 240], "devic": [44, 46, 70, 75, 79, 151, 159, 160, 165, 192], "dhparam": 192, "di": [0, 21, 22, 29, 215, 232], "diagnost": [21, 232], "dialog": [5, 76, 77, 81, 218, 220, 230, 231, 235], "dialogbuild": 231, "dictat": 107, "dictionari": 73, "did": [20, 50, 125, 131, 204, 206, 209, 221, 231], "didn": 231, "diff": [154, 192], "differ": [0, 2, 5, 10, 17, 20, 21, 22, 27, 32, 37, 40, 42, 43, 44, 46, 49, 61, 69, 70, 72, 73, 76, 77, 79, 81, 82, 89, 90, 92, 93, 98, 107, 126, 128, 129, 132, 134, 135, 151, 159, 167, 187, 188, 190, 200, 209, 210, 222, 229, 231, 232, 243], "differenti": [61, 204, 233], "difficult": [10, 132], "diffus": 141, "dig": 201, "digit": [5, 40], "dir": [61, 69, 73, 82, 132, 171, 209], "direct": [17, 22, 45, 61, 76, 81, 113, 129, 148, 152, 185, 194, 199, 200, 201, 202, 209, 222, 229, 232], "directedit": 101, "directeditingmobileinterfac": 101, "directli": [13, 15, 17, 20, 21, 22, 32, 33, 38, 41, 44, 61, 63, 73, 107, 129, 130, 140, 141, 142, 149, 175, 185, 188, 190, 193, 194, 195, 199, 209, 213, 218, 222, 223, 231, 232, 233, 234], "directori": [3, 7, 15, 16, 20, 38, 41, 42, 52, 61, 63, 66, 72, 82, 83, 95, 100, 110, 113, 118, 130, 134, 146, 149, 152, 154, 167, 171, 189, 190, 192, 208, 229, 231, 232, 243], "directorori": 3, "dirnam": 219, "dirti": 122, "disabl": [13, 14, 17, 22, 27, 45, 52, 61, 76, 98, 100, 101, 113, 129, 130, 131, 132, 135, 140, 144, 146, 151, 153, 154, 166, 170, 173, 189, 190, 192, 195, 215, 219, 228, 229, 233], "disablekeyboardshortcut": [25, 226], "disableoriginalconstructor": 41, "disableproviderfor": 144, "disadvantag": 19, "disagr": 185, "disallowchildsrcdomain": 235, "disallowxyz": [17, 22], "disappear": 215, "discard": 107, "disclaim": 77, "disclos": [10, 12], "disclosur": 209, "discourag": [95, 115, 131, 233], "discov": [2, 106, 129, 190], "discover": 129, "discoveri": [21, 90, 101, 113, 192, 201, 222, 233], "discuss": [5, 13, 20, 115, 131, 145, 150, 185, 204, 240], "disk": 161, "dismiss": [76, 79, 101, 185, 204], "dispatch": [6, 17, 20, 28, 29, 101, 126, 129, 132, 138, 227, 228, 232, 233], "dispatchev": 129, "dispatchtyp": [29, 126, 129], "displai": [5, 10, 13, 25, 33, 46, 56, 57, 58, 61, 66, 69, 76, 84, 96, 99, 101, 102, 113, 117, 121, 122, 124, 125, 126, 128, 132, 134, 140, 144, 145, 165, 171, 179, 180, 181, 184, 190, 198, 199], "display_nam": 90, "displaynam": [25, 46, 50, 61, 66, 107, 121, 134, 171, 181], "disrupt": 42, "dist": [3, 129, 217], "distanc": 200, "distinct": [49, 164], "distribtut": 192, "distribut": [10, 14, 28, 82, 83, 98, 189, 192], "div": [26, 42, 126, 129, 134, 190, 193, 198, 199, 200, 232], "dive": [17, 22], "divid": [134, 204], "divis": 207, "django": 30, "dll": 82, "dn": 161, "dnd": 54, "do": [6, 8, 14, 15, 16, 17, 18, 20, 21, 22, 25, 29, 33, 34, 35, 37, 40, 44, 45, 46, 48, 54, 56, 60, 61, 62, 63, 69, 70, 71, 76, 77, 79, 81, 82, 90, 93, 97, 101, 104, 105, 106, 107, 115, 116, 122, 125, 128, 131, 132, 134, 139, 140, 142, 184, 185, 186, 187, 188, 189, 190, 192, 193, 199, 200, 202, 206, 209, 210, 220, 227, 228, 231, 232, 233, 234, 239, 243], "do_someth": [33, 186], "doc": [3, 8, 34, 49, 55, 82, 97, 98, 115, 118, 119, 127, 140, 151, 159, 175, 220, 234], "doc_url": 99, "docblock": 190, "dock": 149, "dock2port": 149, "docker": [8, 82, 96, 150, 151, 152, 153, 154, 159, 161, 162, 163, 165, 183, 189, 190, 192, 243], "docker_instal": 149, "docker_local_sock": 165, "docker_socket_proxi": 156, "dockerfil": [82, 152, 153, 154], "dockersocketproxi": 152, "docron": 18, "doctrin": [95, 234], "doctyp": 103, "document": [1, 4, 5, 6, 11, 16, 20, 38, 43, 44, 45, 46, 60, 61, 62, 64, 66, 69, 71, 73, 76, 82, 83, 85, 94, 95, 96, 98, 99, 104, 105, 107, 113, 115, 117, 118, 121, 122, 126, 129, 131, 135, 140, 144, 150, 152, 155, 161, 162, 190, 192, 196, 199, 202, 204, 208, 221, 222, 226, 227, 228, 229, 230, 231, 232, 233, 235, 241], "document_id": 48, "documentclick": 199, "documentid": [48, 141], "documentload": 101, "documentserv": 192, "documentsmain": 101, "documenttitl": 141, "documenttyp": 94, "docx": 43, "doe": [10, 13, 14, 15, 20, 25, 37, 38, 41, 44, 46, 49, 50, 54, 61, 81, 92, 96, 106, 107, 122, 129, 132, 134, 135, 137, 140, 141, 142, 146, 152, 153, 156, 165, 166, 187, 188, 190, 193, 199, 204, 210, 213, 221, 222, 228, 231, 232, 235], "doesn": [7, 52, 82, 122, 161, 204, 223, 227], "doesnotexistexcept": [37, 228], "dog": 48, "dom": [96, 129, 209], "domain": [20, 106, 108, 112, 113, 114, 124, 132, 135, 192, 209], "domcontentload": [96, 221], "domor": 20, "dompurifi": [219, 223], "don": [15, 16, 20, 21, 25, 32, 37, 96, 99, 108, 119, 122, 129, 130, 133, 137, 140, 141, 142, 157, 176, 184, 186, 189, 198, 199, 204, 209, 215, 218, 220, 222, 228, 239], "donat": 11, "done": [0, 10, 13, 15, 20, 21, 25, 26, 30, 37, 40, 44, 48, 52, 54, 59, 61, 62, 67, 68, 72, 79, 89, 90, 92, 99, 107, 125, 129, 134, 135, 141, 142, 146, 151, 154, 165, 166, 185, 188, 190, 204, 206, 210, 231, 234, 243], "door": 14, "doriskyth": 29, "dosometh": [20, 29, 186], "dosomework": 37, "dosomeworkwithresult": 37, "dot": [5, 42, 76, 190, 192, 199, 200], "doubl": [20, 26, 94, 106, 107, 122, 190, 209], "down": [14, 17, 20, 22, 49, 74, 82, 125, 154, 169, 192, 199, 204], "downgrad": [14, 16], "download": [3, 7, 16, 17, 22, 45, 63, 65, 71, 82, 101, 152, 153, 190, 192, 232], "download_url": 15, "downloada": 101, "downloadnextcloudwebsit": 112, "downloadoper": 70, "downloadremotefileoper": 70, "downloadrespons": 20, "downloadurl": 61, "downloadxmlfil": 20, "downsid": 132, "downstream": [49, 142], "dozen": [141, 142], "dperson": 192, "dpkg": 152, "dpkgarch": 152, "dqtkeychain_include_dir": 82, "draft": [110, 129], "drag": 197, "drawback": 21, "drive": 82, "driver": 95, "drop": [16, 40, 76, 81, 101, 152, 197, 202, 210, 211, 223, 225, 227], "drop_latest": 33, "dropcolumn": 40, "dropdown": [78, 126, 129], "dropindex": 40, "droplatest": 33, "droppabl": 199, "droptabl": 40, "dsp": [149, 152, 162], "dtend": 107, "dtstamp": 107, "dtstart": 107, "du": 62, "due": [33, 37, 49, 61, 82, 97, 140, 166, 187, 196, 204, 222, 229, 230], "dummi": [61, 132, 187], "dummydata": 187, "dump": [15, 40, 89], "duplic": [12, 148], "durat": [29, 106], "dure": [16, 17, 19, 20, 22, 37, 40, 42, 50, 61, 85, 90, 93, 96, 98, 106, 107, 119, 124, 126, 130, 145, 148, 153, 154, 161, 166, 167, 168, 170, 178, 189, 190, 213, 228, 233], "dylib": 82, "dynam": [20, 61, 82, 89, 140, 179, 194, 229, 231], "e": [0, 1, 3, 5, 8, 12, 16, 17, 18, 20, 21, 22, 25, 26, 29, 32, 33, 34, 36, 37, 38, 40, 41, 42, 46, 49, 52, 53, 54, 61, 69, 72, 81, 87, 89, 94, 95, 96, 97, 98, 101, 105, 107, 110, 112, 115, 122, 124, 125, 130, 131, 132, 133, 134, 135, 136, 138, 140, 141, 142, 144, 145, 150, 151, 152, 153, 154, 156, 161, 165, 167, 171, 181, 185, 186, 188, 189, 190, 192, 194, 199, 209, 221, 222, 223, 229, 234, 243], "e164": [123, 229], "e1663913": 63, "e2eepublicsharetemplateprovid": 31, "e5eff5": 194, "e6e6e6": 194, "each": [0, 1, 10, 12, 16, 17, 19, 20, 21, 22, 27, 29, 30, 32, 33, 34, 35, 37, 38, 43, 44, 61, 62, 66, 69, 76, 79, 87, 90, 92, 93, 96, 98, 99, 101, 104, 105, 106, 107, 110, 120, 129, 132, 135, 140, 141, 144, 151, 154, 159, 160, 164, 179, 189, 190, 199, 204, 209, 236], "eadndfjplgieldjbigjakmdgkmoaaaoc": 98, "earli": [0, 16, 20, 25, 49, 90, 135], "earlier": [18, 49, 82, 107, 212], "earth": 129, "eas": [0, 37, 92, 115, 135, 149, 194, 232], "easi": [14, 15, 21, 35, 43, 49, 79, 82, 98, 122, 127, 140, 152, 185, 190, 199], "easier": [15, 21, 22, 36, 42, 49, 81, 82, 85, 118, 143, 165, 189, 204, 232], "easiest": [49, 98, 188, 243], "easili": [8, 14, 18, 20, 22, 29, 42, 46, 49, 61, 98, 122, 131, 149, 166, 204, 209, 227], "echo": [15, 26, 48, 62, 82, 152, 209], "ecm_enable_sanit": 82, "eco": 22, "ecosystem": [150, 201, 208], "edb29d1d": 106, "eded": 194, "edg": [20, 115, 222, 229], "edit": [4, 10, 46, 104, 113, 129, 185, 192, 197, 200, 201, 232, 239], "edit_req_ownership": 104, "editor": [17, 22, 61, 76, 96, 113, 156], "editorid": 101, "educ": 92, "effc3d5818a6d5d55f2ae960ab39fd0414d0c542b72a3b9e08eb21206dd9": 10, "effect": [0, 20, 41, 107, 121, 188, 194, 222, 229, 231, 243], "effici": [20, 38, 122, 148, 228], "effort": [20, 107, 185, 226], "eg": 73, "eight": 29, "either": [5, 10, 25, 30, 38, 46, 61, 66, 87, 90, 106, 129, 132, 135, 147, 156, 186, 189, 202, 204, 206, 220, 221, 227, 228, 231, 243], "el": [96, 126, 129], "eleg": 21, "elem": [20, 229], "elemenet": 46, "element": [1, 5, 27, 35, 42, 43, 46, 61, 76, 78, 79, 81, 96, 107, 129, 132, 184, 185, 193, 197, 199, 200, 201, 231, 232, 233, 234, 235, 240], "elev": 20, "elig": 90, "elm": 199, "els": [10, 20, 21, 22, 37, 38, 41, 46, 49, 106, 110, 115, 128, 129, 132, 134, 135, 139, 140, 142, 146, 152, 154, 171, 187, 190, 199, 204, 229], "elseif": 154, "elsewher": [8, 82, 116, 132, 137, 140, 141, 142], "em": [42, 134], "email": [5, 17, 18, 22, 42, 45, 46, 61, 69, 76, 86, 99, 108, 110, 113, 124, 179, 185, 200, 215, 219, 227, 229, 231, 233, 241], "emailact": 108, "emailid": [140, 142], "emailtempl": 215, "emailtext": [140, 142], "emb": [131, 209], "embed": [107, 134, 154, 171, 209], "embrac": 150, "emerg": [29, 150], "emiss": 140, "emit": [2, 6, 17, 22, 25, 29, 49, 113, 114, 119, 121, 129, 230, 233], "emitt": [17, 28, 210], "emoji": [49, 54], "emot": 81, "emphas": 194, "emphasi": [0, 69, 77], "emphat": 204, "employe": 185, "empti": [8, 15, 18, 19, 34, 37, 45, 48, 52, 61, 65, 69, 78, 87, 96, 99, 107, 108, 134, 162, 166, 173, 192, 215, 228, 243], "emptycontentmessag": 96, "emptycontentsecuritypolici": [218, 229, 235], "en": [5, 8, 46, 61, 62, 97, 98, 107, 129, 136, 230, 231, 234, 243], "enabl": [0, 4, 5, 8, 10, 13, 17, 20, 22, 27, 34, 40, 42, 44, 46, 48, 49, 51, 52, 54, 61, 69, 76, 82, 83, 90, 94, 96, 97, 98, 99, 100, 107, 113, 118, 119, 120, 121, 129, 130, 131, 134, 135, 139, 140, 144, 146, 149, 151, 152, 158, 161, 162, 165, 171, 172, 179, 181, 183, 186, 190, 192, 194, 200, 215, 228, 229, 231, 232, 234, 242], "enabledsidebar": 234, "enableproviderfor": 144, "encapsul": [20, 131, 132, 236], "encod": [5, 20, 44, 49, 52, 61, 64, 66, 70, 104, 164, 178, 231], "encodepath": [219, 235], "encount": [1, 10, 98, 156, 159, 161, 162, 191], "encourag": [49, 95, 199, 206, 220, 232], "encrypt": [20, 31, 61, 93, 99, 134, 146, 168, 177, 204, 232], "encryptedfil": 215, "encryptionfilehelp": 232, "encryptionkeystorag": 232, "encryptionmanag": 232, "end": [10, 16, 17, 19, 20, 22, 28, 37, 49, 50, 61, 69, 76, 81, 82, 95, 99, 104, 106, 107, 115, 121, 124, 126, 132, 134, 140, 183, 185, 187, 188, 190, 194, 201, 241], "enddat": [50, 106, 121], "endedat": 87, "endif": 134, "endoflif": 239, "endpoint": [17, 20, 22, 25, 33, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 65, 67, 68, 75, 87, 93, 101, 116, 120, 128, 129, 140, 141, 142, 153, 165, 166, 168, 169, 170, 171, 173, 174, 175, 177, 179, 180, 181, 182, 215, 227, 228, 232, 233, 234, 240], "enforc": [5, 10, 20, 61, 90, 92, 93, 101, 104, 144, 194], "engag": 204, "engin": [17, 20, 22, 48, 82, 97, 105, 149, 158, 159, 165, 209, 239, 243], "english": [42, 94, 137, 140, 141, 142], "enhanc": [115, 128, 144, 185, 188, 204], "enorm": 209, "enough": [61, 76, 79, 85, 104, 149, 158, 161, 162, 185, 188, 194, 202, 233], "ensur": [0, 3, 10, 12, 16, 20, 23, 27, 36, 37, 41, 44, 46, 61, 77, 93, 94, 115, 122, 128, 129, 135, 150, 151, 152, 156, 166, 204, 209], "enter": [8, 20, 25, 52, 70, 76, 82, 99, 128, 179, 192, 226], "enterpris": 11, "entir": [20, 42, 63, 69, 76, 82, 190, 199, 200], "entiti": [39, 42, 50, 107, 111, 113, 126, 227, 231, 232, 235], "entri": [0, 4, 5, 17, 20, 21, 22, 25, 26, 29, 33, 34, 37, 41, 43, 61, 76, 93, 101, 104, 108, 122, 126, 129, 132, 150, 154, 171, 172, 183, 186, 197, 198, 200, 209, 223, 229, 232, 243], "entrypoint": 152, "enum": [85, 92, 186, 233, 238], "enumer": 140, "env": [15, 20, 118, 152], "env_var": 15, "envelop": [76, 190], "environ": [3, 7, 9, 15, 16, 36, 41, 82, 98, 122, 135, 154, 155, 158, 163, 188, 190, 191, 192, 199, 201, 205, 231, 241, 243], "eof": 107, "eol": [16, 227], "epoch": 16, "eq": [3, 37, 66, 192], "equal": [16, 166], "equalto": 41, "equival": [20, 21, 33, 90, 101, 149, 190, 236], "error": [1, 11, 29, 37, 41, 42, 45, 48, 56, 57, 58, 62, 63, 75, 76, 77, 81, 82, 86, 87, 95, 97, 100, 101, 113, 116, 126, 129, 133, 135, 137, 140, 141, 142, 151, 153, 156, 161, 166, 168, 170, 173, 177, 194, 221, 222, 231, 233, 240], "errorbaselin": 95, "errorcod": 222, "errorcount": 48, "errorinfo": 222, "errorlevel": [49, 95], "errorlog": 29, "escal": 208, "escap": [190, 209, 215, 221], "escapehtml": [209, 217], "escapeshellarg": 209, "escapeshellcmd": 209, "eshapetyp": 140, "eslint": [118, 154], "esm": 135, "especi": [3, 14, 20, 40, 42, 44, 49, 76, 82, 90, 122, 154, 184, 189, 209, 231], "essenc": 21, "essenti": [46, 73, 199], "establish": 21, "estat": 134, "estim": [142, 145], "etag": [35, 49, 61, 62, 66, 69, 101, 107, 171], "etc": [20, 21, 29, 41, 46, 71, 77, 122, 129, 130, 150, 151, 153, 154, 156, 161, 176, 186, 189, 192, 217, 243], "eurooffic": 101, "europ": 106, "eux": 152, "eval": [209, 216, 218, 229], "evalu": 188, "evaluatejavascript": 101, "even": [10, 16, 17, 20, 22, 42, 49, 70, 98, 105, 119, 122, 140, 153, 170, 186, 188, 189, 202, 204, 209, 215], "event": [0, 4, 5, 15, 18, 20, 25, 28, 40, 42, 46, 75, 76, 85, 86, 87, 88, 101, 102, 105, 109, 113, 114, 119, 122, 129, 130, 134, 138, 172, 183, 199, 201, 210, 219, 220, 221, 224, 227, 228, 231, 232], "event_data": 169, "event_ent": 229, "event_fail": 229, "event_load_additional_script": [6, 221, 229], "event_load_additional_scripts_loggedin": [6, 221, 229], "event_run": 229, "event_subtyp": 169, "event_success": 229, "event_typ": 169, "eventdispatch": [2, 25, 29, 99, 101, 104, 126, 129, 137, 140, 141, 142, 220, 223, 229, 231], "eventdispatcherinterfac": 229, "eventlogg": 232, "events_listen": 169, "eventsdispatch": [85, 233], "eventslisten": 169, "eventsourc": 229, "eventsubtyp": 169, "eventtyp": 169, "eventu": 221, "ever": [14, 209], "everi": [0, 1, 2, 6, 8, 16, 18, 20, 21, 29, 37, 38, 42, 43, 49, 63, 76, 81, 82, 94, 95, 96, 101, 108, 118, 122, 129, 130, 147, 188, 190, 199, 200, 202, 209, 221, 230, 236, 239, 243], "everybodi": [14, 79, 118], "everyon": [5, 15, 20, 21, 205, 232], "everyth": [9, 15, 21, 46, 49, 61, 107, 115, 122, 185, 190, 199, 229], "everywher": [49, 190], "evolv": [21, 150], "ex": [20, 82, 152, 153, 164, 166, 168, 170, 177], "ex_app": 154, "ex_app_id": 154, "ex_app_menu_entry_nam": 154, "exact": [72, 107, 115], "exactli": [21, 33, 49, 76, 81, 107, 121, 190, 200, 204], "examin": 104, "exampl": [2, 5, 7, 8, 10, 13, 14, 15, 16, 17, 18, 20, 21, 22, 25, 29, 30, 33, 35, 36, 37, 40, 42, 44, 46, 48, 49, 60, 61, 62, 65, 67, 68, 75, 76, 79, 80, 81, 82, 87, 90, 92, 96, 97, 98, 99, 101, 104, 105, 106, 107, 113, 114, 122, 125, 126, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 144, 151, 154, 155, 156, 160, 166, 167, 170, 172, 174, 179, 185, 187, 188, 190, 194, 198, 200, 204, 209, 217, 227, 229, 230, 232, 233, 234, 236, 239, 240, 243], "exapp": [28, 140, 149, 150, 155, 157, 158, 160, 162, 164, 166, 167, 168, 169, 172, 173, 174, 175, 176, 177, 178, 179, 181, 182, 183, 201, 231], "exappconfig": [150, 168], "exappprefer": [150, 177], "exapprequir": 231, "exapps_dev": 152, "exappservic": 156, "exce": 129, "exceed": [56, 57, 58], "except": [0, 10, 20, 21, 28, 30, 33, 36, 38, 45, 63, 69, 77, 85, 92, 97, 98, 99, 104, 107, 112, 115, 125, 131, 133, 140, 141, 142, 143, 160, 172, 221, 222, 223, 228, 229, 231, 233, 234], "exceptionalimplement": 233, "excess": 14, "exchang": [20, 88, 101, 113], "exchangedtokenrequestedev": 119, "exclam": 81, "exclud": [178, 209], "exclus": [3, 61, 76, 129], "exec": [49, 152, 189, 190, 192, 209], "execut": [1, 5, 8, 10, 18, 20, 22, 30, 32, 37, 43, 56, 70, 82, 96, 104, 105, 106, 115, 116, 122, 125, 130, 133, 135, 137, 138, 140, 141, 142, 149, 152, 154, 189, 190, 204, 206, 208, 213, 222, 227, 229, 232, 234, 240], "execute_handl": 175, "executequeri": [37, 234], "executestat": [40, 97, 234], "exist": [3, 4, 10, 17, 20, 21, 22, 33, 35, 37, 38, 40, 41, 42, 49, 52, 54, 61, 66, 70, 82, 85, 86, 90, 94, 95, 99, 101, 110, 113, 115, 122, 127, 129, 131, 134, 135, 145, 146, 152, 161, 185, 190, 199, 209, 214, 215, 221, 223, 227, 229, 231, 232, 233], "existingmanag": 146, "exit": [1, 15, 76, 125, 156], "expand": 234, "expans": 150, "expect": [14, 15, 16, 20, 22, 41, 49, 52, 56, 85, 92, 93, 104, 132, 140, 141, 142, 151, 152, 153, 171, 185, 187, 206, 209], "expectedexcept": 41, "expens": [19, 20, 113, 114, 122], "experi": [20, 22, 25, 42, 44, 49, 79, 92, 115, 132, 135, 156, 185, 234], "experiment": [51, 85, 238], "expir": [18, 19, 20, 52, 61, 63, 139], "expired": 52, "expiri": 231, "explain": [0, 14, 49, 76, 81, 82, 105, 125, 129, 188, 189, 190, 192, 204], "explan": [49, 82, 149, 166], "explanatori": [116, 137, 140, 141, 142], "explicit": [21, 45, 90, 233], "explicitli": [14, 21, 29, 49, 81, 90, 94, 107, 130, 131, 140, 206, 209, 213, 220, 221, 228, 231, 233, 239], "explor": [129, 223], "export": [15, 82, 101, 113, 114, 126, 129, 145, 152, 154, 186, 217, 222, 234], "exportdestin": 145, "expos": [29, 45, 46, 54, 69, 73, 75, 90, 99, 101, 105, 115, 128, 147, 152, 158, 165, 234], "exposur": 208, "expr": [37, 104], "express": [37, 210], "ext": [25, 118], "extend": [0, 1, 4, 17, 18, 20, 21, 22, 24, 30, 31, 33, 34, 35, 36, 37, 40, 41, 49, 70, 85, 93, 96, 99, 101, 102, 104, 106, 107, 108, 110, 113, 116, 121, 124, 125, 126, 128, 131, 132, 135, 137, 140, 141, 142, 143, 145, 147, 148, 166, 187, 190, 201, 209, 221, 223, 225, 228, 229, 232, 233, 235, 240, 243], "extendedsupport": 46, "extens": [5, 15, 20, 22, 23, 49, 61, 63, 69, 89, 98, 101, 154, 181, 192, 204, 228, 231, 233], "extern": [17, 22, 29, 46, 48, 61, 72, 73, 76, 102, 113, 119, 125, 131, 134, 150, 154, 160, 164, 165, 178, 201, 204, 206, 209, 223, 231, 233, 234, 241], "externalcalendar": 107, "externallinkact": [224, 234], "externalshareact": [224, 234], "externaltokenrequestedev": 119, "extra": [1, 3, 7, 21, 67, 76, 87, 93, 96, 129, 185, 190], "extra_fil": 10, "extra_info": 129, "extra_param": 192, "extract": [8, 20, 28, 48, 49, 81, 92, 104, 107, 140, 154, 167, 223, 233], "extractmetadata": [104, 229], "extractor": [49, 233], "extrafil": [3, 95], "extrainform": 129, "extran": 232, "extrem": 206, "eyebal": 202, "f": [15, 48, 61, 122, 125, 152, 179], "f1": 62, "f12": 243, "f3e5a15d": 192, "f5ae6efb6e4a3307328a188898968abf000511ab": 152, "f5f5f5": 194, "faaborg": [79, 185], "face": [81, 96, 140, 194, 229], "facetid": 192, "facilit": [35, 44, 206], "fact": [93, 107, 151, 209], "facto": 98, "factor": [5, 12, 20, 44, 88, 113, 125, 159, 164], "factori": [19, 21, 112, 132, 143, 229], "factual": 81, "fae87e29aa7cdf1ea0b8033c67f60e75b10be2cd": 15, "fail": [5, 17, 20, 22, 29, 37, 49, 56, 57, 58, 63, 76, 77, 97, 101, 116, 123, 131, 135, 137, 140, 141, 142, 152, 153, 156, 162, 194, 204, 222, 223, 229, 233], "failover_error": 192, "failover_mod": 192, "failur": [1, 20, 87, 97, 137, 140, 141, 142], "fair": 14, "fairli": 66, "faith": 14, "fake": 192, "fall": [108, 122], "fallback": [5, 20, 25, 38, 107, 129], "fallback_them": 20, "fallbacknam": 129, "fals": [1, 7, 8, 15, 17, 18, 20, 22, 25, 29, 37, 40, 51, 52, 61, 62, 69, 70, 73, 87, 90, 92, 94, 96, 99, 101, 104, 107, 116, 125, 126, 129, 132, 135, 137, 140, 141, 142, 144, 146, 148, 170, 179, 186, 187, 192, 222, 228, 232, 233], "falsi": 231, "famili": [79, 92], "familiar": [21, 43, 82, 89, 98, 122, 190, 204, 205], "famou": 42, "fanci": [96, 107, 116], "faq": 11, "fashion": [37, 129, 238], "fast": [5, 35, 96, 122, 145, 150], "faster": [61, 107, 118, 122, 140, 148, 229, 233], "fastest": 89, "fatal": [29, 135], "faulti": 223, "favicon": 27, "favor": [8, 38, 145, 211, 224, 227, 228, 231, 232], "favorit": [5, 65, 66, 69, 76, 148, 171, 194, 200], "favoriteact": 5, "favoriteprovid": 5, "favour": 213, "favourit": [61, 198], "fea": 129, "feasibl": [10, 97, 134], "featur": [8, 10, 13, 14, 15, 16, 17, 20, 21, 22, 34, 43, 48, 52, 69, 71, 79, 98, 101, 116, 119, 121, 122, 125, 129, 138, 140, 141, 142, 185, 186, 188, 190, 192, 199, 204, 209, 212, 213, 214, 231, 234, 242, 243], "feder": [45, 46, 49, 61], "feed": 5, "feedback": [79, 185, 199, 204], "feel": [21, 32, 76, 159, 161, 162, 167, 202, 204, 223], "fetch": [0, 17, 19, 22, 25, 34, 37, 44, 45, 52, 60, 61, 104, 106, 108, 140, 141, 142, 148, 222, 223, 229, 232, 233, 234], "fetchal": [104, 229, 234], "fetchallassoci": [229, 234], "fetchallforcalendarhom": 107, "fetchallnumer": [229, 234], "fetchassoci": [37, 229, 234], "fetchcolumn": 222, "fetcher": 232, "fetchfirstcolumn": 234, "fetchnumer": [229, 234], "fetchon": [222, 229, 234], "few": [15, 16, 18, 43, 63, 74, 107, 122, 129, 154, 167, 199, 204, 223], "fewer": 16, "ffc3c3": 194, "ffe4a1": 194, "ffe7e7": 194, "ffeec5": 194, "fffff": 194, "ffffff": [46, 194], "fi": [8, 15, 152], "fi_fi": 8, "fichier": 132, "fiction": [0, 129], "field": [5, 21, 37, 43, 50, 52, 54, 56, 57, 58, 59, 78, 82, 87, 89, 93, 104, 134, 136, 140, 151, 154, 165, 178, 179, 188, 189, 190, 194, 202, 223, 231, 232, 233, 234, 239], "field1": 179, "fight": 129, "figur": 116, "file": [0, 2, 5, 6, 7, 10, 11, 12, 13, 15, 16, 21, 23, 28, 32, 33, 36, 40, 41, 42, 43, 45, 46, 48, 49, 51, 53, 60, 64, 65, 66, 67, 69, 71, 75, 80, 81, 82, 83, 84, 85, 89, 94, 95, 96, 98, 102, 105, 107, 110, 113, 116, 118, 122, 126, 127, 128, 129, 130, 132, 133, 134, 135, 137, 140, 141, 142, 148, 150, 151, 152, 154, 165, 167, 169, 172, 174, 175, 176, 178, 183, 185, 186, 187, 190, 192, 201, 208, 210, 215, 219, 221, 222, 225, 226, 227, 228, 229, 230, 233, 235, 236, 238, 239, 243], "file1": [69, 188], "file2": 188, "file_cr": 69, "file_etag": 171, "file_filt": 8, "file_from_env": 15, "file_full_mim": 171, "file_get_cont": 156, "file_hash": 62, "file_id": [43, 104, 186], "file_local_path": 62, "file_mtim": 62, "file_nam": 62, "file_path": 43, "file_permissions_for_own": 171, "file_put_cont": 15, "file_remote_path": 62, "file_s": 62, "fileact": 167, "fileactionsmenu": [150, 169, 171], "filechang": 5, "filecopyrighttext": 185, "filecr": 5, "filedelet": 5, "filedownloadpath": 216, "fileexist": [35, 230, 231, 235], "filefavorit": 5, "fileformat": 8, "fileid": [31, 43, 46, 61, 66, 68, 69, 87, 101, 104, 132, 171, 174, 186, 233], "fileidfield": 104, "fileinfo": [228, 231, 234], "fileisblacklist": [218, 234], "filelistentri": 186, "filelistentryicon": 186, "filelistentrynam": 186, "filenam": [8, 10, 42, 67, 69, 70, 101, 106, 171, 217, 231, 233], "filepath": [15, 43, 70, 87, 220], "fileprogressstr": 42, "filereadingexampl": 38, "filerenam": 101, "filerequest": 52, "filerestor": 5, "files_extern": 192, "files_external_allow_create_new_loc": 36, "files_fulltextsearch": 48, "files_loc": 48, "files_lock": 61, "files_remind": 42, "files_shar": [6, 31, 52, 53, 54, 221, 229], "files_trashbin": [229, 231], "files_vers": 233, "files_zip": 43, "filesactionmenu": 153, "fileslist": 73, "filesmetadata": [104, 229], "filessharingdrop": 232, "filesystem": [0, 17, 28, 32, 39, 41, 42, 76, 122, 237, 241], "filesystem_cache_readonli": 36, "filesystemaccessexampl": 38, "filetablealia": 104, "filetoupload": 70, "filetyp": [25, 171], "fileutil": 70, "filewritingexampl": 38, "fill": [20, 34, 76, 87, 107, 132, 140, 148], "filter": [5, 17, 22, 33, 43, 45, 61, 66, 75, 76, 90, 93, 107, 132, 141, 194, 199, 227, 231, 233], "filterdefinit": 132, "filternotfoundexcept": 231, "filternotificationtyp": 217, "filtertyp": 69, "final": [3, 7, 16, 21, 44, 49, 60, 63, 82, 107, 131, 134, 165, 185, 187, 189, 199, 206, 235], "financi": 13, "find": [14, 15, 22, 37, 46, 49, 52, 61, 71, 79, 82, 83, 89, 95, 97, 105, 106, 107, 110, 118, 125, 127, 153, 154, 156, 161, 185, 189, 190, 199, 211, 212, 231, 234], "findal": [37, 190], "findent": 37, "findonequeri": 37, "findproviderbyid": 110, "findservicebyaddress": 110, "findservicebyid": 110, "findtranslatablefil": 154, "fine": [18, 20, 37, 76, 107, 122, 129, 131, 185], "finer": 19, "fingerprint": [61, 66], "finish": [0, 6, 8, 25, 29, 63, 76, 87, 101, 105, 107, 130, 137, 185, 204], "finishprogress": 130, "fire": [17, 22, 148, 221], "firefox": [98, 243], "firewal": [156, 161], "first": [0, 2, 3, 5, 7, 8, 15, 17, 20, 22, 25, 29, 30, 38, 40, 42, 45, 49, 50, 63, 64, 69, 71, 75, 76, 79, 81, 85, 87, 89, 90, 92, 93, 94, 96, 99, 101, 104, 107, 126, 129, 132, 134, 135, 147, 151, 165, 166, 179, 185, 186, 189, 190, 192, 198, 199, 203, 204, 209, 214, 221, 222, 225, 229, 232, 234, 239, 243], "first_menu": [154, 171], "firstdai": 50, "firstli": [49, 130], "firstlogin": 229, "firstnam": [186, 192], "firstresult": 104, "fist": [141, 142], "fit": [20, 82, 132, 134, 141, 142], "five": [20, 29, 133], "fix": [14, 16, 49, 72, 76, 79, 82, 97, 115, 118, 130, 140, 185, 188, 193, 204, 210, 211, 231], "fixer": [3, 187], "flag": [1, 17, 18, 22, 49, 52, 76, 92, 93, 119, 130, 170, 213, 231, 233, 234], "flag_": 92, "flag_index": 93, "flag_intern": 90, "flag_sensit": [90, 92, 93], "flat": 76, "fledg": 9, "flexibl": [21, 40, 76, 89, 129, 190], "flip": 194, "float": [20, 37, 76, 90, 93, 140, 145, 194, 227, 228], "flow": [60, 71, 75, 76, 90, 101, 111, 113, 153, 154, 163, 172, 183, 201, 204], "fluent": 222, "fly": [20, 76, 98], "fn": [2, 92, 148], "focu": [76, 101, 129, 198, 199], "focus": [20, 76, 129, 194], "focusoncr": 129, "focuss": 194, "folder": [5, 7, 8, 10, 17, 20, 22, 23, 25, 27, 38, 40, 41, 43, 45, 49, 51, 62, 63, 65, 66, 67, 68, 71, 73, 75, 76, 82, 89, 105, 107, 115, 129, 134, 148, 152, 154, 167, 189, 190, 192, 196, 199, 200, 209, 228, 229, 230, 231, 232, 233, 234, 236, 239], "folderpath": 70, "follow": [0, 5, 7, 8, 10, 14, 15, 19, 20, 21, 22, 25, 26, 27, 30, 32, 33, 37, 40, 41, 42, 43, 44, 48, 49, 52, 54, 62, 64, 66, 69, 72, 73, 79, 81, 82, 85, 87, 89, 94, 95, 96, 97, 98, 99, 101, 104, 106, 107, 112, 116, 118, 121, 125, 126, 127, 128, 129, 130, 131, 132, 137, 140, 141, 142, 143, 147, 149, 150, 151, 152, 153, 154, 156, 161, 164, 165, 166, 170, 171, 186, 188, 189, 190, 192, 198, 199, 204, 209, 210, 217, 225, 227, 228, 229, 231, 232, 233, 234, 238, 239, 240, 242, 243], "font": [194, 219], "font_siz": 20, "foo": [0, 3, 20, 21, 46, 99, 101, 146, 179, 186, 187, 188], "foobar": [20, 240], "fooservic": 21, "fopen": [209, 228], "forbid": [20, 218], "forbidden": [20, 26, 49, 69, 70, 107, 145], "forbidden_filenam": 231, "forbidden_filename_charact": 231, "forbidden_filename_extens": 231, "forbiddenexcept": 49, "forc": [14, 42, 45, 149, 204, 232], "force_languag": 42, "forcelanguag": [42, 46, 232], "foreach": [26, 106, 134, 135, 140, 234], "foreground": 233, "foreign": [37, 209], "forgeri": [190, 208], "forget": 209, "fork": 82, "form": [5, 13, 20, 23, 34, 42, 49, 69, 76, 77, 87, 99, 113, 114, 128, 199, 200, 209, 231], "formal": 140, "format": [20, 44, 48, 50, 52, 61, 69, 76, 101, 107, 113, 114, 118, 120, 129, 135, 140, 151, 154, 169, 186, 187, 190, 192, 206, 221, 229, 232, 234, 240], "formatd": [134, 215, 217, 220], "formatfiles": 221, "formattodo": 49, "former": 70, "formerli": 120, "formid": 179, "formschem": 179, "forum": [5, 14, 122, 185, 202, 208, 209], "forward": [3, 16, 18, 29, 149, 171], "found": [1, 5, 10, 14, 16, 17, 20, 21, 22, 25, 37, 40, 46, 49, 50, 54, 56, 57, 61, 66, 69, 89, 93, 95, 97, 104, 106, 107, 118, 129, 136, 151, 153, 166, 167, 173, 174, 192, 222, 225, 229, 232, 240, 243], "foundat": [78, 194, 201], "four": [8, 69, 76, 82], "fox": 48, "fragment": 33, "frame": [101, 133, 209, 217], "framework": [21, 49, 73, 96, 126, 133, 154, 190, 209, 232, 234], "free": [32, 46, 61, 76, 116, 132, 137, 140, 141, 142, 159, 161, 162, 167, 202, 223], "freedom": 129, "freeforal": 20, "freeprompttasktyp": [142, 231], "freespac": 233, "frequent": [90, 97, 130, 149, 150, 161, 163, 201], "fresh": [19, 110], "freshli": [48, 101], "friendli": [14, 79, 81, 204], "friendsofphp": 3, "from": [0, 1, 5, 7, 8, 9, 10, 14, 15, 16, 17, 18, 22, 25, 26, 28, 29, 30, 36, 37, 40, 41, 42, 43, 44, 45, 47, 49, 53, 54, 57, 58, 59, 61, 63, 65, 66, 69, 70, 72, 73, 76, 77, 79, 81, 82, 84, 85, 86, 88, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 103, 104, 105, 106, 107, 110, 113, 115, 116, 119, 122, 125, 126, 127, 129, 130, 131, 132, 133, 135, 136, 138, 139, 140, 141, 142, 145, 146, 148, 149, 150, 152, 154, 155, 162, 164, 165, 166, 167, 169, 170, 171, 173, 175, 178, 179, 185, 188, 189, 190, 192, 194, 198, 202, 204, 209, 210, 212, 215, 217, 219, 220, 222, 223, 224, 225, 228, 229, 230, 231, 232, 233, 234, 235, 236, 240, 243], "fromcal": [0, 126], "fromlabel": 58, "fromlanguag": [58, 116], "frommailaddress": 215, "fromparam": 227, "fromrow": 227, "front": [16, 28, 49, 95, 96, 99, 106, 115, 126, 148, 183, 199, 201, 241], "frontend": [17, 20, 22, 42, 47, 64, 82, 87, 96, 98, 125, 129, 131, 135, 140, 149, 151, 155, 171, 191, 226, 232], "frontpagerout": [33, 190, 230], "frp": 152, "frp_0": 152, "frp_url": 152, "frpc": 152, "fruit": 204, "fssl": 82, "ftp": 242, "fulfil": [107, 194], "full": [1, 9, 18, 19, 20, 25, 29, 38, 42, 47, 61, 66, 69, 76, 81, 96, 98, 108, 124, 132, 133, 135, 187, 190, 193, 198, 219, 221, 222, 223, 234, 239], "fulli": [69, 93, 106, 127, 130, 152, 185, 213, 220, 230], "fulltextsearch": [45, 75], "fun": 205, "func": 37, "function": [0, 1, 2, 3, 14, 16, 17, 18, 19, 20, 21, 22, 25, 26, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 49, 60, 69, 71, 73, 79, 87, 90, 92, 94, 96, 97, 99, 101, 103, 104, 105, 106, 107, 108, 110, 112, 115, 116, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 156, 167, 180, 185, 190, 199, 209, 210, 211, 215, 218, 221, 222, 227, 229, 231, 232, 233, 234, 240, 243], "fundament": 49, "funni": 140, "further": [5, 17, 20, 22, 42, 46, 51, 61, 75, 79, 85, 97, 98, 106, 131, 145, 156, 166, 185, 188], "futur": [10, 21, 37, 43, 47, 51, 85, 92, 115, 123, 125, 129, 144, 166, 186, 209, 215, 218, 220, 223, 227, 229, 231], "fwrite": 141, "g": [0, 1, 3, 5, 12, 16, 18, 20, 21, 22, 25, 26, 29, 32, 33, 34, 36, 37, 40, 42, 46, 49, 52, 53, 54, 61, 69, 72, 81, 82, 87, 89, 94, 95, 96, 98, 101, 105, 110, 115, 122, 124, 125, 130, 131, 132, 133, 134, 135, 138, 140, 141, 142, 150, 151, 152, 153, 154, 161, 165, 167, 171, 181, 185, 186, 188, 189, 190, 192, 194, 199, 209, 221, 222, 223, 229, 239], "galera": [37, 122], "game": 5, "gap": 40, "gaug": 120, "gave": 105, "gd": [15, 242], "gen": 150, "gender": 78, "gener": [5, 8, 10, 13, 15, 16, 17, 20, 21, 22, 24, 26, 27, 30, 33, 37, 38, 42, 44, 45, 47, 56, 61, 69, 75, 76, 77, 78, 79, 80, 85, 88, 89, 92, 96, 98, 101, 104, 106, 107, 113, 114, 115, 120, 122, 130, 131, 132, 134, 135, 140, 142, 161, 165, 171, 188, 191, 201, 202, 218, 222, 234, 235, 236, 238], "general_log": 98, "generatebirthdai": 5, "generateev": 69, "generatefilepath": 220, "generateocsurl": [129, 220], "generaterandombyt": 215, "generateremoteurl": [61, 220], "generatesecurepasswordev": 232, "generateurl": [25, 154, 220], "genericev": 229, "genericfileexcept": 228, "generichandl": 147, "genericrespons": 147, "genr": 129, "genrsa": 192, "genuin": 204, "germani": 123, "get": [0, 1, 8, 9, 11, 14, 15, 16, 17, 18, 19, 21, 22, 25, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 40, 41, 42, 43, 44, 45, 46, 49, 50, 51, 53, 54, 56, 60, 66, 69, 71, 72, 76, 79, 82, 86, 88, 90, 93, 96, 97, 98, 100, 101, 104, 106, 108, 113, 114, 121, 127, 128, 131, 132, 133, 134, 136, 138, 140, 141, 144, 146, 147, 149, 153, 154, 165, 166, 171, 172, 178, 185, 190, 192, 199, 201, 204, 208, 220, 221, 223, 229, 230, 231, 232, 233, 234, 240], "get_icon": 126, "getabsolutepath": 70, "getabsoluteurl": [96, 124, 211], "getacl": 107, "getactionlabel": 228, "getactivitymanag": 221, "getaddressbook": 227, "getal": [227, 229], "getallappvalu": 90, "getallsharesinfold": 233, "getallvalu": [90, 93], "getalternateid": 132, "getapp": [29, 69, 90, 93, 99], "getappconfig": [92, 221, 233], "getappcontain": 0, "getappdatadir": 221, "getappdatadirectorynam": 231, "getappfetch": 221, "getappfold": [22, 221], "getappfromnamespac": 235, "getappid": [94, 107, 124, 137, 140, 141, 142], "getappinfo": 229, "getappinstalledvers": 233, "getappkei": 90, "getappmanag": 221, "getappnamespac": [211, 235], "getapppassword": 44, "getappvalu": [36, 99, 134], "getappvaluebool": 90, "getappvalueint": 90, "getappvaluestr": 90, "getappvers": [229, 233], "getargu": 1, "getauthor": 42, "getauthorizedappconfig": 34, "getauthornam": 42, "getautocompletemanag": 221, "getavailablelanguag": 116, "getavailabletasktyp": [140, 142, 233], "getavailabletasktypeid": [140, 233], "getavatar": 108, "getavatarmanag": [221, 233], "getbodi": [112, 233], "getbruteforcethrottl": 221, "getbyid": [38, 41, 234], "getbytoken": 20, "getcach": 38, "getcalendar": [107, 224], "getcalendarincalendarhom": 107, "getcalendarmanag": [221, 233], "getcalendarresourcebackendmanag": [221, 233], "getcalendarroombackendmanag": [221, 233], "getcalendarsforprincip": 106, "getcanonicallocal": 221, "getcap": [43, 49, 218], "getcapabilitiesmanag": 221, "getcategori": [134, 135], "getcertificatemanag": 221, "getchild": 107, "getchildren": 107, "getcloudfederationfactori": [221, 233], "getcloudfederationprovidermanag": [221, 233], "getcloudidmanag": 221, "getcollaboratorsearch": 221, "getcommandbu": [221, 233], "getcommentsmanag": [221, 233], "getcompletionexpectedat": 140, "getconfig": 221, "getcont": [35, 38, 41, 228], "getcontactsmanag": 221, "getcontain": [21, 22, 30, 36, 41], "getcontentlanguag": 61, "getcontentlength": [61, 66], "getcontentsecuritypolicymanag": [221, 233], "getcontentsecuritypolicynoncemanag": 221, "getcontenttyp": [61, 66, 107], "getcontext": [17, 22, 232], "getcooki": 20, "getcountrycodeforregion": [123, 229], "getcreat": 101, "getcreatedat": 132, "getcredentialsmanag": [221, 233], "getcrop": 229, "getcrypto": 221, "getcspnonc": [154, 231], "getcsrftokenmanag": 221, "getcurrentoutofofficedata": 121, "getcurrentus": [61, 218, 220], "getcurrentuserfold": 38, "getcursor": 132, "getcustomfilt": 132, "getcustomid": 140, "getcustomlogg": [223, 230], "getcustompsrlogg": [29, 223, 230], "getdata": [20, 70, 121], "getdatabaseconnect": 221, "getdatabaseplatform": 231, "getdatabaseprovid": [37, 231, 233], "getdatetim": [139, 143, 228], "getdatetimeformatt": [221, 233], "getdatetimezon": [221, 233], "getdeclarativesettingsvaluelisten": 99, "getdefaultpageurl": 235, "getdefaulttimezon": 233, "getdefaulttyp": 217, "getdeletedbi": 231, "getdescript": [140, 142, 144, 145], "getdetail": [90, 93], "getdetailsbyid": 234, "getdirectorycont": 61, "getdirectorylist": 35, "getdisabledus": 231, "getdisableduserlist": 231, "getdisplayid": 124, "getdisplaynam": [1, 122, 124, 144, 145, 215], "geteditor": 101, "getelementbyid": 126, "getemailaddress": 108, "getencryptionfileshelp": 221, "getencryptionkeystorag": [221, 233], "getencryptionmanag": 221, "getendd": 121, "getendedat": 140, "getenv": [15, 20], "geteremotesharesforfileoper": 70, "geterrormessag": [137, 140, 141, 142], "getestimatedexports": [145, 228], "getetag": [35, 61, 66, 107], "getev": 105, "geteventdispatch": 221, "geteventlogg": [221, 233], "getexistinglock": 220, "getexpectedruntim": [140, 142], "getextens": 101, "getextrainform": 129, "getfieldid": 99, "getfil": [35, 101, 137], "getfilecont": [38, 145], "getfileid": 137, "getfilt": 132, "getfilterbyid": 231, "getfirstlogin": 232, "getfirstresult": 224, "getfold": 35, "getfoo": 240, "getforbiddenfilenamechar": 231, "getform": [34, 134, 232], "getfullnam": 108, "getgeneratorhelp": 221, "getgetredisfactori": 221, "getglobalscaleconfig": [221, 233], "getglobalstoragesservic": 221, "getgroup": [107, 215], "getgroupmanag": 221, "getgroupparamet": 217, "getgroupus": 215, "gethash": 221, "gethead": [20, 112, 135, 215], "getheight": 229, "gethelp": 1, "gethom": 146, "gethost": [218, 234], "gethostnam": [218, 234], "gethttpclientservic": [221, 233], "gethttprequest": 147, "geticon": [34, 69, 105, 124, 134], "geticonclass": [96, 231], "geticonurl": [96, 129, 231], "getid": [31, 34, 38, 94, 96, 101, 121, 124, 126, 129, 132, 134, 140, 141, 142, 144, 145, 231, 234], "getidentifi": [69, 141, 142], "getidremoteshar": 70, "getimageurl": 129, "getincludewatermark": [140, 234], "getiniwrapp": [221, 233], "getinput": [140, 141, 142], "getinputshap": 140, "getinputshapedefault": 140, "getinputshapeenumvalu": 140, "getintegritycodecheck": 221, "getitem": [96, 126], "getitemsv2": 96, "getitemurl": 94, "getjob": 227, "getjoblist": 221, "getjobsiter": 227, "getkei": [90, 93], "getknownmetadata": [104, 229], "getl10n": 221, "getl10nfactori": 221, "getlabel": 110, "getlanguag": 116, "getlanguagecod": 42, "getlastlogin": 37, "getlastmodifi": [61, 66, 107], "getlastupd": 140, "getldapprovid": 221, "getlevel": 29, "getlimit": 132, "getlinkdescript": 129, "getlinktitl": 129, "getlockingprovid": 221, "getlogfactori": [221, 233], "getlogg": [221, 232], "getlogoclaim": 229, "getlowstrengthgener": 217, "getmail": 221, "getmanageruid": 146, "getmediumstrengthgener": 217, "getmemcachefactori": 221, "getmessag": [29, 49, 69, 121], "getmetadata": [104, 229], "getmetadatakeyfield": [104, 229], "getmetadataqueri": [104, 229], "getmetadatavaluefield": [104, 229], "getmigratorvers": 145, "getmimetyp": [35, 101, 232], "getmimetypedetector": 221, "getmimetypeload": 221, "getmimetypesopt": 101, "getmock": 41, "getmockbuild": 41, "getmod": 229, "getmountmanag": [221, 233], "getmountpoint": 38, "getmountprovidercollect": [221, 233], "getmtim": 35, "getnam": [17, 22, 31, 34, 35, 69, 101, 105, 107, 116, 125, 130, 132, 134, 135, 137, 140, 141, 142, 186], "getnavig": [217, 229], "getnavigationmanag": [221, 233], "getnod": [31, 104, 229], "getnoexpirationd": 231, "getnonexistingnam": 234, "getnotificationmanag": 221, "getnotificationtyp": 217, "getnumberofimag": 141, "getobjectid": [69, 234], "getobjectnam": 69, "getobjecttyp": 69, "getocscli": 221, "getopt": 1, "getoptionalinputshap": 140, "getoptionalinputshapedefault": 140, "getoptionalinputshapeenumvalu": 140, "getoptionaloutputshap": 140, "getoptionaloutputshapeenumvalu": 140, "getord": [96, 129, 132], "getoutput": [140, 142], "getoutputimag": 141, "getoutputshap": 140, "getoutputshapeenumvalu": 140, "getown": [107, 228, 232], "getparam": [147, 230], "getpassword": 224, "getpasswordhash": [128, 231], "getpasswordprotectedshar": 20, "getphonenumb": 37, "getpictur": 19, "getport": [218, 234], "getpreferstream": [140, 213], "getpreviewbyfileid": 132, "getpreviewmanag": [221, 233], "getprimaryaddress": 110, "getprior": [34, 69, 124, 134], "getprogress": 140, "getproperti": [107, 108], "getprotocol": [218, 234], "getpsalm": [3, 95], "getquerybuild": [37, 40], "getqueryforfilt": 217, "getquerylogg": [221, 233], "getquerypart": 231, "getreason": 234, "getreferenceid": 220, "getreloadinterv": 96, "getremoteapifactori": [221, 233], "getremoteinstancefactori": [221, 233], "getremotesharesforfileoper": 70, "getremotesharesoper": 70, "getreplacementuserdisplaynam": 121, "getreplacementuserid": 121, "getreportintermediateoutput": 140, "getrequest": 221, "getrequesttoken": 231, "getrequesturi": 215, "getreshar": 70, "getresourcerichobject": 126, "getrevis": 233, "getrootfold": [22, 221], "getrootpath": [218, 220], "getrooturl": 220, "getrout": [221, 233], "getscheduledat": 140, "getschema": 99, "getscriptnam": 215, "getscrollbarwidth": 216, "getsearch": 221, "getsecondaryaddress": 110, "getsect": [34, 134], "getsecurerandom": 221, "getserv": [2, 21], "getservercontain": [104, 125], "getserverhost": 215, "getserverprotocol": 215, "getservicex": 21, "getsess": 221, "getsessioncryptowrapp": 221, "getsettingbyid": 231, "getsettingsmanag": 221, "getsettingsnavig": 229, "getshapetyp": 140, "getshar": 20, "getsharemanag": [221, 233], "getshareown": 31, "getsharesop": 70, "getsharingtoken": 232, "getshortmessag": 121, "getsiz": [35, 107, 227], "getslogan": 31, "getspecialparameterlist": 217, "getstartd": 121, "getstartedat": 140, "getstat": 231, "getstatu": [20, 140, 141, 142, 148], "getstatuscod": 112, "getstorag": [38, 233], "getstoragefactori": [221, 233], "getstoragesbackendservic": 221, "getstr": 70, "getstrict": 92, "getsubject": 69, "getsupportedapp": 233, "getsupportedfilt": 132, "getsupportedprivileg": 107, "getsupportedprivilegeset": 107, "getsupportedsearchproviderid": 129, "getsystemconfig": 221, "getsystemtagmanag": [221, 233], "getsystemtagobjectmapp": [221, 233], "getsystemvalu": [34, 36], "getsystemvaluebool": [36, 135], "getsystemvalueint": 36, "getsystemvaluestr": 36, "gettabl": 40, "gettagmanag": [221, 233], "gettagsbyid": 229, "gettarget": 124, "gettask": [140, 141, 142], "gettasktyp": 142, "gettasktypeid": 140, "gettempl": [101, 144], "gettempmanag": 221, "getter": [22, 37, 90, 108, 227, 228, 233], "gettext": 8, "getthemingdefault": 221, "gettim": [143, 228], "gettimezon": [143, 233], "gettitl": [96, 101, 124, 126, 129], "gettodo": 49, "gettoken": [128, 229], "gettranscript": 137, "gettrusteddomainhelp": 221, "gettwofactorauthmanag": 221, "gettyp": [126, 142], "gettypedquerybuild": 213, "gettypeicon": 217, "getuid": [38, 99, 124, 126, 146], "getuploadedfil": 20, "geturl": 96, "geturlgener": 221, "geturlparamet": [217, 220], "getus": [22, 38, 99, 101, 121, 209, 243], "getuserconfig": 92, "getuserdata": 145, "getuserfacingerrormessag": 140, "getuserfold": [22, 38], "getuserglobalstoragesservic": 221, "getuserid": [93, 126, 137, 138, 140, 141, 142], "getuserlanguag": 42, "getusermanag": 221, "getusermountcach": 221, "getusernam": 220, "getusersess": 221, "getuserstatus": 138, "getuserstoragesservic": 221, "getusertask": 141, "getusertasksbyapp": 141, "getuservalu": [36, 99], "getvalu": [93, 99], "getvaluearrai": [90, 93], "getvaluebool": [90, 93], "getvalueflag": 93, "getvaluefloat": [90, 93], "getvalueint": [90, 93], "getvaluesbyapp": 93, "getvaluesbyus": 93, "getvaluestr": [90, 92, 93], "getvaluetyp": [90, 93], "getvers": 145, "getwebhookmethod": 140, "getwebhookuri": 140, "getwebroot": 221, "getwidgetbutton": 96, "getwidgetitem": 96, "getwidgetitemsv2": 96, "getwidgetopt": 96, "getwidth": 229, "ghcr": [154, 165, 166], "giant": 21, "gif": [129, 171], "giphi": 129, "git": [3, 5, 7, 15, 82, 89, 125, 129, 149, 154, 185, 188, 189, 192], "github": [3, 5, 7, 8, 10, 11, 12, 14, 16, 37, 43, 49, 64, 71, 72, 73, 87, 95, 96, 97, 115, 125, 129, 149, 151, 152, 161, 165, 185, 187, 189, 190, 203, 204, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 232, 240, 243], "github_notif": 96, "github_token": 15, "github_usernam": 82, "githubusercont": [82, 152, 156], "githubusernam": 202, "gitignor": 3, "gitkeep": 8, "give": [0, 7, 10, 15, 16, 20, 22, 35, 46, 49, 71, 81, 82, 87, 97, 98, 101, 122, 125, 129, 132, 185, 188, 192, 199, 202, 220, 222, 232], "given": [5, 18, 20, 33, 40, 42, 45, 52, 58, 59, 66, 69, 94, 101, 106, 107, 123, 133, 144, 148, 150, 192, 199, 202, 204, 228, 229, 231, 232, 233], "glad": 150, "glass": 76, "glib": 82, "global": [20, 21, 25, 28, 36, 37, 42, 53, 61, 86, 90, 93, 95, 98, 104, 113, 132, 185, 186, 192, 198, 199, 226, 227, 234, 235], "glossari": [163, 191, 201], "gmbh": 185, "gmt": 61, "gnome": 79, "gnu": 185, "gnupg": 152, "gnupghom": 152, "go": [13, 20, 23, 41, 42, 45, 61, 72, 76, 82, 101, 105, 122, 126, 129, 148, 151, 166, 185, 188, 190, 192, 204, 231], "goal": [14, 82, 148, 199, 204], "goe": [0, 21, 23, 98, 106, 132, 165, 189, 199], "golang": 151, "good": [20, 36, 42, 44, 49, 71, 90, 107, 131, 160, 185, 194, 196, 202, 204], "googl": [20, 21, 79, 98], "googletest": 243, "gosu": 152, "gosu_vers": 152, "got": [115, 129, 215, 221, 222, 229], "goto": 73, "gotorout": 73, "gp": 229, "gpg": 152, "gpgconf": 152, "gpl": 5, "gpl3": 5, "gpt": 140, "gpu": [151, 162, 163, 165], "gracefulli": 115, "grain": [18, 185], "grammar": [8, 140], "grammat": 42, "grant": [8, 10, 20, 34, 44, 52, 176, 209], "graph": 129, "great": [14, 15, 49, 71, 81, 110], "greatli": [200, 204], "greet": [1, 190], "grep": [5, 16], "grid": [77, 194], "group": [0, 1, 8, 34, 36, 37, 45, 46, 48, 52, 61, 70, 73, 96, 122, 132, 134, 135, 138, 155, 176, 184, 185, 189, 209, 210, 215, 218, 221, 228, 229, 231], "group1": 48, "groupbackendregist": 221, "groupdeletedev": 229, "groupfold": [231, 236], "groupid": [22, 70], "groupinterfac": 228, "groupmanag": 232, "groupwar": [106, 113, 201], "grow": 185, "grunt": 118, "gt": [66, 104], "guarante": [18, 90, 121, 122, 135, 140, 190, 231], "guard": [1, 133], "guess": [20, 58], "guest": [20, 46, 56, 57, 58, 61, 76, 128, 235], "gui": 82, "guid": [8, 38, 63, 73, 76, 78, 79, 161, 201, 204, 214], "guidanc": [49, 81], "guidelin": [11, 28, 76, 77, 79, 151, 191, 201, 202, 203, 204, 208], "guidelines_and_howto": 204, "guyjgtckptkci4epiriupiexgj8wninmfsfhabacrpzukmeawzsm54bfkfuzwksbps7jmtfqjesklpyjxyhphlgk8szbn9hxlxjohix5ixgjkdokkztyczuwhlsg3yfg": 44, "gz": [15, 16, 152], "h": [44, 46, 48, 62, 64, 66, 82, 96, 101, 126, 129], "h2": 134, "h3": 134, "ha": [0, 3, 5, 10, 14, 16, 17, 18, 19, 20, 21, 22, 25, 29, 30, 33, 35, 37, 40, 42, 43, 44, 47, 48, 49, 52, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 73, 76, 77, 80, 81, 82, 94, 95, 96, 99, 101, 103, 107, 110, 115, 118, 123, 126, 127, 129, 131, 132, 134, 137, 139, 140, 141, 142, 144, 146, 149, 154, 165, 166, 169, 171, 175, 185, 188, 189, 190, 192, 199, 204, 206, 209, 210, 213, 215, 218, 221, 222, 223, 225, 228, 229, 230, 231, 232, 233, 234, 236, 238, 240], "had": [3, 202, 220, 227, 228], "hadn": 222, "hairi": [185, 188], "halfemptycontentmessag": 96, "ham": 187, "hamper": 14, "hand": [14, 21, 46, 81, 105, 140, 206], "handbook": 243, "handl": [4, 10, 14, 15, 21, 22, 25, 27, 29, 30, 36, 37, 40, 43, 45, 63, 86, 90, 94, 97, 98, 101, 102, 104, 113, 115, 122, 128, 129, 131, 134, 137, 139, 140, 141, 142, 144, 145, 147, 148, 150, 166, 167, 171, 186, 188, 190, 199, 200, 202, 204, 209, 222, 226, 231, 232, 235, 236], "handlebar": [219, 235, 239], "handleerror": 49, "handlegetproperti": [2, 148], "handleimipmessag": [107, 227], "handler": [2, 44, 49, 70, 86, 99, 101, 113, 148, 153, 166, 171, 234], "handler_rout": 175, "happen": [10, 17, 18, 22, 25, 37, 42, 46, 58, 81, 97, 105, 115, 118, 122, 140, 153, 209, 232], "happi": 14, "haproxi": [158, 165], "haproxy_password": 165, "hard": [14, 21, 22, 76, 107, 115, 190, 206], "hardcod": 231, "harder": [20, 21, 37, 185], "hardwar": 159, "harm": 15, "harp": [155, 163], "hasannot": 30, "hasappkei": 90, "hasbackend": 139, "hasbeenaccess": 101, "hascalendarincalendarhom": 107, "hasconfig": 90, "hash": [10, 61, 128, 136, 231], "hasher": 232, "haskei": [90, 93, 216], "hasmobilesupport": 192, "hasn": 16, "hasprovid": [116, 137, 140, 141, 142], "hasreservedjob": 228, "hasservic": 110, "hassvgsupport": 216, "hastabl": 136, "hastemplatesavea": 192, "have": [0, 5, 7, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 33, 34, 35, 37, 38, 40, 42, 44, 48, 49, 50, 52, 54, 61, 63, 64, 70, 72, 73, 76, 77, 79, 80, 81, 82, 83, 85, 87, 89, 90, 92, 93, 95, 96, 98, 99, 107, 110, 115, 116, 118, 121, 122, 123, 128, 129, 130, 131, 132, 133, 134, 137, 140, 141, 142, 144, 150, 151, 156, 158, 159, 160, 162, 166, 167, 170, 175, 176, 185, 186, 188, 189, 190, 192, 194, 195, 198, 199, 200, 202, 204, 206, 209, 210, 211, 213, 221, 222, 223, 225, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 241, 243], "haven": 222, "he": 81, "head": [9, 13, 16, 33, 62, 76, 77, 81, 82, 86, 113, 135, 144, 231], "header": [17, 22, 25, 30, 32, 44, 45, 46, 50, 51, 52, 53, 54, 56, 57, 58, 59, 62, 63, 64, 65, 74, 76, 86, 101, 108, 112, 113, 115, 125, 166, 170, 178, 183, 190, 191, 192, 193, 194, 199, 209, 227, 232, 233, 240], "headermiddlewar": 30, "headers_to_exclud": 178, "headlin": [42, 124, 140, 142], "headlinetasktyp": [142, 231], "health": 153, "healthcheck": 166, "healthi": 166, "hear": 14, "heartbeat": [151, 165, 183], "heavi": [104, 122, 160], "heavili": [3, 202, 226], "height": [17, 22, 77, 129, 194, 199, 229], "hell": 115, "hello": [1, 42, 43, 69, 81, 103, 130, 147, 186, 190, 198], "help": [0, 5, 8, 9, 14, 21, 22, 33, 37, 40, 42, 43, 48, 49, 76, 82, 92, 98, 99, 100, 104, 107, 108, 113, 120, 125, 129, 133, 149, 154, 159, 184, 185, 186, 188, 189, 199, 201, 202, 203, 204, 208, 231], "helper": [0, 1, 20, 21, 29, 45, 76, 87, 90, 97, 98, 102, 107, 113, 115, 129, 133, 190, 231, 234], "henc": [3, 5, 118, 132, 144, 221, 222], "her": 122, "here": [0, 9, 20, 21, 22, 25, 33, 36, 43, 45, 46, 49, 61, 70, 71, 73, 76, 82, 83, 89, 96, 98, 99, 101, 105, 106, 107, 116, 120, 128, 129, 131, 137, 140, 142, 148, 153, 154, 161, 162, 167, 171, 173, 174, 180, 186, 187, 188, 189, 190, 196, 198, 199, 204, 222, 229, 240, 243], "heveri": 243, "hex": [46, 62, 76], "hexadecim": 129, "hi": [20, 81, 186, 187], "hidden": [61, 69, 90, 93, 103, 175, 190, 193, 194, 198, 199, 231, 232], "hide": [42, 49, 61, 93, 118, 139, 192, 193, 194, 199, 200, 232], "high": [19, 20, 38, 76, 185, 194, 209, 237], "highcontrast": 221, "higher": [5, 16, 38, 199, 217, 227], "highest": 20, "highli": [0, 10, 12, 16, 20, 95, 115, 131, 149, 159, 211, 221, 229], "highlight": [19, 76, 77, 209, 233], "hint": [20, 21, 22, 36, 81, 99, 127, 190, 199, 215, 220, 221, 222], "hintexcept": 36, "histori": [47, 73, 140, 154, 199], "hit": 125, "hkp": 152, "ho": 187, "hoist": 186, "hold": [8, 17, 20, 22, 44, 76, 97, 131, 232, 240], "hole": [20, 209], "home": [15, 27, 38, 46, 76, 82, 146, 152, 192, 215], "homebrew": 82, "homepag": [5, 129], "homogen": 199, "hood": 190, "hook": [0, 2, 28, 30, 75, 210, 221, 222, 232], "horizont": 160, "host": [8, 48, 86, 92, 101, 110, 113, 114, 115, 135, 149, 150, 152, 158, 159, 160, 161, 165, 190, 192, 199, 209, 218, 222, 234, 243], "hostnam": [133, 136, 156, 192, 218, 230, 234], "hostvalid": 133, "hot": 90, "hour": [18, 42, 46, 63, 69, 76, 133, 141, 198], "housekeep": [44, 64], "hover": [79, 125, 185, 194, 195, 198, 199, 233], "hoverclass": 199, "how": [0, 11, 18, 20, 25, 28, 32, 42, 43, 45, 46, 61, 66, 71, 72, 76, 79, 89, 95, 96, 97, 98, 101, 105, 106, 118, 125, 126, 127, 129, 132, 133, 140, 141, 142, 144, 147, 150, 162, 167, 179, 185, 188, 189, 191, 201, 206, 209, 213, 214, 223, 233, 234, 241, 243], "howev": [8, 14, 20, 35, 38, 46, 49, 82, 85, 93, 96, 97, 98, 106, 107, 115, 126, 140, 141, 142, 204, 209, 221, 222, 229, 232, 233, 238], "href": [42, 61, 66, 104, 108, 147, 198, 199, 200, 209], "html": [7, 14, 23, 26, 28, 49, 61, 73, 97, 100, 103, 110, 113, 131, 154, 156, 175, 185, 186, 189, 190, 192, 201, 209, 221, 227, 229, 243], "html5": [184, 195], "http": [0, 3, 5, 6, 7, 8, 10, 13, 15, 20, 25, 30, 31, 32, 33, 34, 37, 43, 44, 46, 48, 49, 60, 61, 62, 63, 64, 66, 67, 68, 70, 72, 73, 74, 82, 86, 95, 96, 97, 98, 104, 107, 108, 113, 115, 116, 118, 125, 128, 129, 130, 131, 132, 133, 134, 136, 137, 140, 141, 142, 147, 148, 149, 151, 152, 153, 156, 161, 165, 166, 170, 174, 175, 178, 189, 190, 192, 196, 202, 204, 209, 215, 218, 219, 220, 221, 222, 227, 228, 229, 230, 231, 232, 233, 234, 235, 240, 243], "http_content_typ": 20, "http_proxi": 156, "httpclient": 70, "httpd": 189, "httphelper": 215, "httpprovid": 25, "https_proxi": 156, "hu": 8, "hu_hu": 8, "hub": 43, "huggingfac": 166, "human": [42, 79, 90, 101, 129, 140], "humanfiles": [217, 220, 221, 233], "hundr": 206, "hungri": 104, "hurdl": [42, 44], "hw39yxkp": 96, "hyperlink": 101, "hyphen": 1, "i": [0, 1, 2, 3, 5, 6, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 76, 77, 79, 80, 81, 83, 85, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 103, 104, 105, 106, 107, 108, 110, 113, 114, 115, 116, 118, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 141, 142, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 156, 158, 159, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 180, 181, 185, 186, 187, 188, 189, 190, 192, 193, 194, 196, 197, 198, 199, 202, 203, 206, 209, 210, 211, 212, 213, 215, 217, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 242, 243], "i_request": 186, "iaccountmanag": [124, 228, 231, 233], "iaction": [231, 233, 234], "iactionfactori": 108, "iactivatablebyadmin": 144, "iaddress": 110, "iapicollect": 210, "iapifactori": 210, "iapp": 231, "iappconfig": [21, 90, 92, 230, 232, 233], "iappcontain": [215, 221], "iappdata": [35, 38, 233], "iappmanag": [21, 211, 228, 229, 231, 232, 233, 235], "iattribut": 231, "iauthmechanismprovid": 25, "iauthormapp": 21, "iavailabilitycoordin": 121, "iavatarmanag": [21, 232], "ibackend": 106, "ibackendprovid": 25, "ibinaryfind": 233, "iboostrap": 233, "ibootcontext": [0, 21, 25, 30, 49, 96, 101, 104, 106, 116, 124, 125, 126, 132, 137, 140, 141, 142, 145, 147], "ibootstrap": [0, 2, 21, 25, 30, 31, 49, 96, 101, 104, 106, 116, 124, 125, 126, 132, 135, 137, 140, 141, 142, 145, 147], "ibroadcastev": 211, "ibrok": 139, "ibu": 232, "ibulkprovid": 108, "ic": [54, 106, 107], "icach": [21, 38, 232], "icachefactori": [19, 21, 232], "ical": 107, "icalendar": [106, 107], "icalendareventbuild": 106, "icalendarobject": 107, "icalendarprovid": 107, "icalendarqueri": 106, "icallbackrespons": 20, "icap": 49, "icapabilitiesapi": 210, "icapabilityawareocmprovid": 233, "icewind1991": 232, "iclientservic": [112, 133], "icloud": 82, "icollect": 148, "icom": 220, "icommentsmanag": [229, 232], "icomplexoper": 105, "icon": [5, 7, 20, 24, 25, 43, 46, 54, 69, 76, 78, 88, 96, 105, 108, 113, 124, 126, 129, 132, 134, 171, 181, 184, 193, 194, 197, 198, 199, 200, 201, 215, 223, 227, 231], "icon_class": 96, "icon_url": [96, 129], "iconclass": 25, "iconfig": [21, 34, 36, 99, 134, 135, 190, 232], "iconographi": 79, "iconstructablestorag": 232, "iconsvg": 87, "icontain": 221, "icontentsecuritypolicymanag": 232, "icontrollermethodreflector": [21, 30, 218, 232], "iconurl": [96, 126], "iconv": [5, 242], "icountusersbackend": 232, "icreatefromstr": [106, 107, 227], "icreategroupbackend": 231, "icreatenamedgroupbackend": 231, "icredenti": 210, "icredentialsmanag": 232, "icrypto": [21, 215, 232], "id": [1, 5, 8, 15, 17, 18, 20, 21, 22, 25, 29, 33, 37, 38, 41, 42, 43, 45, 48, 49, 50, 52, 54, 61, 64, 66, 69, 71, 82, 87, 90, 93, 94, 96, 99, 101, 104, 105, 108, 110, 113, 114, 121, 122, 124, 126, 127, 129, 130, 134, 139, 140, 141, 142, 145, 148, 149, 164, 165, 166, 168, 170, 171, 174, 177, 179, 182, 184, 186, 193, 195, 198, 199, 200, 209, 218, 227, 229, 230, 233], "id497799835": 82, "id_token": 46, "idatalogg": 29, "idatetimeformatt": [134, 232], "idatetimezon": [21, 232, 233], "idbconnect": [21, 37, 40, 213, 223, 229, 231, 232, 233], "idea": [16, 81, 101, 107, 115, 116, 122, 125, 129, 132, 137, 140, 141, 142, 185, 196], "ideactivatablebyadmin": 144, "ideal": [76, 79, 122, 129, 185, 188], "ideclarativesettingsform": 99, "idecod": 136, "idelegatedset": 34, "ident": [16, 79, 85, 119, 190, 221], "identifi": [2, 5, 10, 17, 20, 22, 29, 33, 37, 42, 44, 56, 57, 69, 76, 79, 87, 96, 100, 101, 107, 113, 116, 122, 125, 128, 129, 132, 136, 137, 140, 141, 142, 144, 161, 185, 189, 190, 204, 231, 234], "idetectlanguageprovid": [116, 231], "ie": 231, "ieditor": 101, "iemailvalid": 233, "ientiti": 105, "ientitycompat": 228, "ientri": 108, "ietf": 64, "ievent": [69, 231, 234], "ieventdispatch": [22, 29, 126, 138, 220, 229], "ieventlisten": [2, 22, 25, 29, 40, 99, 101, 104, 129, 137, 140, 141, 142], "ieventlogg": [21, 232], "ieventmerg": 69, "ieventsourc": 229, "ieventsourcefactori": [229, 231], "iexportdestin": 145, "iexpressionbuild": 231, "iexternalprovid": [132, 233], "ifactori": [42, 232], "iff": 215, "ifil": 232, "ifilenamevalid": [231, 233], "ifilesmetadata": 104, "ifilesmetadatamanag": [104, 229], "ifilt": 69, "ifilteringprovid": 132, "ifoomanag": 0, "ifram": 209, "ifs": [186, 187], "ifunctionbuild": 211, "igener": 136, "ignor": [8, 16, 23, 43, 45, 69, 90, 92, 101, 123, 198, 204, 232], "ignorefil": [3, 95], "ignoreopenapi": 49, "igroup": 229, "igroupmanag": [21, 122, 231, 232, 235], "ihandl": 147, "ihandleimipmessag": [107, 227], "ihash": [21, 231, 232], "ihelp": 215, "ii": 204, "iiconsect": [34, 134], "iiconwidget": 231, "iimag": [141, 232], "iimportsourc": 145, "iinappsearch": 132, "iinitialst": [25, 31, 190], "iinitialstateservic": [96, 115], "iinstanc": 210, "iinstancefactori": 210, "iinternaltasktyp": 140, "ijob": [18, 234], "ijoblist": [18, 21, 134, 227, 228, 232, 234], "il10n": [21, 31, 34, 42, 96, 116, 124, 132, 134, 135, 137, 140, 141, 142, 145, 215], "ildapprovid": 232, "ildapproviderfactori": 223, "ilexicon": 92, "ilimit": 133, "ilimitawarecountusersbackend": 232, "ilinkact": 124, "illeg": 14, "illustr": 3, "ilockingprovid": 232, "ilockmanag": 231, "ilogfactori": [29, 223, 230], "ilogg": [29, 215, 221, 232], "iloginsetupprovid": 233, "imag": [5, 7, 20, 24, 33, 45, 46, 47, 49, 61, 66, 75, 82, 84, 101, 113, 126, 131, 140, 151, 152, 154, 157, 158, 165, 171, 174, 183, 194, 209, 232, 233], "image2text": 140, "image_nam": [151, 166], "image_path": 26, "image_src": 166, "image_tag": 166, "image_typ": 129, "image_url": 129, "imagegenerationprovid": 141, "imagegenerationresultlisten": 141, "imageparam": 166, "imagepath": [34, 96, 124, 134, 220], "imagetotextopticalcharacterrecognit": [140, 234], "imageurl": 129, "imagick": 242, "imagin": [3, 49], "imail": [103, 232, 233], "imailmanag": 110, "imanag": [0, 21, 69, 106, 110, 138, 140, 141, 142, 210, 211, 216, 217, 219, 220, 224, 227, 231, 232, 235], "imap": 125, "imapperexcept": 228, "imdb_id": 129, "imenuact": 20, "imessag": [103, 110, 227, 229], "imessagesend": 110, "imetadatabackgroundev": 229, "imetadataliveev": 229, "imetadataqueri": [104, 229], "imetadatavaluewrapp": 104, "imetricfamili": [120, 234], "img": [5, 7, 26, 27, 33, 43, 69, 96, 108, 129, 132, 154, 171, 181, 196, 227], "imigr": 145, "imigrationstep": 215, "imimetypedetector": 232, "imimetypeload": [230, 232], "immedi": [2, 20, 29, 81, 140, 185, 220], "immut": 37, "imountmanag": 232, "imountpoint": [38, 232], "imountprovid": 38, "imountprovidercollect": [21, 38, 232], "impact": [18, 122, 188, 230, 233], "implement": [0, 1, 2, 5, 15, 17, 18, 20, 21, 22, 25, 29, 30, 31, 34, 37, 40, 49, 55, 56, 57, 60, 61, 64, 66, 70, 75, 81, 84, 86, 88, 92, 96, 99, 104, 105, 106, 107, 108, 110, 113, 114, 115, 124, 125, 126, 127, 129, 130, 131, 132, 134, 135, 136, 145, 147, 148, 150, 151, 153, 154, 162, 165, 166, 176, 190, 199, 209, 210, 213, 220, 227, 228, 230, 231, 232, 233, 234, 236], "impli": [40, 48, 49, 129], "implic": [61, 131], "implicit": [20, 186], "implicitli": [37, 107, 220], "import": [16, 20, 23, 25, 29, 30, 37, 41, 42, 49, 61, 72, 73, 76, 77, 79, 82, 94, 96, 105, 106, 115, 120, 122, 125, 126, 129, 131, 135, 140, 145, 151, 154, 165, 185, 188, 190, 192, 198, 199, 204, 214, 220, 229, 231, 232, 243], "important_list_item": 184, "importlogg": 29, "importservic": 29, "importsourc": 145, "impos": 131, "imposs": 166, "improv": [21, 25, 49, 79, 81, 89, 90, 96, 122, 125, 132, 152, 185, 186, 188, 200, 204, 211, 233, 234], "impur": 21, "imyappmanag": 145, "in_arrai": [140, 142, 192], "inact": 63, "inadvertenli": 188, "inappsearch": 132, "inavigationmanag": [21, 232], "inbox": 192, "inc": 26, "includ": [3, 13, 14, 16, 20, 21, 23, 24, 25, 29, 37, 42, 44, 48, 49, 60, 61, 69, 71, 72, 82, 85, 89, 90, 92, 93, 95, 96, 104, 107, 124, 125, 129, 130, 131, 135, 140, 151, 152, 154, 167, 171, 179, 181, 188, 206, 209, 222, 232, 233, 234, 235, 238], "include_onc": 0, "includewatermark": [140, 213, 234], "inclus": [81, 204, 208], "incom": 190, "incompat": [16, 131, 222, 229], "incomplet": [16, 85, 204], "incompleteactivityexcept": 231, "incompletenotificationexcept": 231, "incompleteparsednotificationexcept": 231, "inconsist": [49, 122], "incorpor": 150, "incorrect": [49, 156], "incorrectli": [17, 22, 232], "increas": [14, 16, 20, 122, 134, 160, 202, 213, 219, 225, 229, 231, 232, 234], "increment": [16, 37, 90, 118, 122], "indent": [82, 184, 185], "independ": [33, 51, 115, 231], "index": [5, 6, 20, 21, 32, 33, 37, 40, 44, 45, 46, 56, 60, 92, 94, 96, 101, 104, 122, 124, 125, 126, 131, 132, 133, 140, 154, 171, 174, 186, 190, 192, 209, 236], "indic": [14, 17, 22, 39, 42, 43, 49, 56, 61, 76, 77, 79, 85, 107, 116, 123, 132, 137, 140, 141, 142, 150, 165, 181, 202, 213, 229, 232, 233, 234], "indirect": 222, "indirectli": 20, "individu": [8, 21, 34, 42, 61, 63, 95, 106, 204], "inevit": [222, 229], "infer": 49, "infin": [66, 104], "influenc": [37, 122, 146, 185], "info": [1, 5, 6, 12, 13, 15, 21, 22, 29, 32, 34, 37, 69, 70, 76, 77, 89, 97, 107, 109, 115, 118, 120, 129, 130, 134, 135, 144, 148, 151, 154, 156, 167, 170, 171, 174, 176, 178, 183, 185, 189, 194, 204, 231, 232, 233, 234], "inform": [10, 15, 17, 20, 22, 25, 26, 27, 29, 37, 38, 42, 44, 45, 46, 61, 70, 76, 77, 82, 83, 85, 88, 96, 97, 110, 113, 115, 116, 124, 125, 127, 129, 131, 132, 135, 136, 137, 140, 142, 144, 145, 154, 155, 169, 185, 197, 202, 204, 206, 209, 223, 225, 229, 231, 232, 233, 234, 236], "infrastructur": [14, 133, 236], "infrequ": [20, 90], "inherit": [1, 18, 30, 37, 54, 61, 107, 131], "inheritdoc": [96, 126], "inheritor": [49, 232], "ini": [98, 135, 243], "inigetwrapp": 232, "init": [25, 48, 82, 151, 165, 172, 179, 183, 189], "init_timeout": 153, "initcor": 218, "initi": [0, 2, 4, 17, 19, 22, 24, 31, 32, 44, 45, 49, 63, 76, 87, 94, 96, 104, 110, 135, 137, 148, 151, 153, 165, 166, 170, 171, 172, 179, 190, 204, 221, 222, 231], "initialis": 229, "initialprovid": 129, "initialst": [25, 31, 190], "initialstateservic": 96, "initiatemessag": 110, "initmetadata": [104, 229], "iniwrapp": 232, "inject": [0, 1, 17, 18, 19, 20, 22, 25, 28, 29, 33, 36, 38, 40, 42, 69, 90, 93, 96, 101, 103, 104, 106, 110, 112, 116, 125, 127, 129, 132, 133, 137, 139, 140, 141, 142, 143, 144, 146, 167, 193, 201, 208, 215, 221, 229, 232, 233, 243], "injectfn": [0, 126], "inlin": [20, 76, 86, 113, 184, 194, 209, 232], "inlineblock": 194, "inmemoryfil": 227, "inner": 236, "innodb": 97, "innodb_print_all_deadlock": 97, "inod": [2, 148], "inotif": [231, 233, 234], "inotifi": 231, "input": [1, 21, 46, 56, 57, 58, 69, 77, 78, 81, 82, 84, 113, 114, 116, 129, 134, 141, 142, 166, 175, 187, 194, 195, 198, 199, 200, 209, 221, 229, 231, 233], "inputargu": 1, "inputinterfac": 1, "inputopt": 1, "insecur": [17, 22, 192], "insensit": 122, "insert": [17, 18, 22, 37, 42, 76, 97, 101, 122, 129, 132, 136, 190, 234], "insertgraph": 101, "inset": [194, 232], "insid": [0, 7, 18, 20, 21, 27, 33, 34, 37, 42, 61, 62, 66, 76, 77, 80, 90, 96, 110, 120, 122, 129, 141, 142, 152, 154, 166, 192, 198, 199, 209, 228, 239, 240], "insight": [94, 97], "inspect": [32, 33, 136, 192], "inspir": [3, 158], "instal": [0, 3, 5, 8, 10, 13, 14, 16, 17, 18, 19, 20, 21, 22, 32, 37, 40, 42, 45, 47, 49, 56, 58, 61, 76, 79, 95, 98, 115, 118, 119, 122, 125, 129, 130, 134, 139, 145, 152, 153, 154, 159, 161, 163, 170, 178, 183, 185, 187, 189, 190, 192, 204, 210, 233, 239, 242], "installer_fil": 82, "instanc": [0, 5, 16, 17, 18, 19, 20, 21, 22, 27, 29, 30, 38, 40, 46, 52, 61, 62, 63, 82, 92, 95, 101, 104, 105, 106, 107, 108, 110, 112, 115, 121, 122, 125, 127, 129, 130, 133, 134, 135, 147, 152, 154, 165, 170, 175, 187, 189, 209, 213, 228, 229, 232, 233, 234], "instanceid": 171, "instanceof": [2, 20, 21, 22, 25, 29, 38, 40, 41, 70, 94, 99, 101, 104, 106, 126, 129, 137, 140, 141, 142, 147], "instanti": [0, 21, 22, 96, 110, 124, 145, 190], "instantli": [122, 140], "instead": [7, 8, 17, 20, 21, 22, 26, 33, 34, 37, 42, 46, 49, 57, 61, 69, 71, 76, 79, 82, 87, 98, 101, 107, 116, 127, 129, 130, 131, 137, 140, 141, 142, 145, 184, 185, 186, 187, 190, 196, 209, 210, 211, 218, 219, 220, 221, 222, 223, 224, 227, 228, 229, 230, 231, 232, 233, 234, 235], "instruct": [3, 42, 49, 61, 118, 140, 149, 151, 152, 167, 186], "insuffici": 63, "int": [1, 5, 18, 20, 22, 33, 34, 37, 38, 43, 49, 50, 52, 53, 54, 56, 57, 69, 70, 90, 92, 93, 96, 104, 121, 123, 124, 132, 134, 140, 141, 142, 143, 145, 171, 220, 228, 229, 234], "integ": [1, 20, 37, 40, 66, 129, 136, 140, 141, 165, 166, 171, 173, 192], "integr": [5, 10, 12, 15, 17, 22, 47, 71, 72, 75, 76, 84, 96, 98, 100, 104, 111, 113, 115, 124, 126, 127, 129, 134, 136, 145, 150, 155, 185, 201, 202, 222, 225, 229, 231, 232, 234], "integration_github": [96, 129], "integration_openstreetmap": 129, "integration_tmdb": 129, "integration_tmdb_movi": 129, "intellig": 140, "intend": [5, 14, 42, 115, 140], "intens": [56, 57, 58, 107], "intent": [14, 77], "inter": [22, 115], "interact": [0, 4, 17, 20, 21, 22, 69, 76, 77, 79, 94, 107, 115, 119, 131, 140, 144, 188, 190, 194, 199, 229, 231], "intercept": 30, "interchang": 199, "interest": [13, 14, 29, 32, 37, 71, 77, 129, 232], "interfac": [0, 17, 20, 22, 31, 38, 42, 69, 79, 85, 86, 90, 95, 98, 99, 100, 103, 105, 106, 109, 111, 113, 116, 121, 122, 124, 129, 130, 131, 132, 134, 135, 137, 138, 140, 141, 142, 144, 145, 147, 150, 158, 175, 191, 194, 202, 204, 209, 210, 213, 215, 220, 221, 222, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238], "interfer": 25, "interleav": 0, "intermedi": [213, 228], "intern": [5, 16, 17, 21, 22, 29, 32, 37, 38, 48, 81, 90, 93, 96, 106, 107, 113, 122, 123, 127, 129, 133, 134, 135, 159, 173, 182, 190, 192, 201, 218, 223, 232, 236], "internaltokenrequestedev": 119, "internation": 42, "internet": [156, 223], "interpol": 28, "interpret": [61, 132, 209], "interrupt": 63, "interv": [96, 179], "intervent": 20, "intric": 150, "introduc": [2, 14, 20, 43, 47, 64, 122, 129, 131, 140, 150, 164, 188, 206, 228, 231, 233], "introduct": [4, 28, 65, 78, 140, 163, 197, 201, 215, 241], "introductori": 190, "invalid": [1, 10, 17, 20, 22, 57, 59, 76, 81, 101, 122, 123, 128, 173, 192, 204, 227, 231], "invalid_hash": 10, "invalidargumentexcept": [69, 146, 222, 231], "invalidatecooki": 20, "invalidatetokensofus": 227, "invalidvalueexcept": [231, 233, 234], "invert": [27, 194, 231], "investig": 185, "invis": [54, 209], "invit": [8, 42], "invoc": 0, "invok": [0, 3, 8, 25, 118, 132, 171, 190], "involv": [82, 119, 131, 159, 166, 188], "io": [43, 79, 101, 107, 115, 154, 165, 166, 203, 225, 229, 232, 243], "iocmprovid": 233, "ioper": 105, "ioperationcompat": 228, "ioutofofficedata": 121, "ioutput": [20, 40, 130, 136], "ip": [20, 133, 161, 192], "ipaddress": 192, "iparallelawarejob": 228, "ipeparedstat": 222, "ipersonalproviderset": 233, "iphonenumberutil": [123, 229], "ipreloadablenotifi": 233, "ipreparedstat": 222, "ipreview": [21, 210, 229, 232], "iprofil": 125, "iprovid": [69, 108, 110, 126, 132, 140, 141, 142, 144, 227, 229, 231, 233, 234], "iprovideenabledstatebackend": [229, 231], "iprovidermanag": [126, 219], "iproviderwithexpectedruntim": [142, 231], "iproviderwithid": 231, "iproviderwithuserid": [142, 231], "iprovidesicon": 144, "iprovidespersonalset": 144, "ipublicreferenceprovid": [129, 231], "ipublicsharetemplateprovid": 31, "iquerybuild": [37, 104, 213, 231, 232, 234], "iquerylogg": [21, 232], "iratelimitexceededexcept": 133, "irefer": 129, "ireferenceprovid": 129, "iregistrationcontext": [0, 2, 21, 25, 30, 31, 43, 49, 92, 96, 99, 101, 104, 106, 110, 116, 124, 126, 132, 135, 137, 140, 141, 142, 145, 147, 210, 221, 230, 231], "iregistri": [229, 233], "iremotehostvalid": 133, "irepairstep": 130, "irepairstepexpens": [130, 213], "irequest": [18, 20, 21, 33, 35, 126, 131, 186, 190, 230, 232], "irequestcontext": 147, "iresourc": 126, "iresourceprovid": 126, "irespons": 147, "iresult": [222, 229, 234], "irichtextformatt": 232, "irootfold": [21, 38, 210, 231, 232], "irootstorag": 38, "irout": [21, 232, 233], "irregular": 14, "irrelev": 204, "is_arrai": 1, "is_avail": 56, "is_en": 134, "isadmin": [231, 235], "isallow": 20, "isappload": 228, "isarrai": 192, "isavail": [56, 223], "isbackendrequir": 231, "ischemawrapp": [40, 136], "iscontentencod": 48, "iscontextchatavail": 94, "isdefaultenabledmail": 69, "isdefaultenabledstream": 69, "isdefaultexpiredateenforc": 211, "isdirectori": 70, "isearch": [21, 215, 232], "isearchablegroupbackend": 228, "isearchablereferenceprovid": 129, "isearchqueri": 132, "isecurerandom": [21, 217, 232], "isen": [96, 121, 224, 229], "isenabledforus": 229, "iservercontain": [21, 30, 36, 221, 232, 233], "iservic": 110, "isess": [20, 221], "iset": [34, 69, 134], "isetupcheck": 135, "isexternalprovid": 132, "isfiltervalid": 217, "isformattingfilteredobject": 69, "ishar": [31, 231], "ishareownerlessmount": 232, "ishareprovid": [233, 235], "ishareprovidersupportsallsharesinfold": 233, "isi": 223, "isie8": 216, "isimplefil": [227, 228], "isindex": 93, "isineffect": 121, "isinsideview": [87, 129], "isinteract": 1, "isintern": 140, "isizeestimationmigr": [145, 228], "islazi": [90, 93], "islegitimatedforuserid": 105, "ismimetypeicon": 69, "isn": [56, 130, 204, 217, 223], "iso": [58, 61, 69, 123], "isol": 95, "isp": 46, "ispagin": [129, 132], "ispasswordprotect": 128, "ispecificoper": 105, "ispeechtotextmanag": [137, 231], "ispeechtotextprovid": [137, 231], "ispeechtotextproviderwithid": 231, "ispeechtotextproviderwithuserid": [137, 231], "ispubliclinkpasswordrequir": 211, "ispublicshar": 232, "isreadonlyconfigen": 233, "issamepath": 219, "issecur": 101, "issensit": [90, 93], "isset": [19, 140], "issu": [2, 3, 5, 8, 10, 14, 20, 42, 46, 49, 71, 75, 76, 82, 92, 96, 97, 101, 122, 125, 130, 135, 145, 150, 156, 159, 162, 167, 185, 186, 187, 188, 203, 222, 226, 231, 232, 233, 240], "issuccess": [20, 70], "issuehandl": 95, "istatusmanag": 138, "istorag": [38, 231, 232], "istrusteddomain": 133, "istrustedurl": 133, "istwofactorauthenabledforus": 144, "istyp": 228, "isuseradmin": 218, "isvalid": 133, "isvalidfilenam": 231, "isvalidtoken": 128, "isynchronousoptionsawareprovid": [140, 211, 213], "isynchronousprovid": 140, "isynchronouswatermarkingprovid": [211, 234], "isystemtagmanag": 229, "isystemtagobjectmapp": 232, "itag": 220, "itagmanag": [21, 220, 232], "ital": 77, "itasktyp": [140, 142, 231], "item": [16, 17, 22, 29, 38, 42, 46, 49, 54, 67, 77, 78, 79, 80, 94, 96, 104, 126, 140, 148, 186, 194, 197, 199, 200, 229, 231], "item_icons_round": 96, "item_typ": 230, "itemid": [29, 46, 94, 126], "itempickerdialog": 126, "itempl": 233, "itemplatemanag": 233, "itempmanag": [21, 232], "items_process": 29, "itemsperpag": [46, 168, 177, 182], "itemtitl": 126, "itemtyp": [46, 53], "iter": [231, 234], "iterateassoci": 234, "iteratenumer": 234, "ithrottl": 232, "itimefactori": [18, 21, 127, 143, 215, 228, 232], "itinerari": 110, "itoken": [101, 229, 231], "itranslationmanag": [116, 231], "itranslationprovid": [116, 231], "itranslationproviderwithid": 231, "itranslationproviderwithuserid": [116, 231], "itrashitem": 231, "itriggerableprovid": 140, "itrusteddomainhelp": [133, 232], "its": [0, 2, 10, 16, 17, 19, 20, 21, 22, 26, 29, 35, 37, 38, 42, 44, 46, 48, 52, 61, 67, 69, 71, 73, 82, 90, 92, 93, 101, 104, 105, 107, 132, 134, 140, 141, 142, 148, 153, 158, 166, 186, 188, 189, 190, 200, 209, 220, 227, 229, 232, 235, 236, 240], "itself": [17, 21, 22, 30, 40, 43, 44, 52, 60, 77, 81, 89, 101, 105, 129, 160, 190, 193, 204, 223, 230, 232], "itypedquerybuild": 213, "iurlgener": [21, 31, 33, 34, 96, 124, 126, 132, 134, 147, 211, 230, 232, 235], "iuser": [22, 42, 121, 124, 126, 132, 133, 139, 144, 145, 146, 210, 220, 229, 231, 232, 233], "iuserapi": 210, "iuserconfig": [92, 93], "iusermanag": [1, 21, 22, 31, 122, 146, 231, 232, 233], "iusermountcach": 232, "iusersess": [21, 22, 38, 96, 146, 232], "iuserstatu": 138, "iversionbackend": 233, "iwebhookcompatibleev": 231, "iwidget": [96, 231], "j": [7, 8, 16, 25, 26, 42, 64, 96, 105, 115, 118, 126, 129, 131, 135, 151, 154, 167, 181, 186, 190, 198, 199, 200, 209, 220, 228, 229, 241], "ja": 8, "ja_jp": 8, "jail": 236, "jan": [5, 14], "jane": [29, 61, 96, 182], "janedo": 87, "jargon": 81, "jasmin": 243, "java": 70, "javascript": [6, 7, 8, 16, 17, 20, 22, 24, 28, 41, 81, 86, 96, 100, 105, 113, 118, 125, 126, 132, 134, 135, 154, 185, 189, 190, 218, 226, 228, 229, 231, 241], "javascriptmodul": 135, "jdoe": 186, "jitpack": 72, "joann": 46, "job": [1, 5, 15, 20, 28, 29, 42, 56, 90, 104, 106, 122, 130, 137, 140, 141, 142, 166, 179, 185, 201, 204, 225, 228, 230], "joblist": [18, 134, 232], "john": [20, 46, 182], "join": [54, 76, 77, 104], "joinindex": [104, 229], "joinpath": 219, "journalctl": 161, "journei": 129, "jpeg": [61, 129], "jpg": [5, 66, 69, 96, 129, 132, 194, 209], "jqueri": [20, 25, 199, 209, 217, 227, 232, 235], "jrdrespons": 147, "json": [3, 8, 10, 16, 25, 32, 37, 42, 44, 45, 46, 48, 52, 60, 61, 62, 90, 93, 95, 96, 99, 101, 112, 118, 121, 129, 131, 140, 145, 147, 154, 165, 166, 167, 170, 171, 178, 179, 189, 192, 209, 215, 222, 223, 225, 229, 231, 232, 234, 239, 240, 242], "json_decod": [112, 134, 145], "json_encod": [112, 131, 134, 145, 231], "json_pretty_print": 134, "json_throw_on_error": 145, "jsonrespons": [20, 49, 147, 190, 231], "jsonseri": 231, "jsonserializ": 121, "jstimezonedetect": 219, "jstz": 219, "jsx": 154, "judg": 204, "judgement": 188, "jul": 61, "juli": 42, "juliu": 149, "juliushaertl": 96, "jump": 48, "june": 185, "just": [7, 8, 14, 16, 18, 20, 21, 22, 35, 42, 67, 82, 97, 98, 99, 104, 107, 118, 128, 129, 130, 132, 140, 152, 154, 158, 167, 169, 171, 175, 180, 181, 185, 190, 194, 199, 200, 204, 209, 210, 227, 232, 234, 243], "jwt_enabl": 192, "jwt_header": 192, "jwt_secret": 192, "k": [48, 61, 62], "kann": 5, "karchiv": 82, "karma": [41, 243], "kde": [82, 204], "kebab": 186, "keep": [3, 5, 10, 13, 14, 16, 20, 21, 23, 29, 35, 40, 42, 44, 48, 49, 61, 70, 76, 77, 79, 81, 82, 90, 101, 105, 107, 115, 122, 125, 129, 131, 151, 152, 185, 190, 193, 194, 199, 210, 214, 228, 240], "kei": [10, 15, 17, 20, 21, 22, 25, 26, 29, 33, 36, 37, 42, 43, 52, 59, 61, 69, 87, 92, 101, 104, 105, 122, 136, 140, 146, 154, 155, 168, 169, 177, 181, 183, 185, 190, 192, 206, 221, 231, 232], "keithcirkel": 118, "kept": [14, 45, 85, 96, 154, 167, 211, 229], "key1": [92, 168, 177], "key2": [92, 168, 177], "key3": [92, 168, 177], "key_nam": 181, "keyboard": [24, 76, 209], "keymanag": 221, "keyout": 10, "keyserv": 152, "keyword": [154, 186, 204], "kib": 145, "kid": 140, "kihrmq3tytmghwsim": 10, "kill": 152, "killer": 20, "kind": [16, 20, 25, 77, 129, 140, 142, 204], "kindli": 209, "knorr": 149, "know": [12, 21, 25, 42, 49, 79, 81, 82, 95, 107, 122, 129, 132, 140, 142, 144, 169, 170, 185, 190, 204, 232], "knowledg": [81, 94, 204, 233], "known": [3, 17, 21, 22, 37, 45, 69, 82, 95, 96, 104, 105, 107, 123, 130, 147, 232, 234], "l": [5, 34, 42, 69, 95, 116, 132, 134, 137, 140, 141, 142, 152, 209], "l108": 64, "l10n": [8, 31, 43, 96, 124, 132, 134, 135, 145, 151, 155, 167, 218, 221, 232], "l10nfactori": [42, 232], "label": [20, 43, 52, 61, 69, 76, 78, 87, 99, 110, 120, 129, 134, 179, 191, 195, 198, 200, 202, 204], "lack": [37, 76], "land": 33, "landscap": 150, "lang": [5, 8, 42, 151, 154, 167], "lang_map": 8, "languag": [5, 8, 45, 55, 56, 57, 61, 69, 81, 94, 98, 140, 142, 150, 151, 154, 167, 185, 191, 194, 228, 230, 232], "languagedetect": 58, "languagetupl": [116, 231], "larg": [40, 55, 57, 63, 76, 82, 90, 92, 93, 122, 142, 194, 231], "larger": [13, 19, 77, 194, 231], "last": [0, 20, 21, 30, 34, 42, 46, 50, 61, 63, 66, 69, 76, 87, 97, 122, 132, 134, 140, 170, 171, 192, 204, 221, 227, 229, 234], "last_act": 66, "last_check_tim": 170, "last_report": 134, "last_sent": 134, "last_visit": 20, "lastdai": 50, "lastindex": 48, "lastlogin": [37, 46], "lastmodifi": 94, "lastnam": [186, 192], "lastreport": 134, "lastsentreportd": 134, "lastsentreporttim": 134, "lastupd": 87, "latenc": 19, "latent": 141, "later": [5, 8, 14, 15, 20, 21, 25, 34, 37, 46, 82, 90, 96, 107, 119, 129, 130, 185, 213, 221, 227, 233], "latest": [11, 14, 15, 16, 40, 61, 66, 72, 79, 82, 83, 95, 96, 125, 149, 154, 165, 166, 188, 214], "latestchilddatetim": 64, "latex": 209, "latter": 131, "launch": [70, 152, 165], "law": [14, 202], "lax": 228, "layer": [10, 20, 37, 101, 209, 222, 224, 229, 237], "layout": [14, 78, 194, 197, 201], "lazi": [0, 48, 92, 107, 129, 230], "lazili": 0, "lazyrespons": 20, "lazyrootfold": 232, "lc_messag": 154, "ldap": [22, 134, 218, 232, 242], "ldapgroupmemberassocattr": 218, "ldapprovid": 232, "lead": [13, 20, 21, 37, 42, 49, 76, 82, 115, 122, 129, 167, 185, 209], "leader": 10, "leak": [14, 82, 95, 132, 209], "learn": [72, 79, 90, 93, 106, 113, 185, 201], "least": [5, 17, 20, 22, 48, 49, 81, 96, 107, 129, 139, 140, 202, 204, 209, 211, 231, 240], "leav": [40, 46, 85, 118, 152, 190, 192, 233], "left": [10, 20, 42, 46, 47, 49, 76, 80, 96, 107, 129, 193, 194, 199, 200, 232], "legaci": [20, 21, 25, 46, 49, 61, 90, 109, 190, 231, 232, 233, 234, 235, 236], "legibl": 77, "length": [5, 37, 40, 42, 48, 61, 62, 63, 93, 116, 141, 185, 186], "less": [16, 21, 29, 38, 69, 76, 77, 81, 131, 152, 194, 204, 231, 235, 236], "lessspecificimplementedreturntyp": 49, "lessspecificreturnstat": 49, "lessspecificreturntyp": 49, "let": [19, 20, 33, 47, 49, 69, 76, 82, 95, 96, 107, 129, 151, 153, 169, 175, 185, 186, 188, 204, 209], "letter": [20, 30, 36, 61, 123, 186, 190, 231], "level": [20, 21, 28, 38, 79, 89, 122, 131, 135, 161, 173, 178, 188, 190, 199, 200, 215, 231, 232, 237, 243], "leverag": 3, "lexicon": [90, 91, 93, 113, 114], "lf": 185, "li": [184, 198, 199, 200, 209], "lib": [0, 1, 3, 5, 7, 10, 18, 19, 20, 21, 30, 31, 32, 33, 34, 37, 40, 43, 49, 64, 70, 82, 85, 89, 95, 98, 101, 103, 104, 108, 110, 116, 124, 129, 130, 132, 137, 140, 141, 142, 146, 154, 156, 170, 190, 192, 243], "liber": 204, "libphonenumb": 123, "librari": [25, 73, 75, 76, 82, 89, 95, 115, 123, 127, 129, 150, 159, 190, 192, 209, 231, 234], "libxml": [5, 242], "licenc": 5, "licens": [5, 14, 15, 71, 191], "life": [14, 15, 64, 188], "lifecycl": [20, 28, 90, 151, 155, 163, 201], "lifespan": 0, "lifetim": 0, "light": [0, 77, 104, 144, 194, 221, 229], "lighten": 93, "lighter": [229, 233], "lighthous": 79, "like": [0, 2, 3, 5, 7, 8, 10, 14, 16, 17, 18, 19, 20, 21, 22, 23, 29, 30, 36, 37, 38, 40, 41, 42, 43, 44, 46, 49, 52, 55, 57, 60, 61, 63, 66, 69, 71, 72, 76, 77, 79, 81, 82, 94, 95, 96, 97, 98, 99, 101, 104, 106, 107, 110, 115, 116, 118, 120, 122, 126, 128, 129, 131, 132, 135, 136, 137, 140, 141, 142, 144, 154, 169, 179, 184, 185, 186, 188, 190, 194, 198, 199, 200, 202, 204, 209, 210, 219, 220, 221, 222, 223, 227, 228, 229, 231, 233, 234, 243], "likelihood": [188, 229], "limit": [5, 10, 14, 17, 18, 21, 22, 33, 35, 37, 46, 54, 56, 57, 58, 63, 64, 66, 69, 77, 79, 85, 92, 93, 96, 97, 104, 107, 113, 114, 116, 122, 125, 129, 132, 137, 153, 154, 158, 161, 162, 164, 169, 174, 199, 206, 209, 228, 229, 232, 236], "limitenumerationtogroup": 220, "line": [0, 1, 8, 21, 25, 29, 42, 72, 76, 77, 82, 89, 98, 107, 136, 144, 152, 154, 156, 184, 185, 187, 194, 198, 199, 202, 233], "liner": 202, "link": [3, 5, 6, 10, 13, 17, 20, 22, 25, 26, 43, 45, 46, 52, 60, 61, 69, 82, 96, 101, 102, 108, 113, 124, 126, 128, 132, 133, 135, 139, 144, 174, 199, 200, 203, 206, 209, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 233, 234, 243], "linkact": 108, "linkactiveclass": 154, "linkautocomplet": 129, "linkend": 42, "linker": 82, "linkprovid": 108, "linkstart": 42, "linkto": [135, 211, 220], "linktoabsolut": 211, "linktodefaultpageurl": 235, "linktooc": 220, "linktopubl": [216, 229], "linktoremot": [211, 220], "linktoremov": 211, "linktorout": [33, 132], "linktorouteabsolut": [31, 96, 124, 126, 147], "lint": [100, 113], "linter": [222, 225, 229, 231, 232, 234], "linu": 202, "linux": [5, 83, 152, 192], "list": [1, 5, 6, 8, 16, 17, 20, 21, 22, 25, 34, 35, 37, 38, 40, 42, 43, 45, 49, 51, 57, 58, 59, 63, 64, 65, 69, 70, 78, 80, 82, 87, 90, 92, 93, 94, 95, 96, 99, 104, 107, 108, 110, 113, 116, 125, 132, 138, 140, 141, 142, 144, 149, 154, 162, 168, 171, 172, 177, 178, 179, 181, 184, 189, 190, 193, 194, 197, 201, 203, 204, 215, 217, 226, 231, 233, 234, 243], "list__item": 184, "list_item": 184, "listen": [0, 2, 6, 17, 25, 28, 40, 73, 88, 94, 101, 104, 105, 113, 115, 118, 122, 126, 129, 134, 138, 148, 165, 172, 183, 221, 229, 233, 234], "listofaudio": 140, "listoffil": 140, "listofimag": 140, "listofnumb": 140, "listoftext": 140, "listofvideo": 140, "listservic": 110, "listtemplatefield": 233, "liter": [66, 104], "littl": [222, 229], "live": [5, 15, 17, 22, 61, 85, 102, 113, 130, 190, 228, 235], "ll": [3, 21, 95, 132, 234, 239, 243], "llama": 140, "llvm": 82, "load": [0, 2, 3, 6, 17, 20, 21, 22, 24, 32, 37, 42, 76, 79, 81, 82, 87, 89, 92, 96, 97, 101, 107, 110, 115, 122, 124, 127, 129, 131, 148, 154, 156, 161, 185, 190, 194, 199, 218, 228, 229, 230, 231, 232, 233], "loadabl": [116, 132, 137, 140, 141, 142], "loadadditionalentriesev": 232, "loadadditionallisten": 25, "loadadditionalscript": [6, 221, 229], "loadadditionalscriptsev": [25, 126, 229], "loadadditionalscriptsloggedin": 229, "loadadditionalsettingscript": 221, "loadapp": 228, "loader": [89, 122, 227, 229, 233], "loadscript": 229, "loadsettingsscriptsev": 221, "loadsidebar": 219, "loadstat": [25, 190], "loadstyl": 229, "local": [8, 15, 16, 28, 42, 45, 46, 61, 62, 76, 82, 92, 115, 126, 135, 141, 149, 151, 152, 154, 158, 165, 167, 174, 192, 239], "locale_dir": 154, "localhost": [44, 98, 133, 153, 189, 192, 230, 243], "locat": [0, 8, 20, 21, 42, 46, 49, 61, 63, 67, 69, 70, 73, 82, 83, 85, 92, 98, 122, 124, 129, 134, 154, 156, 171, 186, 199, 209, 218, 234, 236], "lock": [16, 20, 37, 61, 113, 114, 122, 220, 231, 232], "lockdiscoveri": 61, "lockedexcept": 220, "lockentri": 61, "lockingprovid": 232, "lockscop": 61, "locktyp": 61, "lockwaittimeoutexcept": 231, "lodash": [220, 234], "log": [6, 20, 21, 25, 28, 32, 50, 69, 73, 92, 97, 98, 115, 122, 125, 127, 128, 130, 134, 146, 156, 161, 172, 183, 190, 192, 201, 209, 215, 220, 221, 230, 231, 232, 243], "log_lvl": 173, "log_output": 98, "log_rotate_s": 36, "logdata": 29, "logeventlisten": 29, "logexcept": [216, 221], "logfactori": 29, "logfil": 122, "logger": [29, 97, 100, 113, 130, 221, 222, 223, 230, 232], "loggerinterfac": [21, 29, 127, 130, 221, 229, 232], "logic": [0, 1, 18, 20, 21, 30, 40, 97, 99, 106, 107, 132, 140, 147, 151, 153, 182, 194, 199, 225, 236], "login": [17, 20, 22, 60, 71, 75, 88, 113, 144, 146, 156, 201, 224, 227, 232], "loginfailedev": 220, "loginnam": 44, "loglevel": [29, 122, 173, 227, 232], "logo": [13, 20, 46], "logout": [5, 22, 146], "long": [0, 14, 21, 40, 54, 70, 76, 90, 116, 121, 130, 132, 133, 137, 140, 141, 142, 166, 185, 187, 190, 198, 204, 213, 227], "long_query_tim": 122, "longer": [3, 14, 16, 17, 18, 22, 37, 50, 69, 73, 116, 122, 141, 142, 146, 196, 199, 204, 210, 215, 218, 220, 223, 228, 230, 231, 232, 233], "look": [5, 10, 20, 21, 27, 29, 40, 41, 42, 43, 44, 46, 49, 61, 73, 76, 79, 96, 101, 106, 107, 115, 118, 122, 128, 129, 134, 135, 136, 137, 140, 141, 142, 151, 154, 156, 184, 185, 190, 194, 196, 202, 204], "lookup": [2, 53, 231], "loop": [105, 187, 190, 229], "loos": 190, "lose": [10, 11, 42], "loss": 188, "lost": [10, 20, 42, 60, 115, 215], "lot": [27, 37, 44, 97, 104, 115, 122, 125, 128, 134, 188, 239], "low": [18, 19, 76, 104, 185, 188, 222, 236], "lower": [5, 22, 36, 37, 82, 104, 122, 134, 190, 230, 234], "lowercamelcas": [37, 187], "lowercas": [1, 5, 69, 81, 134, 190], "lowest": [20, 232], "lt": [104, 210, 223, 239], "ltr": 194, "lukasreschk": 10, "m": [61, 152, 179, 188, 198], "m1dqhwuzwwjec3ku7gjsspr7bzxopwf01kj0xgppyvzekgtbzbraxlouxfzdbgj6zk9owg9x": 44, "mac": 82, "machin": [10, 82, 113, 149, 160, 161, 201], "maco": 83, "made": [20, 29, 60, 66, 104, 118, 131, 134, 153, 166, 167, 185, 188, 209, 229], "magic": [37, 128, 134, 232, 235], "magnifi": 76, "mai": [0, 1, 2, 10, 15, 16, 17, 18, 20, 21, 22, 29, 33, 40, 42, 44, 47, 49, 61, 69, 70, 71, 72, 76, 77, 82, 90, 94, 96, 97, 98, 106, 107, 110, 115, 116, 121, 122, 127, 129, 132, 137, 140, 142, 145, 148, 152, 156, 158, 161, 162, 188, 190, 198, 202, 204, 206, 209, 223, 227, 228, 232, 233], "mail": [5, 14, 20, 52, 76, 80, 94, 103, 109, 111, 113, 124, 125, 129, 132, 144, 198, 209, 215, 219, 220, 227, 229, 232, 233], "mail_recipi": 132, "mail_smtphost": 192, "mail_smtpmod": [192, 215], "mail_smtpnam": 36, "mail_smtpport": 192, "mailbox": 76, "mailer": [103, 125, 232], "mailhog": 192, "mailmanag": 110, "mailprovid": 110, "mailservic": [103, 110], "mailto": 124, "main": [0, 8, 16, 18, 19, 20, 25, 26, 27, 29, 49, 76, 77, 79, 80, 82, 95, 96, 104, 107, 110, 119, 126, 129, 140, 149, 150, 151, 152, 156, 181, 184, 185, 186, 188, 190, 194, 197, 198, 199, 200, 201, 202, 203, 209, 222, 229, 231, 232], "mainact": 70, "mainli": [74, 79, 131, 140, 221], "maintain": [10, 11, 14, 16, 18, 21, 37, 43, 48, 79, 85, 152, 184, 185, 201, 204, 206, 208, 212, 226, 233, 236], "maintainership": 14, "mainten": [82, 130, 188, 190, 201], "major": [0, 5, 40, 46, 76, 85, 115, 188, 204, 221, 222, 225, 229, 233, 238], "major_vers": 125, "make": [8, 10, 12, 14, 15, 16, 17, 18, 20, 21, 22, 25, 30, 33, 36, 37, 40, 41, 42, 48, 49, 56, 57, 58, 65, 67, 68, 79, 81, 82, 88, 89, 90, 94, 97, 98, 101, 105, 106, 107, 110, 113, 115, 118, 119, 122, 125, 129, 132, 139, 140, 142, 149, 152, 156, 161, 172, 184, 185, 186, 189, 190, 192, 193, 194, 204, 209, 210, 215, 217, 219, 220, 221, 222, 225, 226, 227, 228, 229, 230, 231, 232, 234, 239, 240, 241, 242, 243], "makefil": [3, 155, 165], "malici": [14, 190, 209], "man": 140, "manag": [0, 4, 10, 12, 17, 20, 22, 39, 40, 47, 61, 69, 82, 88, 94, 101, 104, 106, 110, 113, 116, 118, 129, 137, 140, 141, 142, 162, 188, 190, 193, 201, 210, 227, 232, 233, 234, 236, 239], "manageruid": 146, "mandatori": [52, 82, 229], "mani": [1, 3, 15, 20, 22, 42, 49, 56, 57, 58, 61, 62, 76, 79, 82, 98, 107, 115, 125, 140, 141, 152, 188, 192, 204, 222, 232, 233], "manipul": [20, 30, 37, 45, 209], "mankind": 129, "manner": 232, "manpag": 82, "manual": [4, 10, 21, 29, 37, 40, 49, 69, 82, 83, 90, 93, 98, 129, 149, 151, 154, 183, 189, 190, 231, 233, 243], "manual_instal": [149, 151, 154, 165], "map": [17, 22, 28, 33, 35, 40, 61, 73, 89, 90, 107, 123, 129, 186, 190, 228, 237], "mapper": [21, 39, 95, 209, 215, 227, 233], "margin": [194, 200, 232], "maria": 52, "mariadb": [97, 122, 210, 233], "mark": [13, 16, 33, 34, 48, 61, 64, 76, 81, 85, 90, 122, 139, 152, 187, 190, 194, 213, 217, 220, 229, 231, 238, 239, 240], "markdown": [5, 76, 101, 129, 190], "marker": 199, "market": [80, 81], "markfieldupd": 227, "markup": 187, "martin": 243, "mask": [61, 236], "massiv": 230, "master": [3, 8, 16, 37, 46, 49, 64, 72, 82, 95, 125, 188, 190, 204, 231, 238, 243], "match": [5, 21, 27, 28, 43, 44, 49, 53, 69, 76, 89, 90, 92, 105, 106, 107, 189, 190, 227, 228, 230, 231, 240], "matcher": 105, "matchrefer": 129, "materi": [76, 77, 79, 197, 233], "matric": [231, 234], "matrix": [15, 95, 98, 210, 225, 229, 232], "matter": [0, 18, 63, 64, 76, 122, 188, 226], "max": [5, 48, 131, 132, 190, 192, 194, 195, 199, 210, 225, 226, 227, 228, 229, 230, 231, 232, 234], "maxcontrast": [77, 194, 229], "maxdepth": 189, "maximum": [5, 20, 46, 129, 130, 185, 194, 199], "maxuploadfiles": 233, "mb_array_change_key_cas": 233, "mb_str_replac": 216, "mb_substr_replac": 216, "mbstring": 242, "mclient": 70, "md": [5, 16, 43, 96, 101, 185, 230], "md5": [61, 62, 107, 128, 210, 211, 219, 234], "md5sum": 62, "mdn": [20, 209], "me": [17, 22, 31, 87, 108, 126, 198], "mean": [1, 3, 5, 14, 17, 20, 21, 22, 30, 32, 37, 40, 42, 44, 48, 61, 63, 66, 73, 81, 82, 85, 93, 99, 101, 104, 107, 122, 130, 131, 132, 135, 148, 160, 166, 180, 185, 188, 190, 204, 206, 209, 213, 218, 222, 229, 231, 232, 233], "meaning": 231, "meant": [101, 140, 189, 223], "meantim": 239, "measur": [14, 20, 131, 153, 209], "mechan": [0, 22, 42, 101, 107, 108, 116, 132, 137, 140, 141, 142, 147, 151, 222, 223], "media": [17, 20, 22, 46, 137, 228], "medium": [92, 185], "meet": [76, 101, 106, 138, 139], "member": [10, 22, 187], "memcach": [19, 35, 192, 223], "memcachefactori": 232, "memori": [14, 20, 21, 28, 82, 90, 125, 231], "mention": [10, 49, 76, 85, 96, 131, 134, 135, 140, 188, 204, 234], "menu": [5, 20, 43, 47, 78, 96, 109, 111, 113, 129, 150, 153, 167, 172, 183, 193, 194, 197, 198, 201, 229, 231, 235], "menuitem": 200, "mercuri": 5, "merg": [12, 16, 129, 135, 185, 188, 189, 202, 204, 206, 233, 234], "merger": 69, "mesh": [61, 233], "mess": 42, "messag": [17, 22, 28, 42, 43, 44, 45, 46, 48, 49, 50, 56, 57, 58, 64, 69, 76, 81, 96, 103, 110, 113, 115, 116, 121, 122, 129, 130, 132, 135, 137, 140, 141, 142, 147, 161, 168, 170, 172, 174, 177, 182, 199, 209, 223, 231, 240], "message_rich": 69, "messagehandl": 101, "messageid": [54, 138], "messagenam": 101, "messagetd": 209, "met": [49, 69], "meta": [31, 43, 44, 46, 48, 96, 101, 104, 129, 131, 132, 168, 177, 182, 222, 231, 233, 240], "metacharact": 209, "metadata": [4, 7, 17, 22, 38, 39, 45, 61, 76, 86, 90, 95, 102, 113, 140, 190, 192, 201, 229, 234, 236], "metadata_etag": 61, "metadatabackgroundev": [104, 229], "metadatakei": 104, "metadataliveev": [104, 229], "metadatamanag": 104, "metadataqueri": 104, "method": [0, 1, 2, 3, 8, 17, 18, 20, 21, 22, 25, 26, 28, 30, 32, 33, 34, 37, 38, 41, 42, 43, 45, 46, 50, 51, 52, 53, 54, 56, 57, 58, 59, 65, 69, 70, 72, 73, 85, 90, 92, 93, 94, 95, 96, 97, 99, 101, 104, 105, 106, 107, 108, 110, 113, 114, 115, 116, 121, 125, 126, 127, 129, 130, 132, 135, 137, 140, 141, 142, 144, 145, 146, 148, 150, 151, 154, 155, 164, 170, 187, 190, 204, 209, 210, 211, 213, 215, 220, 221, 222, 223, 224, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 243], "method_exist": [110, 229], "methodnam": 30, "methodologi": 82, "methodtest": 33, "metric": [113, 114, 140, 234], "metrictyp": 120, "mhandler": 70, "micro": 46, "microservic": [151, 153, 154], "microsoft": 204, "middlewar": [20, 28, 90, 164, 201, 227], "might": [0, 3, 14, 16, 17, 20, 21, 22, 23, 25, 31, 35, 36, 42, 44, 46, 48, 49, 50, 53, 71, 74, 79, 82, 93, 96, 97, 104, 105, 107, 115, 118, 119, 122, 128, 129, 130, 131, 132, 133, 135, 141, 142, 144, 152, 154, 156, 170, 185, 188, 189, 204, 209, 210, 213, 223, 231, 232, 239, 243], "migrat": [5, 23, 28, 37, 39, 44, 88, 90, 96, 98, 113, 115, 130, 136, 210, 215, 229, 232, 234, 235], "miibvtccasagawibagiupvawyqjwcwyazcv7iz16twxfeumwdqyjkozihvcnaqef": 10, "miko": 243, "mileston": 16, "million": 129, "millisecond": [122, 136], "mime": [61, 62, 66, 132, 135, 171, 232], "mimetyp": [17, 20, 22, 35, 43, 62, 69, 70, 101, 232, 236], "mimetype_filt": 43, "mimetypedetector": 232, "mimetypeload": 232, "min": [5, 132, 154, 189, 192, 194, 199, 210, 225, 226, 227, 228, 229, 230, 231, 232, 234], "mind": [16, 23, 44, 48, 79, 82, 101, 107, 122, 131], "mingw": 82, "minif": 239, "minifi": [8, 98], "minim": [20, 97, 151, 164], "minimalist": 144, "minimum": [3, 5, 14, 18, 48, 69, 77, 107, 125, 194, 199, 210], "minio": 192, "minioadmin": 192, "minor": [40, 46, 222, 229], "minut": [15, 18, 44, 56, 57, 58, 96, 141, 142, 153, 179], "mirror": 101, "miscellan": [28, 172, 183], "misdetect": 167, "miss": [17, 22, 34, 40, 49, 58, 61, 125, 135, 150, 185, 204, 209, 210, 229], "missing_fil": 10, "mistak": [8, 15, 82, 140], "misus": 92, "mit": [5, 71], "mitig": [2, 113, 114, 233], "mix": [90, 93, 122, 129, 153, 199, 200, 227], "mixin": 129, "mj": [135, 154, 228], "mkcol": [61, 62, 63], "mkdir": [15, 82, 152, 189, 192], "mknod": 192, "mktemp": 152, "mm": [50, 52], "mncwv0ujg9s63lf8": 10, "mo": [42, 154, 167], "mobil": [43, 46, 76, 101, 129, 132, 190, 192, 193, 194, 198, 231], "mocha": 118, "mock": [19, 21, 41, 243], "mockup": 235, "modal": [78, 194, 231], "mode": [17, 22, 40, 42, 90, 100, 113, 125, 135, 149, 150, 154, 156, 161, 175, 186, 190, 193, 194, 198, 223, 229, 231, 243], "model": [18, 30, 55, 57, 96, 104, 140, 141, 142, 153], "moder": 139, "modern": [21, 115, 135, 190], "modif": [35, 61, 62, 104, 206, 236], "modifi": [10, 17, 22, 34, 36, 40, 45, 48, 49, 54, 59, 61, 66, 69, 82, 85, 86, 88, 104, 107, 113, 115, 121, 147, 156, 171, 184, 193], "modifycolumn": 40, "modifyparticipantev": 138, "modul": [20, 25, 82, 98, 118, 135, 186, 190, 228, 229, 231, 239], "modular": [21, 185], "mom": 198, "moment": [5, 43, 66, 70, 71, 107, 121, 125, 140, 210, 219, 222], "monet": [11, 201], "monitor": [5, 12, 29, 122], "monitoringmiddlewar": 30, "month": 204, "monthlyreport": 134, "more": [2, 3, 5, 6, 8, 10, 12, 13, 14, 15, 17, 18, 20, 21, 22, 25, 26, 31, 33, 35, 38, 39, 40, 42, 43, 46, 49, 52, 54, 69, 76, 77, 79, 81, 82, 83, 90, 93, 95, 96, 99, 106, 107, 110, 115, 118, 122, 124, 125, 129, 131, 134, 148, 150, 151, 152, 153, 154, 158, 169, 174, 175, 180, 184, 185, 186, 188, 189, 190, 194, 196, 198, 199, 200, 204, 206, 209, 222, 223, 226, 229, 231, 232, 233, 234, 236, 239, 243], "moreov": [3, 5, 222, 229, 231], "morespecificreturntyp": 49, "most": [14, 18, 19, 20, 21, 33, 37, 42, 49, 54, 61, 69, 76, 77, 79, 80, 82, 90, 107, 115, 123, 129, 131, 132, 135, 140, 148, 155, 162, 185, 189, 190, 204, 209, 211, 214, 220, 221, 223, 229, 230, 231, 234, 240, 243], "mostli": [17, 22, 42, 64, 95, 115, 129, 222, 223, 229], "mount": [17, 22, 61, 96, 126, 129, 165, 190, 232, 233, 237], "mountconfigmanag": 232, "mountmanag": 232, "mountpoint": [38, 231, 232, 236], "move": [3, 11, 17, 22, 37, 42, 63, 65, 67, 68, 73, 76, 77, 89, 96, 105, 131, 204, 215, 221, 222, 226, 229, 231, 232, 233, 239], "moveabl": 61, "moveoper": 70, "moveremotefileoper": 70, "movetotrash": 229, "movetotrashev": 229, "movi": 129, "mozilla": [79, 98, 185, 234], "mpl": 5, "mquyqdffosamjytm8pvpkosvqxt5hglnuspo5embgjmnepfgaide8oujvrj2wcycbslgqynu9japfvzhml83ybmvp6adidarjtfibprwod6p32fl9lipistvc6k8wrs1": 44, "msg": 20, "msword": 43, "mtime": [22, 61, 62, 63, 171], "much": [19, 82, 93, 125, 142, 184, 204, 226, 229, 233], "multi": [20, 42, 61, 76, 98, 134, 179, 222], "multi_checkbox": 99, "multi_select": 99, "multilin": 50, "multimedia": 5, "multipart": 62, "multipl": [1, 5, 10, 17, 18, 20, 22, 23, 34, 40, 42, 45, 49, 66, 76, 77, 81, 82, 85, 93, 95, 98, 99, 110, 119, 129, 131, 148, 179, 187, 194, 198, 228, 229, 230, 233, 236], "multipleobjectsreturnedexcept": [37, 228], "multipli": 77, "multiselect": 140, "multistatu": [64, 104], "must": [0, 1, 5, 10, 14, 17, 20, 22, 29, 33, 36, 37, 40, 42, 43, 44, 49, 54, 60, 61, 63, 69, 70, 79, 81, 82, 85, 90, 92, 93, 96, 97, 99, 101, 105, 107, 119, 120, 129, 132, 134, 140, 144, 151, 154, 157, 160, 164, 165, 167, 176, 178, 187, 190, 195, 199, 200, 212, 231, 233, 234, 243], "mustach": 42, "mutabl": [37, 106], "mutat": [106, 190], "mutual": 76, "mv": 152, "my": [2, 19, 29, 30, 31, 33, 46, 49, 81, 87, 96, 99, 104, 107, 108, 116, 122, 124, 126, 129, 130, 132, 133, 137, 140, 141, 142, 145, 165, 181, 186, 190], "my_alia": 104, "my_app": [29, 99, 104, 108, 126, 140, 141, 142], "my_app_id": [87, 124, 175], "my_app_t": 21, "my_checkbox_field": 99, "my_class": 185, "my_config_kei": 92, "my_declarative_settings_form": 99, "my_field_kei": 99, "my_field_unique_id": 99, "my_index": 40, "my_multi_select_field": 99, "my_multicheckbox_field": 99, "my_new_index": 40, "my_notebook": 190, "my_notes_set": 34, "my_old_index_on": 40, "my_old_index_two": 40, "my_other_appwidgetid": 96, "my_radio_field": 99, "my_rich_object_typ": 129, "my_section_id": 99, "my_select_field": 99, "my_tabl": [40, 104, 136], "my_unique_act": 124, "myapp": [0, 1, 6, 8, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41, 42, 63, 69, 89, 90, 92, 93, 94, 96, 99, 101, 104, 106, 108, 116, 118, 120, 124, 125, 126, 129, 130, 131, 132, 135, 136, 137, 140, 141, 142, 145, 146, 147, 222, 243], "myapp_act": 69, "myapp_author": 37, "myapp_metr": 120, "myappcollector": 125, "myappdatacollector": 125, "myappid": 134, "myapplic": 2, "myappmanag": 145, "myappmigr": 145, "myappwidget": [96, 126], "myappwidgetid": 96, "myarrai": 186, "myawesomeservic": 129, "mybeautifulapp": [21, 89], "mybulkprovid": 108, "mycamelcaseapp": 33, "myclass": [90, 97, 186, 187], "mycontrol": [35, 126], "mycooki": 20, "mycustompickerel": 129, "mycustomtemplatefilenam": 31, "mycustomwidgetcompon": 129, "mydata": [96, 125], "mydavplugin": [2, 133, 148], "mydeclarativesettingsform": 99, "myeditor": 101, "myevent": 138, "myfil": [20, 38], "myfilemenuplugin": 25, "myfooimpl": 0, "myfunct": [97, 187], "mygreatapp": 138, "myhead": [30, 184], "myicon": 184, "mykei": [90, 93], "mylink": 129, "mylisten": 2, "mymethod": 187, "mynam": 21, "mynotebook": 190, "myobject": [69, 136], "myobjectfactori": 136, "myprofileact": 124, "mypromptresultlisten": [140, 142], "myproperti": 186, "myprovid": 108, "mypublicsharetemplateprovid": 31, "myreferencelisten": [129, 137], "myremoteserverintegr": [112, 133], "myrepairstep": 130, "myresourceprovid": 126, "myscop": 49, "mysearchprovid": 132, "myservic": [18, 21, 37, 96, 106, 138], "myset": 34, "mysql": [5, 15, 37, 97, 98, 122, 210, 233, 243], "mysqld": 97, "mystat": 25, "mysteri": 129, "mytag1": 49, "mytestclass": 21, "mytestclass2": 21, "mytestservic": 110, "mytranscriptionlisten": 137, "myuser": 38, "myvalu": [90, 93], "myvar": [186, 187], "myvari": 187, "mywidget": [96, 129], "n": [1, 8, 10, 15, 42, 61, 62, 64, 66, 67, 81, 82, 104, 107, 125, 129, 135, 140, 148, 154, 165, 185, 186, 198], "n1": 95, "nachrichten": 5, "name": [0, 3, 4, 5, 6, 8, 10, 14, 15, 17, 20, 21, 23, 25, 26, 27, 29, 32, 33, 34, 35, 37, 40, 42, 43, 46, 48, 49, 52, 57, 58, 61, 63, 64, 66, 68, 69, 70, 73, 76, 78, 82, 85, 89, 90, 95, 99, 101, 103, 104, 105, 106, 108, 110, 115, 118, 120, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 139, 140, 141, 144, 145, 154, 165, 166, 170, 171, 174, 175, 178, 179, 180, 181, 185, 187, 189, 190, 192, 199, 202, 206, 210, 217, 219, 222, 227, 228, 229, 230, 231, 232, 233, 234, 239, 240], "namespac": [0, 1, 18, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 35, 36, 37, 41, 49, 69, 85, 89, 90, 95, 96, 99, 101, 104, 107, 108, 110, 115, 116, 120, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 144, 145, 146, 147, 186, 187, 210, 215, 219, 223, 229, 231, 232, 238, 243], "nan": 5, "nano": 156, "narrow": 49, "nativ": [20, 23, 76, 77, 113, 186, 233, 243], "natur": [61, 81, 94], "navig": [4, 5, 20, 23, 32, 42, 69, 73, 77, 78, 80, 132, 134, 190, 193, 194, 197, 200, 201, 231, 232], "navigationmanag": 232, "nb": [8, 62], "nb_no": 8, "nbqawizehmb8ga1uecgwyb3duq2xvdwqgq29kzsbtawduaw5nienbmb4xdte1mtax": 10, "nc": [20, 44, 61, 81, 96, 104, 172, 192, 229, 232], "nc16": [192, 217], "nc31": 140, "nc32": 140, "nc33": 140, "nc_app_": [154, 161], "nc_favorite_flag": 171, "nc_py_api": 165, "ncaction": 76, "ncappnavig": [76, 235], "ncappnavigationcapt": 76, "ncappnavigationitem": 76, "ncappnavigationnew": 76, "ncappnavigationsearch": 76, "ncappsettingsdialog": 76, "ncappsettingssect": 76, "ncappsidebar": [76, 234], "ncappsidebarhead": 76, "ncappsidebartab": 76, "ncavatar": 76, "ncbutton": 76, "nccheckboxradioswitch": [76, 99], "ncchip": 76, "nccolorpick": 76, "nccounterbubbl": 76, "nccustompickerrenderresult": 129, "ncdatetim": 235, "ncdatetimepick": 76, "ncdatetimepickern": 76, "ncdialog": 76, "ncemojipick": 76, "ncemptycont": 76, "ncfilepick": 76, "ncformbox": 76, "ncformgroup": 76, "nciconsvgwrapp": 196, "nclistitem": 76, "ncmodal": 76, "ncnotecard": 76, "ncpasswordfield": 76, "ncradiogroup": 76, "ncrichcontentedit": 76, "ncrichtext": 76, "ncselect": 76, "ncsettingssect": 99, "nctextarea": 76, "nctextfield": 76, "nctimezonepick": 76, "ncu": 85, "ncuserbubbl": 76, "ndqyjkozihvcnaqebbqadgy0amigjaogbanoqesgdcw0l2l": 10, "necessari": [12, 40, 42, 95, 129, 131, 134, 144, 150, 151, 156, 159, 170, 188, 189, 190, 206], "necessarili": 188, "need": [0, 3, 5, 6, 8, 10, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 29, 31, 33, 34, 37, 38, 40, 42, 43, 44, 46, 48, 49, 52, 61, 62, 63, 64, 67, 68, 70, 71, 73, 76, 77, 82, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 104, 105, 107, 110, 116, 119, 120, 122, 124, 125, 126, 128, 129, 131, 132, 134, 135, 137, 139, 140, 141, 142, 144, 145, 148, 151, 153, 154, 155, 156, 158, 161, 165, 166, 169, 171, 175, 181, 185, 187, 188, 189, 190, 192, 193, 195, 196, 198, 199, 200, 202, 204, 206, 209, 210, 218, 223, 225, 227, 229, 230, 231, 232, 233, 234, 235, 238, 239, 243], "needinfo": 204, "needspartfil": 232, "neg": [0, 76, 122, 132, 185], "negat": 175, "nein": 5, "neither": [37, 185], "net": [48, 104, 165, 222, 225, 229, 231, 232], "netlifi": [115, 196], "network": [62, 107, 122, 135, 150, 151, 152, 156, 162, 165], "networkofflin": 115, "networkonlin": 115, "networkset": 192, "neutral": 81, "never": [20, 42, 44, 77, 81, 85, 134, 188, 190, 209, 222, 232], "nevertheless": [185, 222], "new": [1, 2, 5, 7, 8, 10, 13, 15, 16, 17, 19, 20, 21, 22, 23, 26, 29, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 48, 49, 54, 61, 69, 70, 73, 76, 85, 90, 92, 93, 94, 96, 98, 99, 101, 104, 105, 106, 110, 113, 114, 115, 121, 122, 125, 126, 127, 129, 131, 132, 134, 136, 139, 140, 141, 142, 144, 145, 146, 147, 150, 154, 162, 178, 185, 188, 190, 192, 193, 197, 198, 200, 201, 204, 206, 210, 212, 215, 221, 222, 223, 224, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 243], "new_tabl": 40, "newbasiccredenti": 70, "newbearercredenti": 70, "newclient": 112, "newconversationopt": 139, "newemailact": 108, "newer": [16, 43, 46, 82, 145, 204, 220, 222], "newest": 238, "newfil": [35, 38], "newfilemenu": 25, "newfilepath": 70, "newfold": 35, "newfolderpath": 70, "newkei": 10, "newli": [15, 16, 52, 82, 165, 228], "newlinkact": 108, "newnam": 101, "newqueri": 106, "newsamlssocredenti": 70, "next": [13, 16, 20, 34, 40, 41, 49, 50, 69, 76, 81, 96, 97, 104, 107, 122, 126, 132, 144, 150, 151, 171, 188, 199, 204, 243], "nextcloud": [1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 28, 29, 32, 34, 37, 39, 40, 41, 42, 43, 44, 46, 48, 49, 52, 53, 54, 61, 62, 63, 64, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 85, 87, 88, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 103, 104, 106, 108, 109, 110, 111, 112, 113, 116, 118, 120, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 171, 173, 174, 175, 177, 178, 179, 181, 183, 185, 186, 187, 188, 189, 191, 192, 194, 195, 196, 199, 200, 202, 203, 205, 206, 209, 210, 211, 212, 214, 238, 239, 240, 241], "nextcloud33": 234, "nextcloud_base_url": [50, 51, 52, 53, 54, 56, 57, 58, 59], "nextcloud_build_vari": 82, "nextcloud_myapp_metr": 120, "nextcloud_url": [150, 165, 170], "nextcloudcredentialsfactori": 70, "nextcloudtest": 147, "nextid": 136, "nextlcoud": 231, "nf": 152, "nfiv0cvgquzbx": 10, "nginx": 204, "nice": 44, "nig": 10, "night": [8, 14, 122], "nightli": [15, 18], "nikic": 227, "ninja": 82, "njce9invp368xv0btrobrqesnsgoggl5ceavr0c9bg": 10, "njkkfzyemeuqfagmbaaewdqyjkozihvcnaqefbqadgyeavf": 10, "nkx5snu3fs45mscdb61xbyjbslfgr4qi6mcocippw4sur28eaexvvgpsvqujylgp": 10, "nndezmtcxmfoxdte2mtaxndezmtcxmfowezerma8ga1ueawwiy29udgfjdhmwgz8w": 10, "no_prefer": 25, "noadminrequir": [20, 43, 49, 190, 231], "nobodi": [10, 122, 185], "nocsrfrequir": [20, 131, 209, 231], "node": [2, 10, 31, 39, 61, 73, 104, 107, 118, 122, 148, 190, 210, 228, 229, 231, 233, 234, 237, 241], "node_ev": 169, "node_modul": 190, "nodeaddedtofavorit": 229, "nodecopiedev": 169, "nodecreatedev": 169, "nodedeletedev": 169, "nodeinfo": 222, "nodej": [239, 243], "noderemovedfromfavorit": 229, "noderenamedev": 169, "nodetouchedev": 169, "nodewrittenev": 169, "noexpirationd": 231, "non": [1, 8, 15, 42, 44, 45, 48, 61, 76, 90, 115, 130, 131, 155, 190, 192, 199, 211, 213, 215, 223, 228, 232], "nonamespaceschemaloc": [5, 108, 130], "none": [15, 20, 40, 61, 92, 175, 184, 185, 192, 243], "nonessenti": 77, "nonsgml": 107, "noop": [221, 222], "noquotesneed": 186, "nor": [0, 37, 193, 204], "norespons": 135, "normal": [15, 20, 29, 42, 48, 49, 67, 68, 89, 90, 97, 104, 105, 128, 130, 140, 194, 209, 233], "notabl": 221, "notat": [21, 190, 194, 215], "note": [0, 11, 14, 17, 20, 22, 29, 34, 36, 37, 38, 40, 44, 49, 52, 60, 71, 78, 104, 107, 113, 116, 129, 131, 140, 145, 176, 190, 192, 201, 204, 206, 211, 222, 227, 233, 239, 243], "notebook": 190, "notecontrol": 190, "notemapp": 190, "notempti": 192, "notes_": 34, "notesadmin": 34, "notessettingscontrol": 34, "notessubadmin": 34, "notestutori": 34, "notfounderror": 49, "notfoundexcept": [17, 20, 22, 38, 41, 49], "noth": [76, 107, 220], "notic": [29, 40, 48, 51, 92, 185, 210, 239], "notif": [0, 15, 25, 45, 69, 81, 86, 96, 113, 169, 172, 176, 183, 227, 230, 231, 232, 233, 234, 235], "notifi": [0, 5, 17, 22, 96, 103, 115, 137, 140, 141, 142, 231, 233], "notificationmanag": 232, "notion": 107, "notnul": [37, 40, 136], "notpermittedexcept": 38, "notwofactorrequir": 20, "noun": [42, 81], "novel": 150, "now": [7, 8, 15, 16, 18, 20, 21, 25, 37, 43, 44, 49, 50, 63, 82, 96, 98, 106, 107, 108, 116, 122, 127, 129, 137, 140, 142, 143, 156, 165, 185, 189, 196, 202, 204, 209, 210, 211, 213, 215, 217, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 234, 235], "nowadai": 61, "npm": [16, 86, 100, 113, 125, 126, 149, 241], "npmj": [219, 220, 221, 229], "nr": 204, "nresult": [66, 104], "nrikhcly3at3glks2791bc": 10, "ns_caldav": 107, "nsi": 82, "null": [1, 19, 21, 22, 25, 37, 38, 49, 50, 54, 57, 58, 62, 69, 73, 90, 92, 93, 96, 101, 106, 107, 108, 110, 116, 121, 123, 124, 125, 126, 129, 132, 134, 137, 140, 141, 142, 143, 145, 146, 147, 148, 171, 181, 186, 187, 215, 220, 223, 224, 228, 229, 231, 232, 240], "nullabl": [17, 21, 22, 223, 224, 228], "num": 186, "number": [3, 5, 16, 20, 21, 36, 40, 42, 53, 56, 61, 63, 69, 72, 76, 77, 82, 97, 99, 107, 113, 114, 122, 124, 125, 129, 130, 132, 140, 141, 153, 162, 168, 169, 178, 179, 185, 186, 190, 199, 204, 206, 222, 229, 232, 234, 240, 243], "numberofimag": [56, 140, 141], "numer": [29, 61], "nvidia": [151, 159], "nvm": 239, "nvmrc": 239, "nvo4pzoto": 10, "nwdmgidb7iahf0f": 10, "o": [8, 20, 21, 82, 152, 189, 192], "oasi": 43, "oauth2": 70, "obei": 20, "obfusc": [29, 122], "obfuscateparamet": 29, "obj": [70, 186], "object": [0, 20, 21, 22, 27, 30, 31, 37, 38, 42, 44, 49, 56, 70, 87, 88, 92, 94, 96, 99, 104, 108, 109, 110, 113, 116, 121, 126, 129, 131, 132, 135, 136, 137, 140, 141, 142, 147, 168, 170, 174, 177, 179, 190, 213, 219, 229, 231, 232, 233, 234, 236, 241], "object_id": [69, 174], "object_nam": 69, "object_typ": 69, "objectid": 64, "objectstor": [192, 215], "objectstorag": 237, "objecttyp": 64, "obscur": 76, "obsolet": [115, 221, 222], "obtain": [29, 46, 67, 68, 70, 75, 97, 104, 116, 119, 129, 133, 137, 140, 141, 142, 189], "obviou": [2, 81, 122, 188], "oc": [1, 22, 25, 28, 38, 43, 44, 61, 62, 63, 64, 66, 69, 74, 75, 86, 87, 95, 96, 101, 104, 113, 116, 121, 125, 129, 132, 133, 138, 140, 141, 142, 150, 153, 154, 165, 166, 168, 169, 170, 171, 172, 175, 177, 179, 181, 183, 192, 201, 210, 213, 216, 218, 219, 220, 221, 223, 224, 227, 228, 229, 230, 231, 232, 233, 234, 235, 240, 243], "oc_": [37, 215, 231], "oc_api": 232, "oc_app": [221, 228, 229, 232, 233], "oc_app_": 233, "oc_appconfig": 218, "oc_appswebroot": 218, "oc_autotest": 243, "oc_cap": 218, "oc_config": 218, "oc_current_us": 218, "oc_debug": 218, "oc_default": 229, "oc_eventsourc": 231, "oc_fil": 232, "oc_group_backend": 215, "oc_help": [233, 234], "oc_imag": 232, "oc_isadmin": 218, "oc_job": 234, "oc_mount": 233, "oc_preview": 234, "oc_properti": 107, "oc_requesttoken": 218, "oc_respons": [215, 234], "oc_shar": 230, "oc_share_extern": 234, "oc_templ": [209, 233], "oc_them": 215, "oc_us": [0, 209, 221, 233], "oc_util": [233, 234, 235], "oc_webroot": 218, "oca": [0, 1, 2, 5, 6, 18, 19, 20, 21, 25, 27, 29, 30, 31, 33, 34, 35, 36, 37, 41, 49, 69, 87, 89, 90, 92, 94, 96, 99, 101, 104, 105, 106, 107, 108, 110, 116, 119, 120, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 144, 145, 146, 147, 148, 154, 186, 190, 209, 215, 219, 221, 224, 227, 229, 231, 232, 233, 234, 243], "occ": [4, 5, 10, 15, 17, 22, 33, 40, 42, 48, 98, 102, 113, 125, 130, 135, 136, 144, 149, 153, 154, 156, 165, 172, 183, 189, 192, 201, 215, 222, 223, 231], "occ_command": 175, "occ_command_nam": 175, "occasion": [90, 122, 144, 204], "occur": [5, 20, 22, 49, 81, 97, 105, 156, 161, 166, 173, 209, 228], "occurr": [29, 49], "ocdialog": 218, "oci": [37, 243], "ocm": [61, 233], "ocp": [0, 1, 2, 3, 6, 18, 19, 20, 21, 25, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 46, 49, 64, 69, 73, 85, 87, 88, 90, 92, 93, 94, 95, 96, 97, 99, 101, 103, 104, 105, 106, 107, 108, 110, 112, 113, 116, 120, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 176, 190, 209, 210, 211, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238, 240], "ocpactivityifilt": 5, "ocpactivityiprovid": 5, "ocpactivityiset": 5, "ocpcollaborationcollaboratorsisearchplugin": 5, "ocpcommentsicommentsmanag": 64, "ocpconfiglexiconilexicon": 92, "ocpeventdispatcherev": [17, 22], "ocphintexcept": [17, 22], "ocpserv": 21, "ocpsettingsisect": 5, "ocpsettingsiset": 5, "ocpshar": 5, "ocptaskid": 87, "ocr": 140, "ocsbadrequestexcept": [49, 240], "ocscontrol": [20, 33, 49, 131, 190, 240], "ocsexcept": 240, "ocsforbiddenexcept": 240, "ocshar": 70, "ocsnotfoundexcept": 240, "off": [20, 76, 122, 190, 209, 226], "offer": [13, 18, 19, 27, 30, 49, 71, 73, 76, 79, 94, 101, 104, 106, 108, 116, 122, 125, 131, 132, 137, 140, 141, 142, 150, 185, 204, 209], "offic": [5, 17, 22, 45, 52, 61, 75, 88, 113, 227], "officedocu": 43, "offici": [10, 14, 71, 82, 107, 117, 151, 222, 229], "offlin": [54, 60, 115], "offset": [37, 54, 64, 69, 132, 229, 232], "often": [6, 18, 25, 35, 42, 49, 62, 76, 77, 80, 90, 118, 122, 125, 133, 140, 144, 179, 186, 188, 204, 209, 231, 240], "og": 31, "ogp": 31, "oidc": [46, 61, 88, 113], "ok": [43, 44, 46, 48, 50, 51, 54, 56, 57, 58, 59, 69, 71, 76, 81, 96, 101, 104, 129, 166, 168, 177, 182, 200, 240], "okai": [25, 202, 226], "old": [0, 3, 5, 10, 18, 40, 44, 45, 73, 96, 115, 152, 221, 222, 223, 229, 234, 235, 236], "older": [20, 34, 49, 69, 82, 131, 185, 188, 190, 210, 222, 226, 229], "oldest": 204, "omit": [1, 20, 29, 37, 46, 76, 81, 101, 106, 232], "onc": [0, 5, 8, 18, 20, 21, 22, 25, 33, 38, 40, 41, 44, 48, 60, 63, 72, 76, 85, 89, 90, 93, 98, 101, 105, 107, 108, 118, 121, 122, 129, 130, 131, 140, 151, 185, 188, 190, 204, 214, 221, 232, 233, 238, 239, 240], "onclick": 87, "oncreat": 70, "ondatatransferprogresslisten": 70, "one": [3, 5, 7, 8, 10, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 33, 34, 37, 40, 42, 44, 48, 49, 52, 54, 61, 62, 70, 71, 76, 79, 81, 82, 83, 85, 89, 90, 93, 94, 97, 99, 101, 104, 105, 108, 110, 115, 116, 118, 119, 120, 121, 122, 129, 131, 132, 133, 134, 135, 139, 140, 141, 142, 144, 147, 148, 158, 166, 179, 180, 184, 185, 186, 187, 188, 189, 190, 198, 199, 200, 202, 204, 209, 217, 221, 222, 227, 229, 230, 231], "onelin": 16, "onelogin": 241, "ones": [16, 49, 94, 98, 101, 105, 107, 129, 200, 204, 231], "onev": 105, "ongo": [45, 121], "onli": [2, 3, 5, 8, 10, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 29, 30, 33, 34, 35, 36, 37, 40, 42, 43, 44, 46, 48, 49, 50, 52, 56, 57, 58, 60, 61, 62, 63, 66, 69, 72, 76, 79, 81, 82, 85, 87, 89, 90, 93, 96, 97, 99, 101, 104, 105, 106, 115, 121, 122, 125, 128, 130, 131, 132, 134, 135, 137, 140, 141, 142, 144, 148, 152, 154, 158, 161, 165, 167, 169, 170, 171, 179, 181, 182, 185, 188, 189, 190, 193, 194, 199, 200, 204, 209, 213, 215, 218, 222, 223, 226, 227, 228, 229, 231, 232, 233, 234, 238, 239, 243], "onlin": [5, 54, 115, 192], "only_full_group_bi": 37, "onlyoffic": [13, 241], "onlyofficedock": 192, "onremoteoperationfinish": 70, "onremoteoperationlisten": 70, "onto": 37, "ontransferprogress": 70, "onward": 131, "oo": 192, "oop": 81, "op": [94, 101], "open": [8, 13, 15, 20, 21, 47, 61, 72, 75, 76, 82, 107, 113, 114, 122, 124, 128, 129, 156, 167, 171, 185, 188, 190, 192, 198, 199, 200, 204, 209, 215, 233, 234, 240, 243], "open_basedir": 243, "openai": 140, "openapi": [45, 47, 55, 75, 231, 233], "openassistanttask": 87, "openconflictpick": [230, 231], "opendocu": 43, "opengraph": [31, 129], "opengraphobject": 129, "openid": [88, 113], "openmetr": [120, 234], "openpgp": 152, "openssl": [10, 62, 82, 192, 242], "openstreetmap": 129, "opensus": 82, "openxmlformat": 43, "oper": [19, 20, 25, 29, 37, 38, 40, 49, 65, 66, 70, 75, 76, 79, 90, 107, 108, 111, 113, 122, 128, 133, 152, 166, 188, 228], "oppos": 42, "opposit": 235, "opt": [25, 82, 96, 132, 226], "optim": [20, 25, 38, 62, 89, 107, 122, 142], "optimist": [222, 229], "option": [0, 4, 5, 10, 13, 16, 20, 25, 26, 28, 29, 33, 35, 37, 40, 42, 43, 45, 46, 48, 51, 56, 61, 76, 79, 82, 86, 88, 89, 90, 92, 96, 97, 99, 100, 101, 104, 105, 106, 108, 110, 113, 129, 136, 139, 140, 141, 150, 151, 153, 159, 160, 166, 169, 170, 174, 175, 179, 180, 185, 189, 192, 193, 194, 198, 199, 200, 209, 213, 215, 226, 229, 231, 233, 234, 236, 242], "option_nam": 175, "optionalmimetyp": 101, "oracl": [37, 223, 243], "orchestr": 150, "order": [3, 5, 6, 17, 18, 20, 22, 30, 32, 34, 35, 42, 44, 62, 63, 66, 81, 82, 95, 96, 97, 99, 104, 107, 115, 118, 124, 126, 129, 130, 131, 132, 134, 144, 153, 169, 171, 185, 190, 199, 202, 204, 211, 223, 234], "order_in_file_actions_menu": 171, "orderbi": [66, 104], "org": [3, 5, 61, 64, 66, 67, 73, 95, 96, 98, 104, 108, 129, 130, 136, 152, 204, 229, 234, 243], "organ": [5, 8, 11, 15, 49, 76, 106, 199, 203], "organis": [92, 124, 190, 199], "organiz": 42, "orient": 43, "origin": [54, 56, 57, 61, 63, 67, 87, 129, 140, 141, 142, 149, 175, 188, 189, 192, 204, 209, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228], "origin_languag": 140, "original_languag": 129, "original_titl": 129, "orx": 231, "oscar": 142, "oscarwildetasktyp": 142, "osslsigncod": 82, "other": [0, 3, 5, 10, 12, 13, 14, 15, 16, 17, 20, 21, 22, 25, 26, 29, 30, 33, 35, 37, 49, 50, 61, 69, 76, 77, 80, 81, 82, 87, 89, 90, 94, 95, 96, 97, 98, 101, 105, 106, 107, 110, 112, 115, 122, 126, 128, 129, 130, 131, 132, 134, 135, 136, 139, 140, 144, 146, 147, 150, 151, 152, 153, 154, 155, 159, 162, 165, 166, 172, 183, 185, 186, 188, 190, 194, 202, 204, 208, 209, 223, 226, 230, 231, 232, 236], "other_app": 29, "other_t": 40, "other_templ": 26, "otherclass": [21, 89], "otherwis": [10, 14, 20, 42, 46, 51, 56, 63, 76, 77, 90, 94, 101, 107, 132, 134, 140, 141, 142, 143, 194, 209, 231, 232, 233, 234], "our": [5, 8, 10, 14, 18, 34, 49, 71, 79, 95, 104, 107, 110, 122, 126, 154, 156, 158, 165, 193, 202, 203, 204, 205, 207, 209, 211, 215, 232, 233, 240], "out": [10, 13, 17, 18, 20, 21, 22, 25, 29, 37, 42, 45, 46, 56, 61, 75, 76, 79, 81, 82, 88, 96, 113, 115, 116, 122, 132, 144, 145, 146, 150, 154, 156, 166, 185, 192, 199, 204, 206, 210, 211, 223, 226, 227], "outbound": 152, "outbox": 192, "outer": 131, "outgo": 61, "outlin": [8, 76, 77], "outofoffic": 50, "outofofficechangedev": 121, "outofofficedeletedev": 121, "outofofficeendedev": 121, "outofofficescheduledev": 121, "outofofficestartedev": 121, "output": [1, 15, 20, 21, 29, 30, 40, 42, 49, 57, 64, 87, 97, 98, 115, 116, 118, 122, 123, 131, 136, 141, 142, 145, 151, 186, 190, 209, 213, 231, 233, 234, 243], "outputinterfac": [1, 145], "outsid": [21, 49, 52, 53, 54, 59, 129, 133, 150, 188, 190, 193, 199, 231], "over": [14, 20, 29, 32, 46, 48, 52, 53, 54, 59, 61, 66, 76, 81, 98, 101, 107, 122, 129, 145, 186, 190, 196, 204, 223, 229, 230, 231, 234], "overal": [0, 16, 20, 116, 122, 131, 132, 137, 140, 141, 142, 215, 219, 231], "overcompl": 199, "overflow": [145, 193], "overhead": [20, 90, 236], "overlai": [76, 96], "overlayiconurl": 96, "overload": 122, "overlook": 209, "overrid": [1, 29, 31, 37, 40, 46, 70, 120, 147, 195, 199], "overse": 12, "overtak": 209, "overview": [0, 5, 11, 20, 28, 32, 44, 45, 60, 61, 75, 91, 96, 102, 113, 114, 115, 129, 151, 153, 163, 183, 185, 188, 190, 201, 237], "overwhelm": 77, "overwrit": [8, 15, 25, 30, 41, 61, 70, 92, 128, 135, 231, 236, 243], "overwritten": [54, 61, 107, 128], "own": [8, 17, 20, 21, 22, 26, 29, 30, 37, 38, 41, 42, 44, 45, 46, 48, 52, 61, 72, 73, 76, 82, 83, 90, 96, 98, 101, 105, 107, 124, 125, 126, 129, 134, 140, 142, 148, 158, 186, 188, 190, 196, 200, 217, 218, 219, 220, 223, 225, 226, 227, 230, 231, 234], "owncloud": [61, 64, 66, 70, 104, 202, 243], "owncloudcli": 70, "owncloudclientfactori": 70, "owner": [8, 31, 61, 66, 104, 139, 152, 231], "ownerid": [48, 61], "ownership": [152, 231], "oxygen": 194, "p": [8, 15, 26, 42, 89, 92, 129, 134, 152, 185, 190, 192, 209], "pack": [20, 40, 107], "packag": [0, 16, 25, 42, 70, 82, 85, 86, 95, 98, 113, 118, 126, 152, 155, 186, 217, 219, 220, 221, 222, 226, 229, 231, 232, 233, 239], "pad": [61, 199, 200], "page": [3, 5, 6, 7, 10, 13, 16, 17, 21, 22, 25, 33, 42, 43, 48, 49, 53, 69, 76, 80, 82, 86, 90, 93, 98, 99, 106, 113, 115, 124, 126, 127, 129, 131, 132, 144, 161, 167, 172, 185, 188, 189, 190, 192, 194, 203, 204, 206, 209, 212, 213, 214, 215, 227, 228, 229, 232, 234, 235, 243], "page_numb": 232, "page_s": 232, "pagecontrol": [20, 21, 33, 190], "pagedprovid": 234, "pagin": [33, 54, 129, 232], "pai": 221, "pain": 204, "pair": [33, 59, 93, 116], "palett": 76, "panel": 81, "paper": 231, "paperclip": 76, "paragraph": [107, 129], "parallel": [20, 40, 82, 122, 132], "param": [20, 25, 43, 49, 64, 73, 94, 104, 107, 129, 130, 134, 137, 138, 143, 144, 170, 172, 187, 209, 227, 228, 234], "param1": 69, "param_d": 232, "param_date_immut": 232, "param_date_mut": 232, "param_datetime_immut": 232, "param_datetime_mut": 232, "param_datetime_tz_immut": 232, "param_datetime_tz_mut": 232, "param_int": 37, "param_str": 37, "param_time_immut": 232, "param_time_mut": 232, "paramet": [15, 22, 26, 28, 29, 32, 33, 34, 37, 42, 45, 46, 52, 60, 61, 70, 73, 82, 92, 96, 97, 98, 99, 101, 104, 105, 107, 110, 116, 125, 126, 128, 129, 130, 132, 134, 135, 140, 149, 153, 154, 165, 166, 169, 171, 175, 187, 192, 209, 215, 222, 229, 231, 232, 233, 234, 240], "parcel": 115, "parent": [0, 1, 18, 20, 21, 22, 25, 26, 30, 33, 35, 36, 37, 41, 49, 61, 70, 96, 99, 104, 106, 107, 110, 124, 126, 129, 131, 145, 190, 192, 193, 243], "parenthesi": 42, "parentid": 64, "pars": [20, 25, 28, 70, 101, 107, 132, 190, 227, 231, 232], "parsedrelyingpartyid": 192, "parser": [210, 227], "part": [10, 16, 20, 21, 24, 33, 34, 37, 40, 42, 48, 62, 82, 89, 93, 107, 125, 135, 138, 154, 155, 158, 162, 167, 185, 186, 190, 194, 199, 231, 232], "parti": [3, 8, 10, 14, 20, 46, 71, 89, 95, 101, 106, 123, 127, 131, 132, 151, 154, 188, 190, 233, 240], "partial": [94, 129, 131, 132], "particip": [76, 138, 205], "particular": [20, 21, 49, 61, 82, 125, 190], "particularli": 61, "partli": 236, "partnership": 13, "pascal": 227, "pascalcas": 190, "pass": [12, 18, 20, 21, 22, 26, 29, 33, 42, 46, 61, 62, 63, 69, 82, 87, 90, 95, 101, 105, 106, 107, 116, 122, 128, 129, 130, 131, 135, 137, 140, 141, 142, 146, 154, 164, 175, 180, 190, 209, 222, 228, 229, 231, 232, 234, 236], "passm": 144, "passthru": 209, "passwd": [96, 129], "password": [17, 20, 22, 29, 46, 48, 52, 61, 66, 70, 75, 76, 81, 99, 101, 128, 146, 156, 165, 179, 192, 215, 224, 231, 232, 240, 243], "passwordconfirmationrequir": [34, 115, 231], "passwordcontext": 232, "passwordupdatedev": 229, "past": [10, 20, 54, 101, 115, 121, 217, 223], "patch": [20, 33, 89, 115, 131, 188, 202], "path": [7, 10, 15, 20, 21, 29, 31, 33, 38, 46, 48, 52, 61, 62, 63, 69, 70, 73, 82, 87, 90, 95, 101, 131, 132, 134, 135, 148, 152, 154, 156, 165, 167, 171, 174, 181, 190, 192, 209, 219, 236], "path_myapp_fil": 145, "path_root": 145, "path_separ": 70, "path_to_fil": 15, "patienc": 204, "pattern": [28, 33, 40, 42, 49, 80, 90, 97, 122, 146, 190], "paul": 52, "payload": [43, 101, 153, 166, 172], "paypal": 13, "pdf": [43, 105], "pdo": [37, 242], "pdo_mysql": 15, "pdo_pgsql": 15, "pdo_sqlit": 15, "peak": 122, "pecl": 192, "peer": 12, "pem": 192, "penalti": 122, "pend": [40, 45, 54, 185, 190], "peopl": [10, 14, 15, 42, 79, 81, 122, 185, 204, 209], "per": [8, 16, 20, 36, 37, 44, 46, 49, 53, 76, 79, 81, 93, 97, 99, 101, 133, 148, 162, 184, 186, 232], "percona": 97, "perfect": 122, "perform": [0, 4, 10, 18, 32, 37, 38, 46, 61, 67, 70, 76, 96, 100, 110, 113, 119, 125, 132, 135, 145, 149, 152, 154, 160, 166, 175, 190, 196, 202, 209, 230, 233], "perhap": 204, "period": [16, 17, 20, 22, 50, 88, 96, 106, 113, 153, 161], "permalink": 129, "perman": [76, 162, 163, 192], "permiss": [45, 49, 61, 66, 76, 82, 107, 149, 152, 156, 171, 189, 202, 232, 236], "permissionerror": 49, "permissionsmask": 236, "permit": 10, "perpag": 53, "persever": 204, "persist": [37, 69, 76, 144, 156, 165], "person": [5, 10, 34, 42, 61, 69, 76, 81, 88, 107, 113, 121, 132, 134, 231], "personalsect": 134, "perspect": 223, "pfx": 82, "pgsql": [5, 37, 243], "phar": [3, 8, 154], "phase": [2, 85, 211, 223], "phish": 209, "phone": [46, 113, 114, 124, 229], "phone_numb": 37, "phonenumb": 37, "photo": [61, 80], "php": [0, 1, 2, 3, 5, 7, 8, 10, 15, 16, 18, 19, 20, 21, 22, 23, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 43, 44, 46, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 81, 86, 87, 89, 90, 92, 94, 96, 99, 100, 101, 103, 104, 106, 107, 108, 110, 112, 113, 116, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 150, 151, 153, 154, 162, 163, 164, 165, 166, 167, 169, 170, 171, 174, 175, 179, 185, 189, 191, 192, 209, 215, 216, 217, 221, 233, 237, 238, 240, 241], "php_os_famili": 234, "phpdoc": [20, 187, 215], "phpmailer": 215, "phpredi": 192, "phpstorm": [98, 149], "phpunit": [3, 41, 95], "physic": [194, 232], "pi": 204, "pick": [18, 19, 54, 76, 82, 89, 97, 101, 129, 188, 190, 204], "picker": [17, 22, 78, 101, 102, 113, 126, 235], "pictur": [19, 71, 76, 124], "pictureservic": 19, "piec": [76, 185, 190], "pill": [77, 231], "pin": [15, 197], "pineappl": 112, "ping": [43, 124, 175, 223], "pingpong": 43, "pingus": 124, "pinia": 186, "pip": 152, "pipelin": 42, "pitfal": [49, 135], "pivot": 243, "pixel": [69, 219, 231], "pizza": 112, "pkcs12": 82, "place": [1, 8, 14, 29, 32, 33, 40, 42, 49, 76, 79, 82, 89, 92, 115, 122, 129, 130, 144, 151, 163, 171, 194, 199, 202, 204, 206, 209, 229, 239], "placehold": [29, 43, 69, 78, 96, 99, 156, 179, 194], "plai": [46, 122], "plain": [26, 44, 46, 49, 66, 69, 76, 81, 87, 96, 101, 103, 107, 110, 126, 129, 131, 190, 194, 223, 232], "plan": [107, 110, 185, 235], "platform": [21, 37, 43, 77, 81, 82, 101, 140, 191, 202, 204, 211, 213, 231], "player": 46, "plbdab2ba83bb6588": 243, "pleas": [3, 8, 9, 10, 14, 17, 21, 22, 26, 36, 41, 42, 43, 44, 45, 49, 73, 82, 95, 104, 106, 107, 110, 122, 127, 135, 145, 149, 156, 159, 161, 162, 169, 185, 189, 192, 195, 196, 199, 203, 209, 219, 222, 226, 229, 231, 232, 233, 234, 235, 238, 239, 241], "plu": [44, 110, 129, 233], "plug": [30, 144, 190], "pluggabl": 132, "plugin": [3, 4, 5, 17, 22, 25, 109, 113, 114, 133, 186, 227], "plural": 167, "pm": 76, "png": [5, 26, 48, 61, 66, 69, 96, 108, 129, 132, 227], "po": [8, 42, 154, 167], "poedit": 8, "point": [0, 16, 20, 49, 76, 101, 129, 131, 137, 152, 166, 186, 190, 192, 221], "pointer": 162, "polici": [17, 22, 41, 61, 209, 229, 239], "polit": 204, "poll": [44, 140], "pollinterv": 46, "polyfil": 23, "pong": 43, "poorli": [79, 185], "pop": 70, "popen": 209, "popmus": 70, "popov": [20, 76, 197, 198, 199, 201], "popovermenu": [197, 200], "popul": [19, 84, 113], "popular": [98, 129, 229], "popup": 42, "port": [98, 133, 149, 152, 156, 158, 165, 192, 218, 230, 234], "portal": 192, "posit": [1, 8, 42, 76, 77, 122, 136, 185, 194, 200, 202, 204, 229, 234], "posselt": 5, "possess": 81, "possibl": [2, 8, 14, 16, 17, 20, 21, 22, 25, 31, 33, 36, 37, 38, 40, 41, 42, 45, 46, 50, 52, 56, 61, 70, 76, 77, 81, 82, 85, 87, 90, 93, 97, 106, 107, 110, 115, 116, 119, 122, 125, 129, 131, 132, 133, 134, 135, 136, 138, 139, 144, 145, 147, 151, 152, 160, 166, 173, 176, 187, 188, 194, 204, 209, 217, 221, 224, 227, 231, 232, 233, 236, 240], "possibli": [42, 223], "post": [3, 5, 10, 20, 33, 39, 43, 44, 46, 48, 50, 52, 54, 56, 57, 58, 59, 60, 62, 64, 70, 86, 98, 101, 113, 118, 129, 130, 131, 153, 158, 165, 166, 168, 169, 170, 171, 173, 174, 175, 177, 178, 179, 180, 181, 209, 215], "post_removefromgroup": 221, "postacceptshar": 229, "postaddus": [22, 229], "postasset": 101, "postcontrol": 33, "postcopi": 22, "postcreat": 22, "postcreateus": 22, "postdelet": [22, 229], "postfix": 33, "postgr": 122, "postgrabfocu": 101, "postgresql": [37, 217], "postldapbackendad": 221, "postlogin": 22, "postmessag": 101, "postremoveus": [22, 229], "postrenam": 22, "postscanfil": 22, "postscanfold": 22, "postschemachang": 40, "postsetpassword": [22, 229], "postshar": 229, "posttouch": 22, "postunassigneduserid": 232, "postunshar": 229, "postunsharefromself": 229, "postwrit": 22, "pot": 8, "potenti": [21, 97, 129, 150, 209, 236], "power": [8, 222, 224, 229], "powershel": 82, "pr": [64, 129, 151, 185, 188, 202, 223, 227], "practic": [20, 45, 90, 113, 114, 151, 152, 190], "practis": 206, "pre": [4, 5, 12, 15, 20, 32, 40, 52, 53, 54, 59, 87, 126, 130, 140, 184, 201], "pre_deleteus": 0, "preaddus": [22, 229], "preced": 42, "precis": [16, 136], "precondit": [56, 57, 58, 135], "preconditionnotmetexcept": [140, 141, 142], "precopi": 22, "precreat": 22, "precreateus": 22, "predefin": [43, 45, 194], "predefined_status": 54, "predelet": [22, 229], "predict": 129, "prefer": [19, 20, 29, 45, 46, 69, 71, 75, 76, 79, 81, 93, 99, 113, 114, 132, 140, 145, 149, 172, 179, 183, 184, 185, 189, 236], "preferences_ex": 171, "preferstream": [140, 213], "prefil": 101, "prefix": [1, 22, 33, 37, 40, 54, 61, 82, 90, 93, 104, 107, 122, 131, 132, 186, 190, 231], "preflight": [131, 209], "preflighted_cor": 131, "preg_match": 135, "preliminari": 121, "preload": [2, 76, 113, 114, 124, 233], "preloadcollect": [148, 233], "prelogin": 22, "premad": 20, "prepar": [20, 97, 106, 107, 152, 209, 222, 231], "preparerulematch": 105, "prepend": [25, 29, 187], "prereleas": 15, "preremoveus": [22, 229], "prerenam": 22, "prerequisit": [45, 189, 241], "present": [1, 5, 20, 32, 33, 49, 52, 61, 63, 82, 101, 107, 124, 166, 167, 185, 189, 233], "preserv": [44, 105], "preset": [26, 76], "presetpassword": [22, 229], "preshar": 229, "presumpt": 132, "pretouch": 22, "pretti": [16, 204], "preunassigneduserid": 232, "preunshar": 229, "prev": 40, "prevent": [10, 15, 16, 18, 20, 26, 33, 37, 41, 42, 49, 52, 98, 132, 135, 156, 186, 187, 190, 209, 231], "preview": [5, 20, 61, 66, 69, 76, 101, 102, 113, 132, 229, 232, 233], "previewmanag": 232, "previewrequest": 229, "previou": [10, 16, 22, 29, 40, 49, 76, 82, 132, 147, 166, 185, 186, 210, 212, 230], "previous": [16, 20, 34, 82, 140, 165, 188, 222, 228, 231, 233, 234], "previousev": 69, "previousrespons": 147, "prewrit": 22, "primari": [12, 17, 20, 22, 37, 38, 46, 76, 110, 122, 136, 184, 195, 199, 200, 233, 241], "prime": [0, 15, 204], "primit": 22, "princip": [106, 107], "principaluri": 107, "principl": [79, 107, 175, 185], "print": [1, 26, 62, 98, 101, 125, 152, 209], "print0": 95, "print_unescap": [26, 134, 209], "prior": [21, 188], "prioriti": [20, 23, 34, 76, 99, 124, 134, 179, 188], "privaci": [14, 102, 113], "privat": [1, 2, 10, 15, 18, 19, 20, 21, 22, 29, 30, 31, 33, 34, 35, 36, 37, 38, 40, 41, 42, 49, 70, 82, 90, 92, 96, 99, 101, 103, 106, 107, 108, 110, 112, 116, 124, 126, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 145, 146, 147, 148, 162, 173, 187, 190, 210, 232, 234], "privatekei": [10, 15], "privileg": [20, 152, 189, 208, 236], "pro": 129, "probabl": [16, 49, 107, 128], "problem": [2, 3, 10, 20, 21, 37, 42, 49, 76, 79, 82, 97, 115, 122, 125, 150, 161, 189, 204, 209, 222, 223, 243], "problemat": [3, 63, 162], "proc_open": 209, "proce": [44, 60, 122], "procedur": [44, 95, 208], "proceed": 76, "process": [4, 10, 11, 12, 14, 17, 19, 20, 22, 29, 32, 40, 42, 47, 49, 55, 56, 57, 71, 82, 84, 85, 87, 89, 92, 95, 104, 107, 108, 113, 115, 116, 118, 122, 132, 137, 141, 150, 151, 152, 153, 154, 165, 171, 190, 191, 201, 204, 206, 228, 231, 233, 234], "processcalendardata": 106, "processingexcept": 140, "processor": 184, "prod": 118, "prodid": 107, "produc": [3, 29, 49, 87, 101, 126, 140, 196], "product": [3, 12, 16, 42, 95, 118, 125, 135, 189, 190, 204, 205, 228, 239], "productnam": [42, 192], "profil": [42, 76, 81, 82, 88, 100, 113, 156, 231], "profilesect": 234, "program": [0, 10, 44, 82, 125, 150, 151, 154, 167, 209], "programfil": 82, "programm": 209, "programmat": [20, 88, 106, 113, 115], "progress": [42, 62, 70, 118, 130, 140, 153, 165, 166, 172, 185, 197, 213, 235], "progressbar": 130, "progressr": 70, "project": [5, 10, 14, 16, 17, 22, 71, 111, 113, 118, 150, 154, 185], "projectfil": [3, 95], "prolif": 14, "prologu": [71, 201], "prometheu": [120, 129], "promin": 76, "promis": [14, 73, 87, 126, 129], "promot": [20, 21], "prompt": [1, 55, 57, 82, 141, 142, 231], "promptli": 204, "prone": 49, "pronoun": 78, "proof": 21, "proofread": 140, "prop": [61, 66, 104, 126, 129, 148, 186], "propag": [122, 140, 144, 169], "proper": [10, 14, 20, 42, 44, 81, 140, 161, 194, 209, 233, 234, 240], "properli": [10, 25, 41, 97, 128, 129, 217, 240], "properti": [2, 20, 21, 31, 37, 64, 65, 67, 104, 108, 124, 126, 129, 131, 132, 136, 146, 148, 190, 193, 194, 209, 228, 232, 233, 234], "property_birthd": 231, "property_displayname_legaci": 228, "propertytocolumn": 37, "propertyupd": [61, 104], "propfind": [2, 61, 64, 67, 68, 102, 113, 122, 148, 233], "propos": 76, "proppatch": [61, 64, 102, 107, 113], "propsdata": [96, 129], "propstat": 104, "prose": 142, "protect": [0, 1, 8, 18, 37, 41, 52, 82, 90, 107, 126, 128, 130, 153, 161, 164, 178, 190, 192, 209, 227, 228, 243], "protocol": [44, 62, 98, 110, 153, 165, 192, 209, 218, 234], "prototyp": 154, "provid": [0, 1, 5, 10, 13, 14, 15, 17, 18, 20, 21, 22, 26, 27, 29, 31, 32, 34, 35, 38, 39, 43, 44, 45, 46, 48, 49, 50, 52, 56, 57, 58, 60, 61, 63, 66, 67, 71, 75, 76, 77, 79, 81, 82, 84, 86, 88, 89, 90, 92, 93, 98, 101, 102, 108, 109, 111, 113, 115, 121, 123, 124, 125, 128, 131, 133, 135, 143, 145, 149, 150, 152, 154, 158, 162, 164, 165, 167, 169, 171, 175, 179, 180, 181, 185, 186, 187, 190, 192, 194, 195, 198, 199, 209, 210, 213, 215, 222, 224, 225, 226, 227, 228, 230, 231, 232, 233, 234, 236, 240, 243], "provideinitialst": [25, 31, 96, 190], "providelazyinitialst": 25, "provider1": 110, "provider_id": [48, 129], "providerclass": 94, "providerid": [48, 94, 129], "provis": [218, 228], "provisioning_api": 59, "proxi": [44, 107, 112, 151, 152, 154, 161, 162, 163, 165, 178, 181], "proxy_host": 156, "proxy_password": 156, "proxy_port": 156, "proxy_us": 156, "prune": 189, "ps1": 82, "psalm": [3, 49, 85, 95, 242], "psr": [3, 21, 29, 89, 100, 113, 130, 143, 232], "psr3": [223, 230], "pt1h": 106, "public": [0, 1, 2, 5, 6, 10, 14, 15, 16, 17, 18, 19, 21, 25, 28, 29, 30, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 46, 49, 52, 69, 70, 72, 86, 90, 92, 94, 96, 97, 99, 101, 103, 104, 106, 107, 108, 110, 112, 113, 116, 120, 121, 123, 124, 125, 126, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 154, 178, 185, 187, 190, 192, 194, 201, 215, 222, 226, 227, 229, 231, 238, 243], "public_link": 70, "publicapi": 128, "publicapicontrol": 128, "publicdisplai": 128, "publicfunct": 170, "publicli": [157, 210, 217], "publicpag": [20, 49, 128, 231], "publicshareauth": [6, 221], "publicsharecontrol": 128, "publictemplaterespons": [20, 31], "publicupload": 52, "publish": [7, 14, 15, 16, 20, 22, 75, 107, 131, 138, 155, 188, 201, 209, 214, 231], "publishact": 216, "publishcalendar": 221, "pull": [10, 12, 16, 64, 85, 95, 96, 97, 150, 151, 165, 167, 183, 185, 188, 189, 194, 202, 206, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 233, 240], "pure": [20, 21], "purpos": [6, 14, 22, 98, 131, 137, 140, 141, 142, 165, 198, 221], "push": [8, 10, 15, 16, 46, 151, 154, 166, 188, 202], "put": [3, 15, 20, 33, 42, 46, 49, 52, 54, 61, 63, 76, 79, 86, 95, 107, 113, 116, 122, 129, 131, 132, 137, 140, 141, 142, 152, 153, 165, 166, 170, 178, 185, 190, 199, 200], "putcont": [35, 38], "pwd": [64, 82, 189], "pwd1": 192, "pwd2": 192, "py": [152, 154], "python": [28, 82, 151, 152, 154, 167, 179, 190], "python3": 152, "qa": 185, "qb": [37, 97, 104, 234], "qbmapper": [37, 190, 215, 227, 231], "qsyqflqhouhdpq0w2aocwqgdaei": 129, "qt": 82, "qt5": 82, "qt5keychain": 82, "qt6": 82, "qt_path": 82, "qtkeychain": 82, "qtkeychain_librari": 82, "qualifi": [69, 106, 188, 220], "qualiti": [85, 202], "queri": [0, 2, 20, 21, 22, 25, 38, 39, 40, 42, 46, 47, 61, 66, 73, 76, 88, 90, 94, 97, 100, 102, 106, 113, 122, 129, 132, 148, 153, 166, 171, 184, 190, 204, 209, 210, 220, 221, 222, 224, 227, 228, 229, 230, 231, 232, 233, 234], "querybuild": [37, 104, 211, 213, 222, 224, 231, 232], "querylogg": 232, "querystatusforus": 138, "question": [1, 5, 14, 21, 37, 42, 43, 94, 150, 161, 163, 188, 201, 204, 206, 233], "questionhelp": 1, "queue": 18, "queuedjob": [18, 230], "quick": [20, 44, 46, 48, 60, 65, 79, 194, 200], "quickli": [2, 25, 115, 132, 204], "quiet": 93, "quit": [8, 33, 56, 57, 58, 98, 107, 190, 215], "quot": [13, 42, 61, 107, 185], "quota": [46, 61, 63], "qux": [99, 179], "r": [8, 48, 61, 62, 70, 82, 152, 186, 189, 243], "r0wi": [15, 152], "race": [3, 20, 129, 204, 229], "rach": 16, "radio": [46, 134, 179, 197, 200], "radio1": 200, "radiu": [77, 194], "rais": [81, 101, 221], "ran": [40, 82, 87, 135], "rand": 62, "random": [21, 63, 136, 204], "randomli": 165, "rang": [5, 96, 106, 140, 210], "rare": [16, 21, 76, 151, 222], "raspberri": 204, "rate": [11, 56, 57, 58, 113, 114, 153, 161, 164, 228], "ratelimit": [133, 228], "ratelimitedforal": 20, "rather": [18, 21, 22, 34, 37, 49, 81, 96, 101, 107, 129, 134, 140, 185, 190, 233], "raw": [56, 61, 77, 82, 106, 107, 152, 156, 190], "rc": 16, "re": [14, 17, 20, 22, 37, 42, 45, 79, 82, 97, 101, 104, 115, 156, 161, 178, 188, 198, 199, 200, 204, 231], "reach": [0, 13, 16, 19, 20, 69, 92, 133, 188, 206], "reachabl": [20, 49, 152, 161, 209], "react": [5, 22, 29, 115, 122, 129, 131, 147, 234], "reaction": [76, 79], "read": [1, 2, 15, 21, 35, 36, 37, 41, 42, 49, 52, 61, 64, 75, 76, 79, 93, 98, 101, 102, 108, 113, 115, 148, 152, 180, 185, 190, 202, 203, 204, 209, 228, 231, 236], "read_timeout": 192, "readabl": [8, 21, 49, 61, 90, 101, 106, 140, 152, 206], "reader": [5, 206], "readi": [0, 12, 16, 56, 57, 58, 101, 115, 151, 166, 185, 190, 221], "readm": [5, 12, 96, 186], "readmark": 64, "readonli": [134, 136], "readoper": 70, "readremotefileoper": 70, "readremotefolderoper": 70, "real": [44, 49, 64, 76, 107, 135, 190, 192], "realli": [21, 40, 96, 122, 125, 188, 204, 209, 218, 234], "reason": [8, 12, 29, 48, 82, 122, 131, 140, 141, 142, 152, 196, 204, 205, 206, 231, 232, 233], "reason_lock_wait_timeout": 231, "reason_serv": 231, "reason_unique_constraint_viol": 234, "rebas": [185, 189], "reboot": 156, "rebuild": [118, 239], "receiv": [0, 12, 13, 20, 21, 22, 52, 60, 61, 64, 69, 70, 101, 107, 117, 132, 140, 152, 153, 156, 165, 166, 188, 190, 222, 223], "recent": [8, 51, 76, 82, 129, 204, 222], "recipi": [17, 22, 52, 61, 76, 96, 192], "recogn": [22, 69, 76], "recognis": 29, "recommend": [0, 3, 10, 12, 16, 17, 22, 28, 29, 37, 38, 40, 45, 63, 75, 82, 95, 97, 110, 115, 118, 122, 127, 129, 131, 133, 137, 140, 149, 151, 152, 154, 158, 160, 184, 186, 189, 194, 199, 210, 211, 221, 222, 223, 227, 228, 229, 231, 232, 239], "reconsid": 131, "record": [44, 234], "recov": 146, "recover": 76, "recoveri": 66, "recoverpassword": 22, "recoverypassword": 146, "recreat": 204, "rector": [211, 234], "recurs": 61, "recursivearraysearch": [216, 233, 235], "recv": 152, "red": [134, 184], "redi": [19, 125, 241], "redirect": [33, 44, 151, 172, 199, 208, 218, 234], "redirect_handl": 171, "redirectrespons": [20, 33, 49], "redirecttodefaultpag": 235, "redirecturl": 209, "redisclust": 192, "reduc": [21, 38, 85, 90, 97, 115, 122, 152, 233], "redund": 148, "ref": [15, 151, 190, 227], "refactor": [90, 97, 231], "refer": [1, 3, 10, 20, 21, 33, 42, 72, 77, 81, 82, 86, 94, 95, 101, 102, 110, 113, 114, 131, 132, 140, 149, 151, 152, 159, 162, 188, 190, 206, 210, 231, 234], "referenc": 185, "reference_provider_id": 129, "referencedclass": 95, "referencetext": 129, "reflec": 218, "reflect": [21, 22, 33], "reflector": 30, "refman": 97, "reformul": 140, "refresh": [17, 22, 96, 98, 101, 104, 119, 190], "refreshmetadata": [104, 229], "refreshoper": 70, "refus": [10, 40], "regard": [20, 150], "regardless": [20, 37, 129], "regener": 20, "regex": [33, 34, 178, 218], "region": [113, 114, 192, 229], "regist": [0, 3, 4, 5, 6, 15, 17, 20, 21, 22, 25, 28, 29, 30, 31, 34, 38, 43, 44, 46, 49, 61, 62, 63, 75, 86, 88, 89, 94, 102, 104, 105, 106, 109, 111, 113, 114, 115, 116, 125, 132, 133, 137, 138, 140, 141, 142, 147, 148, 149, 153, 154, 156, 159, 165, 166, 172, 190, 210, 219, 221, 224, 226, 227, 229, 230, 231, 232, 234], "registeralternativelogin": 221, "registeranonrequest": 133, "registerbackend": [106, 233], "registercalendar": 224, "registercalendarprovid": 107, "registercap": [43, 49], "registercheck": 229, "registerchecksev": 229, "registercollaborationresourc": 126, "registerconfiglexicon": 92, "registercontentprovid": 94, "registercustomfoo": 0, "registercustompickerel": 129, "registerdashboardwidget": [96, 230], "registerdeclarativeset": 99, "registerdeclarativesettingslisten": 99, "registerdirecteditorev": 101, "registerent": 229, "registerentitiesev": 229, "registereventlisten": [0, 2, 25, 29, 94, 99, 101, 104, 129, 137, 140, 141, 142], "registerfileact": 229, "registerfoo": 0, "registerjob": 215, "registerlazylockprovid": 231, "registerlockprovid": 231, "registerlogin": 221, "registermailprovid": 110, "registermiddlewar": 30, "registermyeditorlisten": 101, "registernotifi": 235, "registernotifierservic": 0, "registeroper": [105, 229], "registeroperationsev": [105, 229], "registerparamet": 21, "registerprofilelinkact": 124, "registerprovid": [38, 210], "registerpublicsharetemplateprovid": 31, "registerrefer": 129, "registerresourceprovid": [126, 219, 235], "registerrespond": 20, "registerrout": 233, "registerschema": 99, "registersearchprovid": 132, "registersect": 234, "registerservic": [0, 21, 36, 41, 221], "registerservicealia": 21, "registersetupcheck": 135, "registersidebaract": 234, "registerspeechtotextprovid": 137, "registertaskprocessingprovid": [140, 231], "registertaskprocessingtasktyp": [140, 231], "registertextprocessingprovid": 142, "registertexttoimageprovid": 141, "registertranslationprovid": 116, "registertyp": 126, "registerusermigr": 145, "registeruserrequest": 133, "registerwellknownhandl": 147, "registerwidget": 129, "registerwidgetev": 230, "registr": [0, 22, 28, 41, 84, 86, 90, 96, 102, 106, 110, 113, 129, 134, 135, 149, 154, 183, 210, 234], "registri": [144, 151, 154, 162, 163, 165, 166], "registryev": 229, "regress": [185, 231], "regular": [20, 43, 46, 61, 101, 151, 154, 161, 175, 189, 190], "regularli": [79, 97, 185], "reject": [49, 61, 63, 107, 126, 129, 140, 164], "rejectunauthor": 192, "rel": [0, 38, 42, 43, 46, 66, 69, 107, 131, 132, 134, 169, 170, 171, 181, 185, 209, 219, 231, 235, 243], "relat": [0, 17, 20, 22, 36, 37, 45, 49, 62, 64, 69, 70, 86, 90, 99, 104, 113, 129, 134, 135, 139, 166, 185, 188, 194, 203, 204, 227, 231, 232, 233, 234, 235], "relationship": 131, "relative_modified_d": [217, 220], "relativedued": 42, "relativetim": 42, "relaunch": 243, "relax": [20, 122], "releas": [0, 5, 10, 11, 12, 14, 22, 47, 72, 82, 85, 89, 96, 115, 118, 122, 144, 149, 152, 165, 167, 185, 188, 190, 201, 204, 206, 210, 211, 221, 222, 223, 225, 227, 229, 231, 232, 234, 238, 240], "release_d": 129, "relev": [38, 49, 55, 61, 69, 89, 95, 107, 131, 137, 140, 141, 142, 147, 206, 215, 232], "reli": [0, 20, 101, 164, 190, 206, 230, 234, 235], "reliabl": [18, 49, 82, 150], "reliev": 204, "reload": [90, 93, 96, 101, 190, 218, 228, 234, 243], "relwithdebinfo": 82, "rem": 219, "remain": [20, 32, 41, 49, 61, 76, 107, 139, 152, 190, 221, 222, 243], "rememb": [17, 19, 22], "remind": [42, 61, 76, 229], "remnant": 229, "remot": [5, 46, 52, 61, 62, 63, 64, 66, 67, 68, 70, 75, 98, 104, 113, 114, 122, 151, 158, 165, 188, 189, 201, 232, 236], "remote_en": 98, "remote_fold": 62, "remote_handl": 98, "remote_host": 98, "remote_port": 98, "remote_shar": 52, "remotefil": 70, "remotelyedit": 104, "remoteoper": 70, "remoteoperationresult": 70, "remotepath": 70, "remov": [10, 14, 15, 16, 17, 18, 20, 22, 40, 44, 46, 48, 52, 60, 76, 81, 94, 104, 115, 126, 127, 129, 144, 146, 152, 154, 166, 168, 172, 186, 194, 199, 200, 204, 206, 209, 211, 212, 222, 238, 240], "removeclass": 199, "removedbyid": 234, "removefavorit": 229, "removejob": 18, "removelisten": [22, 220], "removeoper": 70, "removeremotefileoper": 70, "removeremoteshareoper": 70, "renam": [23, 40, 52, 61, 71, 76, 101, 199, 200, 230, 231], "rend": 144, "render": [5, 17, 22, 25, 30, 43, 69, 76, 87, 101, 126, 171, 179, 181, 190, 209, 231, 232], "rendera": 20, "renderpag": 31, "renderreferenceev": 129, "renderresult": 129, "reorder": 42, "reorgan": 76, "repair": [5, 113, 114], "repeat": [1, 20, 81, 107, 204], "repercuss": 14, "repetit": 33, "replac": [2, 8, 10, 30, 33, 39, 41, 42, 43, 44, 49, 50, 70, 73, 81, 82, 94, 121, 123, 127, 140, 156, 174, 189, 190, 193, 199, 209, 210, 215, 218, 220, 221, 223, 224, 225, 227, 228, 229, 231, 232, 233, 234, 235, 239], "replaceindex": 40, "replaceindiceslisten": 40, "replacementuserdisplaynam": [50, 121], "replacementuserid": [50, 121], "replacesvg": 216, "replacesvgicon": 216, "repli": [62, 101, 204, 220, 227], "replic": 122, "replica": 122, "repo": [8, 11, 72, 82, 125, 129, 152, 192, 240], "repo_token": 15, "report": [12, 43, 61, 64, 90, 93, 115, 134, 135, 140, 185, 188, 203, 206, 213, 231], "reportoutput": 140, "reportprogress": 140, "repositori": [5, 10, 12, 14, 15, 16, 69, 72, 82, 85, 89, 95, 101, 110, 129, 152, 161, 162, 165, 167, 185, 187, 188, 189, 192, 203, 204, 233, 234, 242], "repository_url": 82, "repres": [38, 49, 54, 76, 82, 96, 99, 107, 121, 124, 126, 140, 142, 145, 190, 199, 231], "represent": 107, "reproduc": [12, 161], "req": [10, 192], "request": [0, 2, 8, 10, 12, 13, 14, 15, 17, 18, 22, 25, 28, 30, 33, 35, 42, 43, 44, 45, 48, 49, 50, 54, 56, 57, 58, 59, 62, 63, 64, 65, 69, 81, 85, 86, 90, 95, 96, 97, 98, 101, 102, 104, 106, 107, 113, 115, 116, 122, 126, 130, 131, 133, 137, 140, 141, 142, 143, 147, 148, 150, 151, 152, 153, 154, 159, 164, 165, 166, 167, 172, 178, 181, 185, 188, 191, 192, 199, 201, 202, 204, 206, 208, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 232, 233, 240], "requestbackgroundjob": [104, 229], "requesthead": 233, "requestopt": 129, "requesttoken": [25, 218], "requir": [1, 3, 5, 8, 10, 15, 16, 17, 18, 20, 21, 22, 26, 33, 34, 37, 38, 40, 42, 43, 44, 45, 46, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 85, 87, 89, 90, 93, 95, 96, 97, 98, 99, 101, 104, 105, 107, 110, 115, 118, 119, 124, 127, 128, 129, 130, 131, 133, 134, 135, 138, 144, 149, 151, 152, 153, 154, 156, 158, 160, 165, 169, 170, 171, 172, 174, 175, 176, 178, 181, 182, 188, 189, 190, 192, 193, 194, 195, 200, 208, 209, 213, 215, 217, 221, 225, 227, 229, 230, 231, 232, 234, 236, 239, 243], "require_onc": [3, 89, 209, 243], "requiremax": 5, "requiremin": 5, "reserv": [69, 76, 96, 108, 231], "reservedopt": 231, "reset": [20, 45, 79, 121, 185], "resetquerypart": 231, "reshar": 52, "resid": [23, 25, 149], "resolut": [161, 220], "resolv": [12, 20, 21, 22, 29, 33, 87, 101, 126, 134, 156, 161, 188, 217], "resolvefromconfigfil": 95, "resolvepubl": 129, "resolverefer": 129, "resolvereferencepubl": 129, "resolvereshar": 215, "resort": 21, "resourc": [18, 20, 21, 28, 35, 37, 56, 57, 58, 61, 64, 96, 104, 107, 109, 111, 113, 128, 129, 131, 132, 141, 147, 206, 209, 210, 219, 229, 231, 232, 233, 235, 243], "resource_typ": 126, "resourcebackend": 106, "resourcemanag": [106, 126], "resourceprovid": 126, "resourcetyp": [61, 66], "resourceurl": [126, 129, 132], "respect": [20, 50, 61, 81, 129, 131, 156, 194, 204, 210, 228, 232, 233], "respond": [14, 121, 133, 153, 190, 204, 223], "respons": [2, 6, 10, 12, 14, 28, 30, 31, 33, 44, 45, 46, 48, 50, 51, 54, 56, 57, 58, 59, 60, 64, 65, 67, 74, 75, 79, 96, 101, 104, 107, 112, 129, 131, 135, 147, 148, 153, 166, 171, 181, 190, 194, 199, 209, 215, 222, 227, 236, 240], "responsedefinit": 49, "rest": [5, 16, 20, 33, 74, 75, 76, 86, 107, 113, 115, 190], "restart": [98, 189, 192], "restor": [45, 61, 65, 145], "restrict": [18, 37, 40, 69, 112, 129, 133, 156, 158, 199, 225, 229, 231, 232, 234, 236], "restructur": 85, "result": [10, 19, 20, 37, 38, 42, 45, 47, 49, 51, 52, 53, 66, 67, 69, 70, 76, 81, 82, 84, 90, 94, 101, 104, 113, 122, 129, 134, 135, 141, 143, 148, 174, 188, 190, 202, 209, 213, 221, 222, 231, 232, 234, 243], "resultinto": 104, "retain": 40, "retri": [76, 228], "retriev": [20, 25, 37, 45, 47, 61, 73, 87, 102, 110, 113, 115, 117, 121, 127, 132, 173, 179, 229, 231], "retrievemetadata": [104, 229], "retro": 23, "retry_count": 90, "retryabl": 228, "return": [2, 4, 5, 17, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 36, 37, 38, 40, 41, 42, 43, 44, 46, 48, 49, 50, 52, 54, 61, 69, 85, 87, 90, 92, 93, 94, 96, 99, 101, 104, 105, 106, 108, 110, 116, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 166, 168, 170, 173, 177, 182, 186, 187, 190, 199, 213, 215, 218, 220, 221, 222, 224, 227, 228, 229, 231, 232, 233, 234, 235, 243], "returnhi": 20, "returnjson": 20, "retyp": 189, "reus": [49, 185, 215, 232], "reusabl": 184, "reveal": 76, "revenu": 129, "revers": [30, 110, 152, 158], "revert": [14, 54, 93, 138], "revertuserstatu": 138, "review": [12, 15, 122, 129, 153, 185, 188, 204, 209, 223], "revis": [72, 188, 233], "revisit": 107, "revok": [10, 44, 81], "revokeshar": 18, "revolution": 150, "rework": [188, 230], "rewritten": 73, "rf": 152, "rfc": [44, 61, 107, 233], "rfc4918": 65, "rfc5323": 66, "rfc6415": 147, "rgb": [76, 194, 198, 233], "rgba": 194, "rgdnvw": 61, "rich": [61, 76, 96, 129, 135, 174, 232], "rich_messag": 174, "rich_message_param": 174, "rich_subject": 174, "rich_subject_param": 174, "richdocu": [43, 101], "richobject": 129, "richobjectstr": [69, 135, 232], "richobjecttyp": 129, "richparamet": 129, "richtopars": 232, "right": [5, 8, 18, 20, 22, 25, 42, 76, 82, 92, 94, 96, 104, 108, 122, 129, 130, 190, 193, 194, 199, 200, 202, 209, 223, 226, 229, 231, 232, 234, 243], "risk": [22, 131, 188, 190, 196, 209], "riski": [49, 76], "rm": [15, 152], "rmdirr": 233, "robert": 243, "roberto": 96, "robin": 122, "robot": 16, "roboto": 194, "robust": [21, 89], "rocm": [151, 154, 159, 165, 166], "roeland": 63, "role": [5, 12, 14, 107, 122, 124, 140], "roll": [37, 40, 97], "rollback": [37, 122], "room": [40, 109, 126, 138, 210, 231, 232], "roombackend": 106, "root": [5, 7, 8, 10, 16, 20, 38, 43, 46, 49, 61, 66, 70, 79, 82, 89, 95, 118, 126, 134, 154, 155, 169, 171, 181, 186, 189, 231, 236, 239], "rootfold": 38, "rootscop": 199, "rootstorag": 41, "rough": [16, 115], "roughli": [20, 236], "round": [96, 122, 129, 132, 231], "rounditemicon": 96, "roundtrip": 122, "rout": [5, 6, 21, 28, 32, 73, 101, 128, 131, 132, 147, 161, 170, 171, 172, 180, 183, 201, 230, 232, 233, 240], "route_of_talk_bot": 180, "routeparamet": 132, "router": [32, 61, 75, 154, 220, 228, 229, 232], "row": [20, 37, 43, 76, 97, 104, 132, 190, 194, 227, 234], "rpid": 192, "rsa": 10, "rss": 5, "rtl": 197, "rule": [11, 15, 17, 20, 22, 37, 61, 78, 85, 89, 90, 105, 122, 131, 140, 153, 185, 190, 197, 201, 211, 233], "rulematch": 105, "run": [0, 1, 2, 5, 7, 8, 10, 15, 16, 17, 18, 22, 25, 29, 30, 32, 37, 40, 41, 49, 55, 56, 57, 70, 79, 82, 84, 89, 95, 97, 98, 100, 101, 104, 106, 107, 113, 115, 122, 125, 130, 132, 140, 141, 142, 149, 151, 153, 154, 155, 156, 161, 165, 185, 187, 189, 190, 192, 199, 209, 221, 223, 228, 229, 238, 239], "runnabl": 70, "runner": 243, "running_psalm": 49, "runningonmac": 234, "runorscheduletask": [141, 142], "runrequest": 135, "runtask": [141, 142], "runtim": [29, 42, 49, 82, 90, 129, 141, 142, 152, 159], "runtimeexcept": [116, 137, 141, 142], "rw": [189, 192], "rwx": 82, "rx": 243, "s3": [63, 241], "sabr": [2, 17, 22, 109, 148, 221, 227, 229], "sabredav": [2, 22, 64, 148], "sabrepluginaddev": [2, 229], "sabrepluginauthinitev": 221, "sabrepluginev": 227, "sacr": [79, 185], "safe": [0, 14, 22, 46, 90, 97, 190, 209, 232], "safer": [21, 209], "safeti": [90, 209, 213], "sai": [33, 132, 204], "said": [107, 128], "sake": [107, 185], "sale": 13, "samba": 192, "same": [0, 3, 5, 19, 20, 21, 23, 30, 33, 40, 42, 45, 61, 69, 70, 76, 82, 85, 87, 89, 97, 99, 101, 107, 115, 122, 129, 130, 132, 134, 138, 140, 148, 151, 153, 154, 159, 160, 165, 167, 169, 170, 185, 189, 190, 199, 200, 204, 209, 219, 226, 227, 228, 232, 233, 234, 236], "saml": [70, 241], "saml2": 70, "sampl": [20, 37, 61, 72], "sample_cli": 72, "san": 194, "sanit": [209, 233], "sanitizefilenam": 233, "sanitizehtml": 235, "sass": [184, 239], "satisfi": [14, 107, 131], "save": [15, 17, 20, 21, 22, 34, 36, 49, 76, 81, 82, 99, 101, 104, 107, 110, 116, 129, 132, 137, 140, 141, 142, 156, 179, 190, 194, 233, 239], "savedinstancest": 70, "savemetadata": [104, 229], "saveset": [34, 49], "sayhello": 42, "sb": 62, "scalabl": 19, "scalar": 215, "scale": [37, 122, 162, 163], "scalefixforie8": 216, "scan": [17, 22, 42, 76], "scanfil": 22, "scanfold": 22, "scanner": [79, 236], "scenario": [3, 20, 54, 97, 131], "scene": 29, "schedul": [16, 17, 22, 45, 47, 50, 76, 87, 121, 124, 130, 137, 140, 141, 213, 230, 234, 235, 239], "scheduleaft": 18, "scheduledat": 87, "schedulefiletranscript": 137, "scheduletask": [140, 141, 142], "schema": [3, 5, 6, 16, 37, 39, 49, 95, 108, 130, 134, 136, 179, 183, 190, 222, 223, 229, 234], "schemaclosur": [40, 136], "schemaexcept": 95, "schemaloc": [3, 95], "scheme": [99, 131, 155, 179, 183, 192], "school": 92, "schott": 81, "scienc": [61, 129], "scloud": 42, "scope": [10, 19, 22, 25, 36, 45, 52, 61, 65, 90, 101, 104, 106, 148, 199, 220, 231], "scope_": 49, "scope_administr": 49, "scope_default": 49, "scope_ex_app": 231, "scope_feder": 49, "scope_filesystem": 231, "scope_ignor": 49, "scope_skip_password_valid": 231, "scopedpsrlogg": 29, "score": 202, "scrape": 8, "screen": [27, 42, 76, 125, 134, 193, 194, 198, 204], "screenread": [25, 226], "screenshot": [5, 154, 198], "script": [3, 8, 15, 16, 17, 20, 22, 25, 26, 37, 42, 48, 61, 82, 95, 96, 98, 101, 115, 118, 126, 129, 134, 151, 152, 153, 154, 167, 172, 192, 208, 218, 219, 220, 229, 230, 231, 241, 243], "scroll": [82, 129, 193, 198], "scrollabl": 193, "scrollbar": 194, "scrollto": [69, 132], "scss": [23, 239], "scssphp": 233, "seamlessli": [71, 150], "search": [5, 45, 48, 64, 65, 75, 76, 90, 93, 94, 106, 113, 146, 171, 193, 201, 204, 215, 224, 228, 231, 233, 234, 236], "search_providers_id": 129, "searchabl": 66, "searchbysystemtag": 229, "searchforprincip": 106, "searchingroup": 228, "searchinusercalendar": 106, "searchkei": 90, "searchrequest": [66, 104], "searchresult": [132, 234], "searchresultentri": 132, "searchusersbyvalu": 93, "searchusersbyvaluebool": 93, "searchusersbyvalueint": 93, "searchusersbyvaluestr": 93, "searchvalu": 90, "season": 185, "second": [18, 20, 22, 26, 29, 30, 40, 42, 44, 61, 63, 76, 87, 89, 96, 99, 104, 106, 122, 126, 129, 130, 132, 135, 136, 144, 147, 153, 165, 179, 186, 199, 229], "second_pag": 171, "secondari": [77, 79, 96, 110, 185, 194], "secret": [10, 15, 20, 164, 165, 192], "secretpassword": 128, "secrettoken": 128, "section": [0, 5, 6, 8, 10, 15, 20, 25, 32, 33, 34, 37, 42, 49, 69, 76, 77, 82, 87, 89, 97, 106, 107, 110, 113, 114, 115, 121, 122, 127, 129, 131, 144, 151, 153, 155, 161, 162, 166, 179, 189, 190, 192, 193, 198, 199, 202, 206, 211, 212, 222, 229, 230, 231, 234, 235, 243], "section_id": [99, 179], "section_typ": [99, 179], "section_type_admin": 99, "section_type_person": 99, "secur": [5, 10, 12, 21, 28, 30, 41, 44, 48, 61, 82, 99, 101, 107, 112, 113, 114, 115, 128, 131, 135, 151, 152, 153, 158, 164, 179, 188, 189, 190, 201, 208, 211, 215, 217, 218, 229, 231, 232], "securedrelyingpartyid": 192, "securerandom": 232, "see": [1, 2, 3, 5, 6, 11, 15, 16, 18, 20, 21, 22, 25, 26, 27, 32, 33, 34, 37, 38, 41, 42, 43, 44, 46, 49, 52, 55, 56, 57, 58, 61, 64, 69, 73, 76, 77, 79, 81, 82, 85, 87, 89, 90, 93, 95, 96, 98, 105, 106, 107, 110, 113, 115, 117, 118, 122, 125, 126, 127, 129, 132, 134, 144, 149, 151, 152, 154, 158, 164, 165, 171, 175, 185, 186, 187, 188, 189, 190, 192, 194, 198, 203, 204, 209, 211, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 239, 243], "seed": 192, "seen": [69, 80, 124, 130, 222, 229], "segment": 1, "sego": 194, "select": [20, 37, 42, 47, 66, 69, 70, 76, 80, 82, 87, 92, 98, 101, 104, 105, 107, 122, 126, 129, 134, 144, 161, 165, 171, 179, 192, 194, 195, 198, 200, 209, 210, 213, 230, 234], "select2": 217, "selectionlength": 42, "selector": [184, 199], "self": [1, 25, 31, 49, 96, 110, 124, 126, 138, 140, 141, 145, 147, 190, 192, 210, 217], "semant": [5, 16], "semicolon": 34, "semver": 16, "send": [8, 18, 24, 34, 42, 43, 45, 61, 66, 67, 68, 74, 96, 101, 103, 110, 112, 115, 117, 122, 124, 131, 132, 144, 164, 165, 166, 172, 187, 190, 209, 231, 240, 241], "sendemail": 42, "sendmail": [52, 215], "sendmessag": 110, "sendshareemail": 231, "sens": [12, 20, 21, 37, 49, 81, 107, 190, 222, 232], "sensibl": 76, "sensit": [18, 20, 29, 33, 92, 132, 134, 168, 177, 208, 230], "sent": [14, 17, 20, 22, 32, 50, 52, 54, 61, 62, 70, 101, 131, 132, 134, 166, 171, 209, 223, 227, 232], "sentenc": [42, 76, 79, 81, 199], "separ": [1, 5, 16, 20, 29, 34, 37, 40, 43, 47, 52, 69, 76, 77, 81, 82, 107, 118, 131, 140, 142, 151, 152, 160, 171, 178, 185, 190, 199, 223, 239], "sequenc": [0, 37, 136], "seri": [20, 122], "serial": [19, 29, 49, 52, 106, 121, 231, 232], "seriou": 122, "serv": [20, 23, 49, 79, 131, 135, 209, 231, 234], "server": [0, 3, 4, 8, 10, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 29, 32, 33, 37, 40, 42, 44, 46, 47, 49, 53, 56, 60, 61, 62, 63, 64, 66, 70, 71, 75, 76, 82, 83, 85, 95, 97, 98, 100, 101, 106, 107, 110, 112, 113, 115, 122, 123, 125, 129, 131, 132, 133, 134, 136, 138, 140, 144, 148, 152, 154, 156, 160, 164, 167, 169, 181, 190, 191, 192, 196, 201, 202, 203, 204, 209, 217, 220, 221, 227, 228, 229, 231, 232, 233, 234, 235, 240, 242], "server_base_url": 70, "serverconfighelp": 135, "servercontain": [21, 22, 36, 106], "serverplugin": [2, 148], "serveruri": 70, "serververs": 211, "servic": [0, 13, 18, 19, 20, 22, 25, 28, 29, 31, 36, 41, 42, 49, 61, 70, 82, 90, 103, 106, 109, 112, 119, 124, 125, 127, 132, 134, 138, 146, 147, 151, 152, 154, 156, 161, 186, 189, 190, 192, 221, 228, 229, 232, 240], "service1": 110, "serviceid": 110, "serviceus": 152, "session": [0, 44, 46, 61, 70, 88, 101, 113, 115, 119, 183, 209, 227, 231], "session_lifetim": 36, "set": [5, 7, 8, 9, 10, 13, 14, 15, 16, 18, 19, 25, 27, 28, 29, 33, 36, 37, 40, 41, 42, 44, 45, 46, 50, 52, 53, 56, 57, 58, 60, 65, 75, 78, 79, 81, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 104, 105, 108, 110, 112, 113, 114, 115, 121, 122, 125, 129, 131, 132, 135, 140, 146, 150, 152, 153, 154, 155, 161, 162, 163, 164, 165, 166, 167, 171, 172, 174, 183, 186, 187, 188, 190, 191, 192, 193, 194, 197, 201, 204, 209, 215, 217, 218, 220, 222, 225, 226, 228, 229, 230, 231, 232, 234, 239, 240, 241, 243], "setacl": 107, "setactionlabel": 228, "setaffectedus": 69, "setallowparallelrun": 18, "setapp": 69, "setappvalu": 36, "setappvaluearrai": 90, "setappvalueint": 90, "setappvaluestr": 90, "setattach": 110, "setauthor": 69, "setautosubmit": 227, "setbodyhtml": 110, "setbodyplain": 110, "setchannel": 211, "setchildev": 69, "setcontentsecuritypolici": [20, 31], "setcredenti": 70, "setdeclarativesettingsvaluelisten": 99, "setdescript": [1, 106, 129], "setdisplaynam": 46, "seten": 146, "setendd": 106, "setfetchmod": 222, "setfirstresult": [37, 224], "setfrom": 110, "sethead": 45, "setheaderact": 20, "setheaderdetail": 20, "setheadertitl": [20, 31], "sethtmlbodi": [103, 229], "seticon": [69, 231, 233, 234], "setid": [37, 234], "setimageurl": 129, "setincludewatermark": 234, "setint": 104, "setinterv": 18, "setlastlogin": 37, "setlink": [69, 231, 233, 234], "setloc": 106, "setmanageruid": 146, "setmaxresult": 37, "setmeetingd": 139, "setmessag": 69, "setnam": [1, 37, 107], "setnoexpirationd": 231, "setobject": 69, "setobjectid": 234, "setorgan": 106, "setown": 231, "setp": 130, "setparamet": 229, "setparsedmessag": [69, 227], "setparsedsubject": [69, 227], "setpassword": [46, 146], "setpasswordhash": 231, "setplainbodi": [103, 229], "setpreferstream": 213, "setprimarykei": [37, 136], "setpubl": 139, "setreferenceid": 220, "setrichmessag": [69, 227], "setrichobject": 129, "setrichsubject": [69, 227], "setstartd": 106, "setstatu": [20, 108, 215], "setstr": 104, "setsubject": [69, 103, 110, 229], "setsummari": 106, "setsystemvalu": 36, "setter": [37, 90, 227, 228, 231], "settimerangeend": 106, "settimerangestart": 106, "settimesensit": 18, "settimestamp": 69, "settimezon": 106, "settingnotfoundexcept": 231, "settings_exampl": 179, "settingsmenu": 193, "settingsview": 186, "settitl": 129, "setto": [103, 110], "settyp": 69, "setup": [4, 15, 17, 19, 20, 22, 37, 38, 41, 71, 82, 90, 92, 95, 98, 101, 105, 113, 114, 118, 122, 149, 151, 152, 154, 158, 170, 204, 218, 224, 232, 236, 239, 241, 243], "setupbeforeclass": [41, 243], "setupcheck": [135, 232], "setupresult": 135, "setuserdata": 145, "setuserid": [116, 137, 142], "setuserstatu": 138, "setuservalu": [36, 99], "setvalu": [99, 229], "setvaluearrai": [90, 93], "setvaluebool": [90, 93], "setvaluefloat": [90, 93], "setvalueint": [90, 93], "setvaluestr": [90, 93], "setwebhookmethod": 140, "setwebhookuri": 140, "seven": 185, "sever": [6, 20, 29, 34, 44, 76, 115, 122, 132, 135, 141, 149, 151, 153, 190, 204, 209, 215, 231], "sh": [8, 62, 82, 152, 154, 167, 189, 238, 239, 243], "sha": 10, "sha1": [15, 61, 188], "sha256": [61, 82], "sha3": 61, "shadow": 194, "shall": [0, 25, 42, 118, 127, 132, 202, 206, 226], "shallow": 202, "shape": [49, 77, 101, 129], "shapedescriptor": 140, "shapeenumvalu": 140, "share": [5, 6, 10, 18, 20, 21, 28, 42, 45, 46, 48, 75, 76, 81, 86, 92, 101, 113, 121, 129, 134, 148, 154, 160, 164, 165, 166, 176, 186, 187, 190, 192, 201, 204, 209, 211, 215, 216, 219, 220, 224, 229, 230, 231, 233, 234, 243], "share_backend": 235, "share_backend_collect": 235, "share_backend_file_depend": 235, "share_id": 52, "share_test": 128, "share_token": 61, "share_type_circl": 5, "shareabl": 61, "shareacceptedev": 229, "shareapicontrol": 231, "shareapilinkdefaultexpiredateenforc": 211, "shareapilinkenforcepassword": 211, "shareattribut": 171, "shareconfigmodel": 216, "sharecontrol": [20, 31], "sharecreatedev": 229, "sharedeletedev": 229, "sharedeletedfromselfev": 229, "sharees_recommend": [53, 54], "shareid": [18, 231], "sharemanag": [20, 232], "sharenod": 31, "sharenotfound": 128, "shareown": 171, "shareownerid": 171, "sharepermiss": 171, "sharer": [53, 61], "shareservic": 18, "sharesplugin": 148, "sharetoken": 129, "sharetyp": [46, 52, 70, 171], "sharetypeid": 61, "sharewith": 52, "sharewithus": 18, "sharingtoken": 129, "she": 81, "shed": 0, "sheet": [65, 101, 223, 239], "shell": [82, 131, 156, 208], "shell_exec": 209, "ship": [0, 3, 5, 8, 10, 11, 82, 89, 96, 101, 127, 188, 192, 196, 218, 219, 220, 222, 223, 227, 228, 229, 230, 233, 238], "shivammathur": 15, "short": [0, 5, 20, 49, 50, 76, 81, 87, 118, 121, 122, 124, 150, 151, 161, 166, 167, 221, 233], "shortcom": 107, "shortcut": [24, 42, 175], "shorter": 20, "shorthand": [5, 61], "shortmessag": [50, 121], "should": [0, 3, 5, 6, 8, 14, 15, 16, 17, 19, 20, 22, 23, 25, 26, 28, 29, 30, 31, 33, 34, 36, 37, 38, 40, 41, 42, 43, 44, 46, 49, 52, 54, 58, 60, 61, 63, 66, 69, 72, 76, 77, 79, 82, 94, 95, 96, 97, 98, 99, 101, 104, 107, 115, 116, 118, 122, 124, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 148, 150, 151, 153, 154, 156, 158, 165, 166, 169, 174, 179, 181, 184, 185, 186, 187, 190, 192, 194, 199, 200, 202, 204, 206, 209, 213, 215, 217, 218, 220, 221, 222, 227, 228, 229, 230, 231, 232, 234, 236, 238, 240], "shouldgetfield": 233, "shouldn": [186, 187], "shouldrespond": 31, "shout": 1, "show": [5, 25, 33, 40, 42, 43, 49, 69, 76, 79, 87, 96, 97, 106, 108, 125, 126, 128, 129, 130, 134, 137, 140, 141, 142, 144, 147, 154, 185, 193, 194, 198, 199, 200, 228, 231, 233, 235], "showauthent": 128, "showauthfail": 128, "showdetail": [193, 198], "showdis": 140, "shown": [13, 20, 29, 42, 43, 50, 58, 70, 76, 80, 81, 101, 107, 130, 140, 144, 151, 192, 193, 198, 199, 204, 227], "showshar": [31, 128], "showstopp": 188, "shrunk": 231, "sibl": 199, "side": [5, 20, 41, 42, 43, 44, 46, 47, 49, 60, 85, 90, 98, 101, 107, 122, 129, 154, 155, 167, 170, 175, 178, 188, 202, 233, 243], "sidebar": [34, 47, 69, 78, 80, 193, 194, 199, 215, 219, 229, 230], "sign": [8, 11, 16, 44, 70, 76, 82, 190, 192, 201, 204], "signal": [0, 2, 20, 22, 49, 75, 112, 185, 202], "signatur": [10, 16, 21, 22, 29, 227, 234], "signifi": [140, 185], "signific": [10, 20, 29, 188, 236], "significantli": [38, 122, 204], "signkei": 192, "signoff": 188, "signtool": 82, "silent": [90, 101, 209], "similar": [2, 13, 16, 17, 18, 20, 22, 33, 37, 40, 44, 80, 99, 107, 118, 121, 125, 129, 131, 134, 141, 142, 150, 151, 152, 156, 168, 175, 177, 221, 223, 233, 238], "similarli": [105, 128, 140, 166, 204], "simpl": [14, 15, 20, 22, 25, 37, 39, 42, 44, 63, 76, 79, 82, 87, 88, 90, 95, 99, 102, 107, 112, 113, 115, 122, 140, 147, 153, 154, 158, 166, 171, 174, 179, 199, 209, 228, 243], "simple_board": 42, "simplef": [227, 228, 237], "simplemenuact": 20, "simplemigrationstep": 40, "simpler": [97, 107], "simpleread": 20, "simplest": [82, 149, 188], "simplewrit": 20, "simplexml": [5, 242], "simplexmlel": 20, "simpli": [8, 16, 20, 21, 23, 29, 30, 37, 42, 62, 72, 76, 126, 129, 131, 135, 140, 142, 199, 204, 209, 220, 243], "simplic": [107, 131], "simplif": 140, "simplifi": [20, 35, 37, 38, 82, 107, 123, 128, 150, 152, 154, 236], "sinc": [3, 5, 16, 17, 18, 20, 21, 22, 29, 30, 33, 34, 35, 37, 40, 44, 46, 49, 52, 57, 61, 69, 73, 85, 90, 92, 93, 94, 96, 99, 101, 115, 116, 118, 121, 122, 124, 125, 126, 129, 131, 132, 137, 139, 140, 141, 142, 143, 145, 168, 177, 187, 188, 193, 194, 196, 204, 209, 210, 211, 223, 226, 227, 229, 232, 233, 234, 235, 238], "sinceid": 96, "singl": [19, 20, 40, 42, 46, 66, 69, 70, 76, 81, 85, 87, 92, 93, 95, 96, 98, 99, 101, 107, 110, 122, 123, 140, 179, 187, 190, 192, 199, 233, 236], "singleselect": 218, "singlesignon": 71, "singular": [42, 167], "sinon": 243, "sinonj": 243, "sit": 76, "site": [131, 189, 190, 192, 208], "site_nam": 31, "situat": [16, 20, 40, 113, 114], "size": [5, 35, 38, 61, 62, 63, 66, 70, 76, 78, 92, 97, 122, 129, 132, 145, 151, 171, 194, 219, 227, 229], "sk": 8, "sk_sk": 8, "skeleton": [7, 76, 151, 154, 166, 190], "sketch": 107, "skill": 204, "skin": 76, "skip": [1, 32, 58, 129, 145, 166], "slash": [33, 123, 169, 171, 181], "sleep": 130, "slide": [105, 199], "slideshow": [76, 101], "slight": 231, "slightli": [89, 95], "slocal": 42, "slogan": [27, 46], "slot": [76, 140], "slow": [14, 19, 20, 118, 122, 125, 140, 169, 194, 236], "slow_query_log": 122, "slow_query_log_fil": 122, "slower": [20, 62], "slowli": 223, "slugifi": 37, "sm": 144, "small": [5, 18, 61, 62, 76, 77, 90, 92, 96, 97, 122, 129, 132, 151, 154, 185, 188, 194, 199, 204, 231], "smaller": [63, 77, 185, 186, 194, 231], "smallest": [194, 231], "smart": [17, 22, 102, 113], "smb": 241, "smb1": 192, "smb2": 192, "smb3": 192, "smbclient": 192, "smbhome": 192, "smbmount": 192, "smbpublic": 192, "smillerdev": 15, "smoothen": 115, "smoother": 221, "smtp": 192, "snackbar": 43, "snapper": 235, "snappi": 194, "snapshot": 72, "snippet": [107, 134, 152, 199], "snowflak": [113, 114], "snowflake_id": 136, "so": [1, 3, 5, 10, 12, 14, 16, 18, 20, 21, 23, 25, 29, 33, 34, 37, 40, 41, 42, 46, 49, 52, 60, 61, 69, 76, 77, 81, 82, 89, 90, 95, 97, 98, 101, 105, 107, 119, 122, 127, 129, 131, 132, 133, 134, 135, 137, 140, 141, 142, 147, 148, 151, 152, 154, 161, 165, 166, 167, 185, 188, 189, 190, 194, 204, 206, 209, 210, 220, 221, 222, 223, 226, 227, 228, 229, 231, 232, 233, 234, 239, 243], "social": [5, 209], "sock": [149, 165], "socket": [151, 161, 162, 163, 165], "soft": 234, "softwar": [3, 16, 21, 42, 76, 79, 129, 159, 185, 188, 190, 243], "sole": [20, 107, 221], "solut": [21, 49, 107, 122, 134, 139, 162, 204], "solv": [21, 44, 46, 135, 185, 189, 204, 223], "some": [0, 3, 8, 10, 13, 14, 16, 18, 20, 21, 25, 26, 27, 34, 35, 36, 37, 40, 42, 43, 45, 46, 49, 54, 61, 62, 64, 66, 70, 73, 76, 79, 80, 82, 85, 89, 90, 93, 94, 95, 96, 97, 98, 99, 101, 103, 106, 107, 115, 116, 119, 122, 125, 128, 129, 131, 133, 134, 135, 140, 141, 142, 151, 152, 161, 165, 166, 171, 175, 179, 182, 185, 188, 190, 192, 194, 199, 204, 209, 211, 214, 215, 222, 223, 229, 231, 233, 234, 235, 236, 239, 242, 243], "some_api_endpoint": 154, "some_method": 20, "some_real_set": 179, "some_var": 20, "somearrai": [186, 187], "somebodi": 204, "somecontrol": [18, 49], "somecontrollermethod": 49, "somehelpermethod": 49, "somehow": 15, "somemethod": 20, "somenam": 190, "someon": [49, 133], "someprop": 186, "someservic": 18, "sometask": 18, "someth": [3, 10, 17, 20, 22, 25, 26, 29, 32, 42, 44, 49, 76, 79, 81, 85, 99, 106, 108, 120, 124, 129, 131, 139, 140, 141, 142, 179, 185, 186, 187, 188, 190, 199, 204, 206, 209], "sometim": [20, 21, 30, 33, 37, 38, 49, 116, 122, 135, 137, 141, 142, 190, 204, 233], "sometyp": [21, 186], "somewher": [15, 20, 49, 96, 137, 140, 141, 142], "soon": [21, 122, 222], "sooner": 221, "sophist": [222, 229], "sort": [5, 16, 66, 69, 96, 124, 129, 132], "sortabl": 66, "sorter": 46, "sound": [21, 95, 115], "sourc": [7, 11, 16, 21, 22, 42, 48, 58, 69, 71, 82, 95, 115, 116, 118, 129, 132, 140, 149, 154, 169, 186, 187, 191, 223], "source_fil": 8, "source_lang": 8, "space": [25, 42, 44, 46, 61, 76, 78, 94, 123, 161, 185, 187, 194, 226], "spam": [187, 209], "span": [42, 110, 122, 129, 184, 198, 199, 200], "sparingli": 77, "spdx": [5, 185], "speak": [81, 161, 222, 229], "spec": [49, 118, 243], "special": [20, 21, 29, 37, 44, 65, 67, 68, 76, 77, 115, 190], "specif": [5, 10, 15, 16, 18, 20, 22, 25, 32, 33, 36, 37, 38, 40, 42, 43, 45, 47, 61, 74, 76, 81, 82, 87, 90, 93, 94, 96, 97, 99, 105, 106, 107, 110, 124, 129, 132, 135, 140, 141, 147, 149, 150, 151, 154, 159, 161, 169, 177, 185, 191, 198, 204, 221, 225, 227, 228, 229, 231, 232, 233, 234, 239, 240, 243], "specifi": [3, 8, 10, 13, 17, 18, 20, 21, 22, 34, 37, 38, 40, 42, 43, 44, 46, 61, 63, 64, 72, 82, 83, 89, 90, 93, 96, 104, 107, 116, 118, 126, 128, 132, 134, 140, 141, 142, 144, 149, 153, 156, 159, 166, 168, 169, 190, 209, 217, 221, 227, 228, 232, 233], "spectrogram": 140, "speech": [17, 22, 43, 47, 84, 87, 113, 140, 233], "speech_to_text": 43, "speechtotext": [137, 228, 231], "speed": [19, 49, 89, 122, 131], "spell": [42, 81, 140], "spend": [14, 204], "spent": 125, "spinner": 194, "split": [20, 37, 76, 81, 85, 122, 132, 185, 187, 218, 233], "spot": 122, "spreed": [96, 124, 132], "spy": 14, "sql": [37, 40, 100, 104, 113, 190, 208, 210, 211, 233, 234], "sqlite": [5, 15, 16, 37, 122, 204, 243], "squar": 96, "src": [7, 20, 26, 118, 154, 186, 190, 192, 209, 229], "srv": [8, 189, 243], "ssh": 82, "ssl": [161, 241], "sso": 224, "stabil": [90, 93], "stabl": [8, 10, 16, 82, 95, 115, 125, 188, 189, 190, 202, 238, 240], "stable21": 15, "stable24": 16, "stable25": [16, 188, 227], "stable26": 16, "stable29": 233, "stable30": 233, "stable31": 233, "stablex": [8, 125, 188], "stack": [29, 206, 232, 236], "stage": [0, 20, 44, 46, 110, 166], "stai": [21, 76, 199], "stamp": 82, "stand": 40, "standalon": [5, 20, 25, 87], "standalonetemplaterespons": 221, "standard": [20, 21, 25, 49, 61, 73, 77, 79, 82, 95, 98, 107, 113, 114, 118, 127, 151, 168, 177, 191, 193, 198, 204, 206, 222, 227, 228, 232, 233, 239], "star": [37, 76, 194, 198], "start": [8, 9, 15, 17, 20, 22, 29, 30, 33, 37, 42, 43, 44, 49, 50, 56, 61, 66, 69, 70, 71, 76, 94, 96, 97, 98, 101, 107, 121, 122, 124, 125, 129, 140, 147, 148, 149, 152, 153, 155, 165, 166, 169, 171, 179, 181, 185, 187, 189, 190, 192, 194, 201, 204, 209, 217, 223, 229, 231, 232, 234, 239, 243], "startallsharesretriev": 70, "startcreationofgroupshareforfil": 70, "startcreationofpublicshareforfil": 70, "startcreationofusershareforfil": 70, "startdat": [50, 106, 121], "startdownload": 70, "startedat": 87, "starter": 153, "startfilemov": 70, "startfoldercr": 70, "startprogress": 130, "startreadfileproperti": 70, "startreadrootfold": 70, "startremovefil": 70, "startshareremov": 70, "startsharesretrievalforfileorfold": 70, "startsharesretrievalforfilesinfold": 70, "startup": [1, 90, 153, 165], "startupload": 70, "stat": 62, "state": [14, 24, 31, 37, 44, 46, 61, 76, 77, 79, 81, 88, 90, 96, 107, 113, 129, 132, 153, 166, 170, 172, 185, 199, 229, 233], "statement": [15, 40, 81, 82, 95, 104, 122, 186, 187, 222, 234], "static": [22, 25, 100, 107, 113, 126, 132, 138, 143, 145, 186, 201, 211, 222, 227, 229, 234, 235, 241], "statist": 125, "statu": [20, 43, 44, 45, 46, 48, 49, 50, 51, 53, 56, 57, 58, 59, 61, 66, 74, 75, 76, 81, 87, 88, 90, 93, 96, 97, 101, 104, 109, 112, 113, 121, 129, 131, 135, 141, 142, 153, 165, 166, 168, 172, 173, 176, 177, 178, 179, 182, 188, 190, 215, 223, 228, 240], "status": 45, "status_bad_request": 49, "status_cancel": 140, "status_cod": 170, "status_cr": 49, "status_fail": [87, 140, 141, 142], "status_forbidden": 49, "status_not_found": [20, 49], "status_ok": 49, "status_run": [87, 140, 141, 142], "status_schedul": [87, 140, 141, 142], "status_success": [87, 140, 141, 142], "status_unknown": [87, 140, 141, 142], "statuscod": [43, 44, 46, 48, 52, 96, 101, 129, 168, 177, 182], "statusicon": 54, "statusmanag": 138, "statustyp": 54, "stdclass": 49, "steal": 209, "step": [5, 8, 15, 16, 17, 22, 32, 34, 40, 44, 45, 49, 63, 76, 82, 97, 98, 107, 113, 114, 118, 132, 140, 141, 142, 149, 151, 153, 155, 156, 161, 165, 166, 170, 189, 190, 204, 206, 225, 229, 231, 232, 234, 238, 239], "stick": [5, 22], "sticki": 193, "still": [10, 16, 20, 21, 23, 26, 37, 40, 42, 44, 45, 46, 49, 52, 76, 77, 81, 95, 96, 107, 122, 129, 131, 140, 144, 151, 152, 153, 154, 156, 188, 190, 194, 198, 199, 200, 204, 209, 210, 222, 223, 227, 229, 230, 231, 232, 233, 234, 235, 238, 239, 242], "stitcher": [225, 229, 232], "stop": [16, 49, 70, 204], "stoppableeventinterfac": 223, "storag": [9, 15, 28, 35, 41, 46, 61, 63, 90, 122, 134, 165, 201, 204, 215, 231, 232, 237, 241], "storage_typ": 99, "storage_type_extern": 99, "storage_type_intern": 99, "storageexcept": [38, 41], "storageloc": 46, "store": [5, 6, 7, 11, 13, 15, 16, 20, 21, 22, 29, 33, 35, 37, 40, 44, 49, 52, 61, 66, 70, 82, 92, 96, 98, 99, 104, 105, 107, 113, 114, 115, 119, 137, 140, 141, 142, 145, 154, 162, 168, 171, 177, 179, 186, 190, 201, 203, 209, 223, 227, 236, 241], "store_login_token": 119, "str": 171, "str_contain": 132, "str_replac": [30, 209], "str_starts_with": 129, "straight": [18, 165], "straightforward": [134, 150, 161], "strategi": [15, 20], "stream": [69, 140, 151, 156, 213, 237], "streamlin": 82, "streamrespons": [20, 49, 232], "strict": [20, 92, 129, 186, 199, 228, 229, 233], "strict_typ": [0, 1, 30, 89, 96, 99, 101, 104, 116, 120, 124, 125, 126, 132, 133, 135, 136, 137, 140, 141, 142, 145, 147], "strictcontentsecuritypolici": 235, "strictcookierequir": 231, "strictcookiesrequir": 231, "stricter": [90, 210], "strictevalcontentsecuritypolici": 235, "strictinlinecontentsecuritypolici": 235, "strictli": 215, "string": [5, 6, 18, 19, 20, 21, 22, 25, 29, 30, 31, 33, 34, 36, 37, 38, 40, 45, 46, 49, 50, 52, 53, 54, 56, 57, 59, 61, 66, 70, 73, 78, 87, 90, 92, 93, 94, 96, 99, 101, 103, 104, 106, 107, 108, 110, 116, 120, 121, 123, 124, 125, 126, 128, 129, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 154, 165, 167, 170, 171, 174, 178, 187, 190, 209, 215, 220, 227, 228, 229, 231, 232, 233, 234, 235], "stringabl": 29, "stringent": 107, "stringifi": 101, "stringutil": 218, "strip": 61, "stripe": 13, "strive": 185, "strlen": 107, "strong": [69, 122, 185, 204], "stronger": 77, "strongli": [152, 186, 194, 210, 232], "strpo": 132, "strtoupper": 1, "structur": [8, 28, 33, 45, 48, 62, 76, 88, 107, 113, 122, 129, 132, 151, 155, 165, 170, 184, 190, 193, 198, 199, 215, 228], "stub": [107, 243], "studi": 106, "studio": [71, 72], "stuff": [41, 70, 122, 166, 234, 243], "style": [20, 23, 26, 42, 107, 118, 134, 151, 172, 184, 190, 191, 192, 194, 198, 199, 201, 202, 223, 231, 232, 241], "stylelint": 118, "stylis": 199, "su": [152, 243], "sub": [3, 25, 26, 38, 146, 169, 186, 189, 199, 203, 214, 221], "subadmin": 46, "subadminrequir": 231, "subclass": [20, 22], "subdirectori": 41, "subfil": 52, "subfold": [82, 190], "subj": 10, "subject": [22, 76, 82, 147, 174, 198, 229], "subject_kei": 69, "subject_param": 174, "subject_rich": 69, "subject_typ": 174, "sublim": 98, "sublimetextxdebug": 98, "sublin": [77, 129, 132], "submiss": 203, "submit": [10, 14, 25, 42, 43, 81, 129, 199, 200, 202, 203, 209, 226, 227], "submitcont": 94, "submodul": [82, 189], "subqueri": 210, "subscrib": [73, 113, 114, 115, 188, 223, 232], "subscript": [22, 233], "subscriptioncreatedev": 221, "subscriptiondeletedev": 221, "subscriptionupdatedev": 221, "subsequ": [101, 122, 132], "subset": 69, "substanti": 185, "substitut": 29, "substr": 154, "subsystem": [36, 185], "subtempl": 209, "subtext": 129, "subtitl": [20, 96, 140], "subtyp": 169, "suburl": 28, "subvers": 5, "succeed": 135, "success": [1, 14, 17, 20, 22, 30, 49, 52, 53, 56, 60, 76, 77, 87, 115, 116, 135, 141, 142, 164, 165, 166, 168, 170, 177, 194, 229, 233, 240], "successfulli": [1, 17, 22, 43, 81, 131, 140, 141, 142, 174], "successor": 132, "succinctli": 21, "sudo": [33, 40, 42, 82, 125, 136, 156, 165, 189, 190, 239], "suffer": [42, 204], "suffic": 204, "suffici": [16, 76, 131], "suffix": [16, 22, 37, 166, 231], "suggest": [14, 17, 20, 22, 82, 129, 149, 188, 202], "suit": [76, 89, 107, 152, 186, 243], "suitabl": 61, "summar": [43, 61, 135, 140, 142], "summari": [5, 43, 49, 87, 107, 121, 129, 130, 140, 155, 185, 222, 229, 233], "summarytask": [140, 142], "summarytasktyp": [140, 142, 231], "super": 122, "superglob": 20, "supersed": 129, "suppli": [5, 20, 25, 110, 140, 150, 190], "support": [1, 5, 8, 10, 11, 15, 16, 20, 22, 23, 24, 28, 29, 31, 33, 39, 42, 45, 46, 52, 54, 57, 58, 63, 65, 69, 75, 76, 77, 82, 90, 95, 98, 99, 102, 108, 110, 113, 115, 116, 119, 126, 132, 135, 140, 142, 148, 150, 151, 152, 154, 157, 160, 162, 163, 165, 166, 167, 169, 171, 175, 176, 188, 190, 192, 195, 196, 200, 204, 210, 211, 213, 215, 216, 217, 225, 227, 228, 229, 230, 233, 236], "supportedcalendarcomponentset": 107, "supportedlock": 61, "supports_emoji": 54, "suppos": [134, 138, 232, 234], "suppress": 95, "sure": [1, 10, 12, 14, 15, 16, 18, 25, 40, 41, 44, 49, 79, 81, 82, 89, 106, 107, 110, 122, 125, 129, 131, 134, 140, 149, 152, 156, 161, 189, 192, 193, 194, 204, 209, 210, 215, 217, 219, 220, 222, 225, 226, 227, 228, 229, 230, 239, 240, 241, 243], "surfac": 76, "surprisingli": 204, "surround": [42, 81], "survey_cli": 134, "suspect": 104, "svenstaro": 15, "svg": [5, 27, 34, 43, 69, 96, 124, 129, 132, 134, 171, 181, 197, 215, 226, 227], "swap": 21, "swift": 215, "swiftli": 204, "switch": [16, 76, 98, 101, 132, 141, 142, 185, 186, 187, 188, 222, 226, 227, 229, 233, 239], "symbol": [76, 77], "symfoni": [1, 3, 22, 145, 175, 223], "symfonycomponentgenericev": [17, 22], "symptom": 162, "sync": [4, 5, 29, 42, 48, 82, 83, 122, 132, 154, 204], "synchron": [19, 71, 83, 87, 140, 141, 142, 170, 234], "synchronousprovideropt": [140, 213], "syncjob": 5, "syntax": [3, 23, 42, 43, 49, 52, 53, 76, 81, 95, 190, 222], "sysadmin": 35, "syslog": 29, "system": [7, 8, 14, 17, 18, 22, 25, 26, 29, 30, 39, 41, 76, 77, 81, 93, 99, 107, 110, 122, 125, 129, 135, 150, 152, 161, 169, 176, 182, 192, 194, 209, 210, 227, 228, 229, 231, 233, 234, 235, 236, 243], "system_prompt": 140, "systemconfig": 232, "systemctl": 189, "systemd": 29, "systemtag": [229, 232, 233, 234], "systemtagobjectmapp": 232, "systemtagsentityev": 229, "sysvsem": 242, "t": [7, 8, 10, 14, 15, 16, 20, 21, 22, 25, 30, 31, 32, 34, 37, 43, 49, 52, 56, 61, 69, 82, 96, 99, 108, 116, 119, 122, 124, 126, 129, 130, 132, 133, 134, 135, 137, 140, 141, 142, 145, 152, 154, 157, 161, 166, 175, 176, 184, 186, 187, 189, 192, 198, 199, 204, 209, 215, 217, 218, 220, 221, 222, 223, 224, 227, 228, 231, 239], "tab": [13, 15, 20, 23, 76, 185, 186, 219, 234], "tabl": [19, 20, 33, 39, 40, 49, 61, 82, 95, 97, 98, 99, 104, 122, 136, 190, 194, 210, 230, 233, 234], "table_name_uniq_featur": 37, "tablenam": 21, "tablescolumn": 49, "tactic": 184, "tag": [5, 10, 13, 15, 16, 20, 21, 29, 45, 61, 76, 77, 81, 85, 129, 148, 149, 151, 154, 165, 176, 178, 184, 185, 186, 189, 221, 229, 231, 232, 233, 234], "tag_favorit": 220, "tagassignedev": 233, "tagmanag": [220, 232], "tagmapp": 232, "tagnam": [229, 234], "tagservic": 229, "tagsplugin": 148, "tagunassignedev": 233, "tail": 122, "take": [14, 15, 18, 20, 22, 40, 49, 63, 69, 101, 107, 116, 122, 129, 130, 132, 134, 137, 140, 141, 142, 151, 154, 171, 175, 181, 184, 185, 187, 188, 202, 204, 213, 233, 234, 240], "taken": [20, 29, 170, 202], "talk": [14, 21, 38, 46, 52, 54, 61, 76, 80, 86, 96, 105, 113, 124, 126, 129, 132, 138, 172, 183, 190, 236], "talk_bot": [165, 180], "talk_bot_webhook_route_on_ex_app": 180, "tar": [15, 16, 17, 22, 61, 152, 232], "tarbal": [15, 16, 61, 89], "target": [5, 13, 16, 17, 18, 22, 63, 82, 83, 96, 101, 124, 129, 132, 140, 151, 169, 191, 199], "target_languag": 140, "targetdirectori": 70, "targetus": [69, 124], "task": [16, 17, 20, 22, 33, 43, 45, 47, 55, 76, 84, 106, 107, 113, 116, 137, 150, 160, 198, 231, 233, 234], "task_id": 87, "taskfailedev": [140, 141, 142, 231], "taskfailureexcept": [141, 142, 231], "tasknotfoundexcept": 231, "taskprocess": [45, 57, 75, 84, 113, 116, 137, 141, 142, 211, 213, 231, 233, 234], "taskprocessingmanag": 140, "tasksuccessfulev": [140, 141, 142, 231], "tasktyp": [57, 87, 140, 142], "tasktypeid": 140, "tbd": [22, 210, 234], "team": [12, 13, 107, 129, 156, 185, 230], "teardown": [41, 243], "teardownafterclass": [41, 243], "technic": [11, 20, 73, 81, 163, 185, 197, 201], "technologi": [116, 137, 140, 141, 142, 150, 206], "tecnativa": 158, "tediou": 49, "tel": [99, 179], "tell": [20, 43, 44, 49, 76, 81, 96, 105, 107, 129, 190, 204], "temp": 35, "templat": [6, 7, 8, 23, 24, 25, 28, 29, 49, 69, 95, 100, 113, 126, 129, 131, 134, 144, 155, 189, 201, 204, 210, 215, 228, 233, 239], "templatecontrol": 233, "templatefilecr": 228, "templateid": 101, "templatenam": [20, 25, 26], "templaterespons": [6, 17, 20, 22, 31, 34, 49, 126, 129, 134, 190, 229], "tempmanag": 232, "temporari": 63, "temporarili": 222, "ten": 76, "term": [22, 42, 53, 94, 107, 129, 132, 150, 151, 185, 191, 230], "termin": [44, 82, 140, 190, 239], "terminologi": 109, "terrifi": 129, "tertiari": [76, 194, 231], "test": [3, 7, 16, 19, 20, 21, 28, 33, 37, 45, 48, 62, 64, 65, 66, 69, 70, 79, 82, 85, 89, 92, 95, 98, 100, 103, 104, 107, 110, 113, 122, 130, 135, 140, 144, 147, 149, 155, 156, 161, 165, 175, 177, 185, 188, 189, 190, 194, 201, 204, 210, 222, 225, 229, 231, 232, 233, 234, 241], "test1": [69, 195, 198], "test2": 195, "test3": 195, "test4": 195, "test_arg": 175, "test_ex_app_field_1": 179, "test_ex_app_field_1_1": 179, "test_ex_app_field_1_2": 179, "test_ex_app_field_1_3": 179, "test_ex_app_field_1_4": 179, "test_ex_app_field_2": 179, "test_ex_app_field_3": 179, "test_ex_app_field_4": 179, "test_ex_app_field_5": 179, "test_ex_app_field_6": 179, "test_harp_integr": 152, "test_kei": 168, "test_sensitive_field": 99, "test_sensitive_field_2": 99, "testabl": [21, 143], "testact": 70, "testaddtwo": 243, "testcas": [41, 187, 233, 243], "testdummi": 187, "tester": 16, "testfil": 135, "testfilenotfound": 41, "testm": 243, "testremot": 232, "testsuit": 243, "text": [5, 17, 20, 22, 25, 27, 29, 30, 37, 42, 43, 45, 46, 47, 49, 50, 57, 58, 61, 64, 66, 69, 75, 81, 82, 84, 87, 90, 93, 96, 98, 99, 101, 103, 107, 110, 113, 116, 121, 129, 135, 140, 156, 179, 186, 190, 194, 195, 199, 200, 209, 213, 215, 223, 229, 231, 232, 233], "text2imag": [56, 140], "text2imagemanag": 141, "text2imagetask": 141, "text2speech": [43, 140], "text2text": [43, 87, 140], "text_to_speech": 43, "textarea": 134, "textcont": 129, "textdocu": 101, "textdocumenttempl": 101, "textoutput": 140, "textprocess": [45, 75, 84, 113, 140, 231], "textprocessingmanag": [140, 142], "texttoimag": [87, 140, 141, 231], "texttoimageexcept": 231, "texttospeech": [140, 233], "texttotext": 140, "texttotextchangeton": 140, "texttotextchat": 140, "texttotextchatwithtool": 140, "texttotextform": 140, "texttotextheadlin": 140, "texttotextproofread": 140, "texttotextreformul": 140, "texttotextsimplif": 140, "texttotextsummari": 140, "texttotexttop": 140, "texttotexttransl": 140, "th": 8, "th_th": 8, "than": [5, 10, 12, 16, 18, 21, 22, 25, 33, 37, 38, 43, 49, 52, 54, 62, 69, 76, 77, 81, 82, 96, 101, 104, 107, 116, 122, 140, 141, 142, 184, 185, 189, 190, 196, 198, 199, 204, 209, 221, 222, 229, 230, 231, 233, 236, 243], "thank": [70, 203], "thei": [0, 3, 14, 15, 16, 18, 20, 21, 22, 25, 33, 35, 36, 37, 40, 42, 44, 46, 48, 49, 61, 63, 69, 76, 77, 79, 81, 82, 83, 85, 89, 95, 97, 101, 105, 106, 107, 115, 119, 122, 129, 130, 131, 132, 135, 136, 140, 142, 150, 151, 153, 154, 176, 179, 185, 186, 188, 190, 198, 202, 204, 206, 209, 210, 213, 221, 227, 229, 231, 233], "them": [0, 1, 10, 13, 14, 15, 16, 17, 20, 21, 22, 29, 33, 34, 37, 40, 41, 42, 44, 46, 49, 61, 69, 76, 81, 82, 85, 93, 97, 101, 107, 119, 122, 125, 127, 129, 140, 146, 150, 151, 154, 160, 167, 176, 185, 188, 189, 190, 192, 196, 199, 202, 204, 206, 209, 210, 215, 223, 225, 227, 229, 231, 233, 235, 239, 243], "theme": [5, 20, 24, 28, 45, 76, 77, 194, 195], "themoviedb": 129, "themselv": [14, 17, 22, 85, 185, 190, 205, 233], "theoret": 222, "theori": 40, "theplan": 110, "therebi": [89, 94], "therefor": [0, 5, 16, 18, 20, 22, 37, 40, 42, 44, 49, 106, 107, 130, 131, 132, 159, 160, 161, 193, 206, 221, 222, 223, 227, 229, 231], "thi": [0, 1, 2, 3, 5, 6, 7, 8, 10, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 46, 48, 49, 50, 51, 52, 54, 56, 57, 60, 61, 63, 66, 67, 68, 69, 70, 71, 72, 73, 76, 77, 79, 80, 82, 83, 85, 87, 89, 90, 92, 94, 95, 96, 97, 98, 99, 101, 103, 104, 105, 106, 107, 108, 110, 112, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 158, 159, 160, 161, 162, 164, 165, 166, 167, 169, 170, 175, 180, 185, 187, 188, 189, 190, 192, 194, 198, 199, 200, 202, 204, 206, 209, 210, 211, 212, 215, 217, 218, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 239, 240, 243], "thing": [14, 15, 16, 18, 20, 21, 25, 29, 35, 37, 40, 42, 44, 61, 76, 79, 82, 126, 130, 134, 166, 185, 188, 204, 226, 227, 229, 233], "think": [17, 20, 22, 49, 122, 131, 151, 154, 190, 202, 204, 236], "thinkabl": 20, "third": [10, 14, 20, 22, 29, 71, 99, 106, 123, 131, 132, 135, 186, 188, 190, 231, 240], "this_field": 40, "thisauthorsid": 61, "thoroughli": 185, "those": [8, 10, 14, 15, 16, 17, 20, 21, 22, 43, 49, 52, 61, 76, 77, 85, 92, 93, 96, 97, 104, 119, 128, 129, 132, 152, 185, 188, 189, 204, 217, 222, 228, 229, 231, 233], "though": [10, 20, 37, 82, 131, 140, 149, 222], "thought": 223, "thread": [17, 22, 82, 229], "three": [16, 35, 40, 61, 67, 69, 76, 101, 107, 126, 134, 161, 190, 199, 200, 204, 206, 209, 211, 222], "threw": 231, "thrive": 206, "throttl": 20, "throttler": 232, "through": [1, 5, 8, 12, 14, 16, 19, 20, 26, 40, 42, 46, 48, 49, 61, 74, 76, 79, 82, 90, 92, 96, 98, 101, 105, 106, 121, 126, 132, 139, 147, 150, 151, 156, 188, 209, 213, 222, 223, 231, 233, 236], "throughout": [20, 190], "throughput": 122, "throw": [17, 22, 30, 36, 37, 38, 41, 45, 69, 74, 98, 105, 107, 116, 128, 137, 140, 141, 142, 143, 145, 146, 187, 222, 228, 229, 231, 233, 234, 240], "throwabl": [29, 37, 125, 145, 228, 233], "throwexcept": 41, "thrown": [17, 21, 22, 107, 222, 231], "thu": [0, 20, 22, 44, 82, 107, 115, 131, 135, 137, 186, 204, 209, 211, 233], "thumb": [129, 131, 140, 185], "thumbnail": [5, 132, 233], "thumbnailurl": [129, 132], "ti": 20, "tianon": 152, "tick": [104, 158], "ticket": [8, 12, 185, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228], "tidi": 82, "tight": [21, 150], "tighten": 20, "time": [0, 2, 5, 12, 14, 15, 16, 17, 20, 21, 22, 33, 35, 37, 38, 40, 42, 44, 49, 54, 56, 61, 62, 67, 69, 76, 79, 82, 85, 89, 92, 97, 101, 104, 113, 114, 115, 116, 122, 125, 127, 130, 133, 135, 136, 137, 140, 141, 142, 148, 152, 156, 161, 162, 171, 185, 188, 189, 190, 194, 204, 206, 209, 213, 220, 228, 229, 232, 233, 234, 239, 243], "time_immut": [37, 232], "time_insensit": 18, "timedjob": [18, 230], "timefactori": [139, 232], "timelin": [206, 212], "timeout": [20, 61, 116, 137, 141, 142, 153, 165, 192], "timestamp": [50, 54, 56, 61, 68, 69, 76, 82, 96, 97, 121, 129, 136, 140, 170, 232, 235], "timezon": [37, 50, 127, 143, 232, 233], "tini": [63, 222], "tip": [39, 45, 76, 110, 122, 134], "tipsi": 221, "titl": [13, 20, 31, 42, 43, 48, 49, 76, 77, 87, 94, 96, 99, 101, 124, 129, 132, 134, 174, 179, 190, 199, 227], "titlecas": 49, "tld": [108, 112, 133, 209], "tldr": 188, "tmigratorbasicversionhandl": 145, "tmp": [62, 152, 192], "tmpfile": 215, "tmpfolder": 215, "to_gif": 171, "toast": 220, "todai": 101, "todo": [49, 69, 96, 101, 107, 108, 132, 136, 229], "todoapicontrol": 49, "todoitem": 49, "togeth": [10, 13, 15, 49, 62, 76, 77, 82, 90, 122, 129, 134, 152], "toggl": [25, 69, 78, 99, 132, 166, 179, 193, 198, 199, 226, 233], "toggleclass": 199, "togoogl": 20, "toic": 106, "token": [15, 17, 20, 22, 24, 29, 31, 44, 46, 60, 61, 70, 88, 101, 113, 115, 121, 128, 129, 131, 139, 140, 190, 192, 227, 229, 231, 232], "tolabel": 58, "tolanguag": [58, 116], "tom": 32, "toml": 152, "ton": 140, "tone": [76, 78, 79, 140], "too": [19, 20, 54, 56, 57, 58, 104, 118, 122, 132, 184, 204, 209, 210, 226, 231, 232], "took": [122, 125], "tool": [4, 5, 10, 14, 15, 16, 25, 27, 49, 71, 81, 82, 90, 93, 95, 113, 115, 118, 120, 140, 141, 142, 144, 151, 154, 183, 191, 201, 204, 220, 222, 226, 229], "tool_cal": 140, "tool_call_id": 140, "tool_messag": 140, "toolbar": 125, "toolkit": 159, "tooltip": [81, 227], "tootltip": 227, "top": [20, 21, 34, 37, 46, 48, 76, 89, 93, 112, 125, 131, 134, 151, 153, 167, 172, 183, 190, 199, 209, 243], "top_menu": 181, "topic": [43, 76, 140, 142], "topicstasktyp": [142, 231], "topmenu": [154, 181], "topmostparentid": 64, "torn": [17, 22], "total": [46, 61, 62, 63, 232], "totalitem": [46, 168, 177, 182], "totallytyp": 95, "totaltotransf": 70, "totaltransferredsofar": 70, "toto": 96, "touch": [90, 152, 190, 199], "toward": 239, "tr": 42, "trace": [29, 49, 122], "track": [37, 122, 125, 129, 188], "tracker": [5, 14, 204], "trademark": 14, "tradit": 221, "tradition": [21, 52, 152], "traffic": 19, "trail": [42, 76], "train": [18, 188], "trait": [37, 135, 145, 228, 238], "transact": [39, 97], "transcrib": [43, 137, 140], "transcribefil": 137, "transcript": [17, 22, 228], "transcriptionfailedev": [137, 231], "transcriptionsuccessfulev": [137, 231], "transfer": [8, 22], "transform": [11, 16, 33, 132, 154, 187, 223], "transifex": [4, 42, 81, 154], "transit": [194, 221, 226, 228], "translat": [4, 5, 14, 16, 28, 38, 43, 45, 75, 78, 84, 113, 115, 124, 129, 132, 134, 135, 140, 151, 155, 163, 183, 201, 217, 228, 231, 236], "translatablefil": 154, "translateplur": 154, "translation_templ": 154, "translationfil": [8, 42, 154], "translationtool": [8, 154, 167], "transmiss": 20, "transmit": 131, "transpar": [12, 14, 20, 44, 223], "transpil": 223, "transport": [22, 101, 152], "trap": 129, "trash": [67, 231], "trashbin": [18, 22, 65, 73, 75], "travers": 208, "treat": [40, 90, 204], "tree": [64, 82, 148, 194], "trev6tmyjlbj7hgdcpz": 10, "tri": [17, 19, 21, 22, 58, 97, 107], "triag": [12, 115, 185], "triager": [185, 204], "trick": [45, 98, 134, 190, 209], "trigger": [12, 17, 18, 20, 21, 22, 29, 30, 60, 73, 76, 81, 94, 96, 101, 104, 105, 122, 132, 153, 175, 178, 188, 199], "trigger_error": 98, "triggerinitialimport": 94, "trim": [42, 129], "tripl": 42, "trivial": 35, "troubl": 44, "troubleshoot": [75, 162, 163, 192], "true": [3, 15, 20, 21, 25, 27, 29, 30, 32, 34, 37, 40, 44, 46, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 70, 82, 87, 90, 92, 93, 94, 95, 96, 98, 99, 101, 104, 107, 112, 116, 122, 128, 129, 131, 132, 134, 135, 136, 138, 140, 144, 145, 164, 170, 179, 186, 187, 189, 192, 209, 228, 229, 231, 232], "trust": [10, 15, 20, 113, 114, 135], "trusteddomainhelp": 232, "try": [0, 3, 8, 10, 20, 29, 32, 36, 37, 38, 41, 49, 81, 97, 98, 107, 112, 122, 125, 129, 133, 140, 141, 142, 145, 151, 161, 166, 184, 204, 234], "tsx": 154, "tt1446714": 129, "ttl": [19, 61], "ttransact": [37, 97, 228], "tune": 199, "tupl": [45, 144], "turn": [20, 32, 33, 42, 89, 140, 142, 146, 196, 199, 209], "tutori": [4, 34, 45, 75, 189, 190, 201, 206], "tweak": 140, "twice": [3, 17, 22], "twitter": [46, 124], "two": [1, 3, 5, 14, 15, 17, 18, 19, 20, 22, 23, 25, 33, 34, 42, 43, 44, 49, 63, 71, 72, 76, 81, 82, 85, 87, 88, 99, 101, 104, 106, 107, 110, 113, 116, 122, 129, 131, 132, 134, 149, 152, 158, 164, 167, 170, 179, 185, 186, 189, 190, 198, 199, 202, 204, 215, 222, 231, 232, 234, 235, 236], "twofactor": 5, "twofactor_backupcod": 40, "twofactor_test": 144, "twofactorauth": [144, 215, 229, 233], "twofactorproviderchallengefail": 229, "twofactorproviderchallengepass": 229, "twofactorproviderdis": 229, "twofactorproviderforuserdis": 229, "twofactorproviderforuseren": 229, "twofactorproviderforuserregist": 229, "twofactorproviderforuserunregist": 229, "twofactorprovideruserdelet": 229, "twofactortestprovid": 144, "tx": 16, "txt": [38, 61, 62, 69, 87, 103, 104, 110, 152, 209], "type": [5, 8, 13, 15, 16, 17, 20, 22, 28, 29, 31, 32, 36, 40, 42, 43, 45, 46, 50, 52, 53, 54, 56, 58, 59, 61, 62, 64, 66, 69, 73, 76, 80, 82, 84, 85, 87, 92, 94, 95, 96, 98, 101, 103, 104, 110, 112, 113, 114, 115, 120, 125, 126, 127, 129, 132, 134, 135, 136, 147, 148, 150, 151, 152, 153, 165, 167, 172, 174, 179, 181, 184, 185, 189, 190, 192, 195, 198, 199, 200, 209, 215, 220, 221, 222, 228, 229, 230, 231, 232, 233, 234, 237], "type_bool": 132, "type_int": [104, 132], "type_mor": 96, "type_new": 96, "type_setup": 96, "type_us": 132, "typeda": 93, "typehint": 215, "typeiconclass": 126, "typeof": 101, "typescript": [28, 115, 185, 190], "typestr": 126, "typic": [3, 16, 19, 20, 21, 32, 42, 61, 69, 80, 95, 101, 107, 116, 118, 131, 132, 137, 140, 141, 142, 154, 185, 190], "typing_in_psalm": 49, "typo": 8, "typographi": 78, "u": [33, 40, 42, 44, 46, 48, 63, 64, 66, 82, 96, 98, 101, 125, 129, 136, 152, 156, 161, 165, 169, 190, 192, 234, 240], "u29tzvnpz25lzerhdgffegftcgxl": 10, "ubuntu": 15, "ui": [5, 25, 46, 69, 70, 76, 77, 81, 99, 101, 115, 126, 129, 132, 135, 138, 151, 153, 154, 165, 166, 167, 172, 179, 181, 192, 194, 199, 228, 231, 235], "ui_exampl": [154, 167, 171, 181], "uid": [17, 18, 22, 37, 40, 44, 61, 106, 107, 146, 218], "uk": 118, "ul": [184, 193, 198, 199, 200], "umgehen": 5, "un": [61, 130], "unabl": [14, 49, 135], "unam": 152, "unannounc": 14, "unauthent": 101, "unauthor": [50, 59, 161, 209], "unauthorizedexcept": 140, "uncertain": [141, 142], "unchang": 69, "unclear": 206, "uncomput": 61, "undefin": [42, 73, 82, 101, 186, 234], "undefinedclass": 95, "undefineddocblockclass": 95, "under": [1, 14, 15, 20, 21, 61, 71, 76, 79, 82, 101, 122, 152, 154, 185, 189, 190, 222, 228, 243], "undergo": 105, "underli": [38, 82, 132, 231, 232], "underscor": [5, 20, 37, 54, 69, 94, 187, 190], "understand": [16, 20, 22, 42, 43, 49, 73, 82, 113, 114, 125, 131, 140, 150, 151, 161, 190, 206], "undo": [79, 185, 197], "unescap": [26, 209], "unexpect": [14, 22, 37, 188], "unexpectedli": 233, "unfamiliar": 21, "unfavor": 76, "unfortun": [192, 228], "unfreez": 185, "unhandl": 101, "unhappi": 204, "unicod": 42, "unifi": [47, 101, 115, 118, 132, 220, 221, 231, 233], "uniform": [101, 236], "uninstal": [5, 14, 130, 149, 154, 178], "unintend": 188, "unintent": 14, "unintention": 231, "union": 49, "uniqu": [20, 37, 44, 46, 61, 63, 69, 79, 92, 94, 96, 99, 101, 106, 121, 124, 132, 136, 140, 141, 144, 145, 165, 175, 188, 190, 204, 234], "unique_name_of_file_action_menu": 171, "unique_name_of_file_actions_menu": 171, "unique_name_of_script": 181, "unique_name_of_styl": 181, "unique_name_of_top_menu": 181, "uniqueconstraintviolationexcept": 234, "uniquememb": 218, "unit": [19, 21, 37, 70, 95, 98, 120, 185, 190, 201, 219, 241], "univers": [92, 129], "unix": [54, 56, 107, 121, 140, 185, 232, 236], "unixtim": 63, "unknown": [52, 61, 69, 81, 92, 101, 104, 231, 234, 240], "unknownactivityexcept": [69, 231], "unknownnotificationexcept": 231, "unless": [14, 20, 61, 81, 90, 92, 97, 122, 131, 139, 140, 141, 142, 152, 185, 193, 209, 211, 222, 238], "unlik": [61, 82, 156, 166, 169, 190], "unlimit": 61, "unnecessari": 42, "unnecessarili": 20, "unnot": 15, "unoffici": 222, "unpredict": [49, 130], "unpublish": 22, "unread": [61, 76, 77, 96, 148, 199], "unregist": [153, 172], "unregistercalendar": 224, "unrel": [76, 122, 231], "unsaf": [216, 229], "unselect": 195, "unset": [52, 69, 218], "unshar": [22, 61], "unsign": [10, 37, 136], "unsigned_fil": 82, "unsplash": 73, "unstabl": [86, 113], "unsubscrib": 232, "unsupport": [13, 101, 204], "unsur": 204, "until": [18, 20, 44, 48, 115, 132, 137, 141, 142, 166, 231], "untouch": [40, 222], "untranslat": 8, "untyp": 22, "unus": [29, 122, 211, 222, 233], "unvalid": 208, "unwillingli": 209, "up": [3, 5, 7, 8, 9, 14, 15, 18, 19, 20, 21, 41, 42, 44, 48, 49, 64, 76, 85, 89, 94, 95, 96, 106, 115, 122, 132, 134, 140, 141, 142, 148, 152, 153, 155, 163, 167, 185, 187, 190, 191, 192, 199, 201, 204, 206, 214, 225, 227, 229, 231, 232, 234, 241, 243], "upcom": [45, 85, 138, 233, 238], "updat": [3, 5, 8, 10, 12, 14, 15, 17, 18, 21, 22, 33, 37, 40, 42, 45, 48, 49, 50, 61, 64, 70, 73, 81, 82, 88, 89, 90, 93, 94, 96, 97, 102, 113, 115, 118, 122, 130, 134, 140, 152, 153, 162, 165, 168, 170, 177, 178, 188, 189, 190, 192, 223, 227, 228, 230, 231, 233, 234, 235, 236, 238, 239], "updateaccess": 94, "updateaccessdeclar": 94, "updateaccessop": 94, "updateaccessprovid": 94, "updatecachedcalendarobject": 221, "updatecalendar": 221, "updatecalendarobject": 221, "updatecard": 221, "updated_at": 129, "updatefilesmetadata": 104, "updateglobalindex": 93, "updategloballazi": 93, "updateglobalsensit": 93, "updateindex": 93, "updatelazi": [90, 93], "updatenotif": [5, 230], "updatesensit": [90, 93], "updateshar": 221, "updatesubscript": 221, "updatetodo": 49, "updateusermanag": 146, "upgrad": [10, 21, 40, 82, 89, 130, 189, 206, 212, 214], "upload": [10, 15, 16, 52, 65, 66, 71, 73, 75, 76, 81, 101, 104, 122, 154, 209, 230, 231], "upload_path": 62, "upload_tim": [61, 66], "uploadlimit": 233, "uploadoper": 70, "uploadremotefileoper": 70, "upon": [6, 21, 82, 105, 107, 116, 117, 134, 137, 142, 206], "upper": [77, 82], "uppercamelcas": 187, "uppercas": [1, 20, 30, 42, 81, 89], "upscal": [171, 174], "upscaled_image_nam": 174, "upscaler_exampl": 171, "upstream": [222, 229], "upvot": 188, "urandom": 62, "urgenc": 90, "urgent": [14, 96], "uri": [52, 70, 106, 107, 108, 140], "url": [5, 7, 13, 19, 20, 21, 24, 27, 28, 31, 32, 37, 43, 44, 46, 48, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 69, 70, 73, 76, 82, 94, 96, 99, 101, 105, 106, 108, 115, 124, 126, 128, 129, 131, 132, 133, 135, 153, 154, 165, 169, 171, 172, 174, 178, 179, 181, 189, 190, 192, 194, 209, 215, 231, 240, 243], "url_regex_no_modifi": 230, "urlencod": [20, 44], "urlgener": [28, 31, 34, 96, 124, 132, 134, 135, 147, 215, 232], "urlparam": [21, 25, 30, 36, 49, 96, 99, 110, 124, 126, 145], "urlparamet": 33, "urn": 64, "us": [0, 1, 2, 3, 5, 8, 10, 14, 15, 16, 17, 18, 19, 22, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 52, 55, 56, 57, 60, 61, 62, 63, 64, 66, 69, 70, 71, 72, 73, 76, 77, 79, 81, 85, 87, 89, 90, 92, 93, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 108, 110, 112, 113, 115, 116, 118, 119, 120, 122, 123, 124, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 158, 160, 161, 162, 164, 165, 166, 167, 170, 171, 173, 174, 175, 176, 179, 184, 185, 187, 188, 189, 190, 192, 193, 194, 195, 196, 198, 199, 200, 202, 209, 210, 211, 213, 215, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 242, 243], "usabl": [79, 129, 185], "usag": [15, 21, 28, 35, 42, 65, 76, 86, 95, 107, 113, 125, 131, 154, 173, 175, 185, 188, 194, 196, 221, 222, 225, 232, 233, 241], "use_path_styl": 192, "use_ssl": 192, "usebackend": 233, "usecas": 232, "usedock": 243, "user": [0, 1, 5, 6, 8, 10, 13, 16, 18, 21, 25, 29, 32, 34, 35, 37, 38, 39, 43, 45, 50, 52, 56, 57, 58, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 75, 77, 78, 79, 81, 82, 83, 84, 86, 90, 92, 93, 94, 98, 99, 101, 104, 105, 106, 107, 109, 110, 111, 113, 115, 117, 119, 121, 122, 124, 128, 129, 131, 132, 133, 135, 139, 140, 141, 144, 149, 150, 153, 155, 156, 160, 162, 165, 167, 170, 172, 174, 176, 178, 179, 186, 187, 188, 189, 190, 191, 192, 194, 199, 200, 201, 204, 209, 215, 218, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 233, 235, 240, 243], "user1": [48, 69, 110], "user123": 146, "user2": [48, 110], "user3": 48, "user_ag": 44, "user_id": 40, "user_ldap": [17, 134, 221, 229], "user_oidc": 119, "user_prefer": 25, "user_saml": 192, "user_statu": [54, 239], "useraddedev": 229, "userbackendregist": 221, "usercach": 232, "userchangedev": 229, "userconfig": [91, 113, 114], "userdeletedev": 229, "userdeletedlisten": 0, "userfacingprocessingexcept": 140, "userfirsttimeloggedinev": 229, "userfold": 38, "usergrouplist": 193, "userid": [1, 17, 21, 22, 29, 36, 46, 50, 54, 56, 57, 63, 70, 87, 93, 94, 96, 110, 116, 121, 124, 137, 138, 140, 141, 142, 146, 164, 170, 171, 190, 218, 227, 229, 233], "useridassignedev": 232, "useridunassignedev": 232, "userloggedinev": 224, "usermanag": [1, 31, 146, 232], "usermigr": [145, 228], "usermigrationexcept": 145, "usermountaddedev": 233, "usermountcach": 232, "usermountremovedev": 233, "usermountupdatedev": 233, "usernam": [44, 46, 61, 66, 70, 146, 156, 186, 190, 192, 209], "useroidc": 119, "userratelimit": 20, "userratethrottl": 20, "userremovedev": [221, 229], "userservic": 146, "usersess": [38, 146, 232], "userset": [186, 234], "usersingroup": 228, "userstatu": 138, "userupd": 229, "userupdatedev": 229, "usesess": 227, "usestrictdynam": 20, "usestrictdynamiconscript": [20, 229], "usetokenscop": 101, "usr": [15, 82, 98, 152], "usual": [10, 15, 20, 21, 22, 25, 42, 49, 61, 71, 76, 90, 99, 122, 136, 140, 148, 151, 154, 162, 165, 185, 188, 190, 199, 204, 232], "utc": 143, "utf": [5, 61, 64, 66, 104, 107], "util": [0, 18, 21, 22, 25, 30, 31, 82, 96, 113, 114, 115, 126, 127, 129, 143, 145, 152, 153, 166, 182, 190, 197, 211, 215, 216, 218, 221, 223, 227, 228, 229, 231, 232, 233, 235], "uuid": [63, 106], "ux": [79, 185, 200], "uxi": 10, "v": [16, 46, 61, 82, 126, 129, 149, 192, 232, 243], "v1": [3, 5, 20, 33, 43, 44, 46, 50, 51, 52, 53, 54, 59, 87, 96, 101, 107, 166, 168, 169, 170, 171, 173, 174, 175, 177, 179, 180, 181, 182, 222, 231, 233], "v12": 223, "v14": 223, "v2": [3, 20, 33, 43, 46, 48, 50, 51, 52, 54, 56, 57, 58, 59, 65, 75, 87, 96, 101, 129, 131, 132, 153, 171, 221, 233, 240], "v3": [16, 185], "v30": 5, "v31": [5, 93], "v32": 92, "v33": 140, "v4": [220, 234], "val": 25, "valid": [5, 10, 17, 20, 22, 44, 46, 49, 54, 61, 73, 76, 90, 95, 97, 101, 105, 107, 113, 114, 115, 119, 123, 128, 152, 153, 164, 186, 192, 194, 199, 204, 209, 215, 231, 233, 242], "validatefilenam": 234, "validatemailaddress": 233, "validateoper": 105, "validatepasswordpolicyev": 232, "validatesyncsetup": 8, "validationexcept": 140, "valu": [1, 2, 5, 14, 17, 20, 22, 25, 26, 28, 29, 34, 37, 39, 43, 45, 46, 52, 54, 59, 61, 69, 76, 81, 87, 92, 94, 96, 98, 99, 101, 104, 107, 110, 120, 122, 124, 125, 131, 132, 134, 139, 140, 141, 145, 148, 153, 166, 170, 172, 173, 174, 179, 181, 186, 187, 190, 192, 194, 195, 199, 200, 218, 220, 222, 227, 230, 231, 233], "value1": 69, "value_is_arrai": 1, "value_non": 1, "value_opt": 1, "value_requir": 1, "valuetyp": [92, 93], "valwithfallback": 25, "vanilla": [186, 232], "var": [0, 1, 7, 22, 25, 29, 35, 40, 42, 103, 104, 106, 107, 122, 124, 125, 126, 130, 132, 134, 136, 138, 139, 146, 147, 149, 156, 165, 184, 189, 192, 194, 199, 209, 231], "var_dump": [123, 187], "vari": [43, 110, 189], "variabl": [15, 21, 24, 25, 26, 36, 41, 42, 70, 77, 78, 82, 86, 100, 107, 113, 132, 154, 158, 185, 188, 190, 197, 209, 227, 229, 231, 233, 243], "variant": [37, 76, 87, 194, 227, 233], "varieti": 98, "variou": [13, 20, 21, 38, 41, 61, 76, 83, 98, 115, 129, 131, 138, 150, 197, 235, 236], "vc": 82, "vcal": 107, "vcalendar": 107, "vcard": 108, "vcs_comment": 129, "vcs_issu": 129, "vcs_pull_request": 129, "vcvarsal": 82, "vdebug": 98, "ve": [7, 21, 156, 204, 214, 234], "vector": 209, "vein": 140, "vendor": [0, 3, 8, 16, 23, 89, 95, 210], "vendor_script": 233, "vendor_styl": 23, "verb": [20, 21, 33, 42, 43, 64, 76, 81, 128, 131, 178, 190, 209, 240], "verbos": [21, 29], "veri": [0, 2, 3, 15, 16, 21, 23, 35, 44, 107, 122, 125, 128, 131, 140, 198, 199, 209], "verif": [10, 76, 152, 192], "verifi": [10, 99, 144, 152, 156, 161, 164, 179, 190, 192], "verify_peer_off": 192, "verifychalleng": 144, "verifymountpointev": 220, "verifypassword": [20, 128], "verifypath": 231, "versa": [37, 134], "versatil": 22, "version": [3, 5, 8, 10, 15, 17, 18, 20, 21, 22, 23, 25, 30, 33, 34, 37, 40, 42, 43, 44, 46, 48, 49, 50, 55, 56, 57, 58, 61, 63, 64, 65, 66, 69, 72, 73, 75, 82, 85, 89, 90, 92, 93, 94, 95, 96, 98, 99, 101, 104, 108, 110, 115, 116, 118, 120, 121, 122, 125, 127, 130, 131, 132, 134, 136, 137, 140, 141, 142, 145, 146, 149, 151, 154, 164, 165, 170, 171, 185, 189, 190, 191, 194, 196, 204, 206, 210, 212, 214, 217, 218, 220, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 238, 239, 240], "version2404date20220903071748": 40, "version30000date20240729185117": 40, "version_compar": 16, "versionnumb": 190, "versu": 188, "vertic": [43, 160], "vevent": 107, "vfc": 43, "vghlihf1awnrigjyb3duigzveapqdw1wcybvdmvycnrozsbsyxp5igrvzy4": 48, "via": [0, 8, 15, 16, 17, 20, 22, 25, 29, 40, 42, 44, 46, 49, 52, 54, 61, 64, 67, 68, 69, 72, 75, 76, 79, 82, 88, 99, 105, 108, 113, 115, 116, 119, 126, 128, 129, 132, 137, 140, 141, 142, 144, 147, 149, 151, 153, 154, 158, 171, 175, 178, 185, 190, 202, 207, 209, 210, 222, 231, 233, 243], "vice": [37, 134], "video": [20, 21, 71, 137, 139, 140, 171, 184], "view": [5, 16, 17, 22, 31, 32, 40, 52, 69, 73, 76, 87, 96, 98, 129, 131, 132, 144, 186, 192, 193, 198, 219, 228, 237], "viewer": [47, 52, 76, 87, 129, 189, 219, 230, 234], "vim": [98, 149, 192], "vimeo": [3, 95], "violat": [14, 20, 49], "virtual": [82, 152], "visibility_contacts_onli": 233, "visibility_priv": 233, "visibility_publ": 233, "visibl": [5, 14, 20, 27, 38, 46, 76, 129, 135, 140, 181, 194, 229, 233], "visit": [124, 243], "visual": [76, 77, 190, 194, 199, 231], "vm": 96, "vnd": 43, "voic": 140, "void": [0, 1, 2, 19, 21, 22, 25, 29, 30, 31, 36, 37, 40, 42, 43, 49, 70, 92, 94, 96, 99, 101, 103, 104, 106, 107, 108, 110, 112, 116, 121, 124, 125, 126, 129, 132, 133, 135, 137, 138, 140, 141, 142, 145, 146, 147, 148, 227, 228], "volum": [149, 154, 162, 165], "vpn": 161, "vtodo": 107, "vue": [7, 8, 20, 25, 28, 73, 76, 81, 96, 105, 118, 126, 129, 151, 154, 190, 194, 196, 209, 226, 231, 232, 234, 235, 241], "vueelement": 129, "vuej": [73, 196], "vuerout": 154, "vuex": 154, "vulner": [12, 14, 188, 209], "w": [61, 243], "w3": [5, 79, 95, 108, 130], "w500": 129, "wa": [1, 10, 15, 16, 17, 20, 22, 49, 50, 52, 56, 57, 58, 61, 63, 64, 69, 82, 87, 90, 97, 101, 105, 106, 107, 115, 121, 122, 125, 129, 131, 132, 136, 137, 140, 141, 142, 144, 167, 204, 210, 213, 217, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238], "wai": [5, 15, 20, 21, 22, 25, 29, 37, 38, 40, 42, 46, 49, 52, 61, 79, 82, 87, 89, 90, 92, 93, 99, 107, 115, 119, 122, 125, 126, 129, 130, 131, 132, 134, 145, 149, 152, 154, 158, 159, 160, 167, 185, 189, 190, 194, 196, 199, 204, 209, 228, 229, 234, 243], "wait": [15, 25, 104, 115, 122, 161, 166, 188], "walin": 129, "walinej": 129, "want": [0, 3, 10, 14, 15, 18, 20, 22, 25, 29, 32, 33, 35, 46, 49, 53, 64, 70, 71, 76, 79, 82, 83, 89, 90, 92, 94, 95, 96, 99, 101, 105, 107, 115, 116, 118, 126, 127, 128, 129, 131, 140, 141, 142, 144, 149, 152, 154, 166, 171, 178, 185, 189, 190, 198, 199, 200, 205, 209, 214, 229, 231, 236, 240, 243], "warn": [10, 17, 22, 29, 49, 76, 77, 82, 87, 90, 92, 122, 130, 131, 135, 156, 186, 187, 192, 194, 220, 222, 233], "wasm": 229, "wasn": [116, 224], "watch": [14, 21, 100, 113, 122, 190, 239, 243], "watermark": [140, 234], "wave": 79, "wcag": 79, "we": [2, 8, 9, 14, 15, 18, 34, 37, 40, 42, 43, 44, 49, 62, 63, 72, 73, 82, 95, 105, 107, 110, 115, 118, 122, 124, 126, 128, 129, 135, 140, 141, 142, 147, 149, 150, 151, 152, 154, 157, 158, 165, 169, 175, 184, 185, 186, 188, 189, 193, 195, 198, 199, 200, 202, 204, 205, 210, 211, 215, 218, 220, 222, 223, 226, 227, 229, 232, 233, 234, 239, 240], "weather": 176, "web": [20, 23, 25, 27, 32, 42, 44, 46, 74, 86, 87, 98, 101, 112, 113, 122, 129, 130, 131, 135, 156, 191, 192, 204, 209, 231, 232, 234, 243], "web_compon": 234, "webassembli": 229, "webauthn": 241, "webbrows": 44, "webdav": [2, 17, 22, 44, 46, 64, 66, 67, 68, 73, 74, 75, 102, 107, 113, 114, 115, 122, 171, 201, 227, 232, 233], "webfing": 222, "webfingerhandl": 147, "webhook": [140, 231, 234], "webhook_listen": 231, "webkit": 101, "webpack": [115, 118, 220, 223, 231], "webpag": 44, "webroot": [21, 209, 220, 227], "webserv": [135, 149, 153, 165], "websit": [5, 20, 46, 79, 95, 124, 129, 131, 179, 209, 222], "websocket": 154, "webview": [75, 113], "wed": 61, "week": [139, 188], "weekend": 14, "weekli": [101, 139], "weight": [77, 231], "welch": 5, "welcom": [14, 122, 125, 202, 212, 240], "well": [0, 10, 14, 16, 20, 22, 42, 46, 52, 76, 80, 82, 95, 96, 107, 124, 125, 126, 128, 129, 131, 134, 137, 140, 145, 147, 188, 189, 192, 202, 204, 214, 225, 228, 229, 231, 232, 233, 234], "wellknown": 147, "went": [29, 81, 141, 142, 204, 226], "were": [10, 29, 33, 40, 79, 93, 116, 128, 129, 131, 148, 204, 210, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 238, 239], "wescan": 42, "wget": 152, "what": [14, 16, 20, 21, 49, 62, 70, 77, 79, 80, 81, 82, 96, 105, 106, 107, 115, 122, 125, 131, 140, 141, 142, 148, 166, 185, 187, 188, 190, 197, 202, 204, 209, 222, 228], "whatev": [15, 20, 107, 147, 190, 200], "whats_new": 234, "whatsnew": 234, "whatsnewcontrol": 234, "when": [0, 1, 3, 6, 10, 14, 15, 16, 17, 18, 21, 22, 25, 27, 29, 30, 33, 35, 36, 37, 40, 41, 42, 43, 44, 46, 48, 49, 52, 54, 56, 57, 58, 60, 61, 69, 70, 76, 77, 79, 81, 82, 87, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 104, 105, 107, 113, 114, 115, 118, 119, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 137, 138, 140, 141, 142, 144, 152, 153, 156, 159, 162, 165, 166, 168, 169, 171, 178, 179, 184, 185, 188, 189, 190, 194, 198, 199, 204, 206, 209, 210, 213, 215, 221, 222, 223, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 243], "whenev": [22, 76, 96, 124, 127, 144, 145, 152, 188], "where": [0, 5, 10, 13, 18, 20, 21, 25, 29, 37, 44, 46, 49, 61, 62, 63, 66, 70, 76, 81, 82, 89, 90, 95, 97, 99, 104, 106, 115, 122, 125, 129, 131, 132, 144, 148, 149, 150, 154, 165, 171, 178, 180, 185, 188, 190, 192, 203, 204, 209, 222, 227, 228, 229, 231, 233, 234], "wherea": 144, "wherev": [21, 82, 83], "whether": [0, 31, 34, 49, 53, 56, 58, 61, 69, 96, 101, 105, 116, 132, 134, 136, 140, 144, 181, 188, 190, 213, 226, 231, 232, 233, 234], "which": [0, 1, 3, 5, 7, 8, 10, 14, 15, 16, 17, 20, 22, 25, 26, 28, 29, 32, 33, 37, 38, 40, 42, 43, 44, 47, 49, 50, 52, 61, 63, 69, 71, 72, 76, 80, 82, 89, 90, 94, 95, 96, 97, 98, 101, 104, 105, 107, 110, 115, 116, 119, 122, 125, 126, 129, 130, 131, 132, 135, 136, 137, 140, 141, 142, 143, 149, 150, 151, 152, 154, 156, 160, 161, 165, 166, 167, 169, 171, 175, 179, 185, 187, 189, 190, 192, 193, 194, 198, 199, 204, 209, 211, 222, 226, 227, 228, 231, 232, 233, 234, 235, 243], "while": [15, 20, 21, 22, 38, 40, 42, 44, 46, 56, 58, 76, 81, 82, 87, 96, 97, 98, 101, 105, 107, 122, 130, 140, 151, 152, 161, 186, 194, 204, 206, 220, 228, 234], "white": [42, 46, 187, 195, 200], "whiteboard": 101, "whitelist": [17, 20, 22], "whitespac": [42, 98], "who": [10, 14, 20, 29, 46, 69, 79, 101, 107, 132, 140, 153, 185, 204, 206, 231], "whoami": 82, "whoever": 204, "whole": [48, 49, 62, 77, 148, 193, 198], "whom": 12, "whose": [29, 166], "why": [20, 33, 125, 186, 187, 188], "wide": [21, 25, 37, 76, 118, 185, 190, 194, 231], "widget": [17, 22, 86, 113, 126, 230], "widget_url": 96, "widgetbutton": 96, "widgetitem": 96, "widgetopt": 96, "width": [17, 22, 77, 129, 184, 186, 194, 229], "wiki": [5, 82, 136], "wikipedia": [5, 136], "wild": 142, "willing": [188, 204], "win": 82, "win32": 82, "window": [18, 20, 83, 101, 154, 218, 234], "winter": 43, "wipe": [75, 201], "wire": [1, 41, 89, 90], "wise": [20, 122, 209, 233], "wiser": [141, 142], "wish": [82, 199, 204], "with_doc": 82, "withfield": 233, "within": [8, 10, 15, 20, 21, 49, 52, 56, 61, 63, 64, 70, 76, 82, 85, 88, 99, 101, 106, 107, 113, 134, 135, 148, 150, 153, 156, 175, 202, 218, 230, 231, 232, 234], "without": [3, 5, 20, 21, 37, 40, 41, 42, 43, 49, 51, 61, 64, 76, 81, 82, 85, 96, 98, 99, 101, 104, 107, 122, 123, 129, 131, 140, 149, 152, 153, 156, 166, 178, 188, 189, 190, 206, 209, 210, 224, 228, 229, 231, 232, 233, 236, 241, 243], "withtimezon": [127, 143], "won": [10, 14, 16, 42, 61, 96, 124, 152, 204, 215, 220, 221], "wonder": 49, "wopi": 101, "word": [1, 30, 42, 69, 76, 78, 81, 105, 129, 185, 186], "wordprocessingml": 43, "work": [1, 3, 8, 13, 14, 15, 16, 18, 20, 28, 32, 37, 38, 44, 46, 49, 52, 60, 61, 71, 76, 79, 82, 89, 96, 98, 104, 106, 107, 113, 114, 115, 122, 125, 126, 128, 130, 132, 134, 135, 144, 148, 151, 154, 156, 159, 160, 162, 166, 167, 175, 185, 186, 191, 194, 204, 206, 210, 213, 222, 225, 228, 229, 231, 233, 235, 236, 242], "workaround": 82, "workdir": 152, "worker": [140, 160, 229], "workflow": [3, 15, 17, 20, 22, 81, 95, 105, 113, 151, 152, 165, 171, 201, 210, 232], "workflow_ocr_backend": 152, "workflowengin": [105, 219, 221, 228, 229], "workflowpdfconvert": 105, "workspac": [61, 96, 239], "world": [42, 43, 130, 190], "worri": [21, 49, 222], "would": [0, 5, 7, 8, 14, 20, 21, 25, 30, 33, 37, 40, 41, 44, 46, 61, 72, 77, 89, 105, 106, 107, 116, 130, 131, 132, 134, 135, 137, 140, 141, 142, 150, 166, 187, 189, 196, 204, 209, 228, 230, 232, 243], "wrap": [1, 20, 29, 33, 94, 122, 143, 198, 229, 232, 240], "wrapper": [49, 97, 123, 193, 198, 228, 232, 237], "writabl": [7, 61, 107, 152, 167, 189, 209], "writablecalendar": 106, "write": [2, 8, 10, 15, 20, 21, 28, 29, 33, 35, 37, 41, 43, 49, 61, 77, 78, 82, 86, 90, 97, 99, 105, 106, 113, 129, 135, 140, 141, 150, 151, 152, 154, 184, 190, 201, 202, 209, 232], "writecontenttofil": 38, "writeln": [1, 145], "writelog": 229, "written": [5, 18, 20, 22, 29, 37, 42, 77, 107, 115, 141, 154, 167, 185, 190, 206, 239], "wrong": [8, 29, 33, 42, 49, 52, 70, 76, 81, 141, 142, 204], "wrongli": [42, 122], "www": [5, 7, 8, 20, 33, 40, 42, 95, 97, 108, 118, 125, 129, 130, 136, 156, 165, 189, 190, 192, 219, 220, 221, 231, 243], "wwwrun": 189, "x": [8, 10, 16, 20, 40, 44, 46, 48, 49, 60, 61, 62, 63, 64, 66, 69, 74, 96, 101, 125, 129, 132, 152, 188, 209, 222, 229, 232, 234, 238], "x3mucdk9lcfo1uwgtrtfkuxskx41pnjgtr6rqwgibd1v52q1qbc": 10, "x509": 192, "x64": 82, "x86": 82, "xarg": 95, "xcode": 82, "xdebug": [100, 113], "xdebug_config": 98, "xdebug_profil": 62, "xdebug_session_start": 98, "xhr": [125, 209], "xml": [1, 3, 5, 6, 13, 20, 21, 22, 32, 34, 37, 41, 44, 46, 52, 53, 61, 64, 66, 69, 89, 104, 107, 108, 120, 130, 131, 134, 144, 151, 154, 156, 167, 176, 178, 183, 189, 231, 232, 234, 240], "xmlhttprequest": 61, "xmln": [5, 61, 64, 66, 95, 104, 108, 130], "xmlreader": 242, "xmlrespons": 20, "xmlschema": [5, 95, 108, 130], "xmlstarlet": 154, "xsd": [3, 5, 95, 108, 130], "xsi": [3, 5, 95, 108, 130], "xss": [26, 209], "xx": 222, "xxx": 232, "xxxx": 199, "xzf": 152, "y": [1, 16, 62, 69, 132, 192, 232, 234, 238], "yaml": 15, "ye": [1, 81, 87, 104, 131, 186, 188, 192], "year": [14, 185, 211, 230, 238, 240], "yet": [5, 7, 20, 25, 40, 50, 56, 61, 107, 115, 122, 135, 144, 174, 185, 186, 206, 239], "yield": [33, 49, 120, 135], "yieldent": 231, "yktva4zgxjfivy52wqd8kw3m2pkgqr6srmuxmiprdunxjpfripjn0gmfmtnoqoolysuj6scn": 44, "you": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 37, 38, 40, 41, 42, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 69, 70, 71, 72, 73, 76, 79, 82, 83, 87, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 101, 104, 105, 106, 107, 115, 116, 118, 120, 122, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 137, 140, 141, 142, 143, 144, 145, 149, 150, 151, 152, 153, 154, 156, 158, 159, 161, 162, 164, 165, 166, 167, 169, 171, 173, 175, 179, 185, 186, 187, 189, 191, 192, 193, 194, 195, 196, 198, 199, 200, 203, 206, 209, 210, 211, 212, 214, 215, 217, 218, 219, 220, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238, 239, 240, 241, 243], "your": [0, 2, 3, 5, 7, 8, 9, 11, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 29, 30, 31, 32, 33, 34, 35, 37, 38, 40, 41, 45, 46, 48, 61, 62, 63, 64, 69, 70, 75, 76, 79, 81, 82, 83, 87, 89, 90, 93, 94, 95, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 110, 113, 115, 116, 118, 122, 125, 126, 128, 130, 131, 132, 134, 135, 136, 137, 139, 140, 141, 142, 148, 149, 151, 153, 154, 155, 156, 160, 161, 164, 165, 166, 167, 171, 179, 184, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 198, 199, 200, 201, 204, 206, 209, 210, 213, 214, 217, 218, 219, 220, 221, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238, 239, 240, 243], "your_app": 25, "your_app_": 134, "your_app_categori": 134, "your_app_mag": 134, "yourapp": [25, 134, 186, 190, 240], "yourappid": [134, 193], "yourappnam": [107, 190], "yourappnamespac": 134, "yourarch": 82, "yourpass": 82, "yourself": [8, 20, 29, 38, 43, 89, 185, 188, 190, 233], "yourselv": 190, "youtub": [184, 243], "yyyi": [50, 52], "yyyymmddhhmmss": 40, "z": [69, 231, 234, 238], "z87agy2o": 96, "zend_extens": 98, "zero": 122, "zip": [15, 43, 61, 63, 232, 242], "ziprespons": 232, "zone": 76}, "titles": ["Bootstrapping", "occ commands", "Extending the DAV server", "Dependency management", "App development", "App metadata", "Navigation and pre-app configuration", "Introduction", "Translation", "Tutorial", "Code signing", "App publishing and maintenance", "Maintainers", "Monetizing your app", "The Nextcloud app store rules", "Release Automation", "Release process", "OCP\\Accounts\\UserUpdatedEvent", "Background jobs (Cron)", "Caching", "Controllers", "Containers / Dependency Injection", "Events", "CSS", "Front-end", "JavaScript", "Templates", "Theming support", "Basic concepts", "Logging", "Middlewares", "Public share template", "Request lifecycle", "Routing", "Settings", "AppData", "Configuration", "Database access", "Nextcloud filesystem API", "Storage and database", "Migrations", "Testing", "Translations", "Client Integration", "Login Flow", "OCS API", "OCS APIs overview", "Assistant OCS API", "OCS FullTextSearch Collection API", "OCS OpenAPI tutorial", "OCS Out-of-office API", "OCS Recommendations API", "OCS Share API", "OCS Sharee API", "OCS Status API", "OCS TaskProcessing API", "OCS Text-To-Image API", "OCS TextProcessing API", "OCS Translation API", "OCS user preferences API", "Remote wipe", "Basic File & Folder Operations", "File bulk upload", "Chunked file upload", "Comments", "WebDAV", "Search", "Trashbin", "Versions", "Activity API", "Examples", "Android", "Library installation", "Files", "General", "Clients and Client APIs", "Components", "Foundations", "Design", "Introduction", "Layout", "Writing guide", "Building the Client", "Desktop Clients", "AI & Machine Learning", "API reference", "APIs & Integration", "Integrating the assistant", "Users & Authentication", "Classloader", "AppConfig", "Config & Preferences", "Lexicon", "UserConfig", "Context Chat", "Continuous Integration", "Dashboard", "Deadlocks", "Debugging", "Declarative settings", "Development Tools", "Direct editing", "Search & Discovery", "Email", "Files Metadata", "Nextcloud Flow", "Calendar integration", "Integration of custom calendar providers", "Contacts Menu", "Groupware integration", "Mail Provider Interface", "Groupware & Workflows", "HTTP Client", "Digging deeper", "Server Internals", "JavaScript APIs", "Machine Translation", "Notifications", "NPM", "OpenID Connect (Oidc)", "Open Metrics exporter", "Out-of-office periods", "Performance considerations", "Phone number util", "Profile", "Profiler", "Projects", "PSR", "Public Pages", "Reference providers", "Repair steps", "REST APIs", "Search", "Security", "Settings", "Setup checks", "Snowflake IDs", "Speech-To-Text", "User Status", "Talk Integration", "Task Processing", "Text-To-Image", "Text Processing", "Working with time", "Two-factor providers", "User migration", "User management", "Web Host Metadata", "WebDAV collection preload events", "Setting up dev environment", "Introduction", "ExApp development", "Adapting ExApps to HaRP", "ExApp lifecycle", "ExApp overview", "Development overview", "Corporate Proxy - Permanent Settings for PHP CLI", "Docker Container Registry", "Docker Socket Proxy", "GPU support", "Scaling", "Troubleshooting", "Frequently Asked Questions", "ExApp development", "Authentication", "Deployment", "App Installation Flow", "Translations", "AppConfig", "Events Listener", "ExApp", "File Actions Menu", "AppAPI Nextcloud APIs", "Logging", "Notifications", "OCC Command", "Other OCS APIs", "Preferences", "Routes", "Declarative Settings", "Talk bots", "Top Menu Entry", "Miscellaneous OCS APIs", "Technical details", "CSS and HTML coding standards", "Coding style & general guidelines", "JavaScript and Typescript", "PHP coding standards", "Development process", "Development environment", "Glossary", "Getting started", "How to test \u2026", "Main content", "CSS", "HTML elements", "Icons", "HTML/CSS guidelines", "Content list", "Introduction", "Popover menu", "Nextcloud developer documentation", "Code reviews on GitHub", "Bugtracker", "Nextcloud bug triaging", "Code of conduct", "Compatibility with the app ecosystem", "Help and communication", "Prologue", "Security guidelines", "Critical changes", "Deprecations", "Release notes", "New in this release", "Previous release notes", "Upgrade to Nextcloud 14", "Upgrade to Nextcloud 15", "Upgrade to Nextcloud 16", "Upgrade to Nextcloud 17", "Upgrade to Nextcloud 18", "Upgrade to Nextcloud 19", "Upgrade to Nextcloud 20", "Upgrade to Nextcloud 21", "Upgrade to Nextcloud 22", "Upgrade to Nextcloud 23", "Upgrade to Nextcloud 24", "Upgrade to Nextcloud 25", "Upgrade to Nextcloud 26", "Upgrade to Nextcloud 27", "Upgrade to Nextcloud 28", "Upgrade to Nextcloud 29", "Upgrade to Nextcloud 30", "Upgrade to Nextcloud 31", "Upgrade to Nextcloud 32", "Upgrade to Nextcloud 33", "Upgrade to Nextcloud 34", "Nextcloud filesystem API", "Nextcloud architecture", "Back-end code", "Front-end code", "External API", "Server development", "Static analysis", "Unit-Testing"], "titleterms": {"": [54, 89], "0": [127, 151, 222, 227, 228, 231], "1": [40, 42, 110, 151, 156, 225, 234], "11": [127, 221], "14": 215, "15": 216, "16": 217, "17": 218, "18": 219, "19": 220, "2": [40, 42, 110, 156, 227], "20": [0, 127, 221], "21": 222, "22": 223, "23": 224, "24": 225, "25": 226, "26": 227, "27": 228, "28": 229, "29": 230, "3": [40, 42, 110, 127, 151, 221, 229], "30": 231, "31": 232, "32": 233, "33": 234, "34": 235, "4": [127, 151, 227, 232], "401": 223, "5": [151, 234], "6": 151, "7": 227, "8": [190, 222, 225, 227, 229, 231, 232, 234], "A": 61, "Be": 14, "In": [19, 149], "NOT": 49, "No": 186, "Not": 10, "The": [0, 14, 15, 16, 35, 94, 96, 101, 107, 125, 190], "To": [56, 137, 141], "With": 61, "abort": 63, "about": [52, 61, 189], "abstractcacheev": [17, 22], "acceler": 151, "accept": 52, "access": [21, 37, 38, 106, 107, 108, 121], "account": [17, 22, 48], "acl": 107, "acquir": 112, "action": [15, 43, 76, 81, 108, 124, 171], "activ": 69, "activat": 144, "actual": 60, "ad": [6, 21, 38, 40, 42, 186, 213, 215, 227, 228, 229, 230, 231, 232, 233, 234], "adapt": 152, "add": [10, 49, 72, 181, 186], "addcontentsecuritypolicyev": [17, 22], "addfeaturepolicyev": [17, 22], "addhead": 49, "addit": 140, "addmissingcolumnsev": [17, 22], "addmissingindicesev": [17, 22], "addmissingprimarykeyev": [17, 22], "address": 82, "addressbookcreatedev": 22, "addressbookdeletedev": 22, "addressbookshareupdatedev": 22, "addressbookupdatedev": 22, "admin": [29, 99, 144], "advanc": [132, 140], "advantag": 21, "advic": 186, "affect": [10, 21, 206], "after": 16, "against": 135, "agent": 234, "ai": 84, "aio": 158, "ajax": [20, 190], "alias": 232, "align": [200, 235], "all": [49, 52, 54, 107, 243], "also": 101, "altern": 98, "alwai": 186, "an": [0, 7, 20, 44, 52, 101, 107, 128, 130, 140, 144, 152], "analysi": [95, 242], "android": [42, 71], "annot": [30, 227], "anyloginfailedev": [17, 22], "anymor": 10, "anywher": 21, "api": [38, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 69, 75, 85, 86, 90, 93, 96, 101, 104, 107, 115, 116, 128, 129, 131, 137, 140, 141, 142, 149, 172, 176, 182, 190, 196, 210, 213, 215, 216, 217, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 240], "app": [0, 4, 5, 6, 7, 10, 11, 13, 14, 16, 17, 22, 25, 36, 43, 44, 48, 56, 89, 92, 98, 115, 121, 125, 129, 132, 161, 166, 168, 189, 190, 199, 206, 221, 222, 234], "appapi": [149, 153, 158, 164, 172], "appapiauth": 164, "appconfig": [90, 168], "appdata": [35, 236], "appdisableev": [17, 22], "appenableev": [17, 22], "appframework": [17, 22, 90], "appinfo": 190, "applic": [0, 165, 190, 235], "appstor": 151, "appupdateev": [17, 22], "ar": 233, "architectur": [7, 237], "area": [76, 231], "argument": [1, 165], "around": 186, "arrai": [29, 186, 187], "arrow": 186, "art": 131, "ask": 162, "assembl": 63, "assembli": 21, "assist": [47, 77, 87], "associ": 107, "attach": 103, "attribut": [37, 52, 132, 190, 227], "audit": [17, 22, 29], "auth": [115, 144, 209], "authent": [17, 20, 22, 46, 88, 128, 153, 157, 164, 240], "auto": [21, 46], "autocomplet": [17, 22], "autocompleteev": [17, 22], "autocompletefilterev": [17, 22], "autoload": [89, 127], "autom": 15, "automat": [21, 188], "avail": [22, 29, 56, 57, 58, 196, 223, 227], "avatar": 76, "avoid": [97, 186], "axio": 115, "babel": 220, "back": [167, 210, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238], "backend": [20, 42, 154], "background": [18, 77, 104, 194], "backport": [8, 188], "backup": 54, "backward": 240, "bar": 195, "base": [20, 99, 104, 233], "basic": [20, 21, 28, 29, 61, 99, 103, 107, 198, 199, 200, 240], "been": 122, "befor": 16, "beforedirectfiledownloadev": [17, 22], "beforefilescannedev": [17, 22], "beforefilesystemsetupev": [17, 22], "beforefolderscannedev": [17, 22], "beforegettemplatesev": [17, 22], "beforegroupchangedev": [17, 22], "beforegroupcreatedev": [17, 22], "beforegroupdeletedev": [17, 22], "beforelogintemplaterenderedev": [17, 22], "beforemessageloggedev": [17, 22], "beforemessages": [17, 22], "beforenodecopiedev": [17, 22], "beforenodecreatedev": [17, 22], "beforenodedeletedev": [17, 22], "beforenodereadev": [17, 22], "beforenoderenamedev": [17, 22], "beforenodetouchedev": [17, 22], "beforenodewrittenev": [17, 22], "beforepasswordupdatedev": [17, 22], "beforepreferencedeletedev": [17, 22], "beforepreferencesetev": [17, 22], "beforepreviewfetchedev": [17, 22], "beforesabrepubliclyloadedev": [17, 22], "beforesharecreatedev": [17, 22], "beforesharedeletedev": [17, 22], "beforetemplaterenderedev": [17, 22], "beforeuseraddedev": [17, 22], "beforeusercreatedev": [17, 22], "beforeuserdeletedev": [17, 22], "beforeuseridunassignedev": [17, 22], "beforeuserloggedinev": [17, 22], "beforeuserloggedinwithcookieev": [17, 22], "beforeuserloggedoutev": [17, 22], "beforeuserremovedev": [17, 22], "beforezipcreatedev": [17, 22], "behavior": [90, 215, 218, 219, 228, 230], "benefit": 14, "best": [49, 148], "between": 186, "bodi": [66, 186, 221], "boolean": 223, "boot": 0, "bootstrap": [0, 221, 243], "border": [77, 231], "bot": 180, "brace": 186, "branch": [8, 16, 188], "break": 234, "brows": 87, "browser": 243, "brute": 20, "bu": 115, "bubbl": 76, "bucketcreatedev": [17, 22], "bug": [43, 204], "bugfix": 188, "bugtrack": 203, "build": [82, 118, 190, 239], "builder": 213, "built": 148, "bulk": 62, "bullet": 199, "button": [76, 81, 195, 199], "bypass": 209, "c": [42, 95], "cach": [17, 19, 22, 122, 125, 236], "cachedcalendarobjectcreatedev": 22, "cachedcalendarobjectdeletedev": 22, "cachedcalendarobjectupdatedev": 22, "cacheentryinsertedev": [17, 22], "cacheentryremovedev": [17, 22], "cacheentryupdatedev": [17, 22], "cacheinsertev": [17, 22], "cacheupdateev": [17, 22], "caldav": 107, "calendar": [17, 22, 106, 107], "calendarcreatedev": 22, "calendardeletedev": 22, "calendarobjectcreatedev": [17, 22], "calendarobjectdeletedev": [17, 22], "calendarobjectmovedev": [17, 22], "calendarobjectmovedtotrashev": [17, 22], "calendarobjectrestoredev": [17, 22], "calendarobjectupdatedev": [17, 22], "calendarpublishedev": 22, "calendarshareupdatedev": 22, "calendarunpublishedev": 22, "calendarupdatedev": 22, "call": [46, 101, 128], "callback": 22, "camelcas": 186, "capabl": [43, 46, 49, 69, 231], "card": 76, "cardcreatedev": 22, "carddeletedev": 22, "cardupdatedev": 22, "carefulli": 49, "case": 186, "cast": 20, "catchabl": 85, "caus": 156, "certain": 49, "chang": [15, 16, 40, 115, 206, 210, 213, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 239, 240], "changelog": 5, "chat": 94, "cheat": 61, "check": [56, 69, 107, 135, 139, 189, 204], "checkbox": [76, 99, 195], "checker": 222, "chip": 76, "choos": 90, "christophwurst": 226, "chunk": 63, "class": [0, 1, 21, 22, 40, 99, 101, 107, 110, 186, 190, 194, 227, 228], "classload": 89, "clear": [50, 54], "cli": 156, "clickabl": 231, "clickjack": 209, "client": [42, 43, 71, 75, 82, 83, 96, 101, 112, 129, 228], "clock": 127, "cloud": 52, "cluster": [122, 192], "code": [1, 10, 15, 69, 70, 123, 184, 185, 186, 187, 188, 189, 202, 205, 209, 222, 236, 238, 239], "collabor": [17, 22], "collabora": 192, "collaps": 199, "collect": [48, 148], "color": [76, 77, 194, 196, 233], "column": [37, 223], "comma": 186, "command": [1, 33, 40, 42, 104, 175, 190, 223], "comment": [17, 22, 64, 81, 129, 187], "commentsentityev": [17, 22], "commentsev": [17, 22], "commit": 239, "common": 121, "commun": 207, "comparison": [131, 186], "compat": [115, 206, 238, 240], "compil": [82, 223], "complet": [20, 46, 60, 204], "compon": [69, 76, 105, 129, 186, 239], "compos": [3, 190], "concept": [28, 48, 90, 92, 93, 104, 128, 132, 190], "conclus": 149, "concurr": 20, "condit": [142, 186], "conduct": 205, "config": [8, 17, 22, 90, 91, 92, 93, 168, 177, 186], "configur": [6, 8, 18, 36, 105, 215], "confirm": 115, "conflict": 3, "connect": [20, 119], "consid": 49, "consider": [2, 20, 122, 152, 188, 204], "consist": [49, 186], "consol": [17, 22, 33, 40, 42], "consoleev": [17, 22], "constant": 90, "construct": 40, "consum": [85, 90, 93, 104, 110, 116, 137, 140, 141, 142], "contact": [17, 22, 108, 156], "contactinteractedwithev": [17, 22], "contain": [21, 30, 127, 157, 223], "content": [20, 67, 76, 94, 107, 186, 193, 198, 201], "contentitem": 94, "contentproviderregisterev": 94, "context": [29, 42, 94, 116, 137, 142], "continu": 95, "contribut": [125, 188], "control": [20, 21, 32, 49, 51, 129, 186, 187, 188, 190], "convent": [36, 184], "convers": 139, "convert": [44, 123], "cooki": [20, 153], "copi": 61, "cor": [131, 209], "core": [21, 25, 222, 224, 229], "corpor": 156, "correct": 42, "counter": [76, 199], "countri": 123, "creat": [1, 7, 20, 52, 61, 69, 70, 101, 106, 107, 110, 130, 139, 146, 161], "createj": 42, "creator": 101, "credenti": [44, 70], "critic": 210, "criticalactionperformedev": [17, 22], "cron": 18, "cross": [82, 209], "csp": [17, 22, 231], "csrf": [25, 190], "css": [23, 26, 27, 184, 194, 197, 219, 232], "curl": [46, 61], "current": 107, "custom": [20, 29, 37, 54, 107, 129, 139], "daemon": [149, 159], "daemonconfig": 165, "dangl": 186, "dashboard": 96, "data": [20, 29, 48, 49, 50, 94, 107, 121, 122, 129, 168, 170, 173, 177, 180, 182, 209, 240], "databas": [37, 39, 122, 125, 136, 189, 190, 210, 211, 222, 223], "date": [129, 189], "datetim": 76, "dav": [2, 22, 66], "db": [17, 22], "dbal": [222, 224, 229], "deactivat": 144, "deadlock": 97, "deal": 21, "debug": [98, 189, 243], "debugg": 98, "declar": [43, 99, 129, 132, 179], "declarativesettingsgetvalueev": [17, 22], "declarativesettingsregisterformev": [17, 22], "declarativesettingssetvalueev": [17, 22], "declin": 52, "decod": 136, "deeper": 113, "default": [20, 33, 129, 140, 234], "defin": [54, 135], "definit": [49, 186], "delet": [44, 52, 56, 59, 61, 67, 70, 104, 112, 139, 168, 177], "depend": [3, 21, 30, 72, 82, 190, 227, 229], "deploi": [149, 159, 165], "deploy": [82, 161, 165], "deprec": [211, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 230, 231, 232, 233, 234, 235], "descript": 49, "design": [49, 78, 196], "desktop": [42, 83], "detail": [10, 92, 115, 164, 183, 200], "detect": 116, "determin": 204, "dev": [118, 149], "develop": [3, 4, 43, 71, 82, 100, 115, 151, 155, 163, 165, 188, 189, 190, 201, 206, 229, 241], "devic": 60, "di": 190, "dialog": 115, "did": 10, "diff": 186, "differ": 131, "dig": 113, "direct": [38, 46, 101], "directedit": [17, 22], "directori": [98, 209], "disabl": [20, 50, 125, 226], "discoveri": 102, "dispatch": [22, 85, 229], "displai": [87, 129], "distribut": [16, 19], "do": [10, 42, 49, 194, 204], "docker": [149, 157, 158, 166, 167], "dockerfil": 151, "doctrin": [222, 224, 229], "document": [8, 47, 48, 49, 101, 201, 206, 238, 243], "doe": 21, "domain": 133, "don": [42, 194], "donat": 13, "down": 10, "download": [20, 46, 52, 61, 70], "drag": 199, "drop": 199, "dropdown": 76, "dsp": 158, "duplic": 204, "e": 82, "ecosystem": 206, "edit": [7, 101, 156, 199], "editor": 101, "element": [69, 77, 194, 195], "email": [44, 52, 103, 192], "emit": 148, "emitt": 22, "emoji": 76, "empti": [49, 67, 76, 161], "enabl": [7, 21, 125, 153, 159, 166, 170, 189], "encount": 190, "end": [24, 167, 210, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 238, 239], "endpoint": [43, 49, 64, 69], "enterpris": 13, "entiti": [37, 105, 190, 225], "entri": [6, 92, 107, 179, 181, 199], "enum": 140, "environ": [20, 149, 151, 156, 165, 189], "error": [10, 20, 49, 74, 98, 112], "escal": 209, "eslint": 186, "event": [2, 6, 17, 22, 29, 69, 73, 94, 99, 104, 106, 107, 115, 121, 125, 137, 140, 141, 142, 148, 169, 211, 223, 229, 230, 233, 234], "eventdispatch": [17, 22], "exampl": [3, 43, 64, 66, 69, 70, 73, 129, 147, 148, 152, 165, 171, 175, 178, 202], "exapp": [42, 151, 152, 153, 154, 159, 161, 163, 165, 170, 171, 180, 190], "except": [29, 49, 240], "exceptionalimplement": 85, "exchang": 119, "exclud": 8, "execut": [40, 209], "exist": [7, 107, 139], "expens": [130, 213], "explicit": [49, 186], "export": 120, "expos": [43, 49], "exposur": 209, "extend": [2, 25, 129], "extens": 242, "extern": [99, 107, 132, 189, 190, 192, 240], "extract": 33, "factor": 144, "factori": 223, "fail": 161, "faq": 10, "fast": 142, "favorit": 61, "featurepolici": [17, 22], "feder": [17, 22, 52], "federatedfileshar": 22, "federatedshareaddedev": 22, "fetch": [50, 51, 54, 56, 57, 107, 132], "field": [69, 76, 99], "file": [3, 8, 17, 20, 22, 25, 29, 35, 38, 52, 54, 61, 62, 63, 68, 70, 73, 76, 87, 101, 104, 115, 156, 171, 209, 231, 232, 234], "filecacheupd": [17, 22], "filecreatedfromtemplateev": [17, 22], "filenam": 186, "files_shar": 22, "files_trashbin": 22, "filescannedev": [17, 22], "filesmetadata": [17, 22], "filesystem": [22, 35, 38, 186, 236], "filesystemtorndownev": [17, 22], "filter": [46, 69], "final": 204, "find": 204, "first": [43, 48], "flag": 90, "flow": [44, 105, 164, 166, 171], "folder": [35, 52, 61, 70], "folderscannedev": [17, 22], "follow": 16, "font": [77, 231], "forc": [20, 46], "forgeri": 209, "form": 134, "format": [123, 223], "formatt": 76, "forum": 207, "foundat": 77, "frequent": 162, "from": [3, 20, 21, 33, 38, 48, 52, 67, 87, 121, 128, 151, 161, 218, 221, 227], "front": [24, 32, 167, 210, 215, 216, 217, 218, 219, 220, 221, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 239], "frontend": [154, 190], "fulltextsearch": 48, "function": [186, 187], "further": [69, 243], "gather": 189, "gender": 81, "gener": [25, 40, 49, 74, 81, 82, 119, 125, 129, 136, 141, 147, 185, 186, 190, 194, 204, 215, 223, 225, 226, 227, 228, 229, 230, 231, 233], "generatesecurepasswordev": [17, 22], "genericev": [17, 22], "get": [10, 20, 38, 48, 52, 57, 58, 61, 70, 92, 99, 107, 112, 119, 122, 123, 125, 129, 168, 170, 177, 182, 189, 191, 209, 243], "getlinkwithpick": 129, "getquotaev": [17, 22], "gettaskprocessingprovidersev": [17, 22], "git": [16, 72], "github": [15, 82, 202], "given": [46, 70], "global": [30, 115, 218, 219, 220, 221, 223, 230], "glossari": [150, 190], "gpu": [159, 160], "gradl": 72, "group": [17, 22, 49, 76, 107], "groupbackendregist": 22, "groupchangedev": [17, 22], "groupcreatedev": [17, 22], "groupdeletedev": [17, 22], "groupmanag": 22, "groupwar": [109, 111, 227], "guest": 232, "guid": 81, "guidelin": [14, 42, 185, 194, 197, 209], "guzzl": 222, "guzzlehttp": 222, "ha": 122, "handl": [2, 20, 49, 82, 99, 107, 112, 132], "handler": [147, 222], "hardwar": 151, "harp": 152, "head": 112, "header": [20, 49, 61, 69, 131, 164, 185], "healthcheck": 153, "heartbeat": [153, 166], "heavi": 18, "height": 231, "hell": [3, 229], "help": [122, 207, 209], "helper": [49, 104], "high": 236, "highlight": 199, "hint": 42, "histor": 131, "hook": [22, 43], "host": [133, 147], "how": [10, 14, 21, 49, 157, 159, 161, 190, 192, 202, 204], "html": [20, 42, 98, 184, 195, 197], "http": [17, 22, 69, 101, 112, 135, 223], "hybrid": 16, "i": [10, 82, 119, 140, 148, 161, 200, 204], "iacl": 107, "iapiwidget": 96, "iapiwidgetv2": 96, "ibuttonwidget": 96, "icalendarobjectcontain": 107, "icollect": 107, "icon": [27, 77, 144, 196, 233], "iconditionalwidget": 96, "icontentmanag": 94, "icontentprovid": 94, "id": [46, 56, 57, 132, 136, 190, 234], "identifi": 98, "ie11": 223, "ifil": 107, "ignor": [49, 97], "iiconwidget": 96, "imag": [26, 56, 129, 141, 166], "imip": 107, "implement": [38, 69, 85, 94, 101, 116, 120, 128, 137, 140, 141, 142, 144, 158], "improv": 42, "includ": 26, "inclus": 209, "indent": 186, "index": [48, 93], "indic": 40, "individu": [107, 132], "info": [18, 95, 108, 165, 190, 210, 225, 226, 227, 228, 229, 230], "inform": [52, 107, 130, 146, 189, 193, 198, 199], "ini": 156, "init": [70, 153, 166, 170], "initi": [6, 25, 48, 115, 181], "inject": [21, 30, 190, 209, 220, 227], "inlin": 103, "inod": 107, "input": [76, 87, 99, 123, 140], "insensit": 18, "instal": [48, 72, 82, 107, 149, 165, 166, 167, 243], "instruct": 82, "integr": [43, 86, 87, 95, 101, 106, 107, 109, 139, 152, 221], "interact": [1, 129], "interfac": [21, 94, 96, 101, 107, 110, 126, 127, 185, 186, 190], "intern": [99, 114, 115, 140, 215], "interpol": 29, "introduct": [7, 20, 21, 62, 63, 79, 150, 198, 199, 202, 240], "invalid": 223, "invalidatemountcacheev": [17, 22], "io": 42, "ioptionwidget": 96, "iproperti": 107, "ireloadablewidget": 96, "issu": [43, 129, 161, 204], "item": [70, 76, 198], "j": [223, 239, 243], "javascript": [25, 26, 27, 42, 61, 98, 115, 186, 209, 217, 243], "job": 18, "join": 204, "jqueri": [218, 220, 221], "json": [20, 49, 190], "just": [61, 122], "keep": 189, "kei": [90, 93, 152, 164], "keyboard": [25, 226], "known": [52, 222], "l10n": [42, 115, 154], "l10nignor": 8, "label": [81, 185], "languag": [42, 46, 58, 116, 190], "last": [107, 129, 222], "later": 0, "layer": 236, "layout": [80, 198, 199, 200, 232], "lazi": [90, 93], "lazili": 20, "ldap": [125, 223], "learn": 84, "left": 235, "legaci": 107, "legal": 14, "level": [29, 186, 236], "lexicon": 92, "librari": [70, 71, 72, 210, 217, 220, 222, 224, 229, 235], "licens": 185, "lifecycl": [21, 32, 153], "limit": [20, 133, 159], "line": [186, 190, 231], "link": [48, 70, 129], "lint": [95, 118], "list": [33, 46, 48, 52, 54, 56, 61, 67, 68, 76, 101, 129, 161, 170, 182, 196, 198], "listen": [22, 29, 85, 99, 121, 137, 140, 141, 142, 169], "liter": 186, "live": 104, "llm": 140, "load": [18, 25, 90, 93, 227], "loadadditionalentriesev": [17, 22], "loadadditionalscriptsev": [17, 22], "loader": 228, "loadsettingsscriptsev": [17, 22], "loadview": 22, "local": [19, 52], "lock": [10, 97], "log": [16, 17, 22, 29, 151, 173, 222, 223], "logger": [115, 127], "logic": [221, 232], "login": [44, 119], "loginfailedev": [17, 22], "long": [69, 122, 186], "loosen": 20, "lose": 14, "machin": [84, 116], "maco": 82, "mail": [17, 22, 110], "main": 193, "maintain": [12, 207], "mainten": [11, 74], "major": 16, "make": [61, 66, 144, 170], "makefil": [15, 154], "manag": [3, 16, 37, 90, 93, 107, 146, 161, 235], "managerev": [17, 22], "mandatori": 10, "manipul": 54, "manual": [8, 18, 165, 167, 188], "map": [29, 37, 236], "mapper": [37, 190], "mapperev": [17, 22], "mariadb": 98, "markup": 42, "match": [33, 129], "materi": 196, "measur": 122, "memori": 19, "menu": [25, 76, 108, 171, 179, 181, 199, 200], "merg": 69, "messag": [29, 54, 101, 173], "metadata": [5, 40, 46, 48, 104, 147, 154], "metadatabackgroundev": [17, 22], "metadataliveev": [17, 22], "metadatanamedev": [17, 22], "method": [29, 49, 61, 131, 143, 153, 156, 186, 240], "metric": 120, "microsoft": 82, "middlewar": 30, "migrat": [40, 145, 190, 213, 222, 223, 227], "minor": 16, "miscellan": [20, 90, 93, 182], "mitig": 97, "modal": [76, 87], "mode": [74, 98, 189], "modif": [63, 107], "modifi": [20, 50, 131, 146], "moment": 115, "monet": 13, "more": [37, 140, 142], "mount": [38, 236], "move": [14, 61, 70, 227], "movetotrashev": 22, "multi": [99, 186], "multilingu": 140, "multipl": [59, 186], "name": [1, 22, 36, 44, 81, 107, 184, 186, 188, 220], "namespac": [61, 190, 218, 221, 235], "nativ": [101, 227], "navig": [6, 17, 22, 76, 199, 235], "nc": 182, "ncreferencepickermod": 129, "ncreferencewidget": 129, "ncrichcontentedit": 129, "ncrichtext": 129, "need": [152, 186], "network": [115, 161], "new": [25, 52, 107, 120, 186, 199, 211, 213, 219, 220], "nextcloud": [0, 10, 14, 38, 71, 89, 105, 107, 115, 119, 121, 153, 158, 170, 172, 190, 201, 204, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 243], "nightli": 16, "nocsrfrequir": 190, "node": [17, 22, 38, 169, 223, 236, 239, 243], "nodeaddedtocach": [17, 22], "nodeaddedtofavorit": [17, 22], "nodecopiedev": [17, 22], "nodecreatedev": [17, 22], "nodedeletedev": [17, 22], "noderemovedfromcach": [17, 22], "noderemovedfromfavorit": [17, 22], "noderenamedev": [17, 22], "nodetouchedev": [17, 22], "nodewrittenev": [17, 22], "non": [49, 152], "nonc": 231, "note": [61, 76, 101, 212, 214], "notif": [46, 117, 174], "now": 233, "npm": [115, 118, 190, 239], "number": [123, 159], "o": 140, "object": [69, 101, 106, 107, 146, 186, 187, 192], "objectstor": [17, 22], "objectstorag": 236, "obtain": [25, 44, 60, 72, 107], "oc": [20, 33, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 115, 131, 173, 174, 176, 180, 182, 190, 215], "oca": [22, 115], "occ": [1, 92, 104, 175, 190], "ocm": [17, 22], "ocp": [17, 22, 115, 121], "off": 16, "offic": [50, 121], "oidc": 119, "older": 211, "one": 107, "onelogin": 192, "ongo": 50, "onli": [107, 186], "onlyoffic": 192, "open": [10, 44, 87, 101, 120], "openapi": 49, "openassistantform": 87, "openid": 119, "oper": [61, 105, 186, 187], "optim": 228, "option": [1, 21, 58, 69, 87, 112, 118, 131, 132, 144, 165, 171, 181], "organ": 14, "other": [42, 158, 176, 206, 210], "out": [50, 121, 189], "outgo": 234, "outlin": 233, "outofofficechangedev": [17, 22], "outofofficeclearedev": [17, 22], "outofofficeendedev": [17, 22], "outofofficescheduledev": [17, 22], "outofofficestartedev": [17, 22], "output": [130, 140, 240], "overview": [16, 22, 46, 48, 90, 92, 93, 101, 104, 132, 148, 150, 154, 155, 165, 236], "own": 54, "owner": 107, "ownership": 107, "packag": [3, 115, 151, 190, 234], "page": [20, 87, 101, 128, 171], "pagin": 132, "parallel": 18, "param": [169, 171, 174, 175, 179, 181], "paramet": [20, 21, 49, 69, 90, 186, 227], "parenthesi": 186, "pars": [30, 69], "part": 25, "pascalcas": 186, "password": [44, 115, 223], "passwordupdatedev": [17, 22], "patch": 16, "path": [115, 243], "pattern": 21, "payload": [169, 171, 174], "pend": 52, "per": 159, "perform": [2, 20, 122], "period": 121, "perman": 156, "permiss": [8, 52], "persist": 154, "person": [99, 144, 227], "phone": 123, "php": [25, 41, 42, 85, 95, 98, 122, 156, 187, 190, 210, 222, 225, 227, 229, 231, 232, 234, 236, 242, 243], "phpdoc": 227, "phpunit": 243, "picker": [76, 129], "pin": 199, "place": 149, "placehold": [42, 81], "plan": 227, "platform": 190, "plugin": [2, 107, 148, 218, 221], "plural": 42, "polici": 20, "polyfil": 220, "popov": 200, "popovermenu": 198, "popul": 87, "posit": 232, "possibl": 49, "post": [40, 112, 213], "postloginev": [17, 22], "practic": [49, 148], "pre": [6, 16], "precondit": 202, "predefin": [21, 54], "prefer": [49, 59, 91, 177, 186], "preload": 148, "prepar": 16, "prerequisit": [49, 239], "preset": 92, "preview": [17, 22, 40, 129, 210], "previou": 214, "primari": [77, 192, 194], "primit": 21, "privaci": 132, "privat": 157, "privileg": [107, 209], "procedur": 206, "process": [0, 8, 15, 16, 140, 142, 188, 211, 213], "profil": [17, 22, 124, 125, 234], "program": 190, "programmat": 138, "progress": [170, 195], "project": [72, 126, 243], "prologu": 208, "prompt": 140, "pronoun": 81, "properti": [61, 66, 107, 186, 229], "propfind": 104, "proppatch": 104, "protect": 20, "provid": [25, 37, 42, 69, 94, 96, 106, 107, 110, 116, 119, 126, 129, 132, 137, 140, 141, 142, 144], "proxi": [149, 156, 158], "psr": [127, 221, 222, 223, 227, 228], "public": [20, 22, 31, 61, 85, 115, 128, 218, 221, 232], "publish": [11, 69, 151], "pull": [129, 166], "put": 112, "python": 42, "qt": 42, "queri": [37, 98, 104, 107, 125, 138, 213], "question": [162, 202], "quick": 61, "quot": 186, "radii": 77, "radio": [76, 99, 195], "radiu": 231, "rate": [14, 20, 133], "re": 48, "read": [20, 38, 69, 70, 90, 104, 107, 122, 243], "readabl": 186, "recommend": [21, 51, 53], "redesign": 235, "redi": 192, "redirect": [20, 171, 209], "reduc": 186, "refer": [17, 22, 85, 97, 129], "region": 123, "regist": [1, 2, 18, 33, 69, 92, 96, 99, 101, 107, 110, 120, 124, 126, 129, 130, 134, 135, 144, 145, 169, 171, 175, 178, 179, 180, 181, 240], "registerchecksev": [17, 22], "registerdirecteditorev": [17, 22], "registerentitiesev": [17, 22], "registeroperationsev": [17, 22], "registertemplatecreatorev": [17, 22], "registr": [30, 99, 116, 132, 137, 140, 141, 142, 147, 165], "registri": 157, "registryev": [17, 22], "regular": 186, "relat": [47, 131], "releas": [15, 16, 212, 213, 214], "relev": 204, "remot": [60, 133, 149, 210], "remov": [3, 107, 181, 210, 215, 216, 217, 218, 220, 221, 223, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "render": [20, 96, 129], "renderreferenceev": [17, 22], "repair": [130, 213], "replac": [40, 89, 222, 226], "repo": 14, "report": 204, "repositori": 8, "reproduc": 204, "request": [20, 21, 32, 46, 52, 61, 66, 112, 125, 129, 132, 135, 168, 170, 171, 173, 174, 177, 180, 190, 209, 234], "requir": [14, 49, 69, 82, 206, 210, 242], "reset": 48, "resolv": 129, "resourc": [17, 22, 33, 70, 106, 126], "resourcetyperegisterev": [17, 22], "respect": 14, "respond": 20, "respons": [20, 43, 49, 61, 69, 125, 168, 170, 173, 177, 182], "rest": [69, 131], "restor": [54, 67, 68], "restrict": [20, 107], "result": [46, 56, 87, 132, 171], "retri": 97, "retriev": [48, 51, 54, 90, 93, 104], "return": [1, 107, 240], "review": 202, "revis": 235, "rfc4918": 61, "rich": 69, "room": 106, "root": [22, 35, 152], "rout": [20, 33, 154, 178, 190], "router": [33, 73, 115], "rtl": 194, "rule": [14, 81, 107, 186, 193, 198, 199, 232], "run": [87, 118, 135, 152, 243], "s3": 192, "sabr": [107, 222], "sabrepluginaddev": 22, "sabrepluginauthinitev": 22, "sabrepluginev": [17, 22], "same": [49, 186], "saml": 192, "sanit": 82, "scalabl": 122, "scale": 160, "scanner": 22, "schedul": [18, 56, 57, 142], "schema": [40, 99, 165], "scheme": [22, 153, 165], "scope": [49, 66], "script": [181, 209, 239], "scss": [223, 226], "search": [46, 53, 66, 102, 104, 129, 132, 221], "secondari": 233, "section": [99, 134, 227], "secur": [14, 17, 20, 22, 133, 209], "see": 101, "select": [8, 99], "semicolon": 186, "send": [25, 52, 173, 174, 192], "sensit": [90, 93, 99, 209], "server": [2, 43, 89, 114, 135, 189, 241, 243], "servic": [21, 94, 110, 220], "session": [20, 22, 146, 164], "set": [17, 20, 22, 34, 48, 49, 51, 54, 59, 61, 63, 69, 70, 76, 82, 99, 107, 134, 144, 149, 151, 156, 168, 170, 177, 179, 181, 189, 199, 227, 235], "sethead": 49, "setup": [8, 135, 189, 192], "shape": 140, "share": [17, 22, 31, 49, 52, 53, 54, 61, 70, 115, 128, 232, 235], "shareacceptedev": [17, 22], "sharecreatedev": [17, 22], "sharedeletedev": [17, 22], "sharedeletedfromselfev": [17, 22], "sheet": 61, "shell": 209, "ship": [16, 189, 217], "short": 69, "shortcut": [25, 226], "shorthand": 186, "should": [21, 90, 233], "show": 20, "side": 153, "sidebar": [76, 234, 235], "sign": [10, 15], "signal": 60, "simpl": [35, 132, 144], "simplef": 236, "singl": 186, "site": 209, "situat": 97, "size": [77, 107, 231], "slug": [37, 225], "smart": 129, "smb": 192, "snowflak": [136, 234], "socket": [149, 158], "solut": 156, "sound": 14, "sourc": [8, 10, 188, 189], "space": [77, 186], "special": 61, "specif": [49, 52, 54, 190], "speech": 137, "speechtotext": [17, 22], "split": [42, 186], "sql": [98, 209], "ssl": 192, "stamp": 107, "standard": [123, 184, 185, 187], "start": [62, 63, 151, 191], "state": [25, 115, 131, 144, 181, 194], "static": [95, 242], "statu": [40, 54, 60, 69, 77, 108, 138, 170, 233], "status": [54, 140, 141, 142], "statuscod": 240, "step": [42, 48, 110, 130, 152, 213], "storag": [38, 39, 99, 154, 192, 236], "store": [10, 14, 90, 93, 136, 161, 192], "stream": [20, 236], "streamlin": 142, "string": [8, 42, 58, 69, 81, 186], "structur": [29, 49, 58, 121, 154, 186, 187, 194], "studio": 82, "style": [181, 185, 186, 233, 235, 239], "subadminaddedev": [17, 22], "subadminremovedev": [17, 22], "subject": 69, "submit": 94, "submodul": 72, "subscrib": 148, "subscriptioncreatedev": 22, "subscriptiondeletedev": 22, "subscriptionupdatedev": 22, "suburl": 33, "summari": 152, "support": [13, 27, 37, 43, 49, 61, 66, 107, 129, 156, 159, 222, 223, 226, 231, 232, 234], "svg": 196, "symfoni": [220, 229], "symptom": 156, "sync": [8, 167], "system": [36, 82, 156], "systemtag": [17, 22], "systemtagsentityev": [17, 22], "t": [42, 194], "tab": 235, "tabl": [37, 201], "tag": [49, 107, 204], "talk": [139, 180], "target": 188, "task": [56, 57, 87, 140, 141, 142, 211, 213], "taskfailedev": [17, 22], "taskprocess": [17, 22, 55, 140], "tasksuccessfulev": [17, 22], "technic": [10, 14, 183, 200], "templat": [17, 20, 22, 26, 31, 42, 98, 101, 151, 186, 190, 209, 232], "term": 190, "terminologi": 110, "test": [41, 42, 46, 61, 118, 151, 152, 187, 192, 243], "text": [56, 76, 77, 137, 141, 142], "textprocess": [17, 22, 57, 142], "texttoimag": [17, 22], "theme": [27, 46, 221], "thi": [21, 186, 213], "through": 107, "throw": 49, "throwabl": 85, "time": [18, 63, 107, 143], "timestamp": 107, "timezon": 76, "tip": [37, 49, 70], "titl": 235, "todo": [213, 235], "toggl": 76, "token": [25, 119], "tokeninvalidatedev": [17, 22], "tone": 81, "tool": [3, 8, 100, 167, 190], "tooltip": 43, "top": [171, 181, 186], "track": 16, "transact": [37, 122], "transcript": 137, "transcriptionfailedev": [17, 22], "transcriptionsuccessfulev": [17, 22], "transient": 37, "transifex": [8, 167], "translat": [8, 42, 58, 69, 81, 116, 154, 167], "trashbin": 67, "travers": 209, "triag": 204, "trick": 49, "trigger": 140, "troubleshoot": [44, 156, 161], "trust": 133, "trustedserverremovedev": [17, 22], "tupl": 58, "tutori": [9, 49], "two": 144, "twofactorauth": [17, 22], "twofactorproviderchallengefail": [17, 22], "twofactorproviderchallengepass": [17, 22], "twofactorproviderdis": [17, 22], "twofactorproviderforuserdis": [17, 22], "twofactorproviderforuseren": [17, 22], "twofactorproviderforuserregist": [17, 22], "twofactorproviderforuserunregist": [17, 22], "twofactorprovideruserdelet": [17, 22], "tx": 8, "type": [18, 19, 21, 37, 49, 57, 90, 93, 99, 107, 130, 131, 140, 142, 149, 169, 186, 213, 236], "typescript": [42, 186], "typographi": 77, "ui": [43, 171], "understand": 97, "undo": 199, "unifi": [129, 235], "uniqu": 107, "unit": [187, 243], "unneed": 3, "unregist": [169, 171, 175, 178, 179, 180, 181], "unstabl": 85, "unvalid": 209, "up": [16, 82, 149, 151, 189], "upcom": 50, "updat": [16, 52, 104, 107, 129, 138, 210, 220, 221, 222, 224, 229], "upgrad": [215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "upload": [61, 62, 63, 70], "uri": 61, "url": [25, 33, 170], "urlgener": 33, "us": [20, 21, 33, 48, 49, 82, 94, 96, 98, 104, 125, 129, 157, 186, 204], "usag": [20, 29, 62, 103, 115, 129, 240], "user": [14, 17, 20, 22, 36, 42, 44, 46, 48, 51, 54, 59, 76, 88, 96, 108, 116, 126, 137, 138, 142, 145, 146, 152, 171, 177, 182, 185, 232, 234], "user_ldap": 22, "useraddedev": [17, 22], "userbackendregist": 22, "userchangedev": [17, 22], "userconfig": 93, "usercreatedev": [17, 22], "userdeletedev": [17, 22], "userfirsttimeloggedinev": [17, 22], "useridassignedev": [17, 22], "useridunassignedev": [17, 22], "userlivestatusev": [17, 22], "userloggedinev": [17, 22], "userloggedinwithcookieev": [17, 22], "userloggedoutev": [17, 22], "usermanag": 22, "usermountaddedev": [17, 22], "usermountremovedev": [17, 22], "usermountupdatedev": [17, 22], "usernam": 223, "userremovedev": [17, 22], "userupdatedev": [17, 22], "usesess": 20, "util": [123, 199], "v": [44, 69], "v2": [44, 63, 69], "valid": [8, 133], "validatepasswordpolicyev": [17, 22], "valu": [33, 36, 49, 90, 93, 168, 177], "variabl": [20, 27, 81, 98, 115, 156, 165, 186, 187, 194, 218, 219, 220, 221, 223], "variou": 199, "verifymountpointev": [17, 22], "version": [16, 68, 107, 129, 188, 222], "via": [43, 121], "view": [125, 236], "viewer": 22, "visual": 82, "vite": 190, "volum": 161, "vue": [42, 115, 186, 239], "want": 204, "watch": 118, "we": 10, "web": [147, 189, 190], "webauthn": 192, "webdav": [61, 65, 104, 148, 229], "webfing": 147, "webview": [44, 101], "well": 222, "what": [90, 200], "when": [20, 148, 186], "where": 186, "which": 21, "why": [10, 204], "wide": 156, "widget": [96, 129], "window": 82, "wipe": 60, "wire": 21, "within": 121, "without": 192, "word": 77, "work": [21, 140, 143, 190, 202], "workflow": 111, "workflowengin": [17, 22], "wrapper": 236, "write": [18, 22, 38, 81, 107, 122, 147, 243], "written": 122, "xdebug": 98, "xml": [18, 95, 165, 190, 210, 222, 223, 225, 226, 227, 228, 229, 230], "you": [190, 204], "your": [10, 13, 14, 42, 43, 49, 54, 72, 92, 129, 152]}}) \ No newline at end of file diff --git a/server/latest/developer_manual/server/architecture/files.html b/server/latest/developer_manual/server/architecture/files.html index 804dc7d47f2..420a3b4dfa4 100644 --- a/server/latest/developer_manual/server/architecture/files.html +++ b/server/latest/developer_manual/server/architecture/files.html @@ -270,7 +270,7 @@

    View.php

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/server/architecture/index.html b/server/latest/developer_manual/server/architecture/index.html index cde0c756310..ac621bf7c33 100644 --- a/server/latest/developer_manual/server/architecture/index.html +++ b/server/latest/developer_manual/server/architecture/index.html @@ -165,7 +165,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/server/code-back-end.html b/server/latest/developer_manual/server/code-back-end.html index af34016153f..6b6de33f3ef 100644 --- a/server/latest/developer_manual/server/code-back-end.html +++ b/server/latest/developer_manual/server/code-back-end.html @@ -155,7 +155,7 @@

    Compatibility documentation

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/server/code-front-end.html b/server/latest/developer_manual/server/code-front-end.html index 1aa1bc11c93..c8c7f84dec7 100644 --- a/server/latest/developer_manual/server/code-front-end.html +++ b/server/latest/developer_manual/server/code-front-end.html @@ -230,7 +230,7 @@

    Committing changes

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/server/externalapi.html b/server/latest/developer_manual/server/externalapi.html index b27a5bbc286..0e1bd3ddd5b 100644 --- a/server/latest/developer_manual/server/externalapi.html +++ b/server/latest/developer_manual/server/externalapi.html @@ -259,7 +259,7 @@

    Changing API and backwards compatibility

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/server/index.html b/server/latest/developer_manual/server/index.html index 08635f6061f..3ef433a3429 100644 --- a/server/latest/developer_manual/server/index.html +++ b/server/latest/developer_manual/server/index.html @@ -182,7 +182,7 @@

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/server/static-analysis.html b/server/latest/developer_manual/server/static-analysis.html index 8e131153232..15c143f1feb 100644 --- a/server/latest/developer_manual/server/static-analysis.html +++ b/server/latest/developer_manual/server/static-analysis.html @@ -169,7 +169,7 @@

    PHP static analysis

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/developer_manual/server/unit-testing.html b/server/latest/developer_manual/server/unit-testing.html index e9403c156b1..2ffbef32652 100644 --- a/server/latest/developer_manual/server/unit-testing.html +++ b/server/latest/developer_manual/server/unit-testing.html @@ -324,7 +324,7 @@

    Documentation

    © Copyright 2016-2026 Nextcloud GmbH and Nextcloud contributors. - Last updated on Jun 29, 2026. + Last updated on Jul 02, 2026.

    diff --git a/server/latest/user_manual/fr/groupware/sync_ios.html b/server/latest/user_manual/fr/groupware/sync_ios.html index cfaa1504b63..ce83efc6885 100644 --- a/server/latest/user_manual/fr/groupware/sync_ios.html +++ b/server/latest/user_manual/fr/groupware/sync_ios.html @@ -186,7 +186,7 @@

    ContactsNote

    If you select CalDAV only calendar syncing will be made available.

    -

    Si cela ne fonctionne toujours pas, regardez dans Dépannage des contacts et calendriers ou Dépannage de la découverte de service.

    +

    Si cela ne fonctionne toujours pas, regardez dans Dépannage des contacts et calendriers ou Dépannage de la découverte de service.

    diff --git a/server/latest/user_manual/ga/groupware/sync_ios.html b/server/latest/user_manual/ga/groupware/sync_ios.html index 5b0e823d590..73af1e340b1 100644 --- a/server/latest/user_manual/ga/groupware/sync_ios.html +++ b/server/latest/user_manual/ga/groupware/sync_ios.html @@ -185,7 +185,7 @@

    TeagmhálaitheNote

    If you select CalDAV only calendar syncing will be made available.

    -

    Mura bhfuil sé ag obair go fóill, féach ar Fabhtcheartú Teagmhálacha & FéilireFabhtcheartú na Seirbhíse Fionnachtana.

    +

    Mura bhfuil sé ag obair go fóill, féach ar Fabhtcheartú Teagmhálacha & FéilireFabhtcheartú na Seirbhíse Fionnachtana.

    diff --git a/server/latest/user_manual/gl/groupware/sync_ios.html b/server/latest/user_manual/gl/groupware/sync_ios.html index e40453b7453..777dffeb45d 100644 --- a/server/latest/user_manual/gl/groupware/sync_ios.html +++ b/server/latest/user_manual/gl/groupware/sync_ios.html @@ -186,7 +186,7 @@

    ContactosNota

    If you select CalDAV only calendar syncing will be made available.

    -

    Se aínda non funciona, bótelle unha ollada a Solución de problemas de Contactos e Calendario ou a Solución de problemas de descubrimento do servizo.

    +

    Se aínda non funciona, bótelle unha ollada a Solución de problemas de Contactos e Calendario ou a Solución de problemas de descubrimento do servizo.

    diff --git a/server/latest/user_manual/ja_JP/contents.html b/server/latest/user_manual/ja_JP/contents.html index e2a05f5f93b..964e03ab882 100644 --- a/server/latest/user_manual/ja_JP/contents.html +++ b/server/latest/user_manual/ja_JP/contents.html @@ -146,10 +146,10 @@
  • グループウェア
      -
    • Using the Contacts app
    • -
    • Using the Calendar app
    • -
    • Using the Mail app
    • -
    • Setting out-of-office messages
    • +
    • 連絡先アプリの使い方
    • +
    • Celendar アプリを使用する
    • +
    • Mail アプリを使用する
    • +
    • 不在時メッセージの設定
    • Android との同期
    • Synchronizing with iOS
    • Synchronizing with macOS
    • diff --git a/server/latest/user_manual/ja_JP/groupware/absence.html b/server/latest/user_manual/ja_JP/groupware/absence.html index 8b4069ce8a1..a125133a7a0 100644 --- a/server/latest/user_manual/ja_JP/groupware/absence.html +++ b/server/latest/user_manual/ja_JP/groupware/absence.html @@ -7,7 +7,7 @@ - Setting out-of-office messages — Nextcloud 35 User Manual + 不在時メッセージの設定 — Nextcloud 35 User Manual @@ -31,7 +31,7 @@ - + @@ -77,10 +77,10 @@
    • AI assistant
    • ファイル(Files)と同期
    • グループウェア
        -
      • Using the Contacts app
      • -
      • Using the Calendar app
      • -
      • Using the Mail app
      • -
      • Setting out-of-office messages
      • +
      • 連絡先アプリの使い方
      • +
      • Celendar アプリを使用する
      • +
      • Mail アプリを使用する
      • +
      • 不在時メッセージの設定
      • Android との同期
      • Synchronizing with iOS
      • Synchronizing with macOS
      • @@ -115,7 +115,7 @@
        • - +
        • Edit on GitHub
        • @@ -126,14 +126,14 @@
          -

          Setting out-of-office messages

          -

          If you are absent for vacation, sick leave or similar, you can add an out-of-office message in the Absence section of the Availability settings.

          -

          The interface asks for the time of absence, a short and a long message and an optional replacement user. This data is used for the following purposes:

          +

          不在時メッセージの設定

          +

          休暇や病気などで不在の場合は、**利用可能状況**設定の**不在**セクションで不在メッセージを追加できます。

          +

          インターフェースでは、不在期間、短いメッセージ、長いメッセージ、任意の代理ユーザを指定します。これらのデータは次の目的に利用されます:

            -
          1. Your user status will change to the short message when your absence starts and reset when it ends.

          2. +
          3. 不在が始まるとユーザステータスが短いメッセージに切り替わり、不在が終了すると元に戻ります。

          4. An event with status busy will be created in your personal calendar. This allows others to see that you are not available when they use the free/busy feature.

          5. -
          6. If enabled, the Mail app will apply an autoresponder using the long message.

          7. -
          8. The Talk app will show the long out-of-office message to others when they try to reach you in a 1:1 chat during your absence as well as the replacement user if set.

          9. +
          10. 有効にすると、Mailアプリで長いメッセージを使用した自動応答が適用されます。

          11. +
          12. あなたが不在の間に他のユーザが 1:1チャットで連絡しようとした場合、Talkアプリは長い不在時メッセージと、代理ユーザが設定されていればその情報も表示します。

          @@ -141,7 +141,7 @@