async def _m(event):
    await event.edit("`Processing..`")
    id_s = event.chat_id
    lmao = await event.get_reply_message()
    if event.is_group:
        await event.edit("`No, LoL You Can't Set Channel Stickers In Groups, lol`")
        return
    if event.is_private:
        await event.edit(
            "`No, LoL You Can't Set Channel Stickers In Private Chats, lol`"
        )
        return
    if lmao.sticker.mime_type != "image/webp":
        await event.edit("`Only Sticker Allowded.`")
        return
    if is_data_indb(id_s):
        await event.edit(
            "`This Channel Sticker Data Is Already In Db, Remove First To Update it.`"
        )
        return
    if not is_data_indb(id_s):
        bot_api_file_id = pack_bot_file_id(lmao.media)
        add_new_data_in_db(id_s, bot_api_file_id)
        await event.edit(
            "`This Sticker Has Been Set As Channel Sticker For This Channel`"
        )
async def _m(event):
    await event.edit("`Processing..`")
    id_s = event.chat_id
    if is_data_indb(id_s):
        remove_datas(id_s)
        await event.edit("`Done, I have Removed This Channel From DB`")
    elif not is_data_indb(id_s):
        await event.edit("`You Need To Set Channel Sticker To Remove It`")
async def _m(event):
    await event.edit("`Processing..`")
    id_s = event.chat_id
    if is_data_indb(id_s):
        await event.edit(
            f"**Yes, Channel Sticker Has Been Set. Sticker ID :** `{is_data_indb(id_s)}`"
        )
    elif not is_data_indb(id_s):
        await event.edit("`No Channel Sticker Set For This Channel.`")
async def lul(event):
    lsb = event.chat_id
    id_s = event.chat_id
    if is_data_indb(event.chat_id):
        if event.text.startswith(tuple(lulstark)):
            return
        try:
            await borg.send_file(event.chat_id, is_data_indb(event.chat_id))
        except:
            await borg.send_message(
                Config.PRIVATE_GROUP_ID,
                f"Failed, To Send Sticker in {lsb}, Probably Due To No Access, Or Channel Not Found.",
            )
            return
    elif not is_data_indb(id_s):
        return