Added prosody
This commit is contained in:
12
stacks/obsidian/docker-compose.yml
Normal file
12
stacks/obsidian/docker-compose.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
services:
|
||||
couchdb:
|
||||
image: couchdb:3
|
||||
container_name: couchdb
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- COUCHDB_USER=${COUCHDB_USER}
|
||||
- COUCHDB_PASSWORD=${COUCHDB_PASSWORD}
|
||||
volumes:
|
||||
- /mnt/user/appdata/couchdb:/opt/couchdb/data
|
||||
ports:
|
||||
- "5984:5984"
|
||||
2
stacks/obsidian/stack.env
Normal file
2
stacks/obsidian/stack.env
Normal file
@@ -0,0 +1,2 @@
|
||||
COUCHDB_USER=admin
|
||||
COUCHDB_PASSWORD=yourpasswordhere
|
||||
@@ -1,9 +1,7 @@
|
||||
# Productivity Stack
|
||||
|
||||
GitLab, Vaultwarden, Memos, Mortis, and FreshRSS.
|
||||
GitLab, Vaultwarden, Memos, Mortis, FreshRSS, and Prosody.
|
||||
|
||||
## Services
|
||||
|
||||
| Service | Port | Description |
|
||||
|---------|------|-------------|
|
||||
| gitlab | 8929:80, 2222:22 | Git repository |
|
||||
@@ -11,53 +9,90 @@ GitLab, Vaultwarden, Memos, Mortis, and FreshRSS.
|
||||
| memos | 5230:5230 | Note-taking |
|
||||
| mortis | 5231:5231 | Memos iOS companion |
|
||||
| freshrss | 8054:80 | RSS reader |
|
||||
| prosody | 5222, 5269, 5280, 5281 | XMPP server |
|
||||
|
||||
## GitLab
|
||||
|
||||
### Initial Setup
|
||||
|
||||
GitLab runs migrations on first start - takes 15-20 minutes. Be patient.
|
||||
|
||||
### Get Root Password
|
||||
|
||||
```bash
|
||||
docker exec -it gitlab grep 'Password:' /etc/gitlab/initial_root_password
|
||||
```
|
||||
|
||||
### NGINX Proxy Manager
|
||||
|
||||
Create HTTPS proxy for `git.rishighan.com` pointing to `192.168.1.75:8929`
|
||||
|
||||
GitLab recommends SSL, so use HTTPS.
|
||||
|
||||
## Vaultwarden
|
||||
|
||||
### NGINX Proxy Manager
|
||||
|
||||
Create HTTPS proxy for `vault.rishighan.com` pointing to `192.168.1.75:4743`
|
||||
|
||||
### Admin Panel
|
||||
|
||||
Access at `https://vault.rishighan.com/admin` with the `ADMIN_TOKEN` from stack.env
|
||||
|
||||
## Memos + Mortis
|
||||
|
||||
Mortis is the iOS companion for Memos. It connects via gRPC to memos:5230.
|
||||
|
||||
### NGINX Proxy Manager
|
||||
|
||||
Create HTTPS proxy for `memos.rishighan.com` pointing to `192.168.1.75:5230`
|
||||
|
||||
## FreshRSS
|
||||
|
||||
### NGINX Proxy Manager
|
||||
|
||||
Create HTTPS proxy for `rss.rishighan.com` pointing to `192.168.1.75:8054`
|
||||
|
||||
### Import Feeds
|
||||
|
||||
1. Copy `feeds.opml` to `/mnt/user/appdata/freshrss/`
|
||||
2. In FreshRSS: Settings → Import/Export → Import OPML
|
||||
3. Enable `af_readability` extension to bypass paywalls
|
||||
|
||||
The OPML contains curated feeds for Gaming, Tech, Politics, Weather, and World News - free from paywalled bullshit.
|
||||
|
||||
## Prosody
|
||||
Self-hosted XMPP server for `rishighan.com`. Image: `prosodyim/prosody:13.0`.
|
||||
|
||||
### Ports
|
||||
| Port | Purpose |
|
||||
|------|---------|
|
||||
| 5222 | Client-to-server (c2s) |
|
||||
| 5269 | Server-to-server / federation (s2s) |
|
||||
| 5280 | HTTP/BOSH |
|
||||
| 5281 | HTTPS/BOSH |
|
||||
|
||||
Both 5222 and 5269 must be forwarded on the UDM Pro to Flook (192.168.x.75).
|
||||
|
||||
### TLS Cert
|
||||
Issued manually via certbot DNS challenge covering `rishighan.com` and `xmpp.rishighan.com`.
|
||||
Certs stored at `./certs/privkey.pem` and `./certs/fullchain.pem` (copied from appdata archive, not symlinked).
|
||||
|
||||
**Cert expires: 2026-05-24. Renew before then:**
|
||||
```bash
|
||||
certbot certonly --manual --preferred-challenges dns \
|
||||
--config-dir /mnt/user/appdata/prosody/certs \
|
||||
--work-dir /mnt/user/appdata/prosody/certs/work \
|
||||
--logs-dir /mnt/user/appdata/prosody/certs/logs \
|
||||
-d rishighan.com -d xmpp.rishighan.com
|
||||
|
||||
# Copy new certs (increment N to match new archive version):
|
||||
cp /mnt/user/appdata/prosody/certs/archive/xmpp.rishighan.com/privkeyN.pem \
|
||||
/mnt/user/flook-stacks/stacks/productivity/certs/privkey.pem
|
||||
cp /mnt/user/appdata/prosody/certs/archive/xmpp.rishighan.com/fullchainN.pem \
|
||||
/mnt/user/flook-stacks/stacks/productivity/certs/fullchain.pem
|
||||
chmod 644 /mnt/user/flook-stacks/stacks/productivity/certs/*.pem
|
||||
docker restart prosody
|
||||
```
|
||||
|
||||
### DNS Records (GoDaddy)
|
||||
| Type | Service | Protocol | Name | Value | Port |
|
||||
|------|---------|----------|------|-------|------|
|
||||
| SRV | `_xmpp-client` | `_tcp` | `@` | `xmpp.rishighan.com` | 5222 |
|
||||
| SRV | `_xmpp-server` | `_tcp` | `@` | `xmpp.rishighan.com` | 5269 |
|
||||
| A | — | — | `xmpp` | Flook's public IP | — |
|
||||
|
||||
### User Management
|
||||
```bash
|
||||
docker exec -it prosody prosodyctl adduser user@rishighan.com
|
||||
docker exec -it prosody prosodyctl passwd user@rishighan.com
|
||||
docker exec -it prosody prosodyctl deluser user@rishighan.com
|
||||
```
|
||||
|
||||
### Data Directory Permissions
|
||||
The `./data` directory must be owned by UID 999:
|
||||
```bash
|
||||
chown -R 999:999 /mnt/user/flook-stacks/stacks/productivity/data
|
||||
```
|
||||
|
||||
48
stacks/productivity/certs/fullchain.pem
Normal file
48
stacks/productivity/certs/fullchain.pem
Normal file
@@ -0,0 +1,48 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIDkDCCAxagAwIBAgISBnKkgcsmuyZoc2fLE55dEjhYMAoGCCqGSM49BAMDMDIx
|
||||
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||
NzAeFw0yNjAyMjMwMjExMDJaFw0yNjA1MjQwMjExMDFaMBgxFjAUBgNVBAMTDXJp
|
||||
c2hpZ2hhbi5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQGr0xO+HBkmi+x
|
||||
v6xMeLLx33FRZSKmccE+ry5LMJT5kmZTqCWK5AcO57Rv73P5vGxi9+OO08qmPfXY
|
||||
et5PGKEEo4ICJDCCAiAwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUF
|
||||
BwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFBqCnzaqYsDEMRfD531/7Q8KEwBw
|
||||
MB8GA1UdIwQYMBaAFK5IntyHHUSgb9qi5WB0BHjCnACAMDIGCCsGAQUFBwEBBCYw
|
||||
JDAiBggrBgEFBQcwAoYWaHR0cDovL2U3LmkubGVuY3Iub3JnLzAsBgNVHREEJTAj
|
||||
gg1yaXNoaWdoYW4uY29tghJ4bXBwLnJpc2hpZ2hhbi5jb20wEwYDVR0gBAwwCjAI
|
||||
BgZngQwBAgEwLQYDVR0fBCYwJDAioCCgHoYcaHR0cDovL2U3LmMubGVuY3Iub3Jn
|
||||
Lzg5LmNybDCCAQMGCisGAQQB1nkCBAIEgfQEgfEA7wB1AGQRxGykEuyniRyiAi4A
|
||||
vKtPKAfUHjUnq+r+1QPJfc3wAAABnIh5PXwAAAQDAEYwRAIgBjeYH1UAtZ/8owyn
|
||||
RT5jmbdFKgRNGpwqPl9uhju2BhQCIAcwd8hacxdYlMi0RB6/M/XQfUkl0mfb83eC
|
||||
H09g6TnUAHYAFoMtq/CpJQ8P8DqlRf/Iv8gj0IdL9gQpJ/jnHzMT9foAAAGciHk9
|
||||
kwAABAMARzBFAiBhGrkzrKVkbb6QSvunH3zJ++KS35XCgnnHkh34fESXpgIhAJbC
|
||||
aQwpq1YrJhleYOTtTXfCf7Cz6rzL4FoZ8v/QNWO7MAoGCCqGSM49BAMDA2gAMGUC
|
||||
MFQOo/Z/JjTfpIQKrnMvIBmeDLe+MnKaNubecZ96cEx2oaAVnMEv612NtP99x1kz
|
||||
IAIxAL6opuoEWw67JA7oI6F5k66LIGHAFzHFrLLKhoScR3dR2Z51AlLm6pkpZCyo
|
||||
OZc6hA==
|
||||
-----END CERTIFICATE-----
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIEVzCCAj+gAwIBAgIRAKp18eYrjwoiCWbTi7/UuqEwDQYJKoZIhvcNAQELBQAw
|
||||
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
|
||||
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw
|
||||
WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg
|
||||
RW5jcnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6AST
|
||||
CFh/vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbef
|
||||
QHJFHCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgw
|
||||
gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD
|
||||
ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4
|
||||
wpwAgDAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB
|
||||
AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g
|
||||
BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu
|
||||
Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAjx66fDdLk5ywFn3CzA1w1qfylHUD
|
||||
aEf0QZpXcJseddJGSfbUUOvbNR9N/QQ16K1lXl4VFyhmGXDT5Kdfcr0RvIIVrNxF
|
||||
h4lqHtRRCP6RBRstqbZ2zURgqakn/Xip0iaQL0IdfHBZr396FgknniRYFckKORPG
|
||||
yM3QKnd66gtMst8I5nkRQlAg/Jb+Gc3egIvuGKWboE1G89NTsN9LTDD3PLj0dUMr
|
||||
OIuqVjLB8pEC6yk9enrlrqjXQgkLEYhXzq7dLafv5Vkig6Gl0nuuqjqfp0Q1bi1o
|
||||
yVNAlXe6aUXw92CcghC9bNsKEO1+M52YY5+ofIXlS/SEQbvVYYBLZ5yeiglV6t3S
|
||||
M6H+vTG0aP9YHzLn/KVOHzGQfXDP7qM5tkf+7diZe7o2fw6O7IvN6fsQXEQQj8TJ
|
||||
UXJxv2/uJhcuy/tSDgXwHM8Uk34WNbRT7zGTGkQRX0gsbjAea/jYAoWv0ZvQRwpq
|
||||
Pe79D/i7Cep8qWnA+7AE/3B3S/3dEEYmc0lpe1366A/6GEgk3ktr9PEoQrLChs6I
|
||||
tu3wnNLB2euC8IKGLQFpGtOO/2/hiAKjyajaBP25w1jF0Wl8Bbqne3uZ2q1GyPFJ
|
||||
YRmT7/OXpmOH/FVLtwS+8ng1cAmpCujPwteJZNcDG0sF2n/sc0+SQf49fdyUK0ty
|
||||
+VUwFj9tmWxyR/M=
|
||||
-----END CERTIFICATE-----
|
||||
14
stacks/productivity/certs/live/README
Normal file
14
stacks/productivity/certs/live/README
Normal file
@@ -0,0 +1,14 @@
|
||||
This directory contains your keys and certificates.
|
||||
|
||||
`[cert name]/privkey.pem` : the private key for your certificate.
|
||||
`[cert name]/fullchain.pem`: the certificate file used in most server software.
|
||||
`[cert name]/chain.pem` : used for OCSP stapling in Nginx >=1.3.7.
|
||||
`[cert name]/cert.pem` : will break many server configurations, and should not be used
|
||||
without reading further documentation (see link below).
|
||||
|
||||
WARNING: DO NOT MOVE OR RENAME THESE FILES!
|
||||
Certbot expects these files to remain in this location in order
|
||||
to function properly!
|
||||
|
||||
We recommend not moving these files. For more information, see the Certbot
|
||||
User Guide at https://certbot.eff.org/docs/using.html#where-are-my-certificates.
|
||||
14
stacks/productivity/certs/live/xmpp.rishighan.com/README
Normal file
14
stacks/productivity/certs/live/xmpp.rishighan.com/README
Normal file
@@ -0,0 +1,14 @@
|
||||
This directory contains your keys and certificates.
|
||||
|
||||
`privkey.pem` : the private key for your certificate.
|
||||
`fullchain.pem`: the certificate file used in most server software.
|
||||
`chain.pem` : used for OCSP stapling in Nginx >=1.3.7.
|
||||
`cert.pem` : will break many server configurations, and should not be used
|
||||
without reading further documentation (see link below).
|
||||
|
||||
WARNING: DO NOT MOVE OR RENAME THESE FILES!
|
||||
Certbot expects these files to remain in this location in order
|
||||
to function properly!
|
||||
|
||||
We recommend not moving these files. For more information, see the Certbot
|
||||
User Guide at https://certbot.eff.org/docs/using.html#where-are-my-certificates.
|
||||
1
stacks/productivity/certs/live/xmpp.rishighan.com/cert.pem
Symbolic link
1
stacks/productivity/certs/live/xmpp.rishighan.com/cert.pem
Symbolic link
@@ -0,0 +1 @@
|
||||
../../archive/xmpp.rishighan.com/cert1.pem
|
||||
1
stacks/productivity/certs/live/xmpp.rishighan.com/chain.pem
Symbolic link
1
stacks/productivity/certs/live/xmpp.rishighan.com/chain.pem
Symbolic link
@@ -0,0 +1 @@
|
||||
../../archive/xmpp.rishighan.com/chain1.pem
|
||||
1
stacks/productivity/certs/live/xmpp.rishighan.com/fullchain.pem
Symbolic link
1
stacks/productivity/certs/live/xmpp.rishighan.com/fullchain.pem
Symbolic link
@@ -0,0 +1 @@
|
||||
../../archive/xmpp.rishighan.com/fullchain1.pem
|
||||
1
stacks/productivity/certs/live/xmpp.rishighan.com/privkey.pem
Symbolic link
1
stacks/productivity/certs/live/xmpp.rishighan.com/privkey.pem
Symbolic link
@@ -0,0 +1 @@
|
||||
../../archive/xmpp.rishighan.com/privkey1.pem
|
||||
5
stacks/productivity/certs/privkey.pem
Normal file
5
stacks/productivity/certs/privkey.pem
Normal file
@@ -0,0 +1,5 @@
|
||||
-----BEGIN PRIVATE KEY-----
|
||||
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgOzOSFYqHwm0RLB/D
|
||||
v0WA1bzudQPSo79c8DTTn/b+0VShRANCAAQGr0xO+HBkmi+xv6xMeLLx33FRZSKm
|
||||
ccE+ry5LMJT5kmZTqCWK5AcO57Rv73P5vGxi9+OO08qmPfXYet5PGKEE
|
||||
-----END PRIVATE KEY-----
|
||||
0
stacks/productivity/community-modules/mod_push.lua
Normal file
0
stacks/productivity/community-modules/mod_push.lua
Normal file
217
stacks/productivity/config/prosody.cfg.lua
Normal file
217
stacks/productivity/config/prosody.cfg.lua
Normal file
@@ -0,0 +1,217 @@
|
||||
daemonize = false;
|
||||
-- Prosody XMPP Server Configuration
|
||||
--
|
||||
-- Information on configuring Prosody can be found on our
|
||||
-- website at https://prosody.im/doc/configure
|
||||
--
|
||||
-- Tip: You can check that the syntax of this file is correct
|
||||
-- when you have finished by running this command:
|
||||
-- prosodyctl check config
|
||||
-- If there are any errors, it will let you know what and where
|
||||
-- they are, otherwise it will keep quiet.
|
||||
--
|
||||
-- Good luck, and happy Jabbering!
|
||||
|
||||
|
||||
---------- Server-wide settings ----------
|
||||
-- Settings in this section apply to the whole server and are the default settings
|
||||
-- for any virtual hosts
|
||||
|
||||
-- This is a (by default, empty) list of accounts that are admins
|
||||
-- for the server. Note that you must create the accounts separately
|
||||
-- (see https://prosody.im/doc/creating_accounts for info)
|
||||
-- Example: admins = { "user1@example.com", "user2@example.net" }
|
||||
admins = { }
|
||||
|
||||
-- Enable use of libevent for better performance under high load
|
||||
-- For more information see: https://prosody.im/doc/libevent
|
||||
--use_libevent = true
|
||||
|
||||
-- Prosody will always look in its source directory for modules, but
|
||||
-- this option allows you to specify additional locations where Prosody
|
||||
-- will look for modules first. For community modules, see https://modules.prosody.im/
|
||||
--plugin_paths = {}
|
||||
|
||||
-- This is the list of modules Prosody will load on startup.
|
||||
-- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.
|
||||
-- Documentation for bundled modules can be found at: https://prosody.im/doc/modules
|
||||
modules_enabled = {
|
||||
|
||||
-- Generally required
|
||||
"roster"; -- Allow users to have a roster. Recommended ;)
|
||||
"saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
|
||||
"tls"; -- Add support for secure TLS on c2s/s2s connections
|
||||
"dialback"; -- s2s dialback support
|
||||
"disco"; -- Service discovery
|
||||
|
||||
-- Not essential, but recommended
|
||||
"carbons"; -- Keep multiple clients in sync
|
||||
"pep"; -- Enables users to publish their avatar, mood, activity, playing music and more
|
||||
"private"; -- Private XML storage (for room bookmarks, etc.)
|
||||
"blocklist"; -- Allow users to block communications with other users
|
||||
"vcard4"; -- User profiles (stored in PEP)
|
||||
"vcard_legacy"; -- Conversion between legacy vCard and PEP Avatar, vcard
|
||||
"limits"; -- Enable bandwidth limiting for XMPP connections
|
||||
|
||||
-- Nice to have
|
||||
"version"; -- Replies to server version requests
|
||||
"uptime"; -- Report how long server has been running
|
||||
"time"; -- Let others know the time here on this server
|
||||
"ping"; -- Replies to XMPP pings with pongs
|
||||
"register"; -- Allow users to register on this server using a client and change passwords
|
||||
--"mam"; -- Store messages in an archive and allow users to access it
|
||||
--"csi_simple"; -- Simple Mobile optimizations
|
||||
|
||||
-- Admin interfaces
|
||||
"admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands
|
||||
--"admin_telnet"; -- Opens telnet console interface on localhost port 5582
|
||||
|
||||
-- HTTP modules
|
||||
--"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
|
||||
--"websocket"; -- XMPP over WebSockets
|
||||
--"http_files"; -- Serve static files from a directory over HTTP
|
||||
|
||||
-- Other specific functionality
|
||||
--"groups"; -- Shared roster support
|
||||
--"server_contact_info"; -- Publish contact information for this service
|
||||
--"announce"; -- Send announcement to all online users
|
||||
--"welcome"; -- Welcome users who register accounts
|
||||
--"watchregistrations"; -- Alert admins of registrations
|
||||
--"motd"; -- Send a message to users when they log in
|
||||
--"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
|
||||
--"proxy65"; -- Enables a file transfer proxy service which clients behind NAT can use
|
||||
}
|
||||
|
||||
-- These modules are auto-loaded, but should you want
|
||||
-- to disable them then uncomment them here:
|
||||
modules_disabled = {
|
||||
-- "offline"; -- Store offline messages
|
||||
-- "c2s"; -- Handle client connections
|
||||
-- "s2s"; -- Handle server-to-server connections
|
||||
-- "posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
|
||||
}
|
||||
|
||||
-- Disable account creation by default, for security
|
||||
-- For more information see https://prosody.im/doc/creating_accounts
|
||||
allow_registration = false
|
||||
|
||||
-- Force clients to use encrypted connections? This option will
|
||||
-- prevent clients from authenticating unless they are using encryption.
|
||||
|
||||
c2s_require_encryption = true
|
||||
|
||||
-- Force servers to use encrypted connections? This option will
|
||||
-- prevent servers from authenticating unless they are using encryption.
|
||||
|
||||
s2s_require_encryption = true
|
||||
|
||||
-- Force certificate authentication for server-to-server connections?
|
||||
|
||||
s2s_secure_auth = false
|
||||
|
||||
-- Some servers have invalid or self-signed certificates. You can list
|
||||
-- remote domains here that will not be required to authenticate using
|
||||
-- certificates. They will be authenticated using DNS instead, even
|
||||
-- when s2s_secure_auth is enabled.
|
||||
|
||||
--s2s_insecure_domains = { "insecure.example" }
|
||||
|
||||
-- Even if you disable s2s_secure_auth, you can still require valid
|
||||
-- certificates for some domains by specifying a list here.
|
||||
|
||||
--s2s_secure_domains = { "jabber.org" }
|
||||
|
||||
-- Enable rate limits for incoming client and server connections
|
||||
|
||||
limits = {
|
||||
c2s = {
|
||||
rate = "10kb/s";
|
||||
};
|
||||
s2sin = {
|
||||
rate = "30kb/s";
|
||||
};
|
||||
}
|
||||
|
||||
-- Required for init scripts and prosodyctl
|
||||
pidfile = "/var/run/prosody/prosody.pid"
|
||||
|
||||
-- Select the authentication backend to use. The 'internal' providers
|
||||
-- use Prosody's configured data storage to store the authentication data.
|
||||
|
||||
authentication = "internal_hashed"
|
||||
|
||||
-- Select the storage backend to use. By default Prosody uses flat files
|
||||
-- in its configured data directory, but it also supports more backends
|
||||
-- through modules. An "sql" backend is included by default, but requires
|
||||
-- additional dependencies. See https://prosody.im/doc/storage for more info.
|
||||
|
||||
--storage = "sql" -- Default is "internal"
|
||||
|
||||
-- For the "sql" backend, you can uncomment *one* of the below to configure:
|
||||
--sql = { driver = "SQLite3", database = "prosody.sqlite" } -- Default. 'database' is the filename.
|
||||
--sql = { driver = "MySQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
|
||||
--sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" }
|
||||
|
||||
|
||||
-- Archiving configuration
|
||||
-- If mod_mam is enabled, Prosody will store a copy of every message. This
|
||||
-- is used to synchronize conversations between multiple clients, even if
|
||||
-- they are offline. This setting controls how long Prosody will keep
|
||||
-- messages in the archive before removing them.
|
||||
|
||||
archive_expires_after = "1w" -- Remove archived messages after 1 week
|
||||
|
||||
-- You can also configure messages to be stored in-memory only. For more
|
||||
-- archiving options, see https://prosody.im/doc/modules/mod_mam
|
||||
|
||||
-- Logging configuration
|
||||
-- For advanced logging see https://prosody.im/doc/logging
|
||||
log = {
|
||||
{levels = {min = "info"}, to = "console"};
|
||||
}
|
||||
|
||||
-- Uncomment to enable statistics
|
||||
-- For more info see https://prosody.im/doc/statistics
|
||||
-- statistics = "internal"
|
||||
|
||||
-- Certificates
|
||||
-- Every virtual host and component needs a certificate so that clients and
|
||||
-- servers can securely verify its identity. Prosody will automatically load
|
||||
-- certificates/keys from the directory specified here.
|
||||
-- For more information, including how to use 'prosodyctl' to auto-import certificates
|
||||
-- (from e.g. Let's Encrypt) see https://prosody.im/doc/certificates
|
||||
|
||||
-- Location of directory to find certificates in (relative to main config file):
|
||||
certificates = "certs"
|
||||
|
||||
-- HTTPS currently only supports a single certificate, specify it here:
|
||||
--https_certificate = "/etc/prosody/certs/localhost.crt"
|
||||
|
||||
----------- Virtual hosts -----------
|
||||
-- You need to add a VirtualHost entry for each domain you wish Prosody to serve.
|
||||
-- Settings under each VirtualHost entry apply *only* to that host.
|
||||
|
||||
VirtualHost "localhost"
|
||||
|
||||
--VirtualHost "example.com"
|
||||
-- certificate = "/path/to/example.crt"
|
||||
|
||||
------ Components ------
|
||||
-- You can specify components to add hosts that provide special services,
|
||||
-- like multi-user conferences, and transports.
|
||||
-- For more information on components, see https://prosody.im/doc/components
|
||||
|
||||
---Set up a MUC (multi-user chat) room server on conference.example.com:
|
||||
--Component "conference.example.com" "muc"
|
||||
--- Store MUC messages in an archive and allow users to access it
|
||||
--modules_enabled = { "muc_mam" }
|
||||
|
||||
---Set up an external component (default component port is 5347)
|
||||
--
|
||||
-- External components allow adding various services, such as gateways/
|
||||
-- transports to other networks like ICQ, MSN and Yahoo. For more info
|
||||
-- see: https://prosody.im/doc/components#adding_an_external_component
|
||||
--
|
||||
--Component "gateway.example.com"
|
||||
-- component_secret = "password"
|
||||
Include "conf.d/*.cfg.lua"
|
||||
39
stacks/productivity/config/rishighan.cfg.lua
Normal file
39
stacks/productivity/config/rishighan.cfg.lua
Normal file
@@ -0,0 +1,39 @@
|
||||
modules_enabled = {
|
||||
"roster";
|
||||
"saslauth";
|
||||
"tls";
|
||||
"dialback";
|
||||
"disco";
|
||||
"carbons";
|
||||
"pep";
|
||||
"private";
|
||||
"blocklist";
|
||||
"vcard4";
|
||||
"vcard_legacy";
|
||||
"version";
|
||||
"uptime";
|
||||
"time";
|
||||
"ping";
|
||||
"register";
|
||||
"admin_adhoc";
|
||||
"mam";
|
||||
"csi_simple";
|
||||
"smacks";
|
||||
"cloud_notify";
|
||||
}
|
||||
|
||||
allow_registration = false
|
||||
|
||||
-- MAM settings
|
||||
archive_expires_after = "4w"
|
||||
default_archive_policy = true
|
||||
|
||||
-- Push
|
||||
push_notification_with_body = false
|
||||
push_notification_with_sender = false
|
||||
|
||||
VirtualHost "rishighan.com"
|
||||
ssl = {
|
||||
key = "/etc/prosody/certs/privkey.pem",
|
||||
certificate = "/etc/prosody/certs/fullchain.pem",
|
||||
}
|
||||
5
stacks/productivity/data/localhost/cron.dat
Normal file
5
stacks/productivity/data/localhost/cron.dat
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
["tokenauth/clear_expired_grants"] = 1771832870;
|
||||
["mam/remove_expired_messages"] = 1771832870;
|
||||
["user_account_management/remove_deleted_accounts"] = 1771832870;
|
||||
};
|
||||
@@ -0,0 +1,6 @@
|
||||
return {
|
||||
["stored_key"] = "1e5e7b490f0207c345d35d879e65b00aee19c404";
|
||||
["salt"] = "f6cfb4a0-1b61-458a-b2e6-486f1f4761f1";
|
||||
["iteration_count"] = 4096;
|
||||
["server_key"] = "67e6060362e76a480e78e41bb7f26858abb11e23";
|
||||
};
|
||||
BIN
stacks/productivity/data/rishighan%2ecom/archive/rishi.lidx
Normal file
BIN
stacks/productivity/data/rishighan%2ecom/archive/rishi.lidx
Normal file
Binary file not shown.
1873
stacks/productivity/data/rishighan%2ecom/archive/rishi.list
Normal file
1873
stacks/productivity/data/rishighan%2ecom/archive/rishi.list
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
||||
return {
|
||||
["rishi"] = true;
|
||||
};
|
||||
@@ -0,0 +1,3 @@
|
||||
return {
|
||||
[false] = true;
|
||||
};
|
||||
@@ -0,0 +1,52 @@
|
||||
return {
|
||||
["push.tigase.im<01#64D4817BB5106635AAC74FD81674EBC3863DC2DB3368551B6D84C94B3E4E0A06"] = {
|
||||
["jid"] = "push.tigase.im";
|
||||
["language"] = "en";
|
||||
["node"] = "01#64D4817BB5106635AAC74FD81674EBC3863DC2DB3368551B6D84C94B3E4E0A06";
|
||||
["resource"] = "iPhone";
|
||||
["timestamp"] = 1771832997;
|
||||
};
|
||||
["eu.prod.push.monal-im.org<f4035549d95ab7d94a93346ec2c1a332016870b9eedeb78eb4e6e400c9e7d032"] = {
|
||||
["options"] = {
|
||||
{
|
||||
{
|
||||
"http://jabber.org/protocol/pubsub#publish-options";
|
||||
["name"] = "value";
|
||||
["attr"] = {
|
||||
["xmlns"] = "jabber:x:data";
|
||||
};
|
||||
};
|
||||
["name"] = "field";
|
||||
["attr"] = {
|
||||
["type"] = "hidden";
|
||||
["xmlns"] = "jabber:x:data";
|
||||
["var"] = "FORM_TYPE";
|
||||
};
|
||||
};
|
||||
{
|
||||
{
|
||||
"monalProdiOS";
|
||||
["name"] = "value";
|
||||
["attr"] = {
|
||||
["xmlns"] = "jabber:x:data";
|
||||
};
|
||||
};
|
||||
["name"] = "field";
|
||||
["attr"] = {
|
||||
["xmlns"] = "jabber:x:data";
|
||||
["var"] = "pushModule";
|
||||
};
|
||||
};
|
||||
["name"] = "x";
|
||||
["attr"] = {
|
||||
["type"] = "submit";
|
||||
["xmlns"] = "jabber:x:data";
|
||||
};
|
||||
};
|
||||
["jid"] = "eu.prod.push.monal-im.org";
|
||||
["language"] = "en";
|
||||
["node"] = "f4035549d95ab7d94a93346ec2c1a332016870b9eedeb78eb4e6e400c9e7d032";
|
||||
["resource"] = "Monal-iOS.2d6cfefc";
|
||||
["timestamp"] = 1771833607;
|
||||
};
|
||||
};
|
||||
5
stacks/productivity/data/rishighan%2ecom/cron.dat
Normal file
5
stacks/productivity/data/rishighan%2ecom/cron.dat
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
["tokenauth/clear_expired_grants"] = 1771832870;
|
||||
["mam/remove_expired_messages"] = 1771832870;
|
||||
["user_account_management/remove_deleted_accounts"] = 1771832870;
|
||||
};
|
||||
59
stacks/productivity/data/rishighan%2ecom/pep/rishi.dat
Normal file
59
stacks/productivity/data/rishighan%2ecom/pep/rishi.dat
Normal file
@@ -0,0 +1,59 @@
|
||||
return {
|
||||
["eu.siacs.conversations.axolotl.bundles:719589985"] = {
|
||||
["subscribers"] = {};
|
||||
["config"] = {
|
||||
["access_model"] = "open";
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.bundles:719589985";
|
||||
["affiliations"] = {};
|
||||
};
|
||||
["eu.siacs.conversations.axolotl.bundles:964622225"] = {
|
||||
["subscribers"] = {};
|
||||
["config"] = {};
|
||||
["name"] = "eu.siacs.conversations.axolotl.bundles:964622225";
|
||||
["affiliations"] = {};
|
||||
};
|
||||
["eu.siacs.conversations.axolotl.bundles:2046552331"] = {
|
||||
["subscribers"] = {};
|
||||
["config"] = {
|
||||
["max_items"] = 1;
|
||||
["notification_type"] = "headline";
|
||||
["publish_model"] = "publishers";
|
||||
["notify_items"] = true;
|
||||
["include_payload"] = true;
|
||||
["notify_retract"] = true;
|
||||
["access_model"] = "open";
|
||||
["notify_delete"] = true;
|
||||
["persist_items"] = true;
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.bundles:2046552331";
|
||||
["affiliations"] = {};
|
||||
};
|
||||
["eu.siacs.conversations.axolotl.bundles:1967738173"] = {
|
||||
["subscribers"] = {};
|
||||
["config"] = {
|
||||
["persist_items"] = true;
|
||||
["access_model"] = "open";
|
||||
["notify_delete"] = true;
|
||||
["notify_retract"] = true;
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.bundles:1967738173";
|
||||
["affiliations"] = {};
|
||||
};
|
||||
["eu.siacs.conversations.axolotl.devicelist"] = {
|
||||
["subscribers"] = {};
|
||||
["config"] = {
|
||||
["max_items"] = 1;
|
||||
["notification_type"] = "headline";
|
||||
["publish_model"] = "publishers";
|
||||
["notify_items"] = true;
|
||||
["include_payload"] = true;
|
||||
["notify_retract"] = true;
|
||||
["access_model"] = "open";
|
||||
["notify_delete"] = true;
|
||||
["persist_items"] = true;
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.devicelist";
|
||||
["affiliations"] = {};
|
||||
};
|
||||
};
|
||||
@@ -0,0 +1,838 @@
|
||||
item({
|
||||
{
|
||||
"BWi5Kr1lwUPh7tqIb7Yw+Qx4mx2sLgjjJrjHmZO6zLty";
|
||||
["name"] = "signedPreKeyPublic";
|
||||
["attr"] = {
|
||||
["signedPreKeyId"] = "1";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Wu2sYZ1AtGAM1BotOpyTlW5M5j6IhRhMn4R9Yp+T+OGpzg7eOnVIh//i3T/ofeI6j1T05W2/Txy/U5Um+t2cig==";
|
||||
["name"] = "signedPreKeySignature";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTEN/qwyWrOEG9bMKD/tTZjXYQGuCOxnOHR3pkUBnnB7";
|
||||
["name"] = "identityKey";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
{
|
||||
"BauWkPZlD4+4ztcjzdQKfNco/M/8kLY+VyXE+sKg5YNR";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "1";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfhzNARrTrNSzRQlPVMb5b+CHRHfzwvjlMiHjeGBpLwf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeqHZzUWKv0W7tumu0j2H4GSOXZW6F0sav5ZIwsZIXdZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "3";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWOsJNuw8/MDiu6A+gKObygAl406VMxVYlwhKfovNFcQ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "4";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BU+ns1dILbUTJHbHJ833VdJnu2SFFJwZHWm/vmQwBTZq";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "5";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaYno+GDsvYafVM80gKCwhUB9+kYGDbj/mhCZkVEoxJO";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "6";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT5x+MMcKAiFoxTmbuFp5EZYJhCEWHICScJqC95GfCQH";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "7";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BciJubR8ISQG93sjjpGri1me2YS3/kwwdA1K2our0fw6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "8";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BX8gqaV0f3zXd2Bt9PUAB7BWNSLhBJ9jv5ntfWvOE/Vb";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "9";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bcpp41sGKZj31etetKDvBwiJeLf+vT1fRNck7X3B8sks";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "10";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdAyU1qD84u70hw3nCrQQoQGmz2TXFXDN3V39AiYyxZ3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "11";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVYSjbJP/28CjJJSegI3w+AlEhfhX21wkKZAXFM4Ymc2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "12";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbNNCM1dJhLzNSBjEl9f4P/ZYPEJuoq79GClGgip8Pwc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "13";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcEgQ+fYp3XzkD5OdYXUAC0qSu2OWuf1z9/5xzcLBh44";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "14";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWzWO+KEEUh0QS5kZEyYaR0eQr1FXkmqVr1i75+1mFJR";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "15";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BddIJWEpmQwlMdirE5yPfznJCDBNlUY0vC+MMCkUF5om";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "16";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYcmFh3BC0TawHpXboXq+9/LexpbA1T2dusbrptxhJVZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "17";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZXn6aiSdKcNPoPZ2ftgT1dULQKP3rd620RXHcsCCq9f";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "18";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYeGWad7zItEXWbMHVWsA64cKyEZNIzvchp9L4f4sQw+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "19";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Be2v16shAMkhHCCs8IDcaodM3Mp2LDVQx/9x48ogYVQy";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "20";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZAJ+4mRZXAm7SzSpJyGend49qLi11Ge9YPdYK9WOw17";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "21";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYzrLh1IXl6N0hPNcnkEdmGDUHyQtxwvPBS6jIxyDFBB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "22";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYKqZIhSEoZ3E9/0VqqJB1d98cJDic4+wdSLP7KtZjAN";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "23";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSwY1/ai4JW8vlukirkau7BpoddZy/I8C+yjoCfTWeBc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "24";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYY+wMWmaJtK8mz+VDp++z4tAsxfWu32wNniVfY4OcdF";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "25";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bb3UamaWAOCShn5ZpYs4Cx/ZGv0zhSkh/pOlaOf29yVD";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "26";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BW71/yOqaFHEfadyutwDIDgPagWzLm+14CQKHIIy33od";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "27";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BR/RttQcheaTf7w2dLXlDePelzFJY3fONHPmks5Ha41u";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "28";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWCJ8niuiYobQcZp6w94Gku03YS/ZlCoDNIUrdd6eC8P";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "29";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BacTX38M2OAhxpPyGKQAwXZbcoHyAixl8ldJy7DLjQB1";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "30";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT6itpmOFrcQ2Km/HtopRJ3GnmLpqVKUAMR9xAOpJCwn";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "31";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BazxMwq01EENQx/Yk2s9agUZG9ssis/46iUp5QrqsgMD";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "32";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcEdEL5tYt+z3IZvyc8RJHgY7EURbUO0rJrnA/g8IfAl";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "33";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bf/zgHjuiorZUqKK+q/QJSDFFKgT9HSLdPv+gHqsJ7p6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "34";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BckTmQHq9af4NMiMhCvaGyHQIgmnIbkpQrTzxX0z9vJS";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "35";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bbr6sINN5uEDA6VQ2d6ihHQ+JDdRCO4rHxTcnQBH7L9T";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "36";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXKG6APSPsuuYB5wHYkjrSZ46JtnN993+ENoihlst21H";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "37";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BU/H9VKMqbjRWuF5L+oZtk/+AysDrSqlXhA8zR4laCl3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "38";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc2WS6vk9kV+WIvycoUEm5FDY2IW2071a+DGbaSQvok0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "39";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZBEbbBylKSMNDFytG2fVeF9nFL8YJAO6bKbBYzs75od";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "40";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWMnLcg98ITTnjWHt8CB+SWEHqGp2ndWE6KDuq1kZGU+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "41";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeYRsSC8xEIgYyjil53jMnG0+Uf4oMYXpPuEW2Jeva90";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "42";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bdpy6ql+D53XTPPT2GgWiD8MrWdN75KaIUt9Ya8syh8F";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "43";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWSRk/BWDX9CH4lku53LovPgxCSJ3+VLmmZ0LKrBZAU0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "44";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT9DUQuDlBsn4ARoOaewlwLHVKF42G8WZKZGh8++2TM+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "45";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bfm2NOm9lgDy3wmBpRH29wq/fhwn7Yrncmd3vTQTN1FM";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "46";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BR04Ofl4RRpOuHJsk7cT29eScdinW2M4gGcL1tufm64I";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "47";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYU/e7JSFx8gov8P2U6NHWcfw3f/lSJ0rHIBsN5zrIER";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "48";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bfs32F8ddsB+oJGBDag9n+cfcgmeUTN6zmsnrbz9AphN";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "49";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXItAtlyuLaHvKJ3oI1P8sNSMHxEhjbhfnMxO15fCU4x";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "50";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BR83UwTyOAdYBOO4PmGztsI8yDYITYXWQRykZZqWs6s4";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "51";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaygrZgp9HJgQ8P21MoCbDbAYCjpPxG38PSxkAu2PH5V";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "52";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbrFBSjmTGog2QgtbCxqiLxtB1E73lZoxA8kjesVf8YF";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "53";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQ2A/76huZzRocIcePNTv5Dk1xUgu94zRuBZby5X/Qd5";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "54";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcwTGVma7Bs5wUB+Jz5OZjGzAF27HFOpRPEnVpfBVNs7";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "55";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSx4It4HMnVmxpVVnLv6qBOsAnGfEyWd8HGsob12tepX";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "56";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BV7J8qbzUERDNA0a8DSWRmulJe9S1mU0xxjH2tTHrEBI";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "57";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeN0B4rzagUTH/+9RKDzRyrQ25PIB4Q+dBRvcIQ4ilFm";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "58";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWzDy46SDUAMN33LQz7sEPOr1h5ei82AA04vy6hkqQQj";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "59";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BX3gjhFNbfDaRML9jMV60lmL9f5qAYVzCuB96DXEC1oW";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "60";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaJVvsAHlQuLIjLRmO4yY031Q0gqDD2eMEgflSbavFQr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "61";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfEbTtlpQe8/GQPiuParTVn5H8QtcKPa4NRcFd5KYSNK";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "62";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfvCzd/ppUlrehYmvLDbaAoo15w5Cd/N+ETnHikCuuhf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "63";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUwUxX1R41vbFTiZvSAApBgF/0bR2Ng+3wWhipytyBp/";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "64";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfBqvMhS7UKQtdYU4rIjXWB8JlIqWoJfJ1Hbd6n5rRx1";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "65";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcKePmUEzoQtX+h7Kw62lAP7YfFIK1ub80zef6vhyqIZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "66";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQnzDoefrAOy/qe2Z46dPO7BYYl4FX5D54vVpvZYgfB1";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "67";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZR3Pgqq2xplxJ/2GpPZ0jutHw4xLMAW+dmg8kr86HZ2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "68";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSsWvvhgvsN/MXDl0r03XZw9tJe0xf2fkKNPgY8nYbI5";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "69";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZnDt+LwtvZyVe/t28vgi9frKUf8rjXPGDnhWawKS4cM";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "70";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bbj0sTusqEp118Xl7gq8o28ggMRKIfJiJeOARMA5vSlG";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "71";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUDBJuPnUOt+QmCFmJnY5zBcmq1gqOeOmeUc9ufm+XEW";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "72";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbxjdzeKRBWC9c4tHoZUaMy4QylGD3aBn0/YN2oPqetm";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "73";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTil5lH2Y1BV/E9DQqORIijyjpfGKKk8BxEP/fpZvdRv";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "74";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWLJstn6cdCZ9DpQ2W7aepgFKScHUnjWEkPKEWRCPsRD";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "75";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQoaCBof+qDqYVf45jLYtjog3qrhvg/F/vHJ9U+IuqRu";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "76";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQia7BFv5IU+hFV9VOTDTm3dgwZ82WUqmo5pfeocQJEI";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "77";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZKwUYBWssrdCCGQo7NRissZnGz72ruvSj09E7+nwYku";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "78";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfLJKnqmdXqm6lIz0V00aOj9WjqV1zQZyDxU3WQHRS5t";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "79";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bdx2kP2el+PY8NTlmDzqZYmdkqOukYftjyuySNqU4mgC";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "80";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BW+8FrN/PstiRDGdI+X7E28n7UjskuavRbo+Ud5wW8Jr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "81";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BegIflQ3Bd9nbO22FRjnLVAm0dLXxcTWN0Z2kBNHrRsp";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "82";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bew5XFooE5DYf57ESbzGj65V8oED9fR7pRfDsfUsm0U6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "83";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYrUsTQnLp//OiMtpjm6i6h47hn4vVMK/4Zab2xJjZ5E";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "84";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRRusGlpo0EGfyJxLq39n5HFkd7CI4sbQq2ZNkKQRqgT";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "85";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSFQHm0M2i+5iVYUvZh7LOe41W7QE1AyqmUmr+xpk6g3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "86";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bf9jkyJ823eHa+s+Gdf03MHKNAB2zng0VDWF+xOq5KYb";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "87";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVpXPZOj2yz7vo3YBOJ9FOOKGiWDhyitYGyFHdCOqQob";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "88";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXwSUnlHDmCl9S2YF1sWl4us62jdOX3PZOSngG4dMblf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "89";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVtvGfEJXUYrwuXI7SI2f2f2Zcv12gwsO/C3giVcfoxS";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "90";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSjspEt9jSa9zBQqMnOzfrCp7GzvGbyEYWP/O1LwnlhE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "91";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BctTq+aMSh5c470jJhIqkw/xgMFNy7/AjLewH4tPSux5";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "92";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTwV+MZ7fLAEsMfR22CBQLMX4X6R4+Udsn/6Hx5ctd8K";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "93";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSJzp6uIHqaxYuRWEsEm/B9H5zYkncjSF0RTkCEfESxc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "94";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcNSfi2dk7LKearnY2lqjEVqU5yKhKH9aKePlYR6z0Ni";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "95";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTJVGSoqLcamgfFvXNqkuNOo/nQB7ogUYymdS4r0L7xY";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "96";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcOul9odXu22DdxDHi3C2Xdhe5R1u7d45w3hdNu1fecQ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "97";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfB+SPT8GlUZOADOi6iD9UBeeU4OJUzApV0bazt5TTYy";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "98";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRyukQFUyk6ZndgeeIkVPv3n1yltDTN8nf21jatpINUQ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "99";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUie92Ve6DSSpuQ4r+vOqx8yL/pkaWhBztWVl8lO2cZ+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "100";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["name"] = "prekeys";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["key"] = "current";
|
||||
["attr"] = {
|
||||
["stamp_legacy"] = "20260223T03:13:48";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["stamp"] = "2026-02-23T03:13:48Z";
|
||||
};
|
||||
["name"] = "bundle";
|
||||
["when"] = 1771816428;
|
||||
});
|
||||
Binary file not shown.
@@ -0,0 +1,838 @@
|
||||
item({
|
||||
{
|
||||
"BfwaN9dOQihzjztgc2kqvNfLu7moFfBDTofZV276yOhS";
|
||||
["name"] = "signedPreKeyPublic";
|
||||
["attr"] = {
|
||||
["signedPreKeyId"] = "1659509823";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"CPOenxdvM8qSJbkGg5diC4S5l8gwxzHcTXCtoq8Mmiw+nA2+KwAOAtPeBthD9eGeZ4sx6ug5Q7ZOYguqh/8KCg==";
|
||||
["name"] = "signedPreKeySignature";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdbIqnuUHOwYUGd/BkbjNZQZmFRF9LbpP2YxgsKE4Ftm";
|
||||
["name"] = "identityKey";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
{
|
||||
"BbnA2+ZaCw83bqbpfmNYMHh1bSR0gmDVmU4fcYaqo1Nr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668725";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdQCGTKj3EZcAudVKkykj3f6FjvjT8n9F6Y29ofiaOIv";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668722";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bdp7kwSG8sMcyL3BWAsVEwS2W3K9tRojDjDtduh12eBH";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668779";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaREWFK0AaQ3tPuGtnoHUC0FNdqSGlHUVsKMHyLY9x0d";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668758";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbJYFGQHobW5a9zJ0cHSzMMU39Kljh70ybidkJzG0HVw";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668713";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWyR2kV9YT2MnC31AGlB17YoRQ/J/XpyRLJYbt5iRMEV";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668759";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTBFA7FCR9mu55sFj5Y0QM6zm9Q8alttnjHUbsxQArFG";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668775";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVeygysmfgimKT9uoi7l30fWHq5cESejWdGKw5Regdl+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668782";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTcpQdffOxicFIXxx43JRtuvl3ZAoGlOK3AJSj+QctBn";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668791";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeHR4ehu8kuU7MuMfaj53oWkyaDdhV9XX08055MXihxB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668797";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BV1GsnDLS8yiOepdej9p+DXexb5mJiA4Tkk6QvrdB5I9";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668777";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUnSj2FF/5s9WTCV+FGBQGhaAxFC/NoEFXYTX9gtppRN";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668753";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbKTvM34FK46hypvFAigTeXnAvG86KkLtBiZAzXHHGwb";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668770";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQWrAzV+mAnjluZO5Ak5xaH6OWYqeG3B3ud5HNZeGnAg";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668785";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bd87i1NIkYqTPLr70fGmUQukPuDW/wPbK5P4NnnEeXtT";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668737";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYIpy1fGJkd7/UHY38f3SrsHUg7pfXH7YzMbtcZTCr9p";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668780";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUPWlTJUlthosaDXaOpYQPL+a53MaJuRKHLPQktfKulO";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668720";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVOX5+mi1R2vdFyT1rVcdHJO/4fBbOSlVgPDnw/x9O5F";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668729";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVi/6pOqZeKSFaVrAowgcoefhSlmArzwebf1IQSHevx/";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668751";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcXCmWIlW3GW/9/6KM7tGqekHiH4J02KCxq8sB4dIXda";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668794";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTCurILBo0z02iwuXubcrfAc5hHuqAvh1EIVI4RND4oZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668746";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQFgq5klMJLzgKwFNqlWOsFXD0cZGBZ2Q/AAh1IdaU0u";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668721";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSuYDHdeIubrCLUFMEWTu/LCOdH/nPg7SfJ9nx+cf64i";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668756";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUhkk2LX02wwyAIvVjUPXRPd9u8d7t0d9xCVVr9MCXVk";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668768";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXRtUQStnjyPwJ2FhS/u8Ha2kaFA4qyMfZBGyv/sAXlI";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668774";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUcNVVAtV56ou5u7riDJHXTD/4OUDmzU+na1UzHztjoM";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668742";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcI82rjmo/UlzL9QfxnGWWKaHt9+Ur/fwZt4WZHOb64M";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668726";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZZSyi/7H3SOmPPXQJwC4rKRTeYxYehdlAYhN2y7nNxk";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668799";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYFFnCl50OigTcni/mGkBcS8f7WxUTzBiHSqJQlcry9Z";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668750";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbLm+Y3UXghPVYuSfNTSfBavSG1Nq5TnR5WTvq04ZZwE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668745";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeiejFN+gFEknc2Iwmmc5KPbgFN9q6DyhokXSDbZAZoU";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668798";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbMTTgQz2TY3YG2atcSBN6egEyZkb/oc2d0OzPQLXaoy";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668762";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTwEIqHXDT2lhGZMRdTEAryMC9HTrEFqAOGwfk9rXf9D";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668773";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaMQ6m7z37KMFq6ihJa5H/XsGMh9X6d9iMTcfXSMTNts";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668703";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZwjMWBCfZNCuospWVG+Not1woPUnfSBrXV64o0vEBYT";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668716";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQgPVu4xuxafiuvDifno2vc6jWqArN+dNT9ZIp4zIktc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668760";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbNg1VEBgctFn42pY+YquT0KTvuulYfFS1aNws5UORlB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668769";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BctoffQTHTXyViZxmt0Q8TiMtmTd8JZ/qXszaKLGYbY0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668748";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba5CouTPzozC7EZZm3wanmQLx8NtfOvwmXxd/QDANXl6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668706";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaAsUNZ4MqpVWkRRakmkRNWR+xYq8jSxyeG0Gozk5OdH";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668801";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BU8qzY6fFk2r0EA73XqXTG8M+yImrIPeF6c/Md+0fskT";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668736";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bawyn6SsFwyMCSFS84sBr7GE72S2vifMY4G+ro7Qwg4S";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668714";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXs31N2nk+EP8pkkmMq6A/otK91lwg2KNt8XaYbKrK8b";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668709";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWepIdP0y8vBS50FUOMKl/frh+nvPeru5okZzkK3sStI";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668767";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaNezSmQTgJxglpYX2hIQ/u9DtSGamcBzAzjESTYlex7";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668704";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQoy78TRHDTC+PXBr75Py/Jrm+2KFeJoU4pTieQjwmZr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668717";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUvzdoM2hU/5n1i7WBeaKGTKHdhhdo8Qu+7EuHOcTKhA";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668735";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bb7AkMu0pkd0TIUGDTB3KpC6tXCOx3XGi7ap2xKgg846";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668712";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BR/JcezYz7jX2dJ40wAtRJA4+iOPauKZqOEuy4mFySsY";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668754";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bdvk8LujfLeS1j4wLtRmYL4MsLhcmGZX112CRtAhQkU+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668724";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BW9XAI3tzKjwXF6OWBmIttClD4G8132+2JdJhp5H/O0b";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668731";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcKYuUVywEZx+K45xOvscApxy8E5FT20u6wiwFZ1lqhc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668734";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BX0qyNhcAw6kzvk8IfVqFg9O4mOeoryDQXI6qdXhFOd3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668781";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BW1/2M+tDVar4RndA3iR2X3ZiZwjsxefCYeoEF3362wk";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668730";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfpxLrN+UekwvRqVRrx1JQBrl9NQOGQ21rcP/YGEWZgb";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668740";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWKVK10VNTcZ2YAtOzaz6AxeV5QnQxOQko1TZ1oHR31l";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668752";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYqlU1LWjighh1gADCwfEFmAJtc5BIJZwJPJOiL9/l9o";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668755";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZ97xkKSuL+JaXhmJgpxLWfVYaoTxpJ3IVAuL8iLa/Zi";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668718";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSyLyOkJh1+D9oQnCESDzN3AQe7B4Yf+2i2ZvvBRrz4s";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668711";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfWKE9HUxs8pkq0meb5Di1yEna5AjpIZN5sGsIZglcpf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668727";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRAliBsii/0I2mNhQtQwiFlNnOZCOkPnzOJ7hqd7oGBa";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668772";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQWjCGxB/ukSGsdZTwp/yXTz6WCyMQj2e6ptvYKND8tX";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668743";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZY06SaqiYSfHKBrRsZWKyzEsUJQTED4+cH51+FzjjA6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668771";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BW9AN/JhAgPyT5Kt/sjPRJU90wge6TPaxeiQ/OCZLqUl";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668788";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcZwyA5VbuyOzy7JUp4yrs4Negcf3FJwqxQ+6Nyaxc9l";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668792";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYZZyaCzR/07e3Xf/fzZvz/d5j3mqFGNgRazJATlo5x1";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668793";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXoyRVLArdOeR5PH7ssFwjmJS6DsYv6oYFNt5LgkO9ZJ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668728";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbZTxQDnQa5ivmU0BGG8r6GYBVf+cmBKQMfldwUzwRUf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668783";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVqHWDQjwsVkATtMlMoziWXInGwHXfa62DMyu2+O4YNe";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668741";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaJaA2dmcNJe44vXgojLAc9iHCb57ebE+EEJyWfsXf4o";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668757";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbMnsADJSZzISkuNoA7j3HU8QCgJBw8tjm5+AhOgCEhX";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668732";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BR9ukGLOwqyJQPmS6i14sIBiWT1kKZqovRx8P3Q9n00H";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668749";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZUiXyRqOdmgToFPw3O0+KA4gYtzJbLa24dYl9YKuZI1";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668764";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbOLgoHcaPfvT9hxtv83oPodEWK1Y+tOPUCpz3LmKupd";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668707";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bae/+6umOGihiSymTSzVhFslpjTgUW5R3YwvPcdMft42";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668702";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BS8roVPM2vXXxuOhQWFyuEUZulzG4q0Mq3NE70lQhFwK";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668789";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeindHmZ1i5wSu8ljgu14I1winFehOl3KXmEknK4BEAB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668796";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSdxXOp+muK1xA+/VubAloFsIRSZ2u1pPLT/WmIXwmVa";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668784";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdgqjWpF8hz1VsRsDxet+qgS/BIB9nzpXlBTWyhPLVMB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668705";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRd+M5CZ3ldgJps8JZKvtaf4C17fjLFpYM4TSw1Drjxx";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668800";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSd0ZuLYY8j310Jpqenne/bjgmIUmK4l0mAX8uztqYMb";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668776";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdpaTH0BygXu7oVA0a3V33DLlTFkRQuByy6bfnXShYcJ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668787";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BctAkUO6xpSsknxcarjLEn0DGLtokWOd6oRwKPkNv6d8";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668765";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT0lqZPVWkHT7CfKO5ZYgZ+67EoydU8YxMRXkNH0tKYh";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668766";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYF9Asz6Frg+HcCr475VHHt4akzHmgDKxDVFGAhQHQY4";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668708";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVeRdX33TcPZsr5Lps/+Hh7GfTd/Dh0sh44iiu4W7xtc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668763";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT1/J/gI7lqQAse/WzkZ4/uYrFSj7+9KbJTXgyroJC4l";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668719";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfGbuextzQLXQom/LMyQwPtB3XafW3oKJdyRDPOfTTA7";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668795";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZdATx9CbSIG3BR9/7c6vGsrgDKXlNGV2CcDtIAfIgod";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668778";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bfu964TF9AGB+RyB6dlNwxZCd1h4U3zk/iBXFaUyVaUh";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668790";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeywnkWj5hWcqkp4mc51IIDrFvsLk6uM9om2TNMGtQYn";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668761";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTQuEk49nrfPIImXch5B8U1/qVPrCwEjkEkyJRZ0SVkw";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668739";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSkSZnruY3NstWoFY9liEQpuJHTtYxlpCzSo5sOWqaIr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668786";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUJHDOe8oMX6flNtIWDrbkICS2uWDa+btZtzuYprmDwY";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668723";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQbqmZpkThR6wHKmzavJx597obcE1dX4ySKIQruDtPg7";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668733";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRxPZqA+UarBt3Q0eNRIueu1Re5JW4CIZ2DBt8ZPTNBP";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668744";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYwPU8Q5nCyjFWUIQFBHSRGvkbPTpaAJoI6oI/MUwl8U";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "1781797583";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXF47CDkD3w4RGj1IxhdLT9B4Ab2tIC+D//WZqaWTkww";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668715";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BewKU/V9emmQLeQAaDxpEJJWDkH0SbMvBWitxjd/GKxv";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668738";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQ8aCwQ/bY2abAcX66wAwKJEtptV0OGmxMgAe6/bT0p+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "946668710";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["name"] = "prekeys";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["key"] = "1";
|
||||
["attr"] = {
|
||||
["stamp_legacy"] = "20260223T03:13:48";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["stamp"] = "2026-02-23T03:13:48Z";
|
||||
};
|
||||
["name"] = "bundle";
|
||||
["when"] = 1771816428;
|
||||
});
|
||||
@@ -0,0 +1,838 @@
|
||||
item({
|
||||
{
|
||||
"Be5DHmOUHKPZLv9q2outzE0qNOyJnEpqyQU/10KJTUB0";
|
||||
["name"] = "signedPreKeyPublic";
|
||||
["attr"] = {
|
||||
["signedPreKeyId"] = "1";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"1A1kzs5/WsXqpBWo4HjZuCU2jxTu6CK+z6Fpw3enkaG1zjqajZkSqJwNNC1cfD4QkcDgjmiyy4s1Hd1aAug8Bw==";
|
||||
["name"] = "signedPreKeySignature";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTct1/uCsiM2rIiLv4HlnfVYVyuUG9G8aWF11cGXyfpL";
|
||||
["name"] = "identityKey";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
{
|
||||
"BbdYRtcLRc/zXU1+U1XQdhMCegdRdHTylbIGz46LoRwR";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "1";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRzykYvyXPpby+1hSjXY8acMRaj9ou78W670Ck7ckrtl";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWZXB7FpNeCTa63PXYU/X1I0dTTLGoPFD25+9nMiNrQh";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "3";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUFiM/UXSzQCRzqo3NhdW90GPcLJMMGb49Aga5DdZe1c";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "4";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaLycZHqC2Yba3gV9MUZuTgU2DvoLm6VpaIuogdGz5Jf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "5";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BS25uPrLkHua2yplr6KkrVNyXvca8YuJUB4IETljRgs0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "6";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYLVHyJdEijStKwpkSg8ZMa+8zlDEj7Lhcrd6cX7ApUy";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "7";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRc9QYVmKdf+26xt0dTPA9cHvuG39mtf2gk6v8kP5E19";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "8";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcHWewSvPLewU2+xkH6lDrQ1PIXnzf3Gw2cvernQwaor";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "9";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTswA0UzfCeGGyPUoefEKbm8F0tv6Inc8pGrKEtgCV4s";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "10";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYMORPRP3XZK7DfJzMs5AibwOJ2BFl8rogQTpxzTciFr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "11";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVBbT226QbvzCZQjK498MAjmq3TfunQKVa7zduOserVz";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "12";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcVAhBjom1DFPEHhwUSoU5zd/2kbp8zHYFSJIBEyTtIT";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "13";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfE0/ULOtAVa6AscdRP5hABQxscKuImNeJx+bDLQ9g5Q";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "14";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BapBkj3ZcAfjktLLwV6yseRQiXLRrjXJwMPYFA+Xug05";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "15";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRvBaxk6cJd/h6f5cbqU4B6p9CqUOzy75z+h5z4DDbgR";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "16";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWjlgwgvEgGG0e2xJx/cakLYFa2/XPZqUj2Pjitjs0xw";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "17";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVRymxeuFTCrGqTC5unGMHc1UPIuiluFwbGWnUMo0sxR";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "18";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUCP47o5QJDF7G6ZeZ0qN2uLgynBYe2Bz0IhsYUzogNF";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "19";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaZY/FPHRKa5CNgH4WB3Sip9hMkPQRacy/EOTnTqUzh3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "20";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTDq8cKRp2etkK/dmotslCkveq12V6JJLOWzYXzvcC8O";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "21";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BY/15woUoNoe9Fz+jsKH9LqMhKzJe2I5ULH7TSTNEMFC";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "22";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVErm9xVFJjba/1W5qupoa6pAUIAj8yQoa32sxq8v8FH";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "23";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVZgNI8jNd562l9tLa3nx1Bcsu513xXf3fasYB7jgIp4";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "24";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bdj6C00qzX36n4YTwSXDY4g09Fa8lVvd8HojRDRCPKkj";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "25";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRVqxhpV3QlZhTRfVzZIXbeoDw05u1eidONOlJhDE3Ip";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "26";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVwPM1bUUf7YBYFDFqIwxTH7YrLWjIDGh7r4ee3/d8ss";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "27";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bej5SqCbl9x4C4IY+tjB9WHGzTquBkkYzMrQX+o2keYp";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "28";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZpcZMFFbX3J3dQlLy7XsGNsB1DFK2gb+Y+TNQZojrsj";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "29";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQzxUrtDn4+4rIj0X4qqUCHxBvH4rnDvcITy+OO9uvl2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "30";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWRQLQVzxEdq2b55bG4fiCvq8C5hq5809KH2xoKwqo4r";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "31";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba+glM13hM3Dz2qho0u+Yesu3OrE+cafS/a4Ga9quYVk";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "32";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWKK1fgZ0obUZx99xs2RZcYcmTyZmTA9jtli9o9o1rYO";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "33";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcfFGcN+zEHpdPyuuHWN8TLa2OCxwjYYQgII3IcoprN3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "34";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdeVDGQMsR4q8Et1kYuk4ZO4HaoaNV6texj7Vjm2OzYW";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "35";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVPQGxtIbQH/1bI0OdICa/tJW//K6brgXunNwGlR5rJ1";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "36";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTvi5tsk9gWPqEFNYAOR01k48ZNrlLoA5FgDH+ITavIr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "37";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRfAalw9CDO7fRtPuUkJ9TMGxR37N1UBgRCe60PyvlQS";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "38";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdfpqE68PsNS7ZOGCGWsQmD5SDIHk/h7PUj0JtEEKMZ4";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "39";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeUOZm1QVOa3QtS0+hRct5LmF+2rSE3FrWHg23k5IuYU";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "40";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbC7w5PFzTqYQyFC1m2tOgw1j12DtVB/1hlK2uUefEFi";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "41";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcVoRYxeu73uvxs/fan+OIYsbdKMhyQ4/n0PYY+DpC41";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "42";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bd2c3NKsMhLB9qJwJOMTGZOTPX3o03+1kQnXRlcMDJ4x";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "43";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUGdcAx5CNkmWMC4pEURB+BRRnQae6N/zzCHiyVAsZQN";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "44";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BX3eMh+M+Jt4lP5lAFSWfKOYpvYfHQ0toiCsgz1FBvB6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "45";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUIHhlP/DNYoV4lMT5nSU6OgePBye26BLvDqrL1Jk2gV";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "46";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbXPGOjuRK1Nu2xCBd8uHtUbqfroK/sB9+ANvyfvrZw9";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "47";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdLnkozzHuxq15UXRFIQbZWduKmyKQhUPFkXA4gorlEm";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "48";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbxEQ6flt7mOCF5dkoPYEaCoF8QiDkY/rD0pYmC04mQ0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "49";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZBDaWsWkgUnmELlmSNZMQZR0vU20qF3RrL+Te+jOrV7";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "50";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BR9azc1LOEb++sHVAsU+swCPMMrD8nx5jfcJeIUQg9Iu";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "51";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcLmv16xpcotdBCNegh5/EV/xjvrVOiQm8yTtndWU/Mr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "52";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BapDIPqVhdPDThfBNco+Ymvc0/PRZAaBrQzOZyQoE1hE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "53";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZOT0HV1CmvH4gj/YRLEcDKtveLInbrp2rlrYsblE4l9";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "54";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQDhusva9mdNtXzSm4M6k+NWkqFa3mN7BbbOlPFdCl1Z";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "55";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUbNJ4x/+mTsNJRD9bBDHFHVS9bLs3hBx5pdKv7UNId9";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "56";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQyo+EcW0AxQTBm0E9Iev6WfhPN4ntuIP7GdQKxqyVZL";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "57";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bcof5pUl7x6Ix+zqlX1/ogAucunZEwaIcY/IFCppiSAw";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "58";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcZ/p4pSaAejCJKzON+3JKlQk8nzwZU02tlBmOiLWz4x";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "59";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcHxqXe7IHWulWSOaXJwh+OCWXy+AlJZyZwRV8uxkJog";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "60";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BY9orIjcl3NquePV7M6snl9B+s7kZOtyl/hY58bM0/IT";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "61";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZMSD/UzA9jhgRC7Bk6QcO52sM1qKNapMQA/nr6u/pkf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "62";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Beum8kKIrFAUSaMNfMn/JzSvymzKIiZPcVPzbrfPcDE4";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "63";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc79mZ8J8S1YAxQpCffblk5rD9+/V62+CZ5MMMlBnrAZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "64";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfM6GdbZrYyEHQGOAEhrca2rU5FZNFzx/WS9bxiPSbtW";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "65";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUXvQz8k9sLvGJJaBNi3Hxk6LZaiYI1ZGmamZSDLw/h6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "66";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUiIXEtKaxmac47hfvJbAICYWPffckq0sZfW3mjh8/pc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "67";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bb1IyFa2KZDB+ujA1zP+c74rhpoNmNTGzpuR8EfnND9C";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "68";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQqwlEtK+136mDXS6mlVRSijTp2y6QMgmRJot7eQoZcJ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "69";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbRRAg0Cuxtdvb0tRsTN9vQ3VNvircfvPmDQ9GOOvwAU";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "70";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUpT4HOFDp+dzCd1IVKnyXCjHTBlzfp7hPURb/iaN88r";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "71";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRrBh8N1nn/VBb56gRKlzKSMF/yE42LSTCk1l0GKRAR3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "72";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQJ74M+ilmPEpN3H/zXOUJNykLQ0oG8YyMEx6sdwS+Me";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "73";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcBvnn7dNDXMdiKlOBAirnlx9i5mENjzrhQp41zDekkr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "74";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQijoUVJz35aN1TuuIED1fbiTKzXn9Z8UWac+rhXYh4u";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "75";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcmcWjY4lxyMmyR4OrvNdYmunxdgYGlGmU583t3gAjsU";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "76";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQ7rd/sVuzRr4rMx6xUGzr3YSl83aXE4Jx4cGTNgdzcu";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "77";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUtCCjL/u8XfNexqjeoBrHX9qMjRwBbYcYaR6UPOQAsZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "78";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTdy9Wxjvc98UtnxSdkxfugYD9d91mpee6Ax4C3Z+yhD";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "79";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbPugnQLUZ44nbVfVvfPgSUXdQKzYvMSR47uvDX6K5Y3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "80";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BU6RFkAPFeLiHxF7VzeV6vPiJE9FxFTQl2XO2yuAj7od";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "81";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bf4b4sv/4RQ5TGpqoMkZEB3ASMnr7IE0rX+v+LNZOkdt";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "82";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXRbS4QUar985XViGX6wRzy2YFj/oRm0eOhbsseI/YIv";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "83";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXJ3r7k5IoH2E2ojhmBEQ7IliYhUaY6ahga4UYVTP6d2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "84";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZNtbM8zqK2adOTx3wqaYyTj0p+ZA6vWjrdVUJ0ZxGss";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "85";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbzLbxnJXHX5m65EXlnBxTkg1MNkXIU6noGTu8+ZuSFl";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "86";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bdvb9bcMCfC2qLtfdbtP0+BI21lRyZQRJh02qvOdg3Na";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "87";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BebzRiQnxohCCGMid+9UqHt1po2lVSdRkeZEcTLJt4JV";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "88";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BccDeKud6E16HlOk/EJFue4FmU/KVWd1Q8GurMqSqB0j";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "89";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT4v6CQATAOf0DOohBwuXoU9rd5JHDnzk/8DuX6Rkb9c";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "90";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVJw+AHKWIoMNDDgOsfdiMk+L9McUhq2/ZvcZkT2PsF2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "91";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXMLu+DlqSL8yVC5orTlDtChc+jVv9zL7RVtoUh58yBt";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "92";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbpD/8POrwhjxjdghRycGaP78odBI0MIiaNBCVmMg45n";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "93";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbcuTCWo/dmgNH6WY3L5CxEaCnBL/mvkccSOT49MZgpZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "94";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbVrW1Xi6rtkX7nVK6GAcyK7zeHGDzZn86S+46k5dXQf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "95";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWU8WbkkMXXgbpKS9SeoYWBpE7DSryajHcaKD1u5OXZ2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "96";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeHNzGpDNCDQ5kiPFkGgYB/mhGp8iqi0oykt/k5WQ/lN";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "97";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BU7SgcpBIqEQZDUGwQsI2PHdnXO1d6JGvHeN++Q/UC4g";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "98";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQ6ZBsJIeNt8lH1uBem3Dqt6oBqJ5geo+Qs+3UOHcbUS";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "99";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZuEbBk++/r5LLhS38iV8Wct7mdglN+flVMs/JHep+Zb";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "100";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["name"] = "prekeys";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["key"] = "current";
|
||||
["attr"] = {
|
||||
["stamp_legacy"] = "20260223T03:44:28";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["stamp"] = "2026-02-23T03:44:28Z";
|
||||
};
|
||||
["name"] = "bundle";
|
||||
["when"] = 1771818268;
|
||||
});
|
||||
Binary file not shown.
@@ -0,0 +1,838 @@
|
||||
item({
|
||||
{
|
||||
"BRtFXIRaI0DWNsH3MfnMGlBGxIiCA6Uf0RdvqJkmlrd6";
|
||||
["name"] = "signedPreKeyPublic";
|
||||
["attr"] = {
|
||||
["signedPreKeyId"] = "1";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"7N1SJgFcoxysduq07EjXKQWfjeSxP0EIvWbFSujFGhUBFhYdK9BJE+xLDNIUVXZcfhCF2ldfn+542BqmIPYqAg==";
|
||||
["name"] = "signedPreKeySignature";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bf352RpSeNgFHA0rk7PNS8KBtTTF564JSoLhzHzYRcIM";
|
||||
["name"] = "identityKey";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
{
|
||||
"BcdDL6YFQQwpQEGXT8azOe/7kweuUtxNHZvtoU5XqYhJ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "1";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUYXyFhBTwilBwJuuMGWghv1Azo/rjr1L6AxsQORtP0i";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSVfJsv1DMM9q3FEyi5FVsXVkq4zaAEykoh7xTzm2iAq";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "3";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdcjYwYYkvMqpxDzLigd5gVMw0agm3PJw03FaAaCcukj";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "4";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaFTs+RnawAtfM4mpfRKL4P+ek8kKtmHPHetmIDndtl9";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "5";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaZskF0xqgC0hF88IBDknEimiHslO+pOLiWwV8E7+mJQ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "6";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BecDoFS4wFBiEdj9pFT45W1QOHq0yGV0NfC9CjuKv6VB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "7";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZFqnK8pqZsk09ya9RiPyjGPgPtGtSCIJsuPHjvkMnEO";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "8";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYuCQZirZlZqWKMLJTDB/xeF/eTJ/IItMvByfiT4yfBx";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "9";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BatD6itMv+kRIQN+JGMVav3CXnfhL4z3z3+8nPAwG7YE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "10";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVltpzOJ/cUKPxurpm/MBBrFtaIxO0vaJhEl7xlid8Ih";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "11";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaFFItJHeIb8E+yBBe1Ve/b4pwKDAjfqGX5ejvLKmzQi";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "12";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcMHmkJEkdz4ltlmbESFKBTxrVatyJ7Yiph1wVF4dzZE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "13";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYOnL9dsOWrgkYmQKaabYuLUtUQnuRF1vStzJpC5ry5O";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "14";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc1QnOJIXIbzC0zMyFDhiiPXbXQ6xc4I+JtzObHX3cRN";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "15";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXXPVFZEzU8fd9vENQBBAlo4fHoTIQOWyqv0nu9bQ5Is";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "17";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BStce1Msh92LB40Q2GNOUU/EqxvtsACX9hNhoSAl48Bs";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "18";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTleYBT4hQSeAr7tTyDJDtgy3fRhuCJ1Ezq3EBFiFgFD";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "19";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Be5Y+WUZ1/ccmaObTNf5RI1gCsaSSG/tDzMfiDt2TXAH";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "20";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcgRZCBuWRltoyKma+do6rHkJMIjq9D71ml2t46pHsME";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "21";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXUd11I6hTxIUBmDp3AcdKJFI5UfGdgypniuZr4Erjxh";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "22";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bf267qeaXEM9vyrLAOwJ0CSS+hZd96uQAOlUXMCtj00k";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "23";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZYyvGA/YS56BMJ8mwbi1Z5hE93WGU05lc/mNBkthwI2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "24";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZqvLX4Vn+Myc7ZyP7HU/2Ob6hS0x3HGvbYmnAjwK4g0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "25";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXarkUwZyGepdOK+EhCUz6BmVF5PElt0xYIwWQI+N+Ew";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "26";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdrQ4+59D9k2Qc46fNJWMUM8dEw3/71NTbZ/YasQqy96";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "27";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVkdK33reyJHHM9W90ztkB3NNVLcP+txgaNAGpEF97Bw";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "28";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRvcI9BLagKbenbSQaSkkR5nhgY9esbd4RQh9O7a8VEY";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "29";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYI6PmzpwfFLPiBvYExXsG2CFZf2vNc2vRxjegtyDPc4";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "30";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRDZsM0Er0wt2yheJsXPXacWfwFbY8tqRQoh7/W3s+M0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "31";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYs/dw5MsiBaF2aRhGzLjwHfE97xP6n0qo7c+cB/GkEl";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "32";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRC9PBetrwygY5txBAungZLuJALzwZgpsGHFDgDmDQI0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "33";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfSBrMvYSUHloZBcMsadnsAzhYQDl9dfQw5DIUbM8X5b";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "34";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeQhA2vu4+rIw4L/i8cZV7s+lP8eBFD8zqLtfaGK7H0V";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "35";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQ4k9SCeiyNYc6vNx//SG7gMthdkfGfswN9ptmW112E8";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "36";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BW0AoTY/np7JKMzCxx9rY2PM4+J0U9rC9xRdkFwaDkd7";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "37";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQ3jsNxrdPdEAzfwC2MDxambX84cNDVnP9sARNuDT4o3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "38";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUtA7K3C134D+QqgUT4Vdr6id1LuF2KN0EHgxvD9R210";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "39";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZEF1j2JedrZEqsBxVLcYOmW5NgIg+7F+JHYAn05FWIg";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "40";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbslV/eBy9jXvAeMPzg7XC35Hf1EHvPNPw6aK7ZjfKEl";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "41";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSB6ZH4CGvcH2qPqcIxFsVkN2OOilyEKb2pjq33ltjYs";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "42";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYxCkGDs8T004C9NULdXZEQDhv/ZKamBKGyNQgd8O3Eq";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "43";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUmIVtw4R8m51bHclmyxMFgI5r5xu6gP1cFYJJAeqZcX";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "44";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbkjNUrKr2OLqb/OZWEkmxwp766gMwNpQFK92D+5vVd5";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "45";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BflEWPwbS6nNBfAG8gAoF4p1elctbWflS5ffbxFVoGk7";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "46";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcOC/hlC1OzBPkRn8kdJKE21LwisgFVaxE2puGb1cNoQ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "47";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcN7BQ8DZ763F/vg76PFIsTKKfEljcs9Xm5odpIN8qI2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "48";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSVEpc8PS4DTSaxfuRcAae/QDlr6YCwOkVkfU1IIvtl4";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "49";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BV8YUOhNF/jr5SSwm/Pqz163c2X5QCScEBPkUX2VOUYB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "50";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcxJetTYRZeD86V2OoSVTQ73Ah2VLt8AbyFclbhjmug5";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "51";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXZ64x93st6xowcW0pGnvxvsgW9DLYLBaO/JMMQpf9pB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "52";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSrAxNwW1mBuUvt2XV59rLY3Tp1ue2wYeQ5ge8tIUchy";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "53";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdIsoqlnTdAuzP4ClFv7QZNLg6ChkSG/8Z5cml0p9ksp";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "54";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQYXH6fVYSfNvxr4vIZ2C2P2bEF7SLzaOlJHPBsd/kdY";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "55";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeGxYCdv4yJkECOQjWy1vnVmyWZ/V/AX1Hk7jvRmke5I";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "56";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaGY1nnOdNjEsEFhp9SPMmU7H9HiU1c/X54jDvimE8gW";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "57";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BS2+20TPS9BUNiCFL/W+w6gzEBPFhkTwVRqFDAJEbmlY";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "59";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT3ZhPk5T0JfTYdg0LcERHruh0YMDiZK3/1QI7X8aZ1W";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "60";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRqVuGbD7uuvIsivAg4mGcUoq/CRxFFQiLVsjmOy/gJX";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "61";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeqZbta6k2L9+vLmVZstTxxCCBPqG5OYtm1y579uZG1r";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "62";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bcr08o9QrK/3bSp0uamDh69xAB8rMsBxgnWnFWXSQREw";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "63";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYiktQ9+lfIoXdgl4E5+Avilj9JWmIDQtz76FepaG0wc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "64";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bbkw6RlyfDY5EkFYHLlPhAtvoVbN/UarhJF3CLm0sn1/";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "65";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Be0refAJNwU0VlmRBhb9D+AGuwDFpHTSgV1Q2ljgmn4u";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "66";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bba7YeffCJf95SzwhvD/gwmHoYM4wQYrJdV2xGGeViUt";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "67";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWW7JqJgoXfoosgfspKdyOtXjmTuK4pDuo5IwHkZ+z89";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "68";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTvsXmJJfTi9GfywAgcK6/buQFPdzQ/JTJEl7lnM1VQG";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "69";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bcwr16phGBgvl07DRu9aMi3HvcHbW6NXxzP7r1HP8ZAU";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "70";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYcMLQSxvwwZ1ChnX3/PTxKeYfSRBz/GwkqquQ2NHtFx";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "71";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BclFgP0+b5ITmxHLEcfDsy8vtrOxqETnttWXxZCpR4si";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "72";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BY4wbW3bJG9lVqHyuXPdbIvsHXYf1CTklUsmuyGEzkc8";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "73";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbNGEOWxjZhADys8PQT/z1VFdShvWMYjAOKrGRbKBxdk";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "74";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQQMKEj0ZLxs2AzpZxY75HFvPX3MewT0SDzwRuDX5fA5";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "75";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bcp7htpt/ELjfJnZy5w40okM7KYrVbVxD1bSlwp2FAcc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "76";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfcoaeZn9Fi0Hq0Fb3QE3wHIOivVHesLjSvEwhNfqHML";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "77";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcVW0Bd3M/Kvp2yr/zQ7eHlnfTZ4PLLFyaVMME50W+FZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "78";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZI+L4KoO0zZtF5kAd07mXLEDPfX1tYdqQfkI2Zpvc5a";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "79";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWGCnGuTFx5T+0Ic6dECHxcecy5ubbAUuA0tuBXwGWFr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "80";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Baw1BXnViaGjNuzeKuLxkNI63N5pZtJxDs85pQmNGaxj";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "81";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BY9zw5+s45inh7m9rYhJibQr+Vft81+/Roz19clI7NhD";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "82";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BR08rbyihHgTz+sSv4y+olsobKODN0Ob9iLsc7az5NcG";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "83";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXQ/eOtCu+MmR/LkakAz1HN4+jkIpJoNFgq8LFCMzcdZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "84";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYsw9Zeu6B2PPO0e9MC0lAZXtewRUji3kG42B4RiwpFs";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "85";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQ504TuAA0+T6EKIFKBtJl+7ywBHEBQta4NPp5dtlB5e";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "86";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BR/gFlSM/VRZdPI2W0F9yI1VhoqiXSzpjnVAC7uBxNEu";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "87";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUK1lGRx47Mv8lwVPfVu7FocmrHcjhfJSQimAqvdTsw8";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "88";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba74GBXP1vNF74D/ZhSjIysmaaXTcDuYk+EuKYPD4RRs";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "89";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQM+cFiP/aqQtzq0P/wgYh+PfER4yLpF02TwIh1/Y9kE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "90";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRTY5hQwQBTCRxg+pQkT67/9XKwxTTsXvca+RRNx26dX";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "91";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeNFEHQx6MNbEUyHou30qsogHP7Ey62xZh76+Wn8stcG";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "92";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdyxpKHFpbWKKDWohLguQVSiH2KVwIc933RWSjOSV+JR";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "93";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVu3CghZw0gMqsoxJx/PHeE/340mrq74hyTiG6vg4vYo";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "94";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bcz9E7iwB29JBTfxQxK81EZBORwtKE4MUttWJT20dst/";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "95";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSGkDQEXWK7ld+EQKD40K1Aer2vnFHUuJF1vI62PLstS";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "96";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUR2aUmerJLz1fYuqQfLxeHxidL5YT8ue9AUqiaiBd4P";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "97";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdEJzBo8nik2Gju/5wcdd4Iktylv8v5CtgNnwdDGIdh7";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "98";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bauwi8z8wPGk77dz1tTyNgOSOeNNZ+z6MORFwCiywoVH";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "99";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcAk+cdtZ90p/NXrjKXLzqEEdc5TG/1GzmwJm9xyS5cq";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "100";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcsGAin/qZIBJkRCKwPhoihr12U9bGO7q78X2jEsqXto";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "101";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdyNyoYK/Dhz+4DTA8HugLVVNg77p9Lm69BgWnUHl/E2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "102";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["name"] = "prekeys";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["key"] = "current";
|
||||
["attr"] = {
|
||||
["stamp_legacy"] = "20260223T07:29:12";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["stamp"] = "2026-02-23T07:29:12Z";
|
||||
};
|
||||
["name"] = "bundle";
|
||||
["when"] = 1771831752;
|
||||
});
|
||||
Binary file not shown.
@@ -0,0 +1,38 @@
|
||||
item({
|
||||
{
|
||||
["name"] = "device";
|
||||
["attr"] = {
|
||||
["id"] = "2046552331";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
["name"] = "device";
|
||||
["attr"] = {
|
||||
["id"] = "1967738173";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
["name"] = "device";
|
||||
["attr"] = {
|
||||
["id"] = "719589985";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
["name"] = "device";
|
||||
["attr"] = {
|
||||
["id"] = "964622225";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["key"] = "current";
|
||||
["attr"] = {
|
||||
["stamp_legacy"] = "20260223T04:06:09";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["stamp"] = "2026-02-23T04:06:09Z";
|
||||
};
|
||||
["name"] = "list";
|
||||
["when"] = 1771819569;
|
||||
});
|
||||
@@ -15,7 +15,7 @@ services:
|
||||
- /mnt/user/appdata/vaultwarden:/data
|
||||
|
||||
memos:
|
||||
image: neosmemo/memos:stable
|
||||
image: neosmemo/memos:0.26.1
|
||||
container_name: memos
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
@@ -35,7 +35,7 @@ services:
|
||||
retries: 3
|
||||
|
||||
mortis:
|
||||
image: ghcr.io/mudkipme/mortis:0.25.2
|
||||
image: ghcr.io/mudkipme/mortis:0.26.1
|
||||
container_name: mortis
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
@@ -74,6 +74,23 @@ services:
|
||||
depends_on:
|
||||
- linkwarden-db
|
||||
|
||||
prosody:
|
||||
image: prosodyim/prosody:13.0
|
||||
container_name: prosody
|
||||
entrypoint: /prosody-init.sh
|
||||
ports:
|
||||
- "5222:5222"
|
||||
- "5269:5269"
|
||||
- "5280:5280"
|
||||
- "5281:5281"
|
||||
volumes:
|
||||
- /mnt/user/flook-stacks/stacks/productivity/prosody-init.sh:/prosody-init.sh
|
||||
- /mnt/user/flook-stacks/stacks/productivity/config/prosody.cfg.lua:/etc/prosody/prosody.cfg.lua
|
||||
- /mnt/user/flook-stacks/stacks/productivity/config/rishighan.cfg.lua:/etc/prosody/conf.d/rishighan.cfg.lua
|
||||
- /mnt/user/flook-stacks/stacks/productivity/data:/var/lib/prosody
|
||||
- /mnt/user/flook-stacks/stacks/productivity/certs:/etc/prosody/certs:ro
|
||||
restart: unless-stopped
|
||||
|
||||
linkwarden-db:
|
||||
image: postgres:16-alpine
|
||||
container_name: linkwarden-db
|
||||
|
||||
14
stacks/productivity/prosody-init.sh
Executable file
14
stacks/productivity/prosody-init.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
BASE="https://raw.githubusercontent.com/bjc/prosody-modules/master"
|
||||
mkdir -p /usr/lib/prosody/modules/mod_smacks
|
||||
mkdir -p /usr/lib/prosody/modules/mod_push
|
||||
mkdir -p /usr/lib/prosody/modules/mod_cloud_notify
|
||||
|
||||
curl -sL "https://raw.githubusercontent.com/legastero/mod_smacks/master/mod_smacks.lua" \
|
||||
-o /usr/lib/prosody/modules/mod_smacks.lua
|
||||
curl -sL "https://raw.githubusercontent.com/bjc/prosody-modules/master/mod_push/mod_push.lua" \
|
||||
-o /usr/lib/prosody/modules/mod_push.lua
|
||||
curl -sL "https://raw.githubusercontent.com/bjc/prosody-modules/master/mod_cloud_notify/mod_cloud_notify.lua" \
|
||||
-o /usr/lib/prosody/modules/mod_cloud_notify.lua
|
||||
|
||||
exec /entrypoint.sh prosody
|
||||
Reference in New Issue
Block a user