Wed Apr 28 21:25:57 2021 UTC ()
Update chat/matrix-synapse to 1.32.2

Synapse 1.32.2 (2021-04-22)
===========================

This release includes a fix for a regression introduced in 1.32.0.

Bugfixes
--------

- Fix a regression in Synapse 1.32.0 and 1.32.1 which caused `LoggingContext` errors in plugins. ([\#9857](https://github.com/matrix-org/synapse/issues/9857))

Synapse 1.32.1 (2021-04-21)
===========================

This release fixes [a regression](https://github.com/matrix-org/synapse/issues/9853)
in Synapse 1.32.0 that caused connected Prometheus instances to become unstable.

However, as this release is still subject to the `LoggingContext` change in 1.32.0,
it is recommended to remain on or downgrade to 1.31.0.

Bugfixes
--------

- Fix a regression in Synapse 1.32.0 which caused Synapse to report large numbers of Prometheus time series, potentially overwhelming Prometheus instances. ([\#9854](https://github.com/matrix-org/synapse/issues/9854))

Synapse 1.32.0 (2021-04-20)
===========================

**Note:** This release introduces [a regression](https://github.com/matrix-org/synapse/issues/9853)
that can overwhelm connected Prometheus instances. This issue was not present in
1.32.0rc1. If affected, it is recommended to downgrade to 1.31.0 in the meantime, and
follow [these instructions](https://github.com/matrix-org/synapse/pull/9854#issuecomment-823472183)
to clean up any excess writeahead logs.

**Note:** This release also mistakenly included a change that may affected Synapse
modules that import `synapse.logging.context.LoggingContext`, such as
[synapse-s3-storage-provider](https://github.com/matrix-org/synapse-s3-storage-provider).
This will be fixed in a later Synapse version.

**Note:** This release requires Python 3.6+ and Postgres 9.6+ or SQLite 3.22+.

This release removes the deprecated `GET /_synapse/admin/v1/users/<user_id>` admin API. Please use the [v2 API](https://github.com/matrix-org/synapse/blob/develop/docs/admin_api/user_admin_api.rst#query-user-account) instead, which has improved capabilities.

This release requires Application Services to use type `m.login.application_service` when registering users via the `/_matrix/client/r0/register` endpoint to comply with the spec. Please ensure your Application Services are up to date.

If you are using the `packages.matrix.org` Debian repository for Synapse packages,
note that we have recently updated the expiry date on the gpg signing key. If you see an
error similar to `The following signatures were invalid: EXPKEYSIG F473DD4473365DE1`, you
will need to get a fresh copy of the keys. You can do so with:

```sh
sudo wget -O /usr/share/keyrings/matrix-org-archive-keyring.gpg https://packages.matrix.org/debian/matrix-org-archive-keyring.gpg
```

Bugfixes
--------

- Fix the log lines of nested logging contexts. Broke in 1.32.0rc1. ([\#9829](https://github.com/matrix-org/synapse/issues/9829))

Synapse 1.32.0rc1 (2021-04-13)
==============================

Features
--------

- Add a Synapse module for routing presence updates between users. ([\#9491](https://github.com/matrix-org/synapse/issues/9491))
- Add an admin API to manage ratelimit for a specific user. ([\#9648](https://github.com/matrix-org/synapse/issues/9648))
- Include request information in structured logging output. ([\#9654](https://github.com/matrix-org/synapse/issues/9654))
- Add `order_by` to the admin API `GET /_synapse/admin/v2/users`. Contributed by @dklimpel. ([\#9691](https://github.com/matrix-org/synapse/issues/9691))
- Replace the `room_invite_state_types` configuration setting with `room_prejoin_state`. ([\#9700](https://github.com/matrix-org/synapse/issues/9700))
- Add experimental support for [MSC3083](https://github.com/matrix-org/matrix-doc/pull/3083): restricting room access via group membership. ([\#9717](https://github.com/matrix-org/synapse/issues/9717), [\#9735](https://github.com/matrix-org/synapse/issues/9735))
- Update experimental support for Spaces: include `m.room.create` in the room state sent with room-invites. ([\#9710](https://github.com/matrix-org/synapse/issues/9710))
- Synapse now requires Python 3.6 or later. It also requires Postgres 9.6 or later or SQLite 3.22 or later. ([\#9766](https://github.com/matrix-org/synapse/issues/9766))

Bugfixes
--------

- Prevent `synapse_forward_extremities` and `synapse_excess_extremity_events` Prometheus metrics from initially reporting zero-values after startup. ([\#8926](https://github.com/matrix-org/synapse/issues/8926))
- Fix recently added ratelimits to correctly honour the application service `rate_limited` flag. ([\#9711](https://github.com/matrix-org/synapse/issues/9711))
- Fix longstanding bug which caused `duplicate key value violates unique constraint "remote_media_cache_thumbnails_media_origin_media_id_thumbna_key"` errors. ([\#9725](https://github.com/matrix-org/synapse/issues/9725))
- Fix bug where sharded federation senders could get stuck repeatedly querying the DB in a loop, using lots of CPU. ([\#9770](https://github.com/matrix-org/synapse/issues/9770))
- Fix duplicate logging of exceptions thrown during federation transaction processing. ([\#9780](https://github.com/matrix-org/synapse/issues/9780))

Updates to the Docker image
---------------------------

- Move opencontainers labels to the final Docker image such that users can inspect them. ([\#9765](https://github.com/matrix-org/synapse/issues/9765))

Improved Documentation
----------------------

- Make the `allowed_local_3pids` regex example in the sample config stricter. ([\#9719](https://github.com/matrix-org/synapse/issues/9719))

Deprecations and Removals
-------------------------

- Remove old admin API `GET /_synapse/admin/v1/users/<user_id>`. ([\#9401](https://github.com/matrix-org/synapse/issues/9401))
- Make `/_matrix/client/r0/register` expect a type of `m.login.application_service` when an Application Service registers a user, to align with [the relevant spec](https://spec.matrix.org/unstable/application-service-api/#server-admin-style-permissions). ([\#9548](https://github.com/matrix-org/synapse/issues/9548))

Internal Changes
----------------

- Replace deprecated `imp` module with successor `importlib`. Contributed by Cristina Mu単oz. ([\#9718](https://github.com/matrix-org/synapse/issues/9718))
- Experiment with GitHub Actions for CI. ([\#9661](https://github.com/matrix-org/synapse/issues/9661))
- Introduce flake8-bugbear to the test suite and fix some of its lint violations. ([\#9682](https://github.com/matrix-org/synapse/issues/9682))
- Update `scripts-dev/complement.sh` to use a local checkout of Complement, allow running a subset of tests and have it use Synapse's Complement test blacklist. ([\#9685](https://github.com/matrix-org/synapse/issues/9685))
- Improve Jaeger tracing for `to_device` messages. ([\#9686](https://github.com/matrix-org/synapse/issues/9686))
- Add release helper script for automating part of the Synapse release process. ([\#9713](https://github.com/matrix-org/synapse/issues/9713))
- Add type hints to expiring cache. ([\#9730](https://github.com/matrix-org/synapse/issues/9730))
- Convert various testcases to `HomeserverTestCase`. ([\#9736](https://github.com/matrix-org/synapse/issues/9736))
- Start linting mypy with `no_implicit_optional`. ([\#9742](https://github.com/matrix-org/synapse/issues/9742))
- Add missing type hints to federation handler and server. ([\#9743](https://github.com/matrix-org/synapse/issues/9743))
- Check that a `ConfigError` is raised, rather than simply `Exception`, when appropriate in homeserver config file generation tests. ([\#9753](https://github.com/matrix-org/synapse/issues/9753))
- Fix incompatibility with `tox` 2.5. ([\#9769](https://github.com/matrix-org/synapse/issues/9769))
- Enable Complement tests for [MSC2946](https://github.com/matrix-org/matrix-doc/pull/2946): Spaces Summary API. ([\#9771](https://github.com/matrix-org/synapse/issues/9771))
- Use mock from the standard library instead of a separate package. ([\#9772](https://github.com/matrix-org/synapse/issues/9772))
- Update Black configuration to target Python 3.6. ([\#9781](https://github.com/matrix-org/synapse/issues/9781))
- Add option to skip unit tests when building Debian packages. ([\#9793](https://github.com/matrix-org/synapse/issues/9793))

Synapse 1.31.0 (2021-04-06)
===========================

**Note:** As announced in v1.25.0, and in line with the deprecation policy for platform dependencies, this is the last release to support Python 3.5 and PostgreSQL 9.5. Future versions of Synapse will require Python 3.6+ and PostgreSQL 9.6+, as per our [deprecation policy](docs/deprecation_policy.md).

This is also the last release that the Synapse team will be publishing packages for Debian Stretch and Ubuntu Xenial.

Improved Documentation
----------------------

- Add a document describing the deprecation policy for platform dependencies. ([\#9723](https://github.com/matrix-org/synapse/issues/9723))

Internal Changes
----------------

- Revert using `dmypy run` in lint script. ([\#9720](https://github.com/matrix-org/synapse/issues/9720))
- Pin flake8-bugbear's version. ([\#9734](https://github.com/matrix-org/synapse/issues/9734))

Synapse 1.31.0rc1 (2021-03-30)
==============================

Features
--------

- Add support to OpenID Connect login for requiring attributes on the `userinfo` response. Contributed by Hubbe King. ([\#9609](https://github.com/matrix-org/synapse/issues/9609))
- Add initial experimental support for a "space summary" API. ([\#9643](https://github.com/matrix-org/synapse/issues/9643), [\#9652](https://github.com/matrix-org/synapse/issues/9652), [\#9653](https://github.com/matrix-org/synapse/issues/9653))
- Add support for the busy presence state as described in [MSC3026](https://github.com/matrix-org/matrix-doc/pull/3026). ([\#9644](https://github.com/matrix-org/synapse/issues/9644))
- Add support for credentials for proxy authentication in the `HTTPS_PROXY` environment variable. ([\#9657](https://github.com/matrix-org/synapse/issues/9657))

Bugfixes
--------

- Fix a longstanding bug that could cause issues when editing a reply to a message. ([\#9585](https://github.com/matrix-org/synapse/issues/9585))
- Fix the `/capabilities` endpoint to return `m.change_password` as disabled if the local password database is not used for authentication. Contributed by @dklimpel. ([\#9588](https://github.com/matrix-org/synapse/issues/9588))
- Check if local passwords are enabled before setting them for the user. ([\#9636](https://github.com/matrix-org/synapse/issues/9636))
- Fix a bug where federation sending can stall due to `concurrent access` database exceptions when it falls behind. ([\#9639](https://github.com/matrix-org/synapse/issues/9639))
- Fix a bug introduced in Synapse 1.30.1 which meant the suggested `pip` incantation to install an updated `cryptography` was incorrect. ([\#9699](https://github.com/matrix-org/synapse/issues/9699))

Updates to the Docker image
---------------------------

- Speed up Docker builds and make it nicer to test against Complement while developing (install all dependencies before copying the project). ([\#9610](https://github.com/matrix-org/synapse/issues/9610))
- Include [opencontainers labels](https://github.com/opencontainers/image-spec/blob/master/annotations.md#pre-defined-annotation-keys) in the Docker image. ([\#9612](https://github.com/matrix-org/synapse/issues/9612))

Improved Documentation
----------------------

- Clarify that `register_new_matrix_user` is present also when installed via non-pip package. ([\#9074](https://github.com/matrix-org/synapse/issues/9074))
- Update source install documentation to mention platform prerequisites before the source install steps. ([\#9667](https://github.com/matrix-org/synapse/issues/9667))
- Improve worker documentation for fallback/web auth endpoints. ([\#9679](https://github.com/matrix-org/synapse/issues/9679))
- Update the sample configuration for OIDC authentication. ([\#9695](https://github.com/matrix-org/synapse/issues/9695))

Internal Changes
----------------

- Preparatory steps for removing redundant `outlier` data from `event_json.internal_metadata` column. ([\#9411](https://github.com/matrix-org/synapse/issues/9411))
- Add type hints to the caching module. ([\#9442](https://github.com/matrix-org/synapse/issues/9442))
- Introduce flake8-bugbear to the test suite and fix some of its lint violations. ([\#9499](https://github.com/matrix-org/synapse/issues/9499), [\#9659](https://github.com/matrix-org/synapse/issues/9659))
- Add additional type hints to the Homeserver object. ([\#9631](https://github.com/matrix-org/synapse/issues/9631), [\#9638](https://github.com/matrix-org/synapse/issues/9638), [\#9675](https://github.com/matrix-org/synapse/issues/9675), [\#9681](https://github.com/matrix-org/synapse/issues/9681))
- Only save remote cross-signing and device keys if they're different from the current ones. ([\#9634](https://github.com/matrix-org/synapse/issues/9634))
- Rename storage function to fix spelling and not conflict with another function's name. ([\#9637](https://github.com/matrix-org/synapse/issues/9637))
- Improve performance of federation catch up by sending the latest events in the room to the remote, rather than just the last event sent by the local server. ([\#9640](https://github.com/matrix-org/synapse/issues/9640), [\#9664](https://github.com/matrix-org/synapse/issues/9664))
- In the `federation_client` commandline client, stop automatically adding the URL prefix, so that servlets on other prefixes can be tested. ([\#9645](https://github.com/matrix-org/synapse/issues/9645))
- In the `federation_client` commandline client, handle inline `signing_key`s in `homeserver.yaml`. ([\#9647](https://github.com/matrix-org/synapse/issues/9647))
- Fixed some antipattern issues to improve code quality. ([\#9649](https://github.com/matrix-org/synapse/issues/9649))
- Add a storage method for pulling all current user presence state from the database. ([\#9650](https://github.com/matrix-org/synapse/issues/9650))
- Import `HomeServer` from the proper module. ([\#9665](https://github.com/matrix-org/synapse/issues/9665))
- Increase default join ratelimiting burst rate. ([\#9674](https://github.com/matrix-org/synapse/issues/9674))
- Add type hints to third party event rules and visibility modules. ([\#9676](https://github.com/matrix-org/synapse/issues/9676))
- Bump mypy-zope to 0.2.13 to fix "Cannot determine consistent method resolution order (MRO)" errors when running mypy a second time. ([\#9678](https://github.com/matrix-org/synapse/issues/9678))
- Use interpreter from `$PATH` via `/usr/bin/env` instead of absolute paths in various scripts. ([\#9689](https://github.com/matrix-org/synapse/issues/9689))
- Make it possible to use `dmypy`. ([\#9692](https://github.com/matrix-org/synapse/issues/9692))
- Suppress "CryptographyDeprecationWarning: int_from_bytes is deprecated". ([\#9698](https://github.com/matrix-org/synapse/issues/9698))
- Use `dmypy run` in lint script for improved performance in type-checking while developing. ([\#9701](https://github.com/matrix-org/synapse/issues/9701))
- Fix undetected mypy error when using Python 3.6. ([\#9703](https://github.com/matrix-org/synapse/issues/9703))
- Fix type-checking CI on develop. ([\#9709](https://github.com/matrix-org/synapse/issues/9709))

Synapse 1.30.1 (2021-03-26)
===========================

This release is identical to Synapse 1.30.0, with the exception of explicitly
setting a minimum version of Python's Cryptography library to ensure that users
of Synapse are protected from the recent [OpenSSL security advisories](https://mta.openssl.org/pipermail/openssl-announce/2021-March/000198.html),
especially CVE-2021-3449.

Note that Cryptography defaults to bundling its own statically linked copy of
OpenSSL, which means that you may not be protected by your operating system's
security updates.

It's also worth noting that Cryptography no longer supports Python 3.5, so
admins deploying to older environments may not be protected against this or
future vulnerabilities. Synapse will be dropping support for Python 3.5 at the
end of March.

Updates to the Docker image
---------------------------

- Ensure that the docker container has up to date versions of openssl. ([\#9697](https://github.com/matrix-org/synapse/issues/9697))

Internal Changes
----------------

- Enforce that `cryptography` dependency is up to date to ensure it has the most recent openssl patches. ([\#9697](https://github.com/matrix-org/synapse/issues/9697))

Synapse 1.30.0 (2021-03-22)
===========================

Note that this release deprecates the ability for appservices to
call `POST /_matrix/client/r0/register`  without the body parameter `type`. Appservice
developers should use a `type` value of `m.login.application_service` as
per [the spec](https://matrix.org/docs/spec/application_service/r0.1.2#server-admin-style-permissions).
In future releases, calling this endpoint with an access token - but without a `m.login.application_service`
type - will fail.

No significant changes.

Synapse 1.30.0rc1 (2021-03-16)
==============================

Features
--------

- Add prometheus metrics for number of users successfully registering and logging in. ([\#9510](https://github.com/matrix-org/synapse/issues/9510), [\#9511](https://github.com/matrix-org/synapse/issues/9511), [\#9573](https://github.com/matrix-org/synapse/issues/9573))
- Add `synapse_federation_last_sent_pdu_time` and `synapse_federation_last_received_pdu_time` prometheus metrics, which monitor federation delays by reporting the timestamps of messages sent and received to a set of remote servers. ([\#9540](https://github.com/matrix-org/synapse/issues/9540))
- Add support for generating JSON Web Tokens dynamically for use as OIDC client secrets. ([\#9549](https://github.com/matrix-org/synapse/issues/9549))
- Optimise handling of incomplete room history for incoming federation. ([\#9601](https://github.com/matrix-org/synapse/issues/9601))
- Finalise support for allowing clients to pick an SSO Identity Provider ([MSC2858](https://github.com/matrix-org/matrix-doc/pull/2858)). ([\#9617](https://github.com/matrix-org/synapse/issues/9617))
- Tell spam checker modules about the SSO IdP a user registered through if one was used. ([\#9626](https://github.com/matrix-org/synapse/issues/9626))

Bugfixes
--------

- Fix long-standing bug when generating thumbnails for some images with transparency: `TypeError: cannot unpack non-iterable int object`. ([\#9473](https://github.com/matrix-org/synapse/issues/9473))
- Purge chain cover indexes for events that were purged prior to Synapse v1.29.0. ([\#9542](https://github.com/matrix-org/synapse/issues/9542), [\#9583](https://github.com/matrix-org/synapse/issues/9583))
- Fix bug where federation requests were not correctly retried on 5xx responses. ([\#9567](https://github.com/matrix-org/synapse/issues/9567))
- Fix re-activating an account via the admin API when local passwords are disabled. ([\#9587](https://github.com/matrix-org/synapse/issues/9587))
- Fix a bug introduced in Synapse 1.20 which caused incoming federation transactions to stack up, causing slow recovery from outages. ([\#9597](https://github.com/matrix-org/synapse/issues/9597))
- Fix a bug introduced in v1.28.0 where the OpenID Connect callback endpoint could error with a `MacaroonInitException`. ([\#9620](https://github.com/matrix-org/synapse/issues/9620))
- Fix Internal Server Error on `GET /_synapse/client/saml2/authn_response` request. ([\#9623](https://github.com/matrix-org/synapse/issues/9623))

Updates to the Docker image
---------------------------

- Make use of an improved malloc implementation (`jemalloc`) in the docker image. ([\#8553](https://github.com/matrix-org/synapse/issues/8553))

Improved Documentation
----------------------

- Add relayd entry to reverse proxy example configurations. ([\#9508](https://github.com/matrix-org/synapse/issues/9508))
- Improve the SAML2 upgrade notes for 1.27.0. ([\#9550](https://github.com/matrix-org/synapse/issues/9550))
- Link to the "List user's media" admin API from the media admin API docs. ([\#9571](https://github.com/matrix-org/synapse/issues/9571))
- Clarify the spam checker modules documentation example to mention that `parse_config` is a required method. ([\#9580](https://github.com/matrix-org/synapse/issues/9580))
- Clarify the sample configuration for `stats` settings. ([\#9604](https://github.com/matrix-org/synapse/issues/9604))

Deprecations and Removals
-------------------------

- The `synapse_federation_last_sent_pdu_age` and `synapse_federation_last_received_pdu_age` prometheus metrics have been removed. They are replaced by `synapse_federation_last_sent_pdu_time` and `synapse_federation_last_received_pdu_time`. ([\#9540](https://github.com/matrix-org/synapse/issues/9540))
- Registering an Application Service user without using the `m.login.application_service` login type will be unsupported in an upcoming Synapse release. ([\#9559](https://github.com/matrix-org/synapse/issues/9559))

Internal Changes
----------------

- Add tests to ResponseCache. ([\#9458](https://github.com/matrix-org/synapse/issues/9458))
- Add type hints to purge room and server notice admin API. ([\#9520](https://github.com/matrix-org/synapse/issues/9520))
- Add extra logging to ObservableDeferred when callbacks throw exceptions. ([\#9523](https://github.com/matrix-org/synapse/issues/9523))
- Fix incorrect type hints. ([\#9528](https://github.com/matrix-org/synapse/issues/9528), [\#9543](https://github.com/matrix-org/synapse/issues/9543), [\#9591](https://github.com/matrix-org/synapse/issues/9591), [\#9608](https://github.com/matrix-org/synapse/issues/9608), [\#9618](https://github.com/matrix-org/synapse/issues/9618))
- Add an additional test for purging a room. ([\#9541](https://github.com/matrix-org/synapse/issues/9541))
- Add a `.git-blame-ignore-revs` file with the hashes of auto-formatting. ([\#9560](https://github.com/matrix-org/synapse/issues/9560))
- Increase the threshold before which outbound federation to a server goes into "catch up" mode, which is expensive for the remote server to handle. ([\#9561](https://github.com/matrix-org/synapse/issues/9561))
- Fix spurious errors reported by the `config-lint.sh` script. ([\#9562](https://github.com/matrix-org/synapse/issues/9562))
- Fix type hints and tests for BlacklistingAgentWrapper and BlacklistingReactorWrapper. ([\#9563](https://github.com/matrix-org/synapse/issues/9563))
- Do not have mypy ignore type hints from unpaddedbase64. ([\#9568](https://github.com/matrix-org/synapse/issues/9568))
- Improve efficiency of calculating the auth chain in large rooms. ([\#9576](https://github.com/matrix-org/synapse/issues/9576))
- Convert `synapse.types.Requester` to an `attrs` class. ([\#9586](https://github.com/matrix-org/synapse/issues/9586))
- Add logging for redis connection setup. ([\#9590](https://github.com/matrix-org/synapse/issues/9590))
- Improve logging when processing incoming transactions. ([\#9596](https://github.com/matrix-org/synapse/issues/9596))
- Remove unused `stats.retention` setting, and emit a warning if stats are disabled. ([\#9604](https://github.com/matrix-org/synapse/issues/9604))
- Prevent attempting to bundle aggregations for state events in /context APIs. ([\#9619](https://github.com/matrix-org/synapse/issues/9619))


(js)
diff -r1.20 -r1.21 pkgsrc/chat/matrix-synapse/Makefile
diff -r1.10 -r1.11 pkgsrc/chat/matrix-synapse/PLIST
diff -r1.13 -r1.14 pkgsrc/chat/matrix-synapse/distinfo

cvs diff -r1.20 -r1.21 pkgsrc/chat/matrix-synapse/Makefile (switch to unified diff)

--- pkgsrc/chat/matrix-synapse/Makefile 2021/04/15 15:54:00 1.20
+++ pkgsrc/chat/matrix-synapse/Makefile 2021/04/28 21:25:57 1.21
@@ -1,79 +1,79 @@ @@ -1,79 +1,79 @@
1# $NetBSD: Makefile,v 1.20 2021/04/15 15:54:00 jperkin Exp $ 1# $NetBSD: Makefile,v 1.21 2021/04/28 21:25:57 js Exp $
2 2
3DISTNAME= matrix-synapse-1.29.0 3DISTNAME= matrix-synapse-1.32.2
4CATEGORIES= chat 4CATEGORIES= chat
5MASTER_SITES= ${MASTER_SITE_GITHUB:=matrix-org/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=matrix-org/}
6EGG_NAME= matrix_synapse-${PKGVERSION_NOREV} 6EGG_NAME= matrix_synapse-${PKGVERSION_NOREV}
7GITHUB_PROJECT= synapse 7GITHUB_PROJECT= synapse
8GITHUB_TAG= v${PKGVERSION_NOREV} 8GITHUB_TAG= v${PKGVERSION_NOREV}
9 9
10MAINTAINER= js@pkgsrc.org 10MAINTAINER= js@pkgsrc.org
11HOMEPAGE= https://github.com/matrix-org/synapse/ 11HOMEPAGE= https://github.com/matrix-org/synapse/
12COMMENT= Reference homeserver for the Matrix decentralised comms protocol 12COMMENT= Reference homeserver for the Matrix decentralised comms protocol
13LICENSE= apache-2.0 13LICENSE= apache-2.0
14 14
15DEPENDS+= ${PYPKGPREFIX}-sqlite3>=0:../../databases/py-sqlite3 15DEPENDS+= ${PYPKGPREFIX}-sqlite3>=0:../../databases/py-sqlite3
16DEPENDS+= ${PYPKGPREFIX}-jsonschema>=2.5.1:../../textproc/py-jsonschema 16DEPENDS+= ${PYPKGPREFIX}-jsonschema>=2.5.1:../../textproc/py-jsonschema
17DEPENDS+= ${PYPKGPREFIX}-frozendict>=1:../../devel/py-frozendict 17DEPENDS+= ${PYPKGPREFIX}-frozendict>=1:../../devel/py-frozendict
18DEPENDS+= ${PYPKGPREFIX}-unpaddedbase64>=1.1.0:../../devel/py-unpaddedbase64 18DEPENDS+= ${PYPKGPREFIX}-unpaddedbase64>=1.1.0:../../devel/py-unpaddedbase64
19DEPENDS+= ${PYPKGPREFIX}-canonicaljson>=1.4.0:../../devel/py-canonicaljson 19DEPENDS+= ${PYPKGPREFIX}-canonicaljson>=1.4.0:../../devel/py-canonicaljson
20DEPENDS+= ${PYPKGPREFIX}-signedjson>=1.1.0:../../security/py-signedjson 20DEPENDS+= ${PYPKGPREFIX}-signedjson>=1.1.0:../../security/py-signedjson
21DEPENDS+= ${PYPKGPREFIX}-nacl>=1.2.1:../../security/py-nacl 21DEPENDS+= ${PYPKGPREFIX}-nacl>=1.2.1:../../security/py-nacl
22DEPENDS+= ${PYPKGPREFIX}-idna>=2.5:../../www/py-idna 22DEPENDS+= ${PYPKGPREFIX}-idna>=2.5:../../www/py-idna
23DEPENDS+= ${PYPKGPREFIX}-service_identity>=18.1.0:../../security/py-service_identity 23DEPENDS+= ${PYPKGPREFIX}-service_identity>=18.1.0:../../security/py-service_identity
24DEPENDS+= ${PYPKGPREFIX}-twisted>=18.9.0:../../net/py-twisted 24DEPENDS+= ${PYPKGPREFIX}-twisted>=18.9.0:../../net/py-twisted
25DEPENDS+= ${PYPKGPREFIX}-treq>=15.1:../../devel/py-treq 25DEPENDS+= ${PYPKGPREFIX}-treq>=15.1:../../devel/py-treq
26DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=16.0.0:../../security/py-OpenSSL 26DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=16.0.0:../../security/py-OpenSSL
27DEPENDS+= ${PYPKGPREFIX}-yaml>=3.11:../../textproc/py-yaml 27DEPENDS+= ${PYPKGPREFIX}-yaml>=3.11:../../textproc/py-yaml
28DEPENDS+= ${PYPKGPREFIX}-asn1>=0.1.9:../../security/py-asn1 28DEPENDS+= ${PYPKGPREFIX}-asn1>=0.1.9:../../security/py-asn1
29DEPENDS+= ${PYPKGPREFIX}-asn1-modules>=0.0.7:../../security/py-asn1-modules 29DEPENDS+= ${PYPKGPREFIX}-asn1-modules>=0.0.7:../../security/py-asn1-modules
30DEPENDS+= ${PYPKGPREFIX}-daemonize>=2.3.1:../../devel/py-daemonize 30DEPENDS+= ${PYPKGPREFIX}-daemonize>=2.3.1:../../devel/py-daemonize
31DEPENDS+= ${PYPKGPREFIX}-bcrypt>=3.1.0:../../security/py-bcrypt 31DEPENDS+= ${PYPKGPREFIX}-bcrypt>=3.1.0:../../security/py-bcrypt
32DEPENDS+= ${PYPKGPREFIX}-sortedcontainers>=1.4.4:../../devel/py-sortedcontainers 32DEPENDS+= ${PYPKGPREFIX}-sortedcontainers>=1.4.4:../../devel/py-sortedcontainers
33DEPENDS+= ${PYPKGPREFIX}-macaroons>=0.13.0:../../devel/py-macaroons 33DEPENDS+= ${PYPKGPREFIX}-macaroons>=0.13.0:../../devel/py-macaroons
34DEPENDS+= ${PYPKGPREFIX}-msgpack>=0.5.2:../../devel/py-msgpack 34DEPENDS+= ${PYPKGPREFIX}-msgpack>=0.5.2:../../devel/py-msgpack
35DEPENDS+= ${PYPKGPREFIX}-phonenumbers>=8.2.0:../../textproc/py-phonenumbers 35DEPENDS+= ${PYPKGPREFIX}-phonenumbers>=8.2.0:../../textproc/py-phonenumbers
36DEPENDS+= ${PYPKGPREFIX}-six>=1.10:../../lang/py-six 36DEPENDS+= ${PYPKGPREFIX}-six>=1.10:../../lang/py-six
37DEPENDS+= ${PYPKGPREFIX}-prometheus_client>=0.8.0:../../net/py-prometheus_client 37DEPENDS+= ${PYPKGPREFIX}-prometheus_client>=0.8.0:../../net/py-prometheus_client
38DEPENDS+= ${PYPKGPREFIX}-attrs>=19.1.0:../../devel/py-attrs 38DEPENDS+= ${PYPKGPREFIX}-attrs>=19.1.0:../../devel/py-attrs
39DEPENDS+= ${PYPKGPREFIX}-netaddr>=0.7.18:../../net/py-netaddr 39DEPENDS+= ${PYPKGPREFIX}-netaddr>=0.7.18:../../net/py-netaddr
40DEPENDS+= ${PYPKGPREFIX}-jinja2>=2.9:../../textproc/py-jinja2 40DEPENDS+= ${PYPKGPREFIX}-jinja2>=2.9:../../textproc/py-jinja2
41DEPENDS+= ${PYPKGPREFIX}-bleach>=1.4.3:../../www/py-bleach 41DEPENDS+= ${PYPKGPREFIX}-bleach>=1.4.3:../../www/py-bleach
42DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=3.7.4:../../devel/py-typing-extensions 42DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=3.7.4:../../devel/py-typing-extensions
43DEPENDS+= ${PYPKGPREFIX}-psycopg2>=2.7:../../databases/py-psycopg2 43DEPENDS+= ${PYPKGPREFIX}-psycopg2>=2.7:../../databases/py-psycopg2
44DEPENDS+= ${PYPKGPREFIX}-lxml>=3.5.0:../../textproc/py-lxml 44DEPENDS+= ${PYPKGPREFIX}-lxml>=3.5.0:../../textproc/py-lxml
45 45
46PYTHON_VERSIONED_DEPENDENCIES= Pillow 46PYTHON_VERSIONED_DEPENDENCIES= Pillow
47 47
48USE_LANGUAGES= # none 48USE_LANGUAGES= # none
49USE_TOOLS+= perl:run 49USE_TOOLS+= perl:run
50REPLACE_PERL+= scripts/sync_room_to_group.pl 50REPLACE_PERL+= scripts/sync_room_to_group.pl
51 51
52PKG_SYSCONFSUBDIR= matrix-synapse 52PKG_SYSCONFSUBDIR= matrix-synapse
53 53
54SYNAPSE_USER?= synapse 54SYNAPSE_USER?= synapse
55SYNAPSE_GROUP?= ${SYNAPSE_USER} 55SYNAPSE_GROUP?= ${SYNAPSE_USER}
56SYNAPSE_DATA?= ${VARBASE}/db/matrix-synapse 56SYNAPSE_DATA?= ${VARBASE}/db/matrix-synapse
57BUILD_DEFS+= SYNAPSE_USER SYNAPSE_GROUP SYNAPSE_DATA VARBASE 57BUILD_DEFS+= SYNAPSE_USER SYNAPSE_GROUP SYNAPSE_DATA VARBASE
58 58
59OWN_DIRS_PERMS+= ${SYNAPSE_DATA} ${SYNAPSE_USER} ${SYNAPSE_GROUP} 0770 59OWN_DIRS_PERMS+= ${SYNAPSE_DATA} ${SYNAPSE_USER} ${SYNAPSE_GROUP} 0770
60 60
61PKG_USERS_VARS= SYNAPSE_USER 61PKG_USERS_VARS= SYNAPSE_USER
62PKG_GROUPS_VARS= SYNAPSE_GROUP 62PKG_GROUPS_VARS= SYNAPSE_GROUP
63PKG_GROUPS= ${SYNAPSE_GROUP} 63PKG_GROUPS= ${SYNAPSE_GROUP}
64PKG_USERS= ${SYNAPSE_USER}:${SYNAPSE_GROUP} 64PKG_USERS= ${SYNAPSE_USER}:${SYNAPSE_GROUP}
65PKG_GECOS.${SYNAPSE_USER}= Synapse daemon user 65PKG_GECOS.${SYNAPSE_USER}= Synapse daemon user
66PKG_HOME.${SYNAPSE_USER}= ${SYNAPSE_DATA} 66PKG_HOME.${SYNAPSE_USER}= ${SYNAPSE_DATA}
67PKG_SHELL.${SYNAPSE_USER}= ${NOLOGIN} 67PKG_SHELL.${SYNAPSE_USER}= ${NOLOGIN}
68 68
69RCD_SCRIPTS= matrix-synapse 69RCD_SCRIPTS= matrix-synapse
70 70
71FILES_SUBST+= SYNAPSE_DATA=${SYNAPSE_DATA:Q} 71FILES_SUBST+= SYNAPSE_DATA=${SYNAPSE_DATA:Q}
72FILES_SUBST+= SYNAPSE_USER=${SYNAPSE_USER:Q} 72FILES_SUBST+= SYNAPSE_USER=${SYNAPSE_USER:Q}
73FILES_SUBST+= SYNAPSE_GROUP=${SYNAPSE_GROUP:Q} 73FILES_SUBST+= SYNAPSE_GROUP=${SYNAPSE_GROUP:Q}
74MESSAGE_SUBST+= PYTHONBIN=${PYTHONBIN:Q} 74MESSAGE_SUBST+= PYTHONBIN=${PYTHONBIN:Q}
75MESSAGE_SUBST+= SYNAPSE_DATA=${SYNAPSE_DATA:Q} 75MESSAGE_SUBST+= SYNAPSE_DATA=${SYNAPSE_DATA:Q}
76 76
77.include "../../lang/python/egg.mk" 77.include "../../lang/python/egg.mk"
78.include "../../lang/python/versioned_dependencies.mk" 78.include "../../lang/python/versioned_dependencies.mk"
79.include "../../mk/bsd.pkg.mk" 79.include "../../mk/bsd.pkg.mk"

cvs diff -r1.10 -r1.11 pkgsrc/chat/matrix-synapse/PLIST (switch to unified diff)

--- pkgsrc/chat/matrix-synapse/PLIST 2021/03/14 21:21:13 1.10
+++ pkgsrc/chat/matrix-synapse/PLIST 2021/04/28 21:25:57 1.11
@@ -1,1754 +1,1765 @@ @@ -1,1754 +1,1765 @@
1@comment $NetBSD: PLIST,v 1.10 2021/03/14 21:21:13 js Exp $ 1@comment $NetBSD: PLIST,v 1.11 2021/04/28 21:25:57 js Exp $
2bin/export_signing_key 2bin/export_signing_key
3bin/generate_config 3bin/generate_config
4bin/generate_log_config 4bin/generate_log_config
5bin/generate_signing_key.py 5bin/generate_signing_key.py
6bin/hash_password 6bin/hash_password
7bin/move_remote_media_to_new_store.py 7bin/move_remote_media_to_new_store.py
8bin/register_new_matrix_user 8bin/register_new_matrix_user
9bin/synapse_port_db 9bin/synapse_port_db
10bin/sync_room_to_group.pl 10bin/sync_room_to_group.pl
11bin/synctl 11bin/synctl
12${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 12${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
13${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 13${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
14${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 14${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
15${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 15${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
16${PYSITELIB}/${EGG_INFODIR}/requires.txt 16${PYSITELIB}/${EGG_INFODIR}/requires.txt
17${PYSITELIB}/${EGG_INFODIR}/top_level.txt 17${PYSITELIB}/${EGG_INFODIR}/top_level.txt
18${PYSITELIB}/synapse/__init__.py 18${PYSITELIB}/synapse/__init__.py
19${PYSITELIB}/synapse/__init__.pyc 19${PYSITELIB}/synapse/__init__.pyc
20${PYSITELIB}/synapse/__init__.pyo 20${PYSITELIB}/synapse/__init__.pyo
21${PYSITELIB}/synapse/_scripts/__init__.py 21${PYSITELIB}/synapse/_scripts/__init__.py
22${PYSITELIB}/synapse/_scripts/__init__.pyc 22${PYSITELIB}/synapse/_scripts/__init__.pyc
23${PYSITELIB}/synapse/_scripts/__init__.pyo 23${PYSITELIB}/synapse/_scripts/__init__.pyo
24${PYSITELIB}/synapse/_scripts/register_new_matrix_user.py 24${PYSITELIB}/synapse/_scripts/register_new_matrix_user.py
25${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyc 25${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyc
26${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyo 26${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyo
27${PYSITELIB}/synapse/api/__init__.py 27${PYSITELIB}/synapse/api/__init__.py
28${PYSITELIB}/synapse/api/__init__.pyc 28${PYSITELIB}/synapse/api/__init__.pyc
29${PYSITELIB}/synapse/api/__init__.pyo 29${PYSITELIB}/synapse/api/__init__.pyo
30${PYSITELIB}/synapse/api/auth.py 30${PYSITELIB}/synapse/api/auth.py
31${PYSITELIB}/synapse/api/auth.pyc 31${PYSITELIB}/synapse/api/auth.pyc
32${PYSITELIB}/synapse/api/auth.pyo 32${PYSITELIB}/synapse/api/auth.pyo
33${PYSITELIB}/synapse/api/auth_blocking.py 33${PYSITELIB}/synapse/api/auth_blocking.py
34${PYSITELIB}/synapse/api/auth_blocking.pyc 34${PYSITELIB}/synapse/api/auth_blocking.pyc
35${PYSITELIB}/synapse/api/auth_blocking.pyo 35${PYSITELIB}/synapse/api/auth_blocking.pyo
36${PYSITELIB}/synapse/api/constants.py 36${PYSITELIB}/synapse/api/constants.py
37${PYSITELIB}/synapse/api/constants.pyc 37${PYSITELIB}/synapse/api/constants.pyc
38${PYSITELIB}/synapse/api/constants.pyo 38${PYSITELIB}/synapse/api/constants.pyo
39${PYSITELIB}/synapse/api/errors.py 39${PYSITELIB}/synapse/api/errors.py
40${PYSITELIB}/synapse/api/errors.pyc 40${PYSITELIB}/synapse/api/errors.pyc
41${PYSITELIB}/synapse/api/errors.pyo 41${PYSITELIB}/synapse/api/errors.pyo
42${PYSITELIB}/synapse/api/filtering.py 42${PYSITELIB}/synapse/api/filtering.py
43${PYSITELIB}/synapse/api/filtering.pyc 43${PYSITELIB}/synapse/api/filtering.pyc
44${PYSITELIB}/synapse/api/filtering.pyo 44${PYSITELIB}/synapse/api/filtering.pyo
45${PYSITELIB}/synapse/api/presence.py 45${PYSITELIB}/synapse/api/presence.py
46${PYSITELIB}/synapse/api/presence.pyc 46${PYSITELIB}/synapse/api/presence.pyc
47${PYSITELIB}/synapse/api/presence.pyo 47${PYSITELIB}/synapse/api/presence.pyo
48${PYSITELIB}/synapse/api/ratelimiting.py 48${PYSITELIB}/synapse/api/ratelimiting.py
49${PYSITELIB}/synapse/api/ratelimiting.pyc 49${PYSITELIB}/synapse/api/ratelimiting.pyc
50${PYSITELIB}/synapse/api/ratelimiting.pyo 50${PYSITELIB}/synapse/api/ratelimiting.pyo
51${PYSITELIB}/synapse/api/room_versions.py 51${PYSITELIB}/synapse/api/room_versions.py
52${PYSITELIB}/synapse/api/room_versions.pyc 52${PYSITELIB}/synapse/api/room_versions.pyc
53${PYSITELIB}/synapse/api/room_versions.pyo 53${PYSITELIB}/synapse/api/room_versions.pyo
54${PYSITELIB}/synapse/api/urls.py 54${PYSITELIB}/synapse/api/urls.py
55${PYSITELIB}/synapse/api/urls.pyc 55${PYSITELIB}/synapse/api/urls.pyc
56${PYSITELIB}/synapse/api/urls.pyo 56${PYSITELIB}/synapse/api/urls.pyo
57${PYSITELIB}/synapse/app/__init__.py 57${PYSITELIB}/synapse/app/__init__.py
58${PYSITELIB}/synapse/app/__init__.pyc 58${PYSITELIB}/synapse/app/__init__.pyc
59${PYSITELIB}/synapse/app/__init__.pyo 59${PYSITELIB}/synapse/app/__init__.pyo
60${PYSITELIB}/synapse/app/_base.py 60${PYSITELIB}/synapse/app/_base.py
61${PYSITELIB}/synapse/app/_base.pyc 61${PYSITELIB}/synapse/app/_base.pyc
62${PYSITELIB}/synapse/app/_base.pyo 62${PYSITELIB}/synapse/app/_base.pyo
63${PYSITELIB}/synapse/app/admin_cmd.py 63${PYSITELIB}/synapse/app/admin_cmd.py
64${PYSITELIB}/synapse/app/admin_cmd.pyc 64${PYSITELIB}/synapse/app/admin_cmd.pyc
65${PYSITELIB}/synapse/app/admin_cmd.pyo 65${PYSITELIB}/synapse/app/admin_cmd.pyo
66${PYSITELIB}/synapse/app/appservice.py 66${PYSITELIB}/synapse/app/appservice.py
67${PYSITELIB}/synapse/app/appservice.pyc 67${PYSITELIB}/synapse/app/appservice.pyc
68${PYSITELIB}/synapse/app/appservice.pyo 68${PYSITELIB}/synapse/app/appservice.pyo
69${PYSITELIB}/synapse/app/client_reader.py 69${PYSITELIB}/synapse/app/client_reader.py
70${PYSITELIB}/synapse/app/client_reader.pyc 70${PYSITELIB}/synapse/app/client_reader.pyc
71${PYSITELIB}/synapse/app/client_reader.pyo 71${PYSITELIB}/synapse/app/client_reader.pyo
72${PYSITELIB}/synapse/app/event_creator.py 72${PYSITELIB}/synapse/app/event_creator.py
73${PYSITELIB}/synapse/app/event_creator.pyc 73${PYSITELIB}/synapse/app/event_creator.pyc
74${PYSITELIB}/synapse/app/event_creator.pyo 74${PYSITELIB}/synapse/app/event_creator.pyo
75${PYSITELIB}/synapse/app/federation_reader.py 75${PYSITELIB}/synapse/app/federation_reader.py
76${PYSITELIB}/synapse/app/federation_reader.pyc 76${PYSITELIB}/synapse/app/federation_reader.pyc
77${PYSITELIB}/synapse/app/federation_reader.pyo 77${PYSITELIB}/synapse/app/federation_reader.pyo
78${PYSITELIB}/synapse/app/federation_sender.py 78${PYSITELIB}/synapse/app/federation_sender.py
79${PYSITELIB}/synapse/app/federation_sender.pyc 79${PYSITELIB}/synapse/app/federation_sender.pyc
80${PYSITELIB}/synapse/app/federation_sender.pyo 80${PYSITELIB}/synapse/app/federation_sender.pyo
81${PYSITELIB}/synapse/app/frontend_proxy.py 81${PYSITELIB}/synapse/app/frontend_proxy.py
82${PYSITELIB}/synapse/app/frontend_proxy.pyc 82${PYSITELIB}/synapse/app/frontend_proxy.pyc
83${PYSITELIB}/synapse/app/frontend_proxy.pyo 83${PYSITELIB}/synapse/app/frontend_proxy.pyo
84${PYSITELIB}/synapse/app/generic_worker.py 84${PYSITELIB}/synapse/app/generic_worker.py
85${PYSITELIB}/synapse/app/generic_worker.pyc 85${PYSITELIB}/synapse/app/generic_worker.pyc
86${PYSITELIB}/synapse/app/generic_worker.pyo 86${PYSITELIB}/synapse/app/generic_worker.pyo
87${PYSITELIB}/synapse/app/homeserver.py 87${PYSITELIB}/synapse/app/homeserver.py
88${PYSITELIB}/synapse/app/homeserver.pyc 88${PYSITELIB}/synapse/app/homeserver.pyc
89${PYSITELIB}/synapse/app/homeserver.pyo 89${PYSITELIB}/synapse/app/homeserver.pyo
90${PYSITELIB}/synapse/app/media_repository.py 90${PYSITELIB}/synapse/app/media_repository.py
91${PYSITELIB}/synapse/app/media_repository.pyc 91${PYSITELIB}/synapse/app/media_repository.pyc
92${PYSITELIB}/synapse/app/media_repository.pyo 92${PYSITELIB}/synapse/app/media_repository.pyo
93${PYSITELIB}/synapse/app/phone_stats_home.py 93${PYSITELIB}/synapse/app/phone_stats_home.py
94${PYSITELIB}/synapse/app/phone_stats_home.pyc 94${PYSITELIB}/synapse/app/phone_stats_home.pyc
95${PYSITELIB}/synapse/app/phone_stats_home.pyo 95${PYSITELIB}/synapse/app/phone_stats_home.pyo
96${PYSITELIB}/synapse/app/pusher.py 96${PYSITELIB}/synapse/app/pusher.py
97${PYSITELIB}/synapse/app/pusher.pyc 97${PYSITELIB}/synapse/app/pusher.pyc
98${PYSITELIB}/synapse/app/pusher.pyo 98${PYSITELIB}/synapse/app/pusher.pyo
99${PYSITELIB}/synapse/app/synchrotron.py 99${PYSITELIB}/synapse/app/synchrotron.py
100${PYSITELIB}/synapse/app/synchrotron.pyc 100${PYSITELIB}/synapse/app/synchrotron.pyc
101${PYSITELIB}/synapse/app/synchrotron.pyo 101${PYSITELIB}/synapse/app/synchrotron.pyo
102${PYSITELIB}/synapse/app/user_dir.py 102${PYSITELIB}/synapse/app/user_dir.py
103${PYSITELIB}/synapse/app/user_dir.pyc 103${PYSITELIB}/synapse/app/user_dir.pyc
104${PYSITELIB}/synapse/app/user_dir.pyo 104${PYSITELIB}/synapse/app/user_dir.pyo
105${PYSITELIB}/synapse/appservice/__init__.py 105${PYSITELIB}/synapse/appservice/__init__.py
106${PYSITELIB}/synapse/appservice/__init__.pyc 106${PYSITELIB}/synapse/appservice/__init__.pyc
107${PYSITELIB}/synapse/appservice/__init__.pyo 107${PYSITELIB}/synapse/appservice/__init__.pyo
108${PYSITELIB}/synapse/appservice/api.py 108${PYSITELIB}/synapse/appservice/api.py
109${PYSITELIB}/synapse/appservice/api.pyc 109${PYSITELIB}/synapse/appservice/api.pyc
110${PYSITELIB}/synapse/appservice/api.pyo 110${PYSITELIB}/synapse/appservice/api.pyo
111${PYSITELIB}/synapse/appservice/scheduler.py 111${PYSITELIB}/synapse/appservice/scheduler.py
112${PYSITELIB}/synapse/appservice/scheduler.pyc 112${PYSITELIB}/synapse/appservice/scheduler.pyc
113${PYSITELIB}/synapse/appservice/scheduler.pyo 113${PYSITELIB}/synapse/appservice/scheduler.pyo
114${PYSITELIB}/synapse/config/__init__.py 114${PYSITELIB}/synapse/config/__init__.py
115${PYSITELIB}/synapse/config/__init__.pyc 115${PYSITELIB}/synapse/config/__init__.pyc
116${PYSITELIB}/synapse/config/__init__.pyo 116${PYSITELIB}/synapse/config/__init__.pyo
117${PYSITELIB}/synapse/config/__main__.py 117${PYSITELIB}/synapse/config/__main__.py
118${PYSITELIB}/synapse/config/__main__.pyc 118${PYSITELIB}/synapse/config/__main__.pyc
119${PYSITELIB}/synapse/config/__main__.pyo 119${PYSITELIB}/synapse/config/__main__.pyo
120${PYSITELIB}/synapse/config/_base.py 120${PYSITELIB}/synapse/config/_base.py
121${PYSITELIB}/synapse/config/_base.pyc 121${PYSITELIB}/synapse/config/_base.pyc
122${PYSITELIB}/synapse/config/_base.pyi 122${PYSITELIB}/synapse/config/_base.pyi
123${PYSITELIB}/synapse/config/_base.pyo 123${PYSITELIB}/synapse/config/_base.pyo
124${PYSITELIB}/synapse/config/_util.py 124${PYSITELIB}/synapse/config/_util.py
125${PYSITELIB}/synapse/config/_util.pyc 125${PYSITELIB}/synapse/config/_util.pyc
126${PYSITELIB}/synapse/config/_util.pyo 126${PYSITELIB}/synapse/config/_util.pyo
127${PYSITELIB}/synapse/config/api.py 127${PYSITELIB}/synapse/config/api.py
128${PYSITELIB}/synapse/config/api.pyc 128${PYSITELIB}/synapse/config/api.pyc
129${PYSITELIB}/synapse/config/api.pyo 129${PYSITELIB}/synapse/config/api.pyo
130${PYSITELIB}/synapse/config/appservice.py 130${PYSITELIB}/synapse/config/appservice.py
131${PYSITELIB}/synapse/config/appservice.pyc 131${PYSITELIB}/synapse/config/appservice.pyc
132${PYSITELIB}/synapse/config/appservice.pyo 132${PYSITELIB}/synapse/config/appservice.pyo
133${PYSITELIB}/synapse/config/auth.py 133${PYSITELIB}/synapse/config/auth.py
134${PYSITELIB}/synapse/config/auth.pyc 134${PYSITELIB}/synapse/config/auth.pyc
135${PYSITELIB}/synapse/config/auth.pyo 135${PYSITELIB}/synapse/config/auth.pyo
136${PYSITELIB}/synapse/config/cache.py 136${PYSITELIB}/synapse/config/cache.py
137${PYSITELIB}/synapse/config/cache.pyc 137${PYSITELIB}/synapse/config/cache.pyc
138${PYSITELIB}/synapse/config/cache.pyo 138${PYSITELIB}/synapse/config/cache.pyo
139${PYSITELIB}/synapse/config/captcha.py 139${PYSITELIB}/synapse/config/captcha.py
140${PYSITELIB}/synapse/config/captcha.pyc 140${PYSITELIB}/synapse/config/captcha.pyc
141${PYSITELIB}/synapse/config/captcha.pyo 141${PYSITELIB}/synapse/config/captcha.pyo
142${PYSITELIB}/synapse/config/cas.py 142${PYSITELIB}/synapse/config/cas.py
143${PYSITELIB}/synapse/config/cas.pyc 143${PYSITELIB}/synapse/config/cas.pyc
144${PYSITELIB}/synapse/config/cas.pyo 144${PYSITELIB}/synapse/config/cas.pyo
145${PYSITELIB}/synapse/config/consent_config.py 145${PYSITELIB}/synapse/config/consent_config.py
146${PYSITELIB}/synapse/config/consent_config.pyc 146${PYSITELIB}/synapse/config/consent_config.pyc
147${PYSITELIB}/synapse/config/consent_config.pyo 147${PYSITELIB}/synapse/config/consent_config.pyo
148${PYSITELIB}/synapse/config/database.py 148${PYSITELIB}/synapse/config/database.py
149${PYSITELIB}/synapse/config/database.pyc 149${PYSITELIB}/synapse/config/database.pyc
150${PYSITELIB}/synapse/config/database.pyo 150${PYSITELIB}/synapse/config/database.pyo
151${PYSITELIB}/synapse/config/emailconfig.py 151${PYSITELIB}/synapse/config/emailconfig.py
152${PYSITELIB}/synapse/config/emailconfig.pyc 152${PYSITELIB}/synapse/config/emailconfig.pyc
153${PYSITELIB}/synapse/config/emailconfig.pyo 153${PYSITELIB}/synapse/config/emailconfig.pyo
154${PYSITELIB}/synapse/config/experimental.py 154${PYSITELIB}/synapse/config/experimental.py
155${PYSITELIB}/synapse/config/experimental.pyc 155${PYSITELIB}/synapse/config/experimental.pyc
156${PYSITELIB}/synapse/config/experimental.pyo 156${PYSITELIB}/synapse/config/experimental.pyo
157${PYSITELIB}/synapse/config/federation.py 157${PYSITELIB}/synapse/config/federation.py
158${PYSITELIB}/synapse/config/federation.pyc 158${PYSITELIB}/synapse/config/federation.pyc
159${PYSITELIB}/synapse/config/federation.pyo 159${PYSITELIB}/synapse/config/federation.pyo
160${PYSITELIB}/synapse/config/groups.py 160${PYSITELIB}/synapse/config/groups.py
161${PYSITELIB}/synapse/config/groups.pyc 161${PYSITELIB}/synapse/config/groups.pyc
162${PYSITELIB}/synapse/config/groups.pyo 162${PYSITELIB}/synapse/config/groups.pyo
163${PYSITELIB}/synapse/config/homeserver.py 163${PYSITELIB}/synapse/config/homeserver.py
164${PYSITELIB}/synapse/config/homeserver.pyc 164${PYSITELIB}/synapse/config/homeserver.pyc
165${PYSITELIB}/synapse/config/homeserver.pyo 165${PYSITELIB}/synapse/config/homeserver.pyo
166${PYSITELIB}/synapse/config/jwt_config.py 166${PYSITELIB}/synapse/config/jwt_config.py
167${PYSITELIB}/synapse/config/jwt_config.pyc 167${PYSITELIB}/synapse/config/jwt_config.pyc
168${PYSITELIB}/synapse/config/jwt_config.pyo 168${PYSITELIB}/synapse/config/jwt_config.pyo
169${PYSITELIB}/synapse/config/key.py 169${PYSITELIB}/synapse/config/key.py
170${PYSITELIB}/synapse/config/key.pyc 170${PYSITELIB}/synapse/config/key.pyc
171${PYSITELIB}/synapse/config/key.pyo 171${PYSITELIB}/synapse/config/key.pyo
172${PYSITELIB}/synapse/config/logger.py 172${PYSITELIB}/synapse/config/logger.py
173${PYSITELIB}/synapse/config/logger.pyc 173${PYSITELIB}/synapse/config/logger.pyc
174${PYSITELIB}/synapse/config/logger.pyo 174${PYSITELIB}/synapse/config/logger.pyo
175${PYSITELIB}/synapse/config/metrics.py 175${PYSITELIB}/synapse/config/metrics.py
176${PYSITELIB}/synapse/config/metrics.pyc 176${PYSITELIB}/synapse/config/metrics.pyc
177${PYSITELIB}/synapse/config/metrics.pyo 177${PYSITELIB}/synapse/config/metrics.pyo
178${PYSITELIB}/synapse/config/oidc_config.py 178${PYSITELIB}/synapse/config/oidc_config.py
179${PYSITELIB}/synapse/config/oidc_config.pyc 179${PYSITELIB}/synapse/config/oidc_config.pyc
180${PYSITELIB}/synapse/config/oidc_config.pyo 180${PYSITELIB}/synapse/config/oidc_config.pyo
181${PYSITELIB}/synapse/config/password_auth_providers.py 181${PYSITELIB}/synapse/config/password_auth_providers.py
182${PYSITELIB}/synapse/config/password_auth_providers.pyc 182${PYSITELIB}/synapse/config/password_auth_providers.pyc
183${PYSITELIB}/synapse/config/password_auth_providers.pyo 183${PYSITELIB}/synapse/config/password_auth_providers.pyo
184${PYSITELIB}/synapse/config/push.py 184${PYSITELIB}/synapse/config/push.py
185${PYSITELIB}/synapse/config/push.pyc 185${PYSITELIB}/synapse/config/push.pyc
186${PYSITELIB}/synapse/config/push.pyo 186${PYSITELIB}/synapse/config/push.pyo
187${PYSITELIB}/synapse/config/ratelimiting.py 187${PYSITELIB}/synapse/config/ratelimiting.py
188${PYSITELIB}/synapse/config/ratelimiting.pyc 188${PYSITELIB}/synapse/config/ratelimiting.pyc
189${PYSITELIB}/synapse/config/ratelimiting.pyo 189${PYSITELIB}/synapse/config/ratelimiting.pyo
190${PYSITELIB}/synapse/config/redis.py 190${PYSITELIB}/synapse/config/redis.py
191${PYSITELIB}/synapse/config/redis.pyc 191${PYSITELIB}/synapse/config/redis.pyc
192${PYSITELIB}/synapse/config/redis.pyo 192${PYSITELIB}/synapse/config/redis.pyo
193${PYSITELIB}/synapse/config/registration.py 193${PYSITELIB}/synapse/config/registration.py
194${PYSITELIB}/synapse/config/registration.pyc 194${PYSITELIB}/synapse/config/registration.pyc
195${PYSITELIB}/synapse/config/registration.pyo 195${PYSITELIB}/synapse/config/registration.pyo
196${PYSITELIB}/synapse/config/repository.py 196${PYSITELIB}/synapse/config/repository.py
197${PYSITELIB}/synapse/config/repository.pyc 197${PYSITELIB}/synapse/config/repository.pyc
198${PYSITELIB}/synapse/config/repository.pyo 198${PYSITELIB}/synapse/config/repository.pyo
199${PYSITELIB}/synapse/config/room.py 199${PYSITELIB}/synapse/config/room.py
200${PYSITELIB}/synapse/config/room.pyc 200${PYSITELIB}/synapse/config/room.pyc
201${PYSITELIB}/synapse/config/room.pyo 201${PYSITELIB}/synapse/config/room.pyo
202${PYSITELIB}/synapse/config/room_directory.py 202${PYSITELIB}/synapse/config/room_directory.py
203${PYSITELIB}/synapse/config/room_directory.pyc 203${PYSITELIB}/synapse/config/room_directory.pyc
204${PYSITELIB}/synapse/config/room_directory.pyo 204${PYSITELIB}/synapse/config/room_directory.pyo
205${PYSITELIB}/synapse/config/saml2_config.py 205${PYSITELIB}/synapse/config/saml2_config.py
206${PYSITELIB}/synapse/config/saml2_config.pyc 206${PYSITELIB}/synapse/config/saml2_config.pyc
207${PYSITELIB}/synapse/config/saml2_config.pyo 207${PYSITELIB}/synapse/config/saml2_config.pyo
208${PYSITELIB}/synapse/config/server.py 208${PYSITELIB}/synapse/config/server.py
209${PYSITELIB}/synapse/config/server.pyc 209${PYSITELIB}/synapse/config/server.pyc
210${PYSITELIB}/synapse/config/server.pyo 210${PYSITELIB}/synapse/config/server.pyo
211${PYSITELIB}/synapse/config/server_notices_config.py 211${PYSITELIB}/synapse/config/server_notices_config.py
212${PYSITELIB}/synapse/config/server_notices_config.pyc 212${PYSITELIB}/synapse/config/server_notices_config.pyc
213${PYSITELIB}/synapse/config/server_notices_config.pyo 213${PYSITELIB}/synapse/config/server_notices_config.pyo
214${PYSITELIB}/synapse/config/spam_checker.py 214${PYSITELIB}/synapse/config/spam_checker.py
215${PYSITELIB}/synapse/config/spam_checker.pyc 215${PYSITELIB}/synapse/config/spam_checker.pyc
216${PYSITELIB}/synapse/config/spam_checker.pyo 216${PYSITELIB}/synapse/config/spam_checker.pyo
217${PYSITELIB}/synapse/config/sso.py 217${PYSITELIB}/synapse/config/sso.py
218${PYSITELIB}/synapse/config/sso.pyc 218${PYSITELIB}/synapse/config/sso.pyc
219${PYSITELIB}/synapse/config/sso.pyo 219${PYSITELIB}/synapse/config/sso.pyo
220${PYSITELIB}/synapse/config/stats.py 220${PYSITELIB}/synapse/config/stats.py
221${PYSITELIB}/synapse/config/stats.pyc 221${PYSITELIB}/synapse/config/stats.pyc
222${PYSITELIB}/synapse/config/stats.pyo 222${PYSITELIB}/synapse/config/stats.pyo
223${PYSITELIB}/synapse/config/third_party_event_rules.py 223${PYSITELIB}/synapse/config/third_party_event_rules.py
224${PYSITELIB}/synapse/config/third_party_event_rules.pyc 224${PYSITELIB}/synapse/config/third_party_event_rules.pyc
225${PYSITELIB}/synapse/config/third_party_event_rules.pyo 225${PYSITELIB}/synapse/config/third_party_event_rules.pyo
226${PYSITELIB}/synapse/config/tls.py 226${PYSITELIB}/synapse/config/tls.py
227${PYSITELIB}/synapse/config/tls.pyc 227${PYSITELIB}/synapse/config/tls.pyc
228${PYSITELIB}/synapse/config/tls.pyo 228${PYSITELIB}/synapse/config/tls.pyo
229${PYSITELIB}/synapse/config/tracer.py 229${PYSITELIB}/synapse/config/tracer.py
230${PYSITELIB}/synapse/config/tracer.pyc 230${PYSITELIB}/synapse/config/tracer.pyc
231${PYSITELIB}/synapse/config/tracer.pyo 231${PYSITELIB}/synapse/config/tracer.pyo
232${PYSITELIB}/synapse/config/user_directory.py 232${PYSITELIB}/synapse/config/user_directory.py
233${PYSITELIB}/synapse/config/user_directory.pyc 233${PYSITELIB}/synapse/config/user_directory.pyc
234${PYSITELIB}/synapse/config/user_directory.pyo 234${PYSITELIB}/synapse/config/user_directory.pyo
235${PYSITELIB}/synapse/config/voip.py 235${PYSITELIB}/synapse/config/voip.py
236${PYSITELIB}/synapse/config/voip.pyc 236${PYSITELIB}/synapse/config/voip.pyc
237${PYSITELIB}/synapse/config/voip.pyo 237${PYSITELIB}/synapse/config/voip.pyo
238${PYSITELIB}/synapse/config/workers.py 238${PYSITELIB}/synapse/config/workers.py
239${PYSITELIB}/synapse/config/workers.pyc 239${PYSITELIB}/synapse/config/workers.pyc
240${PYSITELIB}/synapse/config/workers.pyo 240${PYSITELIB}/synapse/config/workers.pyo
241${PYSITELIB}/synapse/crypto/__init__.py 241${PYSITELIB}/synapse/crypto/__init__.py
242${PYSITELIB}/synapse/crypto/__init__.pyc 242${PYSITELIB}/synapse/crypto/__init__.pyc
243${PYSITELIB}/synapse/crypto/__init__.pyo 243${PYSITELIB}/synapse/crypto/__init__.pyo
244${PYSITELIB}/synapse/crypto/context_factory.py 244${PYSITELIB}/synapse/crypto/context_factory.py
245${PYSITELIB}/synapse/crypto/context_factory.pyc 245${PYSITELIB}/synapse/crypto/context_factory.pyc
246${PYSITELIB}/synapse/crypto/context_factory.pyo 246${PYSITELIB}/synapse/crypto/context_factory.pyo
247${PYSITELIB}/synapse/crypto/event_signing.py 247${PYSITELIB}/synapse/crypto/event_signing.py
248${PYSITELIB}/synapse/crypto/event_signing.pyc 248${PYSITELIB}/synapse/crypto/event_signing.pyc
249${PYSITELIB}/synapse/crypto/event_signing.pyo 249${PYSITELIB}/synapse/crypto/event_signing.pyo
250${PYSITELIB}/synapse/crypto/keyring.py 250${PYSITELIB}/synapse/crypto/keyring.py
251${PYSITELIB}/synapse/crypto/keyring.pyc 251${PYSITELIB}/synapse/crypto/keyring.pyc
252${PYSITELIB}/synapse/crypto/keyring.pyo 252${PYSITELIB}/synapse/crypto/keyring.pyo
253${PYSITELIB}/synapse/event_auth.py 253${PYSITELIB}/synapse/event_auth.py
254${PYSITELIB}/synapse/event_auth.pyc 254${PYSITELIB}/synapse/event_auth.pyc
255${PYSITELIB}/synapse/event_auth.pyo 255${PYSITELIB}/synapse/event_auth.pyo
256${PYSITELIB}/synapse/events/__init__.py 256${PYSITELIB}/synapse/events/__init__.py
257${PYSITELIB}/synapse/events/__init__.pyc 257${PYSITELIB}/synapse/events/__init__.pyc
258${PYSITELIB}/synapse/events/__init__.pyo 258${PYSITELIB}/synapse/events/__init__.pyo
259${PYSITELIB}/synapse/events/builder.py 259${PYSITELIB}/synapse/events/builder.py
260${PYSITELIB}/synapse/events/builder.pyc 260${PYSITELIB}/synapse/events/builder.pyc
261${PYSITELIB}/synapse/events/builder.pyo 261${PYSITELIB}/synapse/events/builder.pyo
 262${PYSITELIB}/synapse/events/presence_router.py
 263${PYSITELIB}/synapse/events/presence_router.pyc
 264${PYSITELIB}/synapse/events/presence_router.pyo
262${PYSITELIB}/synapse/events/snapshot.py 265${PYSITELIB}/synapse/events/snapshot.py
263${PYSITELIB}/synapse/events/snapshot.pyc 266${PYSITELIB}/synapse/events/snapshot.pyc
264${PYSITELIB}/synapse/events/snapshot.pyo 267${PYSITELIB}/synapse/events/snapshot.pyo
265${PYSITELIB}/synapse/events/spamcheck.py 268${PYSITELIB}/synapse/events/spamcheck.py
266${PYSITELIB}/synapse/events/spamcheck.pyc 269${PYSITELIB}/synapse/events/spamcheck.pyc
267${PYSITELIB}/synapse/events/spamcheck.pyo 270${PYSITELIB}/synapse/events/spamcheck.pyo
268${PYSITELIB}/synapse/events/third_party_rules.py 271${PYSITELIB}/synapse/events/third_party_rules.py
269${PYSITELIB}/synapse/events/third_party_rules.pyc 272${PYSITELIB}/synapse/events/third_party_rules.pyc
270${PYSITELIB}/synapse/events/third_party_rules.pyo 273${PYSITELIB}/synapse/events/third_party_rules.pyo
271${PYSITELIB}/synapse/events/utils.py 274${PYSITELIB}/synapse/events/utils.py
272${PYSITELIB}/synapse/events/utils.pyc 275${PYSITELIB}/synapse/events/utils.pyc
273${PYSITELIB}/synapse/events/utils.pyo 276${PYSITELIB}/synapse/events/utils.pyo
274${PYSITELIB}/synapse/events/validator.py 277${PYSITELIB}/synapse/events/validator.py
275${PYSITELIB}/synapse/events/validator.pyc 278${PYSITELIB}/synapse/events/validator.pyc
276${PYSITELIB}/synapse/events/validator.pyo 279${PYSITELIB}/synapse/events/validator.pyo
277${PYSITELIB}/synapse/federation/__init__.py 280${PYSITELIB}/synapse/federation/__init__.py
278${PYSITELIB}/synapse/federation/__init__.pyc 281${PYSITELIB}/synapse/federation/__init__.pyc
279${PYSITELIB}/synapse/federation/__init__.pyo 282${PYSITELIB}/synapse/federation/__init__.pyo
280${PYSITELIB}/synapse/federation/federation_base.py 283${PYSITELIB}/synapse/federation/federation_base.py
281${PYSITELIB}/synapse/federation/federation_base.pyc 284${PYSITELIB}/synapse/federation/federation_base.pyc
282${PYSITELIB}/synapse/federation/federation_base.pyo 285${PYSITELIB}/synapse/federation/federation_base.pyo
283${PYSITELIB}/synapse/federation/federation_client.py 286${PYSITELIB}/synapse/federation/federation_client.py
284${PYSITELIB}/synapse/federation/federation_client.pyc 287${PYSITELIB}/synapse/federation/federation_client.pyc
285${PYSITELIB}/synapse/federation/federation_client.pyo 288${PYSITELIB}/synapse/federation/federation_client.pyo
286${PYSITELIB}/synapse/federation/federation_server.py 289${PYSITELIB}/synapse/federation/federation_server.py
287${PYSITELIB}/synapse/federation/federation_server.pyc 290${PYSITELIB}/synapse/federation/federation_server.pyc
288${PYSITELIB}/synapse/federation/federation_server.pyo 291${PYSITELIB}/synapse/federation/federation_server.pyo
289${PYSITELIB}/synapse/federation/persistence.py 292${PYSITELIB}/synapse/federation/persistence.py
290${PYSITELIB}/synapse/federation/persistence.pyc 293${PYSITELIB}/synapse/federation/persistence.pyc
291${PYSITELIB}/synapse/federation/persistence.pyo 294${PYSITELIB}/synapse/federation/persistence.pyo
292${PYSITELIB}/synapse/federation/send_queue.py 295${PYSITELIB}/synapse/federation/send_queue.py
293${PYSITELIB}/synapse/federation/send_queue.pyc 296${PYSITELIB}/synapse/federation/send_queue.pyc
294${PYSITELIB}/synapse/federation/send_queue.pyo 297${PYSITELIB}/synapse/federation/send_queue.pyo
295${PYSITELIB}/synapse/federation/sender/__init__.py 298${PYSITELIB}/synapse/federation/sender/__init__.py
296${PYSITELIB}/synapse/federation/sender/__init__.pyc 299${PYSITELIB}/synapse/federation/sender/__init__.pyc
297${PYSITELIB}/synapse/federation/sender/__init__.pyo 300${PYSITELIB}/synapse/federation/sender/__init__.pyo
298${PYSITELIB}/synapse/federation/sender/per_destination_queue.py 301${PYSITELIB}/synapse/federation/sender/per_destination_queue.py
299${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyc 302${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyc
300${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyo 303${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyo
301${PYSITELIB}/synapse/federation/sender/transaction_manager.py 304${PYSITELIB}/synapse/federation/sender/transaction_manager.py
302${PYSITELIB}/synapse/federation/sender/transaction_manager.pyc 305${PYSITELIB}/synapse/federation/sender/transaction_manager.pyc
303${PYSITELIB}/synapse/federation/sender/transaction_manager.pyo 306${PYSITELIB}/synapse/federation/sender/transaction_manager.pyo
304${PYSITELIB}/synapse/federation/transport/__init__.py 307${PYSITELIB}/synapse/federation/transport/__init__.py
305${PYSITELIB}/synapse/federation/transport/__init__.pyc 308${PYSITELIB}/synapse/federation/transport/__init__.pyc
306${PYSITELIB}/synapse/federation/transport/__init__.pyo 309${PYSITELIB}/synapse/federation/transport/__init__.pyo
307${PYSITELIB}/synapse/federation/transport/client.py 310${PYSITELIB}/synapse/federation/transport/client.py
308${PYSITELIB}/synapse/federation/transport/client.pyc 311${PYSITELIB}/synapse/federation/transport/client.pyc
309${PYSITELIB}/synapse/federation/transport/client.pyo 312${PYSITELIB}/synapse/federation/transport/client.pyo
310${PYSITELIB}/synapse/federation/transport/server.py 313${PYSITELIB}/synapse/federation/transport/server.py
311${PYSITELIB}/synapse/federation/transport/server.pyc 314${PYSITELIB}/synapse/federation/transport/server.pyc
312${PYSITELIB}/synapse/federation/transport/server.pyo 315${PYSITELIB}/synapse/federation/transport/server.pyo
313${PYSITELIB}/synapse/federation/units.py 316${PYSITELIB}/synapse/federation/units.py
314${PYSITELIB}/synapse/federation/units.pyc 317${PYSITELIB}/synapse/federation/units.pyc
315${PYSITELIB}/synapse/federation/units.pyo 318${PYSITELIB}/synapse/federation/units.pyo
316${PYSITELIB}/synapse/groups/__init__.py 319${PYSITELIB}/synapse/groups/__init__.py
317${PYSITELIB}/synapse/groups/__init__.pyc 320${PYSITELIB}/synapse/groups/__init__.pyc
318${PYSITELIB}/synapse/groups/__init__.pyo 321${PYSITELIB}/synapse/groups/__init__.pyo
319${PYSITELIB}/synapse/groups/attestations.py 322${PYSITELIB}/synapse/groups/attestations.py
320${PYSITELIB}/synapse/groups/attestations.pyc 323${PYSITELIB}/synapse/groups/attestations.pyc
321${PYSITELIB}/synapse/groups/attestations.pyo 324${PYSITELIB}/synapse/groups/attestations.pyo
322${PYSITELIB}/synapse/groups/groups_server.py 325${PYSITELIB}/synapse/groups/groups_server.py
323${PYSITELIB}/synapse/groups/groups_server.pyc 326${PYSITELIB}/synapse/groups/groups_server.pyc
324${PYSITELIB}/synapse/groups/groups_server.pyo 327${PYSITELIB}/synapse/groups/groups_server.pyo
325${PYSITELIB}/synapse/handlers/__init__.py 328${PYSITELIB}/synapse/handlers/__init__.py
326${PYSITELIB}/synapse/handlers/__init__.pyc 329${PYSITELIB}/synapse/handlers/__init__.pyc
327${PYSITELIB}/synapse/handlers/__init__.pyo 330${PYSITELIB}/synapse/handlers/__init__.pyo
328${PYSITELIB}/synapse/handlers/_base.py 331${PYSITELIB}/synapse/handlers/_base.py
329${PYSITELIB}/synapse/handlers/_base.pyc 332${PYSITELIB}/synapse/handlers/_base.pyc
330${PYSITELIB}/synapse/handlers/_base.pyo 333${PYSITELIB}/synapse/handlers/_base.pyo
331${PYSITELIB}/synapse/handlers/account_data.py 334${PYSITELIB}/synapse/handlers/account_data.py
332${PYSITELIB}/synapse/handlers/account_data.pyc 335${PYSITELIB}/synapse/handlers/account_data.pyc
333${PYSITELIB}/synapse/handlers/account_data.pyo 336${PYSITELIB}/synapse/handlers/account_data.pyo
334${PYSITELIB}/synapse/handlers/account_validity.py 337${PYSITELIB}/synapse/handlers/account_validity.py
335${PYSITELIB}/synapse/handlers/account_validity.pyc 338${PYSITELIB}/synapse/handlers/account_validity.pyc
336${PYSITELIB}/synapse/handlers/account_validity.pyo 339${PYSITELIB}/synapse/handlers/account_validity.pyo
337${PYSITELIB}/synapse/handlers/acme.py 340${PYSITELIB}/synapse/handlers/acme.py
338${PYSITELIB}/synapse/handlers/acme.pyc 341${PYSITELIB}/synapse/handlers/acme.pyc
339${PYSITELIB}/synapse/handlers/acme.pyo 342${PYSITELIB}/synapse/handlers/acme.pyo
340${PYSITELIB}/synapse/handlers/acme_issuing_service.py 343${PYSITELIB}/synapse/handlers/acme_issuing_service.py
341${PYSITELIB}/synapse/handlers/acme_issuing_service.pyc 344${PYSITELIB}/synapse/handlers/acme_issuing_service.pyc
342${PYSITELIB}/synapse/handlers/acme_issuing_service.pyo 345${PYSITELIB}/synapse/handlers/acme_issuing_service.pyo
343${PYSITELIB}/synapse/handlers/admin.py 346${PYSITELIB}/synapse/handlers/admin.py
344${PYSITELIB}/synapse/handlers/admin.pyc 347${PYSITELIB}/synapse/handlers/admin.pyc
345${PYSITELIB}/synapse/handlers/admin.pyo 348${PYSITELIB}/synapse/handlers/admin.pyo
346${PYSITELIB}/synapse/handlers/appservice.py 349${PYSITELIB}/synapse/handlers/appservice.py
347${PYSITELIB}/synapse/handlers/appservice.pyc 350${PYSITELIB}/synapse/handlers/appservice.pyc
348${PYSITELIB}/synapse/handlers/appservice.pyo 351${PYSITELIB}/synapse/handlers/appservice.pyo
349${PYSITELIB}/synapse/handlers/auth.py 352${PYSITELIB}/synapse/handlers/auth.py
350${PYSITELIB}/synapse/handlers/auth.pyc 353${PYSITELIB}/synapse/handlers/auth.pyc
351${PYSITELIB}/synapse/handlers/auth.pyo 354${PYSITELIB}/synapse/handlers/auth.pyo
352${PYSITELIB}/synapse/handlers/cas_handler.py 355${PYSITELIB}/synapse/handlers/cas_handler.py
353${PYSITELIB}/synapse/handlers/cas_handler.pyc 356${PYSITELIB}/synapse/handlers/cas_handler.pyc
354${PYSITELIB}/synapse/handlers/cas_handler.pyo 357${PYSITELIB}/synapse/handlers/cas_handler.pyo
355${PYSITELIB}/synapse/handlers/deactivate_account.py 358${PYSITELIB}/synapse/handlers/deactivate_account.py
356${PYSITELIB}/synapse/handlers/deactivate_account.pyc 359${PYSITELIB}/synapse/handlers/deactivate_account.pyc
357${PYSITELIB}/synapse/handlers/deactivate_account.pyo 360${PYSITELIB}/synapse/handlers/deactivate_account.pyo
358${PYSITELIB}/synapse/handlers/device.py 361${PYSITELIB}/synapse/handlers/device.py
359${PYSITELIB}/synapse/handlers/device.pyc 362${PYSITELIB}/synapse/handlers/device.pyc
360${PYSITELIB}/synapse/handlers/device.pyo 363${PYSITELIB}/synapse/handlers/device.pyo
361${PYSITELIB}/synapse/handlers/devicemessage.py 364${PYSITELIB}/synapse/handlers/devicemessage.py
362${PYSITELIB}/synapse/handlers/devicemessage.pyc 365${PYSITELIB}/synapse/handlers/devicemessage.pyc
363${PYSITELIB}/synapse/handlers/devicemessage.pyo 366${PYSITELIB}/synapse/handlers/devicemessage.pyo
364${PYSITELIB}/synapse/handlers/directory.py 367${PYSITELIB}/synapse/handlers/directory.py
365${PYSITELIB}/synapse/handlers/directory.pyc 368${PYSITELIB}/synapse/handlers/directory.pyc
366${PYSITELIB}/synapse/handlers/directory.pyo 369${PYSITELIB}/synapse/handlers/directory.pyo
367${PYSITELIB}/synapse/handlers/e2e_keys.py 370${PYSITELIB}/synapse/handlers/e2e_keys.py
368${PYSITELIB}/synapse/handlers/e2e_keys.pyc 371${PYSITELIB}/synapse/handlers/e2e_keys.pyc
369${PYSITELIB}/synapse/handlers/e2e_keys.pyo 372${PYSITELIB}/synapse/handlers/e2e_keys.pyo
370${PYSITELIB}/synapse/handlers/e2e_room_keys.py 373${PYSITELIB}/synapse/handlers/e2e_room_keys.py
371${PYSITELIB}/synapse/handlers/e2e_room_keys.pyc 374${PYSITELIB}/synapse/handlers/e2e_room_keys.pyc
372${PYSITELIB}/synapse/handlers/e2e_room_keys.pyo 375${PYSITELIB}/synapse/handlers/e2e_room_keys.pyo
373${PYSITELIB}/synapse/handlers/events.py 376${PYSITELIB}/synapse/handlers/events.py
374${PYSITELIB}/synapse/handlers/events.pyc 377${PYSITELIB}/synapse/handlers/events.pyc
375${PYSITELIB}/synapse/handlers/events.pyo 378${PYSITELIB}/synapse/handlers/events.pyo
376${PYSITELIB}/synapse/handlers/federation.py 379${PYSITELIB}/synapse/handlers/federation.py
377${PYSITELIB}/synapse/handlers/federation.pyc 380${PYSITELIB}/synapse/handlers/federation.pyc
378${PYSITELIB}/synapse/handlers/federation.pyo 381${PYSITELIB}/synapse/handlers/federation.pyo
379${PYSITELIB}/synapse/handlers/groups_local.py 382${PYSITELIB}/synapse/handlers/groups_local.py
380${PYSITELIB}/synapse/handlers/groups_local.pyc 383${PYSITELIB}/synapse/handlers/groups_local.pyc
381${PYSITELIB}/synapse/handlers/groups_local.pyo 384${PYSITELIB}/synapse/handlers/groups_local.pyo
382${PYSITELIB}/synapse/handlers/identity.py 385${PYSITELIB}/synapse/handlers/identity.py
383${PYSITELIB}/synapse/handlers/identity.pyc 386${PYSITELIB}/synapse/handlers/identity.pyc
384${PYSITELIB}/synapse/handlers/identity.pyo 387${PYSITELIB}/synapse/handlers/identity.pyo
385${PYSITELIB}/synapse/handlers/initial_sync.py 388${PYSITELIB}/synapse/handlers/initial_sync.py
386${PYSITELIB}/synapse/handlers/initial_sync.pyc 389${PYSITELIB}/synapse/handlers/initial_sync.pyc
387${PYSITELIB}/synapse/handlers/initial_sync.pyo 390${PYSITELIB}/synapse/handlers/initial_sync.pyo
388${PYSITELIB}/synapse/handlers/message.py 391${PYSITELIB}/synapse/handlers/message.py
389${PYSITELIB}/synapse/handlers/message.pyc 392${PYSITELIB}/synapse/handlers/message.pyc
390${PYSITELIB}/synapse/handlers/message.pyo 393${PYSITELIB}/synapse/handlers/message.pyo
391${PYSITELIB}/synapse/handlers/oidc_handler.py 394${PYSITELIB}/synapse/handlers/oidc_handler.py
392${PYSITELIB}/synapse/handlers/oidc_handler.pyc 395${PYSITELIB}/synapse/handlers/oidc_handler.pyc
393${PYSITELIB}/synapse/handlers/oidc_handler.pyo 396${PYSITELIB}/synapse/handlers/oidc_handler.pyo
394${PYSITELIB}/synapse/handlers/pagination.py 397${PYSITELIB}/synapse/handlers/pagination.py
395${PYSITELIB}/synapse/handlers/pagination.pyc 398${PYSITELIB}/synapse/handlers/pagination.pyc
396${PYSITELIB}/synapse/handlers/pagination.pyo 399${PYSITELIB}/synapse/handlers/pagination.pyo
397${PYSITELIB}/synapse/handlers/password_policy.py 400${PYSITELIB}/synapse/handlers/password_policy.py
398${PYSITELIB}/synapse/handlers/password_policy.pyc 401${PYSITELIB}/synapse/handlers/password_policy.pyc
399${PYSITELIB}/synapse/handlers/password_policy.pyo 402${PYSITELIB}/synapse/handlers/password_policy.pyo
400${PYSITELIB}/synapse/handlers/presence.py 403${PYSITELIB}/synapse/handlers/presence.py
401${PYSITELIB}/synapse/handlers/presence.pyc 404${PYSITELIB}/synapse/handlers/presence.pyc
402${PYSITELIB}/synapse/handlers/presence.pyo 405${PYSITELIB}/synapse/handlers/presence.pyo
403${PYSITELIB}/synapse/handlers/profile.py 406${PYSITELIB}/synapse/handlers/profile.py
404${PYSITELIB}/synapse/handlers/profile.pyc 407${PYSITELIB}/synapse/handlers/profile.pyc
405${PYSITELIB}/synapse/handlers/profile.pyo 408${PYSITELIB}/synapse/handlers/profile.pyo
406${PYSITELIB}/synapse/handlers/read_marker.py 409${PYSITELIB}/synapse/handlers/read_marker.py
407${PYSITELIB}/synapse/handlers/read_marker.pyc 410${PYSITELIB}/synapse/handlers/read_marker.pyc
408${PYSITELIB}/synapse/handlers/read_marker.pyo 411${PYSITELIB}/synapse/handlers/read_marker.pyo
409${PYSITELIB}/synapse/handlers/receipts.py 412${PYSITELIB}/synapse/handlers/receipts.py
410${PYSITELIB}/synapse/handlers/receipts.pyc 413${PYSITELIB}/synapse/handlers/receipts.pyc
411${PYSITELIB}/synapse/handlers/receipts.pyo 414${PYSITELIB}/synapse/handlers/receipts.pyo
412${PYSITELIB}/synapse/handlers/register.py 415${PYSITELIB}/synapse/handlers/register.py
413${PYSITELIB}/synapse/handlers/register.pyc 416${PYSITELIB}/synapse/handlers/register.pyc
414${PYSITELIB}/synapse/handlers/register.pyo 417${PYSITELIB}/synapse/handlers/register.pyo
415${PYSITELIB}/synapse/handlers/room.py 418${PYSITELIB}/synapse/handlers/room.py
416${PYSITELIB}/synapse/handlers/room.pyc 419${PYSITELIB}/synapse/handlers/room.pyc
417${PYSITELIB}/synapse/handlers/room.pyo 420${PYSITELIB}/synapse/handlers/room.pyo
418${PYSITELIB}/synapse/handlers/room_list.py 421${PYSITELIB}/synapse/handlers/room_list.py
419${PYSITELIB}/synapse/handlers/room_list.pyc 422${PYSITELIB}/synapse/handlers/room_list.pyc
420${PYSITELIB}/synapse/handlers/room_list.pyo 423${PYSITELIB}/synapse/handlers/room_list.pyo
421${PYSITELIB}/synapse/handlers/room_member.py 424${PYSITELIB}/synapse/handlers/room_member.py
422${PYSITELIB}/synapse/handlers/room_member.pyc 425${PYSITELIB}/synapse/handlers/room_member.pyc
423${PYSITELIB}/synapse/handlers/room_member.pyo 426${PYSITELIB}/synapse/handlers/room_member.pyo
424${PYSITELIB}/synapse/handlers/room_member_worker.py 427${PYSITELIB}/synapse/handlers/room_member_worker.py
425${PYSITELIB}/synapse/handlers/room_member_worker.pyc 428${PYSITELIB}/synapse/handlers/room_member_worker.pyc
426${PYSITELIB}/synapse/handlers/room_member_worker.pyo 429${PYSITELIB}/synapse/handlers/room_member_worker.pyo
427${PYSITELIB}/synapse/handlers/saml_handler.py 430${PYSITELIB}/synapse/handlers/saml_handler.py
428${PYSITELIB}/synapse/handlers/saml_handler.pyc 431${PYSITELIB}/synapse/handlers/saml_handler.pyc
429${PYSITELIB}/synapse/handlers/saml_handler.pyo 432${PYSITELIB}/synapse/handlers/saml_handler.pyo
430${PYSITELIB}/synapse/handlers/search.py 433${PYSITELIB}/synapse/handlers/search.py
431${PYSITELIB}/synapse/handlers/search.pyc 434${PYSITELIB}/synapse/handlers/search.pyc
432${PYSITELIB}/synapse/handlers/search.pyo 435${PYSITELIB}/synapse/handlers/search.pyo
433${PYSITELIB}/synapse/handlers/set_password.py 436${PYSITELIB}/synapse/handlers/set_password.py
434${PYSITELIB}/synapse/handlers/set_password.pyc 437${PYSITELIB}/synapse/handlers/set_password.pyc
435${PYSITELIB}/synapse/handlers/set_password.pyo 438${PYSITELIB}/synapse/handlers/set_password.pyo
 439${PYSITELIB}/synapse/handlers/space_summary.py
 440${PYSITELIB}/synapse/handlers/space_summary.pyc
 441${PYSITELIB}/synapse/handlers/space_summary.pyo
436${PYSITELIB}/synapse/handlers/sso.py 442${PYSITELIB}/synapse/handlers/sso.py
437${PYSITELIB}/synapse/handlers/sso.pyc 443${PYSITELIB}/synapse/handlers/sso.pyc
438${PYSITELIB}/synapse/handlers/sso.pyo 444${PYSITELIB}/synapse/handlers/sso.pyo
439${PYSITELIB}/synapse/handlers/state_deltas.py 445${PYSITELIB}/synapse/handlers/state_deltas.py
440${PYSITELIB}/synapse/handlers/state_deltas.pyc 446${PYSITELIB}/synapse/handlers/state_deltas.pyc
441${PYSITELIB}/synapse/handlers/state_deltas.pyo 447${PYSITELIB}/synapse/handlers/state_deltas.pyo
442${PYSITELIB}/synapse/handlers/stats.py 448${PYSITELIB}/synapse/handlers/stats.py
443${PYSITELIB}/synapse/handlers/stats.pyc 449${PYSITELIB}/synapse/handlers/stats.pyc
444${PYSITELIB}/synapse/handlers/stats.pyo 450${PYSITELIB}/synapse/handlers/stats.pyo
445${PYSITELIB}/synapse/handlers/sync.py 451${PYSITELIB}/synapse/handlers/sync.py
446${PYSITELIB}/synapse/handlers/sync.pyc 452${PYSITELIB}/synapse/handlers/sync.pyc
447${PYSITELIB}/synapse/handlers/sync.pyo 453${PYSITELIB}/synapse/handlers/sync.pyo
448${PYSITELIB}/synapse/handlers/typing.py 454${PYSITELIB}/synapse/handlers/typing.py
449${PYSITELIB}/synapse/handlers/typing.pyc 455${PYSITELIB}/synapse/handlers/typing.pyc
450${PYSITELIB}/synapse/handlers/typing.pyo 456${PYSITELIB}/synapse/handlers/typing.pyo
451${PYSITELIB}/synapse/handlers/ui_auth/__init__.py 457${PYSITELIB}/synapse/handlers/ui_auth/__init__.py
452${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyc 458${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyc
453${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyo 459${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyo
454${PYSITELIB}/synapse/handlers/ui_auth/checkers.py 460${PYSITELIB}/synapse/handlers/ui_auth/checkers.py
455${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyc 461${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyc
456${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyo 462${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyo
457${PYSITELIB}/synapse/handlers/user_directory.py 463${PYSITELIB}/synapse/handlers/user_directory.py
458${PYSITELIB}/synapse/handlers/user_directory.pyc 464${PYSITELIB}/synapse/handlers/user_directory.pyc
459${PYSITELIB}/synapse/handlers/user_directory.pyo 465${PYSITELIB}/synapse/handlers/user_directory.pyo
460${PYSITELIB}/synapse/http/__init__.py 466${PYSITELIB}/synapse/http/__init__.py
461${PYSITELIB}/synapse/http/__init__.pyc 467${PYSITELIB}/synapse/http/__init__.pyc
462${PYSITELIB}/synapse/http/__init__.pyo 468${PYSITELIB}/synapse/http/__init__.pyo
463${PYSITELIB}/synapse/http/additional_resource.py 469${PYSITELIB}/synapse/http/additional_resource.py
464${PYSITELIB}/synapse/http/additional_resource.pyc 470${PYSITELIB}/synapse/http/additional_resource.pyc
465${PYSITELIB}/synapse/http/additional_resource.pyo 471${PYSITELIB}/synapse/http/additional_resource.pyo
466${PYSITELIB}/synapse/http/client.py 472${PYSITELIB}/synapse/http/client.py
467${PYSITELIB}/synapse/http/client.pyc 473${PYSITELIB}/synapse/http/client.pyc
468${PYSITELIB}/synapse/http/client.pyo 474${PYSITELIB}/synapse/http/client.pyo
469${PYSITELIB}/synapse/http/connectproxyclient.py 475${PYSITELIB}/synapse/http/connectproxyclient.py
470${PYSITELIB}/synapse/http/connectproxyclient.pyc 476${PYSITELIB}/synapse/http/connectproxyclient.pyc
471${PYSITELIB}/synapse/http/connectproxyclient.pyo 477${PYSITELIB}/synapse/http/connectproxyclient.pyo
472${PYSITELIB}/synapse/http/federation/__init__.py 478${PYSITELIB}/synapse/http/federation/__init__.py
473${PYSITELIB}/synapse/http/federation/__init__.pyc 479${PYSITELIB}/synapse/http/federation/__init__.pyc
474${PYSITELIB}/synapse/http/federation/__init__.pyo 480${PYSITELIB}/synapse/http/federation/__init__.pyo
475${PYSITELIB}/synapse/http/federation/matrix_federation_agent.py 481${PYSITELIB}/synapse/http/federation/matrix_federation_agent.py
476${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyc 482${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyc
477${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyo 483${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyo
478${PYSITELIB}/synapse/http/federation/srv_resolver.py 484${PYSITELIB}/synapse/http/federation/srv_resolver.py
479${PYSITELIB}/synapse/http/federation/srv_resolver.pyc 485${PYSITELIB}/synapse/http/federation/srv_resolver.pyc
480${PYSITELIB}/synapse/http/federation/srv_resolver.pyo 486${PYSITELIB}/synapse/http/federation/srv_resolver.pyo
481${PYSITELIB}/synapse/http/federation/well_known_resolver.py 487${PYSITELIB}/synapse/http/federation/well_known_resolver.py
482${PYSITELIB}/synapse/http/federation/well_known_resolver.pyc 488${PYSITELIB}/synapse/http/federation/well_known_resolver.pyc
483${PYSITELIB}/synapse/http/federation/well_known_resolver.pyo 489${PYSITELIB}/synapse/http/federation/well_known_resolver.pyo
484${PYSITELIB}/synapse/http/matrixfederationclient.py 490${PYSITELIB}/synapse/http/matrixfederationclient.py
485${PYSITELIB}/synapse/http/matrixfederationclient.pyc 491${PYSITELIB}/synapse/http/matrixfederationclient.pyc
486${PYSITELIB}/synapse/http/matrixfederationclient.pyo 492${PYSITELIB}/synapse/http/matrixfederationclient.pyo
487${PYSITELIB}/synapse/http/proxyagent.py 493${PYSITELIB}/synapse/http/proxyagent.py
488${PYSITELIB}/synapse/http/proxyagent.pyc 494${PYSITELIB}/synapse/http/proxyagent.pyc
489${PYSITELIB}/synapse/http/proxyagent.pyo 495${PYSITELIB}/synapse/http/proxyagent.pyo
490${PYSITELIB}/synapse/http/request_metrics.py 496${PYSITELIB}/synapse/http/request_metrics.py
491${PYSITELIB}/synapse/http/request_metrics.pyc 497${PYSITELIB}/synapse/http/request_metrics.pyc
492${PYSITELIB}/synapse/http/request_metrics.pyo 498${PYSITELIB}/synapse/http/request_metrics.pyo
493${PYSITELIB}/synapse/http/server.py 499${PYSITELIB}/synapse/http/server.py
494${PYSITELIB}/synapse/http/server.pyc 500${PYSITELIB}/synapse/http/server.pyc
495${PYSITELIB}/synapse/http/server.pyo 501${PYSITELIB}/synapse/http/server.pyo
496${PYSITELIB}/synapse/http/servlet.py 502${PYSITELIB}/synapse/http/servlet.py
497${PYSITELIB}/synapse/http/servlet.pyc 503${PYSITELIB}/synapse/http/servlet.pyc
498${PYSITELIB}/synapse/http/servlet.pyo 504${PYSITELIB}/synapse/http/servlet.pyo
499${PYSITELIB}/synapse/http/site.py 505${PYSITELIB}/synapse/http/site.py
500${PYSITELIB}/synapse/http/site.pyc 506${PYSITELIB}/synapse/http/site.pyc
501${PYSITELIB}/synapse/http/site.pyo 507${PYSITELIB}/synapse/http/site.pyo
502${PYSITELIB}/synapse/logging/__init__.py 508${PYSITELIB}/synapse/logging/__init__.py
503${PYSITELIB}/synapse/logging/__init__.pyc 509${PYSITELIB}/synapse/logging/__init__.pyc
504${PYSITELIB}/synapse/logging/__init__.pyo 510${PYSITELIB}/synapse/logging/__init__.pyo
505${PYSITELIB}/synapse/logging/_remote.py 511${PYSITELIB}/synapse/logging/_remote.py
506${PYSITELIB}/synapse/logging/_remote.pyc 512${PYSITELIB}/synapse/logging/_remote.pyc
507${PYSITELIB}/synapse/logging/_remote.pyo 513${PYSITELIB}/synapse/logging/_remote.pyo
508${PYSITELIB}/synapse/logging/_structured.py 514${PYSITELIB}/synapse/logging/_structured.py
509${PYSITELIB}/synapse/logging/_structured.pyc 515${PYSITELIB}/synapse/logging/_structured.pyc
510${PYSITELIB}/synapse/logging/_structured.pyo 516${PYSITELIB}/synapse/logging/_structured.pyo
511${PYSITELIB}/synapse/logging/_terse_json.py 517${PYSITELIB}/synapse/logging/_terse_json.py
512${PYSITELIB}/synapse/logging/_terse_json.pyc 518${PYSITELIB}/synapse/logging/_terse_json.pyc
513${PYSITELIB}/synapse/logging/_terse_json.pyo 519${PYSITELIB}/synapse/logging/_terse_json.pyo
514${PYSITELIB}/synapse/logging/context.py 520${PYSITELIB}/synapse/logging/context.py
515${PYSITELIB}/synapse/logging/context.pyc 521${PYSITELIB}/synapse/logging/context.pyc
516${PYSITELIB}/synapse/logging/context.pyo 522${PYSITELIB}/synapse/logging/context.pyo
517${PYSITELIB}/synapse/logging/filter.py 523${PYSITELIB}/synapse/logging/filter.py
518${PYSITELIB}/synapse/logging/filter.pyc 524${PYSITELIB}/synapse/logging/filter.pyc
519${PYSITELIB}/synapse/logging/filter.pyo 525${PYSITELIB}/synapse/logging/filter.pyo
520${PYSITELIB}/synapse/logging/formatter.py 526${PYSITELIB}/synapse/logging/formatter.py
521${PYSITELIB}/synapse/logging/formatter.pyc 527${PYSITELIB}/synapse/logging/formatter.pyc
522${PYSITELIB}/synapse/logging/formatter.pyo 528${PYSITELIB}/synapse/logging/formatter.pyo
523${PYSITELIB}/synapse/logging/opentracing.py 529${PYSITELIB}/synapse/logging/opentracing.py
524${PYSITELIB}/synapse/logging/opentracing.pyc 530${PYSITELIB}/synapse/logging/opentracing.pyc
525${PYSITELIB}/synapse/logging/opentracing.pyo 531${PYSITELIB}/synapse/logging/opentracing.pyo
526${PYSITELIB}/synapse/logging/scopecontextmanager.py 532${PYSITELIB}/synapse/logging/scopecontextmanager.py
527${PYSITELIB}/synapse/logging/scopecontextmanager.pyc 533${PYSITELIB}/synapse/logging/scopecontextmanager.pyc
528${PYSITELIB}/synapse/logging/scopecontextmanager.pyo 534${PYSITELIB}/synapse/logging/scopecontextmanager.pyo
529${PYSITELIB}/synapse/logging/utils.py 535${PYSITELIB}/synapse/logging/utils.py
530${PYSITELIB}/synapse/logging/utils.pyc 536${PYSITELIB}/synapse/logging/utils.pyc
531${PYSITELIB}/synapse/logging/utils.pyo 537${PYSITELIB}/synapse/logging/utils.pyo
532${PYSITELIB}/synapse/metrics/__init__.py 538${PYSITELIB}/synapse/metrics/__init__.py
533${PYSITELIB}/synapse/metrics/__init__.pyc 539${PYSITELIB}/synapse/metrics/__init__.pyc
534${PYSITELIB}/synapse/metrics/__init__.pyo 540${PYSITELIB}/synapse/metrics/__init__.pyo
535${PYSITELIB}/synapse/metrics/_exposition.py 541${PYSITELIB}/synapse/metrics/_exposition.py
536${PYSITELIB}/synapse/metrics/_exposition.pyc 542${PYSITELIB}/synapse/metrics/_exposition.pyc
537${PYSITELIB}/synapse/metrics/_exposition.pyo 543${PYSITELIB}/synapse/metrics/_exposition.pyo
538${PYSITELIB}/synapse/metrics/background_process_metrics.py 544${PYSITELIB}/synapse/metrics/background_process_metrics.py
539${PYSITELIB}/synapse/metrics/background_process_metrics.pyc 545${PYSITELIB}/synapse/metrics/background_process_metrics.pyc
540${PYSITELIB}/synapse/metrics/background_process_metrics.pyo 546${PYSITELIB}/synapse/metrics/background_process_metrics.pyo
541${PYSITELIB}/synapse/module_api/__init__.py 547${PYSITELIB}/synapse/module_api/__init__.py
542${PYSITELIB}/synapse/module_api/__init__.pyc 548${PYSITELIB}/synapse/module_api/__init__.pyc
543${PYSITELIB}/synapse/module_api/__init__.pyo 549${PYSITELIB}/synapse/module_api/__init__.pyo
544${PYSITELIB}/synapse/module_api/errors.py 550${PYSITELIB}/synapse/module_api/errors.py
545${PYSITELIB}/synapse/module_api/errors.pyc 551${PYSITELIB}/synapse/module_api/errors.pyc
546${PYSITELIB}/synapse/module_api/errors.pyo 552${PYSITELIB}/synapse/module_api/errors.pyo
547${PYSITELIB}/synapse/notifier.py 553${PYSITELIB}/synapse/notifier.py
548${PYSITELIB}/synapse/notifier.pyc 554${PYSITELIB}/synapse/notifier.pyc
549${PYSITELIB}/synapse/notifier.pyo 555${PYSITELIB}/synapse/notifier.pyo
550${PYSITELIB}/synapse/push/__init__.py 556${PYSITELIB}/synapse/push/__init__.py
551${PYSITELIB}/synapse/push/__init__.pyc 557${PYSITELIB}/synapse/push/__init__.pyc
552${PYSITELIB}/synapse/push/__init__.pyo 558${PYSITELIB}/synapse/push/__init__.pyo
553${PYSITELIB}/synapse/push/action_generator.py 559${PYSITELIB}/synapse/push/action_generator.py
554${PYSITELIB}/synapse/push/action_generator.pyc 560${PYSITELIB}/synapse/push/action_generator.pyc
555${PYSITELIB}/synapse/push/action_generator.pyo 561${PYSITELIB}/synapse/push/action_generator.pyo
556${PYSITELIB}/synapse/push/baserules.py 562${PYSITELIB}/synapse/push/baserules.py
557${PYSITELIB}/synapse/push/baserules.pyc 563${PYSITELIB}/synapse/push/baserules.pyc
558${PYSITELIB}/synapse/push/baserules.pyo 564${PYSITELIB}/synapse/push/baserules.pyo
559${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.py 565${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.py
560${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyc 566${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyc
561${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyo 567${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyo
562${PYSITELIB}/synapse/push/clientformat.py 568${PYSITELIB}/synapse/push/clientformat.py
563${PYSITELIB}/synapse/push/clientformat.pyc 569${PYSITELIB}/synapse/push/clientformat.pyc
564${PYSITELIB}/synapse/push/clientformat.pyo 570${PYSITELIB}/synapse/push/clientformat.pyo
565${PYSITELIB}/synapse/push/emailpusher.py 571${PYSITELIB}/synapse/push/emailpusher.py
566${PYSITELIB}/synapse/push/emailpusher.pyc 572${PYSITELIB}/synapse/push/emailpusher.pyc
567${PYSITELIB}/synapse/push/emailpusher.pyo 573${PYSITELIB}/synapse/push/emailpusher.pyo
568${PYSITELIB}/synapse/push/httppusher.py 574${PYSITELIB}/synapse/push/httppusher.py
569${PYSITELIB}/synapse/push/httppusher.pyc 575${PYSITELIB}/synapse/push/httppusher.pyc
570${PYSITELIB}/synapse/push/httppusher.pyo 576${PYSITELIB}/synapse/push/httppusher.pyo
571${PYSITELIB}/synapse/push/mailer.py 577${PYSITELIB}/synapse/push/mailer.py
572${PYSITELIB}/synapse/push/mailer.pyc 578${PYSITELIB}/synapse/push/mailer.pyc
573${PYSITELIB}/synapse/push/mailer.pyo 579${PYSITELIB}/synapse/push/mailer.pyo
574${PYSITELIB}/synapse/push/presentable_names.py 580${PYSITELIB}/synapse/push/presentable_names.py
575${PYSITELIB}/synapse/push/presentable_names.pyc 581${PYSITELIB}/synapse/push/presentable_names.pyc
576${PYSITELIB}/synapse/push/presentable_names.pyo 582${PYSITELIB}/synapse/push/presentable_names.pyo
577${PYSITELIB}/synapse/push/push_rule_evaluator.py 583${PYSITELIB}/synapse/push/push_rule_evaluator.py
578${PYSITELIB}/synapse/push/push_rule_evaluator.pyc 584${PYSITELIB}/synapse/push/push_rule_evaluator.pyc
579${PYSITELIB}/synapse/push/push_rule_evaluator.pyo 585${PYSITELIB}/synapse/push/push_rule_evaluator.pyo
580${PYSITELIB}/synapse/push/push_tools.py 586${PYSITELIB}/synapse/push/push_tools.py
581${PYSITELIB}/synapse/push/push_tools.pyc 587${PYSITELIB}/synapse/push/push_tools.pyc
582${PYSITELIB}/synapse/push/push_tools.pyo 588${PYSITELIB}/synapse/push/push_tools.pyo
583${PYSITELIB}/synapse/push/pusher.py 589${PYSITELIB}/synapse/push/pusher.py
584${PYSITELIB}/synapse/push/pusher.pyc 590${PYSITELIB}/synapse/push/pusher.pyc
585${PYSITELIB}/synapse/push/pusher.pyo 591${PYSITELIB}/synapse/push/pusher.pyo
586${PYSITELIB}/synapse/push/pusherpool.py 592${PYSITELIB}/synapse/push/pusherpool.py
587${PYSITELIB}/synapse/push/pusherpool.pyc 593${PYSITELIB}/synapse/push/pusherpool.pyc
588${PYSITELIB}/synapse/push/pusherpool.pyo 594${PYSITELIB}/synapse/push/pusherpool.pyo
589${PYSITELIB}/synapse/push/rulekinds.py 595${PYSITELIB}/synapse/push/rulekinds.py
590${PYSITELIB}/synapse/push/rulekinds.pyc 596${PYSITELIB}/synapse/push/rulekinds.pyc
591${PYSITELIB}/synapse/push/rulekinds.pyo 597${PYSITELIB}/synapse/push/rulekinds.pyo
592${PYSITELIB}/synapse/python_dependencies.py 598${PYSITELIB}/synapse/python_dependencies.py
593${PYSITELIB}/synapse/python_dependencies.pyc 599${PYSITELIB}/synapse/python_dependencies.pyc
594${PYSITELIB}/synapse/python_dependencies.pyo 600${PYSITELIB}/synapse/python_dependencies.pyo
595${PYSITELIB}/synapse/replication/__init__.py 601${PYSITELIB}/synapse/replication/__init__.py
596${PYSITELIB}/synapse/replication/__init__.pyc 602${PYSITELIB}/synapse/replication/__init__.pyc
597${PYSITELIB}/synapse/replication/__init__.pyo 603${PYSITELIB}/synapse/replication/__init__.pyo
598${PYSITELIB}/synapse/replication/http/__init__.py 604${PYSITELIB}/synapse/replication/http/__init__.py
599${PYSITELIB}/synapse/replication/http/__init__.pyc 605${PYSITELIB}/synapse/replication/http/__init__.pyc
600${PYSITELIB}/synapse/replication/http/__init__.pyo 606${PYSITELIB}/synapse/replication/http/__init__.pyo
601${PYSITELIB}/synapse/replication/http/_base.py 607${PYSITELIB}/synapse/replication/http/_base.py
602${PYSITELIB}/synapse/replication/http/_base.pyc 608${PYSITELIB}/synapse/replication/http/_base.pyc
603${PYSITELIB}/synapse/replication/http/_base.pyo 609${PYSITELIB}/synapse/replication/http/_base.pyo
604${PYSITELIB}/synapse/replication/http/account_data.py 610${PYSITELIB}/synapse/replication/http/account_data.py
605${PYSITELIB}/synapse/replication/http/account_data.pyc 611${PYSITELIB}/synapse/replication/http/account_data.pyc
606${PYSITELIB}/synapse/replication/http/account_data.pyo 612${PYSITELIB}/synapse/replication/http/account_data.pyo
607${PYSITELIB}/synapse/replication/http/devices.py 613${PYSITELIB}/synapse/replication/http/devices.py
608${PYSITELIB}/synapse/replication/http/devices.pyc 614${PYSITELIB}/synapse/replication/http/devices.pyc
609${PYSITELIB}/synapse/replication/http/devices.pyo 615${PYSITELIB}/synapse/replication/http/devices.pyo
610${PYSITELIB}/synapse/replication/http/federation.py 616${PYSITELIB}/synapse/replication/http/federation.py
611${PYSITELIB}/synapse/replication/http/federation.pyc 617${PYSITELIB}/synapse/replication/http/federation.pyc
612${PYSITELIB}/synapse/replication/http/federation.pyo 618${PYSITELIB}/synapse/replication/http/federation.pyo
613${PYSITELIB}/synapse/replication/http/login.py 619${PYSITELIB}/synapse/replication/http/login.py
614${PYSITELIB}/synapse/replication/http/login.pyc 620${PYSITELIB}/synapse/replication/http/login.pyc
615${PYSITELIB}/synapse/replication/http/login.pyo 621${PYSITELIB}/synapse/replication/http/login.pyo
616${PYSITELIB}/synapse/replication/http/membership.py 622${PYSITELIB}/synapse/replication/http/membership.py
617${PYSITELIB}/synapse/replication/http/membership.pyc 623${PYSITELIB}/synapse/replication/http/membership.pyc
618${PYSITELIB}/synapse/replication/http/membership.pyo 624${PYSITELIB}/synapse/replication/http/membership.pyo
619${PYSITELIB}/synapse/replication/http/presence.py 625${PYSITELIB}/synapse/replication/http/presence.py
620${PYSITELIB}/synapse/replication/http/presence.pyc 626${PYSITELIB}/synapse/replication/http/presence.pyc
621${PYSITELIB}/synapse/replication/http/presence.pyo 627${PYSITELIB}/synapse/replication/http/presence.pyo
622${PYSITELIB}/synapse/replication/http/push.py 628${PYSITELIB}/synapse/replication/http/push.py
623${PYSITELIB}/synapse/replication/http/push.pyc 629${PYSITELIB}/synapse/replication/http/push.pyc
624${PYSITELIB}/synapse/replication/http/push.pyo 630${PYSITELIB}/synapse/replication/http/push.pyo
625${PYSITELIB}/synapse/replication/http/register.py 631${PYSITELIB}/synapse/replication/http/register.py
626${PYSITELIB}/synapse/replication/http/register.pyc 632${PYSITELIB}/synapse/replication/http/register.pyc
627${PYSITELIB}/synapse/replication/http/register.pyo 633${PYSITELIB}/synapse/replication/http/register.pyo
628${PYSITELIB}/synapse/replication/http/send_event.py 634${PYSITELIB}/synapse/replication/http/send_event.py
629${PYSITELIB}/synapse/replication/http/send_event.pyc 635${PYSITELIB}/synapse/replication/http/send_event.pyc
630${PYSITELIB}/synapse/replication/http/send_event.pyo 636${PYSITELIB}/synapse/replication/http/send_event.pyo
631${PYSITELIB}/synapse/replication/http/streams.py 637${PYSITELIB}/synapse/replication/http/streams.py
632${PYSITELIB}/synapse/replication/http/streams.pyc 638${PYSITELIB}/synapse/replication/http/streams.pyc
633${PYSITELIB}/synapse/replication/http/streams.pyo 639${PYSITELIB}/synapse/replication/http/streams.pyo
634${PYSITELIB}/synapse/replication/slave/__init__.py 640${PYSITELIB}/synapse/replication/slave/__init__.py
635${PYSITELIB}/synapse/replication/slave/__init__.pyc 641${PYSITELIB}/synapse/replication/slave/__init__.pyc
636${PYSITELIB}/synapse/replication/slave/__init__.pyo 642${PYSITELIB}/synapse/replication/slave/__init__.pyo
637${PYSITELIB}/synapse/replication/slave/storage/__init__.py 643${PYSITELIB}/synapse/replication/slave/storage/__init__.py
638${PYSITELIB}/synapse/replication/slave/storage/__init__.pyc 644${PYSITELIB}/synapse/replication/slave/storage/__init__.pyc
639${PYSITELIB}/synapse/replication/slave/storage/__init__.pyo 645${PYSITELIB}/synapse/replication/slave/storage/__init__.pyo
640${PYSITELIB}/synapse/replication/slave/storage/_base.py 646${PYSITELIB}/synapse/replication/slave/storage/_base.py
641${PYSITELIB}/synapse/replication/slave/storage/_base.pyc 647${PYSITELIB}/synapse/replication/slave/storage/_base.pyc
642${PYSITELIB}/synapse/replication/slave/storage/_base.pyo 648${PYSITELIB}/synapse/replication/slave/storage/_base.pyo
643${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.py 649${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.py
644${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyc 650${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyc
645${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyo 651${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyo
646${PYSITELIB}/synapse/replication/slave/storage/account_data.py 652${PYSITELIB}/synapse/replication/slave/storage/account_data.py
647${PYSITELIB}/synapse/replication/slave/storage/account_data.pyc 653${PYSITELIB}/synapse/replication/slave/storage/account_data.pyc
648${PYSITELIB}/synapse/replication/slave/storage/account_data.pyo 654${PYSITELIB}/synapse/replication/slave/storage/account_data.pyo
649${PYSITELIB}/synapse/replication/slave/storage/appservice.py 655${PYSITELIB}/synapse/replication/slave/storage/appservice.py
650${PYSITELIB}/synapse/replication/slave/storage/appservice.pyc 656${PYSITELIB}/synapse/replication/slave/storage/appservice.pyc
651${PYSITELIB}/synapse/replication/slave/storage/appservice.pyo 657${PYSITELIB}/synapse/replication/slave/storage/appservice.pyo
652${PYSITELIB}/synapse/replication/slave/storage/client_ips.py 658${PYSITELIB}/synapse/replication/slave/storage/client_ips.py
653${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyc 659${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyc
654${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyo 660${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyo
655${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.py 661${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.py
656${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyc 662${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyc
657${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyo 663${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyo
658${PYSITELIB}/synapse/replication/slave/storage/devices.py 664${PYSITELIB}/synapse/replication/slave/storage/devices.py
659${PYSITELIB}/synapse/replication/slave/storage/devices.pyc 665${PYSITELIB}/synapse/replication/slave/storage/devices.pyc
660${PYSITELIB}/synapse/replication/slave/storage/devices.pyo 666${PYSITELIB}/synapse/replication/slave/storage/devices.pyo
661${PYSITELIB}/synapse/replication/slave/storage/directory.py 667${PYSITELIB}/synapse/replication/slave/storage/directory.py
662${PYSITELIB}/synapse/replication/slave/storage/directory.pyc 668${PYSITELIB}/synapse/replication/slave/storage/directory.pyc
663${PYSITELIB}/synapse/replication/slave/storage/directory.pyo 669${PYSITELIB}/synapse/replication/slave/storage/directory.pyo
664${PYSITELIB}/synapse/replication/slave/storage/events.py 670${PYSITELIB}/synapse/replication/slave/storage/events.py
665${PYSITELIB}/synapse/replication/slave/storage/events.pyc 671${PYSITELIB}/synapse/replication/slave/storage/events.pyc
666${PYSITELIB}/synapse/replication/slave/storage/events.pyo 672${PYSITELIB}/synapse/replication/slave/storage/events.pyo
667${PYSITELIB}/synapse/replication/slave/storage/filtering.py 673${PYSITELIB}/synapse/replication/slave/storage/filtering.py
668${PYSITELIB}/synapse/replication/slave/storage/filtering.pyc 674${PYSITELIB}/synapse/replication/slave/storage/filtering.pyc
669${PYSITELIB}/synapse/replication/slave/storage/filtering.pyo 675${PYSITELIB}/synapse/replication/slave/storage/filtering.pyo
670${PYSITELIB}/synapse/replication/slave/storage/groups.py 676${PYSITELIB}/synapse/replication/slave/storage/groups.py
671${PYSITELIB}/synapse/replication/slave/storage/groups.pyc 677${PYSITELIB}/synapse/replication/slave/storage/groups.pyc
672${PYSITELIB}/synapse/replication/slave/storage/groups.pyo 678${PYSITELIB}/synapse/replication/slave/storage/groups.pyo
673${PYSITELIB}/synapse/replication/slave/storage/keys.py 679${PYSITELIB}/synapse/replication/slave/storage/keys.py
674${PYSITELIB}/synapse/replication/slave/storage/keys.pyc 680${PYSITELIB}/synapse/replication/slave/storage/keys.pyc
675${PYSITELIB}/synapse/replication/slave/storage/keys.pyo 681${PYSITELIB}/synapse/replication/slave/storage/keys.pyo
676${PYSITELIB}/synapse/replication/slave/storage/presence.py 682${PYSITELIB}/synapse/replication/slave/storage/presence.py
677${PYSITELIB}/synapse/replication/slave/storage/presence.pyc 683${PYSITELIB}/synapse/replication/slave/storage/presence.pyc
678${PYSITELIB}/synapse/replication/slave/storage/presence.pyo 684${PYSITELIB}/synapse/replication/slave/storage/presence.pyo
679${PYSITELIB}/synapse/replication/slave/storage/profile.py 685${PYSITELIB}/synapse/replication/slave/storage/profile.py
680${PYSITELIB}/synapse/replication/slave/storage/profile.pyc 686${PYSITELIB}/synapse/replication/slave/storage/profile.pyc
681${PYSITELIB}/synapse/replication/slave/storage/profile.pyo 687${PYSITELIB}/synapse/replication/slave/storage/profile.pyo
682${PYSITELIB}/synapse/replication/slave/storage/push_rule.py 688${PYSITELIB}/synapse/replication/slave/storage/push_rule.py
683${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyc 689${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyc
684${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyo 690${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyo
685${PYSITELIB}/synapse/replication/slave/storage/pushers.py 691${PYSITELIB}/synapse/replication/slave/storage/pushers.py
686${PYSITELIB}/synapse/replication/slave/storage/pushers.pyc 692${PYSITELIB}/synapse/replication/slave/storage/pushers.pyc
687${PYSITELIB}/synapse/replication/slave/storage/pushers.pyo 693${PYSITELIB}/synapse/replication/slave/storage/pushers.pyo
688${PYSITELIB}/synapse/replication/slave/storage/receipts.py 694${PYSITELIB}/synapse/replication/slave/storage/receipts.py
689${PYSITELIB}/synapse/replication/slave/storage/receipts.pyc 695${PYSITELIB}/synapse/replication/slave/storage/receipts.pyc
690${PYSITELIB}/synapse/replication/slave/storage/receipts.pyo 696${PYSITELIB}/synapse/replication/slave/storage/receipts.pyo
691${PYSITELIB}/synapse/replication/slave/storage/registration.py 697${PYSITELIB}/synapse/replication/slave/storage/registration.py
692${PYSITELIB}/synapse/replication/slave/storage/registration.pyc 698${PYSITELIB}/synapse/replication/slave/storage/registration.pyc
693${PYSITELIB}/synapse/replication/slave/storage/registration.pyo 699${PYSITELIB}/synapse/replication/slave/storage/registration.pyo
694${PYSITELIB}/synapse/replication/slave/storage/room.py 700${PYSITELIB}/synapse/replication/slave/storage/room.py
695${PYSITELIB}/synapse/replication/slave/storage/room.pyc 701${PYSITELIB}/synapse/replication/slave/storage/room.pyc
696${PYSITELIB}/synapse/replication/slave/storage/room.pyo 702${PYSITELIB}/synapse/replication/slave/storage/room.pyo
697${PYSITELIB}/synapse/replication/slave/storage/transactions.py 703${PYSITELIB}/synapse/replication/slave/storage/transactions.py
698${PYSITELIB}/synapse/replication/slave/storage/transactions.pyc 704${PYSITELIB}/synapse/replication/slave/storage/transactions.pyc
699${PYSITELIB}/synapse/replication/slave/storage/transactions.pyo 705${PYSITELIB}/synapse/replication/slave/storage/transactions.pyo
700${PYSITELIB}/synapse/replication/tcp/__init__.py 706${PYSITELIB}/synapse/replication/tcp/__init__.py
701${PYSITELIB}/synapse/replication/tcp/__init__.pyc 707${PYSITELIB}/synapse/replication/tcp/__init__.pyc
702${PYSITELIB}/synapse/replication/tcp/__init__.pyo 708${PYSITELIB}/synapse/replication/tcp/__init__.pyo
703${PYSITELIB}/synapse/replication/tcp/client.py 709${PYSITELIB}/synapse/replication/tcp/client.py
704${PYSITELIB}/synapse/replication/tcp/client.pyc 710${PYSITELIB}/synapse/replication/tcp/client.pyc
705${PYSITELIB}/synapse/replication/tcp/client.pyo 711${PYSITELIB}/synapse/replication/tcp/client.pyo
706${PYSITELIB}/synapse/replication/tcp/commands.py 712${PYSITELIB}/synapse/replication/tcp/commands.py
707${PYSITELIB}/synapse/replication/tcp/commands.pyc 713${PYSITELIB}/synapse/replication/tcp/commands.pyc
708${PYSITELIB}/synapse/replication/tcp/commands.pyo 714${PYSITELIB}/synapse/replication/tcp/commands.pyo
709${PYSITELIB}/synapse/replication/tcp/external_cache.py 715${PYSITELIB}/synapse/replication/tcp/external_cache.py
710${PYSITELIB}/synapse/replication/tcp/external_cache.pyc 716${PYSITELIB}/synapse/replication/tcp/external_cache.pyc
711${PYSITELIB}/synapse/replication/tcp/external_cache.pyo 717${PYSITELIB}/synapse/replication/tcp/external_cache.pyo
712${PYSITELIB}/synapse/replication/tcp/handler.py 718${PYSITELIB}/synapse/replication/tcp/handler.py
713${PYSITELIB}/synapse/replication/tcp/handler.pyc 719${PYSITELIB}/synapse/replication/tcp/handler.pyc
714${PYSITELIB}/synapse/replication/tcp/handler.pyo 720${PYSITELIB}/synapse/replication/tcp/handler.pyo
715${PYSITELIB}/synapse/replication/tcp/protocol.py 721${PYSITELIB}/synapse/replication/tcp/protocol.py
716${PYSITELIB}/synapse/replication/tcp/protocol.pyc 722${PYSITELIB}/synapse/replication/tcp/protocol.pyc
717${PYSITELIB}/synapse/replication/tcp/protocol.pyo 723${PYSITELIB}/synapse/replication/tcp/protocol.pyo
718${PYSITELIB}/synapse/replication/tcp/redis.py 724${PYSITELIB}/synapse/replication/tcp/redis.py
719${PYSITELIB}/synapse/replication/tcp/redis.pyc 725${PYSITELIB}/synapse/replication/tcp/redis.pyc
720${PYSITELIB}/synapse/replication/tcp/redis.pyo 726${PYSITELIB}/synapse/replication/tcp/redis.pyo
721${PYSITELIB}/synapse/replication/tcp/resource.py 727${PYSITELIB}/synapse/replication/tcp/resource.py
722${PYSITELIB}/synapse/replication/tcp/resource.pyc 728${PYSITELIB}/synapse/replication/tcp/resource.pyc
723${PYSITELIB}/synapse/replication/tcp/resource.pyo 729${PYSITELIB}/synapse/replication/tcp/resource.pyo
724${PYSITELIB}/synapse/replication/tcp/streams/__init__.py 730${PYSITELIB}/synapse/replication/tcp/streams/__init__.py
725${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyc 731${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyc
726${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyo 732${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyo
727${PYSITELIB}/synapse/replication/tcp/streams/_base.py 733${PYSITELIB}/synapse/replication/tcp/streams/_base.py
728${PYSITELIB}/synapse/replication/tcp/streams/_base.pyc 734${PYSITELIB}/synapse/replication/tcp/streams/_base.pyc
729${PYSITELIB}/synapse/replication/tcp/streams/_base.pyo 735${PYSITELIB}/synapse/replication/tcp/streams/_base.pyo
730${PYSITELIB}/synapse/replication/tcp/streams/events.py 736${PYSITELIB}/synapse/replication/tcp/streams/events.py
731${PYSITELIB}/synapse/replication/tcp/streams/events.pyc 737${PYSITELIB}/synapse/replication/tcp/streams/events.pyc
732${PYSITELIB}/synapse/replication/tcp/streams/events.pyo 738${PYSITELIB}/synapse/replication/tcp/streams/events.pyo
733${PYSITELIB}/synapse/replication/tcp/streams/federation.py 739${PYSITELIB}/synapse/replication/tcp/streams/federation.py
734${PYSITELIB}/synapse/replication/tcp/streams/federation.pyc 740${PYSITELIB}/synapse/replication/tcp/streams/federation.pyc
735${PYSITELIB}/synapse/replication/tcp/streams/federation.pyo 741${PYSITELIB}/synapse/replication/tcp/streams/federation.pyo
736${PYSITELIB}/synapse/res/templates/account_renewed.html 742${PYSITELIB}/synapse/res/templates/account_renewed.html
737${PYSITELIB}/synapse/res/templates/add_threepid.html 743${PYSITELIB}/synapse/res/templates/add_threepid.html
738${PYSITELIB}/synapse/res/templates/add_threepid.txt 744${PYSITELIB}/synapse/res/templates/add_threepid.txt
739${PYSITELIB}/synapse/res/templates/add_threepid_failure.html 745${PYSITELIB}/synapse/res/templates/add_threepid_failure.html
740${PYSITELIB}/synapse/res/templates/add_threepid_success.html 746${PYSITELIB}/synapse/res/templates/add_threepid_success.html
741${PYSITELIB}/synapse/res/templates/auth_success.html 747${PYSITELIB}/synapse/res/templates/auth_success.html
742${PYSITELIB}/synapse/res/templates/invalid_token.html 748${PYSITELIB}/synapse/res/templates/invalid_token.html
743${PYSITELIB}/synapse/res/templates/mail-Element.css 749${PYSITELIB}/synapse/res/templates/mail-Element.css
744${PYSITELIB}/synapse/res/templates/mail-Vector.css 750${PYSITELIB}/synapse/res/templates/mail-Vector.css
745${PYSITELIB}/synapse/res/templates/mail-expiry.css 751${PYSITELIB}/synapse/res/templates/mail-expiry.css
746${PYSITELIB}/synapse/res/templates/mail.css 752${PYSITELIB}/synapse/res/templates/mail.css
747${PYSITELIB}/synapse/res/templates/notice_expiry.html 753${PYSITELIB}/synapse/res/templates/notice_expiry.html
748${PYSITELIB}/synapse/res/templates/notice_expiry.txt 754${PYSITELIB}/synapse/res/templates/notice_expiry.txt
749${PYSITELIB}/synapse/res/templates/notif.html 755${PYSITELIB}/synapse/res/templates/notif.html
750${PYSITELIB}/synapse/res/templates/notif.txt 756${PYSITELIB}/synapse/res/templates/notif.txt
751${PYSITELIB}/synapse/res/templates/notif_mail.html 757${PYSITELIB}/synapse/res/templates/notif_mail.html
752${PYSITELIB}/synapse/res/templates/notif_mail.txt 758${PYSITELIB}/synapse/res/templates/notif_mail.txt
753${PYSITELIB}/synapse/res/templates/password_reset.html 759${PYSITELIB}/synapse/res/templates/password_reset.html
754${PYSITELIB}/synapse/res/templates/password_reset.txt 760${PYSITELIB}/synapse/res/templates/password_reset.txt
755${PYSITELIB}/synapse/res/templates/password_reset_confirmation.html 761${PYSITELIB}/synapse/res/templates/password_reset_confirmation.html
756${PYSITELIB}/synapse/res/templates/password_reset_failure.html 762${PYSITELIB}/synapse/res/templates/password_reset_failure.html
757${PYSITELIB}/synapse/res/templates/password_reset_success.html 763${PYSITELIB}/synapse/res/templates/password_reset_success.html
758${PYSITELIB}/synapse/res/templates/recaptcha.html 764${PYSITELIB}/synapse/res/templates/recaptcha.html
759${PYSITELIB}/synapse/res/templates/registration.html 765${PYSITELIB}/synapse/res/templates/registration.html
760${PYSITELIB}/synapse/res/templates/registration.txt 766${PYSITELIB}/synapse/res/templates/registration.txt
761${PYSITELIB}/synapse/res/templates/registration_failure.html 767${PYSITELIB}/synapse/res/templates/registration_failure.html
762${PYSITELIB}/synapse/res/templates/registration_success.html 768${PYSITELIB}/synapse/res/templates/registration_success.html
763${PYSITELIB}/synapse/res/templates/room.html 769${PYSITELIB}/synapse/res/templates/room.html
764${PYSITELIB}/synapse/res/templates/room.txt 770${PYSITELIB}/synapse/res/templates/room.txt
765${PYSITELIB}/synapse/res/templates/sso.css 771${PYSITELIB}/synapse/res/templates/sso.css
766${PYSITELIB}/synapse/res/templates/sso_account_deactivated.html 772${PYSITELIB}/synapse/res/templates/sso_account_deactivated.html
767${PYSITELIB}/synapse/res/templates/sso_auth_account_details.html 773${PYSITELIB}/synapse/res/templates/sso_auth_account_details.html
768${PYSITELIB}/synapse/res/templates/sso_auth_account_details.js 774${PYSITELIB}/synapse/res/templates/sso_auth_account_details.js
769${PYSITELIB}/synapse/res/templates/sso_auth_bad_user.html 775${PYSITELIB}/synapse/res/templates/sso_auth_bad_user.html
770${PYSITELIB}/synapse/res/templates/sso_auth_confirm.html 776${PYSITELIB}/synapse/res/templates/sso_auth_confirm.html
771${PYSITELIB}/synapse/res/templates/sso_auth_success.html 777${PYSITELIB}/synapse/res/templates/sso_auth_success.html
772${PYSITELIB}/synapse/res/templates/sso_error.html 778${PYSITELIB}/synapse/res/templates/sso_error.html
773${PYSITELIB}/synapse/res/templates/sso_footer.html 779${PYSITELIB}/synapse/res/templates/sso_footer.html
774${PYSITELIB}/synapse/res/templates/sso_login_idp_picker.html 780${PYSITELIB}/synapse/res/templates/sso_login_idp_picker.html
775${PYSITELIB}/synapse/res/templates/sso_new_user_consent.html 781${PYSITELIB}/synapse/res/templates/sso_new_user_consent.html
776${PYSITELIB}/synapse/res/templates/sso_partial_profile.html 782${PYSITELIB}/synapse/res/templates/sso_partial_profile.html
777${PYSITELIB}/synapse/res/templates/sso_redirect_confirm.html 783${PYSITELIB}/synapse/res/templates/sso_redirect_confirm.html
778${PYSITELIB}/synapse/res/templates/terms.html 784${PYSITELIB}/synapse/res/templates/terms.html
779${PYSITELIB}/synapse/rest/__init__.py 785${PYSITELIB}/synapse/rest/__init__.py
780${PYSITELIB}/synapse/rest/__init__.pyc 786${PYSITELIB}/synapse/rest/__init__.pyc
781${PYSITELIB}/synapse/rest/__init__.pyo 787${PYSITELIB}/synapse/rest/__init__.pyo
782${PYSITELIB}/synapse/rest/admin/__init__.py 788${PYSITELIB}/synapse/rest/admin/__init__.py
783${PYSITELIB}/synapse/rest/admin/__init__.pyc 789${PYSITELIB}/synapse/rest/admin/__init__.pyc
784${PYSITELIB}/synapse/rest/admin/__init__.pyo 790${PYSITELIB}/synapse/rest/admin/__init__.pyo
785${PYSITELIB}/synapse/rest/admin/_base.py 791${PYSITELIB}/synapse/rest/admin/_base.py
786${PYSITELIB}/synapse/rest/admin/_base.pyc 792${PYSITELIB}/synapse/rest/admin/_base.pyc
787${PYSITELIB}/synapse/rest/admin/_base.pyo 793${PYSITELIB}/synapse/rest/admin/_base.pyo
788${PYSITELIB}/synapse/rest/admin/devices.py 794${PYSITELIB}/synapse/rest/admin/devices.py
789${PYSITELIB}/synapse/rest/admin/devices.pyc 795${PYSITELIB}/synapse/rest/admin/devices.pyc
790${PYSITELIB}/synapse/rest/admin/devices.pyo 796${PYSITELIB}/synapse/rest/admin/devices.pyo
791${PYSITELIB}/synapse/rest/admin/event_reports.py 797${PYSITELIB}/synapse/rest/admin/event_reports.py
792${PYSITELIB}/synapse/rest/admin/event_reports.pyc 798${PYSITELIB}/synapse/rest/admin/event_reports.pyc
793${PYSITELIB}/synapse/rest/admin/event_reports.pyo 799${PYSITELIB}/synapse/rest/admin/event_reports.pyo
794${PYSITELIB}/synapse/rest/admin/groups.py 800${PYSITELIB}/synapse/rest/admin/groups.py
795${PYSITELIB}/synapse/rest/admin/groups.pyc 801${PYSITELIB}/synapse/rest/admin/groups.pyc
796${PYSITELIB}/synapse/rest/admin/groups.pyo 802${PYSITELIB}/synapse/rest/admin/groups.pyo
797${PYSITELIB}/synapse/rest/admin/media.py 803${PYSITELIB}/synapse/rest/admin/media.py
798${PYSITELIB}/synapse/rest/admin/media.pyc 804${PYSITELIB}/synapse/rest/admin/media.pyc
799${PYSITELIB}/synapse/rest/admin/media.pyo 805${PYSITELIB}/synapse/rest/admin/media.pyo
800${PYSITELIB}/synapse/rest/admin/purge_room_servlet.py 806${PYSITELIB}/synapse/rest/admin/purge_room_servlet.py
801${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyc 807${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyc
802${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyo 808${PYSITELIB}/synapse/rest/admin/purge_room_servlet.pyo
803${PYSITELIB}/synapse/rest/admin/rooms.py 809${PYSITELIB}/synapse/rest/admin/rooms.py
804${PYSITELIB}/synapse/rest/admin/rooms.pyc 810${PYSITELIB}/synapse/rest/admin/rooms.pyc
805${PYSITELIB}/synapse/rest/admin/rooms.pyo 811${PYSITELIB}/synapse/rest/admin/rooms.pyo
806${PYSITELIB}/synapse/rest/admin/server_notice_servlet.py 812${PYSITELIB}/synapse/rest/admin/server_notice_servlet.py
807${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyc 813${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyc
808${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyo 814${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyo
809${PYSITELIB}/synapse/rest/admin/statistics.py 815${PYSITELIB}/synapse/rest/admin/statistics.py
810${PYSITELIB}/synapse/rest/admin/statistics.pyc 816${PYSITELIB}/synapse/rest/admin/statistics.pyc
811${PYSITELIB}/synapse/rest/admin/statistics.pyo 817${PYSITELIB}/synapse/rest/admin/statistics.pyo
812${PYSITELIB}/synapse/rest/admin/users.py 818${PYSITELIB}/synapse/rest/admin/users.py
813${PYSITELIB}/synapse/rest/admin/users.pyc 819${PYSITELIB}/synapse/rest/admin/users.pyc
814${PYSITELIB}/synapse/rest/admin/users.pyo 820${PYSITELIB}/synapse/rest/admin/users.pyo
815${PYSITELIB}/synapse/rest/client/__init__.py 821${PYSITELIB}/synapse/rest/client/__init__.py
816${PYSITELIB}/synapse/rest/client/__init__.pyc 822${PYSITELIB}/synapse/rest/client/__init__.pyc
817${PYSITELIB}/synapse/rest/client/__init__.pyo 823${PYSITELIB}/synapse/rest/client/__init__.pyo
818${PYSITELIB}/synapse/rest/client/transactions.py 824${PYSITELIB}/synapse/rest/client/transactions.py
819${PYSITELIB}/synapse/rest/client/transactions.pyc 825${PYSITELIB}/synapse/rest/client/transactions.pyc
820${PYSITELIB}/synapse/rest/client/transactions.pyo 826${PYSITELIB}/synapse/rest/client/transactions.pyo
821${PYSITELIB}/synapse/rest/client/v1/__init__.py 827${PYSITELIB}/synapse/rest/client/v1/__init__.py
822${PYSITELIB}/synapse/rest/client/v1/__init__.pyc 828${PYSITELIB}/synapse/rest/client/v1/__init__.pyc
823${PYSITELIB}/synapse/rest/client/v1/__init__.pyo 829${PYSITELIB}/synapse/rest/client/v1/__init__.pyo
824${PYSITELIB}/synapse/rest/client/v1/directory.py 830${PYSITELIB}/synapse/rest/client/v1/directory.py
825${PYSITELIB}/synapse/rest/client/v1/directory.pyc 831${PYSITELIB}/synapse/rest/client/v1/directory.pyc
826${PYSITELIB}/synapse/rest/client/v1/directory.pyo 832${PYSITELIB}/synapse/rest/client/v1/directory.pyo
827${PYSITELIB}/synapse/rest/client/v1/events.py 833${PYSITELIB}/synapse/rest/client/v1/events.py
828${PYSITELIB}/synapse/rest/client/v1/events.pyc 834${PYSITELIB}/synapse/rest/client/v1/events.pyc
829${PYSITELIB}/synapse/rest/client/v1/events.pyo 835${PYSITELIB}/synapse/rest/client/v1/events.pyo
830${PYSITELIB}/synapse/rest/client/v1/initial_sync.py 836${PYSITELIB}/synapse/rest/client/v1/initial_sync.py
831${PYSITELIB}/synapse/rest/client/v1/initial_sync.pyc 837${PYSITELIB}/synapse/rest/client/v1/initial_sync.pyc
832${PYSITELIB}/synapse/rest/client/v1/initial_sync.pyo 838${PYSITELIB}/synapse/rest/client/v1/initial_sync.pyo
833${PYSITELIB}/synapse/rest/client/v1/login.py 839${PYSITELIB}/synapse/rest/client/v1/login.py
834${PYSITELIB}/synapse/rest/client/v1/login.pyc 840${PYSITELIB}/synapse/rest/client/v1/login.pyc
835${PYSITELIB}/synapse/rest/client/v1/login.pyo 841${PYSITELIB}/synapse/rest/client/v1/login.pyo
836${PYSITELIB}/synapse/rest/client/v1/logout.py 842${PYSITELIB}/synapse/rest/client/v1/logout.py
837${PYSITELIB}/synapse/rest/client/v1/logout.pyc 843${PYSITELIB}/synapse/rest/client/v1/logout.pyc
838${PYSITELIB}/synapse/rest/client/v1/logout.pyo 844${PYSITELIB}/synapse/rest/client/v1/logout.pyo
839${PYSITELIB}/synapse/rest/client/v1/presence.py 845${PYSITELIB}/synapse/rest/client/v1/presence.py
840${PYSITELIB}/synapse/rest/client/v1/presence.pyc 846${PYSITELIB}/synapse/rest/client/v1/presence.pyc
841${PYSITELIB}/synapse/rest/client/v1/presence.pyo 847${PYSITELIB}/synapse/rest/client/v1/presence.pyo
842${PYSITELIB}/synapse/rest/client/v1/profile.py 848${PYSITELIB}/synapse/rest/client/v1/profile.py
843${PYSITELIB}/synapse/rest/client/v1/profile.pyc 849${PYSITELIB}/synapse/rest/client/v1/profile.pyc
844${PYSITELIB}/synapse/rest/client/v1/profile.pyo 850${PYSITELIB}/synapse/rest/client/v1/profile.pyo
845${PYSITELIB}/synapse/rest/client/v1/push_rule.py 851${PYSITELIB}/synapse/rest/client/v1/push_rule.py
846${PYSITELIB}/synapse/rest/client/v1/push_rule.pyc 852${PYSITELIB}/synapse/rest/client/v1/push_rule.pyc
847${PYSITELIB}/synapse/rest/client/v1/push_rule.pyo 853${PYSITELIB}/synapse/rest/client/v1/push_rule.pyo
848${PYSITELIB}/synapse/rest/client/v1/pusher.py 854${PYSITELIB}/synapse/rest/client/v1/pusher.py
849${PYSITELIB}/synapse/rest/client/v1/pusher.pyc 855${PYSITELIB}/synapse/rest/client/v1/pusher.pyc
850${PYSITELIB}/synapse/rest/client/v1/pusher.pyo 856${PYSITELIB}/synapse/rest/client/v1/pusher.pyo
851${PYSITELIB}/synapse/rest/client/v1/room.py 857${PYSITELIB}/synapse/rest/client/v1/room.py
852${PYSITELIB}/synapse/rest/client/v1/room.pyc 858${PYSITELIB}/synapse/rest/client/v1/room.pyc
853${PYSITELIB}/synapse/rest/client/v1/room.pyo 859${PYSITELIB}/synapse/rest/client/v1/room.pyo
854${PYSITELIB}/synapse/rest/client/v1/voip.py 860${PYSITELIB}/synapse/rest/client/v1/voip.py
855${PYSITELIB}/synapse/rest/client/v1/voip.pyc 861${PYSITELIB}/synapse/rest/client/v1/voip.pyc
856${PYSITELIB}/synapse/rest/client/v1/voip.pyo 862${PYSITELIB}/synapse/rest/client/v1/voip.pyo
857${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.py 863${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.py
858${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.pyc 864${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.pyc
859${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.pyo 865${PYSITELIB}/synapse/rest/client/v2_alpha/__init__.pyo
860${PYSITELIB}/synapse/rest/client/v2_alpha/_base.py 866${PYSITELIB}/synapse/rest/client/v2_alpha/_base.py
861${PYSITELIB}/synapse/rest/client/v2_alpha/_base.pyc 867${PYSITELIB}/synapse/rest/client/v2_alpha/_base.pyc
862${PYSITELIB}/synapse/rest/client/v2_alpha/_base.pyo 868${PYSITELIB}/synapse/rest/client/v2_alpha/_base.pyo
863${PYSITELIB}/synapse/rest/client/v2_alpha/account.py 869${PYSITELIB}/synapse/rest/client/v2_alpha/account.py
864${PYSITELIB}/synapse/rest/client/v2_alpha/account.pyc 870${PYSITELIB}/synapse/rest/client/v2_alpha/account.pyc
865${PYSITELIB}/synapse/rest/client/v2_alpha/account.pyo 871${PYSITELIB}/synapse/rest/client/v2_alpha/account.pyo
866${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.py 872${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.py
867${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.pyc 873${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.pyc
868${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.pyo 874${PYSITELIB}/synapse/rest/client/v2_alpha/account_data.pyo
869${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.py 875${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.py
870${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.pyc 876${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.pyc
871${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.pyo 877${PYSITELIB}/synapse/rest/client/v2_alpha/account_validity.pyo
872${PYSITELIB}/synapse/rest/client/v2_alpha/auth.py 878${PYSITELIB}/synapse/rest/client/v2_alpha/auth.py
873${PYSITELIB}/synapse/rest/client/v2_alpha/auth.pyc 879${PYSITELIB}/synapse/rest/client/v2_alpha/auth.pyc
874${PYSITELIB}/synapse/rest/client/v2_alpha/auth.pyo 880${PYSITELIB}/synapse/rest/client/v2_alpha/auth.pyo
875${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.py 881${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.py
876${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.pyc 882${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.pyc
877${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.pyo 883${PYSITELIB}/synapse/rest/client/v2_alpha/capabilities.pyo
878${PYSITELIB}/synapse/rest/client/v2_alpha/devices.py 884${PYSITELIB}/synapse/rest/client/v2_alpha/devices.py
879${PYSITELIB}/synapse/rest/client/v2_alpha/devices.pyc 885${PYSITELIB}/synapse/rest/client/v2_alpha/devices.pyc
880${PYSITELIB}/synapse/rest/client/v2_alpha/devices.pyo 886${PYSITELIB}/synapse/rest/client/v2_alpha/devices.pyo
881${PYSITELIB}/synapse/rest/client/v2_alpha/filter.py 887${PYSITELIB}/synapse/rest/client/v2_alpha/filter.py
882${PYSITELIB}/synapse/rest/client/v2_alpha/filter.pyc 888${PYSITELIB}/synapse/rest/client/v2_alpha/filter.pyc
883${PYSITELIB}/synapse/rest/client/v2_alpha/filter.pyo 889${PYSITELIB}/synapse/rest/client/v2_alpha/filter.pyo
884${PYSITELIB}/synapse/rest/client/v2_alpha/groups.py 890${PYSITELIB}/synapse/rest/client/v2_alpha/groups.py
885${PYSITELIB}/synapse/rest/client/v2_alpha/groups.pyc 891${PYSITELIB}/synapse/rest/client/v2_alpha/groups.pyc
886${PYSITELIB}/synapse/rest/client/v2_alpha/groups.pyo 892${PYSITELIB}/synapse/rest/client/v2_alpha/groups.pyo
887${PYSITELIB}/synapse/rest/client/v2_alpha/keys.py 893${PYSITELIB}/synapse/rest/client/v2_alpha/keys.py
888${PYSITELIB}/synapse/rest/client/v2_alpha/keys.pyc 894${PYSITELIB}/synapse/rest/client/v2_alpha/keys.pyc
889${PYSITELIB}/synapse/rest/client/v2_alpha/keys.pyo 895${PYSITELIB}/synapse/rest/client/v2_alpha/keys.pyo
890${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.py 896${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.py
891${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.pyc 897${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.pyc
892${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.pyo 898${PYSITELIB}/synapse/rest/client/v2_alpha/notifications.pyo
893${PYSITELIB}/synapse/rest/client/v2_alpha/openid.py 899${PYSITELIB}/synapse/rest/client/v2_alpha/openid.py
894${PYSITELIB}/synapse/rest/client/v2_alpha/openid.pyc 900${PYSITELIB}/synapse/rest/client/v2_alpha/openid.pyc
895${PYSITELIB}/synapse/rest/client/v2_alpha/openid.pyo 901${PYSITELIB}/synapse/rest/client/v2_alpha/openid.pyo
896${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.py 902${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.py
897${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.pyc 903${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.pyc
898${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.pyo 904${PYSITELIB}/synapse/rest/client/v2_alpha/password_policy.pyo
899${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.py 905${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.py
900${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.pyc 906${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.pyc
901${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.pyo 907${PYSITELIB}/synapse/rest/client/v2_alpha/read_marker.pyo
902${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.py 908${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.py
903${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.pyc 909${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.pyc
904${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.pyo 910${PYSITELIB}/synapse/rest/client/v2_alpha/receipts.pyo
905${PYSITELIB}/synapse/rest/client/v2_alpha/register.py 911${PYSITELIB}/synapse/rest/client/v2_alpha/register.py
906${PYSITELIB}/synapse/rest/client/v2_alpha/register.pyc 912${PYSITELIB}/synapse/rest/client/v2_alpha/register.pyc
907${PYSITELIB}/synapse/rest/client/v2_alpha/register.pyo 913${PYSITELIB}/synapse/rest/client/v2_alpha/register.pyo
908${PYSITELIB}/synapse/rest/client/v2_alpha/relations.py 914${PYSITELIB}/synapse/rest/client/v2_alpha/relations.py
909${PYSITELIB}/synapse/rest/client/v2_alpha/relations.pyc 915${PYSITELIB}/synapse/rest/client/v2_alpha/relations.pyc
910${PYSITELIB}/synapse/rest/client/v2_alpha/relations.pyo 916${PYSITELIB}/synapse/rest/client/v2_alpha/relations.pyo
911${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.py 917${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.py
912${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.pyc 918${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.pyc
913${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.pyo 919${PYSITELIB}/synapse/rest/client/v2_alpha/report_event.pyo
914${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.py 920${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.py
915${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.pyc 921${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.pyc
916${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.pyo 922${PYSITELIB}/synapse/rest/client/v2_alpha/room_keys.pyo
917${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.py 923${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.py
918${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.pyc 924${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.pyc
919${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.pyo 925${PYSITELIB}/synapse/rest/client/v2_alpha/room_upgrade_rest_servlet.pyo
920${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.py 926${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.py
921${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.pyc 927${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.pyc
922${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.pyo 928${PYSITELIB}/synapse/rest/client/v2_alpha/sendtodevice.pyo
923${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.py 929${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.py
924${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.pyc 930${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.pyc
925${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.pyo 931${PYSITELIB}/synapse/rest/client/v2_alpha/shared_rooms.pyo
926${PYSITELIB}/synapse/rest/client/v2_alpha/sync.py 932${PYSITELIB}/synapse/rest/client/v2_alpha/sync.py
927${PYSITELIB}/synapse/rest/client/v2_alpha/sync.pyc 933${PYSITELIB}/synapse/rest/client/v2_alpha/sync.pyc
928${PYSITELIB}/synapse/rest/client/v2_alpha/sync.pyo 934${PYSITELIB}/synapse/rest/client/v2_alpha/sync.pyo
929${PYSITELIB}/synapse/rest/client/v2_alpha/tags.py 935${PYSITELIB}/synapse/rest/client/v2_alpha/tags.py
930${PYSITELIB}/synapse/rest/client/v2_alpha/tags.pyc 936${PYSITELIB}/synapse/rest/client/v2_alpha/tags.pyc
931${PYSITELIB}/synapse/rest/client/v2_alpha/tags.pyo 937${PYSITELIB}/synapse/rest/client/v2_alpha/tags.pyo
932${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.py 938${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.py
933${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.pyc 939${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.pyc
934${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.pyo 940${PYSITELIB}/synapse/rest/client/v2_alpha/thirdparty.pyo
935${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.py 941${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.py
936${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.pyc 942${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.pyc
937${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.pyo 943${PYSITELIB}/synapse/rest/client/v2_alpha/tokenrefresh.pyo
938${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.py 944${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.py
939${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.pyc 945${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.pyc
940${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.pyo 946${PYSITELIB}/synapse/rest/client/v2_alpha/user_directory.pyo
941${PYSITELIB}/synapse/rest/client/versions.py 947${PYSITELIB}/synapse/rest/client/versions.py
942${PYSITELIB}/synapse/rest/client/versions.pyc 948${PYSITELIB}/synapse/rest/client/versions.pyc
943${PYSITELIB}/synapse/rest/client/versions.pyo 949${PYSITELIB}/synapse/rest/client/versions.pyo
944${PYSITELIB}/synapse/rest/consent/__init__.py 950${PYSITELIB}/synapse/rest/consent/__init__.py
945${PYSITELIB}/synapse/rest/consent/__init__.pyc 951${PYSITELIB}/synapse/rest/consent/__init__.pyc
946${PYSITELIB}/synapse/rest/consent/__init__.pyo 952${PYSITELIB}/synapse/rest/consent/__init__.pyo
947${PYSITELIB}/synapse/rest/consent/consent_resource.py 953${PYSITELIB}/synapse/rest/consent/consent_resource.py
948${PYSITELIB}/synapse/rest/consent/consent_resource.pyc 954${PYSITELIB}/synapse/rest/consent/consent_resource.pyc
949${PYSITELIB}/synapse/rest/consent/consent_resource.pyo 955${PYSITELIB}/synapse/rest/consent/consent_resource.pyo
950${PYSITELIB}/synapse/rest/health.py 956${PYSITELIB}/synapse/rest/health.py
951${PYSITELIB}/synapse/rest/health.pyc 957${PYSITELIB}/synapse/rest/health.pyc
952${PYSITELIB}/synapse/rest/health.pyo 958${PYSITELIB}/synapse/rest/health.pyo
953${PYSITELIB}/synapse/rest/key/__init__.py 959${PYSITELIB}/synapse/rest/key/__init__.py
954${PYSITELIB}/synapse/rest/key/__init__.pyc 960${PYSITELIB}/synapse/rest/key/__init__.pyc
955${PYSITELIB}/synapse/rest/key/__init__.pyo 961${PYSITELIB}/synapse/rest/key/__init__.pyo
956${PYSITELIB}/synapse/rest/key/v2/__init__.py 962${PYSITELIB}/synapse/rest/key/v2/__init__.py
957${PYSITELIB}/synapse/rest/key/v2/__init__.pyc 963${PYSITELIB}/synapse/rest/key/v2/__init__.pyc
958${PYSITELIB}/synapse/rest/key/v2/__init__.pyo 964${PYSITELIB}/synapse/rest/key/v2/__init__.pyo
959${PYSITELIB}/synapse/rest/key/v2/local_key_resource.py 965${PYSITELIB}/synapse/rest/key/v2/local_key_resource.py
960${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyc 966${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyc
961${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyo 967${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyo
962${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.py 968${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.py
963${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyc 969${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyc
964${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyo 970${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyo
965${PYSITELIB}/synapse/rest/media/__init__.py 971${PYSITELIB}/synapse/rest/media/__init__.py
966${PYSITELIB}/synapse/rest/media/__init__.pyc 972${PYSITELIB}/synapse/rest/media/__init__.pyc
967${PYSITELIB}/synapse/rest/media/__init__.pyo 973${PYSITELIB}/synapse/rest/media/__init__.pyo
968${PYSITELIB}/synapse/rest/media/v1/__init__.py 974${PYSITELIB}/synapse/rest/media/v1/__init__.py
969${PYSITELIB}/synapse/rest/media/v1/__init__.pyc 975${PYSITELIB}/synapse/rest/media/v1/__init__.pyc
970${PYSITELIB}/synapse/rest/media/v1/__init__.pyo 976${PYSITELIB}/synapse/rest/media/v1/__init__.pyo
971${PYSITELIB}/synapse/rest/media/v1/_base.py 977${PYSITELIB}/synapse/rest/media/v1/_base.py
972${PYSITELIB}/synapse/rest/media/v1/_base.pyc 978${PYSITELIB}/synapse/rest/media/v1/_base.pyc
973${PYSITELIB}/synapse/rest/media/v1/_base.pyo 979${PYSITELIB}/synapse/rest/media/v1/_base.pyo
974${PYSITELIB}/synapse/rest/media/v1/config_resource.py 980${PYSITELIB}/synapse/rest/media/v1/config_resource.py
975${PYSITELIB}/synapse/rest/media/v1/config_resource.pyc 981${PYSITELIB}/synapse/rest/media/v1/config_resource.pyc
976${PYSITELIB}/synapse/rest/media/v1/config_resource.pyo 982${PYSITELIB}/synapse/rest/media/v1/config_resource.pyo
977${PYSITELIB}/synapse/rest/media/v1/download_resource.py 983${PYSITELIB}/synapse/rest/media/v1/download_resource.py
978${PYSITELIB}/synapse/rest/media/v1/download_resource.pyc 984${PYSITELIB}/synapse/rest/media/v1/download_resource.pyc
979${PYSITELIB}/synapse/rest/media/v1/download_resource.pyo 985${PYSITELIB}/synapse/rest/media/v1/download_resource.pyo
980${PYSITELIB}/synapse/rest/media/v1/filepath.py 986${PYSITELIB}/synapse/rest/media/v1/filepath.py
981${PYSITELIB}/synapse/rest/media/v1/filepath.pyc 987${PYSITELIB}/synapse/rest/media/v1/filepath.pyc
982${PYSITELIB}/synapse/rest/media/v1/filepath.pyo 988${PYSITELIB}/synapse/rest/media/v1/filepath.pyo
983${PYSITELIB}/synapse/rest/media/v1/media_repository.py 989${PYSITELIB}/synapse/rest/media/v1/media_repository.py
984${PYSITELIB}/synapse/rest/media/v1/media_repository.pyc 990${PYSITELIB}/synapse/rest/media/v1/media_repository.pyc
985${PYSITELIB}/synapse/rest/media/v1/media_repository.pyo 991${PYSITELIB}/synapse/rest/media/v1/media_repository.pyo
986${PYSITELIB}/synapse/rest/media/v1/media_storage.py 992${PYSITELIB}/synapse/rest/media/v1/media_storage.py
987${PYSITELIB}/synapse/rest/media/v1/media_storage.pyc 993${PYSITELIB}/synapse/rest/media/v1/media_storage.pyc
988${PYSITELIB}/synapse/rest/media/v1/media_storage.pyo 994${PYSITELIB}/synapse/rest/media/v1/media_storage.pyo
989${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.py 995${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.py
990${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyc 996${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyc
991${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyo 997${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyo
992${PYSITELIB}/synapse/rest/media/v1/storage_provider.py 998${PYSITELIB}/synapse/rest/media/v1/storage_provider.py
993${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyc 999${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyc
994${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyo 1000${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyo
995${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.py 1001${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.py
996${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyc 1002${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyc
997${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyo 1003${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyo
998${PYSITELIB}/synapse/rest/media/v1/thumbnailer.py 1004${PYSITELIB}/synapse/rest/media/v1/thumbnailer.py
999${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyc 1005${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyc
1000${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyo 1006${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyo
1001${PYSITELIB}/synapse/rest/media/v1/upload_resource.py 1007${PYSITELIB}/synapse/rest/media/v1/upload_resource.py
1002${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyc 1008${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyc
1003${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyo 1009${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyo
1004${PYSITELIB}/synapse/rest/synapse/__init__.py 1010${PYSITELIB}/synapse/rest/synapse/__init__.py
1005${PYSITELIB}/synapse/rest/synapse/__init__.pyc 1011${PYSITELIB}/synapse/rest/synapse/__init__.pyc
1006${PYSITELIB}/synapse/rest/synapse/__init__.pyo 1012${PYSITELIB}/synapse/rest/synapse/__init__.pyo
1007${PYSITELIB}/synapse/rest/synapse/client/__init__.py 1013${PYSITELIB}/synapse/rest/synapse/client/__init__.py
1008${PYSITELIB}/synapse/rest/synapse/client/__init__.pyc 1014${PYSITELIB}/synapse/rest/synapse/client/__init__.pyc
1009${PYSITELIB}/synapse/rest/synapse/client/__init__.pyo 1015${PYSITELIB}/synapse/rest/synapse/client/__init__.pyo
1010${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.py 1016${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.py
1011${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyc 1017${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyc
1012${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyo 1018${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyo
1013${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.py 1019${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.py
1014${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyc 1020${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyc
1015${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyo 1021${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyo
1016${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.py 1022${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.py
1017${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyc 1023${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyc
1018${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyo 1024${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyo
1019${PYSITELIB}/synapse/rest/synapse/client/password_reset.py 1025${PYSITELIB}/synapse/rest/synapse/client/password_reset.py
1020${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyc 1026${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyc
1021${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyo 1027${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyo
1022${PYSITELIB}/synapse/rest/synapse/client/pick_idp.py 1028${PYSITELIB}/synapse/rest/synapse/client/pick_idp.py
1023${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyc 1029${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyc
1024${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyo 1030${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyo
1025${PYSITELIB}/synapse/rest/synapse/client/pick_username.py 1031${PYSITELIB}/synapse/rest/synapse/client/pick_username.py
1026${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyc 1032${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyc
1027${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyo 1033${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyo
1028${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.py 1034${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.py
1029${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyc 1035${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyc
1030${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyo 1036${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyo
1031${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.py 1037${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.py
1032${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyc 1038${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyc
1033${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyo 1039${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyo
1034${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.py 1040${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.py
1035${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyc 1041${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyc
1036${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyo 1042${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyo
1037${PYSITELIB}/synapse/rest/synapse/client/sso_register.py 1043${PYSITELIB}/synapse/rest/synapse/client/sso_register.py
1038${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyc 1044${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyc
1039${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyo 1045${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyo
1040${PYSITELIB}/synapse/rest/well_known.py 1046${PYSITELIB}/synapse/rest/well_known.py
1041${PYSITELIB}/synapse/rest/well_known.pyc 1047${PYSITELIB}/synapse/rest/well_known.pyc
1042${PYSITELIB}/synapse/rest/well_known.pyo 1048${PYSITELIB}/synapse/rest/well_known.pyo
1043${PYSITELIB}/synapse/secrets.py 1049${PYSITELIB}/synapse/secrets.py
1044${PYSITELIB}/synapse/secrets.pyc 1050${PYSITELIB}/synapse/secrets.pyc
1045${PYSITELIB}/synapse/secrets.pyo 1051${PYSITELIB}/synapse/secrets.pyo
1046${PYSITELIB}/synapse/server.py 1052${PYSITELIB}/synapse/server.py
1047${PYSITELIB}/synapse/server.pyc 1053${PYSITELIB}/synapse/server.pyc
1048${PYSITELIB}/synapse/server.pyo 1054${PYSITELIB}/synapse/server.pyo
1049${PYSITELIB}/synapse/server_notices/__init__.py 1055${PYSITELIB}/synapse/server_notices/__init__.py
1050${PYSITELIB}/synapse/server_notices/__init__.pyc 1056${PYSITELIB}/synapse/server_notices/__init__.pyc
1051${PYSITELIB}/synapse/server_notices/__init__.pyo 1057${PYSITELIB}/synapse/server_notices/__init__.pyo
1052${PYSITELIB}/synapse/server_notices/consent_server_notices.py 1058${PYSITELIB}/synapse/server_notices/consent_server_notices.py
1053${PYSITELIB}/synapse/server_notices/consent_server_notices.pyc 1059${PYSITELIB}/synapse/server_notices/consent_server_notices.pyc
1054${PYSITELIB}/synapse/server_notices/consent_server_notices.pyo 1060${PYSITELIB}/synapse/server_notices/consent_server_notices.pyo
1055${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.py 1061${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.py
1056${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyc 1062${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyc
1057${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyo 1063${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyo
1058${PYSITELIB}/synapse/server_notices/server_notices_manager.py 1064${PYSITELIB}/synapse/server_notices/server_notices_manager.py
1059${PYSITELIB}/synapse/server_notices/server_notices_manager.pyc 1065${PYSITELIB}/synapse/server_notices/server_notices_manager.pyc
1060${PYSITELIB}/synapse/server_notices/server_notices_manager.pyo 1066${PYSITELIB}/synapse/server_notices/server_notices_manager.pyo
1061${PYSITELIB}/synapse/server_notices/server_notices_sender.py 1067${PYSITELIB}/synapse/server_notices/server_notices_sender.py
1062${PYSITELIB}/synapse/server_notices/server_notices_sender.pyc 1068${PYSITELIB}/synapse/server_notices/server_notices_sender.pyc
1063${PYSITELIB}/synapse/server_notices/server_notices_sender.pyo 1069${PYSITELIB}/synapse/server_notices/server_notices_sender.pyo
1064${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.py 1070${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.py
1065${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyc 1071${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyc
1066${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyo 1072${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyo
1067${PYSITELIB}/synapse/spam_checker_api/__init__.py 1073${PYSITELIB}/synapse/spam_checker_api/__init__.py
1068${PYSITELIB}/synapse/spam_checker_api/__init__.pyc 1074${PYSITELIB}/synapse/spam_checker_api/__init__.pyc
1069${PYSITELIB}/synapse/spam_checker_api/__init__.pyo 1075${PYSITELIB}/synapse/spam_checker_api/__init__.pyo
1070${PYSITELIB}/synapse/state/__init__.py 1076${PYSITELIB}/synapse/state/__init__.py
1071${PYSITELIB}/synapse/state/__init__.pyc 1077${PYSITELIB}/synapse/state/__init__.pyc
1072${PYSITELIB}/synapse/state/__init__.pyo 1078${PYSITELIB}/synapse/state/__init__.pyo
1073${PYSITELIB}/synapse/state/v1.py 1079${PYSITELIB}/synapse/state/v1.py
1074${PYSITELIB}/synapse/state/v1.pyc 1080${PYSITELIB}/synapse/state/v1.pyc
1075${PYSITELIB}/synapse/state/v1.pyo 1081${PYSITELIB}/synapse/state/v1.pyo
1076${PYSITELIB}/synapse/state/v2.py 1082${PYSITELIB}/synapse/state/v2.py
1077${PYSITELIB}/synapse/state/v2.pyc 1083${PYSITELIB}/synapse/state/v2.pyc
1078${PYSITELIB}/synapse/state/v2.pyo 1084${PYSITELIB}/synapse/state/v2.pyo
1079${PYSITELIB}/synapse/static/client/login/index.html 1085${PYSITELIB}/synapse/static/client/login/index.html
1080${PYSITELIB}/synapse/static/client/login/js/jquery-3.4.1.min.js 1086${PYSITELIB}/synapse/static/client/login/js/jquery-3.4.1.min.js
1081${PYSITELIB}/synapse/static/client/login/js/login.js 1087${PYSITELIB}/synapse/static/client/login/js/login.js
1082${PYSITELIB}/synapse/static/client/login/spinner.gif 1088${PYSITELIB}/synapse/static/client/login/spinner.gif
1083${PYSITELIB}/synapse/static/client/login/style.css 1089${PYSITELIB}/synapse/static/client/login/style.css
1084${PYSITELIB}/synapse/static/client/register/index.html 1090${PYSITELIB}/synapse/static/client/register/index.html
1085${PYSITELIB}/synapse/static/client/register/js/jquery-3.4.1.min.js 1091${PYSITELIB}/synapse/static/client/register/js/jquery-3.4.1.min.js
1086${PYSITELIB}/synapse/static/client/register/js/register.js 1092${PYSITELIB}/synapse/static/client/register/js/register.js
1087${PYSITELIB}/synapse/static/client/register/register_config.sample.js 1093${PYSITELIB}/synapse/static/client/register/register_config.sample.js
1088${PYSITELIB}/synapse/static/client/register/style.css 1094${PYSITELIB}/synapse/static/client/register/style.css
1089${PYSITELIB}/synapse/static/index.html 1095${PYSITELIB}/synapse/static/index.html
1090${PYSITELIB}/synapse/storage/__init__.py 1096${PYSITELIB}/synapse/storage/__init__.py
1091${PYSITELIB}/synapse/storage/__init__.pyc 1097${PYSITELIB}/synapse/storage/__init__.pyc
1092${PYSITELIB}/synapse/storage/__init__.pyo 1098${PYSITELIB}/synapse/storage/__init__.pyo
1093${PYSITELIB}/synapse/storage/_base.py 1099${PYSITELIB}/synapse/storage/_base.py
1094${PYSITELIB}/synapse/storage/_base.pyc 1100${PYSITELIB}/synapse/storage/_base.pyc
1095${PYSITELIB}/synapse/storage/_base.pyo 1101${PYSITELIB}/synapse/storage/_base.pyo
1096${PYSITELIB}/synapse/storage/background_updates.py 1102${PYSITELIB}/synapse/storage/background_updates.py
1097${PYSITELIB}/synapse/storage/background_updates.pyc 1103${PYSITELIB}/synapse/storage/background_updates.pyc
1098${PYSITELIB}/synapse/storage/background_updates.pyo 1104${PYSITELIB}/synapse/storage/background_updates.pyo
1099${PYSITELIB}/synapse/storage/database.py 1105${PYSITELIB}/synapse/storage/database.py
1100${PYSITELIB}/synapse/storage/database.pyc 1106${PYSITELIB}/synapse/storage/database.pyc
1101${PYSITELIB}/synapse/storage/database.pyo 1107${PYSITELIB}/synapse/storage/database.pyo
1102${PYSITELIB}/synapse/storage/databases/__init__.py 1108${PYSITELIB}/synapse/storage/databases/__init__.py
1103${PYSITELIB}/synapse/storage/databases/__init__.pyc 1109${PYSITELIB}/synapse/storage/databases/__init__.pyc
1104${PYSITELIB}/synapse/storage/databases/__init__.pyo 1110${PYSITELIB}/synapse/storage/databases/__init__.pyo
1105${PYSITELIB}/synapse/storage/databases/main/__init__.py 1111${PYSITELIB}/synapse/storage/databases/main/__init__.py
1106${PYSITELIB}/synapse/storage/databases/main/__init__.pyc 1112${PYSITELIB}/synapse/storage/databases/main/__init__.pyc
1107${PYSITELIB}/synapse/storage/databases/main/__init__.pyo 1113${PYSITELIB}/synapse/storage/databases/main/__init__.pyo
1108${PYSITELIB}/synapse/storage/databases/main/account_data.py 1114${PYSITELIB}/synapse/storage/databases/main/account_data.py
1109${PYSITELIB}/synapse/storage/databases/main/account_data.pyc 1115${PYSITELIB}/synapse/storage/databases/main/account_data.pyc
1110${PYSITELIB}/synapse/storage/databases/main/account_data.pyo 1116${PYSITELIB}/synapse/storage/databases/main/account_data.pyo
1111${PYSITELIB}/synapse/storage/databases/main/appservice.py 1117${PYSITELIB}/synapse/storage/databases/main/appservice.py
1112${PYSITELIB}/synapse/storage/databases/main/appservice.pyc 1118${PYSITELIB}/synapse/storage/databases/main/appservice.pyc
1113${PYSITELIB}/synapse/storage/databases/main/appservice.pyo 1119${PYSITELIB}/synapse/storage/databases/main/appservice.pyo
1114${PYSITELIB}/synapse/storage/databases/main/cache.py 1120${PYSITELIB}/synapse/storage/databases/main/cache.py
1115${PYSITELIB}/synapse/storage/databases/main/cache.pyc 1121${PYSITELIB}/synapse/storage/databases/main/cache.pyc
1116${PYSITELIB}/synapse/storage/databases/main/cache.pyo 1122${PYSITELIB}/synapse/storage/databases/main/cache.pyo
1117${PYSITELIB}/synapse/storage/databases/main/censor_events.py 1123${PYSITELIB}/synapse/storage/databases/main/censor_events.py
1118${PYSITELIB}/synapse/storage/databases/main/censor_events.pyc 1124${PYSITELIB}/synapse/storage/databases/main/censor_events.pyc
1119${PYSITELIB}/synapse/storage/databases/main/censor_events.pyo 1125${PYSITELIB}/synapse/storage/databases/main/censor_events.pyo
1120${PYSITELIB}/synapse/storage/databases/main/client_ips.py 1126${PYSITELIB}/synapse/storage/databases/main/client_ips.py
1121${PYSITELIB}/synapse/storage/databases/main/client_ips.pyc 1127${PYSITELIB}/synapse/storage/databases/main/client_ips.pyc
1122${PYSITELIB}/synapse/storage/databases/main/client_ips.pyo 1128${PYSITELIB}/synapse/storage/databases/main/client_ips.pyo
1123${PYSITELIB}/synapse/storage/databases/main/deviceinbox.py 1129${PYSITELIB}/synapse/storage/databases/main/deviceinbox.py
1124${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyc 1130${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyc
1125${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyo 1131${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyo
1126${PYSITELIB}/synapse/storage/databases/main/devices.py 1132${PYSITELIB}/synapse/storage/databases/main/devices.py
1127${PYSITELIB}/synapse/storage/databases/main/devices.pyc 1133${PYSITELIB}/synapse/storage/databases/main/devices.pyc
1128${PYSITELIB}/synapse/storage/databases/main/devices.pyo 1134${PYSITELIB}/synapse/storage/databases/main/devices.pyo
1129${PYSITELIB}/synapse/storage/databases/main/directory.py 1135${PYSITELIB}/synapse/storage/databases/main/directory.py
1130${PYSITELIB}/synapse/storage/databases/main/directory.pyc 1136${PYSITELIB}/synapse/storage/databases/main/directory.pyc
1131${PYSITELIB}/synapse/storage/databases/main/directory.pyo 1137${PYSITELIB}/synapse/storage/databases/main/directory.pyo
1132${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.py 1138${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.py
1133${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyc 1139${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyc
1134${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyo 1140${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyo
1135${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.py 1141${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.py
1136${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyc 1142${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyc
1137${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyo 1143${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyo
1138${PYSITELIB}/synapse/storage/databases/main/event_federation.py 1144${PYSITELIB}/synapse/storage/databases/main/event_federation.py
1139${PYSITELIB}/synapse/storage/databases/main/event_federation.pyc 1145${PYSITELIB}/synapse/storage/databases/main/event_federation.pyc
1140${PYSITELIB}/synapse/storage/databases/main/event_federation.pyo 1146${PYSITELIB}/synapse/storage/databases/main/event_federation.pyo
1141${PYSITELIB}/synapse/storage/databases/main/event_push_actions.py 1147${PYSITELIB}/synapse/storage/databases/main/event_push_actions.py
1142${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyc 1148${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyc
1143${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyo 1149${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyo
1144${PYSITELIB}/synapse/storage/databases/main/events.py 1150${PYSITELIB}/synapse/storage/databases/main/events.py
1145${PYSITELIB}/synapse/storage/databases/main/events.pyc 1151${PYSITELIB}/synapse/storage/databases/main/events.pyc
1146${PYSITELIB}/synapse/storage/databases/main/events.pyo 1152${PYSITELIB}/synapse/storage/databases/main/events.pyo
1147${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.py 1153${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.py
1148${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyc 1154${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyc
1149${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyo 1155${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyo
1150${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.py 1156${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.py
1151${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyc 1157${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyc
1152${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyo 1158${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyo
1153${PYSITELIB}/synapse/storage/databases/main/events_worker.py 1159${PYSITELIB}/synapse/storage/databases/main/events_worker.py
1154${PYSITELIB}/synapse/storage/databases/main/events_worker.pyc 1160${PYSITELIB}/synapse/storage/databases/main/events_worker.pyc
1155${PYSITELIB}/synapse/storage/databases/main/events_worker.pyo 1161${PYSITELIB}/synapse/storage/databases/main/events_worker.pyo
1156${PYSITELIB}/synapse/storage/databases/main/filtering.py 1162${PYSITELIB}/synapse/storage/databases/main/filtering.py
1157${PYSITELIB}/synapse/storage/databases/main/filtering.pyc 1163${PYSITELIB}/synapse/storage/databases/main/filtering.pyc
1158${PYSITELIB}/synapse/storage/databases/main/filtering.pyo 1164${PYSITELIB}/synapse/storage/databases/main/filtering.pyo
1159${PYSITELIB}/synapse/storage/databases/main/group_server.py 1165${PYSITELIB}/synapse/storage/databases/main/group_server.py
1160${PYSITELIB}/synapse/storage/databases/main/group_server.pyc 1166${PYSITELIB}/synapse/storage/databases/main/group_server.pyc
1161${PYSITELIB}/synapse/storage/databases/main/group_server.pyo 1167${PYSITELIB}/synapse/storage/databases/main/group_server.pyo
1162${PYSITELIB}/synapse/storage/databases/main/keys.py 1168${PYSITELIB}/synapse/storage/databases/main/keys.py
1163${PYSITELIB}/synapse/storage/databases/main/keys.pyc 1169${PYSITELIB}/synapse/storage/databases/main/keys.pyc
1164${PYSITELIB}/synapse/storage/databases/main/keys.pyo 1170${PYSITELIB}/synapse/storage/databases/main/keys.pyo
1165${PYSITELIB}/synapse/storage/databases/main/media_repository.py 1171${PYSITELIB}/synapse/storage/databases/main/media_repository.py
1166${PYSITELIB}/synapse/storage/databases/main/media_repository.pyc 1172${PYSITELIB}/synapse/storage/databases/main/media_repository.pyc
1167${PYSITELIB}/synapse/storage/databases/main/media_repository.pyo 1173${PYSITELIB}/synapse/storage/databases/main/media_repository.pyo
1168${PYSITELIB}/synapse/storage/databases/main/metrics.py 1174${PYSITELIB}/synapse/storage/databases/main/metrics.py
1169${PYSITELIB}/synapse/storage/databases/main/metrics.pyc 1175${PYSITELIB}/synapse/storage/databases/main/metrics.pyc
1170${PYSITELIB}/synapse/storage/databases/main/metrics.pyo 1176${PYSITELIB}/synapse/storage/databases/main/metrics.pyo
1171${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.py 1177${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.py
1172${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyc 1178${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyc
1173${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyo 1179${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyo
1174${PYSITELIB}/synapse/storage/databases/main/openid.py 1180${PYSITELIB}/synapse/storage/databases/main/openid.py
1175${PYSITELIB}/synapse/storage/databases/main/openid.pyc 1181${PYSITELIB}/synapse/storage/databases/main/openid.pyc
1176${PYSITELIB}/synapse/storage/databases/main/openid.pyo 1182${PYSITELIB}/synapse/storage/databases/main/openid.pyo
1177${PYSITELIB}/synapse/storage/databases/main/presence.py 1183${PYSITELIB}/synapse/storage/databases/main/presence.py
1178${PYSITELIB}/synapse/storage/databases/main/presence.pyc 1184${PYSITELIB}/synapse/storage/databases/main/presence.pyc
1179${PYSITELIB}/synapse/storage/databases/main/presence.pyo 1185${PYSITELIB}/synapse/storage/databases/main/presence.pyo
1180${PYSITELIB}/synapse/storage/databases/main/profile.py 1186${PYSITELIB}/synapse/storage/databases/main/profile.py
1181${PYSITELIB}/synapse/storage/databases/main/profile.pyc 1187${PYSITELIB}/synapse/storage/databases/main/profile.pyc
1182${PYSITELIB}/synapse/storage/databases/main/profile.pyo 1188${PYSITELIB}/synapse/storage/databases/main/profile.pyo
1183${PYSITELIB}/synapse/storage/databases/main/purge_events.py 1189${PYSITELIB}/synapse/storage/databases/main/purge_events.py
1184${PYSITELIB}/synapse/storage/databases/main/purge_events.pyc 1190${PYSITELIB}/synapse/storage/databases/main/purge_events.pyc
1185${PYSITELIB}/synapse/storage/databases/main/purge_events.pyo 1191${PYSITELIB}/synapse/storage/databases/main/purge_events.pyo
1186${PYSITELIB}/synapse/storage/databases/main/push_rule.py 1192${PYSITELIB}/synapse/storage/databases/main/push_rule.py
1187${PYSITELIB}/synapse/storage/databases/main/push_rule.pyc 1193${PYSITELIB}/synapse/storage/databases/main/push_rule.pyc
1188${PYSITELIB}/synapse/storage/databases/main/push_rule.pyo 1194${PYSITELIB}/synapse/storage/databases/main/push_rule.pyo
1189${PYSITELIB}/synapse/storage/databases/main/pusher.py 1195${PYSITELIB}/synapse/storage/databases/main/pusher.py
1190${PYSITELIB}/synapse/storage/databases/main/pusher.pyc 1196${PYSITELIB}/synapse/storage/databases/main/pusher.pyc
1191${PYSITELIB}/synapse/storage/databases/main/pusher.pyo 1197${PYSITELIB}/synapse/storage/databases/main/pusher.pyo
1192${PYSITELIB}/synapse/storage/databases/main/receipts.py 1198${PYSITELIB}/synapse/storage/databases/main/receipts.py
1193${PYSITELIB}/synapse/storage/databases/main/receipts.pyc 1199${PYSITELIB}/synapse/storage/databases/main/receipts.pyc
1194${PYSITELIB}/synapse/storage/databases/main/receipts.pyo 1200${PYSITELIB}/synapse/storage/databases/main/receipts.pyo
1195${PYSITELIB}/synapse/storage/databases/main/registration.py 1201${PYSITELIB}/synapse/storage/databases/main/registration.py
1196${PYSITELIB}/synapse/storage/databases/main/registration.pyc 1202${PYSITELIB}/synapse/storage/databases/main/registration.pyc
1197${PYSITELIB}/synapse/storage/databases/main/registration.pyo 1203${PYSITELIB}/synapse/storage/databases/main/registration.pyo
1198${PYSITELIB}/synapse/storage/databases/main/rejections.py 1204${PYSITELIB}/synapse/storage/databases/main/rejections.py
1199${PYSITELIB}/synapse/storage/databases/main/rejections.pyc 1205${PYSITELIB}/synapse/storage/databases/main/rejections.pyc
1200${PYSITELIB}/synapse/storage/databases/main/rejections.pyo 1206${PYSITELIB}/synapse/storage/databases/main/rejections.pyo
1201${PYSITELIB}/synapse/storage/databases/main/relations.py 1207${PYSITELIB}/synapse/storage/databases/main/relations.py
1202${PYSITELIB}/synapse/storage/databases/main/relations.pyc 1208${PYSITELIB}/synapse/storage/databases/main/relations.pyc
1203${PYSITELIB}/synapse/storage/databases/main/relations.pyo 1209${PYSITELIB}/synapse/storage/databases/main/relations.pyo
1204${PYSITELIB}/synapse/storage/databases/main/room.py 1210${PYSITELIB}/synapse/storage/databases/main/room.py
1205${PYSITELIB}/synapse/storage/databases/main/room.pyc 1211${PYSITELIB}/synapse/storage/databases/main/room.pyc
1206${PYSITELIB}/synapse/storage/databases/main/room.pyo 1212${PYSITELIB}/synapse/storage/databases/main/room.pyo
1207${PYSITELIB}/synapse/storage/databases/main/roommember.py 1213${PYSITELIB}/synapse/storage/databases/main/roommember.py
1208${PYSITELIB}/synapse/storage/databases/main/roommember.pyc 1214${PYSITELIB}/synapse/storage/databases/main/roommember.pyc
1209${PYSITELIB}/synapse/storage/databases/main/roommember.pyo 1215${PYSITELIB}/synapse/storage/databases/main/roommember.pyo
1210${PYSITELIB}/synapse/storage/databases/main/schema/delta/12/v12.sql 1216${PYSITELIB}/synapse/storage/databases/main/schema/delta/12/v12.sql
1211${PYSITELIB}/synapse/storage/databases/main/schema/delta/13/v13.sql 1217${PYSITELIB}/synapse/storage/databases/main/schema/delta/13/v13.sql
1212${PYSITELIB}/synapse/storage/databases/main/schema/delta/14/v14.sql 1218${PYSITELIB}/synapse/storage/databases/main/schema/delta/14/v14.sql
1213${PYSITELIB}/synapse/storage/databases/main/schema/delta/15/appservice_txns.sql 1219${PYSITELIB}/synapse/storage/databases/main/schema/delta/15/appservice_txns.sql
1214${PYSITELIB}/synapse/storage/databases/main/schema/delta/15/presence_indices.sql 1220${PYSITELIB}/synapse/storage/databases/main/schema/delta/15/presence_indices.sql
1215${PYSITELIB}/synapse/storage/databases/main/schema/delta/15/v15.sql 1221${PYSITELIB}/synapse/storage/databases/main/schema/delta/15/v15.sql
1216${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/events_order_index.sql 1222${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/events_order_index.sql
1217${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/remote_media_cache_index.sql 1223${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/remote_media_cache_index.sql
1218${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/remove_duplicates.sql 1224${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/remove_duplicates.sql
1219${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/room_alias_index.sql 1225${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/room_alias_index.sql
1220${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/unique_constraints.sql 1226${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/unique_constraints.sql
1221${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/users.sql 1227${PYSITELIB}/synapse/storage/databases/main/schema/delta/16/users.sql
1222${PYSITELIB}/synapse/storage/databases/main/schema/delta/17/drop_indexes.sql 1228${PYSITELIB}/synapse/storage/databases/main/schema/delta/17/drop_indexes.sql
1223${PYSITELIB}/synapse/storage/databases/main/schema/delta/17/server_keys.sql 1229${PYSITELIB}/synapse/storage/databases/main/schema/delta/17/server_keys.sql
1224${PYSITELIB}/synapse/storage/databases/main/schema/delta/17/user_threepids.sql 1230${PYSITELIB}/synapse/storage/databases/main/schema/delta/17/user_threepids.sql
1225${PYSITELIB}/synapse/storage/databases/main/schema/delta/18/server_keys_bigger_ints.sql 1231${PYSITELIB}/synapse/storage/databases/main/schema/delta/18/server_keys_bigger_ints.sql
1226${PYSITELIB}/synapse/storage/databases/main/schema/delta/19/event_index.sql 1232${PYSITELIB}/synapse/storage/databases/main/schema/delta/19/event_index.sql
1227${PYSITELIB}/synapse/storage/databases/main/schema/delta/20/dummy.sql 1233${PYSITELIB}/synapse/storage/databases/main/schema/delta/20/dummy.sql
1228${PYSITELIB}/synapse/storage/databases/main/schema/delta/20/pushers.py 1234${PYSITELIB}/synapse/storage/databases/main/schema/delta/20/pushers.py
1229${PYSITELIB}/synapse/storage/databases/main/schema/delta/20/pushers.pyc 1235${PYSITELIB}/synapse/storage/databases/main/schema/delta/20/pushers.pyc
1230${PYSITELIB}/synapse/storage/databases/main/schema/delta/20/pushers.pyo 1236${PYSITELIB}/synapse/storage/databases/main/schema/delta/20/pushers.pyo
1231${PYSITELIB}/synapse/storage/databases/main/schema/delta/21/end_to_end_keys.sql 1237${PYSITELIB}/synapse/storage/databases/main/schema/delta/21/end_to_end_keys.sql
1232${PYSITELIB}/synapse/storage/databases/main/schema/delta/21/receipts.sql 1238${PYSITELIB}/synapse/storage/databases/main/schema/delta/21/receipts.sql
1233${PYSITELIB}/synapse/storage/databases/main/schema/delta/22/receipts_index.sql 1239${PYSITELIB}/synapse/storage/databases/main/schema/delta/22/receipts_index.sql
1234${PYSITELIB}/synapse/storage/databases/main/schema/delta/22/user_threepids_unique.sql 1240${PYSITELIB}/synapse/storage/databases/main/schema/delta/22/user_threepids_unique.sql
1235${PYSITELIB}/synapse/storage/databases/main/schema/delta/24/stats_reporting.sql 1241${PYSITELIB}/synapse/storage/databases/main/schema/delta/24/stats_reporting.sql
1236${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/fts.py 1242${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/fts.py
1237${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/fts.pyc 1243${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/fts.pyc
1238${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/fts.pyo 1244${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/fts.pyo
1239${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/guest_access.sql 1245${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/guest_access.sql
1240${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/history_visibility.sql 1246${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/history_visibility.sql
1241${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/tags.sql 1247${PYSITELIB}/synapse/storage/databases/main/schema/delta/25/tags.sql
1242${PYSITELIB}/synapse/storage/databases/main/schema/delta/26/account_data.sql 1248${PYSITELIB}/synapse/storage/databases/main/schema/delta/26/account_data.sql
1243${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/account_data.sql 1249${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/account_data.sql
1244${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/forgotten_memberships.sql 1250${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/forgotten_memberships.sql
1245${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/ts.py 1251${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/ts.py
1246${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/ts.pyc 1252${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/ts.pyc
1247${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/ts.pyo 1253${PYSITELIB}/synapse/storage/databases/main/schema/delta/27/ts.pyo
1248${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/event_push_actions.sql 1254${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/event_push_actions.sql
1249${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/events_room_stream.sql 1255${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/events_room_stream.sql
1250${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/public_roms_index.sql 1256${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/public_roms_index.sql
1251${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/receipts_user_id_index.sql 1257${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/receipts_user_id_index.sql
1252${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/upgrade_times.sql 1258${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/upgrade_times.sql
1253${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/users_is_guest.sql 1259${PYSITELIB}/synapse/storage/databases/main/schema/delta/28/users_is_guest.sql
1254${PYSITELIB}/synapse/storage/databases/main/schema/delta/29/push_actions.sql 1260${PYSITELIB}/synapse/storage/databases/main/schema/delta/29/push_actions.sql
1255${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/alias_creator.sql 1261${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/alias_creator.sql
1256${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/as_users.py 1262${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/as_users.py
1257${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/as_users.pyc 1263${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/as_users.pyc
1258${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/as_users.pyo 1264${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/as_users.pyo
1259${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/deleted_pushers.sql 1265${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/deleted_pushers.sql
1260${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/presence_stream.sql 1266${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/presence_stream.sql
1261${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/public_rooms.sql 1267${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/public_rooms.sql
1262${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/push_rule_stream.sql 1268${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/push_rule_stream.sql
1263${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/threepid_guest_access_tokens.sql 1269${PYSITELIB}/synapse/storage/databases/main/schema/delta/30/threepid_guest_access_tokens.sql
1264${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/invites.sql 1270${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/invites.sql
1265${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/local_media_repository_url_cache.sql 1271${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/local_media_repository_url_cache.sql
1266${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/pushers.py 1272${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/pushers.py
1267${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/pushers.pyc 1273${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/pushers.pyc
1268${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/pushers.pyo 1274${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/pushers.pyo
1269${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/pushers_index.sql 1275${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/pushers_index.sql
1270${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/search_update.py 1276${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/search_update.py
1271${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/search_update.pyc 1277${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/search_update.pyc
1272${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/search_update.pyo 1278${PYSITELIB}/synapse/storage/databases/main/schema/delta/31/search_update.pyo
1273${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/events.sql 1279${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/events.sql
1274${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/openid.sql 1280${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/openid.sql
1275${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/pusher_throttle.sql 1281${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/pusher_throttle.sql
1276${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/remove_indices.sql 1282${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/remove_indices.sql
1277${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/reports.sql 1283${PYSITELIB}/synapse/storage/databases/main/schema/delta/32/reports.sql
1278${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/access_tokens_device_index.sql 1284${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/access_tokens_device_index.sql
1279${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/devices.sql 1285${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/devices.sql
1280${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/devices_for_e2e_keys.sql 1286${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/devices_for_e2e_keys.sql
1281${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/devices_for_e2e_keys_clear_unknown_device.sql 1287${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/devices_for_e2e_keys_clear_unknown_device.sql
1282${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/event_fields.py 1288${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/event_fields.py
1283${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/event_fields.pyc 1289${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/event_fields.pyc
1284${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/event_fields.pyo 1290${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/event_fields.pyo
1285${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/remote_media_ts.py 1291${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/remote_media_ts.py
1286${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/remote_media_ts.pyc 1292${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/remote_media_ts.pyc
1287${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/remote_media_ts.pyo 1293${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/remote_media_ts.pyo
1288${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/user_ips_index.sql 1294${PYSITELIB}/synapse/storage/databases/main/schema/delta/33/user_ips_index.sql
1289${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/appservice_stream.sql 1295${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/appservice_stream.sql
1290${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/cache_stream.py 1296${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/cache_stream.py
1291${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/cache_stream.pyc 1297${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/cache_stream.pyc
1292${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/cache_stream.pyo 1298${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/cache_stream.pyo
1293${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/device_inbox.sql 1299${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/device_inbox.sql
1294${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/push_display_name_rename.sql 1300${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/push_display_name_rename.sql
1295${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/received_txn_purge.py 1301${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/received_txn_purge.py
1296${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/received_txn_purge.pyc 1302${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/received_txn_purge.pyc
1297${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/received_txn_purge.pyo 1303${PYSITELIB}/synapse/storage/databases/main/schema/delta/34/received_txn_purge.pyo
1298${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/contains_url.sql 1304${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/contains_url.sql
1299${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/device_outbox.sql 1305${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/device_outbox.sql
1300${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/device_stream_id.sql 1306${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/device_stream_id.sql
1301${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/event_push_actions_index.sql 1307${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/event_push_actions_index.sql
1302${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/public_room_list_change_stream.sql 1308${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/public_room_list_change_stream.sql
1303${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/stream_order_to_extrem.sql 1309${PYSITELIB}/synapse/storage/databases/main/schema/delta/35/stream_order_to_extrem.sql
1304${PYSITELIB}/synapse/storage/databases/main/schema/delta/36/readd_public_rooms.sql 1310${PYSITELIB}/synapse/storage/databases/main/schema/delta/36/readd_public_rooms.sql
1305${PYSITELIB}/synapse/storage/databases/main/schema/delta/37/remove_auth_idx.py 1311${PYSITELIB}/synapse/storage/databases/main/schema/delta/37/remove_auth_idx.py
1306${PYSITELIB}/synapse/storage/databases/main/schema/delta/37/remove_auth_idx.pyc 1312${PYSITELIB}/synapse/storage/databases/main/schema/delta/37/remove_auth_idx.pyc
1307${PYSITELIB}/synapse/storage/databases/main/schema/delta/37/remove_auth_idx.pyo 1313${PYSITELIB}/synapse/storage/databases/main/schema/delta/37/remove_auth_idx.pyo
1308${PYSITELIB}/synapse/storage/databases/main/schema/delta/37/user_threepids.sql 1314${PYSITELIB}/synapse/storage/databases/main/schema/delta/37/user_threepids.sql
1309${PYSITELIB}/synapse/storage/databases/main/schema/delta/38/postgres_fts_gist.sql 1315${PYSITELIB}/synapse/storage/databases/main/schema/delta/38/postgres_fts_gist.sql
1310${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/appservice_room_list.sql 1316${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/appservice_room_list.sql
1311${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/device_federation_stream_idx.sql 1317${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/device_federation_stream_idx.sql
1312${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/event_push_index.sql 1318${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/event_push_index.sql
1313${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/federation_out_position.sql 1319${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/federation_out_position.sql
1314${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/membership_profile.sql 1320${PYSITELIB}/synapse/storage/databases/main/schema/delta/39/membership_profile.sql
1315${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/current_state_idx.sql 1321${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/current_state_idx.sql
1316${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/device_inbox.sql 1322${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/device_inbox.sql
1317${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/device_list_streams.sql 1323${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/device_list_streams.sql
1318${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/event_push_summary.sql 1324${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/event_push_summary.sql
1319${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/pushers.sql 1325${PYSITELIB}/synapse/storage/databases/main/schema/delta/40/pushers.sql
1320${PYSITELIB}/synapse/storage/databases/main/schema/delta/41/device_list_stream_idx.sql 1326${PYSITELIB}/synapse/storage/databases/main/schema/delta/41/device_list_stream_idx.sql
1321${PYSITELIB}/synapse/storage/databases/main/schema/delta/41/device_outbound_index.sql 1327${PYSITELIB}/synapse/storage/databases/main/schema/delta/41/device_outbound_index.sql
1322${PYSITELIB}/synapse/storage/databases/main/schema/delta/41/event_search_event_id_idx.sql 1328${PYSITELIB}/synapse/storage/databases/main/schema/delta/41/event_search_event_id_idx.sql
1323${PYSITELIB}/synapse/storage/databases/main/schema/delta/41/ratelimit.sql 1329${PYSITELIB}/synapse/storage/databases/main/schema/delta/41/ratelimit.sql
1324${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/current_state_delta.sql 1330${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/current_state_delta.sql
1325${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/device_list_last_id.sql 1331${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/device_list_last_id.sql
1326${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/event_auth_state_only.sql 1332${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/event_auth_state_only.sql
1327${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/user_dir.py 1333${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/user_dir.py
1328${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/user_dir.pyc 1334${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/user_dir.pyc
1329${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/user_dir.pyo 1335${PYSITELIB}/synapse/storage/databases/main/schema/delta/42/user_dir.pyo
1330${PYSITELIB}/synapse/storage/databases/main/schema/delta/43/blocked_rooms.sql 1336${PYSITELIB}/synapse/storage/databases/main/schema/delta/43/blocked_rooms.sql
1331${PYSITELIB}/synapse/storage/databases/main/schema/delta/43/quarantine_media.sql 1337${PYSITELIB}/synapse/storage/databases/main/schema/delta/43/quarantine_media.sql
1332${PYSITELIB}/synapse/storage/databases/main/schema/delta/43/url_cache.sql 1338${PYSITELIB}/synapse/storage/databases/main/schema/delta/43/url_cache.sql
1333${PYSITELIB}/synapse/storage/databases/main/schema/delta/43/user_share.sql 1339${PYSITELIB}/synapse/storage/databases/main/schema/delta/43/user_share.sql
1334${PYSITELIB}/synapse/storage/databases/main/schema/delta/44/expire_url_cache.sql 1340${PYSITELIB}/synapse/storage/databases/main/schema/delta/44/expire_url_cache.sql
1335${PYSITELIB}/synapse/storage/databases/main/schema/delta/45/group_server.sql 1341${PYSITELIB}/synapse/storage/databases/main/schema/delta/45/group_server.sql
1336${PYSITELIB}/synapse/storage/databases/main/schema/delta/45/profile_cache.sql 1342${PYSITELIB}/synapse/storage/databases/main/schema/delta/45/profile_cache.sql
1337${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/drop_refresh_tokens.sql 1343${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/drop_refresh_tokens.sql
1338${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/drop_unique_deleted_pushers.sql 1344${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/drop_unique_deleted_pushers.sql
1339${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/group_server.sql 1345${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/group_server.sql
1340${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/local_media_repository_url_idx.sql 1346${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/local_media_repository_url_idx.sql
1341${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/user_dir_null_room_ids.sql 1347${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/user_dir_null_room_ids.sql
1342${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/user_dir_typos.sql 1348${PYSITELIB}/synapse/storage/databases/main/schema/delta/46/user_dir_typos.sql
1343${PYSITELIB}/synapse/storage/databases/main/schema/delta/47/last_access_media.sql 1349${PYSITELIB}/synapse/storage/databases/main/schema/delta/47/last_access_media.sql
1344${PYSITELIB}/synapse/storage/databases/main/schema/delta/47/postgres_fts_gin.sql 1350${PYSITELIB}/synapse/storage/databases/main/schema/delta/47/postgres_fts_gin.sql
1345${PYSITELIB}/synapse/storage/databases/main/schema/delta/47/push_actions_staging.sql 1351${PYSITELIB}/synapse/storage/databases/main/schema/delta/47/push_actions_staging.sql
1346${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/add_user_consent.sql 1352${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/add_user_consent.sql
1347${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/add_user_ips_last_seen_index.sql 1353${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/add_user_ips_last_seen_index.sql
1348${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/deactivated_users.sql 1354${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/deactivated_users.sql
1349${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/group_unique_indexes.py 1355${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/group_unique_indexes.py
1350${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/group_unique_indexes.pyc 1356${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/group_unique_indexes.pyc
1351${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/group_unique_indexes.pyo 1357${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/group_unique_indexes.pyo
1352${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/groups_joinable.sql 1358${PYSITELIB}/synapse/storage/databases/main/schema/delta/48/groups_joinable.sql
1353${PYSITELIB}/synapse/storage/databases/main/schema/delta/49/add_user_consent_server_notice_sent.sql 1359${PYSITELIB}/synapse/storage/databases/main/schema/delta/49/add_user_consent_server_notice_sent.sql
1354${PYSITELIB}/synapse/storage/databases/main/schema/delta/49/add_user_daily_visits.sql 1360${PYSITELIB}/synapse/storage/databases/main/schema/delta/49/add_user_daily_visits.sql
1355${PYSITELIB}/synapse/storage/databases/main/schema/delta/49/add_user_ips_last_seen_only_index.sql 1361${PYSITELIB}/synapse/storage/databases/main/schema/delta/49/add_user_ips_last_seen_only_index.sql
1356${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/add_creation_ts_users_index.sql 1362${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/add_creation_ts_users_index.sql
1357${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/erasure_store.sql 1363${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/erasure_store.sql
1358${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/make_event_content_nullable.py 1364${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/make_event_content_nullable.py
1359${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/make_event_content_nullable.pyc 1365${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/make_event_content_nullable.pyc
1360${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/make_event_content_nullable.pyo 1366${PYSITELIB}/synapse/storage/databases/main/schema/delta/50/make_event_content_nullable.pyo
1361${PYSITELIB}/synapse/storage/databases/main/schema/delta/51/e2e_room_keys.sql 1367${PYSITELIB}/synapse/storage/databases/main/schema/delta/51/e2e_room_keys.sql
1362${PYSITELIB}/synapse/storage/databases/main/schema/delta/51/monthly_active_users.sql 1368${PYSITELIB}/synapse/storage/databases/main/schema/delta/51/monthly_active_users.sql
1363${PYSITELIB}/synapse/storage/databases/main/schema/delta/52/add_event_to_state_group_index.sql 1369${PYSITELIB}/synapse/storage/databases/main/schema/delta/52/add_event_to_state_group_index.sql
1364${PYSITELIB}/synapse/storage/databases/main/schema/delta/52/device_list_streams_unique_idx.sql 1370${PYSITELIB}/synapse/storage/databases/main/schema/delta/52/device_list_streams_unique_idx.sql
1365${PYSITELIB}/synapse/storage/databases/main/schema/delta/52/e2e_room_keys.sql 1371${PYSITELIB}/synapse/storage/databases/main/schema/delta/52/e2e_room_keys.sql
1366${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/add_user_type_to_users.sql 1372${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/add_user_type_to_users.sql
1367${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/drop_sent_transactions.sql 1373${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/drop_sent_transactions.sql
1368${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/event_format_version.sql 1374${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/event_format_version.sql
1369${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/user_dir_populate.sql 1375${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/user_dir_populate.sql
1370${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/user_ips_index.sql 1376${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/user_ips_index.sql
1371${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/user_share.sql 1377${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/user_share.sql
1372${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/user_threepid_id.sql 1378${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/user_threepid_id.sql
1373${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/users_in_public_rooms.sql 1379${PYSITELIB}/synapse/storage/databases/main/schema/delta/53/users_in_public_rooms.sql
1374${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/account_validity_with_renewal.sql 1380${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/account_validity_with_renewal.sql
1375${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/add_validity_to_server_keys.sql 1381${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/add_validity_to_server_keys.sql
1376${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/delete_forward_extremities.sql 1382${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/delete_forward_extremities.sql
1377${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/drop_legacy_tables.sql 1383${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/drop_legacy_tables.sql
1378${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/drop_presence_list.sql 1384${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/drop_presence_list.sql
1379${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/relations.sql 1385${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/relations.sql
1380${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/stats.sql 1386${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/stats.sql
1381${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/stats2.sql 1387${PYSITELIB}/synapse/storage/databases/main/schema/delta/54/stats2.sql
1382${PYSITELIB}/synapse/storage/databases/main/schema/delta/55/access_token_expiry.sql 1388${PYSITELIB}/synapse/storage/databases/main/schema/delta/55/access_token_expiry.sql
1383${PYSITELIB}/synapse/storage/databases/main/schema/delta/55/track_threepid_validations.sql 1389${PYSITELIB}/synapse/storage/databases/main/schema/delta/55/track_threepid_validations.sql
1384${PYSITELIB}/synapse/storage/databases/main/schema/delta/55/users_alter_deactivated.sql 1390${PYSITELIB}/synapse/storage/databases/main/schema/delta/55/users_alter_deactivated.sql
1385${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/add_spans_to_device_lists.sql 1391${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/add_spans_to_device_lists.sql
1386${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/current_state_events_membership.sql 1392${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/current_state_events_membership.sql
1387${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/current_state_events_membership_mk2.sql 1393${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/current_state_events_membership_mk2.sql
1388${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/delete_keys_from_deleted_backups.sql 1394${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/delete_keys_from_deleted_backups.sql
1389${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/destinations_failure_ts.sql 1395${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/destinations_failure_ts.sql
1390${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/destinations_retry_interval_type.sql.postgres 1396${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/destinations_retry_interval_type.sql.postgres
1391${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/device_stream_id_insert.sql 1397${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/device_stream_id_insert.sql
1392${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/devices_last_seen.sql 1398${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/devices_last_seen.sql
1393${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/drop_unused_event_tables.sql 1399${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/drop_unused_event_tables.sql
1394${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/event_expiry.sql 1400${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/event_expiry.sql
1395${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/event_labels.sql 1401${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/event_labels.sql
1396${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/event_labels_background_update.sql 1402${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/event_labels_background_update.sql
1397${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/fix_room_keys_index.sql 1403${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/fix_room_keys_index.sql
1398${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/hidden_devices.sql 1404${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/hidden_devices.sql
1399${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/hidden_devices_fix.sql.sqlite 1405${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/hidden_devices_fix.sql.sqlite
1400${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/nuke_empty_communities_from_db.sql 1406${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/nuke_empty_communities_from_db.sql
1401${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/public_room_list_idx.sql 1407${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/public_room_list_idx.sql
1402${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/redaction_censor.sql 1408${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/redaction_censor.sql
1403${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/redaction_censor2.sql 1409${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/redaction_censor2.sql
1404${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/redaction_censor3_fix_update.sql.postgres 1410${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/redaction_censor3_fix_update.sql.postgres
1405${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/redaction_censor4.sql 1411${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/redaction_censor4.sql
1406${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/remove_tombstoned_rooms_from_directory.sql 1412${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/remove_tombstoned_rooms_from_directory.sql
1407${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/room_key_etag.sql 1413${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/room_key_etag.sql
1408${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/room_membership_idx.sql 1414${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/room_membership_idx.sql
1409${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/room_retention.sql 1415${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/room_retention.sql
1410${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/signing_keys.sql 1416${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/signing_keys.sql
1411${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/signing_keys_nonunique_signatures.sql 1417${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/signing_keys_nonunique_signatures.sql
1412${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/stats_separated.sql 1418${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/stats_separated.sql
1413${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/unique_user_filter_index.py 1419${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/unique_user_filter_index.py
1414${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/unique_user_filter_index.pyc 1420${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/unique_user_filter_index.pyc
1415${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/unique_user_filter_index.pyo 1421${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/unique_user_filter_index.pyo
1416${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/user_external_ids.sql 1422${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/user_external_ids.sql
1417${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/users_in_public_rooms_idx.sql 1423${PYSITELIB}/synapse/storage/databases/main/schema/delta/56/users_in_public_rooms_idx.sql
1418${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/delete_old_current_state_events.sql 1424${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/delete_old_current_state_events.sql
1419${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/device_list_remote_cache_stale.sql 1425${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/device_list_remote_cache_stale.sql
1420${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/local_current_membership.py 1426${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/local_current_membership.py
1421${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/local_current_membership.pyc 1427${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/local_current_membership.pyc
1422${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/local_current_membership.pyo 1428${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/local_current_membership.pyo
1423${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/remove_sent_outbound_pokes.sql 1429${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/remove_sent_outbound_pokes.sql
1424${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column.sql 1430${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column.sql
1425${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column_2.sql.postgres 1431${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column_2.sql.postgres
1426${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column_2.sql.sqlite 1432${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column_2.sql.sqlite
1427${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column_3.sql.postgres 1433${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column_3.sql.postgres
1428${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column_3.sql.sqlite 1434${PYSITELIB}/synapse/storage/databases/main/schema/delta/57/rooms_version_column_3.sql.sqlite
1429${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/02remove_dup_outbound_pokes.sql 1435${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/02remove_dup_outbound_pokes.sql
1430${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/03persist_ui_auth.sql 1436${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/03persist_ui_auth.sql
1431${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/05cache_instance.sql.postgres 1437${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/05cache_instance.sql.postgres
1432${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/06dlols_unique_idx.py 1438${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/06dlols_unique_idx.py
1433${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/06dlols_unique_idx.pyc 1439${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/06dlols_unique_idx.pyc
1434${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/06dlols_unique_idx.pyo 1440${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/06dlols_unique_idx.pyo
1435${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/07add_method_to_thumbnail_constraint.sql.postgres 1441${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/07add_method_to_thumbnail_constraint.sql.postgres
1436${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/07add_method_to_thumbnail_constraint.sql.sqlite 1442${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/07add_method_to_thumbnail_constraint.sql.sqlite
1437${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/07persist_ui_auth_ips.sql 1443${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/07persist_ui_auth_ips.sql
1438${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/08_media_safe_from_quarantine.sql.postgres 1444${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/08_media_safe_from_quarantine.sql.postgres
1439${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/08_media_safe_from_quarantine.sql.sqlite 1445${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/08_media_safe_from_quarantine.sql.sqlite
1440${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/09shadow_ban.sql 1446${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/09shadow_ban.sql
1441${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/10_pushrules_enabled_delete_obsolete.sql 1447${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/10_pushrules_enabled_delete_obsolete.sql
1442${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/10drop_local_rejections_stream.sql 1448${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/10drop_local_rejections_stream.sql
1443${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/10federation_pos_instance_name.sql 1449${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/10federation_pos_instance_name.sql
1444${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11dehydration.sql 1450${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11dehydration.sql
1445${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11fallback.sql 1451${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11fallback.sql
1446${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11user_id_seq.py 1452${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11user_id_seq.py
1447${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11user_id_seq.pyc 1453${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11user_id_seq.pyc
1448${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11user_id_seq.pyo 1454${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/11user_id_seq.pyo
1449${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/12room_stats.sql 1455${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/12room_stats.sql
1450${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/13remove_presence_allow_inbound.sql 1456${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/13remove_presence_allow_inbound.sql
1451${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/14events_instance_name.sql 1457${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/14events_instance_name.sql
1452${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/14events_instance_name.sql.postgres 1458${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/14events_instance_name.sql.postgres
1453${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/15_catchup_destination_rooms.sql 1459${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/15_catchup_destination_rooms.sql
1454${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/15unread_count.sql 1460${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/15unread_count.sql
1455${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/16populate_stats_process_rooms_fix.sql 1461${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/16populate_stats_process_rooms_fix.sql
1456${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/17_catchup_last_successful.sql 1462${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/17_catchup_last_successful.sql
1457${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/18stream_positions.sql 1463${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/18stream_positions.sql
1458${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/19instance_map.sql.postgres 1464${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/19instance_map.sql.postgres
1459${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/19txn_id.sql 1465${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/19txn_id.sql
1460${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/20instance_name_event_tables.sql 1466${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/20instance_name_event_tables.sql
1461${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/20user_daily_visits.sql 1467${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/20user_daily_visits.sql
1462${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/21as_device_stream.sql 1468${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/21as_device_stream.sql
1463${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/21drop_device_max_stream_id.sql 1469${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/21drop_device_max_stream_id.sql
1464${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/22puppet_token.sql 1470${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/22puppet_token.sql
1465${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/22users_have_local_media.sql 1471${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/22users_have_local_media.sql
1466${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/23e2e_cross_signing_keys_idx.sql 1472${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/23e2e_cross_signing_keys_idx.sql
1467${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/24drop_event_json_index.sql 1473${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/24drop_event_json_index.sql
1468${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/25user_external_ids_user_id_idx.sql 1474${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/25user_external_ids_user_id_idx.sql
1469${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/26access_token_last_validated.sql 1475${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/26access_token_last_validated.sql
1470${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/27local_invites.sql 1476${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/27local_invites.sql
1471${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/28drop_last_used_column.sql.postgres 1477${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/28drop_last_used_column.sql.postgres
1472${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/28drop_last_used_column.sql.sqlite 1478${PYSITELIB}/synapse/storage/databases/main/schema/delta/58/28drop_last_used_column.sql.sqlite
1473${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/01ignored_user.py 1479${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/01ignored_user.py
1474${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/01ignored_user.pyc 1480${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/01ignored_user.pyc
1475${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/01ignored_user.pyo 1481${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/01ignored_user.pyo
1476${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/02shard_send_to_device.sql 1482${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/02shard_send_to_device.sql
1477${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/03shard_send_to_device_sequence.sql.postgres 1483${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/03shard_send_to_device_sequence.sql.postgres
1478${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/04_event_auth_chains.sql 1484${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/04_event_auth_chains.sql
1479${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/04_event_auth_chains.sql.postgres 1485${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/04_event_auth_chains.sql.postgres
1480${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/04drop_account_data.sql 1486${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/04drop_account_data.sql
1481${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/05cache_invalidation.sql 1487${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/05cache_invalidation.sql
1482${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/06chain_cover_index.sql 1488${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/06chain_cover_index.sql
1483${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/06shard_account_data.sql 1489${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/06shard_account_data.sql
1484${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/06shard_account_data.sql.postgres 1490${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/06shard_account_data.sql.postgres
1485${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/07shard_account_data_fix.sql 1491${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/07shard_account_data_fix.sql
1486${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/08delete_pushers_for_deactivated_accounts.sql 1492${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/08delete_pushers_for_deactivated_accounts.sql
1487${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/08delete_stale_pushers.sql 1493${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/08delete_stale_pushers.sql
1488${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/09rejected_events_metadata.sql 1494${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/09rejected_events_metadata.sql
 1495${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/10delete_purged_chain_cover.sql
 1496${PYSITELIB}/synapse/storage/databases/main/schema/delta/59/11drop_thumbnail_constraint.sql.postgres
1489${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/application_services.sql 1497${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/application_services.sql
1490${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/event_edges.sql 1498${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/event_edges.sql
1491${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/event_signatures.sql 1499${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/event_signatures.sql
1492${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/im.sql 1500${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/im.sql
1493${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/keys.sql 1501${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/keys.sql
1494${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/media_repository.sql 1502${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/media_repository.sql
1495${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/presence.sql 1503${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/presence.sql
1496${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/profiles.sql 1504${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/profiles.sql
1497${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/push.sql 1505${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/push.sql
1498${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/redactions.sql 1506${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/redactions.sql
1499${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/room_aliases.sql 1507${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/room_aliases.sql
1500${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/state.sql 1508${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/state.sql
1501${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/transactions.sql 1509${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/transactions.sql
1502${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/users.sql 1510${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/16/users.sql
1503${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/54/full.sql.postgres 1511${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/54/full.sql.postgres
1504${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/54/full.sql.sqlite 1512${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/54/full.sql.sqlite
1505${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/54/stream_positions.sql 1513${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/54/stream_positions.sql
1506${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/README.md 1514${PYSITELIB}/synapse/storage/databases/main/schema/full_schemas/README.md
1507${PYSITELIB}/synapse/storage/databases/main/search.py 1515${PYSITELIB}/synapse/storage/databases/main/search.py
1508${PYSITELIB}/synapse/storage/databases/main/search.pyc 1516${PYSITELIB}/synapse/storage/databases/main/search.pyc
1509${PYSITELIB}/synapse/storage/databases/main/search.pyo 1517${PYSITELIB}/synapse/storage/databases/main/search.pyo
1510${PYSITELIB}/synapse/storage/databases/main/signatures.py 1518${PYSITELIB}/synapse/storage/databases/main/signatures.py
1511${PYSITELIB}/synapse/storage/databases/main/signatures.pyc 1519${PYSITELIB}/synapse/storage/databases/main/signatures.pyc
1512${PYSITELIB}/synapse/storage/databases/main/signatures.pyo 1520${PYSITELIB}/synapse/storage/databases/main/signatures.pyo
1513${PYSITELIB}/synapse/storage/databases/main/state.py 1521${PYSITELIB}/synapse/storage/databases/main/state.py
1514${PYSITELIB}/synapse/storage/databases/main/state.pyc 1522${PYSITELIB}/synapse/storage/databases/main/state.pyc
1515${PYSITELIB}/synapse/storage/databases/main/state.pyo 1523${PYSITELIB}/synapse/storage/databases/main/state.pyo
1516${PYSITELIB}/synapse/storage/databases/main/state_deltas.py 1524${PYSITELIB}/synapse/storage/databases/main/state_deltas.py
1517${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyc 1525${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyc
1518${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyo 1526${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyo
1519${PYSITELIB}/synapse/storage/databases/main/stats.py 1527${PYSITELIB}/synapse/storage/databases/main/stats.py
1520${PYSITELIB}/synapse/storage/databases/main/stats.pyc 1528${PYSITELIB}/synapse/storage/databases/main/stats.pyc
1521${PYSITELIB}/synapse/storage/databases/main/stats.pyo 1529${PYSITELIB}/synapse/storage/databases/main/stats.pyo
1522${PYSITELIB}/synapse/storage/databases/main/stream.py 1530${PYSITELIB}/synapse/storage/databases/main/stream.py
1523${PYSITELIB}/synapse/storage/databases/main/stream.pyc 1531${PYSITELIB}/synapse/storage/databases/main/stream.pyc
1524${PYSITELIB}/synapse/storage/databases/main/stream.pyo 1532${PYSITELIB}/synapse/storage/databases/main/stream.pyo
1525${PYSITELIB}/synapse/storage/databases/main/tags.py 1533${PYSITELIB}/synapse/storage/databases/main/tags.py
1526${PYSITELIB}/synapse/storage/databases/main/tags.pyc 1534${PYSITELIB}/synapse/storage/databases/main/tags.pyc
1527${PYSITELIB}/synapse/storage/databases/main/tags.pyo 1535${PYSITELIB}/synapse/storage/databases/main/tags.pyo
1528${PYSITELIB}/synapse/storage/databases/main/transactions.py 1536${PYSITELIB}/synapse/storage/databases/main/transactions.py
1529${PYSITELIB}/synapse/storage/databases/main/transactions.pyc 1537${PYSITELIB}/synapse/storage/databases/main/transactions.pyc
1530${PYSITELIB}/synapse/storage/databases/main/transactions.pyo 1538${PYSITELIB}/synapse/storage/databases/main/transactions.pyo
1531${PYSITELIB}/synapse/storage/databases/main/ui_auth.py 1539${PYSITELIB}/synapse/storage/databases/main/ui_auth.py
1532${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyc 1540${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyc
1533${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyo 1541${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyo
1534${PYSITELIB}/synapse/storage/databases/main/user_directory.py 1542${PYSITELIB}/synapse/storage/databases/main/user_directory.py
1535${PYSITELIB}/synapse/storage/databases/main/user_directory.pyc 1543${PYSITELIB}/synapse/storage/databases/main/user_directory.pyc
1536${PYSITELIB}/synapse/storage/databases/main/user_directory.pyo 1544${PYSITELIB}/synapse/storage/databases/main/user_directory.pyo
1537${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.py 1545${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.py
1538${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyc 1546${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyc
1539${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyo 1547${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyo
1540${PYSITELIB}/synapse/storage/databases/state/__init__.py 1548${PYSITELIB}/synapse/storage/databases/state/__init__.py
1541${PYSITELIB}/synapse/storage/databases/state/__init__.pyc 1549${PYSITELIB}/synapse/storage/databases/state/__init__.pyc
1542${PYSITELIB}/synapse/storage/databases/state/__init__.pyo 1550${PYSITELIB}/synapse/storage/databases/state/__init__.pyo
1543${PYSITELIB}/synapse/storage/databases/state/bg_updates.py 1551${PYSITELIB}/synapse/storage/databases/state/bg_updates.py
1544${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyc 1552${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyc
1545${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyo 1553${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyo
1546${PYSITELIB}/synapse/storage/databases/state/schema/delta/23/drop_state_index.sql 1554${PYSITELIB}/synapse/storage/databases/state/schema/delta/23/drop_state_index.sql
1547${PYSITELIB}/synapse/storage/databases/state/schema/delta/30/state_stream.sql 1555${PYSITELIB}/synapse/storage/databases/state/schema/delta/30/state_stream.sql
1548${PYSITELIB}/synapse/storage/databases/state/schema/delta/32/remove_state_indices.sql 1556${PYSITELIB}/synapse/storage/databases/state/schema/delta/32/remove_state_indices.sql
1549${PYSITELIB}/synapse/storage/databases/state/schema/delta/35/add_state_index.sql 1557${PYSITELIB}/synapse/storage/databases/state/schema/delta/35/add_state_index.sql
1550${PYSITELIB}/synapse/storage/databases/state/schema/delta/35/state.sql 1558${PYSITELIB}/synapse/storage/databases/state/schema/delta/35/state.sql
1551${PYSITELIB}/synapse/storage/databases/state/schema/delta/35/state_dedupe.sql 1559${PYSITELIB}/synapse/storage/databases/state/schema/delta/35/state_dedupe.sql
1552${PYSITELIB}/synapse/storage/databases/state/schema/delta/47/state_group_seq.py 1560${PYSITELIB}/synapse/storage/databases/state/schema/delta/47/state_group_seq.py
1553${PYSITELIB}/synapse/storage/databases/state/schema/delta/47/state_group_seq.pyc 1561${PYSITELIB}/synapse/storage/databases/state/schema/delta/47/state_group_seq.pyc
1554${PYSITELIB}/synapse/storage/databases/state/schema/delta/47/state_group_seq.pyo 1562${PYSITELIB}/synapse/storage/databases/state/schema/delta/47/state_group_seq.pyo
1555${PYSITELIB}/synapse/storage/databases/state/schema/delta/56/state_group_room_idx.sql 1563${PYSITELIB}/synapse/storage/databases/state/schema/delta/56/state_group_room_idx.sql
1556${PYSITELIB}/synapse/storage/databases/state/schema/full_schemas/54/full.sql 1564${PYSITELIB}/synapse/storage/databases/state/schema/full_schemas/54/full.sql
1557${PYSITELIB}/synapse/storage/databases/state/schema/full_schemas/54/sequence.sql.postgres 1565${PYSITELIB}/synapse/storage/databases/state/schema/full_schemas/54/sequence.sql.postgres
1558${PYSITELIB}/synapse/storage/databases/state/store.py 1566${PYSITELIB}/synapse/storage/databases/state/store.py
1559${PYSITELIB}/synapse/storage/databases/state/store.pyc 1567${PYSITELIB}/synapse/storage/databases/state/store.pyc
1560${PYSITELIB}/synapse/storage/databases/state/store.pyo 1568${PYSITELIB}/synapse/storage/databases/state/store.pyo
1561${PYSITELIB}/synapse/storage/engines/__init__.py 1569${PYSITELIB}/synapse/storage/engines/__init__.py
1562${PYSITELIB}/synapse/storage/engines/__init__.pyc 1570${PYSITELIB}/synapse/storage/engines/__init__.pyc
1563${PYSITELIB}/synapse/storage/engines/__init__.pyo 1571${PYSITELIB}/synapse/storage/engines/__init__.pyo
1564${PYSITELIB}/synapse/storage/engines/_base.py 1572${PYSITELIB}/synapse/storage/engines/_base.py
1565${PYSITELIB}/synapse/storage/engines/_base.pyc 1573${PYSITELIB}/synapse/storage/engines/_base.pyc
1566${PYSITELIB}/synapse/storage/engines/_base.pyo 1574${PYSITELIB}/synapse/storage/engines/_base.pyo
1567${PYSITELIB}/synapse/storage/engines/postgres.py 1575${PYSITELIB}/synapse/storage/engines/postgres.py
1568${PYSITELIB}/synapse/storage/engines/postgres.pyc 1576${PYSITELIB}/synapse/storage/engines/postgres.pyc
1569${PYSITELIB}/synapse/storage/engines/postgres.pyo 1577${PYSITELIB}/synapse/storage/engines/postgres.pyo
1570${PYSITELIB}/synapse/storage/engines/sqlite.py 1578${PYSITELIB}/synapse/storage/engines/sqlite.py
1571${PYSITELIB}/synapse/storage/engines/sqlite.pyc 1579${PYSITELIB}/synapse/storage/engines/sqlite.pyc
1572${PYSITELIB}/synapse/storage/engines/sqlite.pyo 1580${PYSITELIB}/synapse/storage/engines/sqlite.pyo
1573${PYSITELIB}/synapse/storage/keys.py 1581${PYSITELIB}/synapse/storage/keys.py
1574${PYSITELIB}/synapse/storage/keys.pyc 1582${PYSITELIB}/synapse/storage/keys.pyc
1575${PYSITELIB}/synapse/storage/keys.pyo 1583${PYSITELIB}/synapse/storage/keys.pyo
1576${PYSITELIB}/synapse/storage/persist_events.py 1584${PYSITELIB}/synapse/storage/persist_events.py
1577${PYSITELIB}/synapse/storage/persist_events.pyc 1585${PYSITELIB}/synapse/storage/persist_events.pyc
1578${PYSITELIB}/synapse/storage/persist_events.pyo 1586${PYSITELIB}/synapse/storage/persist_events.pyo
1579${PYSITELIB}/synapse/storage/prepare_database.py 1587${PYSITELIB}/synapse/storage/prepare_database.py
1580${PYSITELIB}/synapse/storage/prepare_database.pyc 1588${PYSITELIB}/synapse/storage/prepare_database.pyc
1581${PYSITELIB}/synapse/storage/prepare_database.pyo 1589${PYSITELIB}/synapse/storage/prepare_database.pyo
1582${PYSITELIB}/synapse/storage/purge_events.py 1590${PYSITELIB}/synapse/storage/purge_events.py
1583${PYSITELIB}/synapse/storage/purge_events.pyc 1591${PYSITELIB}/synapse/storage/purge_events.pyc
1584${PYSITELIB}/synapse/storage/purge_events.pyo 1592${PYSITELIB}/synapse/storage/purge_events.pyo
1585${PYSITELIB}/synapse/storage/push_rule.py 1593${PYSITELIB}/synapse/storage/push_rule.py
1586${PYSITELIB}/synapse/storage/push_rule.pyc 1594${PYSITELIB}/synapse/storage/push_rule.pyc
1587${PYSITELIB}/synapse/storage/push_rule.pyo 1595${PYSITELIB}/synapse/storage/push_rule.pyo
1588${PYSITELIB}/synapse/storage/relations.py 1596${PYSITELIB}/synapse/storage/relations.py
1589${PYSITELIB}/synapse/storage/relations.pyc 1597${PYSITELIB}/synapse/storage/relations.pyc
1590${PYSITELIB}/synapse/storage/relations.pyo 1598${PYSITELIB}/synapse/storage/relations.pyo
1591${PYSITELIB}/synapse/storage/roommember.py 1599${PYSITELIB}/synapse/storage/roommember.py
1592${PYSITELIB}/synapse/storage/roommember.pyc 1600${PYSITELIB}/synapse/storage/roommember.pyc
1593${PYSITELIB}/synapse/storage/roommember.pyo 1601${PYSITELIB}/synapse/storage/roommember.pyo
1594${PYSITELIB}/synapse/storage/schema/delta/25/00background_updates.sql 1602${PYSITELIB}/synapse/storage/schema/delta/25/00background_updates.sql
1595${PYSITELIB}/synapse/storage/schema/delta/35/00background_updates_add_col.sql 1603${PYSITELIB}/synapse/storage/schema/delta/35/00background_updates_add_col.sql
1596${PYSITELIB}/synapse/storage/schema/delta/58/00background_update_ordering.sql 1604${PYSITELIB}/synapse/storage/schema/delta/58/00background_update_ordering.sql
1597${PYSITELIB}/synapse/storage/schema/full_schemas/54/full.sql 1605${PYSITELIB}/synapse/storage/schema/full_schemas/54/full.sql
1598${PYSITELIB}/synapse/storage/schema/schema_version.sql 1606${PYSITELIB}/synapse/storage/schema/schema_version.sql
1599${PYSITELIB}/synapse/storage/state.py 1607${PYSITELIB}/synapse/storage/state.py
1600${PYSITELIB}/synapse/storage/state.pyc 1608${PYSITELIB}/synapse/storage/state.pyc
1601${PYSITELIB}/synapse/storage/state.pyo 1609${PYSITELIB}/synapse/storage/state.pyo
1602${PYSITELIB}/synapse/storage/types.py 1610${PYSITELIB}/synapse/storage/types.py
1603${PYSITELIB}/synapse/storage/types.pyc 1611${PYSITELIB}/synapse/storage/types.pyc
1604${PYSITELIB}/synapse/storage/types.pyo 1612${PYSITELIB}/synapse/storage/types.pyo
1605${PYSITELIB}/synapse/storage/util/__init__.py 1613${PYSITELIB}/synapse/storage/util/__init__.py
1606${PYSITELIB}/synapse/storage/util/__init__.pyc 1614${PYSITELIB}/synapse/storage/util/__init__.pyc
1607${PYSITELIB}/synapse/storage/util/__init__.pyo 1615${PYSITELIB}/synapse/storage/util/__init__.pyo
1608${PYSITELIB}/synapse/storage/util/id_generators.py 1616${PYSITELIB}/synapse/storage/util/id_generators.py
1609${PYSITELIB}/synapse/storage/util/id_generators.pyc 1617${PYSITELIB}/synapse/storage/util/id_generators.pyc
1610${PYSITELIB}/synapse/storage/util/id_generators.pyo 1618${PYSITELIB}/synapse/storage/util/id_generators.pyo
1611${PYSITELIB}/synapse/storage/util/sequence.py 1619${PYSITELIB}/synapse/storage/util/sequence.py
1612${PYSITELIB}/synapse/storage/util/sequence.pyc 1620${PYSITELIB}/synapse/storage/util/sequence.pyc
1613${PYSITELIB}/synapse/storage/util/sequence.pyo 1621${PYSITELIB}/synapse/storage/util/sequence.pyo
1614${PYSITELIB}/synapse/streams/__init__.py 1622${PYSITELIB}/synapse/streams/__init__.py
1615${PYSITELIB}/synapse/streams/__init__.pyc 1623${PYSITELIB}/synapse/streams/__init__.pyc
1616${PYSITELIB}/synapse/streams/__init__.pyo 1624${PYSITELIB}/synapse/streams/__init__.pyo
1617${PYSITELIB}/synapse/streams/config.py 1625${PYSITELIB}/synapse/streams/config.py
1618${PYSITELIB}/synapse/streams/config.pyc 1626${PYSITELIB}/synapse/streams/config.pyc
1619${PYSITELIB}/synapse/streams/config.pyo 1627${PYSITELIB}/synapse/streams/config.pyo
1620${PYSITELIB}/synapse/streams/events.py 1628${PYSITELIB}/synapse/streams/events.py
1621${PYSITELIB}/synapse/streams/events.pyc 1629${PYSITELIB}/synapse/streams/events.pyc
1622${PYSITELIB}/synapse/streams/events.pyo 1630${PYSITELIB}/synapse/streams/events.pyo
1623${PYSITELIB}/synapse/types.py 1631${PYSITELIB}/synapse/types.py
1624${PYSITELIB}/synapse/types.pyc 1632${PYSITELIB}/synapse/types.pyc
1625${PYSITELIB}/synapse/types.pyo 1633${PYSITELIB}/synapse/types.pyo
1626${PYSITELIB}/synapse/util/__init__.py 1634${PYSITELIB}/synapse/util/__init__.py
1627${PYSITELIB}/synapse/util/__init__.pyc 1635${PYSITELIB}/synapse/util/__init__.pyc
1628${PYSITELIB}/synapse/util/__init__.pyo 1636${PYSITELIB}/synapse/util/__init__.pyo
1629${PYSITELIB}/synapse/util/async_helpers.py 1637${PYSITELIB}/synapse/util/async_helpers.py
1630${PYSITELIB}/synapse/util/async_helpers.pyc 1638${PYSITELIB}/synapse/util/async_helpers.pyc
1631${PYSITELIB}/synapse/util/async_helpers.pyo 1639${PYSITELIB}/synapse/util/async_helpers.pyo
1632${PYSITELIB}/synapse/util/caches/__init__.py 1640${PYSITELIB}/synapse/util/caches/__init__.py
1633${PYSITELIB}/synapse/util/caches/__init__.pyc 1641${PYSITELIB}/synapse/util/caches/__init__.pyc
1634${PYSITELIB}/synapse/util/caches/__init__.pyo 1642${PYSITELIB}/synapse/util/caches/__init__.pyo
1635${PYSITELIB}/synapse/util/caches/cached_call.py 1643${PYSITELIB}/synapse/util/caches/cached_call.py
1636${PYSITELIB}/synapse/util/caches/cached_call.pyc 1644${PYSITELIB}/synapse/util/caches/cached_call.pyc
1637${PYSITELIB}/synapse/util/caches/cached_call.pyo 1645${PYSITELIB}/synapse/util/caches/cached_call.pyo
1638${PYSITELIB}/synapse/util/caches/deferred_cache.py 1646${PYSITELIB}/synapse/util/caches/deferred_cache.py
1639${PYSITELIB}/synapse/util/caches/deferred_cache.pyc 1647${PYSITELIB}/synapse/util/caches/deferred_cache.pyc
1640${PYSITELIB}/synapse/util/caches/deferred_cache.pyo 1648${PYSITELIB}/synapse/util/caches/deferred_cache.pyo
1641${PYSITELIB}/synapse/util/caches/descriptors.py 1649${PYSITELIB}/synapse/util/caches/descriptors.py
1642${PYSITELIB}/synapse/util/caches/descriptors.pyc 1650${PYSITELIB}/synapse/util/caches/descriptors.pyc
1643${PYSITELIB}/synapse/util/caches/descriptors.pyo 1651${PYSITELIB}/synapse/util/caches/descriptors.pyo
1644${PYSITELIB}/synapse/util/caches/dictionary_cache.py 1652${PYSITELIB}/synapse/util/caches/dictionary_cache.py
1645${PYSITELIB}/synapse/util/caches/dictionary_cache.pyc 1653${PYSITELIB}/synapse/util/caches/dictionary_cache.pyc
1646${PYSITELIB}/synapse/util/caches/dictionary_cache.pyo 1654${PYSITELIB}/synapse/util/caches/dictionary_cache.pyo
1647${PYSITELIB}/synapse/util/caches/expiringcache.py 1655${PYSITELIB}/synapse/util/caches/expiringcache.py
1648${PYSITELIB}/synapse/util/caches/expiringcache.pyc 1656${PYSITELIB}/synapse/util/caches/expiringcache.pyc
1649${PYSITELIB}/synapse/util/caches/expiringcache.pyo 1657${PYSITELIB}/synapse/util/caches/expiringcache.pyo
1650${PYSITELIB}/synapse/util/caches/lrucache.py 1658${PYSITELIB}/synapse/util/caches/lrucache.py
1651${PYSITELIB}/synapse/util/caches/lrucache.pyc 1659${PYSITELIB}/synapse/util/caches/lrucache.pyc
1652${PYSITELIB}/synapse/util/caches/lrucache.pyo 1660${PYSITELIB}/synapse/util/caches/lrucache.pyo
1653${PYSITELIB}/synapse/util/caches/response_cache.py 1661${PYSITELIB}/synapse/util/caches/response_cache.py
1654${PYSITELIB}/synapse/util/caches/response_cache.pyc 1662${PYSITELIB}/synapse/util/caches/response_cache.pyc
1655${PYSITELIB}/synapse/util/caches/response_cache.pyo 1663${PYSITELIB}/synapse/util/caches/response_cache.pyo
1656${PYSITELIB}/synapse/util/caches/stream_change_cache.py 1664${PYSITELIB}/synapse/util/caches/stream_change_cache.py
1657${PYSITELIB}/synapse/util/caches/stream_change_cache.pyc 1665${PYSITELIB}/synapse/util/caches/stream_change_cache.pyc
1658${PYSITELIB}/synapse/util/caches/stream_change_cache.pyo 1666${PYSITELIB}/synapse/util/caches/stream_change_cache.pyo
1659${PYSITELIB}/synapse/util/caches/treecache.py 1667${PYSITELIB}/synapse/util/caches/treecache.py
1660${PYSITELIB}/synapse/util/caches/treecache.pyc 1668${PYSITELIB}/synapse/util/caches/treecache.pyc
1661${PYSITELIB}/synapse/util/caches/treecache.pyo 1669${PYSITELIB}/synapse/util/caches/treecache.pyo
1662${PYSITELIB}/synapse/util/caches/ttlcache.py 1670${PYSITELIB}/synapse/util/caches/ttlcache.py
1663${PYSITELIB}/synapse/util/caches/ttlcache.pyc 1671${PYSITELIB}/synapse/util/caches/ttlcache.pyc
1664${PYSITELIB}/synapse/util/caches/ttlcache.pyo 1672${PYSITELIB}/synapse/util/caches/ttlcache.pyo
1665${PYSITELIB}/synapse/util/daemonize.py 1673${PYSITELIB}/synapse/util/daemonize.py
1666${PYSITELIB}/synapse/util/daemonize.pyc 1674${PYSITELIB}/synapse/util/daemonize.pyc
1667${PYSITELIB}/synapse/util/daemonize.pyo 1675${PYSITELIB}/synapse/util/daemonize.pyo
1668${PYSITELIB}/synapse/util/distributor.py 1676${PYSITELIB}/synapse/util/distributor.py
1669${PYSITELIB}/synapse/util/distributor.pyc 1677${PYSITELIB}/synapse/util/distributor.pyc
1670${PYSITELIB}/synapse/util/distributor.pyo 1678${PYSITELIB}/synapse/util/distributor.pyo
1671${PYSITELIB}/synapse/util/file_consumer.py 1679${PYSITELIB}/synapse/util/file_consumer.py
1672${PYSITELIB}/synapse/util/file_consumer.pyc 1680${PYSITELIB}/synapse/util/file_consumer.pyc
1673${PYSITELIB}/synapse/util/file_consumer.pyo 1681${PYSITELIB}/synapse/util/file_consumer.pyo
1674${PYSITELIB}/synapse/util/frozenutils.py 1682${PYSITELIB}/synapse/util/frozenutils.py
1675${PYSITELIB}/synapse/util/frozenutils.pyc 1683${PYSITELIB}/synapse/util/frozenutils.pyc
1676${PYSITELIB}/synapse/util/frozenutils.pyo 1684${PYSITELIB}/synapse/util/frozenutils.pyo
1677${PYSITELIB}/synapse/util/hash.py 1685${PYSITELIB}/synapse/util/hash.py
1678${PYSITELIB}/synapse/util/hash.pyc 1686${PYSITELIB}/synapse/util/hash.pyc
1679${PYSITELIB}/synapse/util/hash.pyo 1687${PYSITELIB}/synapse/util/hash.pyo
1680${PYSITELIB}/synapse/util/httpresourcetree.py 1688${PYSITELIB}/synapse/util/httpresourcetree.py
1681${PYSITELIB}/synapse/util/httpresourcetree.pyc 1689${PYSITELIB}/synapse/util/httpresourcetree.pyc
1682${PYSITELIB}/synapse/util/httpresourcetree.pyo 1690${PYSITELIB}/synapse/util/httpresourcetree.pyo
1683${PYSITELIB}/synapse/util/iterutils.py 1691${PYSITELIB}/synapse/util/iterutils.py
1684${PYSITELIB}/synapse/util/iterutils.pyc 1692${PYSITELIB}/synapse/util/iterutils.pyc
1685${PYSITELIB}/synapse/util/iterutils.pyo 1693${PYSITELIB}/synapse/util/iterutils.pyo
1686${PYSITELIB}/synapse/util/jsonobject.py 1694${PYSITELIB}/synapse/util/jsonobject.py
1687${PYSITELIB}/synapse/util/jsonobject.pyc 1695${PYSITELIB}/synapse/util/jsonobject.pyc
1688${PYSITELIB}/synapse/util/jsonobject.pyo 1696${PYSITELIB}/synapse/util/jsonobject.pyo
1689${PYSITELIB}/synapse/util/logcontext.py 1697${PYSITELIB}/synapse/util/logcontext.py
1690${PYSITELIB}/synapse/util/logcontext.pyc 1698${PYSITELIB}/synapse/util/logcontext.pyc
1691${PYSITELIB}/synapse/util/logcontext.pyo 1699${PYSITELIB}/synapse/util/logcontext.pyo
1692${PYSITELIB}/synapse/util/logformatter.py 1700${PYSITELIB}/synapse/util/logformatter.py
1693${PYSITELIB}/synapse/util/logformatter.pyc 1701${PYSITELIB}/synapse/util/logformatter.pyc
1694${PYSITELIB}/synapse/util/logformatter.pyo 1702${PYSITELIB}/synapse/util/logformatter.pyo
 1703${PYSITELIB}/synapse/util/macaroons.py
 1704${PYSITELIB}/synapse/util/macaroons.pyc
 1705${PYSITELIB}/synapse/util/macaroons.pyo
1695${PYSITELIB}/synapse/util/manhole.py 1706${PYSITELIB}/synapse/util/manhole.py
1696${PYSITELIB}/synapse/util/manhole.pyc 1707${PYSITELIB}/synapse/util/manhole.pyc
1697${PYSITELIB}/synapse/util/manhole.pyo 1708${PYSITELIB}/synapse/util/manhole.pyo
1698${PYSITELIB}/synapse/util/metrics.py 1709${PYSITELIB}/synapse/util/metrics.py
1699${PYSITELIB}/synapse/util/metrics.pyc 1710${PYSITELIB}/synapse/util/metrics.pyc
1700${PYSITELIB}/synapse/util/metrics.pyo 1711${PYSITELIB}/synapse/util/metrics.pyo
1701${PYSITELIB}/synapse/util/module_loader.py 1712${PYSITELIB}/synapse/util/module_loader.py
1702${PYSITELIB}/synapse/util/module_loader.pyc 1713${PYSITELIB}/synapse/util/module_loader.pyc
1703${PYSITELIB}/synapse/util/module_loader.pyo 1714${PYSITELIB}/synapse/util/module_loader.pyo
1704${PYSITELIB}/synapse/util/msisdn.py 1715${PYSITELIB}/synapse/util/msisdn.py
1705${PYSITELIB}/synapse/util/msisdn.pyc 1716${PYSITELIB}/synapse/util/msisdn.pyc
1706${PYSITELIB}/synapse/util/msisdn.pyo 1717${PYSITELIB}/synapse/util/msisdn.pyo
1707${PYSITELIB}/synapse/util/patch_inline_callbacks.py 1718${PYSITELIB}/synapse/util/patch_inline_callbacks.py
1708${PYSITELIB}/synapse/util/patch_inline_callbacks.pyc 1719${PYSITELIB}/synapse/util/patch_inline_callbacks.pyc
1709${PYSITELIB}/synapse/util/patch_inline_callbacks.pyo 1720${PYSITELIB}/synapse/util/patch_inline_callbacks.pyo
1710${PYSITELIB}/synapse/util/ratelimitutils.py 1721${PYSITELIB}/synapse/util/ratelimitutils.py
1711${PYSITELIB}/synapse/util/ratelimitutils.pyc 1722${PYSITELIB}/synapse/util/ratelimitutils.pyc
1712${PYSITELIB}/synapse/util/ratelimitutils.pyo 1723${PYSITELIB}/synapse/util/ratelimitutils.pyo
1713${PYSITELIB}/synapse/util/retryutils.py 1724${PYSITELIB}/synapse/util/retryutils.py
1714${PYSITELIB}/synapse/util/retryutils.pyc 1725${PYSITELIB}/synapse/util/retryutils.pyc
1715${PYSITELIB}/synapse/util/retryutils.pyo 1726${PYSITELIB}/synapse/util/retryutils.pyo
1716${PYSITELIB}/synapse/util/rlimit.py 1727${PYSITELIB}/synapse/util/rlimit.py
1717${PYSITELIB}/synapse/util/rlimit.pyc 1728${PYSITELIB}/synapse/util/rlimit.pyc
1718${PYSITELIB}/synapse/util/rlimit.pyo 1729${PYSITELIB}/synapse/util/rlimit.pyo
1719${PYSITELIB}/synapse/util/stringutils.py 1730${PYSITELIB}/synapse/util/stringutils.py
1720${PYSITELIB}/synapse/util/stringutils.pyc 1731${PYSITELIB}/synapse/util/stringutils.pyc
1721${PYSITELIB}/synapse/util/stringutils.pyo 1732${PYSITELIB}/synapse/util/stringutils.pyo
1722${PYSITELIB}/synapse/util/templates.py 1733${PYSITELIB}/synapse/util/templates.py
1723${PYSITELIB}/synapse/util/templates.pyc 1734${PYSITELIB}/synapse/util/templates.pyc
1724${PYSITELIB}/synapse/util/templates.pyo 1735${PYSITELIB}/synapse/util/templates.pyo
1725${PYSITELIB}/synapse/util/threepids.py 1736${PYSITELIB}/synapse/util/threepids.py
1726${PYSITELIB}/synapse/util/threepids.pyc 1737${PYSITELIB}/synapse/util/threepids.pyc
1727${PYSITELIB}/synapse/util/threepids.pyo 1738${PYSITELIB}/synapse/util/threepids.pyo
1728${PYSITELIB}/synapse/util/versionstring.py 1739${PYSITELIB}/synapse/util/versionstring.py
1729${PYSITELIB}/synapse/util/versionstring.pyc 1740${PYSITELIB}/synapse/util/versionstring.pyc
1730${PYSITELIB}/synapse/util/versionstring.pyo 1741${PYSITELIB}/synapse/util/versionstring.pyo
1731${PYSITELIB}/synapse/util/wheel_timer.py 1742${PYSITELIB}/synapse/util/wheel_timer.py
1732${PYSITELIB}/synapse/util/wheel_timer.pyc 1743${PYSITELIB}/synapse/util/wheel_timer.pyc
1733${PYSITELIB}/synapse/util/wheel_timer.pyo 1744${PYSITELIB}/synapse/util/wheel_timer.pyo
1734${PYSITELIB}/synapse/visibility.py 1745${PYSITELIB}/synapse/visibility.py
1735${PYSITELIB}/synapse/visibility.pyc 1746${PYSITELIB}/synapse/visibility.pyc
1736${PYSITELIB}/synapse/visibility.pyo 1747${PYSITELIB}/synapse/visibility.pyo
1737${PYSITELIB}/synmark/__init__.py 1748${PYSITELIB}/synmark/__init__.py
1738${PYSITELIB}/synmark/__init__.pyc 1749${PYSITELIB}/synmark/__init__.pyc
1739${PYSITELIB}/synmark/__init__.pyo 1750${PYSITELIB}/synmark/__init__.pyo
1740${PYSITELIB}/synmark/__main__.py 1751${PYSITELIB}/synmark/__main__.py
1741${PYSITELIB}/synmark/__main__.pyc 1752${PYSITELIB}/synmark/__main__.pyc
1742${PYSITELIB}/synmark/__main__.pyo 1753${PYSITELIB}/synmark/__main__.pyo
1743${PYSITELIB}/synmark/suites/__init__.py 1754${PYSITELIB}/synmark/suites/__init__.py
1744${PYSITELIB}/synmark/suites/__init__.pyc 1755${PYSITELIB}/synmark/suites/__init__.pyc
1745${PYSITELIB}/synmark/suites/__init__.pyo 1756${PYSITELIB}/synmark/suites/__init__.pyo
1746${PYSITELIB}/synmark/suites/logging.py 1757${PYSITELIB}/synmark/suites/logging.py
1747${PYSITELIB}/synmark/suites/logging.pyc 1758${PYSITELIB}/synmark/suites/logging.pyc
1748${PYSITELIB}/synmark/suites/logging.pyo 1759${PYSITELIB}/synmark/suites/logging.pyo
1749${PYSITELIB}/synmark/suites/lrucache.py 1760${PYSITELIB}/synmark/suites/lrucache.py
1750${PYSITELIB}/synmark/suites/lrucache.pyc 1761${PYSITELIB}/synmark/suites/lrucache.pyc
1751${PYSITELIB}/synmark/suites/lrucache.pyo 1762${PYSITELIB}/synmark/suites/lrucache.pyo
1752${PYSITELIB}/synmark/suites/lrucache_evict.py 1763${PYSITELIB}/synmark/suites/lrucache_evict.py
1753${PYSITELIB}/synmark/suites/lrucache_evict.pyc 1764${PYSITELIB}/synmark/suites/lrucache_evict.pyc
1754${PYSITELIB}/synmark/suites/lrucache_evict.pyo 1765${PYSITELIB}/synmark/suites/lrucache_evict.pyo

cvs diff -r1.13 -r1.14 pkgsrc/chat/matrix-synapse/distinfo (switch to unified diff)

--- pkgsrc/chat/matrix-synapse/distinfo 2021/03/14 21:21:13 1.13
+++ pkgsrc/chat/matrix-synapse/distinfo 2021/04/28 21:25:57 1.14
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.13 2021/03/14 21:21:13 js Exp $ 1$NetBSD: distinfo,v 1.14 2021/04/28 21:25:57 js Exp $
2 2
3SHA1 (matrix-synapse-1.29.0.tar.gz) = f5ac2224a03902a2dd0808edfe4dcc8cad5f58c6 3SHA1 (matrix-synapse-1.32.2.tar.gz) = caa85c36988695132053d193f3ed1284e27c9011
4RMD160 (matrix-synapse-1.29.0.tar.gz) = 9dff6604f84ca48aa24783177538268164643aeb 4RMD160 (matrix-synapse-1.32.2.tar.gz) = ec8ec6bc81dd875de924c413f10d9437436ba47a
5SHA512 (matrix-synapse-1.29.0.tar.gz) = ee12f673854d2bce7ef5c8e288583a15056033c6c42dc07f1bc86bac66148e0da9f36c5e84d7a41b6366e41c3e8392dc8a69f5f0fd12f14ffa09dc1bff01f596 5SHA512 (matrix-synapse-1.32.2.tar.gz) = 123a419558763df84f48a4f7cd66beb67ee1bb20ed9cbbb8138d3e9162247bd17bbf81c7360cc49637fa670e0554a39a4666dab81aa473e8fbf82e70590b45f0
6Size (matrix-synapse-1.29.0.tar.gz) = 7198706 bytes 6Size (matrix-synapse-1.32.2.tar.gz) = 7258293 bytes