.eval import stringimport asynciofor I in string.ascii_lowercase: async for user in event.client.iter_participants(entity=event.chat_id, limit=1, search=I): await event.reply(f"[{I}](tg://user?id={user.id})") await asyncio.sleep(5)