From 3b88eed983023eef1f4708650a3a6da7ee70bac0 Mon Sep 17 00:00:00 2001 From: Greyko666 <132564791+Greyko666@users.noreply.github.com> Date: Thu, 4 May 2023 12:29:13 +0000 Subject: [PATCH] new file: build/lib/sticker/__init__.py new file: build/lib/sticker/get_version.py new file: build/lib/sticker/lib/__init__.py new file: build/lib/sticker/lib/matrix.py new file: build/lib/sticker/lib/util.py new file: build/lib/sticker/pack.py new file: build/lib/sticker/scalar_convert.py new file: build/lib/sticker/stickerimport.py new file: build/lib/sticker/version.py modified: sticker/version.py new file: web/packs/ChairmanMao.json new file: web/packs/Gensek.json new file: web/packs/Moedog.json new file: web/packs/Vlad_Len.json new file: web/packs/blinchik007.json new file: web/packs/index.json new file: web/packs/neko_neko_neko.json new file: web/packs/onekeymeow.json new file: web/packs/tieba_new.json --- build/lib/sticker/__init__.py | 2 + build/lib/sticker/get_version.py | 50 ++++++++ build/lib/sticker/lib/__init__.py | 0 build/lib/sticker/lib/matrix.py | 90 +++++++++++++++ build/lib/sticker/lib/util.py | 80 +++++++++++++ build/lib/sticker/pack.py | 145 ++++++++++++++++++++++++ build/lib/sticker/scalar_convert.py | 56 +++++++++ build/lib/sticker/stickerimport.py | 169 ++++++++++++++++++++++++++++ build/lib/sticker/version.py | 6 + sticker/version.py | 7 +- web/packs/ChairmanMao.json | 1 + web/packs/Gensek.json | 1 + web/packs/Moedog.json | 1 + web/packs/Vlad_Len.json | 1 + web/packs/blinchik007.json | 1 + web/packs/index.json | 13 +++ web/packs/neko_neko_neko.json | 1 + web/packs/onekeymeow.json | 1 + web/packs/tieba_new.json | 1 + 19 files changed, 625 insertions(+), 1 deletion(-) create mode 100644 build/lib/sticker/__init__.py create mode 100644 build/lib/sticker/get_version.py create mode 100644 build/lib/sticker/lib/__init__.py create mode 100644 build/lib/sticker/lib/matrix.py create mode 100644 build/lib/sticker/lib/util.py create mode 100644 build/lib/sticker/pack.py create mode 100644 build/lib/sticker/scalar_convert.py create mode 100644 build/lib/sticker/stickerimport.py create mode 100644 build/lib/sticker/version.py create mode 100644 web/packs/ChairmanMao.json create mode 100644 web/packs/Gensek.json create mode 100644 web/packs/Moedog.json create mode 100644 web/packs/Vlad_Len.json create mode 100644 web/packs/blinchik007.json create mode 100644 web/packs/index.json create mode 100644 web/packs/neko_neko_neko.json create mode 100644 web/packs/onekeymeow.json create mode 100644 web/packs/tieba_new.json diff --git a/build/lib/sticker/__init__.py b/build/lib/sticker/__init__.py new file mode 100644 index 0000000..86e4dc2 --- /dev/null +++ b/build/lib/sticker/__init__.py @@ -0,0 +1,2 @@ +__version__ = "0.1.0+dev" +__author__ = "Tulir Asokan " diff --git a/build/lib/sticker/get_version.py b/build/lib/sticker/get_version.py new file mode 100644 index 0000000..3149eb0 --- /dev/null +++ b/build/lib/sticker/get_version.py @@ -0,0 +1,50 @@ +import subprocess +import shutil +import os + +from . import __version__ + +cmd_env = { + "PATH": os.environ["PATH"], + "HOME": os.environ["HOME"], + "LANG": "C", + "LC_ALL": "C", +} + + +def run(cmd): + return subprocess.check_output(cmd, stderr=subprocess.DEVNULL, env=cmd_env) + + +if (os.path.exists("../.git") or os.path.exists(".git")) and shutil.which("git"): + try: + git_revision = run(["git", "rev-parse", "HEAD"]).strip().decode("ascii") + git_revision_url = f"https://github.com/maunium/stickerpicker/commit/{git_revision}" + git_revision = git_revision[:8] + except (subprocess.SubprocessError, OSError): + git_revision = "unknown" + git_revision_url = None + + try: + git_tag = run(["git", "describe", "--exact-match", "--tags"]).strip().decode("ascii") + except (subprocess.SubprocessError, OSError): + git_tag = None +else: + git_revision = "unknown" + git_revision_url = None + git_tag = None + +git_tag_url = (f"https://github.com/maunium/stickerpicker/releases/tag/{git_tag}" + if git_tag else None) + +if git_tag and __version__ == git_tag[1:].replace("-", ""): + version = __version__ + linkified_version = f"[{version}]({git_tag_url})" +else: + if not __version__.endswith("+dev"): + __version__ += "+dev" + version = f"{__version__}.{git_revision}" + if git_revision_url: + linkified_version = f"{__version__}.[{git_revision}]({git_revision_url})" + else: + linkified_version = version diff --git a/build/lib/sticker/lib/__init__.py b/build/lib/sticker/lib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/sticker/lib/matrix.py b/build/lib/sticker/lib/matrix.py new file mode 100644 index 0000000..e506e83 --- /dev/null +++ b/build/lib/sticker/lib/matrix.py @@ -0,0 +1,90 @@ +# maunium-stickerpicker - A fast and simple Matrix sticker picker widget. +# Copyright (C) 2020 Tulir Asokan +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +from typing import Optional, TYPE_CHECKING +import json + +from aiohttp import ClientSession +from yarl import URL + +access_token: Optional[str] = None +homeserver_url: Optional[str] = None + +upload_url: Optional[URL] = None + +if TYPE_CHECKING: + from typing import TypedDict + + + class MediaInfo(TypedDict): + w: int + h: int + size: int + mimetype: str + thumbnail_url: Optional[str] + thumbnail_info: Optional['MediaInfo'] + + + class StickerInfo(TypedDict, total=False): + body: str + url: str + info: MediaInfo + id: str + msgtype: str +else: + MediaInfo = None + StickerInfo = None + + +async def load_config(path: str) -> None: + global access_token, homeserver_url, upload_url + try: + with open(path) as config_file: + config = json.load(config_file) + homeserver_url = config["homeserver"] + access_token = config["access_token"] + except FileNotFoundError: + print("Matrix config file not found. Please enter your homeserver and access token.") + homeserver_url = input("Homeserver URL: ") + access_token = input("Access token: ") + whoami_url = URL(homeserver_url) / "_matrix" / "client" / "r0" / "account" / "whoami" + if whoami_url.scheme not in ("https", "http"): + whoami_url = whoami_url.with_scheme("https") + user_id = await whoami(whoami_url, access_token) + with open(path, "w") as config_file: + json.dump({ + "homeserver": homeserver_url, + "user_id": user_id, + "access_token": access_token + }, config_file) + print(f"Wrote config to {path}") + + upload_url = URL(homeserver_url) / "_matrix" / "media" / "r0" / "upload" + + +async def whoami(url: URL, access_token: str) -> str: + headers = {"Authorization": f"Bearer {access_token}"} + async with ClientSession() as sess, sess.get(url, headers=headers) as resp: + resp.raise_for_status() + user_id = (await resp.json())["user_id"] + print(f"Access token validated (user ID: {user_id})") + return user_id + + +async def upload(data: bytes, mimetype: str, filename: str) -> str: + url = upload_url.with_query({"filename": filename}) + headers = {"Content-Type": mimetype, "Authorization": f"Bearer {access_token}"} + async with ClientSession() as sess, sess.post(url, data=data, headers=headers) as resp: + return (await resp.json())["content_uri"] diff --git a/build/lib/sticker/lib/util.py b/build/lib/sticker/lib/util.py new file mode 100644 index 0000000..2b3fe2a --- /dev/null +++ b/build/lib/sticker/lib/util.py @@ -0,0 +1,80 @@ +# maunium-stickerpicker - A fast and simple Matrix sticker picker widget. +# Copyright (C) 2020 Tulir Asokan +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +from functools import partial +from io import BytesIO +import os.path +import json + +from PIL import Image + +from . import matrix + +open_utf8 = partial(open, encoding='UTF-8') + +def convert_image(data: bytes) -> (bytes, int, int): + image: Image.Image = Image.open(BytesIO(data)).convert("RGBA") + new_file = BytesIO() + image.save(new_file, "png") + w, h = image.size + if w > 256 or h > 256: + # Set the width and height to lower values so clients wouldn't show them as huge images + if w > h: + h = int(h / (w / 256)) + w = 256 + else: + w = int(w / (h / 256)) + h = 256 + return new_file.getvalue(), w, h + + +def add_to_index(name: str, output_dir: str) -> None: + index_path = os.path.join(output_dir, "index.json") + try: + with open_utf8(index_path) as index_file: + index_data = json.load(index_file) + except (FileNotFoundError, json.JSONDecodeError): + index_data = {"packs": []} + if "homeserver_url" not in index_data and matrix.homeserver_url: + index_data["homeserver_url"] = matrix.homeserver_url + if name not in index_data["packs"]: + index_data["packs"].append(name) + with open_utf8(index_path, "w") as index_file: + json.dump(index_data, index_file, indent=" ") + print(f"Added {name} to {index_path}") + + +def make_sticker(mxc: str, width: int, height: int, size: int, + body: str = "") -> matrix.StickerInfo: + return { + "body": body, + "url": mxc, + "info": { + "w": width, + "h": height, + "size": size, + "mimetype": "image/png", + + # Element iOS compatibility hack + "thumbnail_url": mxc, + "thumbnail_info": { + "w": width, + "h": height, + "size": size, + "mimetype": "image/png", + }, + }, + "msgtype": "m.sticker", + } diff --git a/build/lib/sticker/pack.py b/build/lib/sticker/pack.py new file mode 100644 index 0000000..f082370 --- /dev/null +++ b/build/lib/sticker/pack.py @@ -0,0 +1,145 @@ +# maunium-stickerpicker - A fast and simple Matrix sticker picker widget. +# Copyright (C) 2020 Tulir Asokan +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +from typing import Dict, Optional +from hashlib import sha256 +import mimetypes +import argparse +import os.path +import asyncio +import string +import json + +try: + import magic +except ImportError: + print("[Warning] Magic is not installed, using file extensions to guess mime types") + magic = None + +from .lib import matrix, util + + +def convert_name(name: str) -> str: + name_translate = { + ord(" "): ord("_"), + } + allowed_chars = string.ascii_letters + string.digits + "_-/.#" + return "".join(filter(lambda char: char in allowed_chars, name.translate(name_translate))) + + +async def upload_sticker(file: str, directory: str, old_stickers: Dict[str, matrix.StickerInfo] + ) -> Optional[matrix.StickerInfo]: + if file.startswith("."): + return None + path = os.path.join(directory, file) + if not os.path.isfile(path): + return None + + if magic: + mime = magic.from_file(path, mime=True) + else: + mime, _ = mimetypes.guess_type(file) + if not mime.startswith("image/"): + return None + + print(f"Processing {file}", end="", flush=True) + try: + with open(path, "rb") as image_file: + image_data = image_file.read() + except Exception as e: + print(f"... failed to read file: {e}") + return None + name = os.path.splitext(file)[0] + + # If the name starts with "number-", remove the prefix + name_split = name.split("-", 1) + if len(name_split) == 2 and name_split[0].isdecimal(): + name = name_split[1] + + sticker_id = f"sha256:{sha256(image_data).hexdigest()}" + print(".", end="", flush=True) + if sticker_id in old_stickers: + sticker = { + **old_stickers[sticker_id], + "body": name, + } + print(f".. using existing upload") + else: + image_data, width, height = util.convert_image(image_data) + print(".", end="", flush=True) + mxc = await matrix.upload(image_data, "image/png", file) + print(".", end="", flush=True) + sticker = util.make_sticker(mxc, width, height, len(image_data), name) + sticker["id"] = sticker_id + print(" uploaded", flush=True) + return sticker + + +async def main(args: argparse.Namespace) -> None: + await matrix.load_config(args.config) + + dirname = os.path.basename(os.path.abspath(args.path)) + meta_path = os.path.join(args.path, "pack.json") + try: + with util.open_utf8(meta_path) as pack_file: + pack = json.load(pack_file) + print(f"Loaded existing pack meta from {meta_path}") + except FileNotFoundError: + pack = { + "title": args.title or dirname, + "id": args.id or convert_name(dirname), + "stickers": [], + } + old_stickers = {} + else: + old_stickers = {sticker["id"]: sticker for sticker in pack["stickers"]} + pack["stickers"] = [] + + for file in sorted(os.listdir(args.path)): + sticker = await upload_sticker(file, args.path, old_stickers=old_stickers) + if sticker: + pack["stickers"].append(sticker) + + with util.open_utf8(meta_path, "w") as pack_file: + json.dump(pack, pack_file) + print(f"Wrote pack to {meta_path}") + + if args.add_to_index: + picker_file_name = f"{pack['id']}.json" + picker_pack_path = os.path.join(args.add_to_index, picker_file_name) + with util.open_utf8(picker_pack_path, "w") as pack_file: + json.dump(pack, pack_file) + print(f"Copied pack to {picker_pack_path}") + util.add_to_index(picker_file_name, args.add_to_index) + + +parser = argparse.ArgumentParser() +parser.add_argument("--config", + help="Path to JSON file with Matrix homeserver and access_token", + type=str, default="config.json", metavar="file") +parser.add_argument("--title", help="Override the sticker pack displayname", type=str, + metavar="title") +parser.add_argument("--id", help="Override the sticker pack ID", type=str, metavar="id") +parser.add_argument("--add-to-index", help="Sticker picker pack directory (usually 'web/packs/')", + type=str, metavar="path") +parser.add_argument("path", help="Path to the sticker pack directory", type=str) + + +def cmd(): + asyncio.get_event_loop().run_until_complete(main(parser.parse_args())) + + +if __name__ == "__main__": + cmd() diff --git a/build/lib/sticker/scalar_convert.py b/build/lib/sticker/scalar_convert.py new file mode 100644 index 0000000..76a0101 --- /dev/null +++ b/build/lib/sticker/scalar_convert.py @@ -0,0 +1,56 @@ +# maunium-stickerpicker - A fast and simple Matrix sticker picker widget. +# Copyright (C) 2020 Tulir Asokan +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +import sys +import json + +index_path = "../web/packs/index.json" + +try: + with util.open_utf8(index_path) as index_file: + index_data = json.load(index_file) +except (FileNotFoundError, json.JSONDecodeError): + index_data = {"packs": []} + +with util.open_utf8(sys.argv[-1]) as file: + data = json.load(file) + +for pack in data["assets"]: + title = pack["name"].title() + if "images" not in pack["data"]: + print(f"Skipping {title}") + continue + pack_id = f"scalar-{pack['asset_id']}" + stickers = [] + for sticker in pack["data"]["images"]: + sticker_data = sticker["content"] + sticker_data["id"] = sticker_data["url"].split("/")[-1] + stickers.append(sticker_data) + pack_data = { + "title": title, + "id": pack_id, + "stickers": stickers, + } + filename = f"scalar-{pack['name'].replace(' ', '_')}.json" + pack_path = f"web/packs/{filename}" + with util.open_utf8(pack_path, "w") as pack_file: + json.dump(pack_data, pack_file) + print(f"Wrote {title} to {pack_path}") + if filename not in index_data["packs"]: + index_data["packs"].append(filename) + +with util.open_utf8(index_path, "w") as index_file: + json.dump(index_data, index_file, indent=" ") +print(f"Updated {index_path}") diff --git a/build/lib/sticker/stickerimport.py b/build/lib/sticker/stickerimport.py new file mode 100644 index 0000000..db176e4 --- /dev/null +++ b/build/lib/sticker/stickerimport.py @@ -0,0 +1,169 @@ +# maunium-stickerpicker - A fast and simple Matrix sticker picker widget. +# Copyright (C) 2020 Tulir Asokan +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +from typing import Dict +import argparse +import asyncio +import os.path +import json +import re + +from telethon import TelegramClient +from telethon.tl.functions.messages import GetAllStickersRequest, GetStickerSetRequest +from telethon.tl.types.messages import AllStickers +from telethon.tl.types import InputStickerSetShortName, Document, DocumentAttributeSticker +from telethon.tl.types.messages import StickerSet as StickerSetFull + +from .lib import matrix, util + + +async def reupload_document(client: TelegramClient, document: Document) -> matrix.StickerInfo: + print(f"Reuploading {document.id}", end="", flush=True) + data = await client.download_media(document, file=bytes) + print(".", end="", flush=True) + data, width, height = util.convert_image(data) + print(".", end="", flush=True) + mxc = await matrix.upload(data, "image/png", f"{document.id}.png") + print(".", flush=True) + return util.make_sticker(mxc, width, height, len(data)) + + +def add_meta(document: Document, info: matrix.StickerInfo, pack: StickerSetFull) -> None: + for attr in document.attributes: + if isinstance(attr, DocumentAttributeSticker): + info["body"] = attr.alt + info["id"] = f"tg-{document.id}" + info["net.maunium.telegram.sticker"] = { + "pack": { + "id": str(pack.set.id), + "short_name": pack.set.short_name, + }, + "id": str(document.id), + "emoticons": [], + } + + +async def reupload_pack(client: TelegramClient, pack: StickerSetFull, output_dir: str) -> None: + if pack.set.animated: + print("Animated stickerpacks are currently not supported") + return + + pack_path = os.path.join(output_dir, f"{pack.set.short_name}.json") + try: + os.mkdir(os.path.dirname(pack_path)) + except FileExistsError: + pass + + print(f"Reuploading {pack.set.title} with {pack.set.count} stickers " + f"and writing output to {pack_path}") + + already_uploaded = {} + try: + with util.open_utf8(pack_path) as pack_file: + existing_pack = json.load(pack_file) + already_uploaded = {int(sticker["net.maunium.telegram.sticker"]["id"]): sticker + for sticker in existing_pack["stickers"]} + print(f"Found {len(already_uploaded)} already reuploaded stickers") + except FileNotFoundError: + pass + + reuploaded_documents: Dict[int, matrix.StickerInfo] = {} + for document in pack.documents: + try: + reuploaded_documents[document.id] = already_uploaded[document.id] + print(f"Skipped reuploading {document.id}") + except KeyError: + reuploaded_documents[document.id] = await reupload_document(client, document) + # Always ensure the body and telegram metadata is correct + add_meta(document, reuploaded_documents[document.id], pack) + + for sticker in pack.packs: + if not sticker.emoticon: + continue + for document_id in sticker.documents: + doc = reuploaded_documents[document_id] + # If there was no sticker metadata, use the first emoji we find + if doc["body"] == "": + doc["body"] = sticker.emoticon + doc["net.maunium.telegram.sticker"]["emoticons"].append(sticker.emoticon) + + with util.open_utf8(pack_path, "w") as pack_file: + json.dump({ + "title": pack.set.title, + "id": f"tg-{pack.set.id}", + "net.maunium.telegram.pack": { + "short_name": pack.set.short_name, + "hash": str(pack.set.hash), + }, + "stickers": list(reuploaded_documents.values()), + }, pack_file, ensure_ascii=False) + print(f"Saved {pack.set.title} as {pack.set.short_name}.json") + + util.add_to_index(os.path.basename(pack_path), output_dir) + + +pack_url_regex = re.compile(r"^(?:(?:https?://)?(?:t|telegram)\.(?:me|dog)/addstickers/)?" + r"([A-Za-z0-9-_]+)" + r"(?:\.json)?$") + +parser = argparse.ArgumentParser() + +parser.add_argument("--list", help="List your saved sticker packs", action="store_true") +parser.add_argument("--session", help="Telethon session file name", default="sticker-import") +parser.add_argument("--config", + help="Path to JSON file with Matrix homeserver and access_token", + type=str, default="config.json") +parser.add_argument("--output-dir", help="Directory to write packs to", default="web/packs/", + type=str) +parser.add_argument("pack", help="Sticker pack URLs to import", action="append", nargs="*") + + +async def main(args: argparse.Namespace) -> None: + await matrix.load_config(args.config) + client = TelegramClient(args.session, 298751, "cb676d6bae20553c9996996a8f52b4d7") + await client.start() + + if args.list: + stickers: AllStickers = await client(GetAllStickersRequest(hash=0)) + index = 1 + width = len(str(len(stickers.sets))) + print("Your saved sticker packs:") + for saved_pack in stickers.sets: + print(f"{index:>{width}}. {saved_pack.title} " + f"(t.me/addstickers/{saved_pack.short_name})") + index += 1 + elif args.pack[0]: + input_packs = [] + for pack_url in args.pack[0]: + match = pack_url_regex.match(pack_url) + if not match: + print(f"'{pack_url}' doesn't look like a sticker pack URL") + return + input_packs.append(InputStickerSetShortName(short_name=match.group(1))) + for input_pack in input_packs: + pack: StickerSetFull = await client(GetStickerSetRequest(input_pack, hash=0)) + await reupload_pack(client, pack, args.output_dir) + else: + parser.print_help() + + await client.disconnect() + + +def cmd() -> None: + asyncio.get_event_loop().run_until_complete(main(parser.parse_args())) + + +if __name__ == "__main__": + cmd() diff --git a/build/lib/sticker/version.py b/build/lib/sticker/version.py new file mode 100644 index 0000000..a6c0452 --- /dev/null +++ b/build/lib/sticker/version.py @@ -0,0 +1,6 @@ +# Generated in setup.py + +git_tag = None +git_revision = 'f59406a4' +version = '0.1.0+dev.f59406a4' +linkified_version = '0.1.0+dev.[f59406a4](https://github.com/maunium/stickerpicker/commit/f59406a47a6778cd402e656ffb64f667335f665a)' diff --git a/sticker/version.py b/sticker/version.py index 47f7fff..a6c0452 100644 --- a/sticker/version.py +++ b/sticker/version.py @@ -1 +1,6 @@ -from .get_version import git_tag, git_revision, version, linkified_version +# Generated in setup.py + +git_tag = None +git_revision = 'f59406a4' +version = '0.1.0+dev.f59406a4' +linkified_version = '0.1.0+dev.[f59406a4](https://github.com/maunium/stickerpicker/commit/f59406a47a6778cd402e656ffb64f667335f665a)' diff --git a/web/packs/ChairmanMao.json b/web/packs/ChairmanMao.json new file mode 100644 index 0000000..5a4db1c --- /dev/null +++ b/web/packs/ChairmanMao.json @@ -0,0 +1 @@ +{"title": "Long Live Chairman Mao", "id": "tg-696590012614967297", "net.maunium.telegram.pack": {"short_name": "ChairmanMao", "hash": "29452156"}, "stickers": [{"body": "๐Ÿ˜‚", "url": "mxc://redxafa.world/apZFoylMPLqCTjneiCSSxLEY", "info": {"w": 256, "h": 256, "size": 129313, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/apZFoylMPLqCTjneiCSSxLEY", "thumbnail_info": {"w": 256, "h": 256, "size": 129313, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967300", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967300", "emoticons": ["๐Ÿ˜‚"]}}, {"body": "๐Ÿ–", "url": "mxc://redxafa.world/eWsuTTzcxOnjjZDprVxXqYUG", "info": {"w": 256, "h": 256, "size": 140662, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/eWsuTTzcxOnjjZDprVxXqYUG", "thumbnail_info": {"w": 256, "h": 256, "size": 140662, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967301", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967301", "emoticons": ["๐Ÿ–"]}}, {"body": "๐Ÿ˜†", "url": "mxc://redxafa.world/MgNUrNDyecTxTVvaPoYsOcVB", "info": {"w": 256, "h": 256, "size": 213256, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/MgNUrNDyecTxTVvaPoYsOcVB", "thumbnail_info": {"w": 256, "h": 256, "size": 213256, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967302", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967302", "emoticons": ["๐Ÿ˜†"]}}, {"body": "๐Ÿ˜‘", "url": "mxc://redxafa.world/EWbwDHNvCORwSXxhsLdQREPr", "info": {"w": 256, "h": 256, "size": 291722, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/EWbwDHNvCORwSXxhsLdQREPr", "thumbnail_info": {"w": 256, "h": 256, "size": 291722, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967303", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967303", "emoticons": ["๐Ÿ˜‘"]}}, {"body": "๐Ÿ‘", "url": "mxc://redxafa.world/cXDoRdGTgSJCGZrxBZnSfyhl", "info": {"w": 256, "h": 256, "size": 140966, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/cXDoRdGTgSJCGZrxBZnSfyhl", "thumbnail_info": {"w": 256, "h": 256, "size": 140966, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967304", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967304", "emoticons": ["๐Ÿ‘"]}}, {"body": "๐Ÿ˜ก", "url": "mxc://redxafa.world/ssTmvVAbvEpUaGNJbEfvHCWk", "info": {"w": 256, "h": 256, "size": 163864, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ssTmvVAbvEpUaGNJbEfvHCWk", "thumbnail_info": {"w": 256, "h": 256, "size": 163864, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967305", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967305", "emoticons": ["๐Ÿ˜ก"]}}, {"body": "๐Ÿ‘", "url": "mxc://redxafa.world/BaVcXGTONtKPREsyRioDCnqJ", "info": {"w": 256, "h": 256, "size": 163081, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/BaVcXGTONtKPREsyRioDCnqJ", "thumbnail_info": {"w": 256, "h": 256, "size": 163081, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967306", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967306", "emoticons": ["๐Ÿ‘"]}}, {"body": "โค", "url": "mxc://redxafa.world/KkFJaMfOwgVAdERwWglhqORv", "info": {"w": 256, "h": 256, "size": 123249, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/KkFJaMfOwgVAdERwWglhqORv", "thumbnail_info": {"w": 256, "h": 256, "size": 123249, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967307", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967307", "emoticons": ["โค"]}}, {"body": "โค", "url": "mxc://redxafa.world/MKJMmPEItlfMzFodEsaijoPt", "info": {"w": 256, "h": 256, "size": 128297, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/MKJMmPEItlfMzFodEsaijoPt", "thumbnail_info": {"w": 256, "h": 256, "size": 128297, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967308", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967308", "emoticons": ["โค"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/LKGVWhTdooerFSZoRAqDsUBN", "info": {"w": 256, "h": 256, "size": 159164, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/LKGVWhTdooerFSZoRAqDsUBN", "thumbnail_info": {"w": 256, "h": 256, "size": 159164, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967315", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967315", "emoticons": ["๐Ÿ˜"]}}, {"body": "โ˜บ๏ธ", "url": "mxc://redxafa.world/iOnvCCAAkPiFjvggOGJJthiY", "info": {"w": 256, "h": 256, "size": 179063, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/iOnvCCAAkPiFjvggOGJJthiY", "thumbnail_info": {"w": 256, "h": 256, "size": 179063, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967309", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967309", "emoticons": ["โ˜บ"]}}, {"body": "๐Ÿ˜’", "url": "mxc://redxafa.world/vdcpCrgQAoWuJjFfMlHbzTgR", "info": {"w": 256, "h": 256, "size": 177454, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/vdcpCrgQAoWuJjFfMlHbzTgR", "thumbnail_info": {"w": 256, "h": 256, "size": 177454, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967310", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967310", "emoticons": ["๐Ÿ˜’"]}}, {"body": "๐Ÿ˜ก", "url": "mxc://redxafa.world/RbdnjDERtyWKewWvCsElBciw", "info": {"w": 256, "h": 256, "size": 174650, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/RbdnjDERtyWKewWvCsElBciw", "thumbnail_info": {"w": 256, "h": 256, "size": 174650, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967311", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967311", "emoticons": ["๐Ÿ˜ก"]}}, {"body": "๐Ÿ˜•", "url": "mxc://redxafa.world/qZmcaJkvpxvpWHeptvjLtLHY", "info": {"w": 256, "h": 256, "size": 168701, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/qZmcaJkvpxvpWHeptvjLtLHY", "thumbnail_info": {"w": 256, "h": 256, "size": 168701, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967313", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967313", "emoticons": ["๐Ÿ˜•"]}}, {"body": "๐Ÿ˜š", "url": "mxc://redxafa.world/CyFmfeOukJFxafrfNLxmbuDI", "info": {"w": 256, "h": 256, "size": 168579, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CyFmfeOukJFxafrfNLxmbuDI", "thumbnail_info": {"w": 256, "h": 256, "size": 168579, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967314", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967314", "emoticons": ["๐Ÿ˜š"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/yooTRFbWdQpcQGDXyLkxpWgg", "info": {"w": 256, "h": 256, "size": 171902, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/yooTRFbWdQpcQGDXyLkxpWgg", "thumbnail_info": {"w": 256, "h": 256, "size": 171902, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967316", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967316", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜‰", "url": "mxc://redxafa.world/VtpXGkDNiMCMgzkRroyPOOTQ", "info": {"w": 256, "h": 256, "size": 142921, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VtpXGkDNiMCMgzkRroyPOOTQ", "thumbnail_info": {"w": 256, "h": 256, "size": 142921, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967312", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967312", "emoticons": ["๐Ÿ˜‰"]}}, {"body": "๐Ÿ˜ข", "url": "mxc://redxafa.world/QXQBmbcnuOxxnqyXXeSGFJii", "info": {"w": 256, "h": 256, "size": 114439, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QXQBmbcnuOxxnqyXXeSGFJii", "thumbnail_info": {"w": 256, "h": 256, "size": 114439, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967317", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967317", "emoticons": ["๐Ÿ˜ข"]}}, {"body": "๐Ÿ˜Œ", "url": "mxc://redxafa.world/OAAMNRfpYZwKXAeTzbpdGcbt", "info": {"w": 256, "h": 256, "size": 175313, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/OAAMNRfpYZwKXAeTzbpdGcbt", "thumbnail_info": {"w": 256, "h": 256, "size": 175313, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967319", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967319", "emoticons": ["๐Ÿ˜Œ"]}}, {"body": "๐Ÿ™Š", "url": "mxc://redxafa.world/RrjyGMhiUMeDDagKzdrdQyiq", "info": {"w": 256, "h": 256, "size": 176068, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/RrjyGMhiUMeDDagKzdrdQyiq", "thumbnail_info": {"w": 256, "h": 256, "size": 176068, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967320", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967320", "emoticons": ["๐Ÿ™Š"]}}, {"body": "๐Ÿ˜•", "url": "mxc://redxafa.world/EvQfhfBiNNjTpADQbixDeKfq", "info": {"w": 256, "h": 256, "size": 182238, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/EvQfhfBiNNjTpADQbixDeKfq", "thumbnail_info": {"w": 256, "h": 256, "size": 182238, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967321", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967321", "emoticons": ["๐Ÿ˜•"]}}, {"body": "๐Ÿ˜ข", "url": "mxc://redxafa.world/gYIpcbigdRzduqhlATQSOFKR", "info": {"w": 256, "h": 256, "size": 189901, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/gYIpcbigdRzduqhlATQSOFKR", "thumbnail_info": {"w": 256, "h": 256, "size": 189901, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967322", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967322", "emoticons": ["๐Ÿ˜ข"]}}, {"body": "๐Ÿ˜•", "url": "mxc://redxafa.world/ukbdyGQfFGxXdhDipBBpGOWb", "info": {"w": 256, "h": 256, "size": 201188, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ukbdyGQfFGxXdhDipBBpGOWb", "thumbnail_info": {"w": 256, "h": 256, "size": 201188, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967327", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967327", "emoticons": ["๐Ÿ˜•"]}}, {"body": "๐Ÿ˜‹", "url": "mxc://redxafa.world/HypCcmGDXJraHGCLrFLyqebG", "info": {"w": 256, "h": 256, "size": 110901, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/HypCcmGDXJraHGCLrFLyqebG", "thumbnail_info": {"w": 256, "h": 256, "size": 110901, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967323", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967323", "emoticons": ["๐Ÿ˜‹"]}}, {"body": "๐Ÿ˜‹", "url": "mxc://redxafa.world/ElaaxUCjcedlFyTOcTvHPGbR", "info": {"w": 256, "h": 256, "size": 108999, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ElaaxUCjcedlFyTOcTvHPGbR", "thumbnail_info": {"w": 256, "h": 256, "size": 108999, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967324", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967324", "emoticons": ["๐Ÿ˜‹"]}}, {"body": "๐Ÿ’‹", "url": "mxc://redxafa.world/ntwLvFcSTISbFzhnQaprVTvE", "info": {"w": 256, "h": 256, "size": 541660, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ntwLvFcSTISbFzhnQaprVTvE", "thumbnail_info": {"w": 256, "h": 256, "size": 541660, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967329", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967329", "emoticons": ["๐Ÿ’‹"]}}, {"body": "๐Ÿ‘", "url": "mxc://redxafa.world/fkCgYgtNvNCVeoyGaCvDqVFP", "info": {"w": 256, "h": 256, "size": 195537, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/fkCgYgtNvNCVeoyGaCvDqVFP", "thumbnail_info": {"w": 256, "h": 256, "size": 195537, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967325", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967325", "emoticons": ["๐Ÿ‘"]}}, {"body": "โ˜บ๏ธ", "url": "mxc://redxafa.world/VAoOnhVMwBDhMmurOwnlSSOs", "info": {"w": 256, "h": 256, "size": 227879, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VAoOnhVMwBDhMmurOwnlSSOs", "thumbnail_info": {"w": 256, "h": 256, "size": 227879, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967326", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967326", "emoticons": ["โ˜บ"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/IddDiViRJODvuezxfNFSUFiU", "info": {"w": 256, "h": 256, "size": 239479, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/IddDiViRJODvuezxfNFSUFiU", "thumbnail_info": {"w": 256, "h": 256, "size": 239479, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967328", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967328", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ–", "url": "mxc://redxafa.world/NrOQDgNoSZoFNUPMgNWSXprP", "info": {"w": 256, "h": 256, "size": 229252, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/NrOQDgNoSZoFNUPMgNWSXprP", "thumbnail_info": {"w": 256, "h": 256, "size": 229252, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967330", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967330", "emoticons": ["๐Ÿ–"]}}, {"body": "๐Ÿ˜Œ", "url": "mxc://redxafa.world/CZKXLtywVjyyIazmYNaSWuJM", "info": {"w": 256, "h": 256, "size": 174643, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CZKXLtywVjyyIazmYNaSWuJM", "thumbnail_info": {"w": 256, "h": 256, "size": 174643, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-696590012614967318", "net.maunium.telegram.sticker": {"pack": {"id": "696590012614967297", "short_name": "ChairmanMao"}, "id": "696590012614967318", "emoticons": ["๐Ÿ˜Œ"]}}]} \ No newline at end of file diff --git a/web/packs/Gensek.json b/web/packs/Gensek.json new file mode 100644 index 0000000..01c0808 --- /dev/null +++ b/web/packs/Gensek.json @@ -0,0 +1 @@ +{"title": "Stalin", "id": "tg-1003485466231570433", "net.maunium.telegram.pack": {"short_name": "Gensek", "hash": "827002485"}, "stickers": [{"body": "๐Ÿ˜", "url": "mxc://redxafa.world/SeaswOOanfbYQEhvbuFzBlEH", "info": {"w": 256, "h": 235, "size": 212877, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SeaswOOanfbYQEhvbuFzBlEH", "thumbnail_info": {"w": 256, "h": 235, "size": 212877, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570434", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570434", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜Š", "url": "mxc://redxafa.world/RqxLdFsBWoouqSgDohsuFLKT", "info": {"w": 256, "h": 256, "size": 207531, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/RqxLdFsBWoouqSgDohsuFLKT", "thumbnail_info": {"w": 256, "h": 256, "size": 207531, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570490", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570490", "emoticons": ["๐Ÿ˜Š"]}}, {"body": "๐Ÿ˜ฉ", "url": "mxc://redxafa.world/DVnrnUPcOwqgLNdbCdlrglOq", "info": {"w": 256, "h": 256, "size": 238333, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/DVnrnUPcOwqgLNdbCdlrglOq", "thumbnail_info": {"w": 256, "h": 256, "size": 238333, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570436", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570436", "emoticons": ["๐Ÿ˜ฉ"]}}, {"body": "๐Ÿ˜ฑ", "url": "mxc://redxafa.world/TbTlhHmycnaqkrClqtRulKcR", "info": {"w": 256, "h": 256, "size": 246892, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/TbTlhHmycnaqkrClqtRulKcR", "thumbnail_info": {"w": 256, "h": 256, "size": 246892, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570466", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570466", "emoticons": ["๐Ÿ˜ฑ"]}}, {"body": "๐Ÿ˜Ž", "url": "mxc://redxafa.world/yWYrtwTRRBfBYaoavJsBFwQA", "info": {"w": 256, "h": 256, "size": 157226, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/yWYrtwTRRBfBYaoavJsBFwQA", "thumbnail_info": {"w": 256, "h": 256, "size": 157226, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570438", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570438", "emoticons": ["๐Ÿ˜Ž"]}}, {"body": "๐Ÿ˜ด", "url": "mxc://redxafa.world/qOKXjJkaYYPmvYwBrQhoZHMH", "info": {"w": 256, "h": 183, "size": 211547, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/qOKXjJkaYYPmvYwBrQhoZHMH", "thumbnail_info": {"w": 256, "h": 183, "size": 211547, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570441", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570441", "emoticons": ["๐Ÿ˜ด"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/fFvbvDzOKbgCzfLbNMYdPtVV", "info": {"w": 256, "h": 256, "size": 196050, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/fFvbvDzOKbgCzfLbNMYdPtVV", "thumbnail_info": {"w": 256, "h": 256, "size": 196050, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570443", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570443", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜ข", "url": "mxc://redxafa.world/YIovmsnveVKUqjybtJiWsgid", "info": {"w": 203, "h": 256, "size": 177527, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/YIovmsnveVKUqjybtJiWsgid", "thumbnail_info": {"w": 203, "h": 256, "size": 177527, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570445", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570445", "emoticons": ["๐Ÿ˜ข"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/kEjQFEipJKnNGkaBgRpMKxMi", "info": {"w": 210, "h": 256, "size": 164294, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kEjQFEipJKnNGkaBgRpMKxMi", "thumbnail_info": {"w": 210, "h": 256, "size": 164294, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570447", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570447", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜‰", "url": "mxc://redxafa.world/JxlWjkXESrRZUTKTZQLDrQDq", "info": {"w": 256, "h": 224, "size": 178290, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/JxlWjkXESrRZUTKTZQLDrQDq", "thumbnail_info": {"w": 256, "h": 224, "size": 178290, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570453", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570453", "emoticons": ["๐Ÿ˜‰"]}}, {"body": "๐Ÿ’ช", "url": "mxc://redxafa.world/KNpFffULAJZBBKrBPFzAFezT", "info": {"w": 220, "h": 256, "size": 211584, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/KNpFffULAJZBBKrBPFzAFezT", "thumbnail_info": {"w": 220, "h": 256, "size": 211584, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570455", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570455", "emoticons": ["๐Ÿ’ช"]}}, {"body": "๐Ÿ˜˜", "url": "mxc://redxafa.world/eEzDvdEKVTnCjyqJCPjXHSEv", "info": {"w": 246, "h": 256, "size": 252694, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/eEzDvdEKVTnCjyqJCPjXHSEv", "thumbnail_info": {"w": 246, "h": 256, "size": 252694, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570458", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570458", "emoticons": ["๐Ÿ˜˜"]}}, {"body": "๐Ÿ˜ ", "url": "mxc://redxafa.world/QSdoWTisBivCnEOIpdvqbuVE", "info": {"w": 256, "h": 256, "size": 203564, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QSdoWTisBivCnEOIpdvqbuVE", "thumbnail_info": {"w": 256, "h": 256, "size": 203564, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570462", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570462", "emoticons": ["๐Ÿ˜ "]}}, {"body": "๐Ÿ˜‡", "url": "mxc://redxafa.world/tFmZgYsuonNHHuRMNcxHTJaA", "info": {"w": 206, "h": 256, "size": 162289, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/tFmZgYsuonNHHuRMNcxHTJaA", "thumbnail_info": {"w": 206, "h": 256, "size": 162289, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570464", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570464", "emoticons": ["๐Ÿ˜‡"]}}, {"body": "๐Ÿ˜’", "url": "mxc://redxafa.world/hKKusYffiwFIUaJCJxkohcjr", "info": {"w": 256, "h": 256, "size": 211075, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hKKusYffiwFIUaJCJxkohcjr", "thumbnail_info": {"w": 256, "h": 256, "size": 211075, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570468", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570468", "emoticons": ["๐Ÿ˜’"]}}, {"body": "๐Ÿค", "url": "mxc://redxafa.world/uKdJdVlREsxYPdWeHhLoOXsh", "info": {"w": 256, "h": 208, "size": 170832, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uKdJdVlREsxYPdWeHhLoOXsh", "thumbnail_info": {"w": 256, "h": 208, "size": 170832, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570470", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570470", "emoticons": ["๐Ÿค"]}}, {"body": "๐Ÿค”", "url": "mxc://redxafa.world/GKiAXXfPENxVUsSLrtliKvYH", "info": {"w": 256, "h": 217, "size": 168504, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/GKiAXXfPENxVUsSLrtliKvYH", "thumbnail_info": {"w": 256, "h": 217, "size": 168504, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570472", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570472", "emoticons": ["๐Ÿค”"]}}, {"body": "๐Ÿ˜‘", "url": "mxc://redxafa.world/GKJJLhUxPoKjCzOcpFzQkHZx", "info": {"w": 256, "h": 256, "size": 220067, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/GKJJLhUxPoKjCzOcpFzQkHZx", "thumbnail_info": {"w": 256, "h": 256, "size": 220067, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570474", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570474", "emoticons": ["๐Ÿ˜‘"]}}, {"body": "๐Ÿ™…", "url": "mxc://redxafa.world/hHsklhjxjYuinBSwiCRIMEvS", "info": {"w": 256, "h": 218, "size": 215525, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hHsklhjxjYuinBSwiCRIMEvS", "thumbnail_info": {"w": 256, "h": 218, "size": 215525, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570476", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570476", "emoticons": ["๐Ÿ™…"]}}, {"body": "๐Ÿ’€", "url": "mxc://redxafa.world/MFROinHlOfZONKwksUBRgkno", "info": {"w": 256, "h": 256, "size": 223472, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/MFROinHlOfZONKwksUBRgkno", "thumbnail_info": {"w": 256, "h": 256, "size": 223472, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570478", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570478", "emoticons": ["๐Ÿ’€"]}}, {"body": "๐Ÿ˜ซ", "url": "mxc://redxafa.world/OCPxCcLySCQkPqdBiPKSyIHz", "info": {"w": 256, "h": 159, "size": 160668, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/OCPxCcLySCQkPqdBiPKSyIHz", "thumbnail_info": {"w": 256, "h": 159, "size": 160668, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570480", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570480", "emoticons": ["๐Ÿ˜ซ"]}}, {"body": "๐Ÿ˜†", "url": "mxc://redxafa.world/YuiTOSzZagustiqLgcJuhPHm", "info": {"w": 256, "h": 256, "size": 181359, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/YuiTOSzZagustiqLgcJuhPHm", "thumbnail_info": {"w": 256, "h": 256, "size": 181359, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570482", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570482", "emoticons": ["๐Ÿ˜†"]}}, {"body": "๐Ÿ˜ก", "url": "mxc://redxafa.world/hGAVEqkuRCTZlUxRnzsULlpx", "info": {"w": 256, "h": 233, "size": 266198, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hGAVEqkuRCTZlUxRnzsULlpx", "thumbnail_info": {"w": 256, "h": 233, "size": 266198, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570486", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570486", "emoticons": ["๐Ÿ˜ก"]}}, {"body": "๐Ÿ‘", "url": "mxc://redxafa.world/BlZVVsRZLcHWQMQxGaUohYGR", "info": {"w": 256, "h": 240, "size": 248508, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/BlZVVsRZLcHWQMQxGaUohYGR", "thumbnail_info": {"w": 256, "h": 240, "size": 248508, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1003485466231570492", "net.maunium.telegram.sticker": {"pack": {"id": "1003485466231570433", "short_name": "Gensek"}, "id": "1003485466231570492", "emoticons": ["๐Ÿ‘"]}}]} \ No newline at end of file diff --git a/web/packs/Moedog.json b/web/packs/Moedog.json new file mode 100644 index 0000000..d95f96b --- /dev/null +++ b/web/packs/Moedog.json @@ -0,0 +1 @@ +{"title": "@xb2016 ่‡ช็”จ ็‹—ๅญ่กจๆƒ…", "id": "tg-1649094199863148545", "net.maunium.telegram.pack": {"short_name": "Moedog", "hash": "-1680552652"}, "stickers": [{"body": "๐Ÿ˜ญ", "url": "mxc://redxafa.world/VqxbzxMiLrvIubAZqTSeZNuM", "info": {"w": 256, "h": 256, "size": 195352, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VqxbzxMiLrvIubAZqTSeZNuM", "thumbnail_info": {"w": 256, "h": 256, "size": 195352, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148603", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148603", "emoticons": ["๐Ÿ˜ญ"]}}, {"body": "๐Ÿˆฒ", "url": "mxc://redxafa.world/FmuCKozObUItzcTIheVOJfFC", "info": {"w": 256, "h": 256, "size": 170908, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FmuCKozObUItzcTIheVOJfFC", "thumbnail_info": {"w": 256, "h": 256, "size": 170908, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148612", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148612", "emoticons": ["๐Ÿˆฒ"]}}, {"body": "๐Ÿ‰", "url": "mxc://redxafa.world/wUKDELAklSBtIHFdkjtNeGYO", "info": {"w": 256, "h": 256, "size": 183606, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/wUKDELAklSBtIHFdkjtNeGYO", "thumbnail_info": {"w": 256, "h": 256, "size": 183606, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148615", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148615", "emoticons": ["๐Ÿ‰"]}}, {"body": "๐Ÿฅค", "url": "mxc://redxafa.world/mqEWPEhhGBjcxKVbvTjZFdOO", "info": {"w": 256, "h": 256, "size": 208351, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/mqEWPEhhGBjcxKVbvTjZFdOO", "thumbnail_info": {"w": 256, "h": 256, "size": 208351, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148635", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148635", "emoticons": ["๐Ÿฅค"]}}, {"body": "๐Ÿ‹", "url": "mxc://redxafa.world/sKEMbYBJnatGKumsqkJFKkUC", "info": {"w": 256, "h": 256, "size": 192185, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/sKEMbYBJnatGKumsqkJFKkUC", "thumbnail_info": {"w": 256, "h": 256, "size": 192185, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148627", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148627", "emoticons": ["๐Ÿ‹"]}}, {"body": "๐Ÿ˜‘", "url": "mxc://redxafa.world/XicYYmDOPuozRSPBiIyWcYCN", "info": {"w": 256, "h": 256, "size": 158792, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/XicYYmDOPuozRSPBiIyWcYCN", "thumbnail_info": {"w": 256, "h": 256, "size": 158792, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148624", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148624", "emoticons": ["๐Ÿ˜‘"]}}, {"body": "๐Ÿ˜”", "url": "mxc://redxafa.world/ZSAjDIBiRPZacYxVjgqVsHGI", "info": {"w": 256, "h": 256, "size": 274547, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ZSAjDIBiRPZacYxVjgqVsHGI", "thumbnail_info": {"w": 256, "h": 256, "size": 274547, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148631", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148631", "emoticons": ["๐Ÿ˜”"]}}, {"body": "๐Ÿ˜ƒ", "url": "mxc://redxafa.world/duDnruLemggbdhYocvVxVplF", "info": {"w": 256, "h": 256, "size": 241890, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/duDnruLemggbdhYocvVxVplF", "thumbnail_info": {"w": 256, "h": 256, "size": 241890, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148630", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148630", "emoticons": ["๐Ÿ˜ƒ"]}}, {"body": "โš ๏ธ", "url": "mxc://redxafa.world/XIKoOUcYPBexBzHrSYGsNcRh", "info": {"w": 256, "h": 256, "size": 262213, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/XIKoOUcYPBexBzHrSYGsNcRh", "thumbnail_info": {"w": 256, "h": 256, "size": 262213, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148611", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148611", "emoticons": ["โš "]}}, {"body": "๐Ÿ˜ฉ", "url": "mxc://redxafa.world/cceCzabrgBRaAnCVSQclNmBY", "info": {"w": 256, "h": 256, "size": 281589, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/cceCzabrgBRaAnCVSQclNmBY", "thumbnail_info": {"w": 256, "h": 256, "size": 281589, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148625", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148625", "emoticons": ["๐Ÿ˜ฉ"]}}, {"body": "โœจ", "url": "mxc://redxafa.world/RMZdCqfJAfjZzZzWkVQZSYpk", "info": {"w": 256, "h": 256, "size": 251030, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/RMZdCqfJAfjZzZzWkVQZSYpk", "thumbnail_info": {"w": 256, "h": 256, "size": 251030, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148632", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148632", "emoticons": ["โœจ"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/tmxXwupZNUKfRuAGuKFvzKzs", "info": {"w": 256, "h": 256, "size": 282395, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/tmxXwupZNUKfRuAGuKFvzKzs", "thumbnail_info": {"w": 256, "h": 256, "size": 282395, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148633", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148633", "emoticons": ["๐Ÿ˜"]}}, {"body": "โ”", "url": "mxc://redxafa.world/gbPryzLVXHFuZeCjmvnCGTlL", "info": {"w": 256, "h": 256, "size": 197044, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/gbPryzLVXHFuZeCjmvnCGTlL", "thumbnail_info": {"w": 256, "h": 256, "size": 197044, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148636", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148636", "emoticons": ["โ”"]}}, {"body": "๐Ÿ”จ", "url": "mxc://redxafa.world/SYNdJUonGnEFEBrmwmjHbSOQ", "info": {"w": 256, "h": 256, "size": 222004, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SYNdJUonGnEFEBrmwmjHbSOQ", "thumbnail_info": {"w": 256, "h": 256, "size": 222004, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148637", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148637", "emoticons": ["๐Ÿ”จ"]}}, {"body": "๐Ÿ˜ด", "url": "mxc://redxafa.world/AKbkVvWGQqDqDbrdDFEkSsWy", "info": {"w": 256, "h": 256, "size": 314338, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/AKbkVvWGQqDqDbrdDFEkSsWy", "thumbnail_info": {"w": 256, "h": 256, "size": 314338, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148621", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148621", "emoticons": ["๐Ÿ˜ด"]}}, {"body": "๐Ÿ™ƒ", "url": "mxc://redxafa.world/ahvCviwuErHuopOLyTcycRUX", "info": {"w": 256, "h": 256, "size": 181398, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ahvCviwuErHuopOLyTcycRUX", "thumbnail_info": {"w": 256, "h": 256, "size": 181398, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148629", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148629", "emoticons": ["๐Ÿ™ƒ"]}}, {"body": "โค๏ธ", "url": "mxc://redxafa.world/eIBXCgccZjmhcvEGeAYutVnk", "info": {"w": 256, "h": 256, "size": 198487, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/eIBXCgccZjmhcvEGeAYutVnk", "thumbnail_info": {"w": 256, "h": 256, "size": 198487, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148604", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148604", "emoticons": ["โค"]}}, {"body": "๐Ÿ’“", "url": "mxc://redxafa.world/IXPzoQCiWRtqVtPHSASQcguJ", "info": {"w": 256, "h": 256, "size": 212354, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/IXPzoQCiWRtqVtPHSASQcguJ", "thumbnail_info": {"w": 256, "h": 256, "size": 212354, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148610", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148610", "emoticons": ["๐Ÿ’“"]}}, {"body": "๐Ÿคก", "url": "mxc://redxafa.world/YtsTRTAJltPOoEMmUCCTMYpp", "info": {"w": 256, "h": 256, "size": 207112, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/YtsTRTAJltPOoEMmUCCTMYpp", "thumbnail_info": {"w": 256, "h": 256, "size": 207112, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148623", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148623", "emoticons": ["๐Ÿคก"]}}, {"body": "โ–ถ๏ธ", "url": "mxc://redxafa.world/PkPyjMueNDMXWAUplIuqtNIf", "info": {"w": 256, "h": 256, "size": 311647, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/PkPyjMueNDMXWAUplIuqtNIf", "thumbnail_info": {"w": 256, "h": 256, "size": 311647, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148613", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148613", "emoticons": ["โ–ถ"]}}, {"body": "โน", "url": "mxc://redxafa.world/uKwFaFSsNmJKbuZapWAPXMCQ", "info": {"w": 256, "h": 256, "size": 116518, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uKwFaFSsNmJKbuZapWAPXMCQ", "thumbnail_info": {"w": 256, "h": 256, "size": 116518, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148614", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148614", "emoticons": ["โน"]}}, {"body": "โšก๏ธ", "url": "mxc://redxafa.world/ceQMkOuwJfKXiqIIIwZSyfse", "info": {"w": 256, "h": 256, "size": 239979, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ceQMkOuwJfKXiqIIIwZSyfse", "thumbnail_info": {"w": 256, "h": 256, "size": 239979, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148626", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148626", "emoticons": ["โšก"]}}, {"body": "๐Ÿ˜ฎ", "url": "mxc://redxafa.world/zhafkoDaxPrknqOFaXsqWzzj", "info": {"w": 256, "h": 256, "size": 185183, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/zhafkoDaxPrknqOFaXsqWzzj", "thumbnail_info": {"w": 256, "h": 256, "size": 185183, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148608", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148608", "emoticons": ["๐Ÿ˜ฎ"]}}, {"body": "๐Ÿฆ", "url": "mxc://redxafa.world/ELlJWxVnxYgdkaLHupfKZFnh", "info": {"w": 256, "h": 256, "size": 207924, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ELlJWxVnxYgdkaLHupfKZFnh", "thumbnail_info": {"w": 256, "h": 256, "size": 207924, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148609", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148609", "emoticons": ["๐Ÿฆ"]}}, {"body": "๐Ÿ’€", "url": "mxc://redxafa.world/nCujISyEHbecVtCTafzSCFny", "info": {"w": 256, "h": 256, "size": 122449, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/nCujISyEHbecVtCTafzSCFny", "thumbnail_info": {"w": 256, "h": 256, "size": 122449, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148622", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148622", "emoticons": ["๐Ÿ’€"]}}, {"body": "๐Ÿ–", "url": "mxc://redxafa.world/CZPzIonpCYrltfzbcUwYZVre", "info": {"w": 256, "h": 256, "size": 199715, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CZPzIonpCYrltfzbcUwYZVre", "thumbnail_info": {"w": 256, "h": 256, "size": 199715, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148605", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148605", "emoticons": ["๐Ÿ–"]}}, {"body": "๐Ÿ˜“", "url": "mxc://redxafa.world/bWDXaKrVjLATomiBBMkmNlZE", "info": {"w": 256, "h": 256, "size": 194810, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/bWDXaKrVjLATomiBBMkmNlZE", "thumbnail_info": {"w": 256, "h": 256, "size": 194810, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148606", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148606", "emoticons": ["๐Ÿ˜“"]}}, {"body": "๐Ÿ˜ฅ", "url": "mxc://redxafa.world/hTvFeKzVwBINyiIrpVkGmqHU", "info": {"w": 256, "h": 256, "size": 181952, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hTvFeKzVwBINyiIrpVkGmqHU", "thumbnail_info": {"w": 256, "h": 256, "size": 181952, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148628", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148628", "emoticons": ["๐Ÿ˜ฅ"]}}, {"body": "๐Ÿฅบ", "url": "mxc://redxafa.world/hgnEeZJKNKxPcDNoggGKzJlZ", "info": {"w": 256, "h": 256, "size": 233981, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hgnEeZJKNKxPcDNoggGKzJlZ", "thumbnail_info": {"w": 256, "h": 256, "size": 233981, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148607", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148607", "emoticons": ["๐Ÿฅบ"]}}, {"body": "๐Ÿง", "url": "mxc://redxafa.world/SfTOIfUSdsSxYlSxBsnCKSEy", "info": {"w": 256, "h": 256, "size": 91820, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SfTOIfUSdsSxYlSxBsnCKSEy", "thumbnail_info": {"w": 256, "h": 256, "size": 91820, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148619", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148619", "emoticons": ["๐Ÿง"]}}, {"body": "๐Ÿง", "url": "mxc://redxafa.world/QrWREPnIgFDTMsiHfSFRcdMd", "info": {"w": 256, "h": 256, "size": 124743, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QrWREPnIgFDTMsiHfSFRcdMd", "thumbnail_info": {"w": 256, "h": 256, "size": 124743, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148620", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148620", "emoticons": ["๐Ÿง"]}}, {"body": "๐ŸŒš", "url": "mxc://redxafa.world/zFBSEyOzZqudZjtvvLeMtTFd", "info": {"w": 256, "h": 256, "size": 212043, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/zFBSEyOzZqudZjtvvLeMtTFd", "thumbnail_info": {"w": 256, "h": 256, "size": 212043, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148634", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148634", "emoticons": ["๐ŸŒš"]}}, {"body": "๐Ÿ’ฐ", "url": "mxc://redxafa.world/FaFzPytIqDgvrhaUFEBdBjSW", "info": {"w": 173, "h": 256, "size": 241382, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FaFzPytIqDgvrhaUFEBdBjSW", "thumbnail_info": {"w": 173, "h": 256, "size": 241382, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148616", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148616", "emoticons": ["๐Ÿ’ฐ"]}}, {"body": "๐Ÿ’ฐ", "url": "mxc://redxafa.world/szsYFgmDGBIcXZjJHpVPUFeN", "info": {"w": 173, "h": 256, "size": 242274, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/szsYFgmDGBIcXZjJHpVPUFeN", "thumbnail_info": {"w": 173, "h": 256, "size": 242274, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148617", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148617", "emoticons": ["๐Ÿ’ฐ"]}}, {"body": "๐Ÿ’ฐ", "url": "mxc://redxafa.world/AmoFHpCAsTclapTfFYjSaKvn", "info": {"w": 173, "h": 256, "size": 242079, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/AmoFHpCAsTclapTfFYjSaKvn", "thumbnail_info": {"w": 173, "h": 256, "size": 242079, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148618", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148618", "emoticons": ["๐Ÿ’ฐ"]}}, {"body": "๐Ÿ˜จ", "url": "mxc://redxafa.world/TmdGGtBBKAfysboVklKNlcEY", "info": {"w": 256, "h": 174, "size": 253045, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/TmdGGtBBKAfysboVklKNlcEY", "thumbnail_info": {"w": 256, "h": 174, "size": 253045, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148545", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148545", "emoticons": ["๐Ÿ˜จ"]}}, {"body": "๐Ÿฉ", "url": "mxc://redxafa.world/lLLSeaqACyqPmKoGksGmAxiF", "info": {"w": 256, "h": 250, "size": 355695, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/lLLSeaqACyqPmKoGksGmAxiF", "thumbnail_info": {"w": 256, "h": 250, "size": 355695, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148546", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148546", "emoticons": ["๐Ÿฉ"]}}, {"body": "โ˜๏ธ", "url": "mxc://redxafa.world/QhZLMMqNETFVrnepyfLlQPdX", "info": {"w": 226, "h": 256, "size": 332013, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QhZLMMqNETFVrnepyfLlQPdX", "thumbnail_info": {"w": 226, "h": 256, "size": 332013, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148547", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148547", "emoticons": ["โ˜"]}}, {"body": "๐Ÿ˜ฑ", "url": "mxc://redxafa.world/RECWlNuclKmsMMmNByKLSPHA", "info": {"w": 193, "h": 256, "size": 328835, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/RECWlNuclKmsMMmNByKLSPHA", "thumbnail_info": {"w": 193, "h": 256, "size": 328835, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148549", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148549", "emoticons": ["๐Ÿ˜ฑ"]}}, {"body": "๐Ÿง", "url": "mxc://redxafa.world/bAlydBCVtXZLpiaqikAuBQZm", "info": {"w": 230, "h": 256, "size": 270125, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/bAlydBCVtXZLpiaqikAuBQZm", "thumbnail_info": {"w": 230, "h": 256, "size": 270125, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148552", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148552", "emoticons": ["๐Ÿง"]}}, {"body": "โœจ", "url": "mxc://redxafa.world/pXudRdvGLpYDgqSkbmMWASAd", "info": {"w": 186, "h": 256, "size": 200247, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/pXudRdvGLpYDgqSkbmMWASAd", "thumbnail_info": {"w": 186, "h": 256, "size": 200247, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148553", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148553", "emoticons": ["โœจ"]}}, {"body": "โค๏ธ", "url": "mxc://redxafa.world/WXuOFqZllQKjkOFdwkpOdAyH", "info": {"w": 256, "h": 185, "size": 287439, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/WXuOFqZllQKjkOFdwkpOdAyH", "thumbnail_info": {"w": 256, "h": 185, "size": 287439, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148554", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148554", "emoticons": ["โค"]}}, {"body": "๐Ÿ˜ฐ", "url": "mxc://redxafa.world/VCbTIBsGGcobzXJMiFXgWbcl", "info": {"w": 218, "h": 256, "size": 245618, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VCbTIBsGGcobzXJMiFXgWbcl", "thumbnail_info": {"w": 218, "h": 256, "size": 245618, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148555", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148555", "emoticons": ["๐Ÿ˜ฐ"]}}, {"body": "๐Ÿ˜ซ", "url": "mxc://redxafa.world/bUjhQnReoFncdoIaAAwBPcEx", "info": {"w": 256, "h": 150, "size": 119351, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/bUjhQnReoFncdoIaAAwBPcEx", "thumbnail_info": {"w": 256, "h": 150, "size": 119351, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148556", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148556", "emoticons": ["๐Ÿ˜ซ"]}}, {"body": "๐Ÿ˜ญ", "url": "mxc://redxafa.world/xHvQGAfTvXbneQetODGVSioY", "info": {"w": 202, "h": 256, "size": 206020, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/xHvQGAfTvXbneQetODGVSioY", "thumbnail_info": {"w": 202, "h": 256, "size": 206020, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148558", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148558", "emoticons": ["๐Ÿ˜ญ"]}}, {"body": "๐Ÿ˜ญ", "url": "mxc://redxafa.world/aDbYeolgdUCHvDHNuMMoLktY", "info": {"w": 214, "h": 256, "size": 186844, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/aDbYeolgdUCHvDHNuMMoLktY", "thumbnail_info": {"w": 214, "h": 256, "size": 186844, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148602", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148602", "emoticons": ["๐Ÿ˜ญ"]}}, {"body": "๐Ÿ˜ญ", "url": "mxc://redxafa.world/xGZVTAvWpuNzDhwatZmQGuBs", "info": {"w": 233, "h": 256, "size": 224152, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/xGZVTAvWpuNzDhwatZmQGuBs", "thumbnail_info": {"w": 233, "h": 256, "size": 224152, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148559", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148559", "emoticons": ["๐Ÿ˜ญ"]}}, {"body": "๐Ÿ˜ฅ", "url": "mxc://redxafa.world/ogFWiNYqQjRvZnmXddjQmqyq", "info": {"w": 183, "h": 256, "size": 255564, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ogFWiNYqQjRvZnmXddjQmqyq", "thumbnail_info": {"w": 183, "h": 256, "size": 255564, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148561", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148561", "emoticons": ["๐Ÿ˜ฅ"]}}, {"body": "๐Ÿ™„", "url": "mxc://redxafa.world/YMymLZjLPTEXoAGeNRaUxblB", "info": {"w": 217, "h": 256, "size": 212054, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/YMymLZjLPTEXoAGeNRaUxblB", "thumbnail_info": {"w": 217, "h": 256, "size": 212054, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148562", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148562", "emoticons": ["๐Ÿ™„"]}}, {"body": "๐Ÿ˜‘", "url": "mxc://redxafa.world/fYxiiLWuyqpVWCLQcCLyTuTB", "info": {"w": 256, "h": 194, "size": 246383, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/fYxiiLWuyqpVWCLQcCLyTuTB", "thumbnail_info": {"w": 256, "h": 194, "size": 246383, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148563", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148563", "emoticons": ["๐Ÿ˜‘"]}}, {"body": "๐Ÿ˜‹", "url": "mxc://redxafa.world/vyBicvFvDkeaAdNfMjUObkwR", "info": {"w": 184, "h": 256, "size": 148978, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/vyBicvFvDkeaAdNfMjUObkwR", "thumbnail_info": {"w": 184, "h": 256, "size": 148978, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148564", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148564", "emoticons": ["๐Ÿ˜‹"]}}, {"body": "๐ŸŒš", "url": "mxc://redxafa.world/QzeFjfJzcakEttBtpOHbrcoi", "info": {"w": 239, "h": 256, "size": 355594, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QzeFjfJzcakEttBtpOHbrcoi", "thumbnail_info": {"w": 239, "h": 256, "size": 355594, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148565", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148565", "emoticons": ["๐ŸŒš"]}}, {"body": "๐Ÿ•", "url": "mxc://redxafa.world/ShYHoHnQqyoZYYTwtXnDYLvm", "info": {"w": 201, "h": 256, "size": 237645, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ShYHoHnQqyoZYYTwtXnDYLvm", "thumbnail_info": {"w": 201, "h": 256, "size": 237645, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148566", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148566", "emoticons": ["๐Ÿ•"]}}, {"body": "๐Ÿ‘†", "url": "mxc://redxafa.world/rZNhcqvNGMZqHKxEspAdQDCh", "info": {"w": 226, "h": 256, "size": 232804, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/rZNhcqvNGMZqHKxEspAdQDCh", "thumbnail_info": {"w": 226, "h": 256, "size": 232804, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148567", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148567", "emoticons": ["๐Ÿ‘†"]}}, {"body": "๐Ÿ˜ƒ", "url": "mxc://redxafa.world/XIBNvfpDLaxCznMGTNIbzEjr", "info": {"w": 193, "h": 256, "size": 242993, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/XIBNvfpDLaxCznMGTNIbzEjr", "thumbnail_info": {"w": 193, "h": 256, "size": 242993, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148568", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148568", "emoticons": ["๐Ÿ˜ƒ"]}}, {"body": "๐Ÿ’–", "url": "mxc://redxafa.world/dIqdDWrbsarlECqhETxDKgXq", "info": {"w": 189, "h": 256, "size": 242043, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/dIqdDWrbsarlECqhETxDKgXq", "thumbnail_info": {"w": 189, "h": 256, "size": 242043, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148569", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148569", "emoticons": ["๐Ÿ’–"]}}, {"body": "โ˜บ๏ธ", "url": "mxc://redxafa.world/KCJBoLlKrBfPggjkpYLJQkWZ", "info": {"w": 256, "h": 233, "size": 284341, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/KCJBoLlKrBfPggjkpYLJQkWZ", "thumbnail_info": {"w": 256, "h": 233, "size": 284341, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148570", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148570", "emoticons": ["โ˜บ"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/MbVKasTxVGmpmZHYiFXCdOoN", "info": {"w": 192, "h": 256, "size": 254278, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/MbVKasTxVGmpmZHYiFXCdOoN", "thumbnail_info": {"w": 192, "h": 256, "size": 254278, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148571", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148571", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/CauUmKMEYESKkqyQVEHGWwgQ", "info": {"w": 185, "h": 256, "size": 319830, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CauUmKMEYESKkqyQVEHGWwgQ", "thumbnail_info": {"w": 185, "h": 256, "size": 319830, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148572", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148572", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿค‘", "url": "mxc://redxafa.world/QBTYFrWMKhDrEHHUaXoqasWj", "info": {"w": 256, "h": 188, "size": 288752, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QBTYFrWMKhDrEHHUaXoqasWj", "thumbnail_info": {"w": 256, "h": 188, "size": 288752, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148573", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148573", "emoticons": ["๐Ÿค‘"]}}, {"body": "๐Ÿค‘", "url": "mxc://redxafa.world/mVivLlgWwPpaLbrXrUSekCGz", "info": {"w": 256, "h": 160, "size": 280532, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/mVivLlgWwPpaLbrXrUSekCGz", "thumbnail_info": {"w": 256, "h": 160, "size": 280532, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148574", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148574", "emoticons": ["๐Ÿค‘"]}}, {"body": "๐Ÿ˜˜", "url": "mxc://redxafa.world/dXvnXNNipXjQRBXlXJhQTqda", "info": {"w": 215, "h": 256, "size": 279256, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/dXvnXNNipXjQRBXlXJhQTqda", "thumbnail_info": {"w": 215, "h": 256, "size": 279256, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148575", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148575", "emoticons": ["๐Ÿ˜˜"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/gxarpVnZuaglxGTWHJhIxmJg", "info": {"w": 182, "h": 256, "size": 310972, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/gxarpVnZuaglxGTWHJhIxmJg", "thumbnail_info": {"w": 182, "h": 256, "size": 310972, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148576", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148576", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ", "url": "mxc://redxafa.world/AbmuMnQRbOyDMzAoJcYSXzes", "info": {"w": 180, "h": 256, "size": 300950, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/AbmuMnQRbOyDMzAoJcYSXzes", "thumbnail_info": {"w": 180, "h": 256, "size": 300950, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148577", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148577", "emoticons": ["๐Ÿ‘ฉโ€โคโ€๐Ÿ‘ฉ"]}}, {"body": "๐Ÿ’ข", "url": "mxc://redxafa.world/bCwObDOwPXeIqojtrfaDEwPU", "info": {"w": 176, "h": 256, "size": 269759, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/bCwObDOwPXeIqojtrfaDEwPU", "thumbnail_info": {"w": 176, "h": 256, "size": 269759, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148578", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148578", "emoticons": ["๐Ÿ’ข"]}}, {"body": "๐Ÿšธ", "url": "mxc://redxafa.world/yWjNFTpNPTiGSNeXAjkmrYYN", "info": {"w": 227, "h": 256, "size": 164896, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/yWjNFTpNPTiGSNeXAjkmrYYN", "thumbnail_info": {"w": 227, "h": 256, "size": 164896, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148579", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148579", "emoticons": ["๐Ÿšธ"]}}, {"body": "๐Ÿคจ", "url": "mxc://redxafa.world/AFveApcIqfgWPqRRBTiKQDIb", "info": {"w": 233, "h": 256, "size": 141887, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/AFveApcIqfgWPqRRBTiKQDIb", "thumbnail_info": {"w": 233, "h": 256, "size": 141887, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148580", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148580", "emoticons": ["๐Ÿคจ"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/sYkyHoRfdxgNppmxKCyFtgbC", "info": {"w": 243, "h": 256, "size": 204176, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/sYkyHoRfdxgNppmxKCyFtgbC", "thumbnail_info": {"w": 243, "h": 256, "size": 204176, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148581", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148581", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜‰", "url": "mxc://redxafa.world/OiQlsvtbzSaDodrmLzAPvpfd", "info": {"w": 180, "h": 256, "size": 173557, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/OiQlsvtbzSaDodrmLzAPvpfd", "thumbnail_info": {"w": 180, "h": 256, "size": 173557, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148582", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148582", "emoticons": ["๐Ÿ˜‰"]}}, {"body": "๐Ÿ˜จ", "url": "mxc://redxafa.world/dsDzPEgRHEKvQqAodCurJgjh", "info": {"w": 181, "h": 256, "size": 493165, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/dsDzPEgRHEKvQqAodCurJgjh", "thumbnail_info": {"w": 181, "h": 256, "size": 493165, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148583", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148583", "emoticons": ["๐Ÿ˜จ"]}}, {"body": "๐Ÿ’ข", "url": "mxc://redxafa.world/AsbBXbLRObPFDtnuoeiRsTWu", "info": {"w": 174, "h": 256, "size": 215267, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/AsbBXbLRObPFDtnuoeiRsTWu", "thumbnail_info": {"w": 174, "h": 256, "size": 215267, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148584", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148584", "emoticons": ["๐Ÿ’ข"]}}, {"body": "๐Ÿ’ข", "url": "mxc://redxafa.world/kOdVJiYKpsbdLdcJkJVvvYft", "info": {"w": 174, "h": 256, "size": 217790, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kOdVJiYKpsbdLdcJkJVvvYft", "thumbnail_info": {"w": 174, "h": 256, "size": 217790, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148585", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148585", "emoticons": ["๐Ÿ’ข"]}}, {"body": "โ“", "url": "mxc://redxafa.world/WctsfWpIxmYXfsPqhXxKCXWR", "info": {"w": 171, "h": 256, "size": 193693, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/WctsfWpIxmYXfsPqhXxKCXWR", "thumbnail_info": {"w": 171, "h": 256, "size": 193693, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148586", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148586", "emoticons": ["โ“"]}}, {"body": "๐Ÿ˜ถ", "url": "mxc://redxafa.world/YTIMgexGYFKgrdOxOnosNjHV", "info": {"w": 171, "h": 256, "size": 188277, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/YTIMgexGYFKgrdOxOnosNjHV", "thumbnail_info": {"w": 171, "h": 256, "size": 188277, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148587", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148587", "emoticons": ["๐Ÿ˜ถ"]}}, {"body": "๐Ÿ˜ข", "url": "mxc://redxafa.world/NvQBXDJUlhdnueddnbCEtDpc", "info": {"w": 199, "h": 256, "size": 186197, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/NvQBXDJUlhdnueddnbCEtDpc", "thumbnail_info": {"w": 199, "h": 256, "size": 186197, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148588", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148588", "emoticons": ["๐Ÿ˜ข"]}}, {"body": "๐Ÿ˜Ÿ", "url": "mxc://redxafa.world/jNEwqARLBHORTwJQuiMbQBPO", "info": {"w": 209, "h": 256, "size": 282085, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/jNEwqARLBHORTwJQuiMbQBPO", "thumbnail_info": {"w": 209, "h": 256, "size": 282085, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148589", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148589", "emoticons": ["๐Ÿ˜Ÿ"]}}, {"body": "๐Ÿ™ƒ", "url": "mxc://redxafa.world/bHAjAarqQDQMCTlbxiCQBNUW", "info": {"w": 223, "h": 256, "size": 130946, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/bHAjAarqQDQMCTlbxiCQBNUW", "thumbnail_info": {"w": 223, "h": 256, "size": 130946, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148590", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148590", "emoticons": ["๐Ÿ™ƒ"]}}, {"body": "๐Ÿ’ฅ", "url": "mxc://redxafa.world/GHZarHkzJAWxXocdQiMQZvzx", "info": {"w": 228, "h": 256, "size": 220268, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/GHZarHkzJAWxXocdQiMQZvzx", "thumbnail_info": {"w": 228, "h": 256, "size": 220268, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148591", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148591", "emoticons": ["๐Ÿ’ฅ"]}}, {"body": "๐Ÿ˜•", "url": "mxc://redxafa.world/uaHdzuiNGLbXzvEjupxDzpsH", "info": {"w": 225, "h": 256, "size": 213140, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uaHdzuiNGLbXzvEjupxDzpsH", "thumbnail_info": {"w": 225, "h": 256, "size": 213140, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148592", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148592", "emoticons": ["๐Ÿ˜•"]}}, {"body": "๐Ÿ˜ซ", "url": "mxc://redxafa.world/dAsdFZhxkrXsIhnGzDPekdDn", "info": {"w": 240, "h": 256, "size": 274648, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/dAsdFZhxkrXsIhnGzDPekdDn", "thumbnail_info": {"w": 240, "h": 256, "size": 274648, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148593", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148593", "emoticons": ["๐Ÿ˜ซ"]}}, {"body": "๐Ÿ™", "url": "mxc://redxafa.world/vIngfwPVRklcnOnCmoPQKyGj", "info": {"w": 240, "h": 256, "size": 268991, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/vIngfwPVRklcnOnCmoPQKyGj", "thumbnail_info": {"w": 240, "h": 256, "size": 268991, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148594", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148594", "emoticons": ["๐Ÿ™"]}}, {"body": "โ—๏ธ", "url": "mxc://redxafa.world/KEUWlaqcqLJBNaysHMcmhhGZ", "info": {"w": 256, "h": 209, "size": 164313, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/KEUWlaqcqLJBNaysHMcmhhGZ", "thumbnail_info": {"w": 256, "h": 209, "size": 164313, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148595", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148595", "emoticons": ["โ—"]}}, {"body": "โ‰๏ธ", "url": "mxc://redxafa.world/gigeScfltBGyDvMNIdUFzPFl", "info": {"w": 256, "h": 168, "size": 148015, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/gigeScfltBGyDvMNIdUFzPFl", "thumbnail_info": {"w": 256, "h": 168, "size": 148015, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148596", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148596", "emoticons": ["โ‰"]}}, {"body": "๐Ÿ’•", "url": "mxc://redxafa.world/XrBujcOItWBudZNpWpbkAFOO", "info": {"w": 256, "h": 185, "size": 313379, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/XrBujcOItWBudZNpWpbkAFOO", "thumbnail_info": {"w": 256, "h": 185, "size": 313379, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148597", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148597", "emoticons": ["๐Ÿ’•"]}}, {"body": "๐Ÿ‘€", "url": "mxc://redxafa.world/yIaaviHGFvmqXNsEAcuZXDtJ", "info": {"w": 197, "h": 256, "size": 233619, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/yIaaviHGFvmqXNsEAcuZXDtJ", "thumbnail_info": {"w": 197, "h": 256, "size": 233619, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148598", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148598", "emoticons": ["๐Ÿ‘€"]}}, {"body": "๐Ÿ’จ", "url": "mxc://redxafa.world/SHzOzFLgvqkwmlhCVMJJvMJc", "info": {"w": 156, "h": 256, "size": 156502, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SHzOzFLgvqkwmlhCVMJJvMJc", "thumbnail_info": {"w": 156, "h": 256, "size": 156502, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148599", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148599", "emoticons": ["๐Ÿ’จ"]}}, {"body": "๐Ÿ’“", "url": "mxc://redxafa.world/crCRZVlFdOGSaXTBWxdKrkdV", "info": {"w": 256, "h": 224, "size": 292888, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/crCRZVlFdOGSaXTBWxdKrkdV", "thumbnail_info": {"w": 256, "h": 224, "size": 292888, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148600", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148600", "emoticons": ["๐Ÿ’“"]}}, {"body": "๐Ÿถ", "url": "mxc://redxafa.world/ivNyjDkwayFqPXNrqCeUsUny", "info": {"w": 256, "h": 256, "size": 96671, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ivNyjDkwayFqPXNrqCeUsUny", "thumbnail_info": {"w": 256, "h": 256, "size": 96671, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1649094199863148638", "net.maunium.telegram.sticker": {"pack": {"id": "1649094199863148545", "short_name": "Moedog"}, "id": "1649094199863148638", "emoticons": ["๐Ÿถ"]}}]} \ No newline at end of file diff --git a/web/packs/Vlad_Len.json b/web/packs/Vlad_Len.json new file mode 100644 index 0000000..a19d59d --- /dev/null +++ b/web/packs/Vlad_Len.json @@ -0,0 +1 @@ +{"title": "Lenin", "id": "tg-765673509304139781", "net.maunium.telegram.pack": {"short_name": "Vlad_Len", "hash": "856797643"}, "stickers": [{"body": "๐Ÿ˜‚", "url": "mxc://redxafa.world/nZfTTiqyOubGjHiKQoeffOnl", "info": {"w": 256, "h": 256, "size": 196809, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/nZfTTiqyOubGjHiKQoeffOnl", "thumbnail_info": {"w": 256, "h": 256, "size": 196809, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140213", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140213", "emoticons": ["๐Ÿ˜‚"]}}, {"body": "๐Ÿ˜˜", "url": "mxc://redxafa.world/dwQkqpLRDdStYpbqfbHHJhWu", "info": {"w": 256, "h": 256, "size": 221672, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/dwQkqpLRDdStYpbqfbHHJhWu", "thumbnail_info": {"w": 256, "h": 256, "size": 221672, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140221", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140221", "emoticons": ["๐Ÿ˜˜"]}}, {"body": "๐Ÿ‘", "url": "mxc://redxafa.world/uUutOxtiYcYBpeyMTFTlAYIF", "info": {"w": 256, "h": 256, "size": 219199, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uUutOxtiYcYBpeyMTFTlAYIF", "thumbnail_info": {"w": 256, "h": 256, "size": 219199, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140199", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140199", "emoticons": ["๐Ÿ‘"]}}, {"body": "๐Ÿ˜จ", "url": "mxc://redxafa.world/FdNuskKhcFFpcJyutijjKDAG", "info": {"w": 256, "h": 256, "size": 205343, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FdNuskKhcFFpcJyutijjKDAG", "thumbnail_info": {"w": 256, "h": 256, "size": 205343, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140200", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140200", "emoticons": ["๐Ÿ˜จ"]}}, {"body": "๐Ÿ‘‹", "url": "mxc://redxafa.world/CuXidKmfbFHwcnShHfdFHnOW", "info": {"w": 256, "h": 256, "size": 274817, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CuXidKmfbFHwcnShHfdFHnOW", "thumbnail_info": {"w": 256, "h": 256, "size": 274817, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140202", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140202", "emoticons": ["๐Ÿ‘‹"]}}, {"body": "๐Ÿ˜Ž", "url": "mxc://redxafa.world/owECpQIBmrtAoXFKgWNZIVxc", "info": {"w": 256, "h": 256, "size": 211125, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/owECpQIBmrtAoXFKgWNZIVxc", "thumbnail_info": {"w": 256, "h": 256, "size": 211125, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140201", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140201", "emoticons": ["๐Ÿ˜Ž"]}}, {"body": "โœŠ", "url": "mxc://redxafa.world/xgXzoByDCWtgvrfdZyEfVHQH", "info": {"w": 256, "h": 256, "size": 191133, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/xgXzoByDCWtgvrfdZyEfVHQH", "thumbnail_info": {"w": 256, "h": 256, "size": 191133, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140203", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140203", "emoticons": ["โœŠ"]}}, {"body": "๐Ÿค”", "url": "mxc://redxafa.world/NUCzcoyouwXtDDsARWJdatyR", "info": {"w": 256, "h": 256, "size": 295048, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/NUCzcoyouwXtDDsARWJdatyR", "thumbnail_info": {"w": 256, "h": 256, "size": 295048, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140204", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140204", "emoticons": ["๐Ÿค”"]}}, {"body": "๐Ÿ‘†", "url": "mxc://redxafa.world/EWocncIZfjpmhhFxXZhKlazr", "info": {"w": 256, "h": 256, "size": 280358, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/EWocncIZfjpmhhFxXZhKlazr", "thumbnail_info": {"w": 256, "h": 256, "size": 280358, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140205", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140205", "emoticons": ["๐Ÿ‘†"]}}, {"body": "๐Ÿ’ช", "url": "mxc://redxafa.world/bgdClvFGgHyYveSEunzZpXfl", "info": {"w": 256, "h": 256, "size": 195623, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/bgdClvFGgHyYveSEunzZpXfl", "thumbnail_info": {"w": 256, "h": 256, "size": 195623, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140206", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140206", "emoticons": ["๐Ÿ’ช"]}}, {"body": "โœ", "url": "mxc://redxafa.world/XYhYJPBtUCtrKeDIgEhcTWIo", "info": {"w": 256, "h": 256, "size": 200875, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/XYhYJPBtUCtrKeDIgEhcTWIo", "thumbnail_info": {"w": 256, "h": 256, "size": 200875, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140207", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140207", "emoticons": ["โœ"]}}, {"body": "๐Ÿคฆ", "url": "mxc://redxafa.world/dIkviEnqeyRmnniGjFsghDuJ", "info": {"w": 256, "h": 256, "size": 191234, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/dIkviEnqeyRmnniGjFsghDuJ", "thumbnail_info": {"w": 256, "h": 256, "size": 191234, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140208", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140208", "emoticons": ["๐Ÿคฆ"]}}, {"body": "๐Ÿ‘‰", "url": "mxc://redxafa.world/mWwORrEHKQeGrXKCqBHPaurE", "info": {"w": 256, "h": 256, "size": 208843, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/mWwORrEHKQeGrXKCqBHPaurE", "thumbnail_info": {"w": 256, "h": 256, "size": 208843, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140209", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140209", "emoticons": ["๐Ÿ‘‰"]}}, {"body": "๐Ÿ”ซ", "url": "mxc://redxafa.world/wRDgoLkqOjULqSLiGsOHbCWl", "info": {"w": 256, "h": 256, "size": 210643, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/wRDgoLkqOjULqSLiGsOHbCWl", "thumbnail_info": {"w": 256, "h": 256, "size": 210643, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140210", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140210", "emoticons": ["๐Ÿ”ซ"]}}, {"body": "๐Ÿ˜”", "url": "mxc://redxafa.world/nzgylxjzAmEdYqoTkYHswQrP", "info": {"w": 256, "h": 256, "size": 241362, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/nzgylxjzAmEdYqoTkYHswQrP", "thumbnail_info": {"w": 256, "h": 256, "size": 241362, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140243", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140243", "emoticons": ["๐Ÿ˜”"]}}, {"body": "๐Ÿ–•", "url": "mxc://redxafa.world/ftKHjFsvKfPBaRnxJDWEOktP", "info": {"w": 256, "h": 256, "size": 146717, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ftKHjFsvKfPBaRnxJDWEOktP", "thumbnail_info": {"w": 256, "h": 256, "size": 146717, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140211", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140211", "emoticons": ["๐Ÿ–•"]}}, {"body": "โ˜•", "url": "mxc://redxafa.world/iaJVWvdKCiSfgpYbntBiEpQd", "info": {"w": 256, "h": 256, "size": 227730, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/iaJVWvdKCiSfgpYbntBiEpQd", "thumbnail_info": {"w": 256, "h": 256, "size": 227730, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140224", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140224", "emoticons": ["โ˜•"]}}, {"body": "๐Ÿ˜ณ", "url": "mxc://redxafa.world/IxJbglrZdjOtgdfbPyZmnObx", "info": {"w": 256, "h": 256, "size": 224863, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/IxJbglrZdjOtgdfbPyZmnObx", "thumbnail_info": {"w": 256, "h": 256, "size": 224863, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140212", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140212", "emoticons": ["๐Ÿ˜ณ"]}}, {"body": "๐Ÿฆ", "url": "mxc://redxafa.world/qcjIxteTVWnNpDzynPTVmItf", "info": {"w": 256, "h": 256, "size": 227038, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/qcjIxteTVWnNpDzynPTVmItf", "thumbnail_info": {"w": 256, "h": 256, "size": 227038, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140244", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140244", "emoticons": ["๐Ÿฆ"]}}, {"body": "๐Ÿ˜’", "url": "mxc://redxafa.world/pcIrmCVWyZjRGWxDMyTABwgj", "info": {"w": 256, "h": 256, "size": 154522, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/pcIrmCVWyZjRGWxDMyTABwgj", "thumbnail_info": {"w": 256, "h": 256, "size": 154522, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140214", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140214", "emoticons": ["๐Ÿ˜’"]}}, {"body": "๐Ÿคท", "url": "mxc://redxafa.world/PtrCbumhRqsHPUmBEGEXPbGZ", "info": {"w": 256, "h": 256, "size": 174385, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/PtrCbumhRqsHPUmBEGEXPbGZ", "thumbnail_info": {"w": 256, "h": 256, "size": 174385, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140215", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140215", "emoticons": ["๐Ÿคท"]}}, {"body": "๐Ÿ˜ง", "url": "mxc://redxafa.world/wsYZoiknhwMXkofTlgfbYgFN", "info": {"w": 256, "h": 256, "size": 187986, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/wsYZoiknhwMXkofTlgfbYgFN", "thumbnail_info": {"w": 256, "h": 256, "size": 187986, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140216", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140216", "emoticons": ["๐Ÿ˜ง"]}}, {"body": "๐Ÿ˜ˆ", "url": "mxc://redxafa.world/pgKdYIjagUKspGAloHsznNnN", "info": {"w": 256, "h": 256, "size": 263637, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/pgKdYIjagUKspGAloHsznNnN", "thumbnail_info": {"w": 256, "h": 256, "size": 263637, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140218", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140218", "emoticons": ["๐Ÿ˜ˆ"]}}, {"body": "๐Ÿ’ฐ", "url": "mxc://redxafa.world/tSvdFEVmVpDpuJsPXVGvTxUe", "info": {"w": 256, "h": 256, "size": 280577, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/tSvdFEVmVpDpuJsPXVGvTxUe", "thumbnail_info": {"w": 256, "h": 256, "size": 280577, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140219", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140219", "emoticons": ["๐Ÿ’ฐ"]}}, {"body": "๐ŸŽผ", "url": "mxc://redxafa.world/vrVkHpHVKSAPdKgXvJndBahQ", "info": {"w": 256, "h": 256, "size": 263303, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/vrVkHpHVKSAPdKgXvJndBahQ", "thumbnail_info": {"w": 256, "h": 256, "size": 263303, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140220", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140220", "emoticons": ["๐ŸŽผ"]}}, {"body": "๐Ÿ˜‡", "url": "mxc://redxafa.world/AcCubQYxTESzovZZsCyxcFmM", "info": {"w": 256, "h": 256, "size": 175831, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/AcCubQYxTESzovZZsCyxcFmM", "thumbnail_info": {"w": 256, "h": 256, "size": 175831, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140238", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140238", "emoticons": ["๐Ÿ˜‡"]}}, {"body": "๐Ÿ™„", "url": "mxc://redxafa.world/olVqVfYMzvGhrplNZTSBSKTP", "info": {"w": 256, "h": 256, "size": 177303, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/olVqVfYMzvGhrplNZTSBSKTP", "thumbnail_info": {"w": 256, "h": 256, "size": 177303, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140223", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140223", "emoticons": ["๐Ÿ™„"]}}, {"body": "๐Ÿ˜ฐ", "url": "mxc://redxafa.world/tjDhwGSUkuNaaiIemXKrlMKa", "info": {"w": 256, "h": 256, "size": 219752, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/tjDhwGSUkuNaaiIemXKrlMKa", "thumbnail_info": {"w": 256, "h": 256, "size": 219752, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140225", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140225", "emoticons": ["๐Ÿ˜ฐ"]}}, {"body": "๐Ÿ˜ฅ", "url": "mxc://redxafa.world/vKGudEgeQCUogdBLuDoadjax", "info": {"w": 256, "h": 256, "size": 180473, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/vKGudEgeQCUogdBLuDoadjax", "thumbnail_info": {"w": 256, "h": 256, "size": 180473, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140226", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140226", "emoticons": ["๐Ÿ˜ฅ"]}}, {"body": "๐ŸŒน", "url": "mxc://redxafa.world/SEtcaHIyhPUKZkMGFbxYhukP", "info": {"w": 256, "h": 256, "size": 189951, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SEtcaHIyhPUKZkMGFbxYhukP", "thumbnail_info": {"w": 256, "h": 256, "size": 189951, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140227", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140227", "emoticons": ["๐ŸŒน"]}}, {"body": "๐Ÿ˜ถ", "url": "mxc://redxafa.world/AuqaKLLgvqsHkhnSxlTQnovw", "info": {"w": 256, "h": 256, "size": 167796, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/AuqaKLLgvqsHkhnSxlTQnovw", "thumbnail_info": {"w": 256, "h": 256, "size": 167796, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140228", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140228", "emoticons": ["๐Ÿ˜ถ"]}}, {"body": "๐Ÿ’ก", "url": "mxc://redxafa.world/ESknnNjHwWFeccQgJvqDTVqr", "info": {"w": 256, "h": 256, "size": 200938, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ESknnNjHwWFeccQgJvqDTVqr", "thumbnail_info": {"w": 256, "h": 256, "size": 200938, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140229", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140229", "emoticons": ["๐Ÿ’ก"]}}, {"body": "๐Ÿ", "url": "mxc://redxafa.world/VDEpVdqjPgEQOVYXfJRWmmTs", "info": {"w": 256, "h": 256, "size": 321206, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VDEpVdqjPgEQOVYXfJRWmmTs", "thumbnail_info": {"w": 256, "h": 256, "size": 321206, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140230", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140230", "emoticons": ["๐Ÿ"]}}, {"body": "โœ‹", "url": "mxc://redxafa.world/aVSlrgiLKlcOWXWMVEYPFFPh", "info": {"w": 256, "h": 256, "size": 228970, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/aVSlrgiLKlcOWXWMVEYPFFPh", "thumbnail_info": {"w": 256, "h": 256, "size": 228970, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140231", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140231", "emoticons": ["โœ‹"]}}, {"body": "๐Ÿ‘Œ", "url": "mxc://redxafa.world/OAzRRKphsmOpTZtYDciYCxSU", "info": {"w": 256, "h": 256, "size": 200478, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/OAzRRKphsmOpTZtYDciYCxSU", "thumbnail_info": {"w": 256, "h": 256, "size": 200478, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140232", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140232", "emoticons": ["๐Ÿ‘Œ"]}}, {"body": "๐Ÿ’‹", "url": "mxc://redxafa.world/RLtFVFYWksnULinPnYbAfjCl", "info": {"w": 256, "h": 256, "size": 146301, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/RLtFVFYWksnULinPnYbAfjCl", "thumbnail_info": {"w": 256, "h": 256, "size": 146301, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140233", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140233", "emoticons": ["๐Ÿ’‹"]}}, {"body": "๐Ÿ’ฅ", "url": "mxc://redxafa.world/lhhlwHHjkHgUbIjOEsacITiZ", "info": {"w": 256, "h": 256, "size": 201869, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/lhhlwHHjkHgUbIjOEsacITiZ", "thumbnail_info": {"w": 256, "h": 256, "size": 201869, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140235", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140235", "emoticons": ["๐Ÿ’ฅ"]}}, {"body": "๐Ÿšž", "url": "mxc://redxafa.world/hOewvBKKtBPuPSPkxjLrtVJz", "info": {"w": 256, "h": 256, "size": 228814, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hOewvBKKtBPuPSPkxjLrtVJz", "thumbnail_info": {"w": 256, "h": 256, "size": 228814, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140236", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140236", "emoticons": ["๐Ÿšž"]}}, {"body": "๐Ÿšฉ", "url": "mxc://redxafa.world/bqFbEanvDrfvlGXvYOVLRJCZ", "info": {"w": 256, "h": 256, "size": 196212, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/bqFbEanvDrfvlGXvYOVLRJCZ", "thumbnail_info": {"w": 256, "h": 256, "size": 196212, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140239", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140239", "emoticons": ["๐Ÿšฉ"]}}, {"body": "๐Ÿ™‚", "url": "mxc://redxafa.world/OJTwnLLRIuQpvnWhgVWVTbAu", "info": {"w": 256, "h": 256, "size": 172050, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/OJTwnLLRIuQpvnWhgVWVTbAu", "thumbnail_info": {"w": 256, "h": 256, "size": 172050, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-765673509304140245", "net.maunium.telegram.sticker": {"pack": {"id": "765673509304139781", "short_name": "Vlad_Len"}, "id": "765673509304140245", "emoticons": ["๐Ÿ™‚"]}}]} \ No newline at end of file diff --git a/web/packs/blinchik007.json b/web/packs/blinchik007.json new file mode 100644 index 0000000..118cbee --- /dev/null +++ b/web/packs/blinchik007.json @@ -0,0 +1 @@ +{"title": "ะบะพะผัƒะฝะธะทะผ ั‚ัะฝ", "id": "tg-3351224434013765639", "net.maunium.telegram.pack": {"short_name": "blinchik007", "hash": "919988656"}, "stickers": [{"body": "๐Ÿค”", "url": "mxc://redxafa.world/mFCBKSeNZSORhJZhlbwYrcWm", "info": {"w": 224, "h": 256, "size": 217390, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/mFCBKSeNZSORhJZhlbwYrcWm", "thumbnail_info": {"w": 224, "h": 256, "size": 217390, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765680", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765680", "emoticons": ["๐Ÿค”"]}}, {"body": "๐Ÿค”", "url": "mxc://redxafa.world/prcddxodEFwoqSkUjyaoEyhw", "info": {"w": 256, "h": 256, "size": 195441, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/prcddxodEFwoqSkUjyaoEyhw", "thumbnail_info": {"w": 256, "h": 256, "size": 195441, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765681", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765681", "emoticons": ["๐Ÿค”"]}}, {"body": "๐Ÿ˜†", "url": "mxc://redxafa.world/VkImJjZVuplVgNmvGGaBaOOZ", "info": {"w": 256, "h": 205, "size": 136310, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VkImJjZVuplVgNmvGGaBaOOZ", "thumbnail_info": {"w": 256, "h": 205, "size": 136310, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765682", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765682", "emoticons": ["๐Ÿ˜†"]}}, {"body": "โœ‹", "url": "mxc://redxafa.world/FzoCnWLRHtDoZyngCoAedUlA", "info": {"w": 256, "h": 256, "size": 190963, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FzoCnWLRHtDoZyngCoAedUlA", "thumbnail_info": {"w": 256, "h": 256, "size": 190963, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765683", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765683", "emoticons": ["โœ‹"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/cqKkDjORCZmKGUHEceBFYwAB", "info": {"w": 256, "h": 256, "size": 208981, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/cqKkDjORCZmKGUHEceBFYwAB", "thumbnail_info": {"w": 256, "h": 256, "size": 208981, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765684", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765684", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜ญ", "url": "mxc://redxafa.world/JhoUBVvvFeRArMVJDeKknZcA", "info": {"w": 256, "h": 256, "size": 165849, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/JhoUBVvvFeRArMVJDeKknZcA", "thumbnail_info": {"w": 256, "h": 256, "size": 165849, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765685", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765685", "emoticons": ["๐Ÿ˜ญ"]}}, {"body": "๐Ÿ˜’", "url": "mxc://redxafa.world/PSqHRqQJYlDtfBvoTtlOEgxW", "info": {"w": 256, "h": 256, "size": 177094, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/PSqHRqQJYlDtfBvoTtlOEgxW", "thumbnail_info": {"w": 256, "h": 256, "size": 177094, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765687", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765687", "emoticons": ["๐Ÿ˜’"]}}, {"body": "๐Ÿ˜ฎ", "url": "mxc://redxafa.world/VQLvhqFZxYcAIrwaNfogvgTs", "info": {"w": 256, "h": 256, "size": 181334, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VQLvhqFZxYcAIrwaNfogvgTs", "thumbnail_info": {"w": 256, "h": 256, "size": 181334, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765688", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765688", "emoticons": ["๐Ÿ˜ฎ"]}}, {"body": "๐Ÿ˜Ž", "url": "mxc://redxafa.world/qwMCfRKnsjbJqOButZGXKoaM", "info": {"w": 256, "h": 205, "size": 199111, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/qwMCfRKnsjbJqOButZGXKoaM", "thumbnail_info": {"w": 256, "h": 205, "size": 199111, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765689", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765689", "emoticons": ["๐Ÿ˜Ž"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/QcEULmhtAjQGQFdmQJSdkuyQ", "info": {"w": 256, "h": 205, "size": 155551, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QcEULmhtAjQGQFdmQJSdkuyQ", "thumbnail_info": {"w": 256, "h": 205, "size": 155551, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765690", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765690", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜ก", "url": "mxc://redxafa.world/fEnsxPRxRhoXdtVhLMGsksTn", "info": {"w": 256, "h": 217, "size": 233610, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/fEnsxPRxRhoXdtVhLMGsksTn", "thumbnail_info": {"w": 256, "h": 217, "size": 233610, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765691", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765691", "emoticons": ["๐Ÿ˜ก"]}}, {"body": "๐Ÿ‘Œ", "url": "mxc://redxafa.world/rUAMyTPMbVFXwOIAzQMRxaGM", "info": {"w": 256, "h": 205, "size": 185495, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/rUAMyTPMbVFXwOIAzQMRxaGM", "thumbnail_info": {"w": 256, "h": 205, "size": 185495, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765692", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765692", "emoticons": ["๐Ÿ‘Œ"]}}, {"body": "๐Ÿคฌ", "url": "mxc://redxafa.world/DEbcvPxLFvHnXMDvrwXTWTGE", "info": {"w": 256, "h": 205, "size": 196509, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/DEbcvPxLFvHnXMDvrwXTWTGE", "thumbnail_info": {"w": 256, "h": 205, "size": 196509, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765693", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765693", "emoticons": ["๐Ÿคฌ"]}}, {"body": "๐Ÿคซ", "url": "mxc://redxafa.world/uICnmUigKtPrDBeLuqJzLJnz", "info": {"w": 256, "h": 205, "size": 216051, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uICnmUigKtPrDBeLuqJzLJnz", "thumbnail_info": {"w": 256, "h": 205, "size": 216051, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765694", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765694", "emoticons": ["๐Ÿคซ"]}}, {"body": "๐Ÿ˜˜", "url": "mxc://redxafa.world/CwlwbZEVBXQjmIdNCyzuzOhD", "info": {"w": 256, "h": 205, "size": 182780, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CwlwbZEVBXQjmIdNCyzuzOhD", "thumbnail_info": {"w": 256, "h": 205, "size": 182780, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765695", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765695", "emoticons": ["๐Ÿ˜˜"]}}, {"body": "๐Ÿคจ", "url": "mxc://redxafa.world/XtumicURRjYiWBmUScQRPXpW", "info": {"w": 256, "h": 256, "size": 186680, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/XtumicURRjYiWBmUScQRPXpW", "thumbnail_info": {"w": 256, "h": 256, "size": 186680, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765696", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765696", "emoticons": ["๐Ÿคจ"]}}, {"body": "๐Ÿ‘", "url": "mxc://redxafa.world/WZQitICiTZOKlekoqjgMxDjg", "info": {"w": 256, "h": 256, "size": 195931, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/WZQitICiTZOKlekoqjgMxDjg", "thumbnail_info": {"w": 256, "h": 256, "size": 195931, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765697", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765697", "emoticons": ["๐Ÿ‘"]}}, {"body": "โœŒ๏ธ", "url": "mxc://redxafa.world/JRCfimHMBsuLQQJVaiUOnkOk", "info": {"w": 256, "h": 256, "size": 218514, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/JRCfimHMBsuLQQJVaiUOnkOk", "thumbnail_info": {"w": 256, "h": 256, "size": 218514, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765698", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765698", "emoticons": ["โœŒ"]}}, {"body": "๐Ÿ–•", "url": "mxc://redxafa.world/gZwerebFKQCmbfwtEYywjpKu", "info": {"w": 205, "h": 256, "size": 165891, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/gZwerebFKQCmbfwtEYywjpKu", "thumbnail_info": {"w": 205, "h": 256, "size": 165891, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765699", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765699", "emoticons": ["๐Ÿ–•"]}}, {"body": "๐Ÿฅณ", "url": "mxc://redxafa.world/TpwNXrXHlwyJyiwbrvpKZJqf", "info": {"w": 234, "h": 256, "size": 252875, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/TpwNXrXHlwyJyiwbrvpKZJqf", "thumbnail_info": {"w": 234, "h": 256, "size": 252875, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765700", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765700", "emoticons": ["๐Ÿฅณ"]}}, {"body": "๐Ÿ˜•", "url": "mxc://redxafa.world/zBUMzlyVJfUJymYBpwxmQqUK", "info": {"w": 256, "h": 256, "size": 200890, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/zBUMzlyVJfUJymYBpwxmQqUK", "thumbnail_info": {"w": 256, "h": 256, "size": 200890, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765702", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765702", "emoticons": ["๐Ÿ˜•"]}}, {"body": "๐Ÿคฌ", "url": "mxc://redxafa.world/BBKjjdRCOcjUALSaqGfcjPyp", "info": {"w": 256, "h": 256, "size": 250087, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/BBKjjdRCOcjUALSaqGfcjPyp", "thumbnail_info": {"w": 256, "h": 256, "size": 250087, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765686", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765686", "emoticons": ["๐Ÿคฌ"]}}, {"body": "โœŠ", "url": "mxc://redxafa.world/eBYqBewyNPzuJfcpaMdoniBL", "info": {"w": 256, "h": 170, "size": 230982, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/eBYqBewyNPzuJfcpaMdoniBL", "thumbnail_info": {"w": 256, "h": 170, "size": 230982, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013765848", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013765848", "emoticons": ["โœŠ"]}}, {"body": "๐Ÿ˜ฒ", "url": "mxc://redxafa.world/ROGnoxkWjOmPKDwbtyhwcrNc", "info": {"w": 256, "h": 212, "size": 197406, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ROGnoxkWjOmPKDwbtyhwcrNc", "thumbnail_info": {"w": 256, "h": 212, "size": 197406, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766187", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766187", "emoticons": ["๐Ÿคจ", "๐Ÿ˜•", "๐Ÿ˜ฒ", "๐Ÿง", "โ“", "โ”"]}}, {"body": "๐Ÿ˜ก", "url": "mxc://redxafa.world/VmdLvMByXcJgbussujWoMkgr", "info": {"w": 256, "h": 256, "size": 209728, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VmdLvMByXcJgbussujWoMkgr", "thumbnail_info": {"w": 256, "h": 256, "size": 209728, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766188", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766188", "emoticons": ["๐Ÿ˜ก", "๐Ÿคฌ", "๐Ÿ˜Ÿ", "๐Ÿ‘€", "๐Ÿ˜ณ"]}}, {"body": "๐ŸŒš", "url": "mxc://redxafa.world/wTIENzuhGGvgBuMgxGcLlWnr", "info": {"w": 256, "h": 159, "size": 249287, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/wTIENzuhGGvgBuMgxGcLlWnr", "thumbnail_info": {"w": 256, "h": 159, "size": 249287, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766190", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766190", "emoticons": ["๐ŸŒš", "๐Ÿ–ค"]}}, {"body": "๐Ÿ˜’", "url": "mxc://redxafa.world/lnnXhtoQZGwEYQrGNpoOWAbt", "info": {"w": 256, "h": 256, "size": 248618, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/lnnXhtoQZGwEYQrGNpoOWAbt", "thumbnail_info": {"w": 256, "h": 256, "size": 248618, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766191", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766191", "emoticons": ["๐Ÿ˜’"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/YUTErhDbzbuRJpnJvWNxASJc", "info": {"w": 256, "h": 256, "size": 200277, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/YUTErhDbzbuRJpnJvWNxASJc", "thumbnail_info": {"w": 256, "h": 256, "size": 200277, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766192", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766192", "emoticons": ["๐Ÿ˜", "๐Ÿ˜‹"]}}, {"body": "๐Ÿ˜‚", "url": "mxc://redxafa.world/WbXTYQuOfTITBSIPrpfOUPVV", "info": {"w": 256, "h": 256, "size": 208802, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/WbXTYQuOfTITBSIPrpfOUPVV", "thumbnail_info": {"w": 256, "h": 256, "size": 208802, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766193", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766193", "emoticons": ["๐Ÿ˜†", "๐Ÿ˜‚", "๐Ÿคฃ", "๐Ÿ˜€", "๐Ÿ˜ƒ"]}}, {"body": "๐Ÿ‘ฟ", "url": "mxc://redxafa.world/OnkMSQgOYDkfrglUvpnxBTbE", "info": {"w": 256, "h": 256, "size": 220891, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/OnkMSQgOYDkfrglUvpnxBTbE", "thumbnail_info": {"w": 256, "h": 256, "size": 220891, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766194", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766194", "emoticons": ["๐Ÿ˜", "๐Ÿ‘ฟ", "๐Ÿ˜ˆ"]}}, {"body": "๐Ÿณโ€๐ŸŒˆ", "url": "mxc://redxafa.world/tSWYqsrnQaOkDAOqReTpIaCX", "info": {"w": 256, "h": 256, "size": 259311, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/tSWYqsrnQaOkDAOqReTpIaCX", "thumbnail_info": {"w": 256, "h": 256, "size": 259311, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766195", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766195", "emoticons": ["๐Ÿณโ€๐ŸŒˆ", "๐Ÿ‘‹"]}}, {"body": "โœŒ๏ธ", "url": "mxc://redxafa.world/ibLdrvHffjJbSGWmmUjmtyxf", "info": {"w": 256, "h": 256, "size": 228681, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ibLdrvHffjJbSGWmmUjmtyxf", "thumbnail_info": {"w": 256, "h": 256, "size": 228681, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766196", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766196", "emoticons": ["โœŒ"]}}, {"body": "๐Ÿคซ", "url": "mxc://redxafa.world/BuRjSCptTsMIqSeEVokAfKaO", "info": {"w": 256, "h": 256, "size": 209503, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/BuRjSCptTsMIqSeEVokAfKaO", "thumbnail_info": {"w": 256, "h": 256, "size": 209503, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766197", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766197", "emoticons": ["๐Ÿคซ", "๐Ÿ˜ถ", "๐Ÿ‘†"]}}, {"body": "๐Ÿ˜ค", "url": "mxc://redxafa.world/rFfUlCaQYBwjscumoLoiTGOs", "info": {"w": 256, "h": 256, "size": 179891, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/rFfUlCaQYBwjscumoLoiTGOs", "thumbnail_info": {"w": 256, "h": 256, "size": 179891, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766198", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766198", "emoticons": ["๐Ÿ˜", "๐Ÿ˜ก", "๐Ÿ˜ณ", "๐Ÿ˜ค", "๐Ÿ˜ "]}}, {"body": "๐Ÿค“", "url": "mxc://redxafa.world/EMqwblcYmvinSKmhSRkwwKTZ", "info": {"w": 256, "h": 256, "size": 182667, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/EMqwblcYmvinSKmhSRkwwKTZ", "thumbnail_info": {"w": 256, "h": 256, "size": 182667, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766199", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766199", "emoticons": ["๐Ÿ˜Ž", "๐Ÿค“"]}}, {"body": "๐Ÿคฌ", "url": "mxc://redxafa.world/kEimWPHKAAgKAfIXRAvFxPtX", "info": {"w": 256, "h": 256, "size": 251910, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kEimWPHKAAgKAfIXRAvFxPtX", "thumbnail_info": {"w": 256, "h": 256, "size": 251910, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766200", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766200", "emoticons": ["๐Ÿคฌ", "๐Ÿคก"]}}, {"body": "๐Ÿ˜บ", "url": "mxc://redxafa.world/GPirCoaICLnRjmlBxolSJVSI", "info": {"w": 256, "h": 256, "size": 224228, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/GPirCoaICLnRjmlBxolSJVSI", "thumbnail_info": {"w": 256, "h": 256, "size": 224228, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766201", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766201", "emoticons": ["๐Ÿ˜บ", "๐Ÿ˜ธ", "๐Ÿ˜น", "๐Ÿ˜ฟ", "๐Ÿ˜พ", "๐Ÿ™€", "๐Ÿ˜ฝ", "๐Ÿ˜ผ"]}}, {"body": "๐Ÿฅฐ", "url": "mxc://redxafa.world/vwjyVUVHOPhvcQuWjvbYukgE", "info": {"w": 256, "h": 256, "size": 196797, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/vwjyVUVHOPhvcQuWjvbYukgE", "thumbnail_info": {"w": 256, "h": 256, "size": 196797, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766202", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766202", "emoticons": ["๐Ÿ˜", "๐Ÿ˜˜", "๐Ÿฅฐ"]}}, {"body": "โค๏ธ", "url": "mxc://redxafa.world/SXVvAfinwSmOlsPibbrBREMx", "info": {"w": 256, "h": 256, "size": 193482, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SXVvAfinwSmOlsPibbrBREMx", "thumbnail_info": {"w": 256, "h": 256, "size": 193482, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766203", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766203", "emoticons": ["๐Ÿ˜", "๐Ÿ˜˜", "๐Ÿ–ค", "๐Ÿฅฐ", "โค", "๐Ÿงก", "๐Ÿ’›", "๐Ÿ’š", "๐Ÿ’™", "๐Ÿ’œ", "๐Ÿค", "๐ŸคŽ", "โฃ", "๐Ÿ’•", "๐Ÿ’ž", "๐Ÿ’“", "๐Ÿ’—", "๐Ÿ’–", "๐Ÿ’˜", "๐Ÿ’"]}}, {"body": "๐Ÿ‘†", "url": "mxc://redxafa.world/dcqedcfTSpHCksbZFKxBYFAG", "info": {"w": 256, "h": 256, "size": 209272, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/dcqedcfTSpHCksbZFKxBYFAG", "thumbnail_info": {"w": 256, "h": 256, "size": 209272, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766207", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766207", "emoticons": ["๐Ÿ‘†", "๐Ÿ‘‡", "๐Ÿ‘‰", "๐Ÿ‘ˆ"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/lzzdQJsoKzkiZBtvMuWqdGgl", "info": {"w": 204, "h": 256, "size": 219182, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/lzzdQJsoKzkiZBtvMuWqdGgl", "thumbnail_info": {"w": 204, "h": 256, "size": 219182, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766208", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766208", "emoticons": ["๐Ÿ˜", "โค", "๐Ÿ˜", "๐Ÿ˜›"]}}, {"body": "๐Ÿ’ƒ", "url": "mxc://redxafa.world/IfSLOaFyJtPUdkrkbcmlwSUt", "info": {"w": 256, "h": 256, "size": 198202, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/IfSLOaFyJtPUdkrkbcmlwSUt", "thumbnail_info": {"w": 256, "h": 256, "size": 198202, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-3351224434013766209", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "3351224434013766209", "emoticons": ["๐Ÿ’ƒ", "๐Ÿ•บ", "๐Ÿ”ˆ", "๐Ÿ”Š", "๐Ÿ”‰", "๐Ÿ“ฃ", "๐Ÿ“ข"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/YOrTHAdobyZpJClXRcmJdxIx", "info": {"w": 256, "h": 256, "size": 148951, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/YOrTHAdobyZpJClXRcmJdxIx", "thumbnail_info": {"w": 256, "h": 256, "size": 148951, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-5237906174468165242", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "5237906174468165242", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ‘Œ", "url": "mxc://redxafa.world/rMbSlkAKIkyZsjaJgirhHLJH", "info": {"w": 256, "h": 256, "size": 211247, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/rMbSlkAKIkyZsjaJgirhHLJH", "thumbnail_info": {"w": 256, "h": 256, "size": 211247, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-5238033799421365289", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "5238033799421365289", "emoticons": ["๐Ÿ‘Œ"]}}, {"body": "๐Ÿ‘บ", "url": "mxc://redxafa.world/uLIqzFgvNTBptKMfaEZrXliK", "info": {"w": 256, "h": 256, "size": 145593, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uLIqzFgvNTBptKMfaEZrXliK", "thumbnail_info": {"w": 256, "h": 256, "size": 145593, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-5237954226562272849", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "5237954226562272849", "emoticons": ["๐Ÿ˜ก", "๐Ÿคฌ", "๐Ÿ‘บ", "๐Ÿ‘น"]}}, {"body": "๐Ÿฅ‚", "url": "mxc://redxafa.world/KHjMTdweafvJWHzKMbQTKhmA", "info": {"w": 256, "h": 256, "size": 233386, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/KHjMTdweafvJWHzKMbQTKhmA", "thumbnail_info": {"w": 256, "h": 256, "size": 233386, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-5238026205919185936", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "5238026205919185936", "emoticons": ["๐Ÿฅ‚", "๐Ÿป", "๐Ÿบ", "๐Ÿฅƒ", "๐Ÿท", "๐Ÿธ", "๐Ÿน"]}}, {"body": "๐Ÿ‘ˆ", "url": "mxc://redxafa.world/VIOvwAKpQZwKbeHOUQeRnAHe", "info": {"w": 256, "h": 183, "size": 156167, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VIOvwAKpQZwKbeHOUQeRnAHe", "thumbnail_info": {"w": 256, "h": 183, "size": 156167, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-5235605828639133843", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "5235605828639133843", "emoticons": ["๐Ÿ–•", "๐Ÿ‘‰", "๐Ÿ‘ˆ", "๐Ÿ”ซ"]}}, {"body": "๐Ÿ”ซ", "url": "mxc://redxafa.world/mfYqZRmlePMaSipOLgvihdWo", "info": {"w": 256, "h": 217, "size": 280253, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/mfYqZRmlePMaSipOLgvihdWo", "thumbnail_info": {"w": 256, "h": 217, "size": 280253, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-5238096832361402780", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "5238096832361402780", "emoticons": ["๐Ÿ”ซ"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/FhxuOvLFEXszruGqwDaiwGRm", "info": {"w": 256, "h": 256, "size": 215314, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FhxuOvLFEXszruGqwDaiwGRm", "thumbnail_info": {"w": 256, "h": 256, "size": 215314, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-5237929332931824917", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "5237929332931824917", "emoticons": ["๐Ÿ˜", "๐Ÿ˜ค"]}}, {"body": "๐Ÿฅบ", "url": "mxc://redxafa.world/EqyZHiPCsMRNyGdUjanjjXxs", "info": {"w": 256, "h": 256, "size": 210854, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/EqyZHiPCsMRNyGdUjanjjXxs", "thumbnail_info": {"w": 256, "h": 256, "size": 210854, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-5285329030097146222", "net.maunium.telegram.sticker": {"pack": {"id": "3351224434013765639", "short_name": "blinchik007"}, "id": "5285329030097146222", "emoticons": ["โค", "๐Ÿฅบ"]}}]} \ No newline at end of file diff --git a/web/packs/index.json b/web/packs/index.json new file mode 100644 index 0000000..6c567e8 --- /dev/null +++ b/web/packs/index.json @@ -0,0 +1,13 @@ +{ + "packs": [ + "ChairmanMao.json", + "onekeymeow.json", + "Vlad_Len.json", + "blinchik007.json", + "Moedog.json", + "tieba_new.json", + "neko_neko_neko.json", + "Gensek.json" + ], + "homeserver_url": "https://redxafa.world" +} \ No newline at end of file diff --git a/web/packs/neko_neko_neko.json b/web/packs/neko_neko_neko.json new file mode 100644 index 0000000..e312e62 --- /dev/null +++ b/web/packs/neko_neko_neko.json @@ -0,0 +1 @@ +{"title": "Neko!", "id": "tg-5271549331902562305", "net.maunium.telegram.pack": {"short_name": "neko_neko_neko", "hash": "-570705599"}, "stickers": [{"body": "๐Ÿ˜ฏ", "url": "mxc://redxafa.world/nXyaFVajSbjlphJuwuuRQwtq", "info": {"w": 256, "h": 255, "size": 238896, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/nXyaFVajSbjlphJuwuuRQwtq", "thumbnail_info": {"w": 256, "h": 255, "size": 238896, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6246993072622666299", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6246993072622666299", "emoticons": ["๐Ÿ˜ฏ"]}}, {"body": "๐Ÿ˜ฑ", "url": "mxc://redxafa.world/WEKDtkgvGkOukcxXkZNPvRZA", "info": {"w": 256, "h": 256, "size": 200515, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/WEKDtkgvGkOukcxXkZNPvRZA", "thumbnail_info": {"w": 256, "h": 256, "size": 200515, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6246991251556532606", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6246991251556532606", "emoticons": ["๐Ÿ˜ฑ"]}}, {"body": "๐Ÿคจ", "url": "mxc://redxafa.world/okFTyMTjlGXMtAIjpOwEdvyD", "info": {"w": 256, "h": 255, "size": 250915, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/okFTyMTjlGXMtAIjpOwEdvyD", "thumbnail_info": {"w": 256, "h": 255, "size": 250915, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6246636285394420181", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6246636285394420181", "emoticons": ["๐Ÿคจ"]}}, {"body": "๐Ÿ˜ถ", "url": "mxc://redxafa.world/KpAbCLwEbhksobGfBTWDRYVo", "info": {"w": 256, "h": 256, "size": 157438, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/KpAbCLwEbhksobGfBTWDRYVo", "thumbnail_info": {"w": 256, "h": 256, "size": 157438, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6244573983832802023", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6244573983832802023", "emoticons": ["๐Ÿ˜ถ"]}}, {"body": "๐Ÿ˜œ", "url": "mxc://redxafa.world/iEOsUDmovTPHEnliOZdPyrNT", "info": {"w": 256, "h": 256, "size": 208922, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/iEOsUDmovTPHEnliOZdPyrNT", "thumbnail_info": {"w": 256, "h": 256, "size": 208922, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6246902727985594664", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6246902727985594664", "emoticons": ["๐Ÿ˜œ"]}}, {"body": "๐Ÿคช", "url": "mxc://redxafa.world/NzYBdCLoAqeghYHNWruoNkvs", "info": {"w": 256, "h": 256, "size": 189314, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/NzYBdCLoAqeghYHNWruoNkvs", "thumbnail_info": {"w": 256, "h": 256, "size": 189314, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6244544108040290930", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6244544108040290930", "emoticons": ["๐Ÿคช"]}}, {"body": "๐Ÿ˜ก", "url": "mxc://redxafa.world/MTBLRynaOartlQsNklfZQQDY", "info": {"w": 256, "h": 256, "size": 149655, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/MTBLRynaOartlQsNklfZQQDY", "thumbnail_info": {"w": 256, "h": 256, "size": 149655, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6246494547178684842", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6246494547178684842", "emoticons": ["๐Ÿ˜ก"]}}, {"body": "๐Ÿ™‚", "url": "mxc://redxafa.world/yKLKmysIssCaYbbNtFrtIwLj", "info": {"w": 256, "h": 256, "size": 207651, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/yKLKmysIssCaYbbNtFrtIwLj", "thumbnail_info": {"w": 256, "h": 256, "size": 207651, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6307713842784764510", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6307713842784764510", "emoticons": ["๐Ÿ™‚"]}}, {"body": "๐Ÿคจ", "url": "mxc://redxafa.world/kvddeaRVJgwKUoYWGDpcolnx", "info": {"w": 256, "h": 256, "size": 181806, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kvddeaRVJgwKUoYWGDpcolnx", "thumbnail_info": {"w": 256, "h": 256, "size": 181806, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6307772292994695615", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6307772292994695615", "emoticons": ["๐Ÿคจ"]}}, {"body": "๐Ÿ˜’", "url": "mxc://redxafa.world/UbPvmONzTlvyLulGIPBtldrf", "info": {"w": 256, "h": 256, "size": 169854, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/UbPvmONzTlvyLulGIPBtldrf", "thumbnail_info": {"w": 256, "h": 256, "size": 169854, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6310022585274859867", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6310022585274859867", "emoticons": ["๐Ÿ˜’"]}}, {"body": "๐Ÿ™ƒ", "url": "mxc://redxafa.world/uUtTmdMPadtMzLDDRTENPrQp", "info": {"w": 256, "h": 256, "size": 359769, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uUtTmdMPadtMzLDDRTENPrQp", "thumbnail_info": {"w": 256, "h": 256, "size": 359769, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6309599002715226621", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6309599002715226621", "emoticons": ["๐Ÿ™ƒ"]}}, {"body": "๐Ÿ™‹โ€โ™‚", "url": "mxc://redxafa.world/gYLhccbUeBYzrAAtngyzWlhu", "info": {"w": 256, "h": 256, "size": 355226, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/gYLhccbUeBYzrAAtngyzWlhu", "thumbnail_info": {"w": 256, "h": 256, "size": 355226, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6307812094456627677", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6307812094456627677", "emoticons": ["๐Ÿ™‹โ€โ™‚"]}}, {"body": "๐Ÿ˜„", "url": "mxc://redxafa.world/ovIqMhxykVovxHEmCYKSJpBX", "info": {"w": 256, "h": 256, "size": 255434, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ovIqMhxykVovxHEmCYKSJpBX", "thumbnail_info": {"w": 256, "h": 256, "size": 255434, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6307373015654990219", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6307373015654990219", "emoticons": ["๐Ÿ˜„"]}}, {"body": "๐Ÿ‘€", "url": "mxc://redxafa.world/eeVgWOanpXXFQrAJCZHcQpvN", "info": {"w": 256, "h": 256, "size": 290153, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/eeVgWOanpXXFQrAJCZHcQpvN", "thumbnail_info": {"w": 256, "h": 256, "size": 290153, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6307366349865746931", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6307366349865746931", "emoticons": ["๐Ÿ‘€"]}}, {"body": "๐Ÿ™‹โ€โ™‚", "url": "mxc://redxafa.world/LhtvgyVHlGPjaMfKlBDaujkn", "info": {"w": 256, "h": 256, "size": 334108, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/LhtvgyVHlGPjaMfKlBDaujkn", "thumbnail_info": {"w": 256, "h": 256, "size": 334108, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6309923083767513683", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6309923083767513683", "emoticons": ["๐Ÿ™‹โ€โ™‚"]}}, {"body": "๐Ÿค”", "url": "mxc://redxafa.world/eVmshjjXFPgYAFYmmTgkyRrN", "info": {"w": 255, "h": 256, "size": 331707, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/eVmshjjXFPgYAFYmmTgkyRrN", "thumbnail_info": {"w": 255, "h": 256, "size": 331707, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6309827576579752412", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6309827576579752412", "emoticons": ["๐Ÿค”"]}}, {"body": "๐Ÿง", "url": "mxc://redxafa.world/ZbuRGlVrYeDzUqoPTSozoLvN", "info": {"w": 256, "h": 256, "size": 329253, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ZbuRGlVrYeDzUqoPTSozoLvN", "thumbnail_info": {"w": 256, "h": 256, "size": 329253, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6309931441773871491", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6309931441773871491", "emoticons": ["๐Ÿง"]}}, {"body": "๐Ÿ‘€", "url": "mxc://redxafa.world/kVlNqLdXsioiMTQeQintWhae", "info": {"w": 256, "h": 256, "size": 218817, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kVlNqLdXsioiMTQeQintWhae", "thumbnail_info": {"w": 256, "h": 256, "size": 218817, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6309895604566753651", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6309895604566753651", "emoticons": ["๐Ÿ‘€"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/EJbqnooYuQRIftlyJjEIzqWP", "info": {"w": 256, "h": 255, "size": 208345, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/EJbqnooYuQRIftlyJjEIzqWP", "thumbnail_info": {"w": 256, "h": 255, "size": 208345, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6309839692682494291", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6309839692682494291", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜ ", "url": "mxc://redxafa.world/eKibChmYKTJDzTMLrmctltDu", "info": {"w": 256, "h": 256, "size": 338656, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/eKibChmYKTJDzTMLrmctltDu", "thumbnail_info": {"w": 256, "h": 256, "size": 338656, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6309655623269089771", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6309655623269089771", "emoticons": ["๐Ÿ˜ "]}}, {"body": "๐Ÿ˜œ", "url": "mxc://redxafa.world/aWqUPuCbAGreRHuhSsPGGMXl", "info": {"w": 256, "h": 255, "size": 229456, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/aWqUPuCbAGreRHuhSsPGGMXl", "thumbnail_info": {"w": 256, "h": 255, "size": 229456, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6309617492549435838", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6309617492549435838", "emoticons": ["๐Ÿ˜œ"]}}, {"body": "๐Ÿ˜’", "url": "mxc://redxafa.world/SUXMZUYffhKqJKKGsQzPOFHX", "info": {"w": 256, "h": 256, "size": 246759, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SUXMZUYffhKqJKKGsQzPOFHX", "thumbnail_info": {"w": 256, "h": 256, "size": 246759, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6309982010718814604", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6309982010718814604", "emoticons": ["๐Ÿ˜’"]}}, {"body": "๐Ÿคจ", "url": "mxc://redxafa.world/iPVbucEFyYBmyQztdcRQwMsd", "info": {"w": 256, "h": 256, "size": 482954, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/iPVbucEFyYBmyQztdcRQwMsd", "thumbnail_info": {"w": 256, "h": 256, "size": 482954, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6310097622648488421", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6310097622648488421", "emoticons": ["๐Ÿคจ"]}}, {"body": "๐Ÿ˜’", "url": "mxc://redxafa.world/ASJjFfzjDNhEYIiJSuWQbsfF", "info": {"w": 255, "h": 256, "size": 132384, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ASJjFfzjDNhEYIiJSuWQbsfF", "thumbnail_info": {"w": 255, "h": 256, "size": 132384, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6057863818376120006", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6057863818376120006", "emoticons": ["๐Ÿ˜’"]}}, {"body": "๐Ÿซค", "url": "mxc://redxafa.world/wrcvZPlHSZiOCkhjYkygRMQY", "info": {"w": 256, "h": 202, "size": 108166, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/wrcvZPlHSZiOCkhjYkygRMQY", "thumbnail_info": {"w": 256, "h": 202, "size": 108166, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-6073512729287591705", "net.maunium.telegram.sticker": {"pack": {"id": "5271549331902562305", "short_name": "neko_neko_neko"}, "id": "6073512729287591705", "emoticons": ["๐Ÿซค"]}}]} \ No newline at end of file diff --git a/web/packs/onekeymeow.json b/web/packs/onekeymeow.json new file mode 100644 index 0000000..4d0edad --- /dev/null +++ b/web/packs/onekeymeow.json @@ -0,0 +1 @@ +{"title": "ไธ€้”ฎๅ–ตๅ–ต", "id": "tg-2360459157674393603", "net.maunium.telegram.pack": {"short_name": "onekeymeow", "hash": "56261143"}, "stickers": [{"body": "๐Ÿ˜ฉ", "url": "mxc://redxafa.world/fIzHworNiRswEmtkLdpUvNXe", "info": {"w": 249, "h": 256, "size": 234339, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/fIzHworNiRswEmtkLdpUvNXe", "thumbnail_info": {"w": 249, "h": 256, "size": 234339, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393675", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393675", "emoticons": ["๐Ÿ˜ฉ"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/exrLvHHzNaVmvpyPeKNDfhMf", "info": {"w": 256, "h": 256, "size": 231987, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/exrLvHHzNaVmvpyPeKNDfhMf", "thumbnail_info": {"w": 256, "h": 256, "size": 231987, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393637", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393637", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜ต", "url": "mxc://redxafa.world/AnwfxoPfPQtYaJeYeaslxMzU", "info": {"w": 256, "h": 256, "size": 225041, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/AnwfxoPfPQtYaJeYeaslxMzU", "thumbnail_info": {"w": 256, "h": 256, "size": 225041, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393636", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393636", "emoticons": ["๐Ÿ˜ต"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/rHydkomcyFacGpjTdxSJkIcS", "info": {"w": 256, "h": 256, "size": 234453, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/rHydkomcyFacGpjTdxSJkIcS", "thumbnail_info": {"w": 256, "h": 256, "size": 234453, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393638", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393638", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜‚", "url": "mxc://redxafa.world/vJjEwFkdgIXjuAOQvehVaIUK", "info": {"w": 256, "h": 256, "size": 255335, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/vJjEwFkdgIXjuAOQvehVaIUK", "thumbnail_info": {"w": 256, "h": 256, "size": 255335, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393644", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393644", "emoticons": ["๐Ÿ˜‚"]}}, {"body": "๐Ÿ˜‡", "url": "mxc://redxafa.world/OviFJNsNlULViNONhlhZwVwa", "info": {"w": 256, "h": 256, "size": 239712, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/OviFJNsNlULViNONhlhZwVwa", "thumbnail_info": {"w": 256, "h": 256, "size": 239712, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393646", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393646", "emoticons": ["๐Ÿ˜‡"]}}, {"body": "๐Ÿ˜ก", "url": "mxc://redxafa.world/xyfmfnTQtzlZXwgsXiVppVmK", "info": {"w": 256, "h": 256, "size": 219369, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/xyfmfnTQtzlZXwgsXiVppVmK", "thumbnail_info": {"w": 256, "h": 256, "size": 219369, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393657", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393657", "emoticons": ["๐Ÿ˜ก"]}}, {"body": "โ˜บ๏ธ", "url": "mxc://redxafa.world/JGGmvIEhXQevMEPWIeqPPoIV", "info": {"w": 256, "h": 256, "size": 191944, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/JGGmvIEhXQevMEPWIeqPPoIV", "thumbnail_info": {"w": 256, "h": 256, "size": 191944, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393658", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393658", "emoticons": ["โ˜บ"]}}, {"body": "๐Ÿถ", "url": "mxc://redxafa.world/lKPygDQjvCTLHiwqZDczsQKd", "info": {"w": 256, "h": 256, "size": 229489, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/lKPygDQjvCTLHiwqZDczsQKd", "thumbnail_info": {"w": 256, "h": 256, "size": 229489, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393645", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393645", "emoticons": ["๐Ÿถ"]}}, {"body": "๐Ÿ‰", "url": "mxc://redxafa.world/cQXqYSdItqDVkkokBrngYwhu", "info": {"w": 256, "h": 256, "size": 182526, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/cQXqYSdItqDVkkokBrngYwhu", "thumbnail_info": {"w": 256, "h": 256, "size": 182526, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393669", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393669", "emoticons": ["๐Ÿ‰"]}}, {"body": "๐Ÿ™‰", "url": "mxc://redxafa.world/FnGLxVojDTwfNtsgztHhzMtV", "info": {"w": 256, "h": 256, "size": 199464, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FnGLxVojDTwfNtsgztHhzMtV", "thumbnail_info": {"w": 256, "h": 256, "size": 199464, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393673", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393673", "emoticons": ["๐Ÿ™‰"]}}, {"body": "๐Ÿฅฐ", "url": "mxc://redxafa.world/QmPoyQIckuMMEFZtLphDfBHu", "info": {"w": 256, "h": 256, "size": 238704, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QmPoyQIckuMMEFZtLphDfBHu", "thumbnail_info": {"w": 256, "h": 256, "size": 238704, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393649", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393649", "emoticons": ["๐Ÿฅฐ"]}}, {"body": "๐Ÿ˜–", "url": "mxc://redxafa.world/tAprYYTDgTgIAGnQjdfdouAa", "info": {"w": 256, "h": 256, "size": 222367, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/tAprYYTDgTgIAGnQjdfdouAa", "thumbnail_info": {"w": 256, "h": 256, "size": 222367, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393655", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393655", "emoticons": ["๐Ÿ˜–"]}}, {"body": "๐Ÿฅต", "url": "mxc://redxafa.world/MTLZzQVRQiQpmorVYILLFOJV", "info": {"w": 256, "h": 256, "size": 213342, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/MTLZzQVRQiQpmorVYILLFOJV", "thumbnail_info": {"w": 256, "h": 256, "size": 213342, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393654", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393654", "emoticons": ["๐Ÿฅต"]}}, {"body": "๐Ÿ˜ซ", "url": "mxc://redxafa.world/qxwznEUKbIDLQzEpTPZMaBLf", "info": {"w": 256, "h": 256, "size": 237186, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/qxwznEUKbIDLQzEpTPZMaBLf", "thumbnail_info": {"w": 256, "h": 256, "size": 237186, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393651", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393651", "emoticons": ["๐Ÿ˜ซ"]}}, {"body": "๐Ÿคจ", "url": "mxc://redxafa.world/hmWdEEqilTjpWWWfkzDKBOmq", "info": {"w": 255, "h": 256, "size": 216939, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hmWdEEqilTjpWWWfkzDKBOmq", "thumbnail_info": {"w": 255, "h": 256, "size": 216939, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393643", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393643", "emoticons": ["๐Ÿคจ"]}}, {"body": "๐Ÿ˜ฑ", "url": "mxc://redxafa.world/fGbmmxlgyLyBVXLcAlQFtavd", "info": {"w": 256, "h": 256, "size": 372567, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/fGbmmxlgyLyBVXLcAlQFtavd", "thumbnail_info": {"w": 256, "h": 256, "size": 372567, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393639", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393639", "emoticons": ["๐Ÿ˜ฑ"]}}, {"body": "๐Ÿ˜‘", "url": "mxc://redxafa.world/NsTNVHDvJDMVMgXBczsqVgzs", "info": {"w": 256, "h": 256, "size": 215921, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/NsTNVHDvJDMVMgXBczsqVgzs", "thumbnail_info": {"w": 256, "h": 256, "size": 215921, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393640", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393640", "emoticons": ["๐Ÿ˜‘"]}}, {"body": "๐Ÿ˜•", "url": "mxc://redxafa.world/XcpYAAfxfWAbKQBwsTRcveZP", "info": {"w": 256, "h": 256, "size": 233403, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/XcpYAAfxfWAbKQBwsTRcveZP", "thumbnail_info": {"w": 256, "h": 256, "size": 233403, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393641", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393641", "emoticons": ["๐Ÿ˜•"]}}, {"body": "๐Ÿ˜ถ", "url": "mxc://redxafa.world/TLtIcrEcSYIYmStifVTyrzJV", "info": {"w": 249, "h": 256, "size": 233730, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/TLtIcrEcSYIYmStifVTyrzJV", "thumbnail_info": {"w": 249, "h": 256, "size": 233730, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393642", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393642", "emoticons": ["๐Ÿ˜ถ"]}}, {"body": "๐Ÿญ", "url": "mxc://redxafa.world/hGIMETWocSrDduKRCvQwgZRE", "info": {"w": 256, "h": 256, "size": 181834, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hGIMETWocSrDduKRCvQwgZRE", "thumbnail_info": {"w": 256, "h": 256, "size": 181834, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393671", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393671", "emoticons": ["๐Ÿญ"]}}, {"body": "๐Ÿญ", "url": "mxc://redxafa.world/HRwaEUxwmAuqJQggtlKbRpQU", "info": {"w": 256, "h": 256, "size": 200193, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/HRwaEUxwmAuqJQggtlKbRpQU", "thumbnail_info": {"w": 256, "h": 256, "size": 200193, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393672", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393672", "emoticons": ["๐Ÿญ"]}}, {"body": "๐Ÿ‰", "url": "mxc://redxafa.world/dDfCvkIqBRHyVrAaQpGcTdXl", "info": {"w": 256, "h": 256, "size": 177848, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/dDfCvkIqBRHyVrAaQpGcTdXl", "thumbnail_info": {"w": 256, "h": 256, "size": 177848, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393670", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393670", "emoticons": ["๐Ÿ‰"]}}, {"body": "๐Ÿง", "url": "mxc://redxafa.world/SrxrdQXFntIBsyZIpPQOzfJv", "info": {"w": 256, "h": 256, "size": 111278, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SrxrdQXFntIBsyZIpPQOzfJv", "thumbnail_info": {"w": 256, "h": 256, "size": 111278, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393648", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393648", "emoticons": ["๐Ÿง"]}}, {"body": "๐Ÿš", "url": "mxc://redxafa.world/qMkRsfeiXgQbpRDepQyRWoGW", "info": {"w": 256, "h": 256, "size": 177216, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/qMkRsfeiXgQbpRDepQyRWoGW", "thumbnail_info": {"w": 256, "h": 256, "size": 177216, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393650", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393650", "emoticons": ["๐Ÿš"]}}, {"body": "๐Ÿ‘", "url": "mxc://redxafa.world/CkWhbdaarpNocbtirZdFpZim", "info": {"w": 256, "h": 256, "size": 203830, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CkWhbdaarpNocbtirZdFpZim", "thumbnail_info": {"w": 256, "h": 256, "size": 203830, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393652", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393652", "emoticons": ["๐Ÿ‘"]}}, {"body": "๐Ÿ˜ฐ", "url": "mxc://redxafa.world/QYXNGsvgdjWniCBkIETFjSya", "info": {"w": 256, "h": 256, "size": 231173, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QYXNGsvgdjWniCBkIETFjSya", "thumbnail_info": {"w": 256, "h": 256, "size": 231173, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393656", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393656", "emoticons": ["๐Ÿ˜ฐ"]}}, {"body": "๐Ÿ”ช", "url": "mxc://redxafa.world/OAqsiXwgzNomKejnvlRdCFcR", "info": {"w": 256, "h": 256, "size": 176380, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/OAqsiXwgzNomKejnvlRdCFcR", "thumbnail_info": {"w": 256, "h": 256, "size": 176380, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393659", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393659", "emoticons": ["๐Ÿ”ช"]}}, {"body": "๐Ÿšฌ", "url": "mxc://redxafa.world/ZndGCVRuzHKEeKvQOfHwLfEv", "info": {"w": 256, "h": 256, "size": 198853, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ZndGCVRuzHKEeKvQOfHwLfEv", "thumbnail_info": {"w": 256, "h": 256, "size": 198853, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393660", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393660", "emoticons": ["๐Ÿšฌ"]}}, {"body": "โšฐ", "url": "mxc://redxafa.world/nixICEEZmGARKGBIAtAdKydd", "info": {"w": 256, "h": 256, "size": 169041, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/nixICEEZmGARKGBIAtAdKydd", "thumbnail_info": {"w": 256, "h": 256, "size": 169041, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393661", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393661", "emoticons": ["โšฐ"]}}, {"body": "โœˆ๏ธ", "url": "mxc://redxafa.world/FMenAoPcoxfHDfpSSCTyhrmz", "info": {"w": 256, "h": 256, "size": 179887, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FMenAoPcoxfHDfpSSCTyhrmz", "thumbnail_info": {"w": 256, "h": 256, "size": 179887, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393662", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393662", "emoticons": ["โœˆ"]}}, {"body": "๐ŸŒ", "url": "mxc://redxafa.world/tfIVCIyeXxnBxfynaRHfPidD", "info": {"w": 256, "h": 256, "size": 181921, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/tfIVCIyeXxnBxfynaRHfPidD", "thumbnail_info": {"w": 256, "h": 256, "size": 181921, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393663", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393663", "emoticons": ["๐ŸŒ"]}}, {"body": "๐ŸŒš", "url": "mxc://redxafa.world/fnNPvlSTUPijcZClMUwqVjUl", "info": {"w": 256, "h": 256, "size": 184690, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/fnNPvlSTUPijcZClMUwqVjUl", "thumbnail_info": {"w": 256, "h": 256, "size": 184690, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393664", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393664", "emoticons": ["๐ŸŒš"]}}, {"body": "๐Ÿคฏ", "url": "mxc://redxafa.world/KXcvBiPGQkEzSlTRPPAePEPv", "info": {"w": 256, "h": 256, "size": 179906, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/KXcvBiPGQkEzSlTRPPAePEPv", "thumbnail_info": {"w": 256, "h": 256, "size": 179906, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393665", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393665", "emoticons": ["๐Ÿคฏ"]}}, {"body": "๐Ÿ™„", "url": "mxc://redxafa.world/ISrUqDKqgZAMaDcwWJiZalMY", "info": {"w": 256, "h": 256, "size": 184038, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ISrUqDKqgZAMaDcwWJiZalMY", "thumbnail_info": {"w": 256, "h": 256, "size": 184038, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393666", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393666", "emoticons": ["๐Ÿ™„"]}}, {"body": "๐Ÿค”", "url": "mxc://redxafa.world/wBRDYbwcFWWKZdXKtdNmHume", "info": {"w": 256, "h": 256, "size": 178999, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/wBRDYbwcFWWKZdXKtdNmHume", "thumbnail_info": {"w": 256, "h": 256, "size": 178999, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393667", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393667", "emoticons": ["๐Ÿค”"]}}, {"body": "๐Ÿ˜ฆ", "url": "mxc://redxafa.world/KVTFLDfPURYVBRPhyWUxrxRX", "info": {"w": 256, "h": 256, "size": 182432, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/KVTFLDfPURYVBRPhyWUxrxRX", "thumbnail_info": {"w": 256, "h": 256, "size": 182432, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393668", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393668", "emoticons": ["๐Ÿ˜ฆ"]}}, {"body": "๐Ÿ™ƒ", "url": "mxc://redxafa.world/nDPPBfNMMZnkJGbCthRcrkAT", "info": {"w": 256, "h": 256, "size": 151113, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/nDPPBfNMMZnkJGbCthRcrkAT", "thumbnail_info": {"w": 256, "h": 256, "size": 151113, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393647", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393647", "emoticons": ["๐Ÿ™ƒ"]}}, {"body": "๐Ÿ•ธ", "url": "mxc://redxafa.world/uIiBLDWIdqmDepDeCIQLczVg", "info": {"w": 256, "h": 256, "size": 318612, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uIiBLDWIdqmDepDeCIQLczVg", "thumbnail_info": {"w": 256, "h": 256, "size": 318612, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-2360459157674393674", "net.maunium.telegram.sticker": {"pack": {"id": "2360459157674393603", "short_name": "onekeymeow"}, "id": "2360459157674393674", "emoticons": ["๐Ÿ•ธ"]}}]} \ No newline at end of file diff --git a/web/packs/tieba_new.json b/web/packs/tieba_new.json new file mode 100644 index 0000000..5db7a9d --- /dev/null +++ b/web/packs/tieba_new.json @@ -0,0 +1 @@ +{"title": "่ดดๅงๆ–ฐ็‰ˆ่กจๆƒ… @pandecheng", "id": "tg-1392411891803881488", "net.maunium.telegram.pack": {"short_name": "tieba_new", "hash": "47945800"}, "stickers": [{"body": "๐Ÿ™‚", "url": "mxc://redxafa.world/RAwOTfPtvcvoWZEQynPMznOd", "info": {"w": 256, "h": 256, "size": 113094, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/RAwOTfPtvcvoWZEQynPMznOd", "thumbnail_info": {"w": 256, "h": 256, "size": 113094, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881977", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881977", "emoticons": ["๐Ÿ™‚"]}}, {"body": "๐Ÿ˜„", "url": "mxc://redxafa.world/FHCAHhmDKwfpCvBOxHvqRjkt", "info": {"w": 256, "h": 256, "size": 133176, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FHCAHhmDKwfpCvBOxHvqRjkt", "thumbnail_info": {"w": 256, "h": 256, "size": 133176, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881978", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881978", "emoticons": ["๐Ÿ˜„"]}}, {"body": "๐Ÿ˜‹", "url": "mxc://redxafa.world/FhQjHVPMDUzSOGAjFWqnZDsk", "info": {"w": 256, "h": 256, "size": 137338, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FhQjHVPMDUzSOGAjFWqnZDsk", "thumbnail_info": {"w": 256, "h": 256, "size": 137338, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881979", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881979", "emoticons": ["๐Ÿ˜‹"]}}, {"body": "๐Ÿ˜Œ", "url": "mxc://redxafa.world/svKFOaIoyTMUBMUWRNcAZhPA", "info": {"w": 256, "h": 256, "size": 157038, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/svKFOaIoyTMUBMUWRNcAZhPA", "thumbnail_info": {"w": 256, "h": 256, "size": 157038, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881980", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881980", "emoticons": ["๐Ÿ˜Œ"]}}, {"body": "๐Ÿ˜†", "url": "mxc://redxafa.world/fPBaPQnMAUSKFMfNBjSyjcrV", "info": {"w": 256, "h": 256, "size": 154214, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/fPBaPQnMAUSKFMfNBjSyjcrV", "thumbnail_info": {"w": 256, "h": 256, "size": 154214, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881981", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881981", "emoticons": ["๐Ÿ˜†"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/muSNqoMiLxBmejKqaNOyXCJz", "info": {"w": 256, "h": 256, "size": 160865, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/muSNqoMiLxBmejKqaNOyXCJz", "thumbnail_info": {"w": 256, "h": 256, "size": 160865, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881982", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881982", "emoticons": ["๐Ÿ˜"]}}, {"body": "โ˜บ๏ธ", "url": "mxc://redxafa.world/PrkScQijNEaDYjvSuLZuEuLk", "info": {"w": 256, "h": 256, "size": 111771, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/PrkScQijNEaDYjvSuLZuEuLk", "thumbnail_info": {"w": 256, "h": 256, "size": 111771, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881983", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881983", "emoticons": ["โ˜บ"]}}, {"body": "๐Ÿ˜‰", "url": "mxc://redxafa.world/kJKJpxPEBxQNcSPZCEgQlDPN", "info": {"w": 256, "h": 256, "size": 146390, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kJKJpxPEBxQNcSPZCEgQlDPN", "thumbnail_info": {"w": 256, "h": 256, "size": 146390, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881984", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881984", "emoticons": ["๐Ÿ˜‰"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/RKHkXSDMPBAXOlQxruKyzTNH", "info": {"w": 256, "h": 256, "size": 169559, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/RKHkXSDMPBAXOlQxruKyzTNH", "thumbnail_info": {"w": 256, "h": 256, "size": 169559, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881985", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881985", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/qCarhSiQHuTgoJDprJhrkMxt", "info": {"w": 256, "h": 256, "size": 131518, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/qCarhSiQHuTgoJDprJhrkMxt", "thumbnail_info": {"w": 256, "h": 256, "size": 131518, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881986", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881986", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜ฌ", "url": "mxc://redxafa.world/hIsBYGsKSnmkUcYHZqvOlkLb", "info": {"w": 256, "h": 256, "size": 136750, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hIsBYGsKSnmkUcYHZqvOlkLb", "thumbnail_info": {"w": 256, "h": 256, "size": 136750, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881987", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881987", "emoticons": ["๐Ÿ˜ฌ"]}}, {"body": "โ˜น๏ธ", "url": "mxc://redxafa.world/oKZqrOwuFhPkczrbeMzKXTSP", "info": {"w": 256, "h": 256, "size": 122404, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/oKZqrOwuFhPkczrbeMzKXTSP", "thumbnail_info": {"w": 256, "h": 256, "size": 122404, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881988", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881988", "emoticons": ["โ˜น"]}}, {"body": "๐Ÿคฌ", "url": "mxc://redxafa.world/mwksGnVHBiktQMhUGqZipzIR", "info": {"w": 256, "h": 256, "size": 137125, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/mwksGnVHBiktQMhUGqZipzIR", "thumbnail_info": {"w": 256, "h": 256, "size": 137125, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881989", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881989", "emoticons": ["๐Ÿคฌ"]}}, {"body": "๐Ÿ˜“", "url": "mxc://redxafa.world/OgCHLfhnxqclaskJxDwLllxm", "info": {"w": 256, "h": 256, "size": 123643, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/OgCHLfhnxqclaskJxDwLllxm", "thumbnail_info": {"w": 256, "h": 256, "size": 123643, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881990", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881990", "emoticons": ["๐Ÿ˜“"]}}, {"body": "๐Ÿคจ", "url": "mxc://redxafa.world/mFoWHyRWJNtyuXGCSlbUJPYj", "info": {"w": 256, "h": 256, "size": 130181, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/mFoWHyRWJNtyuXGCSlbUJPYj", "thumbnail_info": {"w": 256, "h": 256, "size": 130181, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881991", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881991", "emoticons": ["๐Ÿคจ"]}}, {"body": "๐Ÿ˜ญ", "url": "mxc://redxafa.world/vOhOiIsPyScpIbMhzfYnEgyW", "info": {"w": 256, "h": 256, "size": 163983, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/vOhOiIsPyScpIbMhzfYnEgyW", "thumbnail_info": {"w": 256, "h": 256, "size": 163983, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881992", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881992", "emoticons": ["๐Ÿ˜ญ"]}}, {"body": "๐Ÿ‘", "url": "mxc://redxafa.world/FXcyULoaGISbqZJJQlcUVUCl", "info": {"w": 256, "h": 256, "size": 154767, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/FXcyULoaGISbqZJJQlcUVUCl", "thumbnail_info": {"w": 256, "h": 256, "size": 154767, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881993", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881993", "emoticons": ["๐Ÿ‘"]}}, {"body": "๐Ÿ’ฆ", "url": "mxc://redxafa.world/ymcjjXNsLNmQrXdsUmWSyfdB", "info": {"w": 256, "h": 256, "size": 145377, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ymcjjXNsLNmQrXdsUmWSyfdB", "thumbnail_info": {"w": 256, "h": 256, "size": 145377, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881994", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881994", "emoticons": ["๐Ÿ’ฆ"]}}, {"body": "๐Ÿ˜จ", "url": "mxc://redxafa.world/GWRRAmmarGfOPeiAMkmzztgQ", "info": {"w": 256, "h": 256, "size": 156247, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/GWRRAmmarGfOPeiAMkmzztgQ", "thumbnail_info": {"w": 256, "h": 256, "size": 156247, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881995", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881995", "emoticons": ["๐Ÿ˜จ"]}}, {"body": "๐Ÿ˜ก", "url": "mxc://redxafa.world/uweeYGeOyoJmExoZFzhfrese", "info": {"w": 256, "h": 256, "size": 119224, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uweeYGeOyoJmExoZFzhfrese", "thumbnail_info": {"w": 256, "h": 256, "size": 119224, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881996", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881996", "emoticons": ["๐Ÿ˜ก"]}}, {"body": "๐Ÿ–•", "url": "mxc://redxafa.world/CDKzbaeFyZrGBYgYkKRzZhcn", "info": {"w": 256, "h": 256, "size": 143980, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CDKzbaeFyZrGBYgYkKRzZhcn", "thumbnail_info": {"w": 256, "h": 256, "size": 143980, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881997", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881997", "emoticons": ["๐Ÿ–•"]}}, {"body": "๐Ÿ˜Ž", "url": "mxc://redxafa.world/ZWvNeefWXXIMJFKKBEdsYeEN", "info": {"w": 256, "h": 256, "size": 163697, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ZWvNeefWXXIMJFKKBEdsYeEN", "thumbnail_info": {"w": 256, "h": 256, "size": 163697, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881998", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881998", "emoticons": ["๐Ÿ˜Ž"]}}, {"body": "๐Ÿ˜ฉ", "url": "mxc://redxafa.world/YMIkdQoRcJKBXNSZvkZiRzhU", "info": {"w": 256, "h": 256, "size": 146379, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/YMIkdQoRcJKBXNSZvkZiRzhU", "thumbnail_info": {"w": 256, "h": 256, "size": 146379, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803881999", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803881999", "emoticons": ["๐Ÿ˜ฉ"]}}, {"body": "๐Ÿ˜ฏ", "url": "mxc://redxafa.world/pFEEdBWgWBQZZDUqjaLWmzyC", "info": {"w": 256, "h": 256, "size": 140956, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/pFEEdBWgWBQZZDUqjaLWmzyC", "thumbnail_info": {"w": 256, "h": 256, "size": 140956, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882000", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882000", "emoticons": ["๐Ÿ˜ฏ"]}}, {"body": "๐Ÿ˜ฑ", "url": "mxc://redxafa.world/SxhypfkTfcdNFOWXHRFTmbzP", "info": {"w": 256, "h": 256, "size": 140721, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SxhypfkTfcdNFOWXHRFTmbzP", "thumbnail_info": {"w": 256, "h": 256, "size": 140721, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882001", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882001", "emoticons": ["๐Ÿ˜ฑ"]}}, {"body": "๐Ÿค”", "url": "mxc://redxafa.world/rvPlilCzrQiBOVRvtiZsqhjz", "info": {"w": 256, "h": 256, "size": 121731, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/rvPlilCzrQiBOVRvtiZsqhjz", "thumbnail_info": {"w": 256, "h": 256, "size": 121731, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882002", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882002", "emoticons": ["๐Ÿค”"]}}, {"body": "๐Ÿคช", "url": "mxc://redxafa.world/KIRBorfpNGpikKazrGqaPYDQ", "info": {"w": 256, "h": 256, "size": 157000, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/KIRBorfpNGpikKazrGqaPYDQ", "thumbnail_info": {"w": 256, "h": 256, "size": 157000, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882003", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882003", "emoticons": ["๐Ÿคช"]}}, {"body": "๐Ÿ˜†", "url": "mxc://redxafa.world/lCcIlBQVkznDsGGnOLLjHbvE", "info": {"w": 256, "h": 256, "size": 150858, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/lCcIlBQVkznDsGGnOLLjHbvE", "thumbnail_info": {"w": 256, "h": 256, "size": 150858, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882004", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882004", "emoticons": ["๐Ÿ˜†"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/SDYibwyjFaStIFICqRjtogyk", "info": {"w": 256, "h": 256, "size": 135322, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/SDYibwyjFaStIFICqRjtogyk", "thumbnail_info": {"w": 256, "h": 256, "size": 135322, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882005", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882005", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ˜ฒ", "url": "mxc://redxafa.world/MHVCfpwIGdjJzCDeCPnnojah", "info": {"w": 256, "h": 256, "size": 136918, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/MHVCfpwIGdjJzCDeCPnnojah", "thumbnail_info": {"w": 256, "h": 256, "size": 136918, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882006", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882006", "emoticons": ["๐Ÿ˜ฒ"]}}, {"body": "๐Ÿ˜ด", "url": "mxc://redxafa.world/xHNBfLlHLGtiZhjHtMqcvqJz", "info": {"w": 256, "h": 256, "size": 118813, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/xHNBfLlHLGtiZhjHtMqcvqJz", "thumbnail_info": {"w": 256, "h": 256, "size": 118813, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882007", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882007", "emoticons": ["๐Ÿ˜ด"]}}, {"body": "๐Ÿคฃ", "url": "mxc://redxafa.world/VjAUQSVXcwZQAqKLgzVgkkya", "info": {"w": 256, "h": 256, "size": 152953, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/VjAUQSVXcwZQAqKLgzVgkkya", "thumbnail_info": {"w": 256, "h": 256, "size": 152953, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882008", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882008", "emoticons": ["๐Ÿคฃ"]}}, {"body": "๐Ÿ˜ถ", "url": "mxc://redxafa.world/WtUgCPitnXFqAIJYlgElsxyA", "info": {"w": 256, "h": 256, "size": 144456, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/WtUgCPitnXFqAIJYlgElsxyA", "thumbnail_info": {"w": 256, "h": 256, "size": 144456, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882009", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882009", "emoticons": ["๐Ÿ˜ถ"]}}, {"body": "๐Ÿคฎ", "url": "mxc://redxafa.world/sWDWIuMErNvEeKfJBXHxqzyX", "info": {"w": 256, "h": 256, "size": 161078, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/sWDWIuMErNvEeKfJBXHxqzyX", "thumbnail_info": {"w": 256, "h": 256, "size": 161078, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882010", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882010", "emoticons": ["๐Ÿคฎ"]}}, {"body": "๐Ÿ˜ง", "url": "mxc://redxafa.world/cnglEPQSDQuiduOrzpwjfTWQ", "info": {"w": 256, "h": 256, "size": 127595, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/cnglEPQSDQuiduOrzpwjfTWQ", "thumbnail_info": {"w": 256, "h": 256, "size": 127595, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882011", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882011", "emoticons": ["๐Ÿ˜ง"]}}, {"body": "๐Ÿ˜ฎ", "url": "mxc://redxafa.world/nuoDPadTHgNynykLfscUsGve", "info": {"w": 256, "h": 256, "size": 142465, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/nuoDPadTHgNynykLfscUsGve", "thumbnail_info": {"w": 256, "h": 256, "size": 142465, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882012", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882012", "emoticons": ["๐Ÿ˜ฎ"]}}, {"body": "๐Ÿ˜‰", "url": "mxc://redxafa.world/heNrmBjLWlBPuQIKkIHBzfrV", "info": {"w": 256, "h": 256, "size": 122396, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/heNrmBjLWlBPuQIKkIHBzfrV", "thumbnail_info": {"w": 256, "h": 256, "size": 122396, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882013", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882013", "emoticons": ["๐Ÿ˜‰"]}}, {"body": "๐Ÿ˜ฌ", "url": "mxc://redxafa.world/GyEVUCfvLSvAzmiOANyZLIWt", "info": {"w": 256, "h": 256, "size": 154179, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/GyEVUCfvLSvAzmiOANyZLIWt", "thumbnail_info": {"w": 256, "h": 256, "size": 154179, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882014", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882014", "emoticons": ["๐Ÿ˜ฌ"]}}, {"body": "๐Ÿ˜Š", "url": "mxc://redxafa.world/CWWnbTJvCfpAwuibEvykJfri", "info": {"w": 256, "h": 256, "size": 131581, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CWWnbTJvCfpAwuibEvykJfri", "thumbnail_info": {"w": 256, "h": 256, "size": 131581, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882015", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882015", "emoticons": ["๐Ÿ˜Š"]}}, {"body": "๐Ÿค‘", "url": "mxc://redxafa.world/tIApxchQKRlQjDHHFwJPUHxB", "info": {"w": 256, "h": 256, "size": 159759, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/tIApxchQKRlQjDHHFwJPUHxB", "thumbnail_info": {"w": 256, "h": 256, "size": 159759, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882016", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882016", "emoticons": ["๐Ÿค‘"]}}, {"body": "๐Ÿ˜ ", "url": "mxc://redxafa.world/hsAmWZAqlafBKNutcbFksHsu", "info": {"w": 256, "h": 256, "size": 126414, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hsAmWZAqlafBKNutcbFksHsu", "thumbnail_info": {"w": 256, "h": 256, "size": 126414, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882017", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882017", "emoticons": ["๐Ÿ˜ "]}}, {"body": "๐Ÿ˜•", "url": "mxc://redxafa.world/CVHrrwIyHMFoVMaqHfnaqdSY", "info": {"w": 256, "h": 256, "size": 119085, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/CVHrrwIyHMFoVMaqHfnaqdSY", "thumbnail_info": {"w": 256, "h": 256, "size": 119085, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882018", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882018", "emoticons": ["๐Ÿ˜•"]}}, {"body": "๐Ÿ˜’", "url": "mxc://redxafa.world/kxFBGmMtNENBwXHEWFdunrnZ", "info": {"w": 256, "h": 256, "size": 128653, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kxFBGmMtNENBwXHEWFdunrnZ", "thumbnail_info": {"w": 256, "h": 256, "size": 128653, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882019", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882019", "emoticons": ["๐Ÿ˜’"]}}, {"body": "๐Ÿคฌ", "url": "mxc://redxafa.world/JtuyAFIQQlLuNfwSntygXPpt", "info": {"w": 256, "h": 256, "size": 173596, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/JtuyAFIQQlLuNfwSntygXPpt", "thumbnail_info": {"w": 256, "h": 256, "size": 173596, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882020", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882020", "emoticons": ["๐Ÿคฌ"]}}, {"body": "๐Ÿ˜ƒ", "url": "mxc://redxafa.world/mtadYheGlWTFDkmWmwMobTOr", "info": {"w": 256, "h": 256, "size": 153903, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/mtadYheGlWTFDkmWmwMobTOr", "thumbnail_info": {"w": 256, "h": 256, "size": 153903, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882021", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882021", "emoticons": ["๐Ÿ˜ƒ"]}}, {"body": "๐Ÿ’€", "url": "mxc://redxafa.world/ifvuCEWXEjZXoPUIDDKOiBMi", "info": {"w": 256, "h": 256, "size": 101221, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/ifvuCEWXEjZXoPUIDDKOiBMi", "thumbnail_info": {"w": 256, "h": 256, "size": 101221, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882022", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882022", "emoticons": ["๐Ÿ’€"]}}, {"body": "๐Ÿ˜ƒ", "url": "mxc://redxafa.world/yRZbGWlfPPJxRWWhXkNPCvNh", "info": {"w": 256, "h": 256, "size": 141758, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/yRZbGWlfPPJxRWWhXkNPCvNh", "thumbnail_info": {"w": 256, "h": 256, "size": 141758, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882023", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882023", "emoticons": ["๐Ÿ˜ƒ"]}}, {"body": "๐Ÿ™‚", "url": "mxc://redxafa.world/hbjGHvYLMOwjjtjrqPHlYGOl", "info": {"w": 256, "h": 256, "size": 176267, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hbjGHvYLMOwjjtjrqPHlYGOl", "thumbnail_info": {"w": 256, "h": 256, "size": 176267, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882024", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882024", "emoticons": ["๐Ÿ™‚"]}}, {"body": "๐Ÿ˜•", "url": "mxc://redxafa.world/DQezPLotLFAPGnURzPNNpDXj", "info": {"w": 256, "h": 256, "size": 130207, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/DQezPLotLFAPGnURzPNNpDXj", "thumbnail_info": {"w": 256, "h": 256, "size": 130207, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882025", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882025", "emoticons": ["๐Ÿ˜•"]}}, {"body": "๐Ÿ‰", "url": "mxc://redxafa.world/PbCXoCbFVJwqfsXCpXhGsRNr", "info": {"w": 256, "h": 256, "size": 155826, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/PbCXoCbFVJwqfsXCpXhGsRNr", "thumbnail_info": {"w": 256, "h": 256, "size": 155826, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882026", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882026", "emoticons": ["๐Ÿ‰"]}}, {"body": "๐Ÿ˜", "url": "mxc://redxafa.world/fGGUugXfealZJhbevGlrgnWW", "info": {"w": 256, "h": 256, "size": 150196, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/fGGUugXfealZJhbevGlrgnWW", "thumbnail_info": {"w": 256, "h": 256, "size": 150196, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882027", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882027", "emoticons": ["๐Ÿ˜"]}}, {"body": "๐Ÿ™„", "url": "mxc://redxafa.world/hGgZPDPwsGTIycYBvuDVdTUK", "info": {"w": 256, "h": 256, "size": 137840, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hGgZPDPwsGTIycYBvuDVdTUK", "thumbnail_info": {"w": 256, "h": 256, "size": 137840, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882028", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882028", "emoticons": ["๐Ÿ™„"]}}, {"body": "๐Ÿถ", "url": "mxc://redxafa.world/zqVvCsXaOflYHwbqDcThbZDj", "info": {"w": 256, "h": 256, "size": 179809, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/zqVvCsXaOflYHwbqDcThbZDj", "thumbnail_info": {"w": 256, "h": 256, "size": 179809, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882029", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882029", "emoticons": ["๐Ÿถ"]}}, {"body": "๐Ÿ˜ง", "url": "mxc://redxafa.world/QWtohdtJhLOKxoPDACRhjZVd", "info": {"w": 256, "h": 256, "size": 105557, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QWtohdtJhLOKxoPDACRhjZVd", "thumbnail_info": {"w": 256, "h": 256, "size": 105557, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882030", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882030", "emoticons": ["๐Ÿ˜ง"]}}, {"body": "๐Ÿถ", "url": "mxc://redxafa.world/wKOHUgKfYuWFlyxTzAhuwSSb", "info": {"w": 256, "h": 256, "size": 145200, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/wKOHUgKfYuWFlyxTzAhuwSSb", "thumbnail_info": {"w": 256, "h": 256, "size": 145200, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882031", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882031", "emoticons": ["๐Ÿถ"]}}, {"body": "๐Ÿบ", "url": "mxc://redxafa.world/UufrLqIYsjAYPeYfhLoIBtmP", "info": {"w": 256, "h": 256, "size": 166720, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/UufrLqIYsjAYPeYfhLoIBtmP", "thumbnail_info": {"w": 256, "h": 256, "size": 166720, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882032", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882032", "emoticons": ["๐Ÿบ"]}}, {"body": "๐Ÿ˜‚", "url": "mxc://redxafa.world/dPyLYFlsDnMbPuxvUcnPCKeS", "info": {"w": 256, "h": 256, "size": 174788, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/dPyLYFlsDnMbPuxvUcnPCKeS", "thumbnail_info": {"w": 256, "h": 256, "size": 174788, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882033", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882033", "emoticons": ["๐Ÿ˜‚"]}}, {"body": "๐Ÿ™", "url": "mxc://redxafa.world/rUeRNNqsLnxtvTlDVuEzOrzU", "info": {"w": 256, "h": 256, "size": 131772, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/rUeRNNqsLnxtvTlDVuEzOrzU", "thumbnail_info": {"w": 256, "h": 256, "size": 131772, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882034", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882034", "emoticons": ["๐Ÿ™"]}}, {"body": "๐Ÿคจ", "url": "mxc://redxafa.world/BxuIpuZbIYIRBeLxWVOqtuVX", "info": {"w": 256, "h": 256, "size": 144747, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/BxuIpuZbIYIRBeLxWVOqtuVX", "thumbnail_info": {"w": 256, "h": 256, "size": 144747, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882035", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882035", "emoticons": ["๐Ÿคจ"]}}, {"body": "๐Ÿ˜ˆ", "url": "mxc://redxafa.world/DoLsXYWbPQjYLBwBsWQihSvT", "info": {"w": 256, "h": 256, "size": 106375, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/DoLsXYWbPQjYLBwBsWQihSvT", "thumbnail_info": {"w": 256, "h": 256, "size": 106375, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882036", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882036", "emoticons": ["๐Ÿ˜ˆ"]}}, {"body": "โค๏ธ", "url": "mxc://redxafa.world/WJAwCfbAhtfnndBBMVKSjGbS", "info": {"w": 256, "h": 256, "size": 68233, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/WJAwCfbAhtfnndBBMVKSjGbS", "thumbnail_info": {"w": 256, "h": 256, "size": 68233, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882037", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882037", "emoticons": ["โค"]}}, {"body": "๐Ÿ’”", "url": "mxc://redxafa.world/MLGhMKyxbrUNVNSStiuLlDKq", "info": {"w": 256, "h": 256, "size": 107294, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/MLGhMKyxbrUNVNSStiuLlDKq", "thumbnail_info": {"w": 256, "h": 256, "size": 107294, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882038", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882038", "emoticons": ["๐Ÿ’”"]}}, {"body": "๐ŸŒน", "url": "mxc://redxafa.world/pYORNhPOJNbgwMQDlYXMNcrk", "info": {"w": 256, "h": 256, "size": 101905, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/pYORNhPOJNbgwMQDlYXMNcrk", "thumbnail_info": {"w": 256, "h": 256, "size": 101905, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882039", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882039", "emoticons": ["๐ŸŒน"]}}, {"body": "๐ŸŽ", "url": "mxc://redxafa.world/MVJmaygmsGkKFTnkGsFDdORk", "info": {"w": 256, "h": 256, "size": 111624, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/MVJmaygmsGkKFTnkGsFDdORk", "thumbnail_info": {"w": 256, "h": 256, "size": 111624, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882040", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882040", "emoticons": ["๐ŸŽ"]}}, {"body": "๐ŸŒˆ", "url": "mxc://redxafa.world/xlPNjhQvybSATvWXfpQgJzjL", "info": {"w": 256, "h": 256, "size": 99186, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/xlPNjhQvybSATvWXfpQgJzjL", "thumbnail_info": {"w": 256, "h": 256, "size": 99186, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882041", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882041", "emoticons": ["๐ŸŒˆ"]}}, {"body": "โ˜€๏ธ", "url": "mxc://redxafa.world/kZFEOQnTFGTmKOCfndWarSKp", "info": {"w": 256, "h": 256, "size": 106412, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kZFEOQnTFGTmKOCfndWarSKp", "thumbnail_info": {"w": 256, "h": 256, "size": 106412, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882042", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882042", "emoticons": ["โ˜€"]}}, {"body": "๐ŸŒ™", "url": "mxc://redxafa.world/hhjnExsXztxUoPsbjYZSTPay", "info": {"w": 256, "h": 256, "size": 82869, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hhjnExsXztxUoPsbjYZSTPay", "thumbnail_info": {"w": 256, "h": 256, "size": 82869, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882043", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882043", "emoticons": ["๐ŸŒ™"]}}, {"body": "๐Ÿ’ฐ", "url": "mxc://redxafa.world/wvqGsUWcYcWFuhycRdPPBGFJ", "info": {"w": 256, "h": 256, "size": 123833, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/wvqGsUWcYcWFuhycRdPPBGFJ", "thumbnail_info": {"w": 256, "h": 256, "size": 123833, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882044", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882044", "emoticons": ["๐Ÿ’ฐ"]}}, {"body": "โ˜•๏ธ", "url": "mxc://redxafa.world/GGAmGiWCNinriFAXWVQSEykS", "info": {"w": 256, "h": 256, "size": 111876, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/GGAmGiWCNinriFAXWVQSEykS", "thumbnail_info": {"w": 256, "h": 256, "size": 111876, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882045", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882045", "emoticons": ["โ˜•"]}}, {"body": "๐ŸŽ‚", "url": "mxc://redxafa.world/iwdCaUbHLIcweVYQKQhfLRXG", "info": {"w": 256, "h": 256, "size": 102124, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/iwdCaUbHLIcweVYQKQhfLRXG", "thumbnail_info": {"w": 256, "h": 256, "size": 102124, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882046", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882046", "emoticons": ["๐ŸŽ‚"]}}, {"body": "๐Ÿ‘", "url": "mxc://redxafa.world/DhjHTGKxHItPULyfljwzwtGu", "info": {"w": 256, "h": 256, "size": 111876, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/DhjHTGKxHItPULyfljwzwtGu", "thumbnail_info": {"w": 256, "h": 256, "size": 111876, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882047", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882047", "emoticons": ["๐Ÿ‘"]}}, {"body": "โœŒ๏ธ", "url": "mxc://redxafa.world/BPlxVAixkuokThTcQcjbtyTK", "info": {"w": 256, "h": 256, "size": 121245, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/BPlxVAixkuokThTcQcjbtyTK", "thumbnail_info": {"w": 256, "h": 256, "size": 121245, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882048", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882048", "emoticons": ["โœŒ"]}}, {"body": "๐ŸคŸ", "url": "mxc://redxafa.world/gadwXrAmmbuXcAdhDULwQrZg", "info": {"w": 256, "h": 256, "size": 120162, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/gadwXrAmmbuXcAdhDULwQrZg", "thumbnail_info": {"w": 256, "h": 256, "size": 120162, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882049", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882049", "emoticons": ["๐ŸคŸ"]}}, {"body": "๐Ÿ‘Œ", "url": "mxc://redxafa.world/jXVXyetJyjGZuTckrumKAijr", "info": {"w": 256, "h": 256, "size": 120223, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/jXVXyetJyjGZuTckrumKAijr", "thumbnail_info": {"w": 256, "h": 256, "size": 120223, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882050", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882050", "emoticons": ["๐Ÿ‘Œ"]}}, {"body": "๐Ÿ›‹", "url": "mxc://redxafa.world/qhKyPNRJLgmOQeKCETprGwlr", "info": {"w": 256, "h": 256, "size": 68000, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/qhKyPNRJLgmOQeKCETprGwlr", "thumbnail_info": {"w": 256, "h": 256, "size": 68000, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882051", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882051", "emoticons": ["๐Ÿ›‹"]}}, {"body": "๐Ÿ“ƒ", "url": "mxc://redxafa.world/BTDfMsMsCXxxDWOmwnhZTCXy", "info": {"w": 256, "h": 256, "size": 66430, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/BTDfMsMsCXxxDWOmwnhZTCXy", "thumbnail_info": {"w": 256, "h": 256, "size": 66430, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882052", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882052", "emoticons": ["๐Ÿ“ƒ"]}}, {"body": "๐ŸŒ", "url": "mxc://redxafa.world/meiMGiZvXYkzjkoKNEvtSNSW", "info": {"w": 256, "h": 256, "size": 105942, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/meiMGiZvXYkzjkoKNEvtSNSW", "thumbnail_info": {"w": 256, "h": 256, "size": 105942, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882053", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882053", "emoticons": ["๐ŸŒ"]}}, {"body": "๐Ÿ’ฉ", "url": "mxc://redxafa.world/JSivstzfcGsOwmisiUgcUQse", "info": {"w": 256, "h": 256, "size": 74596, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/JSivstzfcGsOwmisiUgcUQse", "thumbnail_info": {"w": 256, "h": 256, "size": 74596, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882054", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882054", "emoticons": ["๐Ÿ’ฉ"]}}, {"body": "๐Ÿ’Š", "url": "mxc://redxafa.world/NOOgEySFsodkUECAWlLxMNcx", "info": {"w": 256, "h": 256, "size": 86048, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/NOOgEySFsodkUECAWlLxMNcx", "thumbnail_info": {"w": 256, "h": 256, "size": 86048, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882055", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882055", "emoticons": ["๐Ÿ’Š"]}}, {"body": "๐Ÿงฃ", "url": "mxc://redxafa.world/uBhlZmAXvFcISGRJchXufGCV", "info": {"w": 256, "h": 256, "size": 78070, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/uBhlZmAXvFcISGRJchXufGCV", "thumbnail_info": {"w": 256, "h": 256, "size": 78070, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882056", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882056", "emoticons": ["๐Ÿงฃ"]}}, {"body": "๐Ÿ•ฏ", "url": "mxc://redxafa.world/hwTRxURWUihdRcCHQgCfRsdC", "info": {"w": 256, "h": 256, "size": 118512, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/hwTRxURWUihdRcCHQgCfRsdC", "thumbnail_info": {"w": 256, "h": 256, "size": 118512, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882057", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882057", "emoticons": ["๐Ÿ•ฏ"]}}, {"body": "โ“", "url": "mxc://redxafa.world/eMLRdGlNcnbTzSNEsGBELnsD", "info": {"w": 256, "h": 256, "size": 27354, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/eMLRdGlNcnbTzSNEsGBELnsD", "thumbnail_info": {"w": 256, "h": 256, "size": 27354, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882058", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882058", "emoticons": ["โ“"]}}, {"body": "๐ŸŽถ", "url": "mxc://redxafa.world/kGhMeQWdYksceHiqwzkQIBao", "info": {"w": 256, "h": 256, "size": 82890, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kGhMeQWdYksceHiqwzkQIBao", "thumbnail_info": {"w": 256, "h": 256, "size": 82890, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882059", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882059", "emoticons": ["๐ŸŽถ"]}}, {"body": "๐Ÿ’ก", "url": "mxc://redxafa.world/UdcnCiMJnSPoJLLMFeyICnvb", "info": {"w": 256, "h": 256, "size": 161124, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/UdcnCiMJnSPoJLLMFeyICnvb", "thumbnail_info": {"w": 256, "h": 256, "size": 161124, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882060", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882060", "emoticons": ["๐Ÿ’ก"]}}, {"body": "๐Ÿ˜Š", "url": "mxc://redxafa.world/BURrvppLAYMGjGtEJiLcgeAv", "info": {"w": 256, "h": 256, "size": 131250, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/BURrvppLAYMGjGtEJiLcgeAv", "thumbnail_info": {"w": 256, "h": 256, "size": 131250, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882061", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882061", "emoticons": ["๐Ÿ˜Š"]}}, {"body": "๐Ÿ˜…", "url": "mxc://redxafa.world/zBtudxDNenXrxEgLobOCJsbr", "info": {"w": 256, "h": 256, "size": 157015, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/zBtudxDNenXrxEgLobOCJsbr", "thumbnail_info": {"w": 256, "h": 256, "size": 157015, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882062", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882062", "emoticons": ["๐Ÿ˜…"]}}, {"body": "๐Ÿค•", "url": "mxc://redxafa.world/kLncqbqosDlBmpnhwwmDGiuI", "info": {"w": 256, "h": 256, "size": 155704, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/kLncqbqosDlBmpnhwwmDGiuI", "thumbnail_info": {"w": 256, "h": 256, "size": 155704, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882063", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882063", "emoticons": ["๐Ÿค•"]}}, {"body": "๐Ÿ˜‚", "url": "mxc://redxafa.world/NgdPOHGblhGNTzvZnvITbpNe", "info": {"w": 256, "h": 256, "size": 141651, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/NgdPOHGblhGNTzvZnvITbpNe", "thumbnail_info": {"w": 256, "h": 256, "size": 141651, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882064", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882064", "emoticons": ["๐Ÿ˜‚"]}}, {"body": "๐Ÿ˜€", "url": "mxc://redxafa.world/EkaQnGhAipFaYabDuoINDKtu", "info": {"w": 256, "h": 256, "size": 132045, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/EkaQnGhAipFaYabDuoINDKtu", "thumbnail_info": {"w": 256, "h": 256, "size": 132045, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882065", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882065", "emoticons": ["๐Ÿ˜€"]}}, {"body": "๐Ÿ˜Ž", "url": "mxc://redxafa.world/IdHpqsBABnbIpjjjAxVfqFTC", "info": {"w": 256, "h": 256, "size": 164390, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/IdHpqsBABnbIpjjjAxVfqFTC", "thumbnail_info": {"w": 256, "h": 256, "size": 164390, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882066", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882066", "emoticons": ["๐Ÿ˜Ž"]}}, {"body": "๐Ÿ™‚", "url": "mxc://redxafa.world/QjxqJIlPQpjTWezdIsOMgKlJ", "info": {"w": 256, "h": 256, "size": 118057, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/QjxqJIlPQpjTWezdIsOMgKlJ", "thumbnail_info": {"w": 256, "h": 256, "size": 118057, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882067", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882067", "emoticons": ["๐Ÿ™‚"]}}, {"body": "๐ŸŽ…", "url": "mxc://redxafa.world/znfOKQEclhYyItiXzOfoybsZ", "info": {"w": 256, "h": 256, "size": 153904, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/znfOKQEclhYyItiXzOfoybsZ", "thumbnail_info": {"w": 256, "h": 256, "size": 153904, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882068", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882068", "emoticons": ["๐ŸŽ…"]}}, {"body": "๐ŸŽ", "url": "mxc://redxafa.world/zZYWNxWhEmsTpAnCHYdGHPWS", "info": {"w": 256, "h": 256, "size": 165206, "mimetype": "image/png", "thumbnail_url": "mxc://redxafa.world/zZYWNxWhEmsTpAnCHYdGHPWS", "thumbnail_info": {"w": 256, "h": 256, "size": 165206, "mimetype": "image/png"}}, "msgtype": "m.sticker", "id": "tg-1392411891803882069", "net.maunium.telegram.sticker": {"pack": {"id": "1392411891803881488", "short_name": "tieba_new"}, "id": "1392411891803882069", "emoticons": ["๐ŸŽ"]}}]} \ No newline at end of file