Added push, image support to prosody
This commit is contained in:
@@ -1,128 +1,30 @@
|
||||
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" }
|
||||
daemonize = false
|
||||
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
|
||||
"roster";
|
||||
"saslauth";
|
||||
"tls";
|
||||
"dialback";
|
||||
"disco";
|
||||
"carbons";
|
||||
"pep";
|
||||
"private";
|
||||
"blocklist";
|
||||
"vcard4";
|
||||
"vcard_legacy";
|
||||
"limits";
|
||||
"version";
|
||||
"uptime";
|
||||
"time";
|
||||
"ping";
|
||||
"register";
|
||||
"admin_adhoc";
|
||||
}
|
||||
|
||||
-- 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
|
||||
modules_disabled = { }
|
||||
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";
|
||||
@@ -131,87 +33,14 @@ limits = {
|
||||
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
|
||||
archive_expires_after = "1w"
|
||||
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.
|
||||
|
||||
http_external_url = "https://xmpp.rishighan.com/"
|
||||
http_interfaces = { "*" }
|
||||
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"
|
||||
|
||||
@@ -20,19 +20,22 @@ modules_enabled = {
|
||||
"csi_simple";
|
||||
"smacks";
|
||||
"cloud_notify";
|
||||
"http_file_share";
|
||||
}
|
||||
|
||||
allow_registration = false
|
||||
|
||||
-- MAM settings
|
||||
archive_expires_after = "4w"
|
||||
default_archive_policy = true
|
||||
|
||||
-- Push
|
||||
push_notification_with_body = false
|
||||
push_notification_with_sender = false
|
||||
|
||||
http_file_share_size_limit = 524288000
|
||||
http_file_share_expire_after = 60 * 60 * 24 * 30
|
||||
|
||||
VirtualHost "rishighan.com"
|
||||
http_host = "xmpp.rishighan.com"
|
||||
ssl = {
|
||||
key = "/etc/prosody/certs/privkey.pem",
|
||||
certificate = "/etc/prosody/certs/fullchain.pem",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
return {
|
||||
["tokenauth/clear_expired_grants"] = 1771832870;
|
||||
["http_file_share/remove_expired_files"] = 1771869925;
|
||||
["mam/remove_expired_messages"] = 1771832870;
|
||||
["tokenauth/clear_expired_grants"] = 1771832870;
|
||||
["user_account_management/remove_deleted_accounts"] = 1771832870;
|
||||
["http_file_share/calculate_total_storage_usage"] = 1771869925;
|
||||
};
|
||||
|
||||
3
stacks/productivity/data/localhost/upload_stats.dat
Normal file
3
stacks/productivity/data/localhost/upload_stats.dat
Normal file
@@ -0,0 +1,3 @@
|
||||
return {
|
||||
["total"] = 0;
|
||||
};
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,52 +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"] = {
|
||||
["node"] = "f4035549d95ab7d94a93346ec2c1a332016870b9eedeb78eb4e6e400c9e7d032";
|
||||
["jid"] = "eu.prod.push.monal-im.org";
|
||||
["language"] = "en";
|
||||
["timestamp"] = 1771855260;
|
||||
["resource"] = "Monal-iOS.2d6cfefc";
|
||||
["options"] = {
|
||||
{
|
||||
{
|
||||
"http://jabber.org/protocol/pubsub#publish-options";
|
||||
["name"] = "value";
|
||||
["attr"] = {
|
||||
["xmlns"] = "jabber:x:data";
|
||||
};
|
||||
["name"] = "value";
|
||||
};
|
||||
["attr"] = {
|
||||
["var"] = "FORM_TYPE";
|
||||
["xmlns"] = "jabber:x:data";
|
||||
["type"] = "hidden";
|
||||
};
|
||||
["name"] = "field";
|
||||
["attr"] = {
|
||||
["type"] = "hidden";
|
||||
["xmlns"] = "jabber:x:data";
|
||||
["var"] = "FORM_TYPE";
|
||||
};
|
||||
};
|
||||
{
|
||||
{
|
||||
"monalProdiOS";
|
||||
["name"] = "value";
|
||||
["attr"] = {
|
||||
["xmlns"] = "jabber:x:data";
|
||||
};
|
||||
["name"] = "value";
|
||||
};
|
||||
["attr"] = {
|
||||
["var"] = "pushModule";
|
||||
["xmlns"] = "jabber:x:data";
|
||||
};
|
||||
["name"] = "field";
|
||||
["attr"] = {
|
||||
["xmlns"] = "jabber:x:data";
|
||||
["var"] = "pushModule";
|
||||
};
|
||||
};
|
||||
["name"] = "x";
|
||||
["attr"] = {
|
||||
["type"] = "submit";
|
||||
["xmlns"] = "jabber:x:data";
|
||||
};
|
||||
["name"] = "x";
|
||||
};
|
||||
["jid"] = "eu.prod.push.monal-im.org";
|
||||
};
|
||||
["push.tigase.im<01#64D4817BB5106635AAC74FD81674EBC3863DC2DB3368551B6D84C94B3E4E0A06"] = {
|
||||
["node"] = "01#64D4817BB5106635AAC74FD81674EBC3863DC2DB3368551B6D84C94B3E4E0A06";
|
||||
["jid"] = "push.tigase.im";
|
||||
["language"] = "en";
|
||||
["node"] = "f4035549d95ab7d94a93346ec2c1a332016870b9eedeb78eb4e6e400c9e7d032";
|
||||
["resource"] = "Monal-iOS.2d6cfefc";
|
||||
["timestamp"] = 1771833607;
|
||||
["resource"] = "iPhone";
|
||||
["timestamp"] = 1771875071;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
return {
|
||||
["tokenauth/clear_expired_grants"] = 1771832870;
|
||||
["http_file_share/remove_expired_files"] = 1771869925;
|
||||
["mam/remove_expired_messages"] = 1771832870;
|
||||
["tokenauth/clear_expired_grants"] = 1771832870;
|
||||
["user_account_management/remove_deleted_accounts"] = 1771832870;
|
||||
["http_file_share/calculate_total_storage_usage"] = 1771869925;
|
||||
};
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.5 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.1 MiB |
@@ -1,59 +1,86 @@
|
||||
return {
|
||||
["eu.siacs.conversations.axolotl.bundles:719589985"] = {
|
||||
["eu.siacs.conversations.axolotl.bundles:452215848"] = {
|
||||
["config"] = {
|
||||
["persist_items"] = true;
|
||||
["access_model"] = "open";
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.bundles:452215848";
|
||||
["affiliations"] = {};
|
||||
["subscribers"] = {};
|
||||
};
|
||||
["eu.siacs.conversations.axolotl.bundles:1967738173"] = {
|
||||
["config"] = {
|
||||
["notify_retract"] = true;
|
||||
["notify_delete"] = true;
|
||||
["access_model"] = "open";
|
||||
["persist_items"] = true;
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.bundles:1967738173";
|
||||
["affiliations"] = {};
|
||||
["subscribers"] = {};
|
||||
};
|
||||
["eu.siacs.conversations.axolotl.devicelist"] = {
|
||||
["config"] = {
|
||||
["notify_delete"] = true;
|
||||
["include_payload"] = true;
|
||||
["access_model"] = "open";
|
||||
["notify_items"] = true;
|
||||
["persist_items"] = true;
|
||||
["max_items"] = 1;
|
||||
["notification_type"] = "headline";
|
||||
["notify_retract"] = true;
|
||||
["publish_model"] = "publishers";
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.devicelist";
|
||||
["affiliations"] = {};
|
||||
["subscribers"] = {};
|
||||
};
|
||||
["eu.siacs.conversations.axolotl.bundles:2046552331"] = {
|
||||
["config"] = {
|
||||
["notify_delete"] = true;
|
||||
["include_payload"] = true;
|
||||
["access_model"] = "open";
|
||||
["notify_items"] = true;
|
||||
["persist_items"] = true;
|
||||
["max_items"] = 1;
|
||||
["notification_type"] = "headline";
|
||||
["notify_retract"] = true;
|
||||
["publish_model"] = "publishers";
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.bundles:2046552331";
|
||||
["affiliations"] = {};
|
||||
["subscribers"] = {};
|
||||
};
|
||||
["eu.siacs.conversations.axolotl.bundles:440974939"] = {
|
||||
["config"] = {
|
||||
["notify_delete"] = true;
|
||||
["include_payload"] = true;
|
||||
["itemreply"] = "none";
|
||||
["access_model"] = "open";
|
||||
["send_last_published_item"] = "on_sub_and_presence";
|
||||
["persist_items"] = true;
|
||||
["max_items"] = 1;
|
||||
["notification_type"] = "headline";
|
||||
["notify_retract"] = true;
|
||||
["publish_model"] = "publishers";
|
||||
["notify_items"] = true;
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.bundles:440974939";
|
||||
["affiliations"] = {};
|
||||
["subscribers"] = {};
|
||||
};
|
||||
["eu.siacs.conversations.axolotl.bundles:719589985"] = {
|
||||
["config"] = {
|
||||
["access_model"] = "open";
|
||||
};
|
||||
["name"] = "eu.siacs.conversations.axolotl.bundles:719589985";
|
||||
["affiliations"] = {};
|
||||
["subscribers"] = {};
|
||||
};
|
||||
["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"] = {};
|
||||
};
|
||||
};
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,838 @@
|
||||
item({
|
||||
{
|
||||
"Bd/1/E54kCARCA8zyUBJ2DL3I3C69aDI5bZBie5A5S8V";
|
||||
["name"] = "signedPreKeyPublic";
|
||||
["attr"] = {
|
||||
["signedPreKeyId"] = "18162581";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"foPCUBBPPXJhJnF1OjS191F7y2CnIYJHNDH9IVCRXoh6Uopc/MoakdCMrM6tkOUqQ0sTprUcTC5XnJ058ciICQ==";
|
||||
["name"] = "signedPreKeySignature";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZIpL/6kCXvGGm7JyGzL5E7Jo0R2rnptwlDTYqH9xOBh";
|
||||
["name"] = "identityKey";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
{
|
||||
"BQxQO6kpFxT4klL0nhglNmp647FRbe40P05DklSFmIYs";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139319";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcF1u+v77D7+auszYST0fZl5qZ2gu97i/s3gJtf7ilIF";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139366";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXXgkgNh6tXmeFkwN/gWkpbwFrm9mPt/OQ9ekhW78Fpa";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139301";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZ7Na5Pk5Aqk5OUP4T4n6O5X1sQ0PODNwVh+/QH3wy9Y";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139349";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXOqVYk5YzegCiYzCntBMj7RnfspXU2wzQPxrcUdTwdu";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139387";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVreQvnrX6wGGIFQPuofhlWKDignzh0t/egKg/K+Ni5J";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139351";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BW7rSWlpTR8ckAH+Mib6TSmWCGnofX9VAEQ8nCjGT0Mi";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139391";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTW7teXsauHvgY89+T5pvWT9yyyNKv8ImdiN7UKWR5Id";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139364";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Beke1oMkvuFHik7LDvOAu5CGEBtYNPj4IKmun049rDJ+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139311";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BV33QJpHWfyXJzFYZUvvIeSkx09qBcrSYOb0YpsjwKRy";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139358";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXRApooWka7NoSWF6sG1JfmwBTva2sbBIXbD4ZMTSOMW";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139377";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfNFNNCmGp5+Q10eFqaFKe3u7gQ+MltIpPd+FK4oMiUE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139335";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Be/U9NH30gIIxC4dJvxzM+JtJxuCizNtlK22Q8UX+z4N";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139386";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSHWuvqSRNOBWA/dWKsy4uTV7ve4uJ/Y2nIXX5zEaz89";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139392";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVpdAeK/mlZ64eZyIFYkfmTNQCoODE1H8blPnCDp+JFq";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139345";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeIWA/nUaPJryiTTaFUkg7PA6Yyn5lkxSoB2A6Wh6J1E";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139307";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZgShc4Z76yOueQcVtTa6uKn+BecaV9fkOBKCnCU7xYr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139317";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcKVtw/fbNTdXArTpG9X1+hGaiLLmFGMwpmLGGjTIedq";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139332";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZGc4KELSZwVoWFnloYTY9c2aNbhTIF5sB7GxD5n8ONt";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139339";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BU3231PLnicMucvbiibJGcFjP7kVGmfKNsDtGkbZ6Khz";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139328";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Be/s4T6xZA0By1k/0jOArWOYDA01DPWg3vZCQYQyi3F+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139331";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfBu7arElKr2zXspfI5tTAI5i+u1V6/WMc2OxYBuoKcs";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139338";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bdj9TZ7ScgM0zgS9lcgEqVmgc4qHy01UKBBZVTIK+rUc";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139340";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZ4dU2NR4lLk1Fs+nawUbeSvlIxuJQaRz6t97tAoOCE/";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139348";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba42QHOkeDtP1nGDHcbtkOlQlKS6z2IUXwO5P81PAqEt";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139390";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeluUsi1HfRr/bD1sY6JfYXvG0ltHBZs+a/SMTjxmu16";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139305";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZMLMi0Btw+TDMPaWVEn8w23hiWYakzporLLzNYvzZVQ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139314";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQodZ61rNquLIwHCTAbnD12+IlG1RrSxE2EHmt8Vxz5p";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139329";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdGK7jf/85YYSF+gm6a+879uYzMIXcLbrM5jHHwFUZEg";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139300";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bd3yZ0agtF+kyBk1pEO3/CayhBchEVvbQ72nEvm7Z2sn";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139341";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZw/+o62Q1eP0RPPMEThO+zp11LARuoqP4z6BmvPRkcr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139299";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYnRCTOPE+dkTdvJ8T+TABzrgicB8ecj+iOqdsemz+0T";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139389";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BScYIFIsRD0fOuJUZcl7LU9j303QjESE1dqJobC9y5wa";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139302";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bes1wwL8wElqKbxezKjPIiR625nCxJgnwkcyVkCZYfEu";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139309";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZ/VLstBBwSlWk3bVQEGM1PpwbOxghllGhvtZRsO2h9n";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139395";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYe1RcOqLyJPk5oqJtL555krAJZXI9tff2apMVdI5Oxp";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139318";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSr5VoRx544J6nBREFyCbTzngJ/IoBHL8/cpc189t5ZE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139397";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bcd2HeaTAIAg0AKbmOh5OvxxD86re/nrmatsUFoZ1qUx";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139369";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYXROPlNpk9NM1pCGMM5ZM5KVb+tEMfuRlyUfYAcG9ZH";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139310";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWxJjM18JqHgwnRSwyGnhE+LlsiveTJC4mwWCIqlkCkj";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139326";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaibuQ/fxNOkSdBOmIklzAxcFdJlTbDpcgl9QzlG4CUn";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "753959198";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BV7ey2A9oYsgiAqp1EVVS+oNy5brZz1v4bjpPlT2gTot";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139376";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbTCwW6fy3MFJ5cxpWgF4XVbCD/+/mlPS2e5CHPsB1FA";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139344";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTGtp7uO/uF28M/dlUrJdqDJ5q/t3Wo+nNgagbaDWh1a";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139372";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWT5OWWa42k5BRApX6knAZ9P1szuYw7W/qIhA3t9Su9y";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139380";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bbe0P3FILu4DfWMj5iUh2g4wa0lrNguPtbONmel0kjsg";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139356";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTrn/exgd8NTR991TPGKaiPzkaenrLiU2CHvp/BMQaof";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139362";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYueZ1XxOorV8VAVyNVkEF6Wk+cpdGnBPDSx/n1clDQ2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139363";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZL1pdKfDYraAcg3sHbqKlZiB4X7xyLIyTWC5wmlYzlB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139306";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaK9lHtA3STEQEHfZqm+5LAJkvkbVti8jdIvaDGe1+ET";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139353";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bd+yk+yXdH5UHgRyHAXLQ0P0a2euigRecwFwTsQdWKMS";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139320";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bbg/QeIYiSfIPhVUs11NbMVRPt/L/vg3rnWjvfgoKPZA";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139354";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba89yiGUHLjb2jOjDhUbal1hWxmIrAj3t/JMo4z9iXFf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139398";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeIGx7aq8oGSHCN//868idWNmN/kSZ+LYhpEcxrtH64k";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139342";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BamUzsHj4X3MBW9zrvcLzjCrYrlVunYIVdBb6W+lawdk";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139304";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZPP9CZZsOEDObuUh7N1UX1LWuMlCXaFcUQwK94fwlxO";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139346";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfRxjK1Or371TYVatEWbXzfZ2+OrdNzC49rSAWfQ1/Mt";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139357";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZ7TLY8PCXU9weOU3CKw2x+rrTeI4rt0KpK8qEMSGTAT";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139321";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeCUSt4nXM0tdZg8YJrZiYUINI9mvCBsJkk8GgW7S8de";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139365";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZuCA42XnUOVQxXyp7onfuP1Po51JYho3l5q1tG+FogV";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139382";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRDxe6vaL5HoB2R3rs9QJwAregEUFPttr9tABlWnBWsa";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139313";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXtR+xE+/HwPmD9R1wRKUh74shSk9wq3/vVrhfZXN+w3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139388";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaJqYCREiTz3vLhgkvgyjpt+FQjB54SmUhaR2kGnj6B/";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139359";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQfe7E+bheIJ9Iqgr4+bsRkzfP1nfNP53IvOaWhfYTZK";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139360";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSVCzO9Tvt79QZlOcb+qxcwiRZSnjuxomGBCutnNBYdW";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139324";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQt1c+bnGGnJBT3JNTEjeqB9YLqBZW5jj+wrXNvcd9lw";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139371";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUv5BB0dIT4W94ryiK99jGEpAtkeggQEwspbwTHiwxIB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139347";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbMRq5ODv9DGu+HINS14Jwp+yVaRAvbYxa8Ce4p0Hawl";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139378";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSsd/T5fx1Hv9/iGZbjWPZkpNd7MEdojKLI2DZYZ2gda";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139350";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYMKexSL2ulRyb3XcJAbryCuR8loa4PkMIGxi+pXGXRV";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139330";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeWrVSqBeOYJIwtI4PvUkzs4lAPp/nPIGHAej2k3BtVx";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139379";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTnNG6rdeyT9klotNtke2NfYRWj50C+X7TB5ePC1nY5O";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139337";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYrvocIECxB/eOnxVRdtoNiV/BcW54xzEDb9LWv1+jwT";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139315";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bcw7456oDWaXOxfVomMw0sgZLvBcgvLKptysd2MTfBlW";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139352";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRBPIhEY8htyAcLNSnbFyCCG5ZbWf6D2ARkqOz4csFIQ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139370";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYrL4fTDjPKYPcBqaqVRzgabfn2EE5AcmoSO41T9W5Yj";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139374";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVJBoQOU2tG61gA0yhEXHg65smZ7ahJiPvZbul/FZJQ5";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139323";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUY8nXV1nRTZib4Ih+ABTi52uUwKrm6kVEBdTEkDJnk2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139367";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYL8E6Z2blIH1MId0mywBidfxJ0i8jX3abEp6oo3INFu";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139383";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYovN35HJMEI1EYLd9TaRGq/O1RpS7EudIpJgzNf+WlX";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139385";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZtTMa08NdxNOR7eqvuLj5WQfHZWDYb6O4NjPXlunHsE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139312";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRkfxbVSLcMUc1/d5CvTsKFfzCNEJj46hGQtMois39hB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139303";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bds+x9RR98rsMmq74gK4bYQvPyJ1Ji4XXtS8QVhFDj46";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139396";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcuBd+2ZYOsUPlIONzhWKjVyOq0VIiHRWPfDTf46rrho";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139343";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVtniQTVMaT6aGAGPF4vSTmv9UwOmepjxGUvX69RnwMm";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139381";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXRCB9Q/8RoAmGmdOhr78UnVreiKZEcwR0thB/zNbcxh";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139336";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdxME2/mwiL6WxL4+OZrkBk21Uw3HPQlQtMAqZLczj4z";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "355992704";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTdl2vdlWCRvQh92XG/szLQQYpqxtRaURdt3FxIONxl6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139355";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bfl0gyKtM7QIjIe13PvI4dsfmElQ1wDtlNgwiNK12qgB";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139322";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT1sY9XoGX8kTLtJW5dPno0NEMVoyGqo8PsnyxOtATQF";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139394";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaFzZC5suPBAI4KJOfu9gTmSre6ZJdR5cE0IA2jPYU4v";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139373";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcOqQI+kdVSZenzoJSL17LUeZKkO5PCKMaG33Af9rFQj";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139316";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRihUCQYugUSDANItxfl8h9uuCJiptVJKBJAnsuz4PIv";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139368";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba6mFrotWd+/UKJvL2b3FTGbSNWRsWRzrEpaR50xg9hF";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139333";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSV/REHH/fGLtUYX3BddEwbMwtWiqTPoUkxox/UClphZ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139384";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc3gUYAa5Yvf+K8uNG+OQaWS5ta8iG8YcoFnqlhO/ZkL";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139327";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVL9fGr8UtnQZCQHF0Cg8OU9IfblH69FlBQmiFQp8qR5";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139375";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BecDr+2DDj5J3n3Y+rH7xwTnJyN7gu9zTt0o7ZKtv+tb";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139334";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc61BP9bd5gh7iIchRXA8KRrSq7TZOlUY9jGxbbAUTQX";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139308";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZR1BWIaEbv/aHTAw6ZHmaZEMBU4vtmdaH9j4RL04Qxu";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["preKeyId"] = "2007139325";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["name"] = "prekeys";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["when"] = 1771871438;
|
||||
["name"] = "bundle";
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["key"] = "1";
|
||||
["attr"] = {
|
||||
["stamp"] = "2026-02-23T18:30:38Z";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,838 @@
|
||||
item({
|
||||
{
|
||||
"BbFrg28XVbFnv6yZZdJpxBusJn5vFBcJTkkTuVzze5Bc";
|
||||
["name"] = "signedPreKeyPublic";
|
||||
["attr"] = {
|
||||
["signedPreKeyId"] = "1669657017";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"o9Gx+jOUeYlln7ZDaL7cjNxf6BLAOWo3Tt1tNQNpZmyPliENgDNTZCGTRKKqlYVyDx+Q4BvmtaLaJdiuE64LBw==";
|
||||
["name"] = "signedPreKeySignature";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXjBcOX9ve+DZwAL5IorCJosga0lvNj99glXEHTEZMED";
|
||||
["name"] = "identityKey";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
{
|
||||
{
|
||||
"BZbSk1K366sIM0AzueSDE1nBekOruRPJWeyp7rMCc0NS";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "1";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVAIUg/Yz24WaMaM8MbV5avvtYEJdacCFMbVTxNnNmlk";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "2";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbFtNZN727+GR73i3UQZpafLUbiaraz2dKnElZqtlhpd";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "3";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRGf4SSOmzm9Xpum/NDIxXIq9taxduC4S0TBnyuT0s5z";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "4";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bf8PNPRBPe9Nvi0tVQSQPOvn0QgT2mrU/8M1i+08mTYv";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "5";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXvbz9NJEgZiRWXUvGkQZUL4SPyCfPp5GVUgH1bEIIVo";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "6";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bax+q4CFlNxwT/ojMSnmWF9QcL4FCutE6DPgP2T09b1N";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "7";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdTSlx8NJNImeQKoXrUwVRPxoMZDPQ3BFkViLcax15I5";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "8";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWUk6z/AOgiv4B6TSy89wPSwFTCshomWc3E5U4UXmoti";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "9";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdWff/4iTcwwz2hRMQLNMWeJibqxJSSOoYkyN6QSZG1F";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "10";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWnrRiTJooN5h/1Exuzr5pLxg1lUFJbE1iVJ00wSjpAh";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "11";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUgvYa+5Pn71Y2gSUe2SmjQRGS8NZTdqS6Mc7oFi92tw";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "12";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVJteTDBp5x70d4JnlqPiKranqgVMPNkf2/EYLO5Ox5i";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "13";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaLU75uuRUEdhg4R3M1x2b2I2QSXFI3vgEzuwSE1021u";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "14";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXUZfpKLvbnrSqjglUGso8GdoTJ/ldiSg2tFxWIvM2YF";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "15";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc0MssgMzk3whriBaFGJIW0BjFRPEVmWXcAuAZ/qIYI8";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "16";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQ5llSd6KJ6S4N8/LQpWAzck8jBJmyAcrZfOBVo0Sb0T";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "17";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfL7vLrCXnW4C/rkGe6gveIdCYGjQKNwsArcFwp4M3Ro";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "18";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRxkZZziFNGez+GwcYzb2unHZKvu6IvdlSh+DuLFr1Ah";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "19";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSIdaadt6oTY608A+VYiaCzSfaS74a6MHLbn4K2+QRRo";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "20";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVDJqBSSPBhOto21rjIhGdMp96poTWkGpipgf7Vmsagi";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "21";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSUN4pL7xeExngaXxicYaeN+to8gxfx/62JfHJ81t6xC";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "22";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BReUCP2HSapFGPVajMu453zrC24fXZpaDNRmkgRjoRsv";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "23";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTKTjg+whmV9lZYYeJBklRV+U9uchgiuj/z4YzHUg/YL";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "24";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcYTbRS3fcZ2mPongKUIvD/lK7BRRcqLAuxHvEBUgq5E";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "25";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BS+QPEAMbOE+arKw0MBLmAxPWtkIdyp10bu35QKbyYNa";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "26";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc3IDYTlxiiNqQKhoZS5eY93jQuuKQFI+Pa/aVhmrp00";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "27";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZZGW/XjvyIcOTRNuav2xa7eUoe6Yo+SxktbCBT85Aw3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "28";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT62uTWaF+31ef7u2qJZoaFui054iSn5YY23aRdprNQ2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "29";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVgUwfuf/cmMjXCJViXSVanD2k7mGlG6IbLawghQRTtk";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "30";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcTNo15IFZh30LwApcvFCd8gc55xotSn+s5FYXWrKJc3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "31";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc+sVSg7GDo+vzlm79pIKJz96esIoY1TurEBqdhZJ6FS";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "32";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BU2PtcHAz5RpN3IhJr0YyacyeAtz9XiSjvjjhh+cVvJd";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "33";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZXy0Vv+njZwD6gOd7uPg34S+JnsTFzcMiXzs/b0Ddln";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "34";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba3UB+SfP2iEX1ckOkMnKlbEK/8g6k/Puz9R/JEBdTtV";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "35";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaWCLW0mg4AQ56J+WansIxp54agW7XQWjxIU3Alv92hC";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "36";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bd/N4Oca0drbPzwM+hepg2UFlMPkWQFtBsyWFolVZiRd";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "37";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeEOpUVkFth2LfUfUBuUWP3iJ4R/Ygf2DU8JjNCh1qIO";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "38";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bf7lHykQQATtYMZcIv1bLGKd3Xn2hTUzT5lBCp0GgMsj";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "39";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYxEdzyZGIdYvcMLek/LlvJw6fd3dxCoVgUF5jE8fHVH";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "40";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaMuVASkPlGNIFvnKIAb6Ykws/FiBTk7BH//7FqkZb8+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "41";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BY8TItmBPjvdF6lPskJIzMnLSDFn4J8pFxKwKjFgV91c";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "42";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQXP52xx3/F4jDSGdruhY8cK7rPMYIrP87bO9foIiDlD";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "43";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZjvr1rlgKyU+uYrGB4JVlsHEFqFEa4O2fsV8RqhnTEO";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "44";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSPDpq/G68KDhCsYPxHWGKt4CcfyhxfalkfqHs2foi0l";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "45";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BW6Km4QbCT6rOJjLHC6HtPBgSnA/WA6ACxWgHMU/3ywl";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "46";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVyF1vhVR8DobO3NS11RlmL/94VIA1Ik1H7+OD7KxysE";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "47";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZASnPYIeU+vmo+1SI/IyfzakLDIieoA8FMIR6IIqRsf";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "48";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BfPTiFKrnQOlOxUcy9adwSF0ZZyv9sUTFM/WDsTtYPAM";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "49";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWZsuQ4LCyFG3vQmkkVuSE6WPZceWOEdA6tWTV0OWOJD";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "50";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXdCVdBaN7nr+ayqcwsdowFRssKjB7MTR5u8N+4ILrZo";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "51";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bd4oV63EhpF7gqdA0a+AGemOGmdFFj9glmBbClkIy/EY";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "52";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSVT6Vl9kpuYTPS2idhqhHxmAYsMkU9CUyR3DjQl5vEN";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "53";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Be7LovaLI1AWh0Ihi6ytgEDP+cF7+9IexHrI8fogfxwx";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "54";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BbRAtPe5CntPHI2yyX5W2W/76Po5hNnIFHxc4dmk6yRA";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "55";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSB0AakZ6X8o3koyXwz0CSWWuQGC0GHbMaGxD6fiss8g";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "56";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaVFLFsVv4fZ4jbKsb4avwnf/z5AnHYm+zoLw/ho60Eg";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "57";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BV2ahhhgf1Gg1BIYEjYBjouiRKJKC2/2DhA1e1FMHM1a";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "58";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSWSeBqt5Y620EdxYv2XECgL80XmDdK/h3WyuqSYbkgY";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "59";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc0nrbfgvdAhU1ugA4BCrZwKOfL8mAvC9zHBmQuW03wF";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "60";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Bc6H5knSfRobpkcFzSmFYbJf9/qTW4PJeqelyK326JF1";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "61";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXbFO4hfRpISvazknxPQG+5ufqsT1Bk1hNBj+N5g+BNQ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "62";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT1fzWH/oDO5ZY9Ahn/0sciW4yvOP1PzwFm1c2mKV1FP";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "63";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BULEuW1IOjccNg1P4fg5ZdlOjgP8kMnM4l+iwA7u3C4k";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "64";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRJ3SkZtob6R0YSPgCjGROeIC98rTQzmVM4CiRZhTS0K";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "65";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcV6ibBHBYYuyprC0bsC2ua0eG5D2uinX838OVEYqyh8";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "66";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BcCqOU6Dwwl8ntnOfRtF6OG5GwtvpM28mE0bucRm5BN0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "67";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTqjkDfp2mRkp9d0vFF1wpr/oQFPAk1e0viA8UbAcEYG";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "68";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BeQ7FQuEBeO+ouX7WMEBvlgZUOuUH5z/ChAGJ74mrJ1u";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "69";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BUqoKyekNJ0qR7VlXkzt3Od2j274Icd8I3Rdt9lSzph0";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "70";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BaSgfTiwRp6tSqDR5C666kvpRz784GNXzLRLNFql0Gh2";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "71";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdfMR9CG+Ge74pyGsuZMGja/aKzBX8VyLV5r83Jq0/wp";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "72";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXajao4wxlhlQR6tzy0xmGFV+ZOyWBJZ0jAlg8uxIy83";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "73";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSiTVfuEktcqKgjiKmRTSb3OUKvhxU04adht8FLM0NV9";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "74";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BWue/g/dwcLc1S1ClZ4as+npndD3g4CO0qPp9vyGy7dW";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "75";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZdwGbAc5HNqiSXqQ2DlylMGKKSfGVj0PS1mgeDS0EYP";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "76";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BffYcH7yBC7RIHGUe0tcU6N2uyCrQTfpgWeCLqqSFNoa";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "77";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Be9uT/YSfQ+tnqt2y4nClyuP2duZviHS4p8sJ/NnzG5s";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "78";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BT5tg9HM5bmSe3scwDc113p3NX+mzNA+4jPKmw2EC4JY";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "79";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BZmGtGTmzGcuKQkVSS/CIK6RVwCJBjnx9Bpfi3SJZXEJ";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "80";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVcZ3HFbgItObt7F93VKBC/D/JfCye2EqYxxu50Io4R8";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "81";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BRk0cs9xIryTlphidNfLTJWM3SACEjd70Rll/KD1vn5z";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "82";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQaNv+zesc0pTPZ6vFUVOzy5cWvOrWtdjXTD32V/qRtU";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "83";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BSu7aqDN51aPT29M6YkW7g41eGVp/jJmscBwhcpTrP8P";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "84";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BVN5cd2jUvHgVXQBSiqcW/fdfhbaLduEsK4gdFEr1m0t";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "85";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BU93y+SVWbH9vo6l5SxPf5wu+PrMa5ZlS5mhXqSOkqcH";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "86";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXcEB3XdtQhGmEklsxzOkkiJMIolvVgx44BtfdW91RZF";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "87";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BYB5cJSjxQ9mnZW73qh8HeHJM1VHpslKG8nBR3wGocgg";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "88";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BdoFZih9Dl7yPKIVlyrkoDMmFIfCqKnYgD/Y0EY/rGE+";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "89";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BX5acm16FM+cU2l2OUQvbgUUXWwNQ95Lu7I86jZOH7c6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "90";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTfLtGe8VvnG/0uy2Zvj43l/CGgQC9VPykBJVpacJt9S";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "91";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTArcS7WoMcPLeOMUmTL/JCtMaCXPudpCfZP3b+10DN9";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "92";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BXQOgDozlLneXaU+uuM9aeMWFSNFDPM+15A5ePYSKCY6";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "93";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQGBkEPh/0dQRk9X1rksTAnGnd5vJ0JwXcvBZ9XITO0J";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "94";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BTyOpDp4tQAJEVVAdZA1KwiUcWYGcDjA1tbkVrSaUthN";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "95";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQ2sxZZDJ7IiQCie0wCYOQOs2QJnbnok/3o9umiGk2xr";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "96";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba3Wobb3ez4qxi1kc79IqEYmiCezfu3L1LfFtnUUpKw3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "97";
|
||||
};
|
||||
};
|
||||
{
|
||||
"BQnK9GM3EvaBBjIRgI8MEZtHaKqly0zHXLYKe08a7fw3";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "98";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba95q0QXeJ3Bn3POSnPoARIhweRTp+iD8mZyxb6DKd9b";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "99";
|
||||
};
|
||||
};
|
||||
{
|
||||
"Ba8KXuWMR4313ULfDENQuA9xuxSkdfAIaSP/a4ImD+IA";
|
||||
["name"] = "preKeyPublic";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["preKeyId"] = "100";
|
||||
};
|
||||
};
|
||||
["name"] = "prekeys";
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
};
|
||||
["key"] = "current";
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["when"] = 1771875608;
|
||||
["attr"] = {
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["stamp"] = "2026-02-23T19:40:08Z";
|
||||
};
|
||||
["name"] = "bundle";
|
||||
});
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,38 +1,52 @@
|
||||
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"] = "452215848";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
["name"] = "device";
|
||||
};
|
||||
{
|
||||
["attr"] = {
|
||||
["id"] = "2046552331";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
["name"] = "device";
|
||||
};
|
||||
{
|
||||
["attr"] = {
|
||||
["id"] = "964622225";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
["name"] = "device";
|
||||
};
|
||||
["key"] = "current";
|
||||
{
|
||||
["attr"] = {
|
||||
["stamp_legacy"] = "20260223T04:06:09";
|
||||
["id"] = "440974939";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
["name"] = "device";
|
||||
};
|
||||
{
|
||||
["attr"] = {
|
||||
["id"] = "1967738173";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
};
|
||||
["name"] = "device";
|
||||
};
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["attr"] = {
|
||||
["stamp"] = "2026-02-23T18:14:32Z";
|
||||
["xmlns"] = "eu.siacs.conversations.axolotl";
|
||||
["stamp"] = "2026-02-23T04:06:09Z";
|
||||
};
|
||||
["name"] = "list";
|
||||
["when"] = 1771819569;
|
||||
["key"] = "current";
|
||||
["when"] = 1771870472;
|
||||
});
|
||||
|
||||
18
stacks/productivity/data/rishighan%2ecom/smacks_h/rishi.dat
Normal file
18
stacks/productivity/data/rishighan%2ecom/smacks_h/rishi.dat
Normal file
@@ -0,0 +1,18 @@
|
||||
return {
|
||||
["0cWucYOGhstU"] = {
|
||||
["h"] = 9;
|
||||
["t"] = 1771870042;
|
||||
};
|
||||
["MWGJoKJ8afbq"] = {
|
||||
["t"] = 1771870042;
|
||||
["h"] = 16;
|
||||
};
|
||||
["1GR5KtfI-9r2"] = {
|
||||
["t"] = 1771871728;
|
||||
["h"] = 17;
|
||||
};
|
||||
["eE7Vk5w6zfJk"] = {
|
||||
["t"] = 1771856814;
|
||||
["h"] = 52;
|
||||
};
|
||||
};
|
||||
@@ -0,0 +1,3 @@
|
||||
return {
|
||||
["total"] = 15175068;
|
||||
};
|
||||
BIN
stacks/productivity/data/rishighan%2ecom/uploads.lidx
Normal file
BIN
stacks/productivity/data/rishighan%2ecom/uploads.lidx
Normal file
Binary file not shown.
156
stacks/productivity/data/rishighan%2ecom/uploads.list
Normal file
156
stacks/productivity/data/rishighan%2ecom/uploads.list
Normal file
@@ -0,0 +1,156 @@
|
||||
item({
|
||||
["name"] = "request";
|
||||
["attr"] = {
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
["size"] = "117183";
|
||||
["filename"] = "Screenshot From 2025-12-15 20-53-34.png";
|
||||
["stamp"] = "2026-02-23T18:05:50Z";
|
||||
["content-type"] = "application/octet-stream";
|
||||
};
|
||||
["key"] = "019c8bad-d075-7ee0-bf84-dc400fdca993";
|
||||
["when"] = 1771869950;
|
||||
["with"] = "rishi@rishighan.com";
|
||||
});
|
||||
item({
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["attr"] = {
|
||||
["size"] = "136850";
|
||||
["stamp"] = "2026-02-23T18:11:04Z";
|
||||
["filename"] = "Screenshot From 2025-12-10 10-25-14.png";
|
||||
["content-type"] = "application/octet-stream";
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
};
|
||||
["name"] = "request";
|
||||
["key"] = "019c8bb2-9d45-78f6-99ec-3aefa6ae1b68";
|
||||
["when"] = 1771870264;
|
||||
});
|
||||
item({
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["attr"] = {
|
||||
["size"] = "235100";
|
||||
["stamp"] = "2026-02-23T18:11:40Z";
|
||||
["filename"] = "Screenshot From 2025-12-16 11-45-26.png";
|
||||
["content-type"] = "application/octet-stream";
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
};
|
||||
["name"] = "request";
|
||||
["key"] = "019c8bb3-2b07-75a8-b7bf-e61d024f0812";
|
||||
["when"] = 1771870300;
|
||||
});
|
||||
item({
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["attr"] = {
|
||||
["size"] = "287915";
|
||||
["stamp"] = "2026-02-23T18:14:46Z";
|
||||
["filename"] = "definite_screenshot.png";
|
||||
["content-type"] = "image/png";
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
};
|
||||
["name"] = "request";
|
||||
["key"] = "019c8bb5-ff0b-77c0-8f67-42246e0f76d1";
|
||||
["when"] = 1771870486;
|
||||
});
|
||||
item({
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["attr"] = {
|
||||
["size"] = "2243720";
|
||||
["stamp"] = "2026-02-23T18:19:23Z";
|
||||
["filename"] = "IMG_1902.jpg";
|
||||
["content-type"] = "image/jpeg";
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
};
|
||||
["name"] = "request";
|
||||
["key"] = "019c8bba-3a28-7e6f-9f6a-f898148fc132";
|
||||
["when"] = 1771870763;
|
||||
});
|
||||
item({
|
||||
["when"] = 1771871445;
|
||||
["name"] = "request";
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["key"] = "019c8bc4-a17d-7512-a82d-5df322dd4ca0";
|
||||
["attr"] = {
|
||||
["filename"] = "IMG_1902.jpg";
|
||||
["size"] = "2243720";
|
||||
["content-type"] = "image/jpeg";
|
||||
["stamp"] = "2026-02-23T18:30:45Z";
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
};
|
||||
});
|
||||
item({
|
||||
["name"] = "request";
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["key"] = "019c8bc9-d435-7216-a1fe-b6eb5669c8f0";
|
||||
["attr"] = {
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
["size"] = "2243720";
|
||||
["stamp"] = "2026-02-23T18:36:26Z";
|
||||
["content-type"] = "image/jpeg";
|
||||
["filename"] = "IMG_1902.jpg";
|
||||
};
|
||||
["when"] = 1771871786;
|
||||
});
|
||||
item({
|
||||
["name"] = "request";
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["key"] = "019c8be4-6247-7e2c-a91d-292b319f42be";
|
||||
["attr"] = {
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
["size"] = "1586912";
|
||||
["stamp"] = "2026-02-23T19:05:26Z";
|
||||
["content-type"] = "image/jpeg";
|
||||
["filename"] = "IMG_1901.jpg";
|
||||
};
|
||||
["when"] = 1771873526;
|
||||
});
|
||||
item({
|
||||
["name"] = "request";
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["key"] = "019c8bfb-cca4-73db-a38b-6c8350821c67";
|
||||
["attr"] = {
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
["size"] = "1586912";
|
||||
["stamp"] = "2026-02-23T19:31:00Z";
|
||||
["content-type"] = "image/jpeg";
|
||||
["filename"] = "IMG_1901.jpg";
|
||||
};
|
||||
["when"] = 1771875060;
|
||||
});
|
||||
item({
|
||||
["name"] = "request";
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["key"] = "019c8bfd-f3d6-709f-862f-67483e69d5c3";
|
||||
["attr"] = {
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
["size"] = "5596";
|
||||
["stamp"] = "2026-02-23T19:33:22Z";
|
||||
["content-type"] = "image/png";
|
||||
["filename"] = "definite.png";
|
||||
};
|
||||
["when"] = 1771875202;
|
||||
});
|
||||
item({
|
||||
["name"] = "request";
|
||||
["key"] = "019c8c01-3548-7cc9-ba20-2c481f9f0cd2";
|
||||
["attr"] = {
|
||||
["filename"] = "IMG_1902.jpg";
|
||||
["content-type"] = "image/jpeg";
|
||||
["size"] = "2243720";
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
["stamp"] = "2026-02-23T19:36:55Z";
|
||||
};
|
||||
["when"] = 1771875415;
|
||||
["with"] = "rishi@rishighan.com";
|
||||
});
|
||||
item({
|
||||
["key"] = "019c8c04-6935-78f9-b14b-adbf9a68d6f4";
|
||||
["with"] = "rishi@rishighan.com";
|
||||
["when"] = 1771875625;
|
||||
["attr"] = {
|
||||
["xmlns"] = "urn:xmpp:http:upload:0";
|
||||
["stamp"] = "2026-02-23T19:40:25Z";
|
||||
["size"] = "2243720";
|
||||
["filename"] = "IMG_1902.jpg";
|
||||
["content-type"] = "image/jpeg";
|
||||
};
|
||||
["name"] = "request";
|
||||
});
|
||||
Reference in New Issue
Block a user