electrogram 1.184.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- electrogram-1.184.0.dist-info/METADATA +27 -0
- electrogram-1.184.0.dist-info/RECORD +3066 -0
- electrogram-1.184.0.dist-info/WHEEL +4 -0
- electrogram-1.184.0.dist-info/licenses/LICENSE +21 -0
- pyrogram/__init__.py +37 -0
- pyrogram/client.py +903 -0
- pyrogram/connection/__init__.py +5 -0
- pyrogram/connection/connection.py +59 -0
- pyrogram/connection/transport/__init__.py +11 -0
- pyrogram/connection/transport/tcp/__init__.py +16 -0
- pyrogram/connection/transport/tcp/tcp.py +149 -0
- pyrogram/connection/transport/tcp/tcp_abridged.py +39 -0
- pyrogram/connection/transport/tcp/tcp_abridged_o.py +68 -0
- pyrogram/connection/transport/tcp/tcp_full.py +46 -0
- pyrogram/connection/transport/tcp/tcp_intermediate.py +27 -0
- pyrogram/connection/transport/tcp/tcp_intermediate_o.py +61 -0
- pyrogram/crypto/__init__.py +0 -0
- pyrogram/crypto/aes.py +20 -0
- pyrogram/crypto/mtproto.py +75 -0
- pyrogram/crypto/prime.py +59 -0
- pyrogram/crypto/rsa.py +147 -0
- pyrogram/dispatcher.py +280 -0
- pyrogram/emoji.py +4001 -0
- pyrogram/enums/__init__.py +39 -0
- pyrogram/enums/auto_name.py +9 -0
- pyrogram/enums/chat_action.py +22 -0
- pyrogram/enums/chat_event_action.py +32 -0
- pyrogram/enums/chat_member_status.py +10 -0
- pyrogram/enums/chat_members_filter.py +10 -0
- pyrogram/enums/chat_type.py +9 -0
- pyrogram/enums/client_platform.py +13 -0
- pyrogram/enums/listerner_types.py +6 -0
- pyrogram/enums/message_entity_type.py +26 -0
- pyrogram/enums/message_media_type.py +22 -0
- pyrogram/enums/message_service_type.py +34 -0
- pyrogram/enums/messages_filter.py +21 -0
- pyrogram/enums/next_code_type.py +9 -0
- pyrogram/enums/parse_mode.py +8 -0
- pyrogram/enums/profile_color.py +19 -0
- pyrogram/enums/reaction_type.py +7 -0
- pyrogram/enums/reply_color.py +25 -0
- pyrogram/enums/sent_code_type.py +11 -0
- pyrogram/enums/user_status.py +10 -0
- pyrogram/errors/__init__.py +40 -0
- pyrogram/errors/exceptions/__init__.py +10 -0
- pyrogram/errors/exceptions/all.py +634 -0
- pyrogram/errors/exceptions/bad_request_400.py +3273 -0
- pyrogram/errors/exceptions/flood_420.py +67 -0
- pyrogram/errors/exceptions/forbidden_403.py +326 -0
- pyrogram/errors/exceptions/internal_server_error_500.py +340 -0
- pyrogram/errors/exceptions/not_acceptable_406.py +158 -0
- pyrogram/errors/exceptions/see_other_303.py +46 -0
- pyrogram/errors/exceptions/service_unavailable_503.py +32 -0
- pyrogram/errors/exceptions/unauthorized_401.py +74 -0
- pyrogram/errors/rpc_error.py +84 -0
- pyrogram/file_id.py +412 -0
- pyrogram/filters.py +674 -0
- pyrogram/handlers/__init__.py +31 -0
- pyrogram/handlers/callback_query_handler.py +6 -0
- pyrogram/handlers/chat_join_request_handler.py +6 -0
- pyrogram/handlers/chat_member_updated_handler.py +6 -0
- pyrogram/handlers/chosen_inline_result_handler.py +6 -0
- pyrogram/handlers/conversation_handler.py +49 -0
- pyrogram/handlers/deleted_messages_handler.py +16 -0
- pyrogram/handlers/disconnect_handler.py +6 -0
- pyrogram/handlers/edited_message_handler.py +6 -0
- pyrogram/handlers/handler.py +23 -0
- pyrogram/handlers/inline_query_handler.py +6 -0
- pyrogram/handlers/message_handler.py +6 -0
- pyrogram/handlers/message_reaction_count_updated_handler.py +7 -0
- pyrogram/handlers/message_reaction_updated_handler.py +7 -0
- pyrogram/handlers/raw_update_handler.py +6 -0
- pyrogram/handlers/user_status_handler.py +6 -0
- pyrogram/methods/__init__.py +29 -0
- pyrogram/methods/advanced/__init__.py +11 -0
- pyrogram/methods/advanced/invoke.py +38 -0
- pyrogram/methods/advanced/resolve_peer.py +86 -0
- pyrogram/methods/advanced/save_file.py +174 -0
- pyrogram/methods/auth/__init__.py +35 -0
- pyrogram/methods/auth/accept_terms_of_service.py +18 -0
- pyrogram/methods/auth/check_password.py +28 -0
- pyrogram/methods/auth/connect.py +23 -0
- pyrogram/methods/auth/disconnect.py +16 -0
- pyrogram/methods/auth/get_password_hint.py +13 -0
- pyrogram/methods/auth/initialize.py +25 -0
- pyrogram/methods/auth/log_out.py +17 -0
- pyrogram/methods/auth/recover_password.py +24 -0
- pyrogram/methods/auth/resend_code.py +25 -0
- pyrogram/methods/auth/send_code.py +46 -0
- pyrogram/methods/auth/send_recovery_code.py +15 -0
- pyrogram/methods/auth/sign_in.py +37 -0
- pyrogram/methods/auth/sign_in_bot.py +47 -0
- pyrogram/methods/auth/sign_up.py +32 -0
- pyrogram/methods/auth/terminate.py +35 -0
- pyrogram/methods/bots/__init__.py +35 -0
- pyrogram/methods/bots/answer_callback_query.py +22 -0
- pyrogram/methods/bots/answer_inline_query.py +33 -0
- pyrogram/methods/bots/answer_web_app_query.py +19 -0
- pyrogram/methods/bots/delete_bot_commands.py +16 -0
- pyrogram/methods/bots/get_bot_commands.py +20 -0
- pyrogram/methods/bots/get_bot_default_privileges.py +23 -0
- pyrogram/methods/bots/get_bot_info.py +17 -0
- pyrogram/methods/bots/get_chat_menu_button.py +38 -0
- pyrogram/methods/bots/get_inline_bot_results.py +34 -0
- pyrogram/methods/bots/request_callback_answer.py +33 -0
- pyrogram/methods/bots/send_inline_bot_result.py +39 -0
- pyrogram/methods/bots/set_bot_commands.py +21 -0
- pyrogram/methods/bots/set_bot_default_privileges.py +32 -0
- pyrogram/methods/bots/set_bot_info.py +20 -0
- pyrogram/methods/bots/set_chat_menu_button.py +24 -0
- pyrogram/methods/chats/__init__.py +109 -0
- pyrogram/methods/chats/add_chat_members.py +39 -0
- pyrogram/methods/chats/archive_chats.py +31 -0
- pyrogram/methods/chats/ban_chat_member.py +56 -0
- pyrogram/methods/chats/close_forum_topic.py +19 -0
- pyrogram/methods/chats/close_general_topic.py +18 -0
- pyrogram/methods/chats/create_channel.py +20 -0
- pyrogram/methods/chats/create_forum_topic.py +25 -0
- pyrogram/methods/chats/create_group.py +24 -0
- pyrogram/methods/chats/create_supergroup.py +20 -0
- pyrogram/methods/chats/delete_channel.py +18 -0
- pyrogram/methods/chats/delete_chat_photo.py +31 -0
- pyrogram/methods/chats/delete_forum_topic.py +22 -0
- pyrogram/methods/chats/delete_supergroup.py +18 -0
- pyrogram/methods/chats/delete_user_history.py +20 -0
- pyrogram/methods/chats/edit_forum_topic.py +22 -0
- pyrogram/methods/chats/edit_general_topic.py +19 -0
- pyrogram/methods/chats/get_chat.py +43 -0
- pyrogram/methods/chats/get_chat_event_log.py +51 -0
- pyrogram/methods/chats/get_chat_member.py +52 -0
- pyrogram/methods/chats/get_chat_members.py +93 -0
- pyrogram/methods/chats/get_chat_members_count.py +31 -0
- pyrogram/methods/chats/get_chat_online_count.py +16 -0
- pyrogram/methods/chats/get_dialogs.py +71 -0
- pyrogram/methods/chats/get_dialogs_count.py +26 -0
- pyrogram/methods/chats/get_forum_topics.py +24 -0
- pyrogram/methods/chats/get_forum_topics_by_id.py +43 -0
- pyrogram/methods/chats/get_nearby_chats.py +39 -0
- pyrogram/methods/chats/get_send_as_chats.py +30 -0
- pyrogram/methods/chats/hide_general_topic.py +18 -0
- pyrogram/methods/chats/join_chat.py +32 -0
- pyrogram/methods/chats/leave_chat.py +37 -0
- pyrogram/methods/chats/mark_chat_unread.py +17 -0
- pyrogram/methods/chats/pin_chat_message.py +30 -0
- pyrogram/methods/chats/promote_chat_member.py +59 -0
- pyrogram/methods/chats/reopen_forum_topic.py +19 -0
- pyrogram/methods/chats/reopen_general_topic.py +18 -0
- pyrogram/methods/chats/restrict_chat_member.py +133 -0
- pyrogram/methods/chats/set_administrator_title.py +40 -0
- pyrogram/methods/chats/set_chat_description.py +25 -0
- pyrogram/methods/chats/set_chat_permissions.py +129 -0
- pyrogram/methods/chats/set_chat_photo.py +55 -0
- pyrogram/methods/chats/set_chat_protected_content.py +20 -0
- pyrogram/methods/chats/set_chat_title.py +32 -0
- pyrogram/methods/chats/set_chat_username.py +25 -0
- pyrogram/methods/chats/set_send_as_chat.py +18 -0
- pyrogram/methods/chats/set_slow_mode.py +20 -0
- pyrogram/methods/chats/unarchive_chats.py +31 -0
- pyrogram/methods/chats/unban_chat_member.py +23 -0
- pyrogram/methods/chats/unhide_general_topic.py +18 -0
- pyrogram/methods/chats/unpin_all_chat_messages.py +18 -0
- pyrogram/methods/chats/unpin_chat_message.py +21 -0
- pyrogram/methods/chats/update_color.py +33 -0
- pyrogram/methods/contacts/__init__.py +15 -0
- pyrogram/methods/contacts/add_contact.py +27 -0
- pyrogram/methods/contacts/delete_contacts.py +28 -0
- pyrogram/methods/contacts/get_contacts.py +16 -0
- pyrogram/methods/contacts/get_contacts_count.py +9 -0
- pyrogram/methods/contacts/import_contacts.py +19 -0
- pyrogram/methods/decorators/__init__.py +30 -0
- pyrogram/methods/decorators/on_callback_query.py +29 -0
- pyrogram/methods/decorators/on_chat_join_request.py +29 -0
- pyrogram/methods/decorators/on_chat_member_updated.py +29 -0
- pyrogram/methods/decorators/on_chosen_inline_result.py +29 -0
- pyrogram/methods/decorators/on_deleted_messages.py +29 -0
- pyrogram/methods/decorators/on_disconnect.py +19 -0
- pyrogram/methods/decorators/on_edited_message.py +29 -0
- pyrogram/methods/decorators/on_inline_query.py +29 -0
- pyrogram/methods/decorators/on_message.py +29 -0
- pyrogram/methods/decorators/on_message_reaction_count_updated.py +29 -0
- pyrogram/methods/decorators/on_message_reaction_updated.py +30 -0
- pyrogram/methods/decorators/on_raw_update.py +27 -0
- pyrogram/methods/decorators/on_user_status.py +29 -0
- pyrogram/methods/invite_links/__init__.py +39 -0
- pyrogram/methods/invite_links/approve_all_chat_join_requests.py +21 -0
- pyrogram/methods/invite_links/approve_chat_join_request.py +21 -0
- pyrogram/methods/invite_links/create_chat_invite_link.py +28 -0
- pyrogram/methods/invite_links/decline_all_chat_join_requests.py +21 -0
- pyrogram/methods/invite_links/decline_chat_join_request.py +21 -0
- pyrogram/methods/invite_links/delete_chat_admin_invite_links.py +18 -0
- pyrogram/methods/invite_links/delete_chat_invite_link.py +18 -0
- pyrogram/methods/invite_links/edit_chat_invite_link.py +32 -0
- pyrogram/methods/invite_links/export_chat_invite_link.py +20 -0
- pyrogram/methods/invite_links/get_chat_admin_invite_links.py +49 -0
- pyrogram/methods/invite_links/get_chat_admin_invite_links_count.py +23 -0
- pyrogram/methods/invite_links/get_chat_admins_with_invite_links.py +23 -0
- pyrogram/methods/invite_links/get_chat_invite_link.py +23 -0
- pyrogram/methods/invite_links/get_chat_invite_link_joiners.py +47 -0
- pyrogram/methods/invite_links/get_chat_invite_link_joiners_count.py +23 -0
- pyrogram/methods/invite_links/get_chat_join_requests.py +48 -0
- pyrogram/methods/invite_links/revoke_chat_invite_link.py +30 -0
- pyrogram/methods/messages/__init__.py +91 -0
- pyrogram/methods/messages/copy_media_group.py +81 -0
- pyrogram/methods/messages/copy_message.py +49 -0
- pyrogram/methods/messages/delete_messages.py +32 -0
- pyrogram/methods/messages/download_media.py +88 -0
- pyrogram/methods/messages/edit_inline_caption.py +20 -0
- pyrogram/methods/messages/edit_inline_media.py +188 -0
- pyrogram/methods/messages/edit_inline_reply_markup.py +25 -0
- pyrogram/methods/messages/edit_inline_text.py +32 -0
- pyrogram/methods/messages/edit_message_caption.py +26 -0
- pyrogram/methods/messages/edit_message_media.py +226 -0
- pyrogram/methods/messages/edit_message_reply_markup.py +29 -0
- pyrogram/methods/messages/edit_message_text.py +38 -0
- pyrogram/methods/messages/forward_messages.py +54 -0
- pyrogram/methods/messages/get_available_effects.py +28 -0
- pyrogram/methods/messages/get_chat_history.py +74 -0
- pyrogram/methods/messages/get_chat_history_count.py +31 -0
- pyrogram/methods/messages/get_custom_emoji_stickers.py +28 -0
- pyrogram/methods/messages/get_discussion_message.py +24 -0
- pyrogram/methods/messages/get_discussion_replies.py +46 -0
- pyrogram/methods/messages/get_discussion_replies_count.py +27 -0
- pyrogram/methods/messages/get_media_group.py +30 -0
- pyrogram/methods/messages/get_messages.py +48 -0
- pyrogram/methods/messages/inline_session.py +46 -0
- pyrogram/methods/messages/read_chat_history.py +28 -0
- pyrogram/methods/messages/search_global.py +58 -0
- pyrogram/methods/messages/search_global_count.py +27 -0
- pyrogram/methods/messages/search_messages.py +77 -0
- pyrogram/methods/messages/search_messages_count.py +39 -0
- pyrogram/methods/messages/send_animation.py +159 -0
- pyrogram/methods/messages/send_audio.py +131 -0
- pyrogram/methods/messages/send_cached_media.py +78 -0
- pyrogram/methods/messages/send_chat_action.py +69 -0
- pyrogram/methods/messages/send_contact.py +72 -0
- pyrogram/methods/messages/send_document.py +120 -0
- pyrogram/methods/messages/send_media_group.py +395 -0
- pyrogram/methods/messages/send_message.py +101 -0
- pyrogram/methods/messages/send_photo.py +115 -0
- pyrogram/methods/messages/send_reaction.py +53 -0
- pyrogram/methods/messages/send_sticker.py +111 -0
- pyrogram/methods/messages/send_video.py +145 -0
- pyrogram/methods/messages/send_video_note.py +125 -0
- pyrogram/methods/messages/send_voice.py +119 -0
- pyrogram/methods/messages/send_web_page.py +103 -0
- pyrogram/methods/messages/stream_media.py +46 -0
- pyrogram/methods/password/__init__.py +11 -0
- pyrogram/methods/password/change_cloud_password.py +35 -0
- pyrogram/methods/password/enable_cloud_password.py +36 -0
- pyrogram/methods/password/remove_cloud_password.py +27 -0
- pyrogram/methods/stickers/__init__.py +10 -0
- pyrogram/methods/stickers/add_sticker_to_set.py +40 -0
- pyrogram/methods/stickers/create_sticker_set.py +50 -0
- pyrogram/methods/stickers/get_sticker_set.py +18 -0
- pyrogram/methods/users/__init__.py +35 -0
- pyrogram/methods/users/block_user.py +18 -0
- pyrogram/methods/users/delete_profile_photos.py +21 -0
- pyrogram/methods/users/get_chat_photos.py +117 -0
- pyrogram/methods/users/get_chat_photos_count.py +36 -0
- pyrogram/methods/users/get_common_chats.py +26 -0
- pyrogram/methods/users/get_default_emoji_statuses.py +16 -0
- pyrogram/methods/users/get_me.py +18 -0
- pyrogram/methods/users/get_users.py +29 -0
- pyrogram/methods/users/set_emoji_status.py +22 -0
- pyrogram/methods/users/set_profile_photo.py +21 -0
- pyrogram/methods/users/set_username.py +18 -0
- pyrogram/methods/users/unblock_user.py +18 -0
- pyrogram/methods/users/update_birthday.py +18 -0
- pyrogram/methods/users/update_personal_chat.py +15 -0
- pyrogram/methods/users/update_profile.py +20 -0
- pyrogram/methods/utilities/__init__.py +23 -0
- pyrogram/methods/utilities/add_handler.py +17 -0
- pyrogram/methods/utilities/compose.py +24 -0
- pyrogram/methods/utilities/export_session_string.py +8 -0
- pyrogram/methods/utilities/idle.py +30 -0
- pyrogram/methods/utilities/remove_handler.py +15 -0
- pyrogram/methods/utilities/restart.py +18 -0
- pyrogram/methods/utilities/run.py +26 -0
- pyrogram/methods/utilities/run_sync.py +8 -0
- pyrogram/methods/utilities/start.py +31 -0
- pyrogram/methods/utilities/stop.py +18 -0
- pyrogram/methods/utilities/stop_transmission.py +7 -0
- pyrogram/mime_types.py +1861 -0
- pyrogram/parser/__init__.py +3 -0
- pyrogram/parser/html.py +215 -0
- pyrogram/parser/markdown.py +212 -0
- pyrogram/parser/parser.py +43 -0
- pyrogram/parser/utils.py +20 -0
- pyrogram/py.typed +0 -0
- pyrogram/raw/__init__.py +8 -0
- pyrogram/raw/all.py +2039 -0
- pyrogram/raw/base/__init__.py +351 -0
- pyrogram/raw/base/access_point_rule.py +35 -0
- pyrogram/raw/base/account/__init__.py +29 -0
- pyrogram/raw/base/account/authorization_form.py +44 -0
- pyrogram/raw/base/account/authorizations.py +44 -0
- pyrogram/raw/base/account/auto_download_settings.py +44 -0
- pyrogram/raw/base/account/auto_save_settings.py +44 -0
- pyrogram/raw/base/account/business_chat_links.py +44 -0
- pyrogram/raw/base/account/connected_bots.py +44 -0
- pyrogram/raw/base/account/content_settings.py +44 -0
- pyrogram/raw/base/account/email_verified.py +45 -0
- pyrogram/raw/base/account/emoji_statuses.py +47 -0
- pyrogram/raw/base/account/password.py +44 -0
- pyrogram/raw/base/account/password_input_settings.py +34 -0
- pyrogram/raw/base/account/password_settings.py +44 -0
- pyrogram/raw/base/account/privacy_rules.py +45 -0
- pyrogram/raw/base/account/reset_password_result.py +46 -0
- pyrogram/raw/base/account/resolved_business_chat_links.py +44 -0
- pyrogram/raw/base/account/saved_ringtone.py +45 -0
- pyrogram/raw/base/account/saved_ringtones.py +45 -0
- pyrogram/raw/base/account/sent_email_code.py +44 -0
- pyrogram/raw/base/account/takeout.py +44 -0
- pyrogram/raw/base/account/themes.py +46 -0
- pyrogram/raw/base/account/tmp_password.py +44 -0
- pyrogram/raw/base/account/wall_papers.py +45 -0
- pyrogram/raw/base/account/web_authorizations.py +44 -0
- pyrogram/raw/base/account_days_ttl.py +44 -0
- pyrogram/raw/base/attach_menu_bot.py +34 -0
- pyrogram/raw/base/attach_menu_bot_icon.py +34 -0
- pyrogram/raw/base/attach_menu_bot_icon_color.py +34 -0
- pyrogram/raw/base/attach_menu_bots.py +45 -0
- pyrogram/raw/base/attach_menu_bots_bot.py +44 -0
- pyrogram/raw/base/attach_menu_peer_type.py +38 -0
- pyrogram/raw/base/auth/__init__.py +14 -0
- pyrogram/raw/base/auth/authorization.py +51 -0
- pyrogram/raw/base/auth/code_type.py +38 -0
- pyrogram/raw/base/auth/exported_authorization.py +44 -0
- pyrogram/raw/base/auth/logged_out.py +44 -0
- pyrogram/raw/base/auth/login_token.py +47 -0
- pyrogram/raw/base/auth/password_recovery.py +44 -0
- pyrogram/raw/base/auth/sent_code.py +50 -0
- pyrogram/raw/base/auth/sent_code_type.py +44 -0
- pyrogram/raw/base/authorization.py +44 -0
- pyrogram/raw/base/auto_download_settings.py +34 -0
- pyrogram/raw/base/auto_save_exception.py +34 -0
- pyrogram/raw/base/auto_save_settings.py +34 -0
- pyrogram/raw/base/available_effect.py +34 -0
- pyrogram/raw/base/available_reaction.py +34 -0
- pyrogram/raw/base/bad_msg_notification.py +35 -0
- pyrogram/raw/base/bank_card_open_url.py +34 -0
- pyrogram/raw/base/base_theme.py +38 -0
- pyrogram/raw/base/bind_auth_key_inner.py +34 -0
- pyrogram/raw/base/birthday.py +34 -0
- pyrogram/raw/base/boost.py +34 -0
- pyrogram/raw/base/bot_app.py +35 -0
- pyrogram/raw/base/bot_business_connection.py +34 -0
- pyrogram/raw/base/bot_command.py +44 -0
- pyrogram/raw/base/bot_command_scope.py +40 -0
- pyrogram/raw/base/bot_info.py +34 -0
- pyrogram/raw/base/bot_inline_message.py +40 -0
- pyrogram/raw/base/bot_inline_result.py +35 -0
- pyrogram/raw/base/bot_menu_button.py +46 -0
- pyrogram/raw/base/bots/__init__.py +7 -0
- pyrogram/raw/base/bots/bot_info.py +44 -0
- pyrogram/raw/base/broadcast_revenue_balances.py +34 -0
- pyrogram/raw/base/broadcast_revenue_transaction.py +36 -0
- pyrogram/raw/base/business_away_message.py +34 -0
- pyrogram/raw/base/business_away_message_schedule.py +36 -0
- pyrogram/raw/base/business_bot_recipients.py +34 -0
- pyrogram/raw/base/business_chat_link.py +45 -0
- pyrogram/raw/base/business_greeting_message.py +34 -0
- pyrogram/raw/base/business_intro.py +34 -0
- pyrogram/raw/base/business_location.py +34 -0
- pyrogram/raw/base/business_recipients.py +34 -0
- pyrogram/raw/base/business_weekly_open.py +34 -0
- pyrogram/raw/base/business_work_hours.py +34 -0
- pyrogram/raw/base/cdn_config.py +44 -0
- pyrogram/raw/base/cdn_public_key.py +34 -0
- pyrogram/raw/base/channel_admin_log_event.py +34 -0
- pyrogram/raw/base/channel_admin_log_event_action.py +81 -0
- pyrogram/raw/base/channel_admin_log_events_filter.py +34 -0
- pyrogram/raw/base/channel_location.py +35 -0
- pyrogram/raw/base/channel_messages_filter.py +35 -0
- pyrogram/raw/base/channel_participant.py +39 -0
- pyrogram/raw/base/channel_participants_filter.py +41 -0
- pyrogram/raw/base/channels/__init__.py +11 -0
- pyrogram/raw/base/channels/admin_log_results.py +44 -0
- pyrogram/raw/base/channels/channel_participant.py +44 -0
- pyrogram/raw/base/channels/channel_participants.py +45 -0
- pyrogram/raw/base/channels/send_as_peers.py +44 -0
- pyrogram/raw/base/channels/sponsored_message_report_result.py +46 -0
- pyrogram/raw/base/chat.py +38 -0
- pyrogram/raw/base/chat_admin_rights.py +34 -0
- pyrogram/raw/base/chat_admin_with_invites.py +34 -0
- pyrogram/raw/base/chat_banned_rights.py +34 -0
- pyrogram/raw/base/chat_full.py +35 -0
- pyrogram/raw/base/chat_invite.py +46 -0
- pyrogram/raw/base/chat_invite_importer.py +34 -0
- pyrogram/raw/base/chat_onlines.py +44 -0
- pyrogram/raw/base/chat_participant.py +36 -0
- pyrogram/raw/base/chat_participants.py +35 -0
- pyrogram/raw/base/chat_photo.py +35 -0
- pyrogram/raw/base/chat_reactions.py +36 -0
- pyrogram/raw/base/chatlists/__init__.py +10 -0
- pyrogram/raw/base/chatlists/chatlist_invite.py +45 -0
- pyrogram/raw/base/chatlists/chatlist_updates.py +44 -0
- pyrogram/raw/base/chatlists/exported_chatlist_invite.py +44 -0
- pyrogram/raw/base/chatlists/exported_invites.py +44 -0
- pyrogram/raw/base/client_dh_inner_data.py +34 -0
- pyrogram/raw/base/code_settings.py +34 -0
- pyrogram/raw/base/config.py +44 -0
- pyrogram/raw/base/connected_bot.py +34 -0
- pyrogram/raw/base/contact.py +34 -0
- pyrogram/raw/base/contact_birthday.py +34 -0
- pyrogram/raw/base/contact_status.py +44 -0
- pyrogram/raw/base/contacts/__init__.py +13 -0
- pyrogram/raw/base/contacts/blocked.py +45 -0
- pyrogram/raw/base/contacts/contact_birthdays.py +44 -0
- pyrogram/raw/base/contacts/contacts.py +45 -0
- pyrogram/raw/base/contacts/found.py +44 -0
- pyrogram/raw/base/contacts/imported_contacts.py +44 -0
- pyrogram/raw/base/contacts/resolved_peer.py +45 -0
- pyrogram/raw/base/contacts/top_peers.py +46 -0
- pyrogram/raw/base/data_json.py +46 -0
- pyrogram/raw/base/dc_option.py +34 -0
- pyrogram/raw/base/default_history_ttl.py +44 -0
- pyrogram/raw/base/destroy_auth_key_res.py +46 -0
- pyrogram/raw/base/destroy_session_res.py +45 -0
- pyrogram/raw/base/dialog.py +35 -0
- pyrogram/raw/base/dialog_filter.py +36 -0
- pyrogram/raw/base/dialog_filter_suggested.py +44 -0
- pyrogram/raw/base/dialog_peer.py +45 -0
- pyrogram/raw/base/document.py +48 -0
- pyrogram/raw/base/document_attribute.py +41 -0
- pyrogram/raw/base/draft_message.py +35 -0
- pyrogram/raw/base/email_verification.py +36 -0
- pyrogram/raw/base/email_verify_purpose.py +36 -0
- pyrogram/raw/base/emoji_group.py +36 -0
- pyrogram/raw/base/emoji_keyword.py +35 -0
- pyrogram/raw/base/emoji_keywords_difference.py +45 -0
- pyrogram/raw/base/emoji_language.py +44 -0
- pyrogram/raw/base/emoji_list.py +49 -0
- pyrogram/raw/base/emoji_status.py +36 -0
- pyrogram/raw/base/emoji_url.py +44 -0
- pyrogram/raw/base/encrypted_chat.py +49 -0
- pyrogram/raw/base/encrypted_file.py +45 -0
- pyrogram/raw/base/encrypted_message.py +35 -0
- pyrogram/raw/base/exported_chat_invite.py +45 -0
- pyrogram/raw/base/exported_chatlist_invite.py +44 -0
- pyrogram/raw/base/exported_contact_token.py +44 -0
- pyrogram/raw/base/exported_message_link.py +44 -0
- pyrogram/raw/base/exported_story_link.py +44 -0
- pyrogram/raw/base/fact_check.py +44 -0
- pyrogram/raw/base/file_hash.py +46 -0
- pyrogram/raw/base/folder.py +34 -0
- pyrogram/raw/base/folder_peer.py +34 -0
- pyrogram/raw/base/forum_topic.py +35 -0
- pyrogram/raw/base/found_story.py +34 -0
- pyrogram/raw/base/fragment/__init__.py +7 -0
- pyrogram/raw/base/fragment/collectible_info.py +44 -0
- pyrogram/raw/base/game.py +34 -0
- pyrogram/raw/base/geo_point.py +35 -0
- pyrogram/raw/base/geo_point_address.py +34 -0
- pyrogram/raw/base/global_privacy_settings.py +45 -0
- pyrogram/raw/base/group_call.py +35 -0
- pyrogram/raw/base/group_call_participant.py +34 -0
- pyrogram/raw/base/group_call_participant_video.py +34 -0
- pyrogram/raw/base/group_call_participant_video_source_group.py +34 -0
- pyrogram/raw/base/group_call_stream_channel.py +34 -0
- pyrogram/raw/base/help/__init__.py +27 -0
- pyrogram/raw/base/help/app_config.py +45 -0
- pyrogram/raw/base/help/app_update.py +45 -0
- pyrogram/raw/base/help/config_simple.py +35 -0
- pyrogram/raw/base/help/countries_list.py +45 -0
- pyrogram/raw/base/help/country.py +34 -0
- pyrogram/raw/base/help/country_code.py +34 -0
- pyrogram/raw/base/help/deep_link_info.py +45 -0
- pyrogram/raw/base/help/invite_text.py +44 -0
- pyrogram/raw/base/help/passport_config.py +45 -0
- pyrogram/raw/base/help/peer_color_option.py +34 -0
- pyrogram/raw/base/help/peer_color_set.py +35 -0
- pyrogram/raw/base/help/peer_colors.py +46 -0
- pyrogram/raw/base/help/premium_promo.py +44 -0
- pyrogram/raw/base/help/promo_data.py +45 -0
- pyrogram/raw/base/help/recent_me_urls.py +44 -0
- pyrogram/raw/base/help/support.py +44 -0
- pyrogram/raw/base/help/support_name.py +44 -0
- pyrogram/raw/base/help/terms_of_service.py +34 -0
- pyrogram/raw/base/help/terms_of_service_update.py +45 -0
- pyrogram/raw/base/help/timezones_list.py +45 -0
- pyrogram/raw/base/help/user_info.py +46 -0
- pyrogram/raw/base/high_score.py +34 -0
- pyrogram/raw/base/http_wait.py +34 -0
- pyrogram/raw/base/imported_contact.py +34 -0
- pyrogram/raw/base/inline_bot_switch_pm.py +34 -0
- pyrogram/raw/base/inline_bot_web_view.py +34 -0
- pyrogram/raw/base/inline_query_peer_type.py +39 -0
- pyrogram/raw/base/input_app_event.py +34 -0
- pyrogram/raw/base/input_bot_app.py +35 -0
- pyrogram/raw/base/input_bot_inline_message.py +41 -0
- pyrogram/raw/base/input_bot_inline_message_id.py +35 -0
- pyrogram/raw/base/input_bot_inline_result.py +37 -0
- pyrogram/raw/base/input_business_away_message.py +34 -0
- pyrogram/raw/base/input_business_bot_recipients.py +34 -0
- pyrogram/raw/base/input_business_chat_link.py +34 -0
- pyrogram/raw/base/input_business_greeting_message.py +34 -0
- pyrogram/raw/base/input_business_intro.py +34 -0
- pyrogram/raw/base/input_business_recipients.py +34 -0
- pyrogram/raw/base/input_channel.py +36 -0
- pyrogram/raw/base/input_chat_photo.py +36 -0
- pyrogram/raw/base/input_chatlist.py +34 -0
- pyrogram/raw/base/input_check_password_srp.py +35 -0
- pyrogram/raw/base/input_client_proxy.py +34 -0
- pyrogram/raw/base/input_collectible.py +35 -0
- pyrogram/raw/base/input_contact.py +34 -0
- pyrogram/raw/base/input_dialog_peer.py +35 -0
- pyrogram/raw/base/input_document.py +35 -0
- pyrogram/raw/base/input_encrypted_chat.py +34 -0
- pyrogram/raw/base/input_encrypted_file.py +37 -0
- pyrogram/raw/base/input_file.py +35 -0
- pyrogram/raw/base/input_file_location.py +45 -0
- pyrogram/raw/base/input_folder_peer.py +34 -0
- pyrogram/raw/base/input_game.py +35 -0
- pyrogram/raw/base/input_geo_point.py +35 -0
- pyrogram/raw/base/input_group_call.py +34 -0
- pyrogram/raw/base/input_invoice.py +37 -0
- pyrogram/raw/base/input_media.py +51 -0
- pyrogram/raw/base/input_message.py +37 -0
- pyrogram/raw/base/input_notify_peer.py +38 -0
- pyrogram/raw/base/input_payment_credentials.py +37 -0
- pyrogram/raw/base/input_peer.py +40 -0
- pyrogram/raw/base/input_peer_notify_settings.py +34 -0
- pyrogram/raw/base/input_phone_call.py +34 -0
- pyrogram/raw/base/input_photo.py +35 -0
- pyrogram/raw/base/input_privacy_key.py +44 -0
- pyrogram/raw/base/input_privacy_rule.py +43 -0
- pyrogram/raw/base/input_quick_reply_shortcut.py +35 -0
- pyrogram/raw/base/input_reply_to.py +35 -0
- pyrogram/raw/base/input_secure_file.py +35 -0
- pyrogram/raw/base/input_secure_value.py +34 -0
- pyrogram/raw/base/input_single_media.py +34 -0
- pyrogram/raw/base/input_stars_transaction.py +34 -0
- pyrogram/raw/base/input_sticker_set.py +44 -0
- pyrogram/raw/base/input_sticker_set_item.py +34 -0
- pyrogram/raw/base/input_stickered_media.py +35 -0
- pyrogram/raw/base/input_store_payment_purpose.py +38 -0
- pyrogram/raw/base/input_theme.py +35 -0
- pyrogram/raw/base/input_theme_settings.py +34 -0
- pyrogram/raw/base/input_user.py +37 -0
- pyrogram/raw/base/input_wall_paper.py +36 -0
- pyrogram/raw/base/input_web_document.py +34 -0
- pyrogram/raw/base/input_web_file_location.py +36 -0
- pyrogram/raw/base/invoice.py +34 -0
- pyrogram/raw/base/ip_port.py +37 -0
- pyrogram/raw/base/json_object_value.py +34 -0
- pyrogram/raw/base/json_value.py +39 -0
- pyrogram/raw/base/keyboard_button.py +50 -0
- pyrogram/raw/base/keyboard_button_row.py +34 -0
- pyrogram/raw/base/labeled_price.py +34 -0
- pyrogram/raw/base/lang_pack_difference.py +45 -0
- pyrogram/raw/base/lang_pack_language.py +45 -0
- pyrogram/raw/base/lang_pack_string.py +46 -0
- pyrogram/raw/base/mask_coords.py +34 -0
- pyrogram/raw/base/media_area.py +40 -0
- pyrogram/raw/base/media_area_coordinates.py +34 -0
- pyrogram/raw/base/message.py +36 -0
- pyrogram/raw/base/message_action.py +77 -0
- pyrogram/raw/base/message_entity.py +54 -0
- pyrogram/raw/base/message_extended_media.py +35 -0
- pyrogram/raw/base/message_fwd_header.py +34 -0
- pyrogram/raw/base/message_media.py +62 -0
- pyrogram/raw/base/message_peer_reaction.py +34 -0
- pyrogram/raw/base/message_peer_vote.py +36 -0
- pyrogram/raw/base/message_range.py +44 -0
- pyrogram/raw/base/message_reactions.py +34 -0
- pyrogram/raw/base/message_replies.py +34 -0
- pyrogram/raw/base/message_reply_header.py +35 -0
- pyrogram/raw/base/message_views.py +34 -0
- pyrogram/raw/base/messages/__init__.py +62 -0
- pyrogram/raw/base/messages/affected_found_messages.py +44 -0
- pyrogram/raw/base/messages/affected_history.py +50 -0
- pyrogram/raw/base/messages/affected_messages.py +47 -0
- pyrogram/raw/base/messages/all_stickers.py +47 -0
- pyrogram/raw/base/messages/archived_stickers.py +44 -0
- pyrogram/raw/base/messages/available_effects.py +45 -0
- pyrogram/raw/base/messages/available_reactions.py +45 -0
- pyrogram/raw/base/messages/bot_app.py +44 -0
- pyrogram/raw/base/messages/bot_callback_answer.py +44 -0
- pyrogram/raw/base/messages/bot_results.py +44 -0
- pyrogram/raw/base/messages/chat_admins_with_invites.py +44 -0
- pyrogram/raw/base/messages/chat_full.py +45 -0
- pyrogram/raw/base/messages/chat_invite_importers.py +44 -0
- pyrogram/raw/base/messages/chats.py +52 -0
- pyrogram/raw/base/messages/checked_history_import_peer.py +44 -0
- pyrogram/raw/base/messages/dh_config.py +45 -0
- pyrogram/raw/base/messages/dialog_filters.py +44 -0
- pyrogram/raw/base/messages/dialogs.py +46 -0
- pyrogram/raw/base/messages/discussion_message.py +44 -0
- pyrogram/raw/base/messages/emoji_groups.py +48 -0
- pyrogram/raw/base/messages/exported_chat_invite.py +46 -0
- pyrogram/raw/base/messages/exported_chat_invites.py +44 -0
- pyrogram/raw/base/messages/faved_stickers.py +45 -0
- pyrogram/raw/base/messages/featured_stickers.py +47 -0
- pyrogram/raw/base/messages/forum_topics.py +45 -0
- pyrogram/raw/base/messages/found_sticker_sets.py +46 -0
- pyrogram/raw/base/messages/high_scores.py +45 -0
- pyrogram/raw/base/messages/history_import.py +44 -0
- pyrogram/raw/base/messages/history_import_parsed.py +44 -0
- pyrogram/raw/base/messages/inactive_chats.py +44 -0
- pyrogram/raw/base/messages/invited_users.py +46 -0
- pyrogram/raw/base/messages/message_edit_data.py +44 -0
- pyrogram/raw/base/messages/message_reactions_list.py +44 -0
- pyrogram/raw/base/messages/message_views.py +44 -0
- pyrogram/raw/base/messages/messages.py +61 -0
- pyrogram/raw/base/messages/my_stickers.py +44 -0
- pyrogram/raw/base/messages/peer_dialogs.py +45 -0
- pyrogram/raw/base/messages/peer_settings.py +44 -0
- pyrogram/raw/base/messages/quick_replies.py +45 -0
- pyrogram/raw/base/messages/reactions.py +47 -0
- pyrogram/raw/base/messages/recent_stickers.py +45 -0
- pyrogram/raw/base/messages/saved_dialogs.py +47 -0
- pyrogram/raw/base/messages/saved_gifs.py +45 -0
- pyrogram/raw/base/messages/saved_reaction_tags.py +45 -0
- pyrogram/raw/base/messages/search_counter.py +44 -0
- pyrogram/raw/base/messages/search_results_calendar.py +44 -0
- pyrogram/raw/base/messages/search_results_positions.py +44 -0
- pyrogram/raw/base/messages/sent_encrypted_message.py +47 -0
- pyrogram/raw/base/messages/sponsored_messages.py +45 -0
- pyrogram/raw/base/messages/sticker_set.py +53 -0
- pyrogram/raw/base/messages/sticker_set_install_result.py +45 -0
- pyrogram/raw/base/messages/stickers.py +45 -0
- pyrogram/raw/base/messages/transcribed_audio.py +44 -0
- pyrogram/raw/base/messages/translated_text.py +44 -0
- pyrogram/raw/base/messages/votes_list.py +44 -0
- pyrogram/raw/base/messages/web_page.py +44 -0
- pyrogram/raw/base/messages_filter.py +50 -0
- pyrogram/raw/base/missing_invitee.py +34 -0
- pyrogram/raw/base/msg_detailed_info.py +35 -0
- pyrogram/raw/base/msg_resend_req.py +35 -0
- pyrogram/raw/base/msgs_ack.py +34 -0
- pyrogram/raw/base/msgs_all_info.py +34 -0
- pyrogram/raw/base/msgs_state_info.py +34 -0
- pyrogram/raw/base/msgs_state_req.py +34 -0
- pyrogram/raw/base/my_boost.py +34 -0
- pyrogram/raw/base/nearest_dc.py +44 -0
- pyrogram/raw/base/new_session.py +34 -0
- pyrogram/raw/base/notification_sound.py +37 -0
- pyrogram/raw/base/notify_peer.py +38 -0
- pyrogram/raw/base/outbox_read_date.py +44 -0
- pyrogram/raw/base/page.py +34 -0
- pyrogram/raw/base/page_block.py +62 -0
- pyrogram/raw/base/page_caption.py +34 -0
- pyrogram/raw/base/page_list_item.py +35 -0
- pyrogram/raw/base/page_list_ordered_item.py +35 -0
- pyrogram/raw/base/page_related_article.py +34 -0
- pyrogram/raw/base/page_table_cell.py +34 -0
- pyrogram/raw/base/page_table_row.py +34 -0
- pyrogram/raw/base/password_kdf_algo.py +35 -0
- pyrogram/raw/base/payment_charge.py +34 -0
- pyrogram/raw/base/payment_form_method.py +34 -0
- pyrogram/raw/base/payment_requested_info.py +34 -0
- pyrogram/raw/base/payment_saved_credentials.py +34 -0
- pyrogram/raw/base/payments/__init__.py +19 -0
- pyrogram/raw/base/payments/bank_card_data.py +44 -0
- pyrogram/raw/base/payments/checked_gift_code.py +44 -0
- pyrogram/raw/base/payments/exported_invoice.py +44 -0
- pyrogram/raw/base/payments/giveaway_info.py +45 -0
- pyrogram/raw/base/payments/payment_form.py +45 -0
- pyrogram/raw/base/payments/payment_receipt.py +45 -0
- pyrogram/raw/base/payments/payment_result.py +46 -0
- pyrogram/raw/base/payments/saved_info.py +44 -0
- pyrogram/raw/base/payments/stars_revenue_ads_account_url.py +44 -0
- pyrogram/raw/base/payments/stars_revenue_stats.py +44 -0
- pyrogram/raw/base/payments/stars_revenue_withdrawal_url.py +44 -0
- pyrogram/raw/base/payments/stars_status.py +46 -0
- pyrogram/raw/base/payments/validated_requested_info.py +44 -0
- pyrogram/raw/base/peer.py +46 -0
- pyrogram/raw/base/peer_blocked.py +34 -0
- pyrogram/raw/base/peer_color.py +34 -0
- pyrogram/raw/base/peer_located.py +35 -0
- pyrogram/raw/base/peer_notify_settings.py +44 -0
- pyrogram/raw/base/peer_settings.py +34 -0
- pyrogram/raw/base/peer_stories.py +34 -0
- pyrogram/raw/base/phone/__init__.py +13 -0
- pyrogram/raw/base/phone/exported_group_call_invite.py +44 -0
- pyrogram/raw/base/phone/group_call.py +44 -0
- pyrogram/raw/base/phone/group_call_stream_channels.py +44 -0
- pyrogram/raw/base/phone/group_call_stream_rtmp_url.py +44 -0
- pyrogram/raw/base/phone/group_participants.py +44 -0
- pyrogram/raw/base/phone/join_as_peers.py +44 -0
- pyrogram/raw/base/phone/phone_call.py +46 -0
- pyrogram/raw/base/phone_call.py +39 -0
- pyrogram/raw/base/phone_call_discard_reason.py +37 -0
- pyrogram/raw/base/phone_call_protocol.py +34 -0
- pyrogram/raw/base/phone_connection.py +35 -0
- pyrogram/raw/base/photo.py +35 -0
- pyrogram/raw/base/photo_size.py +39 -0
- pyrogram/raw/base/photos/__init__.py +8 -0
- pyrogram/raw/base/photos/photo.py +46 -0
- pyrogram/raw/base/photos/photos.py +45 -0
- pyrogram/raw/base/poll.py +34 -0
- pyrogram/raw/base/poll_answer.py +34 -0
- pyrogram/raw/base/poll_answer_voters.py +34 -0
- pyrogram/raw/base/poll_results.py +34 -0
- pyrogram/raw/base/pong.py +45 -0
- pyrogram/raw/base/popular_contact.py +34 -0
- pyrogram/raw/base/post_address.py +34 -0
- pyrogram/raw/base/post_interaction_counters.py +35 -0
- pyrogram/raw/base/pq_inner_data.py +37 -0
- pyrogram/raw/base/premium/__init__.py +9 -0
- pyrogram/raw/base/premium/boosts_list.py +45 -0
- pyrogram/raw/base/premium/boosts_status.py +44 -0
- pyrogram/raw/base/premium/my_boosts.py +45 -0
- pyrogram/raw/base/premium_gift_code_option.py +44 -0
- pyrogram/raw/base/premium_gift_option.py +34 -0
- pyrogram/raw/base/premium_subscription_option.py +34 -0
- pyrogram/raw/base/prepaid_giveaway.py +34 -0
- pyrogram/raw/base/privacy_key.py +44 -0
- pyrogram/raw/base/privacy_rule.py +43 -0
- pyrogram/raw/base/public_forward.py +35 -0
- pyrogram/raw/base/quick_reply.py +34 -0
- pyrogram/raw/base/reaction.py +36 -0
- pyrogram/raw/base/reaction_count.py +34 -0
- pyrogram/raw/base/reaction_notifications_from.py +35 -0
- pyrogram/raw/base/reactions_notify_settings.py +45 -0
- pyrogram/raw/base/read_participant_date.py +44 -0
- pyrogram/raw/base/received_notify_message.py +44 -0
- pyrogram/raw/base/recent_me_url.py +38 -0
- pyrogram/raw/base/reply_markup.py +37 -0
- pyrogram/raw/base/report_reason.py +43 -0
- pyrogram/raw/base/request_peer_type.py +36 -0
- pyrogram/raw/base/requested_peer.py +36 -0
- pyrogram/raw/base/res_pq.py +45 -0
- pyrogram/raw/base/restriction_reason.py +34 -0
- pyrogram/raw/base/rich_text.py +49 -0
- pyrogram/raw/base/rpc_drop_answer.py +46 -0
- pyrogram/raw/base/rpc_error.py +34 -0
- pyrogram/raw/base/rpc_result.py +34 -0
- pyrogram/raw/base/saved_contact.py +44 -0
- pyrogram/raw/base/saved_dialog.py +34 -0
- pyrogram/raw/base/saved_reaction_tag.py +34 -0
- pyrogram/raw/base/search_results_calendar_period.py +34 -0
- pyrogram/raw/base/search_results_position.py +34 -0
- pyrogram/raw/base/secure_credentials_encrypted.py +34 -0
- pyrogram/raw/base/secure_data.py +34 -0
- pyrogram/raw/base/secure_file.py +35 -0
- pyrogram/raw/base/secure_password_kdf_algo.py +36 -0
- pyrogram/raw/base/secure_plain_data.py +35 -0
- pyrogram/raw/base/secure_required_type.py +35 -0
- pyrogram/raw/base/secure_secret_settings.py +34 -0
- pyrogram/raw/base/secure_value.py +46 -0
- pyrogram/raw/base/secure_value_error.py +42 -0
- pyrogram/raw/base/secure_value_hash.py +34 -0
- pyrogram/raw/base/secure_value_type.py +46 -0
- pyrogram/raw/base/send_as_peer.py +34 -0
- pyrogram/raw/base/send_message_action.py +51 -0
- pyrogram/raw/base/server_dh_inner_data.py +34 -0
- pyrogram/raw/base/server_dh_params.py +45 -0
- pyrogram/raw/base/set_client_dh_params_answer.py +46 -0
- pyrogram/raw/base/shipping_option.py +34 -0
- pyrogram/raw/base/sms_job.py +44 -0
- pyrogram/raw/base/smsjobs/__init__.py +8 -0
- pyrogram/raw/base/smsjobs/eligibility_to_join.py +44 -0
- pyrogram/raw/base/smsjobs/status.py +44 -0
- pyrogram/raw/base/sponsored_message.py +34 -0
- pyrogram/raw/base/sponsored_message_report_option.py +34 -0
- pyrogram/raw/base/stars_revenue_status.py +34 -0
- pyrogram/raw/base/stars_topup_option.py +44 -0
- pyrogram/raw/base/stars_transaction.py +34 -0
- pyrogram/raw/base/stars_transaction_peer.py +40 -0
- pyrogram/raw/base/stats/__init__.py +14 -0
- pyrogram/raw/base/stats/broadcast_revenue_stats.py +44 -0
- pyrogram/raw/base/stats/broadcast_revenue_transactions.py +44 -0
- pyrogram/raw/base/stats/broadcast_revenue_withdrawal_url.py +44 -0
- pyrogram/raw/base/stats/broadcast_stats.py +44 -0
- pyrogram/raw/base/stats/megagroup_stats.py +44 -0
- pyrogram/raw/base/stats/message_stats.py +44 -0
- pyrogram/raw/base/stats/public_forwards.py +45 -0
- pyrogram/raw/base/stats/story_stats.py +44 -0
- pyrogram/raw/base/stats_abs_value_and_prev.py +34 -0
- pyrogram/raw/base/stats_date_range_days.py +34 -0
- pyrogram/raw/base/stats_graph.py +46 -0
- pyrogram/raw/base/stats_group_top_admin.py +34 -0
- pyrogram/raw/base/stats_group_top_inviter.py +34 -0
- pyrogram/raw/base/stats_group_top_poster.py +34 -0
- pyrogram/raw/base/stats_percent_value.py +34 -0
- pyrogram/raw/base/stats_url.py +34 -0
- pyrogram/raw/base/sticker_keyword.py +34 -0
- pyrogram/raw/base/sticker_pack.py +34 -0
- pyrogram/raw/base/sticker_set.py +34 -0
- pyrogram/raw/base/sticker_set_covered.py +47 -0
- pyrogram/raw/base/stickers/__init__.py +7 -0
- pyrogram/raw/base/stickers/suggested_short_name.py +44 -0
- pyrogram/raw/base/storage/__init__.py +7 -0
- pyrogram/raw/base/storage/file_type.py +43 -0
- pyrogram/raw/base/stories/__init__.py +13 -0
- pyrogram/raw/base/stories/all_stories.py +45 -0
- pyrogram/raw/base/stories/found_stories.py +44 -0
- pyrogram/raw/base/stories/peer_stories.py +44 -0
- pyrogram/raw/base/stories/stories.py +46 -0
- pyrogram/raw/base/stories/story_reactions_list.py +44 -0
- pyrogram/raw/base/stories/story_views.py +44 -0
- pyrogram/raw/base/stories/story_views_list.py +44 -0
- pyrogram/raw/base/stories_stealth_mode.py +34 -0
- pyrogram/raw/base/story_fwd_header.py +34 -0
- pyrogram/raw/base/story_item.py +36 -0
- pyrogram/raw/base/story_reaction.py +36 -0
- pyrogram/raw/base/story_view.py +36 -0
- pyrogram/raw/base/story_views.py +34 -0
- pyrogram/raw/base/text_with_entities.py +34 -0
- pyrogram/raw/base/theme.py +46 -0
- pyrogram/raw/base/theme_settings.py +34 -0
- pyrogram/raw/base/timezone.py +34 -0
- pyrogram/raw/base/top_peer.py +34 -0
- pyrogram/raw/base/top_peer_category.py +41 -0
- pyrogram/raw/base/top_peer_category_peers.py +34 -0
- pyrogram/raw/base/update.py +172 -0
- pyrogram/raw/base/updates/__init__.py +9 -0
- pyrogram/raw/base/updates/channel_difference.py +46 -0
- pyrogram/raw/base/updates/difference.py +47 -0
- pyrogram/raw/base/updates/state.py +44 -0
- pyrogram/raw/base/updates_t.py +152 -0
- pyrogram/raw/base/upload/__init__.py +9 -0
- pyrogram/raw/base/upload/cdn_file.py +45 -0
- pyrogram/raw/base/upload/file.py +45 -0
- pyrogram/raw/base/upload/web_file.py +44 -0
- pyrogram/raw/base/url_auth_result.py +47 -0
- pyrogram/raw/base/user.py +49 -0
- pyrogram/raw/base/user_full.py +34 -0
- pyrogram/raw/base/user_profile_photo.py +35 -0
- pyrogram/raw/base/user_status.py +39 -0
- pyrogram/raw/base/username.py +34 -0
- pyrogram/raw/base/users/__init__.py +7 -0
- pyrogram/raw/base/users/user_full.py +44 -0
- pyrogram/raw/base/video_size.py +36 -0
- pyrogram/raw/base/wall_paper.py +47 -0
- pyrogram/raw/base/wall_paper_settings.py +34 -0
- pyrogram/raw/base/web_authorization.py +34 -0
- pyrogram/raw/base/web_document.py +35 -0
- pyrogram/raw/base/web_page.py +37 -0
- pyrogram/raw/base/web_page_attribute.py +36 -0
- pyrogram/raw/base/web_view_message_sent.py +44 -0
- pyrogram/raw/base/web_view_result.py +46 -0
- pyrogram/raw/core/__init__.py +13 -0
- pyrogram/raw/core/future_salt.py +35 -0
- pyrogram/raw/core/future_salts.py +45 -0
- pyrogram/raw/core/gzip_packed.py +43 -0
- pyrogram/raw/core/list.py +8 -0
- pyrogram/raw/core/message.py +38 -0
- pyrogram/raw/core/msg_container.py +35 -0
- pyrogram/raw/core/primitives/__init__.py +6 -0
- pyrogram/raw/core/primitives/bool.py +30 -0
- pyrogram/raw/core/primitives/bytes.py +37 -0
- pyrogram/raw/core/primitives/double.py +14 -0
- pyrogram/raw/core/primitives/int.py +27 -0
- pyrogram/raw/core/primitives/string.py +13 -0
- pyrogram/raw/core/primitives/vector.py +51 -0
- pyrogram/raw/core/tl_object.py +64 -0
- pyrogram/raw/functions/__init__.py +27 -0
- pyrogram/raw/functions/account/__init__.py +118 -0
- pyrogram/raw/functions/account/accept_authorization.py +86 -0
- pyrogram/raw/functions/account/cancel_password_email.py +49 -0
- pyrogram/raw/functions/account/change_authorization_settings.py +80 -0
- pyrogram/raw/functions/account/change_phone.py +70 -0
- pyrogram/raw/functions/account/check_username.py +54 -0
- pyrogram/raw/functions/account/clear_recent_emoji_statuses.py +49 -0
- pyrogram/raw/functions/account/confirm_password_email.py +54 -0
- pyrogram/raw/functions/account/confirm_phone.py +62 -0
- pyrogram/raw/functions/account/create_business_chat_link.py +54 -0
- pyrogram/raw/functions/account/create_theme.py +84 -0
- pyrogram/raw/functions/account/decline_password_reset.py +49 -0
- pyrogram/raw/functions/account/delete_account.py +66 -0
- pyrogram/raw/functions/account/delete_auto_save_exceptions.py +49 -0
- pyrogram/raw/functions/account/delete_business_chat_link.py +54 -0
- pyrogram/raw/functions/account/delete_secure_value.py +54 -0
- pyrogram/raw/functions/account/disable_peer_connected_bot.py +54 -0
- pyrogram/raw/functions/account/edit_business_chat_link.py +62 -0
- pyrogram/raw/functions/account/finish_takeout_session.py +54 -0
- pyrogram/raw/functions/account/get_account_ttl.py +49 -0
- pyrogram/raw/functions/account/get_all_secure_values.py +49 -0
- pyrogram/raw/functions/account/get_authorization_form.py +70 -0
- pyrogram/raw/functions/account/get_authorizations.py +49 -0
- pyrogram/raw/functions/account/get_auto_download_settings.py +49 -0
- pyrogram/raw/functions/account/get_auto_save_settings.py +49 -0
- pyrogram/raw/functions/account/get_bot_business_connection.py +54 -0
- pyrogram/raw/functions/account/get_business_chat_links.py +49 -0
- pyrogram/raw/functions/account/get_channel_default_emoji_statuses.py +54 -0
- pyrogram/raw/functions/account/get_channel_restricted_status_emojis.py +54 -0
- pyrogram/raw/functions/account/get_chat_themes.py +54 -0
- pyrogram/raw/functions/account/get_connected_bots.py +49 -0
- pyrogram/raw/functions/account/get_contact_sign_up_notification.py +49 -0
- pyrogram/raw/functions/account/get_content_settings.py +49 -0
- pyrogram/raw/functions/account/get_default_background_emojis.py +54 -0
- pyrogram/raw/functions/account/get_default_emoji_statuses.py +54 -0
- pyrogram/raw/functions/account/get_default_group_photo_emojis.py +54 -0
- pyrogram/raw/functions/account/get_default_profile_photo_emojis.py +54 -0
- pyrogram/raw/functions/account/get_global_privacy_settings.py +49 -0
- pyrogram/raw/functions/account/get_multi_wall_papers.py +54 -0
- pyrogram/raw/functions/account/get_notify_exceptions.py +70 -0
- pyrogram/raw/functions/account/get_notify_settings.py +54 -0
- pyrogram/raw/functions/account/get_password.py +49 -0
- pyrogram/raw/functions/account/get_password_settings.py +54 -0
- pyrogram/raw/functions/account/get_privacy.py +54 -0
- pyrogram/raw/functions/account/get_reactions_notify_settings.py +49 -0
- pyrogram/raw/functions/account/get_recent_emoji_statuses.py +54 -0
- pyrogram/raw/functions/account/get_saved_ringtones.py +54 -0
- pyrogram/raw/functions/account/get_secure_value.py +54 -0
- pyrogram/raw/functions/account/get_theme.py +62 -0
- pyrogram/raw/functions/account/get_themes.py +62 -0
- pyrogram/raw/functions/account/get_tmp_password.py +62 -0
- pyrogram/raw/functions/account/get_wall_paper.py +54 -0
- pyrogram/raw/functions/account/get_wall_papers.py +54 -0
- pyrogram/raw/functions/account/get_web_authorizations.py +49 -0
- pyrogram/raw/functions/account/init_takeout_session.py +93 -0
- pyrogram/raw/functions/account/install_theme.py +83 -0
- pyrogram/raw/functions/account/install_wall_paper.py +62 -0
- pyrogram/raw/functions/account/invalidate_sign_in_codes.py +54 -0
- pyrogram/raw/functions/account/register_device.py +94 -0
- pyrogram/raw/functions/account/reorder_usernames.py +54 -0
- pyrogram/raw/functions/account/report_peer.py +70 -0
- pyrogram/raw/functions/account/report_profile_photo.py +78 -0
- pyrogram/raw/functions/account/resend_password_email.py +49 -0
- pyrogram/raw/functions/account/reset_authorization.py +54 -0
- pyrogram/raw/functions/account/reset_notify_settings.py +49 -0
- pyrogram/raw/functions/account/reset_password.py +49 -0
- pyrogram/raw/functions/account/reset_wall_papers.py +49 -0
- pyrogram/raw/functions/account/reset_web_authorization.py +54 -0
- pyrogram/raw/functions/account/reset_web_authorizations.py +49 -0
- pyrogram/raw/functions/account/resolve_business_chat_link.py +54 -0
- pyrogram/raw/functions/account/save_auto_download_settings.py +68 -0
- pyrogram/raw/functions/account/save_auto_save_settings.py +84 -0
- pyrogram/raw/functions/account/save_ringtone.py +62 -0
- pyrogram/raw/functions/account/save_secure_value.py +62 -0
- pyrogram/raw/functions/account/save_theme.py +62 -0
- pyrogram/raw/functions/account/save_wall_paper.py +70 -0
- pyrogram/raw/functions/account/send_change_phone_code.py +62 -0
- pyrogram/raw/functions/account/send_confirm_phone_code.py +62 -0
- pyrogram/raw/functions/account/send_verify_email_code.py +62 -0
- pyrogram/raw/functions/account/send_verify_phone_code.py +62 -0
- pyrogram/raw/functions/account/set_account_ttl.py +54 -0
- pyrogram/raw/functions/account/set_authorization_ttl.py +54 -0
- pyrogram/raw/functions/account/set_contact_sign_up_notification.py +54 -0
- pyrogram/raw/functions/account/set_content_settings.py +54 -0
- pyrogram/raw/functions/account/set_global_privacy_settings.py +54 -0
- pyrogram/raw/functions/account/set_privacy.py +62 -0
- pyrogram/raw/functions/account/set_reactions_notify_settings.py +54 -0
- pyrogram/raw/functions/account/toggle_connected_bot_paused.py +62 -0
- pyrogram/raw/functions/account/toggle_sponsored_messages.py +54 -0
- pyrogram/raw/functions/account/toggle_username.py +62 -0
- pyrogram/raw/functions/account/unregister_device.py +70 -0
- pyrogram/raw/functions/account/update_birthday.py +58 -0
- pyrogram/raw/functions/account/update_business_away_message.py +58 -0
- pyrogram/raw/functions/account/update_business_greeting_message.py +58 -0
- pyrogram/raw/functions/account/update_business_intro.py +58 -0
- pyrogram/raw/functions/account/update_business_location.py +67 -0
- pyrogram/raw/functions/account/update_business_work_hours.py +58 -0
- pyrogram/raw/functions/account/update_color.py +72 -0
- pyrogram/raw/functions/account/update_connected_bot.py +76 -0
- pyrogram/raw/functions/account/update_device_locked.py +54 -0
- pyrogram/raw/functions/account/update_emoji_status.py +54 -0
- pyrogram/raw/functions/account/update_notify_settings.py +62 -0
- pyrogram/raw/functions/account/update_password_settings.py +62 -0
- pyrogram/raw/functions/account/update_personal_channel.py +54 -0
- pyrogram/raw/functions/account/update_profile.py +75 -0
- pyrogram/raw/functions/account/update_status.py +54 -0
- pyrogram/raw/functions/account/update_theme.py +102 -0
- pyrogram/raw/functions/account/update_username.py +54 -0
- pyrogram/raw/functions/account/upload_ringtone.py +70 -0
- pyrogram/raw/functions/account/upload_theme.py +82 -0
- pyrogram/raw/functions/account/upload_wall_paper.py +78 -0
- pyrogram/raw/functions/account/verify_email.py +62 -0
- pyrogram/raw/functions/account/verify_phone.py +70 -0
- pyrogram/raw/functions/auth/__init__.py +29 -0
- pyrogram/raw/functions/auth/accept_login_token.py +54 -0
- pyrogram/raw/functions/auth/bind_temp_auth_key.py +78 -0
- pyrogram/raw/functions/auth/cancel_code.py +62 -0
- pyrogram/raw/functions/auth/check_password.py +54 -0
- pyrogram/raw/functions/auth/check_recovery_password.py +54 -0
- pyrogram/raw/functions/auth/drop_temp_auth_keys.py +54 -0
- pyrogram/raw/functions/auth/export_authorization.py +54 -0
- pyrogram/raw/functions/auth/export_login_token.py +70 -0
- pyrogram/raw/functions/auth/import_authorization.py +62 -0
- pyrogram/raw/functions/auth/import_bot_authorization.py +78 -0
- pyrogram/raw/functions/auth/import_login_token.py +54 -0
- pyrogram/raw/functions/auth/import_web_token_authorization.py +70 -0
- pyrogram/raw/functions/auth/log_out.py +49 -0
- pyrogram/raw/functions/auth/recover_password.py +66 -0
- pyrogram/raw/functions/auth/report_missing_code.py +70 -0
- pyrogram/raw/functions/auth/request_firebase_sms.py +91 -0
- pyrogram/raw/functions/auth/request_password_recovery.py +49 -0
- pyrogram/raw/functions/auth/resend_code.py +73 -0
- pyrogram/raw/functions/auth/reset_authorizations.py +49 -0
- pyrogram/raw/functions/auth/reset_login_email.py +62 -0
- pyrogram/raw/functions/auth/send_code.py +78 -0
- pyrogram/raw/functions/auth/sign_in.py +83 -0
- pyrogram/raw/functions/auth/sign_up.py +86 -0
- pyrogram/raw/functions/bots/__init__.py +22 -0
- pyrogram/raw/functions/bots/allow_send_message.py +54 -0
- pyrogram/raw/functions/bots/answer_webhook_json_query.py +62 -0
- pyrogram/raw/functions/bots/can_send_message.py +54 -0
- pyrogram/raw/functions/bots/get_bot_commands.py +62 -0
- pyrogram/raw/functions/bots/get_bot_info.py +66 -0
- pyrogram/raw/functions/bots/get_bot_menu_button.py +54 -0
- pyrogram/raw/functions/bots/invoke_web_view_custom_method.py +70 -0
- pyrogram/raw/functions/bots/reorder_usernames.py +62 -0
- pyrogram/raw/functions/bots/reset_bot_commands.py +62 -0
- pyrogram/raw/functions/bots/send_custom_request.py +62 -0
- pyrogram/raw/functions/bots/set_bot_broadcast_default_admin_rights.py +54 -0
- pyrogram/raw/functions/bots/set_bot_commands.py +70 -0
- pyrogram/raw/functions/bots/set_bot_group_default_admin_rights.py +54 -0
- pyrogram/raw/functions/bots/set_bot_info.py +93 -0
- pyrogram/raw/functions/bots/set_bot_menu_button.py +62 -0
- pyrogram/raw/functions/bots/toggle_username.py +70 -0
- pyrogram/raw/functions/channels/__init__.py +71 -0
- pyrogram/raw/functions/channels/check_username.py +62 -0
- pyrogram/raw/functions/channels/click_sponsored_message.py +62 -0
- pyrogram/raw/functions/channels/convert_to_gigagroup.py +54 -0
- pyrogram/raw/functions/channels/create_channel.py +116 -0
- pyrogram/raw/functions/channels/create_forum_topic.py +100 -0
- pyrogram/raw/functions/channels/deactivate_all_usernames.py +54 -0
- pyrogram/raw/functions/channels/delete_channel.py +54 -0
- pyrogram/raw/functions/channels/delete_history.py +70 -0
- pyrogram/raw/functions/channels/delete_messages.py +62 -0
- pyrogram/raw/functions/channels/delete_participant_history.py +62 -0
- pyrogram/raw/functions/channels/delete_topic_history.py +62 -0
- pyrogram/raw/functions/channels/edit_admin.py +78 -0
- pyrogram/raw/functions/channels/edit_banned.py +70 -0
- pyrogram/raw/functions/channels/edit_creator.py +70 -0
- pyrogram/raw/functions/channels/edit_forum_topic.py +100 -0
- pyrogram/raw/functions/channels/edit_location.py +70 -0
- pyrogram/raw/functions/channels/edit_photo.py +62 -0
- pyrogram/raw/functions/channels/edit_title.py +62 -0
- pyrogram/raw/functions/channels/export_message_link.py +76 -0
- pyrogram/raw/functions/channels/get_admin_log.py +108 -0
- pyrogram/raw/functions/channels/get_admined_public_channels.py +66 -0
- pyrogram/raw/functions/channels/get_channel_recommendations.py +58 -0
- pyrogram/raw/functions/channels/get_channels.py +54 -0
- pyrogram/raw/functions/channels/get_forum_topics.py +97 -0
- pyrogram/raw/functions/channels/get_forum_topics_by_id.py +62 -0
- pyrogram/raw/functions/channels/get_full_channel.py +54 -0
- pyrogram/raw/functions/channels/get_groups_for_discussion.py +49 -0
- pyrogram/raw/functions/channels/get_inactive_channels.py +49 -0
- pyrogram/raw/functions/channels/get_left_channels.py +54 -0
- pyrogram/raw/functions/channels/get_messages.py +62 -0
- pyrogram/raw/functions/channels/get_participant.py +62 -0
- pyrogram/raw/functions/channels/get_participants.py +86 -0
- pyrogram/raw/functions/channels/get_send_as.py +54 -0
- pyrogram/raw/functions/channels/get_sponsored_messages.py +54 -0
- pyrogram/raw/functions/channels/invite_to_channel.py +62 -0
- pyrogram/raw/functions/channels/join_channel.py +54 -0
- pyrogram/raw/functions/channels/leave_channel.py +54 -0
- pyrogram/raw/functions/channels/read_history.py +62 -0
- pyrogram/raw/functions/channels/read_message_contents.py +62 -0
- pyrogram/raw/functions/channels/reorder_pinned_forum_topics.py +70 -0
- pyrogram/raw/functions/channels/reorder_usernames.py +62 -0
- pyrogram/raw/functions/channels/report_anti_spam_false_positive.py +62 -0
- pyrogram/raw/functions/channels/report_spam.py +70 -0
- pyrogram/raw/functions/channels/report_sponsored_message.py +70 -0
- pyrogram/raw/functions/channels/restrict_sponsored_messages.py +62 -0
- pyrogram/raw/functions/channels/search_posts.py +86 -0
- pyrogram/raw/functions/channels/set_boosts_to_unblock_restrictions.py +62 -0
- pyrogram/raw/functions/channels/set_discussion_group.py +62 -0
- pyrogram/raw/functions/channels/set_emoji_stickers.py +62 -0
- pyrogram/raw/functions/channels/set_stickers.py +62 -0
- pyrogram/raw/functions/channels/toggle_anti_spam.py +62 -0
- pyrogram/raw/functions/channels/toggle_forum.py +62 -0
- pyrogram/raw/functions/channels/toggle_join_request.py +62 -0
- pyrogram/raw/functions/channels/toggle_join_to_send.py +62 -0
- pyrogram/raw/functions/channels/toggle_participants_hidden.py +62 -0
- pyrogram/raw/functions/channels/toggle_pre_history_hidden.py +62 -0
- pyrogram/raw/functions/channels/toggle_signatures.py +62 -0
- pyrogram/raw/functions/channels/toggle_slow_mode.py +62 -0
- pyrogram/raw/functions/channels/toggle_username.py +70 -0
- pyrogram/raw/functions/channels/toggle_view_forum_as_messages.py +62 -0
- pyrogram/raw/functions/channels/update_color.py +80 -0
- pyrogram/raw/functions/channels/update_emoji_status.py +62 -0
- pyrogram/raw/functions/channels/update_pinned_forum_topic.py +70 -0
- pyrogram/raw/functions/channels/update_username.py +62 -0
- pyrogram/raw/functions/channels/view_sponsored_message.py +62 -0
- pyrogram/raw/functions/chatlists/__init__.py +17 -0
- pyrogram/raw/functions/chatlists/check_chatlist_invite.py +54 -0
- pyrogram/raw/functions/chatlists/delete_exported_invite.py +62 -0
- pyrogram/raw/functions/chatlists/edit_exported_invite.py +83 -0
- pyrogram/raw/functions/chatlists/export_chatlist_invite.py +70 -0
- pyrogram/raw/functions/chatlists/get_chatlist_updates.py +54 -0
- pyrogram/raw/functions/chatlists/get_exported_invites.py +54 -0
- pyrogram/raw/functions/chatlists/get_leave_chatlist_suggestions.py +54 -0
- pyrogram/raw/functions/chatlists/hide_chatlist_updates.py +54 -0
- pyrogram/raw/functions/chatlists/join_chatlist_invite.py +62 -0
- pyrogram/raw/functions/chatlists/join_chatlist_updates.py +62 -0
- pyrogram/raw/functions/chatlists/leave_chatlist.py +62 -0
- pyrogram/raw/functions/contacts/__init__.py +32 -0
- pyrogram/raw/functions/contacts/accept_contact.py +54 -0
- pyrogram/raw/functions/contacts/add_contact.py +86 -0
- pyrogram/raw/functions/contacts/block.py +62 -0
- pyrogram/raw/functions/contacts/block_from_replies.py +74 -0
- pyrogram/raw/functions/contacts/delete_by_phones.py +54 -0
- pyrogram/raw/functions/contacts/delete_contacts.py +54 -0
- pyrogram/raw/functions/contacts/edit_close_friends.py +54 -0
- pyrogram/raw/functions/contacts/export_contact_token.py +49 -0
- pyrogram/raw/functions/contacts/get_birthdays.py +49 -0
- pyrogram/raw/functions/contacts/get_blocked.py +70 -0
- pyrogram/raw/functions/contacts/get_contact_i_ds.py +54 -0
- pyrogram/raw/functions/contacts/get_contacts.py +54 -0
- pyrogram/raw/functions/contacts/get_located.py +71 -0
- pyrogram/raw/functions/contacts/get_saved.py +49 -0
- pyrogram/raw/functions/contacts/get_statuses.py +49 -0
- pyrogram/raw/functions/contacts/get_top_peers.py +120 -0
- pyrogram/raw/functions/contacts/import_contact_token.py +54 -0
- pyrogram/raw/functions/contacts/import_contacts.py +54 -0
- pyrogram/raw/functions/contacts/reset_saved.py +49 -0
- pyrogram/raw/functions/contacts/reset_top_peer_rating.py +62 -0
- pyrogram/raw/functions/contacts/resolve_phone.py +54 -0
- pyrogram/raw/functions/contacts/resolve_username.py +54 -0
- pyrogram/raw/functions/contacts/search.py +62 -0
- pyrogram/raw/functions/contacts/set_blocked.py +70 -0
- pyrogram/raw/functions/contacts/toggle_top_peers.py +54 -0
- pyrogram/raw/functions/contacts/unblock.py +62 -0
- pyrogram/raw/functions/contest/__init__.py +7 -0
- pyrogram/raw/functions/contest/save_developer_info.py +86 -0
- pyrogram/raw/functions/destroy_auth_key.py +49 -0
- pyrogram/raw/functions/destroy_session.py +54 -0
- pyrogram/raw/functions/folders/__init__.py +7 -0
- pyrogram/raw/functions/folders/edit_peer_folders.py +54 -0
- pyrogram/raw/functions/fragment/__init__.py +7 -0
- pyrogram/raw/functions/fragment/get_collectible_info.py +54 -0
- pyrogram/raw/functions/get_future_salts.py +54 -0
- pyrogram/raw/functions/help/__init__.py +31 -0
- pyrogram/raw/functions/help/accept_terms_of_service.py +54 -0
- pyrogram/raw/functions/help/dismiss_suggestion.py +62 -0
- pyrogram/raw/functions/help/edit_user_info.py +70 -0
- pyrogram/raw/functions/help/get_app_config.py +54 -0
- pyrogram/raw/functions/help/get_app_update.py +54 -0
- pyrogram/raw/functions/help/get_cdn_config.py +49 -0
- pyrogram/raw/functions/help/get_config.py +49 -0
- pyrogram/raw/functions/help/get_countries_list.py +62 -0
- pyrogram/raw/functions/help/get_deep_link_info.py +54 -0
- pyrogram/raw/functions/help/get_invite_text.py +49 -0
- pyrogram/raw/functions/help/get_nearest_dc.py +49 -0
- pyrogram/raw/functions/help/get_passport_config.py +54 -0
- pyrogram/raw/functions/help/get_peer_colors.py +54 -0
- pyrogram/raw/functions/help/get_peer_profile_colors.py +54 -0
- pyrogram/raw/functions/help/get_premium_promo.py +49 -0
- pyrogram/raw/functions/help/get_promo_data.py +49 -0
- pyrogram/raw/functions/help/get_recent_me_urls.py +54 -0
- pyrogram/raw/functions/help/get_support.py +49 -0
- pyrogram/raw/functions/help/get_support_name.py +49 -0
- pyrogram/raw/functions/help/get_terms_of_service_update.py +49 -0
- pyrogram/raw/functions/help/get_timezones_list.py +54 -0
- pyrogram/raw/functions/help/get_user_info.py +54 -0
- pyrogram/raw/functions/help/hide_promo_data.py +54 -0
- pyrogram/raw/functions/help/save_app_log.py +54 -0
- pyrogram/raw/functions/help/set_bot_updates_status.py +62 -0
- pyrogram/raw/functions/init_connection.py +132 -0
- pyrogram/raw/functions/invoke_after_msg.py +62 -0
- pyrogram/raw/functions/invoke_after_msgs.py +62 -0
- pyrogram/raw/functions/invoke_with_apns_secret.py +70 -0
- pyrogram/raw/functions/invoke_with_business_connection.py +62 -0
- pyrogram/raw/functions/invoke_with_google_play_integrity.py +70 -0
- pyrogram/raw/functions/invoke_with_layer.py +62 -0
- pyrogram/raw/functions/invoke_with_messages_range.py +62 -0
- pyrogram/raw/functions/invoke_with_takeout.py +62 -0
- pyrogram/raw/functions/invoke_without_updates.py +54 -0
- pyrogram/raw/functions/langpack/__init__.py +11 -0
- pyrogram/raw/functions/langpack/get_difference.py +70 -0
- pyrogram/raw/functions/langpack/get_lang_pack.py +62 -0
- pyrogram/raw/functions/langpack/get_language.py +62 -0
- pyrogram/raw/functions/langpack/get_languages.py +54 -0
- pyrogram/raw/functions/langpack/get_strings.py +70 -0
- pyrogram/raw/functions/messages/__init__.py +219 -0
- pyrogram/raw/functions/messages/accept_encryption.py +70 -0
- pyrogram/raw/functions/messages/accept_url_auth.py +91 -0
- pyrogram/raw/functions/messages/add_chat_user.py +70 -0
- pyrogram/raw/functions/messages/check_chat_invite.py +54 -0
- pyrogram/raw/functions/messages/check_history_import.py +54 -0
- pyrogram/raw/functions/messages/check_history_import_peer.py +54 -0
- pyrogram/raw/functions/messages/check_quick_reply_shortcut.py +54 -0
- pyrogram/raw/functions/messages/clear_all_drafts.py +49 -0
- pyrogram/raw/functions/messages/clear_recent_reactions.py +49 -0
- pyrogram/raw/functions/messages/clear_recent_stickers.py +54 -0
- pyrogram/raw/functions/messages/create_chat.py +73 -0
- pyrogram/raw/functions/messages/delete_chat.py +54 -0
- pyrogram/raw/functions/messages/delete_chat_user.py +70 -0
- pyrogram/raw/functions/messages/delete_exported_chat_invite.py +62 -0
- pyrogram/raw/functions/messages/delete_fact_check.py +62 -0
- pyrogram/raw/functions/messages/delete_history.py +94 -0
- pyrogram/raw/functions/messages/delete_messages.py +62 -0
- pyrogram/raw/functions/messages/delete_phone_call_history.py +54 -0
- pyrogram/raw/functions/messages/delete_quick_reply_messages.py +62 -0
- pyrogram/raw/functions/messages/delete_quick_reply_shortcut.py +54 -0
- pyrogram/raw/functions/messages/delete_revoked_exported_chat_invites.py +62 -0
- pyrogram/raw/functions/messages/delete_saved_history.py +82 -0
- pyrogram/raw/functions/messages/delete_scheduled_messages.py +62 -0
- pyrogram/raw/functions/messages/discard_encryption.py +62 -0
- pyrogram/raw/functions/messages/edit_chat_about.py +62 -0
- pyrogram/raw/functions/messages/edit_chat_admin.py +70 -0
- pyrogram/raw/functions/messages/edit_chat_default_banned_rights.py +62 -0
- pyrogram/raw/functions/messages/edit_chat_photo.py +62 -0
- pyrogram/raw/functions/messages/edit_chat_title.py +62 -0
- pyrogram/raw/functions/messages/edit_exported_chat_invite.py +106 -0
- pyrogram/raw/functions/messages/edit_fact_check.py +70 -0
- pyrogram/raw/functions/messages/edit_inline_bot_message.py +107 -0
- pyrogram/raw/functions/messages/edit_message.py +133 -0
- pyrogram/raw/functions/messages/edit_quick_reply_shortcut.py +62 -0
- pyrogram/raw/functions/messages/export_chat_invite.py +95 -0
- pyrogram/raw/functions/messages/fave_sticker.py +62 -0
- pyrogram/raw/functions/messages/forward_messages.py +154 -0
- pyrogram/raw/functions/messages/get_admins_with_invites.py +54 -0
- pyrogram/raw/functions/messages/get_all_drafts.py +49 -0
- pyrogram/raw/functions/messages/get_all_stickers.py +54 -0
- pyrogram/raw/functions/messages/get_archived_stickers.py +76 -0
- pyrogram/raw/functions/messages/get_attach_menu_bot.py +54 -0
- pyrogram/raw/functions/messages/get_attach_menu_bots.py +54 -0
- pyrogram/raw/functions/messages/get_attached_stickers.py +54 -0
- pyrogram/raw/functions/messages/get_available_effects.py +54 -0
- pyrogram/raw/functions/messages/get_available_reactions.py +54 -0
- pyrogram/raw/functions/messages/get_bot_app.py +62 -0
- pyrogram/raw/functions/messages/get_bot_callback_answer.py +89 -0
- pyrogram/raw/functions/messages/get_chat_invite_importers.py +104 -0
- pyrogram/raw/functions/messages/get_chats.py +54 -0
- pyrogram/raw/functions/messages/get_common_chats.py +70 -0
- pyrogram/raw/functions/messages/get_custom_emoji_documents.py +54 -0
- pyrogram/raw/functions/messages/get_default_history_ttl.py +49 -0
- pyrogram/raw/functions/messages/get_default_tag_reactions.py +54 -0
- pyrogram/raw/functions/messages/get_dh_config.py +62 -0
- pyrogram/raw/functions/messages/get_dialog_filters.py +49 -0
- pyrogram/raw/functions/messages/get_dialog_unread_marks.py +49 -0
- pyrogram/raw/functions/messages/get_dialogs.py +103 -0
- pyrogram/raw/functions/messages/get_discussion_message.py +62 -0
- pyrogram/raw/functions/messages/get_document_by_hash.py +70 -0
- pyrogram/raw/functions/messages/get_emoji_groups.py +54 -0
- pyrogram/raw/functions/messages/get_emoji_keywords.py +54 -0
- pyrogram/raw/functions/messages/get_emoji_keywords_difference.py +62 -0
- pyrogram/raw/functions/messages/get_emoji_keywords_languages.py +54 -0
- pyrogram/raw/functions/messages/get_emoji_profile_photo_groups.py +54 -0
- pyrogram/raw/functions/messages/get_emoji_status_groups.py +54 -0
- pyrogram/raw/functions/messages/get_emoji_sticker_groups.py +54 -0
- pyrogram/raw/functions/messages/get_emoji_stickers.py +54 -0
- pyrogram/raw/functions/messages/get_emoji_url.py +54 -0
- pyrogram/raw/functions/messages/get_exported_chat_invite.py +62 -0
- pyrogram/raw/functions/messages/get_exported_chat_invites.py +96 -0
- pyrogram/raw/functions/messages/get_extended_media.py +62 -0
- pyrogram/raw/functions/messages/get_fact_check.py +62 -0
- pyrogram/raw/functions/messages/get_faved_stickers.py +54 -0
- pyrogram/raw/functions/messages/get_featured_emoji_stickers.py +54 -0
- pyrogram/raw/functions/messages/get_featured_stickers.py +54 -0
- pyrogram/raw/functions/messages/get_full_chat.py +54 -0
- pyrogram/raw/functions/messages/get_game_high_scores.py +70 -0
- pyrogram/raw/functions/messages/get_history.py +110 -0
- pyrogram/raw/functions/messages/get_inline_bot_results.py +90 -0
- pyrogram/raw/functions/messages/get_inline_game_high_scores.py +62 -0
- pyrogram/raw/functions/messages/get_mask_stickers.py +54 -0
- pyrogram/raw/functions/messages/get_message_edit_data.py +62 -0
- pyrogram/raw/functions/messages/get_message_reactions_list.py +91 -0
- pyrogram/raw/functions/messages/get_message_read_participants.py +62 -0
- pyrogram/raw/functions/messages/get_messages.py +54 -0
- pyrogram/raw/functions/messages/get_messages_reactions.py +62 -0
- pyrogram/raw/functions/messages/get_messages_views.py +70 -0
- pyrogram/raw/functions/messages/get_my_stickers.py +62 -0
- pyrogram/raw/functions/messages/get_old_featured_stickers.py +70 -0
- pyrogram/raw/functions/messages/get_onlines.py +54 -0
- pyrogram/raw/functions/messages/get_outbox_read_date.py +62 -0
- pyrogram/raw/functions/messages/get_peer_dialogs.py +54 -0
- pyrogram/raw/functions/messages/get_peer_settings.py +54 -0
- pyrogram/raw/functions/messages/get_pinned_dialogs.py +54 -0
- pyrogram/raw/functions/messages/get_pinned_saved_dialogs.py +49 -0
- pyrogram/raw/functions/messages/get_poll_results.py +62 -0
- pyrogram/raw/functions/messages/get_poll_votes.py +90 -0
- pyrogram/raw/functions/messages/get_quick_replies.py +54 -0
- pyrogram/raw/functions/messages/get_quick_reply_messages.py +74 -0
- pyrogram/raw/functions/messages/get_recent_locations.py +70 -0
- pyrogram/raw/functions/messages/get_recent_reactions.py +62 -0
- pyrogram/raw/functions/messages/get_recent_stickers.py +62 -0
- pyrogram/raw/functions/messages/get_replies.py +118 -0
- pyrogram/raw/functions/messages/get_saved_dialogs.py +94 -0
- pyrogram/raw/functions/messages/get_saved_gifs.py +54 -0
- pyrogram/raw/functions/messages/get_saved_history.py +110 -0
- pyrogram/raw/functions/messages/get_saved_reaction_tags.py +66 -0
- pyrogram/raw/functions/messages/get_scheduled_history.py +62 -0
- pyrogram/raw/functions/messages/get_scheduled_messages.py +62 -0
- pyrogram/raw/functions/messages/get_search_counters.py +83 -0
- pyrogram/raw/functions/messages/get_search_results_calendar.py +90 -0
- pyrogram/raw/functions/messages/get_search_results_positions.py +90 -0
- pyrogram/raw/functions/messages/get_split_ranges.py +49 -0
- pyrogram/raw/functions/messages/get_sticker_set.py +62 -0
- pyrogram/raw/functions/messages/get_stickers.py +62 -0
- pyrogram/raw/functions/messages/get_suggested_dialog_filters.py +49 -0
- pyrogram/raw/functions/messages/get_top_reactions.py +62 -0
- pyrogram/raw/functions/messages/get_unread_mentions.py +105 -0
- pyrogram/raw/functions/messages/get_unread_reactions.py +105 -0
- pyrogram/raw/functions/messages/get_web_page.py +62 -0
- pyrogram/raw/functions/messages/get_web_page_preview.py +66 -0
- pyrogram/raw/functions/messages/hide_all_chat_join_requests.py +71 -0
- pyrogram/raw/functions/messages/hide_chat_join_request.py +70 -0
- pyrogram/raw/functions/messages/hide_peer_settings_bar.py +54 -0
- pyrogram/raw/functions/messages/import_chat_invite.py +54 -0
- pyrogram/raw/functions/messages/init_history_import.py +70 -0
- pyrogram/raw/functions/messages/install_sticker_set.py +62 -0
- pyrogram/raw/functions/messages/mark_dialog_unread.py +62 -0
- pyrogram/raw/functions/messages/migrate_chat.py +54 -0
- pyrogram/raw/functions/messages/prolong_web_view.py +98 -0
- pyrogram/raw/functions/messages/rate_transcribed_audio.py +78 -0
- pyrogram/raw/functions/messages/read_discussion.py +70 -0
- pyrogram/raw/functions/messages/read_encrypted_history.py +62 -0
- pyrogram/raw/functions/messages/read_featured_stickers.py +54 -0
- pyrogram/raw/functions/messages/read_history.py +62 -0
- pyrogram/raw/functions/messages/read_mentions.py +65 -0
- pyrogram/raw/functions/messages/read_message_contents.py +54 -0
- pyrogram/raw/functions/messages/read_reactions.py +65 -0
- pyrogram/raw/functions/messages/received_messages.py +54 -0
- pyrogram/raw/functions/messages/received_queue.py +54 -0
- pyrogram/raw/functions/messages/reorder_pinned_dialogs.py +70 -0
- pyrogram/raw/functions/messages/reorder_pinned_saved_dialogs.py +62 -0
- pyrogram/raw/functions/messages/reorder_quick_replies.py +54 -0
- pyrogram/raw/functions/messages/reorder_sticker_sets.py +68 -0
- pyrogram/raw/functions/messages/report.py +78 -0
- pyrogram/raw/functions/messages/report_encrypted_spam.py +54 -0
- pyrogram/raw/functions/messages/report_reaction.py +70 -0
- pyrogram/raw/functions/messages/report_spam.py +54 -0
- pyrogram/raw/functions/messages/request_app_web_view.py +103 -0
- pyrogram/raw/functions/messages/request_encryption.py +70 -0
- pyrogram/raw/functions/messages/request_simple_web_view.py +110 -0
- pyrogram/raw/functions/messages/request_url_auth.py +85 -0
- pyrogram/raw/functions/messages/request_web_view.py +138 -0
- pyrogram/raw/functions/messages/save_default_send_as.py +62 -0
- pyrogram/raw/functions/messages/save_draft.py +115 -0
- pyrogram/raw/functions/messages/save_gif.py +62 -0
- pyrogram/raw/functions/messages/save_recent_sticker.py +70 -0
- pyrogram/raw/functions/messages/search.py +175 -0
- pyrogram/raw/functions/messages/search_custom_emoji.py +62 -0
- pyrogram/raw/functions/messages/search_emoji_sticker_sets.py +70 -0
- pyrogram/raw/functions/messages/search_global.py +127 -0
- pyrogram/raw/functions/messages/search_sent_media.py +70 -0
- pyrogram/raw/functions/messages/search_sticker_sets.py +70 -0
- pyrogram/raw/functions/messages/send_bot_requested_peer.py +78 -0
- pyrogram/raw/functions/messages/send_encrypted.py +78 -0
- pyrogram/raw/functions/messages/send_encrypted_file.py +86 -0
- pyrogram/raw/functions/messages/send_encrypted_service.py +70 -0
- pyrogram/raw/functions/messages/send_inline_bot_result.py +143 -0
- pyrogram/raw/functions/messages/send_media.py +184 -0
- pyrogram/raw/functions/messages/send_message.py +182 -0
- pyrogram/raw/functions/messages/send_multi_media.py +148 -0
- pyrogram/raw/functions/messages/send_quick_reply_messages.py +78 -0
- pyrogram/raw/functions/messages/send_reaction.py +86 -0
- pyrogram/raw/functions/messages/send_scheduled_messages.py +62 -0
- pyrogram/raw/functions/messages/send_screenshot_notification.py +70 -0
- pyrogram/raw/functions/messages/send_vote.py +70 -0
- pyrogram/raw/functions/messages/send_web_view_data.py +78 -0
- pyrogram/raw/functions/messages/send_web_view_result_message.py +62 -0
- pyrogram/raw/functions/messages/set_bot_callback_answer.py +88 -0
- pyrogram/raw/functions/messages/set_bot_precheckout_results.py +71 -0
- pyrogram/raw/functions/messages/set_bot_shipping_results.py +75 -0
- pyrogram/raw/functions/messages/set_chat_available_reactions.py +73 -0
- pyrogram/raw/functions/messages/set_chat_theme.py +62 -0
- pyrogram/raw/functions/messages/set_chat_wall_paper.py +97 -0
- pyrogram/raw/functions/messages/set_default_history_ttl.py +54 -0
- pyrogram/raw/functions/messages/set_default_reaction.py +54 -0
- pyrogram/raw/functions/messages/set_encrypted_typing.py +62 -0
- pyrogram/raw/functions/messages/set_game_score.py +92 -0
- pyrogram/raw/functions/messages/set_history_ttl.py +62 -0
- pyrogram/raw/functions/messages/set_inline_bot_results.py +113 -0
- pyrogram/raw/functions/messages/set_inline_game_score.py +84 -0
- pyrogram/raw/functions/messages/set_typing.py +73 -0
- pyrogram/raw/functions/messages/start_bot.py +78 -0
- pyrogram/raw/functions/messages/start_history_import.py +62 -0
- pyrogram/raw/functions/messages/toggle_bot_in_attach_menu.py +70 -0
- pyrogram/raw/functions/messages/toggle_dialog_filter_tags.py +54 -0
- pyrogram/raw/functions/messages/toggle_dialog_pin.py +62 -0
- pyrogram/raw/functions/messages/toggle_no_forwards.py +62 -0
- pyrogram/raw/functions/messages/toggle_peer_translations.py +62 -0
- pyrogram/raw/functions/messages/toggle_saved_dialog_pin.py +62 -0
- pyrogram/raw/functions/messages/toggle_sticker_sets.py +74 -0
- pyrogram/raw/functions/messages/transcribe_audio.py +62 -0
- pyrogram/raw/functions/messages/translate_text.py +86 -0
- pyrogram/raw/functions/messages/uninstall_sticker_set.py +54 -0
- pyrogram/raw/functions/messages/unpin_all_messages.py +65 -0
- pyrogram/raw/functions/messages/update_dialog_filter.py +66 -0
- pyrogram/raw/functions/messages/update_dialog_filters_order.py +54 -0
- pyrogram/raw/functions/messages/update_pinned_message.py +82 -0
- pyrogram/raw/functions/messages/update_saved_reaction_tag.py +65 -0
- pyrogram/raw/functions/messages/upload_encrypted_file.py +62 -0
- pyrogram/raw/functions/messages/upload_imported_media.py +78 -0
- pyrogram/raw/functions/messages/upload_media.py +73 -0
- pyrogram/raw/functions/payments/__init__.py +31 -0
- pyrogram/raw/functions/payments/apply_gift_code.py +54 -0
- pyrogram/raw/functions/payments/assign_app_store_transaction.py +62 -0
- pyrogram/raw/functions/payments/assign_play_market_transaction.py +62 -0
- pyrogram/raw/functions/payments/can_purchase_premium.py +54 -0
- pyrogram/raw/functions/payments/check_gift_code.py +54 -0
- pyrogram/raw/functions/payments/clear_saved_info.py +60 -0
- pyrogram/raw/functions/payments/export_invoice.py +54 -0
- pyrogram/raw/functions/payments/get_bank_card_data.py +54 -0
- pyrogram/raw/functions/payments/get_giveaway_info.py +62 -0
- pyrogram/raw/functions/payments/get_payment_form.py +66 -0
- pyrogram/raw/functions/payments/get_payment_receipt.py +62 -0
- pyrogram/raw/functions/payments/get_premium_gift_code_options.py +58 -0
- pyrogram/raw/functions/payments/get_saved_info.py +49 -0
- pyrogram/raw/functions/payments/get_stars_revenue_ads_account_url.py +54 -0
- pyrogram/raw/functions/payments/get_stars_revenue_stats.py +62 -0
- pyrogram/raw/functions/payments/get_stars_revenue_withdrawal_url.py +70 -0
- pyrogram/raw/functions/payments/get_stars_status.py +54 -0
- pyrogram/raw/functions/payments/get_stars_topup_options.py +49 -0
- pyrogram/raw/functions/payments/get_stars_transactions.py +90 -0
- pyrogram/raw/functions/payments/get_stars_transactions_by_id.py +62 -0
- pyrogram/raw/functions/payments/launch_prepaid_giveaway.py +70 -0
- pyrogram/raw/functions/payments/refund_stars_charge.py +62 -0
- pyrogram/raw/functions/payments/send_payment_form.py +99 -0
- pyrogram/raw/functions/payments/send_stars_form.py +65 -0
- pyrogram/raw/functions/payments/validate_requested_info.py +70 -0
- pyrogram/raw/functions/phone/__init__.py +37 -0
- pyrogram/raw/functions/phone/accept_call.py +70 -0
- pyrogram/raw/functions/phone/check_group_call.py +62 -0
- pyrogram/raw/functions/phone/confirm_call.py +78 -0
- pyrogram/raw/functions/phone/create_group_call.py +88 -0
- pyrogram/raw/functions/phone/discard_call.py +86 -0
- pyrogram/raw/functions/phone/discard_group_call.py +54 -0
- pyrogram/raw/functions/phone/edit_group_call_participant.py +118 -0
- pyrogram/raw/functions/phone/edit_group_call_title.py +62 -0
- pyrogram/raw/functions/phone/export_group_call_invite.py +62 -0
- pyrogram/raw/functions/phone/get_call_config.py +49 -0
- pyrogram/raw/functions/phone/get_group_call.py +62 -0
- pyrogram/raw/functions/phone/get_group_call_join_as.py +54 -0
- pyrogram/raw/functions/phone/get_group_call_stream_channels.py +54 -0
- pyrogram/raw/functions/phone/get_group_call_stream_rtmp_url.py +62 -0
- pyrogram/raw/functions/phone/get_group_participants.py +86 -0
- pyrogram/raw/functions/phone/invite_to_group_call.py +62 -0
- pyrogram/raw/functions/phone/join_group_call.py +93 -0
- pyrogram/raw/functions/phone/join_group_call_presentation.py +62 -0
- pyrogram/raw/functions/phone/leave_group_call.py +62 -0
- pyrogram/raw/functions/phone/leave_group_call_presentation.py +54 -0
- pyrogram/raw/functions/phone/received_call.py +54 -0
- pyrogram/raw/functions/phone/request_call.py +86 -0
- pyrogram/raw/functions/phone/save_call_debug.py +62 -0
- pyrogram/raw/functions/phone/save_call_log.py +62 -0
- pyrogram/raw/functions/phone/save_default_group_call_join_as.py +62 -0
- pyrogram/raw/functions/phone/send_signaling_data.py +62 -0
- pyrogram/raw/functions/phone/set_call_rating.py +78 -0
- pyrogram/raw/functions/phone/start_scheduled_group_call.py +54 -0
- pyrogram/raw/functions/phone/toggle_group_call_record.py +86 -0
- pyrogram/raw/functions/phone/toggle_group_call_settings.py +71 -0
- pyrogram/raw/functions/phone/toggle_group_call_start_subscription.py +62 -0
- pyrogram/raw/functions/photos/__init__.py +11 -0
- pyrogram/raw/functions/photos/delete_photos.py +54 -0
- pyrogram/raw/functions/photos/get_user_photos.py +78 -0
- pyrogram/raw/functions/photos/update_profile_photo.py +72 -0
- pyrogram/raw/functions/photos/upload_contact_profile_photo.py +107 -0
- pyrogram/raw/functions/photos/upload_profile_photo.py +103 -0
- pyrogram/raw/functions/ping.py +54 -0
- pyrogram/raw/functions/ping_delay_disconnect.py +62 -0
- pyrogram/raw/functions/premium/__init__.py +11 -0
- pyrogram/raw/functions/premium/apply_boost.py +66 -0
- pyrogram/raw/functions/premium/get_boosts_list.py +78 -0
- pyrogram/raw/functions/premium/get_boosts_status.py +54 -0
- pyrogram/raw/functions/premium/get_my_boosts.py +49 -0
- pyrogram/raw/functions/premium/get_user_boosts.py +62 -0
- pyrogram/raw/functions/req_dh_params.py +94 -0
- pyrogram/raw/functions/req_pq.py +54 -0
- pyrogram/raw/functions/req_pq_multi.py +54 -0
- pyrogram/raw/functions/rpc_drop_answer.py +54 -0
- pyrogram/raw/functions/set_client_dh_params.py +70 -0
- pyrogram/raw/functions/smsjobs/__init__.py +13 -0
- pyrogram/raw/functions/smsjobs/finish_job.py +65 -0
- pyrogram/raw/functions/smsjobs/get_sms_job.py +54 -0
- pyrogram/raw/functions/smsjobs/get_status.py +49 -0
- pyrogram/raw/functions/smsjobs/is_eligible_to_join.py +49 -0
- pyrogram/raw/functions/smsjobs/join.py +49 -0
- pyrogram/raw/functions/smsjobs/leave.py +49 -0
- pyrogram/raw/functions/smsjobs/update_settings.py +54 -0
- pyrogram/raw/functions/stats/__init__.py +16 -0
- pyrogram/raw/functions/stats/get_broadcast_revenue_stats.py +62 -0
- pyrogram/raw/functions/stats/get_broadcast_revenue_transactions.py +70 -0
- pyrogram/raw/functions/stats/get_broadcast_revenue_withdrawal_url.py +62 -0
- pyrogram/raw/functions/stats/get_broadcast_stats.py +62 -0
- pyrogram/raw/functions/stats/get_megagroup_stats.py +62 -0
- pyrogram/raw/functions/stats/get_message_public_forwards.py +78 -0
- pyrogram/raw/functions/stats/get_message_stats.py +70 -0
- pyrogram/raw/functions/stats/get_story_public_forwards.py +78 -0
- pyrogram/raw/functions/stats/get_story_stats.py +70 -0
- pyrogram/raw/functions/stats/load_async_graph.py +65 -0
- pyrogram/raw/functions/stickers/__init__.py +17 -0
- pyrogram/raw/functions/stickers/add_sticker_to_set.py +62 -0
- pyrogram/raw/functions/stickers/change_sticker.py +84 -0
- pyrogram/raw/functions/stickers/change_sticker_position.py +62 -0
- pyrogram/raw/functions/stickers/check_short_name.py +54 -0
- pyrogram/raw/functions/stickers/create_sticker_set.py +117 -0
- pyrogram/raw/functions/stickers/delete_sticker_set.py +54 -0
- pyrogram/raw/functions/stickers/remove_sticker_from_set.py +54 -0
- pyrogram/raw/functions/stickers/rename_sticker_set.py +62 -0
- pyrogram/raw/functions/stickers/replace_sticker.py +62 -0
- pyrogram/raw/functions/stickers/set_sticker_set_thumb.py +75 -0
- pyrogram/raw/functions/stickers/suggest_short_name.py +54 -0
- pyrogram/raw/functions/stories/__init__.py +32 -0
- pyrogram/raw/functions/stories/activate_stealth_mode.py +60 -0
- pyrogram/raw/functions/stories/can_send_story.py +54 -0
- pyrogram/raw/functions/stories/delete_stories.py +62 -0
- pyrogram/raw/functions/stories/edit_story.py +113 -0
- pyrogram/raw/functions/stories/export_story_link.py +62 -0
- pyrogram/raw/functions/stories/get_all_read_peer_stories.py +49 -0
- pyrogram/raw/functions/stories/get_all_stories.py +69 -0
- pyrogram/raw/functions/stories/get_chats_to_send.py +49 -0
- pyrogram/raw/functions/stories/get_peer_max_i_ds.py +54 -0
- pyrogram/raw/functions/stories/get_peer_stories.py +54 -0
- pyrogram/raw/functions/stories/get_pinned_stories.py +70 -0
- pyrogram/raw/functions/stories/get_stories_archive.py +70 -0
- pyrogram/raw/functions/stories/get_stories_by_id.py +62 -0
- pyrogram/raw/functions/stories/get_stories_views.py +62 -0
- pyrogram/raw/functions/stories/get_story_reactions_list.py +97 -0
- pyrogram/raw/functions/stories/get_story_views_list.py +107 -0
- pyrogram/raw/functions/stories/increment_story_views.py +62 -0
- pyrogram/raw/functions/stories/read_stories.py +62 -0
- pyrogram/raw/functions/stories/report.py +78 -0
- pyrogram/raw/functions/stories/search_posts.py +83 -0
- pyrogram/raw/functions/stories/send_reaction.py +78 -0
- pyrogram/raw/functions/stories/send_story.py +155 -0
- pyrogram/raw/functions/stories/toggle_all_stories_hidden.py +54 -0
- pyrogram/raw/functions/stories/toggle_peer_stories_hidden.py +62 -0
- pyrogram/raw/functions/stories/toggle_pinned.py +70 -0
- pyrogram/raw/functions/stories/toggle_pinned_to_top.py +62 -0
- pyrogram/raw/functions/updates/__init__.py +9 -0
- pyrogram/raw/functions/updates/get_channel_difference.py +86 -0
- pyrogram/raw/functions/updates/get_difference.py +99 -0
- pyrogram/raw/functions/updates/get_state.py +49 -0
- pyrogram/raw/functions/upload/__init__.py +14 -0
- pyrogram/raw/functions/upload/get_cdn_file.py +70 -0
- pyrogram/raw/functions/upload/get_cdn_file_hashes.py +62 -0
- pyrogram/raw/functions/upload/get_file.py +84 -0
- pyrogram/raw/functions/upload/get_file_hashes.py +62 -0
- pyrogram/raw/functions/upload/get_web_file.py +70 -0
- pyrogram/raw/functions/upload/reupload_cdn_file.py +62 -0
- pyrogram/raw/functions/upload/save_big_file_part.py +78 -0
- pyrogram/raw/functions/upload/save_file_part.py +70 -0
- pyrogram/raw/functions/users/__init__.py +10 -0
- pyrogram/raw/functions/users/get_full_user.py +54 -0
- pyrogram/raw/functions/users/get_is_premium_required_to_contact.py +54 -0
- pyrogram/raw/functions/users/get_users.py +54 -0
- pyrogram/raw/functions/users/set_secure_value_errors.py +62 -0
- pyrogram/raw/types/__init__.py +1102 -0
- pyrogram/raw/types/access_point_rule.py +70 -0
- pyrogram/raw/types/account/__init__.py +37 -0
- pyrogram/raw/types/account/authorization_form.py +98 -0
- pyrogram/raw/types/account/authorizations.py +71 -0
- pyrogram/raw/types/account/auto_download_settings.py +79 -0
- pyrogram/raw/types/account/auto_save_settings.py +103 -0
- pyrogram/raw/types/account/business_chat_links.py +79 -0
- pyrogram/raw/types/account/connected_bots.py +71 -0
- pyrogram/raw/types/account/content_settings.py +69 -0
- pyrogram/raw/types/account/email_verified.py +63 -0
- pyrogram/raw/types/account/email_verified_login.py +71 -0
- pyrogram/raw/types/account/emoji_statuses.py +73 -0
- pyrogram/raw/types/account/emoji_statuses_not_modified.py +60 -0
- pyrogram/raw/types/account/password.py +163 -0
- pyrogram/raw/types/account/password_input_settings.py +95 -0
- pyrogram/raw/types/account/password_settings.py +76 -0
- pyrogram/raw/types/account/privacy_rules.py +80 -0
- pyrogram/raw/types/account/reset_password_failed_wait.py +63 -0
- pyrogram/raw/types/account/reset_password_ok.py +58 -0
- pyrogram/raw/types/account/reset_password_requested_wait.py +63 -0
- pyrogram/raw/types/account/resolved_business_chat_links.py +99 -0
- pyrogram/raw/types/account/saved_ringtone.py +58 -0
- pyrogram/raw/types/account/saved_ringtone_converted.py +63 -0
- pyrogram/raw/types/account/saved_ringtones.py +71 -0
- pyrogram/raw/types/account/saved_ringtones_not_modified.py +58 -0
- pyrogram/raw/types/account/sent_email_code.py +71 -0
- pyrogram/raw/types/account/takeout.py +63 -0
- pyrogram/raw/types/account/themes.py +72 -0
- pyrogram/raw/types/account/themes_not_modified.py +59 -0
- pyrogram/raw/types/account/tmp_password.py +71 -0
- pyrogram/raw/types/account/wall_papers.py +71 -0
- pyrogram/raw/types/account/wall_papers_not_modified.py +58 -0
- pyrogram/raw/types/account/web_authorizations.py +71 -0
- pyrogram/raw/types/account_days_ttl.py +63 -0
- pyrogram/raw/types/attach_menu_bot.py +118 -0
- pyrogram/raw/types/attach_menu_bot_icon.py +74 -0
- pyrogram/raw/types/attach_menu_bot_icon_color.py +62 -0
- pyrogram/raw/types/attach_menu_bots.py +79 -0
- pyrogram/raw/types/attach_menu_bots_bot.py +71 -0
- pyrogram/raw/types/attach_menu_bots_not_modified.py +58 -0
- pyrogram/raw/types/attach_menu_peer_type_bot_pm.py +49 -0
- pyrogram/raw/types/attach_menu_peer_type_broadcast.py +49 -0
- pyrogram/raw/types/attach_menu_peer_type_chat.py +49 -0
- pyrogram/raw/types/attach_menu_peer_type_pm.py +49 -0
- pyrogram/raw/types/attach_menu_peer_type_same_bot_pm.py +49 -0
- pyrogram/raw/types/auth/__init__.py +32 -0
- pyrogram/raw/types/auth/authorization.py +104 -0
- pyrogram/raw/types/auth/authorization_sign_up_required.py +73 -0
- pyrogram/raw/types/auth/code_type_call.py +49 -0
- pyrogram/raw/types/auth/code_type_flash_call.py +49 -0
- pyrogram/raw/types/auth/code_type_fragment_sms.py +49 -0
- pyrogram/raw/types/auth/code_type_missed_call.py +49 -0
- pyrogram/raw/types/auth/code_type_sms.py +49 -0
- pyrogram/raw/types/auth/exported_authorization.py +71 -0
- pyrogram/raw/types/auth/logged_out.py +66 -0
- pyrogram/raw/types/auth/login_token.py +72 -0
- pyrogram/raw/types/auth/login_token_migrate_to.py +72 -0
- pyrogram/raw/types/auth/login_token_success.py +64 -0
- pyrogram/raw/types/auth/password_recovery.py +63 -0
- pyrogram/raw/types/auth/sent_code.py +97 -0
- pyrogram/raw/types/auth/sent_code_success.py +68 -0
- pyrogram/raw/types/auth/sent_code_type_app.py +54 -0
- pyrogram/raw/types/auth/sent_code_type_call.py +54 -0
- pyrogram/raw/types/auth/sent_code_type_email_code.py +94 -0
- pyrogram/raw/types/auth/sent_code_type_firebase_sms.py +101 -0
- pyrogram/raw/types/auth/sent_code_type_flash_call.py +54 -0
- pyrogram/raw/types/auth/sent_code_type_fragment_sms.py +62 -0
- pyrogram/raw/types/auth/sent_code_type_missed_call.py +62 -0
- pyrogram/raw/types/auth/sent_code_type_set_up_email_required.py +60 -0
- pyrogram/raw/types/auth/sent_code_type_sms.py +54 -0
- pyrogram/raw/types/auth/sent_code_type_sms_phrase.py +57 -0
- pyrogram/raw/types/auth/sent_code_type_sms_word.py +57 -0
- pyrogram/raw/types/authorization.py +189 -0
- pyrogram/raw/types/auto_download_settings.py +126 -0
- pyrogram/raw/types/auto_save_exception.py +62 -0
- pyrogram/raw/types/auto_save_settings.py +69 -0
- pyrogram/raw/types/available_effect.py +96 -0
- pyrogram/raw/types/available_reaction.py +136 -0
- pyrogram/raw/types/bad_msg_notification.py +70 -0
- pyrogram/raw/types/bad_server_salt.py +78 -0
- pyrogram/raw/types/bank_card_open_url.py +62 -0
- pyrogram/raw/types/base_theme_arctic.py +49 -0
- pyrogram/raw/types/base_theme_classic.py +49 -0
- pyrogram/raw/types/base_theme_day.py +49 -0
- pyrogram/raw/types/base_theme_night.py +49 -0
- pyrogram/raw/types/base_theme_tinted.py +49 -0
- pyrogram/raw/types/bind_auth_key_inner.py +86 -0
- pyrogram/raw/types/birthday.py +73 -0
- pyrogram/raw/types/boost.py +126 -0
- pyrogram/raw/types/bot_app.py +114 -0
- pyrogram/raw/types/bot_app_not_modified.py +49 -0
- pyrogram/raw/types/bot_business_connection.py +92 -0
- pyrogram/raw/types/bot_command.py +71 -0
- pyrogram/raw/types/bot_command_scope_chat_admins.py +49 -0
- pyrogram/raw/types/bot_command_scope_chats.py +49 -0
- pyrogram/raw/types/bot_command_scope_default.py +49 -0
- pyrogram/raw/types/bot_command_scope_peer.py +54 -0
- pyrogram/raw/types/bot_command_scope_peer_admins.py +54 -0
- pyrogram/raw/types/bot_command_scope_peer_user.py +62 -0
- pyrogram/raw/types/bot_command_scope_users.py +49 -0
- pyrogram/raw/types/bot_info.py +106 -0
- pyrogram/raw/types/bot_inline_media_result.py +110 -0
- pyrogram/raw/types/bot_inline_message_media_auto.py +82 -0
- pyrogram/raw/types/bot_inline_message_media_contact.py +90 -0
- pyrogram/raw/types/bot_inline_message_media_geo.py +93 -0
- pyrogram/raw/types/bot_inline_message_media_invoice.py +112 -0
- pyrogram/raw/types/bot_inline_message_media_venue.py +106 -0
- pyrogram/raw/types/bot_inline_message_media_web_page.py +114 -0
- pyrogram/raw/types/bot_inline_message_text.py +88 -0
- pyrogram/raw/types/bot_inline_result.py +119 -0
- pyrogram/raw/types/bot_menu_button.py +71 -0
- pyrogram/raw/types/bot_menu_button_commands.py +58 -0
- pyrogram/raw/types/bot_menu_button_default.py +58 -0
- pyrogram/raw/types/bots/__init__.py +7 -0
- pyrogram/raw/types/bots/bot_info.py +79 -0
- pyrogram/raw/types/broadcast_revenue_balances.py +70 -0
- pyrogram/raw/types/broadcast_revenue_transaction_proceeds.py +70 -0
- pyrogram/raw/types/broadcast_revenue_transaction_refund.py +70 -0
- pyrogram/raw/types/broadcast_revenue_transaction_withdrawal.py +102 -0
- pyrogram/raw/types/business_away_message.py +78 -0
- pyrogram/raw/types/business_away_message_schedule_always.py +49 -0
- pyrogram/raw/types/business_away_message_schedule_custom.py +62 -0
- pyrogram/raw/types/business_away_message_schedule_outside_work_hours.py +49 -0
- pyrogram/raw/types/business_bot_recipients.py +98 -0
- pyrogram/raw/types/business_chat_link.py +101 -0
- pyrogram/raw/types/business_greeting_message.py +70 -0
- pyrogram/raw/types/business_intro.py +74 -0
- pyrogram/raw/types/business_location.py +66 -0
- pyrogram/raw/types/business_recipients.py +88 -0
- pyrogram/raw/types/business_weekly_open.py +62 -0
- pyrogram/raw/types/business_work_hours.py +70 -0
- pyrogram/raw/types/cdn_config.py +63 -0
- pyrogram/raw/types/cdn_public_key.py +62 -0
- pyrogram/raw/types/channel.py +347 -0
- pyrogram/raw/types/channel_admin_log_event.py +78 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_about.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_available_reactions.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_emoji_status.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_emoji_sticker_set.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_history_ttl.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_linked_chat.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_location.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_peer_color.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_photo.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_profile_peer_color.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_sticker_set.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_title.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_username.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_usernames.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_change_wallpaper.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_create_topic.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_default_banned_rights.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_delete_message.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_delete_topic.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_discard_group_call.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_edit_message.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_edit_topic.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_delete.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_edit.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_exported_invite_revoke.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_invite.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_join.py +49 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_invite.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_join_by_request.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_leave.py +49 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_mute.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_admin.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_toggle_ban.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_unmute.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_participant_volume.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_pin_topic.py +68 -0
- pyrogram/raw/types/channel_admin_log_event_action_send_message.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_start_group_call.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_stop_poll.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_anti_spam.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_forum.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_group_call_setting.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_invites.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_no_forwards.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_pre_history_hidden.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_signatures.py +54 -0
- pyrogram/raw/types/channel_admin_log_event_action_toggle_slow_mode.py +62 -0
- pyrogram/raw/types/channel_admin_log_event_action_update_pinned.py +54 -0
- pyrogram/raw/types/channel_admin_log_events_filter.py +156 -0
- pyrogram/raw/types/channel_forbidden.py +93 -0
- pyrogram/raw/types/channel_full.py +532 -0
- pyrogram/raw/types/channel_location.py +62 -0
- pyrogram/raw/types/channel_location_empty.py +49 -0
- pyrogram/raw/types/channel_messages_filter.py +62 -0
- pyrogram/raw/types/channel_messages_filter_empty.py +49 -0
- pyrogram/raw/types/channel_participant.py +62 -0
- pyrogram/raw/types/channel_participant_admin.py +110 -0
- pyrogram/raw/types/channel_participant_banned.py +86 -0
- pyrogram/raw/types/channel_participant_creator.py +73 -0
- pyrogram/raw/types/channel_participant_left.py +54 -0
- pyrogram/raw/types/channel_participant_self.py +78 -0
- pyrogram/raw/types/channel_participants_admins.py +49 -0
- pyrogram/raw/types/channel_participants_banned.py +54 -0
- pyrogram/raw/types/channel_participants_bots.py +49 -0
- pyrogram/raw/types/channel_participants_contacts.py +54 -0
- pyrogram/raw/types/channel_participants_kicked.py +54 -0
- pyrogram/raw/types/channel_participants_mentions.py +66 -0
- pyrogram/raw/types/channel_participants_recent.py +49 -0
- pyrogram/raw/types/channel_participants_search.py +54 -0
- pyrogram/raw/types/channels/__init__.py +14 -0
- pyrogram/raw/types/channels/admin_log_results.py +79 -0
- pyrogram/raw/types/channels/channel_participant.py +79 -0
- pyrogram/raw/types/channels/channel_participants.py +87 -0
- pyrogram/raw/types/channels/channel_participants_not_modified.py +58 -0
- pyrogram/raw/types/channels/send_as_peers.py +79 -0
- pyrogram/raw/types/channels/sponsored_message_report_result_ads_hidden.py +58 -0
- pyrogram/raw/types/channels/sponsored_message_report_result_choose_option.py +71 -0
- pyrogram/raw/types/channels/sponsored_message_report_result_reported.py +58 -0
- pyrogram/raw/types/chat.py +162 -0
- pyrogram/raw/types/chat_admin_rights.py +138 -0
- pyrogram/raw/types/chat_admin_with_invites.py +70 -0
- pyrogram/raw/types/chat_banned_rights.py +176 -0
- pyrogram/raw/types/chat_empty.py +54 -0
- pyrogram/raw/types/chat_forbidden.py +62 -0
- pyrogram/raw/types/chat_full.py +222 -0
- pyrogram/raw/types/chat_invite.py +156 -0
- pyrogram/raw/types/chat_invite_already.py +63 -0
- pyrogram/raw/types/chat_invite_exported.py +153 -0
- pyrogram/raw/types/chat_invite_importer.py +94 -0
- pyrogram/raw/types/chat_invite_peek.py +71 -0
- pyrogram/raw/types/chat_invite_public_join_requests.py +58 -0
- pyrogram/raw/types/chat_onlines.py +63 -0
- pyrogram/raw/types/chat_participant.py +70 -0
- pyrogram/raw/types/chat_participant_admin.py +70 -0
- pyrogram/raw/types/chat_participant_creator.py +54 -0
- pyrogram/raw/types/chat_participants.py +70 -0
- pyrogram/raw/types/chat_participants_forbidden.py +66 -0
- pyrogram/raw/types/chat_photo.py +79 -0
- pyrogram/raw/types/chat_photo_empty.py +49 -0
- pyrogram/raw/types/chat_reactions_all.py +54 -0
- pyrogram/raw/types/chat_reactions_none.py +49 -0
- pyrogram/raw/types/chat_reactions_some.py +54 -0
- pyrogram/raw/types/chatlists/__init__.py +11 -0
- pyrogram/raw/types/chatlists/chatlist_invite.py +98 -0
- pyrogram/raw/types/chatlists/chatlist_invite_already.py +95 -0
- pyrogram/raw/types/chatlists/chatlist_updates.py +79 -0
- pyrogram/raw/types/chatlists/exported_chatlist_invite.py +71 -0
- pyrogram/raw/types/chatlists/exported_invites.py +79 -0
- pyrogram/raw/types/client_dh_inner_data.py +78 -0
- pyrogram/raw/types/code_settings.py +112 -0
- pyrogram/raw/types/config.py +435 -0
- pyrogram/raw/types/connected_bot.py +70 -0
- pyrogram/raw/types/contact.py +62 -0
- pyrogram/raw/types/contact_birthday.py +62 -0
- pyrogram/raw/types/contact_status.py +71 -0
- pyrogram/raw/types/contacts/__init__.py +17 -0
- pyrogram/raw/types/contacts/blocked.py +79 -0
- pyrogram/raw/types/contacts/blocked_slice.py +87 -0
- pyrogram/raw/types/contacts/contact_birthdays.py +71 -0
- pyrogram/raw/types/contacts/contacts.py +79 -0
- pyrogram/raw/types/contacts/contacts_not_modified.py +58 -0
- pyrogram/raw/types/contacts/found.py +87 -0
- pyrogram/raw/types/contacts/imported_contacts.py +87 -0
- pyrogram/raw/types/contacts/resolved_peer.py +80 -0
- pyrogram/raw/types/contacts/top_peers.py +79 -0
- pyrogram/raw/types/contacts/top_peers_disabled.py +58 -0
- pyrogram/raw/types/contacts/top_peers_not_modified.py +58 -0
- pyrogram/raw/types/data_json.py +65 -0
- pyrogram/raw/types/dc_option.py +117 -0
- pyrogram/raw/types/default_history_ttl.py +63 -0
- pyrogram/raw/types/destroy_auth_key_fail.py +58 -0
- pyrogram/raw/types/destroy_auth_key_none.py +58 -0
- pyrogram/raw/types/destroy_auth_key_ok.py +58 -0
- pyrogram/raw/types/destroy_session_none.py +63 -0
- pyrogram/raw/types/destroy_session_ok.py +63 -0
- pyrogram/raw/types/dh_gen_fail.py +79 -0
- pyrogram/raw/types/dh_gen_ok.py +79 -0
- pyrogram/raw/types/dh_gen_retry.py +79 -0
- pyrogram/raw/types/dialog.py +167 -0
- pyrogram/raw/types/dialog_filter.py +154 -0
- pyrogram/raw/types/dialog_filter_chatlist.py +104 -0
- pyrogram/raw/types/dialog_filter_default.py +49 -0
- pyrogram/raw/types/dialog_filter_suggested.py +71 -0
- pyrogram/raw/types/dialog_folder.py +110 -0
- pyrogram/raw/types/dialog_peer.py +63 -0
- pyrogram/raw/types/dialog_peer_folder.py +63 -0
- pyrogram/raw/types/document.py +144 -0
- pyrogram/raw/types/document_attribute_animated.py +49 -0
- pyrogram/raw/types/document_attribute_audio.py +89 -0
- pyrogram/raw/types/document_attribute_custom_emoji.py +76 -0
- pyrogram/raw/types/document_attribute_filename.py +54 -0
- pyrogram/raw/types/document_attribute_has_stickers.py +49 -0
- pyrogram/raw/types/document_attribute_image_size.py +62 -0
- pyrogram/raw/types/document_attribute_sticker.py +80 -0
- pyrogram/raw/types/document_attribute_video.py +99 -0
- pyrogram/raw/types/document_empty.py +66 -0
- pyrogram/raw/types/draft_message.py +115 -0
- pyrogram/raw/types/draft_message_empty.py +57 -0
- pyrogram/raw/types/email_verification_apple.py +54 -0
- pyrogram/raw/types/email_verification_code.py +54 -0
- pyrogram/raw/types/email_verification_google.py +54 -0
- pyrogram/raw/types/email_verify_purpose_login_change.py +49 -0
- pyrogram/raw/types/email_verify_purpose_login_setup.py +62 -0
- pyrogram/raw/types/email_verify_purpose_passport.py +49 -0
- pyrogram/raw/types/emoji_group.py +70 -0
- pyrogram/raw/types/emoji_group_greeting.py +70 -0
- pyrogram/raw/types/emoji_group_premium.py +62 -0
- pyrogram/raw/types/emoji_keyword.py +62 -0
- pyrogram/raw/types/emoji_keyword_deleted.py +62 -0
- pyrogram/raw/types/emoji_keywords_difference.py +88 -0
- pyrogram/raw/types/emoji_language.py +63 -0
- pyrogram/raw/types/emoji_list.py +75 -0
- pyrogram/raw/types/emoji_list_not_modified.py +62 -0
- pyrogram/raw/types/emoji_status.py +54 -0
- pyrogram/raw/types/emoji_status_empty.py +49 -0
- pyrogram/raw/types/emoji_status_until.py +62 -0
- pyrogram/raw/types/emoji_url.py +63 -0
- pyrogram/raw/types/encrypted_chat.py +112 -0
- pyrogram/raw/types/encrypted_chat_discarded.py +72 -0
- pyrogram/raw/types/encrypted_chat_empty.py +64 -0
- pyrogram/raw/types/encrypted_chat_requested.py +115 -0
- pyrogram/raw/types/encrypted_chat_waiting.py +96 -0
- pyrogram/raw/types/encrypted_file.py +95 -0
- pyrogram/raw/types/encrypted_file_empty.py +58 -0
- pyrogram/raw/types/encrypted_message.py +86 -0
- pyrogram/raw/types/encrypted_message_service.py +78 -0
- pyrogram/raw/types/exported_chatlist_invite.py +82 -0
- pyrogram/raw/types/exported_contact_token.py +71 -0
- pyrogram/raw/types/exported_message_link.py +71 -0
- pyrogram/raw/types/exported_story_link.py +63 -0
- pyrogram/raw/types/fact_check.py +90 -0
- pyrogram/raw/types/file_hash.py +81 -0
- pyrogram/raw/types/folder.py +92 -0
- pyrogram/raw/types/folder_peer.py +62 -0
- pyrogram/raw/types/forum_topic.py +193 -0
- pyrogram/raw/types/forum_topic_deleted.py +54 -0
- pyrogram/raw/types/found_story.py +62 -0
- pyrogram/raw/types/fragment/__init__.py +7 -0
- pyrogram/raw/types/fragment/collectible_info.py +103 -0
- pyrogram/raw/types/game.py +106 -0
- pyrogram/raw/types/geo_point.py +81 -0
- pyrogram/raw/types/geo_point_address.py +83 -0
- pyrogram/raw/types/geo_point_empty.py +49 -0
- pyrogram/raw/types/global_privacy_settings.py +88 -0
- pyrogram/raw/types/group_call.py +181 -0
- pyrogram/raw/types/group_call_discarded.py +70 -0
- pyrogram/raw/types/group_call_participant.py +188 -0
- pyrogram/raw/types/group_call_participant_video.py +79 -0
- pyrogram/raw/types/group_call_participant_video_source_group.py +62 -0
- pyrogram/raw/types/group_call_stream_channel.py +70 -0
- pyrogram/raw/types/help/__init__.py +39 -0
- pyrogram/raw/types/help/app_config.py +71 -0
- pyrogram/raw/types/help/app_config_not_modified.py +58 -0
- pyrogram/raw/types/help/app_update.py +124 -0
- pyrogram/raw/types/help/config_simple.py +70 -0
- pyrogram/raw/types/help/countries_list.py +71 -0
- pyrogram/raw/types/help/countries_list_not_modified.py +58 -0
- pyrogram/raw/types/help/country.py +87 -0
- pyrogram/raw/types/help/country_code.py +76 -0
- pyrogram/raw/types/help/deep_link_info.py +81 -0
- pyrogram/raw/types/help/deep_link_info_empty.py +58 -0
- pyrogram/raw/types/help/invite_text.py +63 -0
- pyrogram/raw/types/help/no_app_update.py +58 -0
- pyrogram/raw/types/help/passport_config.py +71 -0
- pyrogram/raw/types/help/passport_config_not_modified.py +58 -0
- pyrogram/raw/types/help/peer_color_option.py +100 -0
- pyrogram/raw/types/help/peer_color_profile_set.py +70 -0
- pyrogram/raw/types/help/peer_color_set.py +54 -0
- pyrogram/raw/types/help/peer_colors.py +72 -0
- pyrogram/raw/types/help/peer_colors_not_modified.py +59 -0
- pyrogram/raw/types/help/premium_promo.py +103 -0
- pyrogram/raw/types/help/promo_data.py +113 -0
- pyrogram/raw/types/help/promo_data_empty.py +63 -0
- pyrogram/raw/types/help/recent_me_urls.py +79 -0
- pyrogram/raw/types/help/support.py +71 -0
- pyrogram/raw/types/help/support_name.py +63 -0
- pyrogram/raw/types/help/terms_of_service.py +87 -0
- pyrogram/raw/types/help/terms_of_service_update.py +71 -0
- pyrogram/raw/types/help/terms_of_service_update_empty.py +63 -0
- pyrogram/raw/types/help/timezones_list.py +71 -0
- pyrogram/raw/types/help/timezones_list_not_modified.py +58 -0
- pyrogram/raw/types/help/user_info.py +88 -0
- pyrogram/raw/types/help/user_info_empty.py +59 -0
- pyrogram/raw/types/high_score.py +70 -0
- pyrogram/raw/types/http_wait.py +70 -0
- pyrogram/raw/types/imported_contact.py +62 -0
- pyrogram/raw/types/inline_bot_switch_pm.py +62 -0
- pyrogram/raw/types/inline_bot_web_view.py +62 -0
- pyrogram/raw/types/inline_query_peer_type_bot_pm.py +49 -0
- pyrogram/raw/types/inline_query_peer_type_broadcast.py +49 -0
- pyrogram/raw/types/inline_query_peer_type_chat.py +49 -0
- pyrogram/raw/types/inline_query_peer_type_megagroup.py +49 -0
- pyrogram/raw/types/inline_query_peer_type_pm.py +49 -0
- pyrogram/raw/types/inline_query_peer_type_same_bot_pm.py +49 -0
- pyrogram/raw/types/input_app_event.py +78 -0
- pyrogram/raw/types/input_bot_app_id.py +62 -0
- pyrogram/raw/types/input_bot_app_short_name.py +62 -0
- pyrogram/raw/types/input_bot_inline_message_game.py +58 -0
- pyrogram/raw/types/input_bot_inline_message_id.py +70 -0
- pyrogram/raw/types/input_bot_inline_message_id64.py +78 -0
- pyrogram/raw/types/input_bot_inline_message_media_auto.py +82 -0
- pyrogram/raw/types/input_bot_inline_message_media_contact.py +90 -0
- pyrogram/raw/types/input_bot_inline_message_media_geo.py +93 -0
- pyrogram/raw/types/input_bot_inline_message_media_invoice.py +116 -0
- pyrogram/raw/types/input_bot_inline_message_media_venue.py +106 -0
- pyrogram/raw/types/input_bot_inline_message_media_web_page.py +108 -0
- pyrogram/raw/types/input_bot_inline_message_text.py +88 -0
- pyrogram/raw/types/input_bot_inline_result.py +119 -0
- pyrogram/raw/types/input_bot_inline_result_document.py +98 -0
- pyrogram/raw/types/input_bot_inline_result_game.py +70 -0
- pyrogram/raw/types/input_bot_inline_result_photo.py +78 -0
- pyrogram/raw/types/input_business_away_message.py +78 -0
- pyrogram/raw/types/input_business_bot_recipients.py +98 -0
- pyrogram/raw/types/input_business_chat_link.py +75 -0
- pyrogram/raw/types/input_business_greeting_message.py +70 -0
- pyrogram/raw/types/input_business_intro.py +74 -0
- pyrogram/raw/types/input_business_recipients.py +88 -0
- pyrogram/raw/types/input_channel.py +62 -0
- pyrogram/raw/types/input_channel_empty.py +49 -0
- pyrogram/raw/types/input_channel_from_message.py +70 -0
- pyrogram/raw/types/input_chat_photo.py +54 -0
- pyrogram/raw/types/input_chat_photo_empty.py +49 -0
- pyrogram/raw/types/input_chat_uploaded_photo.py +87 -0
- pyrogram/raw/types/input_chatlist_dialog_filter.py +54 -0
- pyrogram/raw/types/input_check_password_empty.py +49 -0
- pyrogram/raw/types/input_check_password_srp.py +70 -0
- pyrogram/raw/types/input_client_proxy.py +62 -0
- pyrogram/raw/types/input_collectible_phone.py +54 -0
- pyrogram/raw/types/input_collectible_username.py +54 -0
- pyrogram/raw/types/input_dialog_peer.py +54 -0
- pyrogram/raw/types/input_dialog_peer_folder.py +54 -0
- pyrogram/raw/types/input_document.py +70 -0
- pyrogram/raw/types/input_document_empty.py +49 -0
- pyrogram/raw/types/input_document_file_location.py +78 -0
- pyrogram/raw/types/input_encrypted_chat.py +62 -0
- pyrogram/raw/types/input_encrypted_file.py +62 -0
- pyrogram/raw/types/input_encrypted_file_big_uploaded.py +70 -0
- pyrogram/raw/types/input_encrypted_file_empty.py +49 -0
- pyrogram/raw/types/input_encrypted_file_location.py +62 -0
- pyrogram/raw/types/input_encrypted_file_uploaded.py +78 -0
- pyrogram/raw/types/input_file.py +78 -0
- pyrogram/raw/types/input_file_big.py +70 -0
- pyrogram/raw/types/input_file_location.py +78 -0
- pyrogram/raw/types/input_folder_peer.py +62 -0
- pyrogram/raw/types/input_game_id.py +62 -0
- pyrogram/raw/types/input_game_short_name.py +62 -0
- pyrogram/raw/types/input_geo_point.py +73 -0
- pyrogram/raw/types/input_geo_point_empty.py +49 -0
- pyrogram/raw/types/input_group_call.py +62 -0
- pyrogram/raw/types/input_group_call_stream.py +90 -0
- pyrogram/raw/types/input_invoice_message.py +62 -0
- pyrogram/raw/types/input_invoice_premium_gift_code.py +62 -0
- pyrogram/raw/types/input_invoice_slug.py +54 -0
- pyrogram/raw/types/input_invoice_stars.py +54 -0
- pyrogram/raw/types/input_keyboard_button_request_peer.py +98 -0
- pyrogram/raw/types/input_keyboard_button_url_auth.py +87 -0
- pyrogram/raw/types/input_keyboard_button_user_profile.py +62 -0
- pyrogram/raw/types/input_media_area_channel_post.py +70 -0
- pyrogram/raw/types/input_media_area_venue.py +70 -0
- pyrogram/raw/types/input_media_contact.py +78 -0
- pyrogram/raw/types/input_media_dice.py +54 -0
- pyrogram/raw/types/input_media_document.py +80 -0
- pyrogram/raw/types/input_media_document_external.py +71 -0
- pyrogram/raw/types/input_media_empty.py +49 -0
- pyrogram/raw/types/input_media_game.py +54 -0
- pyrogram/raw/types/input_media_geo_live.py +89 -0
- pyrogram/raw/types/input_media_geo_point.py +54 -0
- pyrogram/raw/types/input_media_invoice.py +126 -0
- pyrogram/raw/types/input_media_paid_media.py +62 -0
- pyrogram/raw/types/input_media_photo.py +71 -0
- pyrogram/raw/types/input_media_photo_external.py +71 -0
- pyrogram/raw/types/input_media_poll.py +85 -0
- pyrogram/raw/types/input_media_story.py +62 -0
- pyrogram/raw/types/input_media_uploaded_document.py +119 -0
- pyrogram/raw/types/input_media_uploaded_photo.py +81 -0
- pyrogram/raw/types/input_media_venue.py +94 -0
- pyrogram/raw/types/input_media_web_page.py +74 -0
- pyrogram/raw/types/input_message_callback_query.py +62 -0
- pyrogram/raw/types/input_message_entity_mention_name.py +70 -0
- pyrogram/raw/types/input_message_id.py +54 -0
- pyrogram/raw/types/input_message_pinned.py +49 -0
- pyrogram/raw/types/input_message_reply_to.py +54 -0
- pyrogram/raw/types/input_messages_filter_chat_photos.py +49 -0
- pyrogram/raw/types/input_messages_filter_contacts.py +49 -0
- pyrogram/raw/types/input_messages_filter_document.py +49 -0
- pyrogram/raw/types/input_messages_filter_empty.py +49 -0
- pyrogram/raw/types/input_messages_filter_geo.py +49 -0
- pyrogram/raw/types/input_messages_filter_gif.py +49 -0
- pyrogram/raw/types/input_messages_filter_music.py +49 -0
- pyrogram/raw/types/input_messages_filter_my_mentions.py +49 -0
- pyrogram/raw/types/input_messages_filter_phone_calls.py +54 -0
- pyrogram/raw/types/input_messages_filter_photo_video.py +49 -0
- pyrogram/raw/types/input_messages_filter_photos.py +49 -0
- pyrogram/raw/types/input_messages_filter_pinned.py +49 -0
- pyrogram/raw/types/input_messages_filter_round_video.py +49 -0
- pyrogram/raw/types/input_messages_filter_round_voice.py +49 -0
- pyrogram/raw/types/input_messages_filter_url.py +49 -0
- pyrogram/raw/types/input_messages_filter_video.py +49 -0
- pyrogram/raw/types/input_messages_filter_voice.py +49 -0
- pyrogram/raw/types/input_notify_broadcasts.py +49 -0
- pyrogram/raw/types/input_notify_chats.py +49 -0
- pyrogram/raw/types/input_notify_forum_topic.py +62 -0
- pyrogram/raw/types/input_notify_peer.py +54 -0
- pyrogram/raw/types/input_notify_users.py +49 -0
- pyrogram/raw/types/input_payment_credentials.py +62 -0
- pyrogram/raw/types/input_payment_credentials_apple_pay.py +54 -0
- pyrogram/raw/types/input_payment_credentials_google_pay.py +54 -0
- pyrogram/raw/types/input_payment_credentials_saved.py +62 -0
- pyrogram/raw/types/input_peer_channel.py +62 -0
- pyrogram/raw/types/input_peer_channel_from_message.py +70 -0
- pyrogram/raw/types/input_peer_chat.py +54 -0
- pyrogram/raw/types/input_peer_empty.py +49 -0
- pyrogram/raw/types/input_peer_notify_settings.py +113 -0
- pyrogram/raw/types/input_peer_photo_file_location.py +70 -0
- pyrogram/raw/types/input_peer_photo_file_location_legacy.py +78 -0
- pyrogram/raw/types/input_peer_self.py +49 -0
- pyrogram/raw/types/input_peer_user.py +62 -0
- pyrogram/raw/types/input_peer_user_from_message.py +70 -0
- pyrogram/raw/types/input_phone_call.py +62 -0
- pyrogram/raw/types/input_phone_contact.py +78 -0
- pyrogram/raw/types/input_photo.py +70 -0
- pyrogram/raw/types/input_photo_empty.py +49 -0
- pyrogram/raw/types/input_photo_file_location.py +78 -0
- pyrogram/raw/types/input_photo_legacy_file_location.py +94 -0
- pyrogram/raw/types/input_privacy_key_about.py +49 -0
- pyrogram/raw/types/input_privacy_key_added_by_phone.py +49 -0
- pyrogram/raw/types/input_privacy_key_birthday.py +49 -0
- pyrogram/raw/types/input_privacy_key_chat_invite.py +49 -0
- pyrogram/raw/types/input_privacy_key_forwards.py +49 -0
- pyrogram/raw/types/input_privacy_key_phone_call.py +49 -0
- pyrogram/raw/types/input_privacy_key_phone_number.py +49 -0
- pyrogram/raw/types/input_privacy_key_phone_p2_p.py +49 -0
- pyrogram/raw/types/input_privacy_key_profile_photo.py +49 -0
- pyrogram/raw/types/input_privacy_key_status_timestamp.py +49 -0
- pyrogram/raw/types/input_privacy_key_voice_messages.py +49 -0
- pyrogram/raw/types/input_privacy_value_allow_all.py +49 -0
- pyrogram/raw/types/input_privacy_value_allow_chat_participants.py +54 -0
- pyrogram/raw/types/input_privacy_value_allow_close_friends.py +49 -0
- pyrogram/raw/types/input_privacy_value_allow_contacts.py +49 -0
- pyrogram/raw/types/input_privacy_value_allow_premium.py +49 -0
- pyrogram/raw/types/input_privacy_value_allow_users.py +54 -0
- pyrogram/raw/types/input_privacy_value_disallow_all.py +49 -0
- pyrogram/raw/types/input_privacy_value_disallow_chat_participants.py +54 -0
- pyrogram/raw/types/input_privacy_value_disallow_contacts.py +49 -0
- pyrogram/raw/types/input_privacy_value_disallow_users.py +54 -0
- pyrogram/raw/types/input_quick_reply_shortcut.py +54 -0
- pyrogram/raw/types/input_quick_reply_shortcut_id.py +54 -0
- pyrogram/raw/types/input_reply_to_message.py +103 -0
- pyrogram/raw/types/input_reply_to_story.py +62 -0
- pyrogram/raw/types/input_report_reason_child_abuse.py +49 -0
- pyrogram/raw/types/input_report_reason_copyright.py +49 -0
- pyrogram/raw/types/input_report_reason_fake.py +49 -0
- pyrogram/raw/types/input_report_reason_geo_irrelevant.py +49 -0
- pyrogram/raw/types/input_report_reason_illegal_drugs.py +49 -0
- pyrogram/raw/types/input_report_reason_other.py +49 -0
- pyrogram/raw/types/input_report_reason_personal_details.py +49 -0
- pyrogram/raw/types/input_report_reason_pornography.py +49 -0
- pyrogram/raw/types/input_report_reason_spam.py +49 -0
- pyrogram/raw/types/input_report_reason_violence.py +49 -0
- pyrogram/raw/types/input_secure_file.py +62 -0
- pyrogram/raw/types/input_secure_file_location.py +62 -0
- pyrogram/raw/types/input_secure_file_uploaded.py +86 -0
- pyrogram/raw/types/input_secure_value.py +126 -0
- pyrogram/raw/types/input_single_media.py +82 -0
- pyrogram/raw/types/input_stars_transaction.py +62 -0
- pyrogram/raw/types/input_sticker_set_animated_emoji.py +49 -0
- pyrogram/raw/types/input_sticker_set_animated_emoji_animations.py +49 -0
- pyrogram/raw/types/input_sticker_set_dice.py +54 -0
- pyrogram/raw/types/input_sticker_set_emoji_channel_default_statuses.py +49 -0
- pyrogram/raw/types/input_sticker_set_emoji_default_statuses.py +49 -0
- pyrogram/raw/types/input_sticker_set_emoji_default_topic_icons.py +49 -0
- pyrogram/raw/types/input_sticker_set_emoji_generic_animations.py +49 -0
- pyrogram/raw/types/input_sticker_set_empty.py +49 -0
- pyrogram/raw/types/input_sticker_set_id.py +62 -0
- pyrogram/raw/types/input_sticker_set_item.py +83 -0
- pyrogram/raw/types/input_sticker_set_premium_gifts.py +49 -0
- pyrogram/raw/types/input_sticker_set_short_name.py +54 -0
- pyrogram/raw/types/input_sticker_set_thumb.py +62 -0
- pyrogram/raw/types/input_sticker_set_thumb_legacy.py +70 -0
- pyrogram/raw/types/input_stickered_media_document.py +54 -0
- pyrogram/raw/types/input_stickered_media_photo.py +54 -0
- pyrogram/raw/types/input_store_payment_gift_premium.py +70 -0
- pyrogram/raw/types/input_store_payment_premium_gift_code.py +82 -0
- pyrogram/raw/types/input_store_payment_premium_giveaway.py +129 -0
- pyrogram/raw/types/input_store_payment_premium_subscription.py +60 -0
- pyrogram/raw/types/input_store_payment_stars.py +73 -0
- pyrogram/raw/types/input_takeout_file_location.py +49 -0
- pyrogram/raw/types/input_theme.py +62 -0
- pyrogram/raw/types/input_theme_settings.py +109 -0
- pyrogram/raw/types/input_theme_slug.py +54 -0
- pyrogram/raw/types/input_user.py +62 -0
- pyrogram/raw/types/input_user_empty.py +49 -0
- pyrogram/raw/types/input_user_from_message.py +70 -0
- pyrogram/raw/types/input_user_self.py +49 -0
- pyrogram/raw/types/input_wall_paper.py +62 -0
- pyrogram/raw/types/input_wall_paper_no_file.py +54 -0
- pyrogram/raw/types/input_wall_paper_slug.py +54 -0
- pyrogram/raw/types/input_web_document.py +78 -0
- pyrogram/raw/types/input_web_file_audio_album_thumb_location.py +82 -0
- pyrogram/raw/types/input_web_file_geo_point_location.py +94 -0
- pyrogram/raw/types/input_web_file_location.py +62 -0
- pyrogram/raw/types/invoice.py +146 -0
- pyrogram/raw/types/ip_port.py +62 -0
- pyrogram/raw/types/ip_port_secret.py +70 -0
- pyrogram/raw/types/json_array.py +54 -0
- pyrogram/raw/types/json_bool.py +54 -0
- pyrogram/raw/types/json_null.py +49 -0
- pyrogram/raw/types/json_number.py +54 -0
- pyrogram/raw/types/json_object.py +54 -0
- pyrogram/raw/types/json_object_value.py +62 -0
- pyrogram/raw/types/json_string.py +54 -0
- pyrogram/raw/types/keyboard_button.py +54 -0
- pyrogram/raw/types/keyboard_button_buy.py +54 -0
- pyrogram/raw/types/keyboard_button_callback.py +70 -0
- pyrogram/raw/types/keyboard_button_game.py +54 -0
- pyrogram/raw/types/keyboard_button_request_geo_location.py +54 -0
- pyrogram/raw/types/keyboard_button_request_peer.py +78 -0
- pyrogram/raw/types/keyboard_button_request_phone.py +54 -0
- pyrogram/raw/types/keyboard_button_request_poll.py +65 -0
- pyrogram/raw/types/keyboard_button_row.py +54 -0
- pyrogram/raw/types/keyboard_button_simple_web_view.py +62 -0
- pyrogram/raw/types/keyboard_button_switch_inline.py +80 -0
- pyrogram/raw/types/keyboard_button_url.py +62 -0
- pyrogram/raw/types/keyboard_button_url_auth.py +81 -0
- pyrogram/raw/types/keyboard_button_user_profile.py +62 -0
- pyrogram/raw/types/keyboard_button_web_view.py +62 -0
- pyrogram/raw/types/labeled_price.py +62 -0
- pyrogram/raw/types/lang_pack_difference.py +88 -0
- pyrogram/raw/types/lang_pack_language.py +141 -0
- pyrogram/raw/types/lang_pack_string.py +71 -0
- pyrogram/raw/types/lang_pack_string_deleted.py +63 -0
- pyrogram/raw/types/lang_pack_string_pluralized.py +118 -0
- pyrogram/raw/types/mask_coords.py +78 -0
- pyrogram/raw/types/media_area_channel_post.py +70 -0
- pyrogram/raw/types/media_area_coordinates.py +97 -0
- pyrogram/raw/types/media_area_geo_point.py +74 -0
- pyrogram/raw/types/media_area_suggested_reaction.py +76 -0
- pyrogram/raw/types/media_area_url.py +62 -0
- pyrogram/raw/types/media_area_venue.py +102 -0
- pyrogram/raw/types/message.py +365 -0
- pyrogram/raw/types/message_action_boost_apply.py +54 -0
- pyrogram/raw/types/message_action_bot_allowed.py +79 -0
- pyrogram/raw/types/message_action_channel_create.py +54 -0
- pyrogram/raw/types/message_action_channel_migrate_from.py +62 -0
- pyrogram/raw/types/message_action_chat_add_user.py +54 -0
- pyrogram/raw/types/message_action_chat_create.py +62 -0
- pyrogram/raw/types/message_action_chat_delete_photo.py +49 -0
- pyrogram/raw/types/message_action_chat_delete_user.py +54 -0
- pyrogram/raw/types/message_action_chat_edit_photo.py +54 -0
- pyrogram/raw/types/message_action_chat_edit_title.py +54 -0
- pyrogram/raw/types/message_action_chat_joined_by_link.py +54 -0
- pyrogram/raw/types/message_action_chat_joined_by_request.py +49 -0
- pyrogram/raw/types/message_action_chat_migrate_to.py +54 -0
- pyrogram/raw/types/message_action_contact_sign_up.py +49 -0
- pyrogram/raw/types/message_action_custom_action.py +54 -0
- pyrogram/raw/types/message_action_empty.py +49 -0
- pyrogram/raw/types/message_action_game_score.py +62 -0
- pyrogram/raw/types/message_action_geo_proximity_reached.py +70 -0
- pyrogram/raw/types/message_action_gift_code.py +122 -0
- pyrogram/raw/types/message_action_gift_premium.py +90 -0
- pyrogram/raw/types/message_action_giveaway_launch.py +49 -0
- pyrogram/raw/types/message_action_giveaway_results.py +62 -0
- pyrogram/raw/types/message_action_group_call.py +65 -0
- pyrogram/raw/types/message_action_group_call_scheduled.py +62 -0
- pyrogram/raw/types/message_action_history_clear.py +49 -0
- pyrogram/raw/types/message_action_invite_to_group_call.py +62 -0
- pyrogram/raw/types/message_action_payment_refunded.py +89 -0
- pyrogram/raw/types/message_action_payment_sent.py +85 -0
- pyrogram/raw/types/message_action_payment_sent_me.py +111 -0
- pyrogram/raw/types/message_action_phone_call.py +81 -0
- pyrogram/raw/types/message_action_pin_message.py +49 -0
- pyrogram/raw/types/message_action_requested_peer.py +62 -0
- pyrogram/raw/types/message_action_requested_peer_sent_me.py +62 -0
- pyrogram/raw/types/message_action_screenshot_taken.py +49 -0
- pyrogram/raw/types/message_action_secure_values_sent.py +54 -0
- pyrogram/raw/types/message_action_secure_values_sent_me.py +62 -0
- pyrogram/raw/types/message_action_set_chat_theme.py +54 -0
- pyrogram/raw/types/message_action_set_chat_wall_paper.py +68 -0
- pyrogram/raw/types/message_action_set_messages_ttl.py +65 -0
- pyrogram/raw/types/message_action_suggest_profile_photo.py +54 -0
- pyrogram/raw/types/message_action_topic_create.py +73 -0
- pyrogram/raw/types/message_action_topic_edit.py +84 -0
- pyrogram/raw/types/message_action_web_view_data_sent.py +54 -0
- pyrogram/raw/types/message_action_web_view_data_sent_me.py +62 -0
- pyrogram/raw/types/message_empty.py +66 -0
- pyrogram/raw/types/message_entity_bank_card.py +62 -0
- pyrogram/raw/types/message_entity_blockquote.py +70 -0
- pyrogram/raw/types/message_entity_bold.py +62 -0
- pyrogram/raw/types/message_entity_bot_command.py +62 -0
- pyrogram/raw/types/message_entity_cashtag.py +62 -0
- pyrogram/raw/types/message_entity_code.py +62 -0
- pyrogram/raw/types/message_entity_custom_emoji.py +70 -0
- pyrogram/raw/types/message_entity_email.py +62 -0
- pyrogram/raw/types/message_entity_hashtag.py +62 -0
- pyrogram/raw/types/message_entity_italic.py +62 -0
- pyrogram/raw/types/message_entity_mention.py +62 -0
- pyrogram/raw/types/message_entity_mention_name.py +70 -0
- pyrogram/raw/types/message_entity_phone.py +62 -0
- pyrogram/raw/types/message_entity_pre.py +70 -0
- pyrogram/raw/types/message_entity_spoiler.py +62 -0
- pyrogram/raw/types/message_entity_strike.py +62 -0
- pyrogram/raw/types/message_entity_text_url.py +70 -0
- pyrogram/raw/types/message_entity_underline.py +62 -0
- pyrogram/raw/types/message_entity_unknown.py +62 -0
- pyrogram/raw/types/message_entity_url.py +62 -0
- pyrogram/raw/types/message_extended_media.py +54 -0
- pyrogram/raw/types/message_extended_media_preview.py +85 -0
- pyrogram/raw/types/message_fwd_header.py +161 -0
- pyrogram/raw/types/message_media_contact.py +97 -0
- pyrogram/raw/types/message_media_dice.py +73 -0
- pyrogram/raw/types/message_media_document.py +118 -0
- pyrogram/raw/types/message_media_empty.py +60 -0
- pyrogram/raw/types/message_media_game.py +65 -0
- pyrogram/raw/types/message_media_geo.py +65 -0
- pyrogram/raw/types/message_media_geo_live.py +93 -0
- pyrogram/raw/types/message_media_giveaway.py +122 -0
- pyrogram/raw/types/message_media_giveaway_results.py +145 -0
- pyrogram/raw/types/message_media_invoice.py +140 -0
- pyrogram/raw/types/message_media_paid_media.py +73 -0
- pyrogram/raw/types/message_media_photo.py +84 -0
- pyrogram/raw/types/message_media_poll.py +73 -0
- pyrogram/raw/types/message_media_story.py +91 -0
- pyrogram/raw/types/message_media_unsupported.py +60 -0
- pyrogram/raw/types/message_media_venue.py +105 -0
- pyrogram/raw/types/message_media_web_page.py +91 -0
- pyrogram/raw/types/message_peer_reaction.py +90 -0
- pyrogram/raw/types/message_peer_vote.py +70 -0
- pyrogram/raw/types/message_peer_vote_input_option.py +62 -0
- pyrogram/raw/types/message_peer_vote_multiple.py +70 -0
- pyrogram/raw/types/message_range.py +71 -0
- pyrogram/raw/types/message_reactions.py +84 -0
- pyrogram/raw/types/message_replies.py +107 -0
- pyrogram/raw/types/message_reply_header.py +142 -0
- pyrogram/raw/types/message_reply_story_header.py +62 -0
- pyrogram/raw/types/message_service.py +145 -0
- pyrogram/raw/types/message_views.py +76 -0
- pyrogram/raw/types/messages/__init__.py +89 -0
- pyrogram/raw/types/messages/affected_found_messages.py +87 -0
- pyrogram/raw/types/messages/affected_history.py +85 -0
- pyrogram/raw/types/messages/affected_messages.py +74 -0
- pyrogram/raw/types/messages/all_stickers.py +73 -0
- pyrogram/raw/types/messages/all_stickers_not_modified.py +60 -0
- pyrogram/raw/types/messages/archived_stickers.py +71 -0
- pyrogram/raw/types/messages/available_effects.py +79 -0
- pyrogram/raw/types/messages/available_effects_not_modified.py +58 -0
- pyrogram/raw/types/messages/available_reactions.py +71 -0
- pyrogram/raw/types/messages/available_reactions_not_modified.py +58 -0
- pyrogram/raw/types/messages/bot_app.py +83 -0
- pyrogram/raw/types/messages/bot_callback_answer.py +101 -0
- pyrogram/raw/types/messages/bot_results.py +124 -0
- pyrogram/raw/types/messages/channel_messages.py +134 -0
- pyrogram/raw/types/messages/chat_admins_with_invites.py +71 -0
- pyrogram/raw/types/messages/chat_full.py +80 -0
- pyrogram/raw/types/messages/chat_invite_importers.py +79 -0
- pyrogram/raw/types/messages/chats.py +70 -0
- pyrogram/raw/types/messages/chats_slice.py +78 -0
- pyrogram/raw/types/messages/checked_history_import_peer.py +63 -0
- pyrogram/raw/types/messages/dh_config.py +87 -0
- pyrogram/raw/types/messages/dh_config_not_modified.py +63 -0
- pyrogram/raw/types/messages/dialog_filters.py +71 -0
- pyrogram/raw/types/messages/dialogs.py +87 -0
- pyrogram/raw/types/messages/dialogs_not_modified.py +63 -0
- pyrogram/raw/types/messages/dialogs_slice.py +95 -0
- pyrogram/raw/types/messages/discussion_message.py +116 -0
- pyrogram/raw/types/messages/emoji_groups.py +74 -0
- pyrogram/raw/types/messages/emoji_groups_not_modified.py +61 -0
- pyrogram/raw/types/messages/exported_chat_invite.py +72 -0
- pyrogram/raw/types/messages/exported_chat_invite_replaced.py +80 -0
- pyrogram/raw/types/messages/exported_chat_invites.py +79 -0
- pyrogram/raw/types/messages/faved_stickers.py +79 -0
- pyrogram/raw/types/messages/faved_stickers_not_modified.py +58 -0
- pyrogram/raw/types/messages/featured_stickers.py +97 -0
- pyrogram/raw/types/messages/featured_stickers_not_modified.py +65 -0
- pyrogram/raw/types/messages/forum_topics.py +112 -0
- pyrogram/raw/types/messages/found_sticker_sets.py +72 -0
- pyrogram/raw/types/messages/found_sticker_sets_not_modified.py +59 -0
- pyrogram/raw/types/messages/high_scores.py +72 -0
- pyrogram/raw/types/messages/history_import.py +63 -0
- pyrogram/raw/types/messages/history_import_parsed.py +78 -0
- pyrogram/raw/types/messages/inactive_chats.py +79 -0
- pyrogram/raw/types/messages/invited_users.py +73 -0
- pyrogram/raw/types/messages/message_edit_data.py +63 -0
- pyrogram/raw/types/messages/message_reactions_list.py +98 -0
- pyrogram/raw/types/messages/message_views.py +79 -0
- pyrogram/raw/types/messages/messages.py +93 -0
- pyrogram/raw/types/messages/messages_not_modified.py +77 -0
- pyrogram/raw/types/messages/messages_slice.py +127 -0
- pyrogram/raw/types/messages/my_stickers.py +71 -0
- pyrogram/raw/types/messages/peer_dialogs.py +96 -0
- pyrogram/raw/types/messages/peer_settings.py +79 -0
- pyrogram/raw/types/messages/quick_replies.py +87 -0
- pyrogram/raw/types/messages/quick_replies_not_modified.py +58 -0
- pyrogram/raw/types/messages/reactions.py +73 -0
- pyrogram/raw/types/messages/reactions_not_modified.py +60 -0
- pyrogram/raw/types/messages/recent_stickers.py +87 -0
- pyrogram/raw/types/messages/recent_stickers_not_modified.py +58 -0
- pyrogram/raw/types/messages/saved_dialogs.py +88 -0
- pyrogram/raw/types/messages/saved_dialogs_not_modified.py +64 -0
- pyrogram/raw/types/messages/saved_dialogs_slice.py +96 -0
- pyrogram/raw/types/messages/saved_gifs.py +71 -0
- pyrogram/raw/types/messages/saved_gifs_not_modified.py +58 -0
- pyrogram/raw/types/messages/saved_reaction_tags.py +71 -0
- pyrogram/raw/types/messages/saved_reaction_tags_not_modified.py +58 -0
- pyrogram/raw/types/messages/search_counter.py +79 -0
- pyrogram/raw/types/messages/search_results_calendar.py +128 -0
- pyrogram/raw/types/messages/search_results_positions.py +71 -0
- pyrogram/raw/types/messages/sent_encrypted_file.py +73 -0
- pyrogram/raw/types/messages/sent_encrypted_message.py +65 -0
- pyrogram/raw/types/messages/sponsored_messages.py +90 -0
- pyrogram/raw/types/messages/sponsored_messages_empty.py +58 -0
- pyrogram/raw/types/messages/sticker_set.py +95 -0
- pyrogram/raw/types/messages/sticker_set_install_result_archive.py +63 -0
- pyrogram/raw/types/messages/sticker_set_install_result_success.py +58 -0
- pyrogram/raw/types/messages/sticker_set_not_modified.py +66 -0
- pyrogram/raw/types/messages/stickers.py +71 -0
- pyrogram/raw/types/messages/stickers_not_modified.py +58 -0
- pyrogram/raw/types/messages/transcribed_audio.py +97 -0
- pyrogram/raw/types/messages/translate_result.py +63 -0
- pyrogram/raw/types/messages/votes_list.py +98 -0
- pyrogram/raw/types/messages/web_page.py +79 -0
- pyrogram/raw/types/missing_invitee.py +68 -0
- pyrogram/raw/types/msg_detailed_info.py +78 -0
- pyrogram/raw/types/msg_new_detailed_info.py +70 -0
- pyrogram/raw/types/msg_resend_ans_req.py +54 -0
- pyrogram/raw/types/msg_resend_req.py +54 -0
- pyrogram/raw/types/msgs_ack.py +54 -0
- pyrogram/raw/types/msgs_all_info.py +62 -0
- pyrogram/raw/types/msgs_state_info.py +62 -0
- pyrogram/raw/types/msgs_state_req.py +54 -0
- pyrogram/raw/types/my_boost.py +91 -0
- pyrogram/raw/types/nearest_dc.py +79 -0
- pyrogram/raw/types/new_session_created.py +70 -0
- pyrogram/raw/types/notification_sound_default.py +49 -0
- pyrogram/raw/types/notification_sound_local.py +62 -0
- pyrogram/raw/types/notification_sound_none.py +49 -0
- pyrogram/raw/types/notification_sound_ringtone.py +54 -0
- pyrogram/raw/types/notify_broadcasts.py +49 -0
- pyrogram/raw/types/notify_chats.py +49 -0
- pyrogram/raw/types/notify_forum_topic.py +62 -0
- pyrogram/raw/types/notify_peer.py +54 -0
- pyrogram/raw/types/notify_users.py +49 -0
- pyrogram/raw/types/outbox_read_date.py +63 -0
- pyrogram/raw/types/page.py +107 -0
- pyrogram/raw/types/page_block_anchor.py +54 -0
- pyrogram/raw/types/page_block_audio.py +62 -0
- pyrogram/raw/types/page_block_author_date.py +62 -0
- pyrogram/raw/types/page_block_blockquote.py +62 -0
- pyrogram/raw/types/page_block_channel.py +54 -0
- pyrogram/raw/types/page_block_collage.py +62 -0
- pyrogram/raw/types/page_block_cover.py +54 -0
- pyrogram/raw/types/page_block_details.py +70 -0
- pyrogram/raw/types/page_block_divider.py +49 -0
- pyrogram/raw/types/page_block_embed.py +113 -0
- pyrogram/raw/types/page_block_embed_post.py +102 -0
- pyrogram/raw/types/page_block_footer.py +54 -0
- pyrogram/raw/types/page_block_header.py +54 -0
- pyrogram/raw/types/page_block_kicker.py +54 -0
- pyrogram/raw/types/page_block_list.py +54 -0
- pyrogram/raw/types/page_block_map.py +86 -0
- pyrogram/raw/types/page_block_ordered_list.py +54 -0
- pyrogram/raw/types/page_block_paragraph.py +54 -0
- pyrogram/raw/types/page_block_photo.py +82 -0
- pyrogram/raw/types/page_block_preformatted.py +62 -0
- pyrogram/raw/types/page_block_pullquote.py +62 -0
- pyrogram/raw/types/page_block_related_articles.py +62 -0
- pyrogram/raw/types/page_block_slideshow.py +62 -0
- pyrogram/raw/types/page_block_subheader.py +54 -0
- pyrogram/raw/types/page_block_subtitle.py +54 -0
- pyrogram/raw/types/page_block_table.py +76 -0
- pyrogram/raw/types/page_block_title.py +54 -0
- pyrogram/raw/types/page_block_unsupported.py +49 -0
- pyrogram/raw/types/page_block_video.py +76 -0
- pyrogram/raw/types/page_caption.py +62 -0
- pyrogram/raw/types/page_list_item_blocks.py +54 -0
- pyrogram/raw/types/page_list_item_text.py +54 -0
- pyrogram/raw/types/page_list_ordered_item_blocks.py +62 -0
- pyrogram/raw/types/page_list_ordered_item_text.py +62 -0
- pyrogram/raw/types/page_related_article.py +109 -0
- pyrogram/raw/types/page_table_cell.py +106 -0
- pyrogram/raw/types/page_table_row.py +54 -0
- pyrogram/raw/types/password_kdf_algo_sha256_sha256_pbkdf2_hmacsha512iter100000_sha256_mod_pow.py +78 -0
- pyrogram/raw/types/password_kdf_algo_unknown.py +49 -0
- pyrogram/raw/types/payment_charge.py +62 -0
- pyrogram/raw/types/payment_form_method.py +62 -0
- pyrogram/raw/types/payment_requested_info.py +85 -0
- pyrogram/raw/types/payment_saved_credentials_card.py +62 -0
- pyrogram/raw/types/payments/__init__.py +23 -0
- pyrogram/raw/types/payments/bank_card_data.py +71 -0
- pyrogram/raw/types/payments/checked_gift_code.py +132 -0
- pyrogram/raw/types/payments/exported_invoice.py +63 -0
- pyrogram/raw/types/payments/giveaway_info.py +104 -0
- pyrogram/raw/types/payments/giveaway_info_results.py +110 -0
- pyrogram/raw/types/payments/payment_form.py +192 -0
- pyrogram/raw/types/payments/payment_form_stars.py +115 -0
- pyrogram/raw/types/payments/payment_receipt.py +176 -0
- pyrogram/raw/types/payments/payment_receipt_stars.py +139 -0
- pyrogram/raw/types/payments/payment_result.py +64 -0
- pyrogram/raw/types/payments/payment_verification_needed.py +64 -0
- pyrogram/raw/types/payments/saved_info.py +73 -0
- pyrogram/raw/types/payments/stars_revenue_ads_account_url.py +63 -0
- pyrogram/raw/types/payments/stars_revenue_stats.py +79 -0
- pyrogram/raw/types/payments/stars_revenue_withdrawal_url.py +63 -0
- pyrogram/raw/types/payments/stars_status.py +100 -0
- pyrogram/raw/types/payments/validated_requested_info.py +76 -0
- pyrogram/raw/types/peer_blocked.py +62 -0
- pyrogram/raw/types/peer_channel.py +63 -0
- pyrogram/raw/types/peer_chat.py +63 -0
- pyrogram/raw/types/peer_color.py +66 -0
- pyrogram/raw/types/peer_located.py +70 -0
- pyrogram/raw/types/peer_notify_settings.py +162 -0
- pyrogram/raw/types/peer_self_located.py +54 -0
- pyrogram/raw/types/peer_settings.py +159 -0
- pyrogram/raw/types/peer_stories.py +73 -0
- pyrogram/raw/types/peer_user.py +63 -0
- pyrogram/raw/types/phone/__init__.py +13 -0
- pyrogram/raw/types/phone/exported_group_call_invite.py +63 -0
- pyrogram/raw/types/phone/group_call.py +95 -0
- pyrogram/raw/types/phone/group_call_stream_channels.py +63 -0
- pyrogram/raw/types/phone/group_call_stream_rtmp_url.py +71 -0
- pyrogram/raw/types/phone/group_participants.py +103 -0
- pyrogram/raw/types/phone/join_as_peers.py +79 -0
- pyrogram/raw/types/phone/phone_call.py +73 -0
- pyrogram/raw/types/phone_call.py +150 -0
- pyrogram/raw/types/phone_call_accepted.py +110 -0
- pyrogram/raw/types/phone_call_discard_reason_busy.py +49 -0
- pyrogram/raw/types/phone_call_discard_reason_disconnect.py +49 -0
- pyrogram/raw/types/phone_call_discard_reason_hangup.py +49 -0
- pyrogram/raw/types/phone_call_discard_reason_missed.py +49 -0
- pyrogram/raw/types/phone_call_discarded.py +93 -0
- pyrogram/raw/types/phone_call_empty.py +54 -0
- pyrogram/raw/types/phone_call_protocol.py +84 -0
- pyrogram/raw/types/phone_call_requested.py +110 -0
- pyrogram/raw/types/phone_call_waiting.py +111 -0
- pyrogram/raw/types/phone_connection.py +94 -0
- pyrogram/raw/types/phone_connection_webrtc.py +108 -0
- pyrogram/raw/types/photo.py +112 -0
- pyrogram/raw/types/photo_cached_size.py +78 -0
- pyrogram/raw/types/photo_empty.py +54 -0
- pyrogram/raw/types/photo_path_size.py +62 -0
- pyrogram/raw/types/photo_size.py +78 -0
- pyrogram/raw/types/photo_size_empty.py +54 -0
- pyrogram/raw/types/photo_size_progressive.py +78 -0
- pyrogram/raw/types/photo_stripped_size.py +62 -0
- pyrogram/raw/types/photos/__init__.py +9 -0
- pyrogram/raw/types/photos/photo.py +73 -0
- pyrogram/raw/types/photos/photos.py +71 -0
- pyrogram/raw/types/photos/photos_slice.py +79 -0
- pyrogram/raw/types/poll.py +114 -0
- pyrogram/raw/types/poll_answer.py +62 -0
- pyrogram/raw/types/poll_answer_voters.py +76 -0
- pyrogram/raw/types/poll_results.py +102 -0
- pyrogram/raw/types/pong.py +72 -0
- pyrogram/raw/types/popular_contact.py +62 -0
- pyrogram/raw/types/post_address.py +94 -0
- pyrogram/raw/types/post_interaction_counters_message.py +78 -0
- pyrogram/raw/types/post_interaction_counters_story.py +78 -0
- pyrogram/raw/types/pq_inner_data.py +94 -0
- pyrogram/raw/types/pq_inner_data_dc.py +102 -0
- pyrogram/raw/types/pq_inner_data_temp.py +102 -0
- pyrogram/raw/types/pq_inner_data_temp_dc.py +110 -0
- pyrogram/raw/types/premium/__init__.py +9 -0
- pyrogram/raw/types/premium/boosts_list.py +91 -0
- pyrogram/raw/types/premium/boosts_status.py +143 -0
- pyrogram/raw/types/premium/my_boosts.py +80 -0
- pyrogram/raw/types/premium_gift_code_option.py +107 -0
- pyrogram/raw/types/premium_gift_option.py +89 -0
- pyrogram/raw/types/premium_subscription_option.py +110 -0
- pyrogram/raw/types/prepaid_giveaway.py +78 -0
- pyrogram/raw/types/privacy_key_about.py +49 -0
- pyrogram/raw/types/privacy_key_added_by_phone.py +49 -0
- pyrogram/raw/types/privacy_key_birthday.py +49 -0
- pyrogram/raw/types/privacy_key_chat_invite.py +49 -0
- pyrogram/raw/types/privacy_key_forwards.py +49 -0
- pyrogram/raw/types/privacy_key_phone_call.py +49 -0
- pyrogram/raw/types/privacy_key_phone_number.py +49 -0
- pyrogram/raw/types/privacy_key_phone_p2_p.py +49 -0
- pyrogram/raw/types/privacy_key_profile_photo.py +49 -0
- pyrogram/raw/types/privacy_key_status_timestamp.py +49 -0
- pyrogram/raw/types/privacy_key_voice_messages.py +49 -0
- pyrogram/raw/types/privacy_value_allow_all.py +49 -0
- pyrogram/raw/types/privacy_value_allow_chat_participants.py +54 -0
- pyrogram/raw/types/privacy_value_allow_close_friends.py +49 -0
- pyrogram/raw/types/privacy_value_allow_contacts.py +49 -0
- pyrogram/raw/types/privacy_value_allow_premium.py +49 -0
- pyrogram/raw/types/privacy_value_allow_users.py +54 -0
- pyrogram/raw/types/privacy_value_disallow_all.py +49 -0
- pyrogram/raw/types/privacy_value_disallow_chat_participants.py +54 -0
- pyrogram/raw/types/privacy_value_disallow_contacts.py +49 -0
- pyrogram/raw/types/privacy_value_disallow_users.py +54 -0
- pyrogram/raw/types/public_forward_message.py +54 -0
- pyrogram/raw/types/public_forward_story.py +62 -0
- pyrogram/raw/types/quick_reply.py +78 -0
- pyrogram/raw/types/reaction_count.py +73 -0
- pyrogram/raw/types/reaction_custom_emoji.py +54 -0
- pyrogram/raw/types/reaction_emoji.py +54 -0
- pyrogram/raw/types/reaction_empty.py +49 -0
- pyrogram/raw/types/reaction_notifications_from_all.py +49 -0
- pyrogram/raw/types/reaction_notifications_from_contacts.py +49 -0
- pyrogram/raw/types/reactions_notify_settings.py +94 -0
- pyrogram/raw/types/read_participant_date.py +71 -0
- pyrogram/raw/types/received_notify_message.py +71 -0
- pyrogram/raw/types/recent_me_url_chat.py +62 -0
- pyrogram/raw/types/recent_me_url_chat_invite.py +62 -0
- pyrogram/raw/types/recent_me_url_sticker_set.py +62 -0
- pyrogram/raw/types/recent_me_url_unknown.py +54 -0
- pyrogram/raw/types/recent_me_url_user.py +62 -0
- pyrogram/raw/types/reply_inline_markup.py +54 -0
- pyrogram/raw/types/reply_keyboard_force_reply.py +69 -0
- pyrogram/raw/types/reply_keyboard_hide.py +54 -0
- pyrogram/raw/types/reply_keyboard_markup.py +89 -0
- pyrogram/raw/types/request_peer_type_broadcast.py +83 -0
- pyrogram/raw/types/request_peer_type_chat.py +98 -0
- pyrogram/raw/types/request_peer_type_user.py +66 -0
- pyrogram/raw/types/requested_peer_channel.py +84 -0
- pyrogram/raw/types/requested_peer_chat.py +75 -0
- pyrogram/raw/types/requested_peer_user.py +93 -0
- pyrogram/raw/types/res_pq.py +88 -0
- pyrogram/raw/types/restriction_reason.py +70 -0
- pyrogram/raw/types/rpc_answer_dropped.py +79 -0
- pyrogram/raw/types/rpc_answer_dropped_running.py +58 -0
- pyrogram/raw/types/rpc_answer_unknown.py +58 -0
- pyrogram/raw/types/rpc_error.py +62 -0
- pyrogram/raw/types/rpc_result.py +62 -0
- pyrogram/raw/types/saved_dialog.py +70 -0
- pyrogram/raw/types/saved_phone_contact.py +87 -0
- pyrogram/raw/types/saved_reaction_tag.py +73 -0
- pyrogram/raw/types/search_result_position.py +70 -0
- pyrogram/raw/types/search_results_calendar_period.py +78 -0
- pyrogram/raw/types/secure_credentials_encrypted.py +70 -0
- pyrogram/raw/types/secure_data.py +70 -0
- pyrogram/raw/types/secure_file.py +102 -0
- pyrogram/raw/types/secure_file_empty.py +49 -0
- pyrogram/raw/types/secure_password_kdf_algo_pbkdf2_hmacsha512iter100000.py +54 -0
- pyrogram/raw/types/secure_password_kdf_algo_sha512.py +54 -0
- pyrogram/raw/types/secure_password_kdf_algo_unknown.py +49 -0
- pyrogram/raw/types/secure_plain_email.py +54 -0
- pyrogram/raw/types/secure_plain_phone.py +54 -0
- pyrogram/raw/types/secure_required_type.py +74 -0
- pyrogram/raw/types/secure_required_type_one_of.py +54 -0
- pyrogram/raw/types/secure_secret_settings.py +70 -0
- pyrogram/raw/types/secure_value.py +145 -0
- pyrogram/raw/types/secure_value_error.py +70 -0
- pyrogram/raw/types/secure_value_error_data.py +78 -0
- pyrogram/raw/types/secure_value_error_file.py +70 -0
- pyrogram/raw/types/secure_value_error_files.py +70 -0
- pyrogram/raw/types/secure_value_error_front_side.py +70 -0
- pyrogram/raw/types/secure_value_error_reverse_side.py +70 -0
- pyrogram/raw/types/secure_value_error_selfie.py +70 -0
- pyrogram/raw/types/secure_value_error_translation_file.py +70 -0
- pyrogram/raw/types/secure_value_error_translation_files.py +70 -0
- pyrogram/raw/types/secure_value_hash.py +62 -0
- pyrogram/raw/types/secure_value_type_address.py +49 -0
- pyrogram/raw/types/secure_value_type_bank_statement.py +49 -0
- pyrogram/raw/types/secure_value_type_driver_license.py +49 -0
- pyrogram/raw/types/secure_value_type_email.py +49 -0
- pyrogram/raw/types/secure_value_type_identity_card.py +49 -0
- pyrogram/raw/types/secure_value_type_internal_passport.py +49 -0
- pyrogram/raw/types/secure_value_type_passport.py +49 -0
- pyrogram/raw/types/secure_value_type_passport_registration.py +49 -0
- pyrogram/raw/types/secure_value_type_personal_details.py +49 -0
- pyrogram/raw/types/secure_value_type_phone.py +49 -0
- pyrogram/raw/types/secure_value_type_rental_agreement.py +49 -0
- pyrogram/raw/types/secure_value_type_temporary_registration.py +49 -0
- pyrogram/raw/types/secure_value_type_utility_bill.py +49 -0
- pyrogram/raw/types/send_as_peer.py +62 -0
- pyrogram/raw/types/send_message_cancel_action.py +49 -0
- pyrogram/raw/types/send_message_choose_contact_action.py +49 -0
- pyrogram/raw/types/send_message_choose_sticker_action.py +49 -0
- pyrogram/raw/types/send_message_emoji_interaction.py +70 -0
- pyrogram/raw/types/send_message_emoji_interaction_seen.py +54 -0
- pyrogram/raw/types/send_message_game_play_action.py +49 -0
- pyrogram/raw/types/send_message_geo_location_action.py +49 -0
- pyrogram/raw/types/send_message_history_import_action.py +54 -0
- pyrogram/raw/types/send_message_record_audio_action.py +49 -0
- pyrogram/raw/types/send_message_record_round_action.py +49 -0
- pyrogram/raw/types/send_message_record_video_action.py +49 -0
- pyrogram/raw/types/send_message_typing_action.py +49 -0
- pyrogram/raw/types/send_message_upload_audio_action.py +54 -0
- pyrogram/raw/types/send_message_upload_document_action.py +54 -0
- pyrogram/raw/types/send_message_upload_photo_action.py +54 -0
- pyrogram/raw/types/send_message_upload_round_action.py +54 -0
- pyrogram/raw/types/send_message_upload_video_action.py +54 -0
- pyrogram/raw/types/server_dh_inner_data.py +94 -0
- pyrogram/raw/types/server_dh_params_fail.py +79 -0
- pyrogram/raw/types/server_dh_params_ok.py +79 -0
- pyrogram/raw/types/shipping_option.py +70 -0
- pyrogram/raw/types/sms_job.py +79 -0
- pyrogram/raw/types/smsjobs/__init__.py +8 -0
- pyrogram/raw/types/smsjobs/eligible_to_join.py +71 -0
- pyrogram/raw/types/smsjobs/status.py +120 -0
- pyrogram/raw/types/speaking_in_group_call_action.py +49 -0
- pyrogram/raw/types/sponsored_message.py +148 -0
- pyrogram/raw/types/sponsored_message_report_option.py +62 -0
- pyrogram/raw/types/stars_revenue_status.py +87 -0
- pyrogram/raw/types/stars_topup_option.py +96 -0
- pyrogram/raw/types/stars_transaction.py +172 -0
- pyrogram/raw/types/stars_transaction_peer.py +54 -0
- pyrogram/raw/types/stars_transaction_peer_ads.py +49 -0
- pyrogram/raw/types/stars_transaction_peer_app_store.py +49 -0
- pyrogram/raw/types/stars_transaction_peer_fragment.py +49 -0
- pyrogram/raw/types/stars_transaction_peer_play_market.py +49 -0
- pyrogram/raw/types/stars_transaction_peer_premium_bot.py +49 -0
- pyrogram/raw/types/stars_transaction_peer_unsupported.py +49 -0
- pyrogram/raw/types/stats/__init__.py +14 -0
- pyrogram/raw/types/stats/broadcast_revenue_stats.py +87 -0
- pyrogram/raw/types/stats/broadcast_revenue_transactions.py +71 -0
- pyrogram/raw/types/stats/broadcast_revenue_withdrawal_url.py +63 -0
- pyrogram/raw/types/stats/broadcast_stats.py +231 -0
- pyrogram/raw/types/stats/megagroup_stats.py +191 -0
- pyrogram/raw/types/stats/message_stats.py +71 -0
- pyrogram/raw/types/stats/public_forwards.py +99 -0
- pyrogram/raw/types/stats/story_stats.py +71 -0
- pyrogram/raw/types/stats_abs_value_and_prev.py +62 -0
- pyrogram/raw/types/stats_date_range_days.py +62 -0
- pyrogram/raw/types/stats_graph.py +74 -0
- pyrogram/raw/types/stats_graph_async.py +63 -0
- pyrogram/raw/types/stats_graph_error.py +63 -0
- pyrogram/raw/types/stats_group_top_admin.py +78 -0
- pyrogram/raw/types/stats_group_top_inviter.py +62 -0
- pyrogram/raw/types/stats_group_top_poster.py +70 -0
- pyrogram/raw/types/stats_percent_value.py +62 -0
- pyrogram/raw/types/stats_url.py +54 -0
- pyrogram/raw/types/sticker_keyword.py +62 -0
- pyrogram/raw/types/sticker_pack.py +62 -0
- pyrogram/raw/types/sticker_set.py +184 -0
- pyrogram/raw/types/sticker_set_covered.py +71 -0
- pyrogram/raw/types/sticker_set_full_covered.py +87 -0
- pyrogram/raw/types/sticker_set_multi_covered.py +71 -0
- pyrogram/raw/types/sticker_set_no_covered.py +63 -0
- pyrogram/raw/types/stickers/__init__.py +7 -0
- pyrogram/raw/types/stickers/suggested_short_name.py +63 -0
- pyrogram/raw/types/storage/__init__.py +16 -0
- pyrogram/raw/types/storage/file_gif.py +49 -0
- pyrogram/raw/types/storage/file_jpeg.py +49 -0
- pyrogram/raw/types/storage/file_mov.py +49 -0
- pyrogram/raw/types/storage/file_mp3.py +49 -0
- pyrogram/raw/types/storage/file_mp4.py +49 -0
- pyrogram/raw/types/storage/file_partial.py +49 -0
- pyrogram/raw/types/storage/file_pdf.py +49 -0
- pyrogram/raw/types/storage/file_png.py +49 -0
- pyrogram/raw/types/storage/file_unknown.py +49 -0
- pyrogram/raw/types/storage/file_webp.py +49 -0
- pyrogram/raw/types/stories/__init__.py +14 -0
- pyrogram/raw/types/stories/all_stories.py +111 -0
- pyrogram/raw/types/stories/all_stories_not_modified.py +74 -0
- pyrogram/raw/types/stories/found_stories.py +98 -0
- pyrogram/raw/types/stories/peer_stories.py +79 -0
- pyrogram/raw/types/stories/stories.py +101 -0
- pyrogram/raw/types/stories/story_reactions_list.py +98 -0
- pyrogram/raw/types/stories/story_views.py +71 -0
- pyrogram/raw/types/stories/story_views_list.py +122 -0
- pyrogram/raw/types/stories_stealth_mode.py +66 -0
- pyrogram/raw/types/story_fwd_header.py +82 -0
- pyrogram/raw/types/story_item.py +213 -0
- pyrogram/raw/types/story_item_deleted.py +54 -0
- pyrogram/raw/types/story_item_skipped.py +78 -0
- pyrogram/raw/types/story_reaction.py +70 -0
- pyrogram/raw/types/story_reaction_public_forward.py +54 -0
- pyrogram/raw/types/story_reaction_public_repost.py +62 -0
- pyrogram/raw/types/story_view.py +86 -0
- pyrogram/raw/types/story_view_public_forward.py +68 -0
- pyrogram/raw/types/story_view_public_repost.py +76 -0
- pyrogram/raw/types/story_views.py +100 -0
- pyrogram/raw/types/text_anchor.py +62 -0
- pyrogram/raw/types/text_bold.py +54 -0
- pyrogram/raw/types/text_concat.py +54 -0
- pyrogram/raw/types/text_email.py +62 -0
- pyrogram/raw/types/text_empty.py +49 -0
- pyrogram/raw/types/text_fixed.py +54 -0
- pyrogram/raw/types/text_image.py +70 -0
- pyrogram/raw/types/text_italic.py +54 -0
- pyrogram/raw/types/text_marked.py +54 -0
- pyrogram/raw/types/text_phone.py +62 -0
- pyrogram/raw/types/text_plain.py +54 -0
- pyrogram/raw/types/text_strike.py +54 -0
- pyrogram/raw/types/text_subscript.py +54 -0
- pyrogram/raw/types/text_superscript.py +54 -0
- pyrogram/raw/types/text_underline.py +54 -0
- pyrogram/raw/types/text_url.py +70 -0
- pyrogram/raw/types/text_with_entities.py +62 -0
- pyrogram/raw/types/theme.py +147 -0
- pyrogram/raw/types/theme_settings.py +99 -0
- pyrogram/raw/types/timezone.py +70 -0
- pyrogram/raw/types/top_peer.py +62 -0
- pyrogram/raw/types/top_peer_category_bots_inline.py +49 -0
- pyrogram/raw/types/top_peer_category_bots_pm.py +49 -0
- pyrogram/raw/types/top_peer_category_channels.py +49 -0
- pyrogram/raw/types/top_peer_category_correspondents.py +49 -0
- pyrogram/raw/types/top_peer_category_forward_chats.py +49 -0
- pyrogram/raw/types/top_peer_category_forward_users.py +49 -0
- pyrogram/raw/types/top_peer_category_groups.py +49 -0
- pyrogram/raw/types/top_peer_category_peers.py +70 -0
- pyrogram/raw/types/top_peer_category_phone_calls.py +49 -0
- pyrogram/raw/types/update_attach_menu_bots.py +49 -0
- pyrogram/raw/types/update_auto_save_settings.py +49 -0
- pyrogram/raw/types/update_bot_business_connect.py +62 -0
- pyrogram/raw/types/update_bot_callback_query.py +106 -0
- pyrogram/raw/types/update_bot_chat_boost.py +70 -0
- pyrogram/raw/types/update_bot_chat_invite_requester.py +94 -0
- pyrogram/raw/types/update_bot_commands.py +70 -0
- pyrogram/raw/types/update_bot_delete_business_message.py +78 -0
- pyrogram/raw/types/update_bot_edit_business_message.py +82 -0
- pyrogram/raw/types/update_bot_inline_query.py +100 -0
- pyrogram/raw/types/update_bot_inline_send.py +92 -0
- pyrogram/raw/types/update_bot_menu_button.py +62 -0
- pyrogram/raw/types/update_bot_message_reaction.py +102 -0
- pyrogram/raw/types/update_bot_message_reactions.py +86 -0
- pyrogram/raw/types/update_bot_new_business_message.py +82 -0
- pyrogram/raw/types/update_bot_precheckout_query.py +107 -0
- pyrogram/raw/types/update_bot_shipping_query.py +78 -0
- pyrogram/raw/types/update_bot_stopped.py +78 -0
- pyrogram/raw/types/update_bot_webhook_json.py +54 -0
- pyrogram/raw/types/update_bot_webhook_json_query.py +70 -0
- pyrogram/raw/types/update_broadcast_revenue_transactions.py +62 -0
- pyrogram/raw/types/update_business_bot_callback_query.py +107 -0
- pyrogram/raw/types/update_channel.py +54 -0
- pyrogram/raw/types/update_channel_available_messages.py +62 -0
- pyrogram/raw/types/update_channel_message_forwards.py +70 -0
- pyrogram/raw/types/update_channel_message_views.py +70 -0
- pyrogram/raw/types/update_channel_participant.py +124 -0
- pyrogram/raw/types/update_channel_pinned_topic.py +70 -0
- pyrogram/raw/types/update_channel_pinned_topics.py +66 -0
- pyrogram/raw/types/update_channel_read_messages_contents.py +73 -0
- pyrogram/raw/types/update_channel_too_long.py +65 -0
- pyrogram/raw/types/update_channel_user_typing.py +81 -0
- pyrogram/raw/types/update_channel_view_forum_as_messages.py +62 -0
- pyrogram/raw/types/update_channel_web_page.py +78 -0
- pyrogram/raw/types/update_chat.py +54 -0
- pyrogram/raw/types/update_chat_default_banned_rights.py +70 -0
- pyrogram/raw/types/update_chat_participant.py +118 -0
- pyrogram/raw/types/update_chat_participant_add.py +86 -0
- pyrogram/raw/types/update_chat_participant_admin.py +78 -0
- pyrogram/raw/types/update_chat_participant_delete.py +70 -0
- pyrogram/raw/types/update_chat_participants.py +54 -0
- pyrogram/raw/types/update_chat_user_typing.py +70 -0
- pyrogram/raw/types/update_config.py +49 -0
- pyrogram/raw/types/update_contacts_reset.py +49 -0
- pyrogram/raw/types/update_dc_options.py +54 -0
- pyrogram/raw/types/update_delete_channel_messages.py +78 -0
- pyrogram/raw/types/update_delete_messages.py +70 -0
- pyrogram/raw/types/update_delete_quick_reply.py +54 -0
- pyrogram/raw/types/update_delete_quick_reply_messages.py +62 -0
- pyrogram/raw/types/update_delete_scheduled_messages.py +62 -0
- pyrogram/raw/types/update_dialog_filter.py +66 -0
- pyrogram/raw/types/update_dialog_filter_order.py +54 -0
- pyrogram/raw/types/update_dialog_filters.py +49 -0
- pyrogram/raw/types/update_dialog_pinned.py +71 -0
- pyrogram/raw/types/update_dialog_unread_mark.py +62 -0
- pyrogram/raw/types/update_draft_message.py +73 -0
- pyrogram/raw/types/update_edit_channel_message.py +70 -0
- pyrogram/raw/types/update_edit_message.py +70 -0
- pyrogram/raw/types/update_encrypted_chat_typing.py +54 -0
- pyrogram/raw/types/update_encrypted_messages_read.py +70 -0
- pyrogram/raw/types/update_encryption.py +62 -0
- pyrogram/raw/types/update_faved_stickers.py +49 -0
- pyrogram/raw/types/update_folder_peers.py +70 -0
- pyrogram/raw/types/update_geo_live_viewed.py +62 -0
- pyrogram/raw/types/update_group_call.py +62 -0
- pyrogram/raw/types/update_group_call_connection.py +62 -0
- pyrogram/raw/types/update_group_call_participants.py +70 -0
- pyrogram/raw/types/update_inline_bot_callback_query.py +98 -0
- pyrogram/raw/types/update_lang_pack.py +54 -0
- pyrogram/raw/types/update_lang_pack_too_long.py +54 -0
- pyrogram/raw/types/update_login_token.py +49 -0
- pyrogram/raw/types/update_message_extended_media.py +70 -0
- pyrogram/raw/types/update_message_id.py +62 -0
- pyrogram/raw/types/update_message_poll.py +74 -0
- pyrogram/raw/types/update_message_poll_vote.py +78 -0
- pyrogram/raw/types/update_message_reactions.py +81 -0
- pyrogram/raw/types/update_move_sticker_set_to_top.py +68 -0
- pyrogram/raw/types/update_new_authorization.py +89 -0
- pyrogram/raw/types/update_new_channel_message.py +70 -0
- pyrogram/raw/types/update_new_encrypted_message.py +62 -0
- pyrogram/raw/types/update_new_message.py +70 -0
- pyrogram/raw/types/update_new_quick_reply.py +54 -0
- pyrogram/raw/types/update_new_scheduled_message.py +54 -0
- pyrogram/raw/types/update_new_sticker_set.py +54 -0
- pyrogram/raw/types/update_new_story_reaction.py +70 -0
- pyrogram/raw/types/update_notify_settings.py +62 -0
- pyrogram/raw/types/update_peer_blocked.py +68 -0
- pyrogram/raw/types/update_peer_history_ttl.py +65 -0
- pyrogram/raw/types/update_peer_located.py +54 -0
- pyrogram/raw/types/update_peer_settings.py +62 -0
- pyrogram/raw/types/update_peer_wallpaper.py +72 -0
- pyrogram/raw/types/update_pending_join_requests.py +70 -0
- pyrogram/raw/types/update_phone_call.py +54 -0
- pyrogram/raw/types/update_phone_call_signaling_data.py +62 -0
- pyrogram/raw/types/update_pinned_channel_messages.py +86 -0
- pyrogram/raw/types/update_pinned_dialogs.py +67 -0
- pyrogram/raw/types/update_pinned_messages.py +86 -0
- pyrogram/raw/types/update_pinned_saved_dialogs.py +58 -0
- pyrogram/raw/types/update_privacy.py +62 -0
- pyrogram/raw/types/update_pts_changed.py +49 -0
- pyrogram/raw/types/update_quick_replies.py +54 -0
- pyrogram/raw/types/update_quick_reply_message.py +54 -0
- pyrogram/raw/types/update_read_channel_discussion_inbox.py +90 -0
- pyrogram/raw/types/update_read_channel_discussion_outbox.py +70 -0
- pyrogram/raw/types/update_read_channel_inbox.py +89 -0
- pyrogram/raw/types/update_read_channel_outbox.py +62 -0
- pyrogram/raw/types/update_read_featured_emoji_stickers.py +49 -0
- pyrogram/raw/types/update_read_featured_stickers.py +49 -0
- pyrogram/raw/types/update_read_history_inbox.py +97 -0
- pyrogram/raw/types/update_read_history_outbox.py +78 -0
- pyrogram/raw/types/update_read_messages_contents.py +81 -0
- pyrogram/raw/types/update_read_stories.py +62 -0
- pyrogram/raw/types/update_recent_emoji_statuses.py +49 -0
- pyrogram/raw/types/update_recent_reactions.py +49 -0
- pyrogram/raw/types/update_recent_stickers.py +49 -0
- pyrogram/raw/types/update_saved_dialog_pinned.py +62 -0
- pyrogram/raw/types/update_saved_gifs.py +49 -0
- pyrogram/raw/types/update_saved_reaction_tags.py +49 -0
- pyrogram/raw/types/update_saved_ringtones.py +49 -0
- pyrogram/raw/types/update_sent_story_reaction.py +70 -0
- pyrogram/raw/types/update_service_notification.py +101 -0
- pyrogram/raw/types/update_short.py +173 -0
- pyrogram/raw/types/update_short_chat_message.py +287 -0
- pyrogram/raw/types/update_short_message.py +279 -0
- pyrogram/raw/types/update_short_sent_message.py +226 -0
- pyrogram/raw/types/update_sms_job.py +54 -0
- pyrogram/raw/types/update_stars_balance.py +54 -0
- pyrogram/raw/types/update_stars_revenue_status.py +62 -0
- pyrogram/raw/types/update_sticker_sets.py +60 -0
- pyrogram/raw/types/update_sticker_sets_order.py +68 -0
- pyrogram/raw/types/update_stories_stealth_mode.py +54 -0
- pyrogram/raw/types/update_story.py +62 -0
- pyrogram/raw/types/update_story_id.py +62 -0
- pyrogram/raw/types/update_theme.py +54 -0
- pyrogram/raw/types/update_transcribed_audio.py +86 -0
- pyrogram/raw/types/update_user.py +54 -0
- pyrogram/raw/types/update_user_emoji_status.py +62 -0
- pyrogram/raw/types/update_user_name.py +78 -0
- pyrogram/raw/types/update_user_phone.py +62 -0
- pyrogram/raw/types/update_user_status.py +62 -0
- pyrogram/raw/types/update_user_typing.py +62 -0
- pyrogram/raw/types/update_web_page.py +70 -0
- pyrogram/raw/types/update_web_view_result_sent.py +54 -0
- pyrogram/raw/types/updates/__init__.py +14 -0
- pyrogram/raw/types/updates/channel_difference.py +112 -0
- pyrogram/raw/types/updates/channel_difference_empty.py +80 -0
- pyrogram/raw/types/updates/channel_difference_too_long.py +104 -0
- pyrogram/raw/types/updates/difference.py +103 -0
- pyrogram/raw/types/updates/difference_empty.py +71 -0
- pyrogram/raw/types/updates/difference_slice.py +103 -0
- pyrogram/raw/types/updates/difference_too_long.py +63 -0
- pyrogram/raw/types/updates/state.py +95 -0
- pyrogram/raw/types/updates_combined.py +205 -0
- pyrogram/raw/types/updates_t.py +197 -0
- pyrogram/raw/types/updates_too_long.py +160 -0
- pyrogram/raw/types/upload/__init__.py +11 -0
- pyrogram/raw/types/upload/cdn_file.py +63 -0
- pyrogram/raw/types/upload/cdn_file_reupload_needed.py +63 -0
- pyrogram/raw/types/upload/file.py +79 -0
- pyrogram/raw/types/upload/file_cdn_redirect.py +95 -0
- pyrogram/raw/types/upload/web_file.py +95 -0
- pyrogram/raw/types/url_auth_result_accepted.py +64 -0
- pyrogram/raw/types/url_auth_result_default.py +59 -0
- pyrogram/raw/types/url_auth_result_request.py +80 -0
- pyrogram/raw/types/user.py +368 -0
- pyrogram/raw/types/user_empty.py +67 -0
- pyrogram/raw/types/user_full.py +390 -0
- pyrogram/raw/types/user_profile_photo.py +85 -0
- pyrogram/raw/types/user_profile_photo_empty.py +49 -0
- pyrogram/raw/types/user_status_empty.py +49 -0
- pyrogram/raw/types/user_status_last_month.py +54 -0
- pyrogram/raw/types/user_status_last_week.py +54 -0
- pyrogram/raw/types/user_status_offline.py +54 -0
- pyrogram/raw/types/user_status_online.py +54 -0
- pyrogram/raw/types/user_status_recently.py +54 -0
- pyrogram/raw/types/username.py +68 -0
- pyrogram/raw/types/users/__init__.py +7 -0
- pyrogram/raw/types/users/user_full.py +79 -0
- pyrogram/raw/types/video_size.py +89 -0
- pyrogram/raw/types/video_size_emoji_markup.py +62 -0
- pyrogram/raw/types/video_size_sticker_markup.py +70 -0
- pyrogram/raw/types/wall_paper.py +125 -0
- pyrogram/raw/types/wall_paper_no_file.py +89 -0
- pyrogram/raw/types/wall_paper_settings.py +123 -0
- pyrogram/raw/types/web_authorization.py +118 -0
- pyrogram/raw/types/web_document.py +86 -0
- pyrogram/raw/types/web_document_no_proxy.py +78 -0
- pyrogram/raw/types/web_page.py +216 -0
- pyrogram/raw/types/web_page_attribute_sticker_set.py +68 -0
- pyrogram/raw/types/web_page_attribute_story.py +74 -0
- pyrogram/raw/types/web_page_attribute_theme.py +68 -0
- pyrogram/raw/types/web_page_empty.py +65 -0
- pyrogram/raw/types/web_page_not_modified.py +57 -0
- pyrogram/raw/types/web_page_pending.py +73 -0
- pyrogram/raw/types/web_view_message_sent.py +67 -0
- pyrogram/raw/types/web_view_result_url.py +82 -0
- pyrogram/session/__init__.py +2 -0
- pyrogram/session/auth.py +253 -0
- pyrogram/session/internals/__init__.py +3 -0
- pyrogram/session/internals/data_center.py +64 -0
- pyrogram/session/internals/msg_factory.py +20 -0
- pyrogram/session/internals/msg_id.py +17 -0
- pyrogram/session/internals/seq_no.py +11 -0
- pyrogram/session/session.py +399 -0
- pyrogram/storage/__init__.py +6 -0
- pyrogram/storage/dummy_client.py +44 -0
- pyrogram/storage/file_storage.py +69 -0
- pyrogram/storage/memory_storage.py +54 -0
- pyrogram/storage/mongo_storage.py +198 -0
- pyrogram/storage/sqlite_storage.py +279 -0
- pyrogram/storage/storage.py +81 -0
- pyrogram/sync.py +92 -0
- pyrogram/types/__init__.py +10 -0
- pyrogram/types/authorization/__init__.py +7 -0
- pyrogram/types/authorization/sent_code.py +27 -0
- pyrogram/types/authorization/terms_of_service.py +25 -0
- pyrogram/types/bots_and_keyboards/__init__.py +57 -0
- pyrogram/types/bots_and_keyboards/bot_command.py +24 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope.py +13 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_all_chat_administrators.py +11 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_all_group_chats.py +11 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_all_private_chats.py +11 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_chat.py +17 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_chat_administrators.py +17 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_chat_member.py +19 -0
- pyrogram/types/bots_and_keyboards/bot_command_scope_default.py +11 -0
- pyrogram/types/bots_and_keyboards/bot_info.py +21 -0
- pyrogram/types/bots_and_keyboards/callback_query.py +143 -0
- pyrogram/types/bots_and_keyboards/force_reply.py +30 -0
- pyrogram/types/bots_and_keyboards/inline_keyboard_button.py +142 -0
- pyrogram/types/bots_and_keyboards/inline_keyboard_markup.py +42 -0
- pyrogram/types/bots_and_keyboards/keyboard_button.py +121 -0
- pyrogram/types/bots_and_keyboards/login_url.py +38 -0
- pyrogram/types/bots_and_keyboards/menu_button.py +13 -0
- pyrogram/types/bots_and_keyboards/menu_button_commands.py +11 -0
- pyrogram/types/bots_and_keyboards/menu_button_default.py +11 -0
- pyrogram/types/bots_and_keyboards/menu_button_web_app.py +21 -0
- pyrogram/types/bots_and_keyboards/reply_keyboard_markup.py +63 -0
- pyrogram/types/bots_and_keyboards/reply_keyboard_remove.py +24 -0
- pyrogram/types/bots_and_keyboards/request_peer_type_channel.py +15 -0
- pyrogram/types/bots_and_keyboards/request_peer_type_chat.py +19 -0
- pyrogram/types/bots_and_keyboards/request_peer_type_user.py +15 -0
- pyrogram/types/bots_and_keyboards/sent_web_app_message.py +16 -0
- pyrogram/types/bots_and_keyboards/web_app_info.py +11 -0
- pyrogram/types/inline_mode/__init__.py +43 -0
- pyrogram/types/inline_mode/chosen_inline_result.py +55 -0
- pyrogram/types/inline_mode/inline_query.py +82 -0
- pyrogram/types/inline_mode/inline_query_result.py +24 -0
- pyrogram/types/inline_mode/inline_query_result_animation.py +85 -0
- pyrogram/types/inline_mode/inline_query_result_article.py +49 -0
- pyrogram/types/inline_mode/inline_query_result_audio.py +73 -0
- pyrogram/types/inline_mode/inline_query_result_cached_animation.py +56 -0
- pyrogram/types/inline_mode/inline_query_result_cached_audio.py +53 -0
- pyrogram/types/inline_mode/inline_query_result_cached_document.py +59 -0
- pyrogram/types/inline_mode/inline_query_result_cached_photo.py +57 -0
- pyrogram/types/inline_mode/inline_query_result_cached_sticker.py +40 -0
- pyrogram/types/inline_mode/inline_query_result_cached_video.py +59 -0
- pyrogram/types/inline_mode/inline_query_result_cached_voice.py +56 -0
- pyrogram/types/inline_mode/inline_query_result_contact.py +57 -0
- pyrogram/types/inline_mode/inline_query_result_document.py +78 -0
- pyrogram/types/inline_mode/inline_query_result_location.py +55 -0
- pyrogram/types/inline_mode/inline_query_result_photo.py +81 -0
- pyrogram/types/inline_mode/inline_query_result_venue.py +63 -0
- pyrogram/types/inline_mode/inline_query_result_video.py +79 -0
- pyrogram/types/inline_mode/inline_query_result_voice.py +59 -0
- pyrogram/types/input_media/__init__.py +21 -0
- pyrogram/types/input_media/input_media.py +20 -0
- pyrogram/types/input_media/input_media_animation.py +27 -0
- pyrogram/types/input_media/input_media_area.py +13 -0
- pyrogram/types/input_media/input_media_area_channel_post.py +27 -0
- pyrogram/types/input_media/input_media_audio.py +25 -0
- pyrogram/types/input_media/input_media_document.py +19 -0
- pyrogram/types/input_media/input_media_photo.py +19 -0
- pyrogram/types/input_media/input_media_video.py +29 -0
- pyrogram/types/input_media/input_phone_contact.py +19 -0
- pyrogram/types/input_message_content/__init__.py +9 -0
- pyrogram/types/input_message_content/input_message_content.py +11 -0
- pyrogram/types/input_message_content/input_reply_to_message.py +45 -0
- pyrogram/types/input_message_content/input_text_message_content.py +33 -0
- pyrogram/types/list.py +11 -0
- pyrogram/types/messages_and_media/__init__.py +61 -0
- pyrogram/types/messages_and_media/animation.py +109 -0
- pyrogram/types/messages_and_media/audio.py +68 -0
- pyrogram/types/messages_and_media/available_effect.py +45 -0
- pyrogram/types/messages_and_media/contact.py +34 -0
- pyrogram/types/messages_and_media/document.py +54 -0
- pyrogram/types/messages_and_media/media_area.py +21 -0
- pyrogram/types/messages_and_media/media_area_channel_post.py +39 -0
- pyrogram/types/messages_and_media/media_area_coordinates.py +40 -0
- pyrogram/types/messages_and_media/message.py +2101 -0
- pyrogram/types/messages_and_media/message_entity.py +85 -0
- pyrogram/types/messages_and_media/message_reaction_count_updated.py +53 -0
- pyrogram/types/messages_and_media/message_reaction_updated.py +76 -0
- pyrogram/types/messages_and_media/message_reactions.py +33 -0
- pyrogram/types/messages_and_media/photo.py +83 -0
- pyrogram/types/messages_and_media/reaction.py +51 -0
- pyrogram/types/messages_and_media/reaction_count.py +30 -0
- pyrogram/types/messages_and_media/reaction_type.py +44 -0
- pyrogram/types/messages_and_media/sticker.py +148 -0
- pyrogram/types/messages_and_media/stickerset.py +40 -0
- pyrogram/types/messages_and_media/story.py +682 -0
- pyrogram/types/messages_and_media/stripped_thumbnail.py +22 -0
- pyrogram/types/messages_and_media/thumbnail.py +73 -0
- pyrogram/types/messages_and_media/video.py +75 -0
- pyrogram/types/messages_and_media/video_note.py +61 -0
- pyrogram/types/messages_and_media/voice.py +52 -0
- pyrogram/types/messages_and_media/web_app_data.py +22 -0
- pyrogram/types/messages_and_media/web_page.py +108 -0
- pyrogram/types/messages_and_media/web_page_empty.py +23 -0
- pyrogram/types/messages_and_media/web_page_preview.py +41 -0
- pyrogram/types/object.py +99 -0
- pyrogram/types/update.py +11 -0
- pyrogram/types/user_and_chats/__init__.py +75 -0
- pyrogram/types/user_and_chats/birthday.py +31 -0
- pyrogram/types/user_and_chats/chat.py +487 -0
- pyrogram/types/user_and_chats/chat_admin_with_invite_links.py +31 -0
- pyrogram/types/user_and_chats/chat_color.py +35 -0
- pyrogram/types/user_and_chats/chat_event.py +396 -0
- pyrogram/types/user_and_chats/chat_event_filter.py +107 -0
- pyrogram/types/user_and_chats/chat_invite_link.py +69 -0
- pyrogram/types/user_and_chats/chat_join_request.py +57 -0
- pyrogram/types/user_and_chats/chat_joined_by_request.py +6 -0
- pyrogram/types/user_and_chats/chat_joiner.py +45 -0
- pyrogram/types/user_and_chats/chat_member.py +160 -0
- pyrogram/types/user_and_chats/chat_member_updated.py +97 -0
- pyrogram/types/user_and_chats/chat_permissions.py +145 -0
- pyrogram/types/user_and_chats/chat_photo.py +79 -0
- pyrogram/types/user_and_chats/chat_preview.py +38 -0
- pyrogram/types/user_and_chats/chat_privileges.py +61 -0
- pyrogram/types/user_and_chats/chat_reactions.py +43 -0
- pyrogram/types/user_and_chats/dialog.py +38 -0
- pyrogram/types/user_and_chats/emoji_status.py +49 -0
- pyrogram/types/user_and_chats/forum_topic.py +71 -0
- pyrogram/types/user_and_chats/forum_topic_closed.py +6 -0
- pyrogram/types/user_and_chats/forum_topic_created.py +29 -0
- pyrogram/types/user_and_chats/forum_topic_edited.py +26 -0
- pyrogram/types/user_and_chats/forum_topic_reopened.py +6 -0
- pyrogram/types/user_and_chats/general_forum_topic_hidden.py +6 -0
- pyrogram/types/user_and_chats/general_forum_topic_unhidden.py +6 -0
- pyrogram/types/user_and_chats/invite_link_importer.py +32 -0
- pyrogram/types/user_and_chats/peer_channel.py +20 -0
- pyrogram/types/user_and_chats/peer_user.py +20 -0
- pyrogram/types/user_and_chats/restriction.py +19 -0
- pyrogram/types/user_and_chats/user.py +230 -0
- pyrogram/types/user_and_chats/username.py +26 -0
- pyrogram/types/user_and_chats/video_chat_ended.py +16 -0
- pyrogram/types/user_and_chats/video_chat_members_invited.py +24 -0
- pyrogram/types/user_and_chats/video_chat_scheduled.py +18 -0
- pyrogram/types/user_and_chats/video_chat_started.py +6 -0
- pyrogram/utils.py +442 -0
pyrogram/mime_types.py
ADDED
|
@@ -0,0 +1,1861 @@
|
|
|
1
|
+
mime_types = """
|
|
2
|
+
# This file maps Internet media types to unique file extension(s).
|
|
3
|
+
# Although created for httpd, this file is used by many software systems
|
|
4
|
+
# and has been placed in the public domain for unlimited redistribution.
|
|
5
|
+
#
|
|
6
|
+
# The table below contains both registered and (common) unregistered types.
|
|
7
|
+
# A type that has no unique extension can be ignored -- they are listed
|
|
8
|
+
# here to guide configurations toward known types and to make it easier to
|
|
9
|
+
# identify "new" types. File extensions are also commonly used to indicate
|
|
10
|
+
# content languages and encodings, so choose them carefully.
|
|
11
|
+
#
|
|
12
|
+
# Internet media types should be registered as described in RFC 4288.
|
|
13
|
+
# The registry is at <http://www.iana.org/assignments/media-types/>.
|
|
14
|
+
#
|
|
15
|
+
# MIME type (lowercased) Extensions
|
|
16
|
+
# ============================================ ==========
|
|
17
|
+
# application/1d-interleaved-parityfec
|
|
18
|
+
# application/3gpdash-qoe-report+xml
|
|
19
|
+
# application/3gpp-ims+xml
|
|
20
|
+
# application/a2l
|
|
21
|
+
# application/activemessage
|
|
22
|
+
# application/alto-costmap+json
|
|
23
|
+
# application/alto-costmapfilter+json
|
|
24
|
+
# application/alto-directory+json
|
|
25
|
+
# application/alto-endpointcost+json
|
|
26
|
+
# application/alto-endpointcostparams+json
|
|
27
|
+
# application/alto-endpointprop+json
|
|
28
|
+
# application/alto-endpointpropparams+json
|
|
29
|
+
# application/alto-error+json
|
|
30
|
+
# application/alto-networkmap+json
|
|
31
|
+
# application/alto-networkmapfilter+json
|
|
32
|
+
# application/aml
|
|
33
|
+
application/andrew-inset ez
|
|
34
|
+
# application/applefile
|
|
35
|
+
application/applixware aw
|
|
36
|
+
# application/atf
|
|
37
|
+
# application/atfx
|
|
38
|
+
application/atom+xml atom
|
|
39
|
+
application/atomcat+xml atomcat
|
|
40
|
+
# application/atomdeleted+xml
|
|
41
|
+
# application/atomicmail
|
|
42
|
+
application/atomsvc+xml atomsvc
|
|
43
|
+
# application/atxml
|
|
44
|
+
# application/auth-policy+xml
|
|
45
|
+
# application/bacnet-xdd+zip
|
|
46
|
+
# application/batch-smtp
|
|
47
|
+
# application/beep+xml
|
|
48
|
+
# application/calendar+json
|
|
49
|
+
# application/calendar+xml
|
|
50
|
+
# application/call-completion
|
|
51
|
+
# application/cals-1840
|
|
52
|
+
# application/cbor
|
|
53
|
+
# application/ccmp+xml
|
|
54
|
+
application/ccxml+xml ccxml
|
|
55
|
+
# application/cdfx+xml
|
|
56
|
+
application/cdmi-capability cdmia
|
|
57
|
+
application/cdmi-container cdmic
|
|
58
|
+
application/cdmi-domain cdmid
|
|
59
|
+
application/cdmi-object cdmio
|
|
60
|
+
application/cdmi-queue cdmiq
|
|
61
|
+
# application/cdni
|
|
62
|
+
# application/cea
|
|
63
|
+
# application/cea-2018+xml
|
|
64
|
+
# application/cellml+xml
|
|
65
|
+
# application/cfw
|
|
66
|
+
# application/cms
|
|
67
|
+
# application/cnrp+xml
|
|
68
|
+
# application/coap-group+json
|
|
69
|
+
# application/commonground
|
|
70
|
+
# application/conference-info+xml
|
|
71
|
+
# application/cpl+xml
|
|
72
|
+
# application/csrattrs
|
|
73
|
+
# application/csta+xml
|
|
74
|
+
# application/cstadata+xml
|
|
75
|
+
# application/csvm+json
|
|
76
|
+
application/cu-seeme cu
|
|
77
|
+
# application/cybercash
|
|
78
|
+
# application/dash+xml
|
|
79
|
+
# application/dashdelta
|
|
80
|
+
application/davmount+xml davmount
|
|
81
|
+
# application/dca-rft
|
|
82
|
+
# application/dcd
|
|
83
|
+
# application/dec-dx
|
|
84
|
+
# application/dialog-info+xml
|
|
85
|
+
# application/dicom
|
|
86
|
+
# application/dii
|
|
87
|
+
# application/dit
|
|
88
|
+
# application/dns
|
|
89
|
+
application/docbook+xml dbk
|
|
90
|
+
# application/dskpp+xml
|
|
91
|
+
application/dssc+der dssc
|
|
92
|
+
application/dssc+xml xdssc
|
|
93
|
+
# application/dvcs
|
|
94
|
+
application/ecmascript ecma
|
|
95
|
+
# application/edi-consent
|
|
96
|
+
# application/edi-x12
|
|
97
|
+
# application/edifact
|
|
98
|
+
# application/efi
|
|
99
|
+
# application/emergencycalldata.comment+xml
|
|
100
|
+
# application/emergencycalldata.deviceinfo+xml
|
|
101
|
+
# application/emergencycalldata.providerinfo+xml
|
|
102
|
+
# application/emergencycalldata.serviceinfo+xml
|
|
103
|
+
# application/emergencycalldata.subscriberinfo+xml
|
|
104
|
+
application/emma+xml emma
|
|
105
|
+
# application/emotionml+xml
|
|
106
|
+
# application/encaprtp
|
|
107
|
+
# application/epp+xml
|
|
108
|
+
application/epub+zip epub
|
|
109
|
+
# application/eshop
|
|
110
|
+
# application/example
|
|
111
|
+
application/exi exi
|
|
112
|
+
# application/fastinfoset
|
|
113
|
+
# application/fastsoap
|
|
114
|
+
# application/fdt+xml
|
|
115
|
+
# application/fits
|
|
116
|
+
application/font-tdpfr pfr
|
|
117
|
+
# application/framework-attributes+xml
|
|
118
|
+
# application/geo+json
|
|
119
|
+
application/gml+xml gml
|
|
120
|
+
application/gpx+xml gpx
|
|
121
|
+
application/gxf gxf
|
|
122
|
+
# application/gzip
|
|
123
|
+
# application/h224
|
|
124
|
+
# application/held+xml
|
|
125
|
+
# application/http
|
|
126
|
+
application/hyperstudio stk
|
|
127
|
+
# application/ibe-key-request+xml
|
|
128
|
+
# application/ibe-pkg-reply+xml
|
|
129
|
+
# application/ibe-pp-data
|
|
130
|
+
# application/iges
|
|
131
|
+
# application/im-iscomposing+xml
|
|
132
|
+
# application/index
|
|
133
|
+
# application/index.cmd
|
|
134
|
+
# application/index.obj
|
|
135
|
+
# application/index.response
|
|
136
|
+
# application/index.vnd
|
|
137
|
+
application/inkml+xml ink inkml
|
|
138
|
+
# application/iotp
|
|
139
|
+
application/ipfix ipfix
|
|
140
|
+
# application/ipp
|
|
141
|
+
# application/isup
|
|
142
|
+
# application/its+xml
|
|
143
|
+
application/java-archive jar
|
|
144
|
+
application/java-serialized-object ser
|
|
145
|
+
application/java-vm class
|
|
146
|
+
application/javascript js
|
|
147
|
+
# application/jose
|
|
148
|
+
# application/jose+json
|
|
149
|
+
# application/jrd+json
|
|
150
|
+
application/json json
|
|
151
|
+
# application/json-patch+json
|
|
152
|
+
# application/json-seq
|
|
153
|
+
application/jsonml+json jsonml
|
|
154
|
+
# application/jwk+json
|
|
155
|
+
# application/jwk-set+json
|
|
156
|
+
# application/jwt
|
|
157
|
+
# application/kpml-request+xml
|
|
158
|
+
# application/kpml-response+xml
|
|
159
|
+
# application/ld+json
|
|
160
|
+
# application/lgr+xml
|
|
161
|
+
# application/link-format
|
|
162
|
+
# application/load-control+xml
|
|
163
|
+
application/lost+xml lostxml
|
|
164
|
+
# application/lostsync+xml
|
|
165
|
+
# application/lxf
|
|
166
|
+
application/mac-binhex40 hqx
|
|
167
|
+
application/mac-compactpro cpt
|
|
168
|
+
# application/macwriteii
|
|
169
|
+
application/mads+xml mads
|
|
170
|
+
application/marc mrc
|
|
171
|
+
application/marcxml+xml mrcx
|
|
172
|
+
application/mathematica ma nb mb
|
|
173
|
+
application/mathml+xml mathml
|
|
174
|
+
# application/mathml-content+xml
|
|
175
|
+
# application/mathml-presentation+xml
|
|
176
|
+
# application/mbms-associated-procedure-description+xml
|
|
177
|
+
# application/mbms-deregister+xml
|
|
178
|
+
# application/mbms-envelope+xml
|
|
179
|
+
# application/mbms-msk+xml
|
|
180
|
+
# application/mbms-msk-response+xml
|
|
181
|
+
# application/mbms-protection-description+xml
|
|
182
|
+
# application/mbms-reception-report+xml
|
|
183
|
+
# application/mbms-register+xml
|
|
184
|
+
# application/mbms-register-response+xml
|
|
185
|
+
# application/mbms-schedule+xml
|
|
186
|
+
# application/mbms-user-service-description+xml
|
|
187
|
+
application/mbox mbox
|
|
188
|
+
# application/media-policy-dataset+xml
|
|
189
|
+
# application/media_control+xml
|
|
190
|
+
application/mediaservercontrol+xml mscml
|
|
191
|
+
# application/merge-patch+json
|
|
192
|
+
application/metalink+xml metalink
|
|
193
|
+
application/metalink4+xml meta4
|
|
194
|
+
application/mets+xml mets
|
|
195
|
+
# application/mf4
|
|
196
|
+
# application/mikey
|
|
197
|
+
application/mods+xml mods
|
|
198
|
+
# application/moss-keys
|
|
199
|
+
# application/moss-signature
|
|
200
|
+
# application/mosskey-data
|
|
201
|
+
# application/mosskey-request
|
|
202
|
+
application/mp21 m21 mp21
|
|
203
|
+
application/mp4 mp4s
|
|
204
|
+
# application/mpeg4-generic
|
|
205
|
+
# application/mpeg4-iod
|
|
206
|
+
# application/mpeg4-iod-xmt
|
|
207
|
+
# application/mrb-consumer+xml
|
|
208
|
+
# application/mrb-publish+xml
|
|
209
|
+
# application/msc-ivr+xml
|
|
210
|
+
# application/msc-mixer+xml
|
|
211
|
+
application/msword doc dot
|
|
212
|
+
application/mxf mxf
|
|
213
|
+
# application/nasdata
|
|
214
|
+
# application/news-checkgroups
|
|
215
|
+
# application/news-groupinfo
|
|
216
|
+
# application/news-transmission
|
|
217
|
+
# application/nlsml+xml
|
|
218
|
+
# application/nss
|
|
219
|
+
# application/ocsp-request
|
|
220
|
+
# application/ocsp-response
|
|
221
|
+
application/octet-stream bin dms lrf mar so dist distz pkg bpk dump elc deploy
|
|
222
|
+
application/oda oda
|
|
223
|
+
# application/odx
|
|
224
|
+
application/oebps-package+xml opf
|
|
225
|
+
application/ogg ogx
|
|
226
|
+
application/omdoc+xml omdoc
|
|
227
|
+
application/onenote onetoc onetoc2 onetmp onepkg
|
|
228
|
+
application/oxps oxps
|
|
229
|
+
# application/p2p-overlay+xml
|
|
230
|
+
# application/parityfec
|
|
231
|
+
application/patch-ops-error+xml xer
|
|
232
|
+
application/pdf pdf
|
|
233
|
+
# application/pdx
|
|
234
|
+
application/pgp-encrypted pgp
|
|
235
|
+
# application/pgp-keys
|
|
236
|
+
application/pgp-signature asc sig
|
|
237
|
+
application/pics-rules prf
|
|
238
|
+
# application/pidf+xml
|
|
239
|
+
# application/pidf-diff+xml
|
|
240
|
+
application/pkcs10 p10
|
|
241
|
+
# application/pkcs12
|
|
242
|
+
application/pkcs7-mime p7m p7c
|
|
243
|
+
application/pkcs7-signature p7s
|
|
244
|
+
application/pkcs8 p8
|
|
245
|
+
application/pkix-attr-cert ac
|
|
246
|
+
application/pkix-cert cer
|
|
247
|
+
application/pkix-crl crl
|
|
248
|
+
application/pkix-pkipath pkipath
|
|
249
|
+
application/pkixcmp pki
|
|
250
|
+
application/pls+xml pls
|
|
251
|
+
# application/poc-settings+xml
|
|
252
|
+
application/postscript ai eps ps
|
|
253
|
+
# application/ppsp-tracker+json
|
|
254
|
+
# application/problem+json
|
|
255
|
+
# application/problem+xml
|
|
256
|
+
# application/provenance+xml
|
|
257
|
+
# application/prs.alvestrand.titrax-sheet
|
|
258
|
+
application/prs.cww cww
|
|
259
|
+
# application/prs.hpub+zip
|
|
260
|
+
# application/prs.nprend
|
|
261
|
+
# application/prs.plucker
|
|
262
|
+
# application/prs.rdf-xml-crypt
|
|
263
|
+
# application/prs.xsf+xml
|
|
264
|
+
application/pskc+xml pskcxml
|
|
265
|
+
# application/qsig
|
|
266
|
+
# application/raptorfec
|
|
267
|
+
# application/rdap+json
|
|
268
|
+
application/rdf+xml rdf
|
|
269
|
+
application/reginfo+xml rif
|
|
270
|
+
application/relax-ng-compact-syntax rnc
|
|
271
|
+
# application/remote-printing
|
|
272
|
+
# application/reputon+json
|
|
273
|
+
application/resource-lists+xml rl
|
|
274
|
+
application/resource-lists-diff+xml rld
|
|
275
|
+
# application/rfc+xml
|
|
276
|
+
# application/riscos
|
|
277
|
+
# application/rlmi+xml
|
|
278
|
+
application/rls-services+xml rs
|
|
279
|
+
application/rpki-ghostbusters gbr
|
|
280
|
+
application/rpki-manifest mft
|
|
281
|
+
application/rpki-roa roa
|
|
282
|
+
# application/rpki-updown
|
|
283
|
+
application/rsd+xml rsd
|
|
284
|
+
application/rss+xml rss
|
|
285
|
+
application/rtf rtf
|
|
286
|
+
# application/rtploopback
|
|
287
|
+
# application/rtx
|
|
288
|
+
# application/samlassertion+xml
|
|
289
|
+
# application/samlmetadata+xml
|
|
290
|
+
application/sbml+xml sbml
|
|
291
|
+
# application/scaip+xml
|
|
292
|
+
# application/scim+json
|
|
293
|
+
application/scvp-cv-request scq
|
|
294
|
+
application/scvp-cv-response scs
|
|
295
|
+
application/scvp-vp-request spq
|
|
296
|
+
application/scvp-vp-response spp
|
|
297
|
+
application/sdp sdp
|
|
298
|
+
# application/sep+xml
|
|
299
|
+
# application/sep-exi
|
|
300
|
+
# application/session-info
|
|
301
|
+
# application/set-payment
|
|
302
|
+
application/set-payment-initiation setpay
|
|
303
|
+
# application/set-registration
|
|
304
|
+
application/set-registration-initiation setreg
|
|
305
|
+
# application/sgml
|
|
306
|
+
# application/sgml-open-catalog
|
|
307
|
+
application/shf+xml shf
|
|
308
|
+
# application/sieve
|
|
309
|
+
# application/simple-filter+xml
|
|
310
|
+
# application/simple-message-summary
|
|
311
|
+
# application/simplesymbolcontainer
|
|
312
|
+
# application/slate
|
|
313
|
+
# application/smil
|
|
314
|
+
application/smil+xml smi smil
|
|
315
|
+
# application/smpte336m
|
|
316
|
+
# application/soap+fastinfoset
|
|
317
|
+
# application/soap+xml
|
|
318
|
+
application/sparql-query rq
|
|
319
|
+
application/sparql-results+xml srx
|
|
320
|
+
# application/spirits-event+xml
|
|
321
|
+
# application/sql
|
|
322
|
+
application/srgs gram
|
|
323
|
+
application/srgs+xml grxml
|
|
324
|
+
application/sru+xml sru
|
|
325
|
+
application/ssdl+xml ssdl
|
|
326
|
+
application/ssml+xml ssml
|
|
327
|
+
# application/tamp-apex-update
|
|
328
|
+
# application/tamp-apex-update-confirm
|
|
329
|
+
# application/tamp-community-update
|
|
330
|
+
# application/tamp-community-update-confirm
|
|
331
|
+
# application/tamp-error
|
|
332
|
+
# application/tamp-sequence-adjust
|
|
333
|
+
# application/tamp-sequence-adjust-confirm
|
|
334
|
+
# application/tamp-status-query
|
|
335
|
+
# application/tamp-status-response
|
|
336
|
+
# application/tamp-update
|
|
337
|
+
# application/tamp-update-confirm
|
|
338
|
+
application/tei+xml tei teicorpus
|
|
339
|
+
application/thraud+xml tfi
|
|
340
|
+
# application/timestamp-query
|
|
341
|
+
# application/timestamp-reply
|
|
342
|
+
application/timestamped-data tsd
|
|
343
|
+
# application/ttml+xml
|
|
344
|
+
# application/tve-trigger
|
|
345
|
+
# application/ulpfec
|
|
346
|
+
# application/urc-grpsheet+xml
|
|
347
|
+
# application/urc-ressheet+xml
|
|
348
|
+
# application/urc-targetdesc+xml
|
|
349
|
+
# application/urc-uisocketdesc+xml
|
|
350
|
+
# application/vcard+json
|
|
351
|
+
# application/vcard+xml
|
|
352
|
+
# application/vemmi
|
|
353
|
+
# application/vividence.scriptfile
|
|
354
|
+
# application/vnd.3gpp-prose+xml
|
|
355
|
+
# application/vnd.3gpp-prose-pc3ch+xml
|
|
356
|
+
# application/vnd.3gpp.access-transfer-events+xml
|
|
357
|
+
# application/vnd.3gpp.bsf+xml
|
|
358
|
+
# application/vnd.3gpp.mid-call+xml
|
|
359
|
+
application/vnd.3gpp.pic-bw-large plb
|
|
360
|
+
application/vnd.3gpp.pic-bw-small psb
|
|
361
|
+
application/vnd.3gpp.pic-bw-var pvb
|
|
362
|
+
# application/vnd.3gpp.sms
|
|
363
|
+
# application/vnd.3gpp.sms+xml
|
|
364
|
+
# application/vnd.3gpp.srvcc-ext+xml
|
|
365
|
+
# application/vnd.3gpp.srvcc-info+xml
|
|
366
|
+
# application/vnd.3gpp.state-and-event-info+xml
|
|
367
|
+
# application/vnd.3gpp.ussd+xml
|
|
368
|
+
# application/vnd.3gpp2.bcmcsinfo+xml
|
|
369
|
+
# application/vnd.3gpp2.sms
|
|
370
|
+
application/vnd.3gpp2.tcap tcap
|
|
371
|
+
# application/vnd.3lightssoftware.imagescal
|
|
372
|
+
application/vnd.3m.post-it-notes pwn
|
|
373
|
+
application/vnd.accpac.simply.aso aso
|
|
374
|
+
application/vnd.accpac.simply.imp imp
|
|
375
|
+
application/vnd.acucobol acu
|
|
376
|
+
application/vnd.acucorp atc acutc
|
|
377
|
+
application/vnd.adobe.air-application-installer-package+zip air
|
|
378
|
+
# application/vnd.adobe.flash.movie
|
|
379
|
+
application/vnd.adobe.formscentral.fcdt fcdt
|
|
380
|
+
application/vnd.adobe.fxp fxp fxpl
|
|
381
|
+
# application/vnd.adobe.partial-upload
|
|
382
|
+
application/vnd.adobe.xdp+xml xdp
|
|
383
|
+
application/vnd.adobe.xfdf xfdf
|
|
384
|
+
# application/vnd.aether.imp
|
|
385
|
+
# application/vnd.ah-barcode
|
|
386
|
+
application/vnd.ahead.space ahead
|
|
387
|
+
application/vnd.airzip.filesecure.azf azf
|
|
388
|
+
application/vnd.airzip.filesecure.azs azs
|
|
389
|
+
application/vnd.amazon.ebook azw
|
|
390
|
+
# application/vnd.amazon.mobi8-ebook
|
|
391
|
+
application/vnd.americandynamics.acc acc
|
|
392
|
+
application/vnd.amiga.ami ami
|
|
393
|
+
# application/vnd.amundsen.maze+xml
|
|
394
|
+
application/vnd.android.package-archive apk
|
|
395
|
+
# application/vnd.anki
|
|
396
|
+
application/vnd.anser-web-certificate-issue-initiation cii
|
|
397
|
+
application/vnd.anser-web-funds-transfer-initiation fti
|
|
398
|
+
application/vnd.antix.game-component atx
|
|
399
|
+
# application/vnd.apache.thrift.binary
|
|
400
|
+
# application/vnd.apache.thrift.compact
|
|
401
|
+
# application/vnd.apache.thrift.json
|
|
402
|
+
# application/vnd.api+json
|
|
403
|
+
application/vnd.apple.installer+xml mpkg
|
|
404
|
+
application/vnd.apple.mpegurl m3u8
|
|
405
|
+
# application/vnd.arastra.swi
|
|
406
|
+
application/vnd.aristanetworks.swi swi
|
|
407
|
+
# application/vnd.artsquare
|
|
408
|
+
application/vnd.astraea-software.iota iota
|
|
409
|
+
application/vnd.audiograph aep
|
|
410
|
+
# application/vnd.autopackage
|
|
411
|
+
# application/vnd.avistar+xml
|
|
412
|
+
# application/vnd.balsamiq.bmml+xml
|
|
413
|
+
# application/vnd.balsamiq.bmpr
|
|
414
|
+
# application/vnd.bekitzur-stech+json
|
|
415
|
+
# application/vnd.biopax.rdf+xml
|
|
416
|
+
application/vnd.blueice.multipass mpm
|
|
417
|
+
# application/vnd.bluetooth.ep.oob
|
|
418
|
+
# application/vnd.bluetooth.le.oob
|
|
419
|
+
application/vnd.bmi bmi
|
|
420
|
+
application/vnd.businessobjects rep
|
|
421
|
+
# application/vnd.cab-jscript
|
|
422
|
+
# application/vnd.canon-cpdl
|
|
423
|
+
# application/vnd.canon-lips
|
|
424
|
+
# application/vnd.cendio.thinlinc.clientconf
|
|
425
|
+
# application/vnd.century-systems.tcp_stream
|
|
426
|
+
application/vnd.chemdraw+xml cdxml
|
|
427
|
+
# application/vnd.chess-pgn
|
|
428
|
+
application/vnd.chipnuts.karaoke-mmd mmd
|
|
429
|
+
application/vnd.cinderella cdy
|
|
430
|
+
# application/vnd.cirpack.isdn-ext
|
|
431
|
+
# application/vnd.citationstyles.style+xml
|
|
432
|
+
application/vnd.claymore cla
|
|
433
|
+
application/vnd.cloanto.rp9 rp9
|
|
434
|
+
application/vnd.clonk.c4group c4g c4d c4f c4p c4u
|
|
435
|
+
application/vnd.cluetrust.cartomobile-config c11amc
|
|
436
|
+
application/vnd.cluetrust.cartomobile-config-pkg c11amz
|
|
437
|
+
# application/vnd.coffeescript
|
|
438
|
+
# application/vnd.collection+json
|
|
439
|
+
# application/vnd.collection.doc+json
|
|
440
|
+
# application/vnd.collection.next+json
|
|
441
|
+
# application/vnd.comicbook+zip
|
|
442
|
+
# application/vnd.commerce-battelle
|
|
443
|
+
application/vnd.commonspace csp
|
|
444
|
+
application/vnd.contact.cmsg cdbcmsg
|
|
445
|
+
# application/vnd.coreos.ignition+json
|
|
446
|
+
application/vnd.cosmocaller cmc
|
|
447
|
+
application/vnd.crick.clicker clkx
|
|
448
|
+
application/vnd.crick.clicker.keyboard clkk
|
|
449
|
+
application/vnd.crick.clicker.palette clkp
|
|
450
|
+
application/vnd.crick.clicker.template clkt
|
|
451
|
+
application/vnd.crick.clicker.wordbank clkw
|
|
452
|
+
application/vnd.criticaltools.wbs+xml wbs
|
|
453
|
+
application/vnd.ctc-posml pml
|
|
454
|
+
# application/vnd.ctct.ws+xml
|
|
455
|
+
# application/vnd.cups-pdf
|
|
456
|
+
# application/vnd.cups-postscript
|
|
457
|
+
application/vnd.cups-ppd ppd
|
|
458
|
+
# application/vnd.cups-raster
|
|
459
|
+
# application/vnd.cups-raw
|
|
460
|
+
# application/vnd.curl
|
|
461
|
+
application/vnd.curl.car car
|
|
462
|
+
application/vnd.curl.pcurl pcurl
|
|
463
|
+
# application/vnd.cyan.dean.root+xml
|
|
464
|
+
# application/vnd.cybank
|
|
465
|
+
application/vnd.dart dart
|
|
466
|
+
application/vnd.data-vision.rdz rdz
|
|
467
|
+
# application/vnd.debian.binary-package
|
|
468
|
+
application/vnd.dece.data uvf uvvf uvd uvvd
|
|
469
|
+
application/vnd.dece.ttml+xml uvt uvvt
|
|
470
|
+
application/vnd.dece.unspecified uvx uvvx
|
|
471
|
+
application/vnd.dece.zip uvz uvvz
|
|
472
|
+
application/vnd.denovo.fcselayout-link fe_launch
|
|
473
|
+
# application/vnd.desmume.movie
|
|
474
|
+
# application/vnd.dir-bi.plate-dl-nosuffix
|
|
475
|
+
# application/vnd.dm.delegation+xml
|
|
476
|
+
application/vnd.dna dna
|
|
477
|
+
# application/vnd.document+json
|
|
478
|
+
application/vnd.dolby.mlp mlp
|
|
479
|
+
# application/vnd.dolby.mobile.1
|
|
480
|
+
# application/vnd.dolby.mobile.2
|
|
481
|
+
# application/vnd.doremir.scorecloud-binary-document
|
|
482
|
+
application/vnd.dpgraph dpg
|
|
483
|
+
application/vnd.dreamfactory dfac
|
|
484
|
+
# application/vnd.drive+json
|
|
485
|
+
application/vnd.ds-keypoint kpxx
|
|
486
|
+
# application/vnd.dtg.local
|
|
487
|
+
# application/vnd.dtg.local.flash
|
|
488
|
+
# application/vnd.dtg.local.html
|
|
489
|
+
application/vnd.dvb.ait ait
|
|
490
|
+
# application/vnd.dvb.dvbj
|
|
491
|
+
# application/vnd.dvb.esgcontainer
|
|
492
|
+
# application/vnd.dvb.ipdcdftnotifaccess
|
|
493
|
+
# application/vnd.dvb.ipdcesgaccess
|
|
494
|
+
# application/vnd.dvb.ipdcesgaccess2
|
|
495
|
+
# application/vnd.dvb.ipdcesgpdd
|
|
496
|
+
# application/vnd.dvb.ipdcroaming
|
|
497
|
+
# application/vnd.dvb.iptv.alfec-base
|
|
498
|
+
# application/vnd.dvb.iptv.alfec-enhancement
|
|
499
|
+
# application/vnd.dvb.notif-aggregate-root+xml
|
|
500
|
+
# application/vnd.dvb.notif-container+xml
|
|
501
|
+
# application/vnd.dvb.notif-generic+xml
|
|
502
|
+
# application/vnd.dvb.notif-ia-msglist+xml
|
|
503
|
+
# application/vnd.dvb.notif-ia-registration-request+xml
|
|
504
|
+
# application/vnd.dvb.notif-ia-registration-response+xml
|
|
505
|
+
# application/vnd.dvb.notif-init+xml
|
|
506
|
+
# application/vnd.dvb.pfr
|
|
507
|
+
application/vnd.dvb.service svc
|
|
508
|
+
# application/vnd.dxr
|
|
509
|
+
application/vnd.dynageo geo
|
|
510
|
+
# application/vnd.dzr
|
|
511
|
+
# application/vnd.easykaraoke.cdgdownload
|
|
512
|
+
# application/vnd.ecdis-update
|
|
513
|
+
application/vnd.ecowin.chart mag
|
|
514
|
+
# application/vnd.ecowin.filerequest
|
|
515
|
+
# application/vnd.ecowin.fileupdate
|
|
516
|
+
# application/vnd.ecowin.series
|
|
517
|
+
# application/vnd.ecowin.seriesrequest
|
|
518
|
+
# application/vnd.ecowin.seriesupdate
|
|
519
|
+
# application/vnd.emclient.accessrequest+xml
|
|
520
|
+
application/vnd.enliven nml
|
|
521
|
+
# application/vnd.enphase.envoy
|
|
522
|
+
# application/vnd.eprints.data+xml
|
|
523
|
+
application/vnd.epson.esf esf
|
|
524
|
+
application/vnd.epson.msf msf
|
|
525
|
+
application/vnd.epson.quickanime qam
|
|
526
|
+
application/vnd.epson.salt slt
|
|
527
|
+
application/vnd.epson.ssf ssf
|
|
528
|
+
# application/vnd.ericsson.quickcall
|
|
529
|
+
application/vnd.eszigno3+xml es3 et3
|
|
530
|
+
# application/vnd.etsi.aoc+xml
|
|
531
|
+
# application/vnd.etsi.asic-e+zip
|
|
532
|
+
# application/vnd.etsi.asic-s+zip
|
|
533
|
+
# application/vnd.etsi.cug+xml
|
|
534
|
+
# application/vnd.etsi.iptvcommand+xml
|
|
535
|
+
# application/vnd.etsi.iptvdiscovery+xml
|
|
536
|
+
# application/vnd.etsi.iptvprofile+xml
|
|
537
|
+
# application/vnd.etsi.iptvsad-bc+xml
|
|
538
|
+
# application/vnd.etsi.iptvsad-cod+xml
|
|
539
|
+
# application/vnd.etsi.iptvsad-npvr+xml
|
|
540
|
+
# application/vnd.etsi.iptvservice+xml
|
|
541
|
+
# application/vnd.etsi.iptvsync+xml
|
|
542
|
+
# application/vnd.etsi.iptvueprofile+xml
|
|
543
|
+
# application/vnd.etsi.mcid+xml
|
|
544
|
+
# application/vnd.etsi.mheg5
|
|
545
|
+
# application/vnd.etsi.overload-control-policy-dataset+xml
|
|
546
|
+
# application/vnd.etsi.pstn+xml
|
|
547
|
+
# application/vnd.etsi.sci+xml
|
|
548
|
+
# application/vnd.etsi.simservs+xml
|
|
549
|
+
# application/vnd.etsi.timestamp-token
|
|
550
|
+
# application/vnd.etsi.tsl+xml
|
|
551
|
+
# application/vnd.etsi.tsl.der
|
|
552
|
+
# application/vnd.eudora.data
|
|
553
|
+
application/vnd.ezpix-album ez2
|
|
554
|
+
application/vnd.ezpix-package ez3
|
|
555
|
+
# application/vnd.f-secure.mobile
|
|
556
|
+
# application/vnd.fastcopy-disk-image
|
|
557
|
+
application/vnd.fdf fdf
|
|
558
|
+
application/vnd.fdsn.mseed mseed
|
|
559
|
+
application/vnd.fdsn.seed seed dataless
|
|
560
|
+
# application/vnd.ffsns
|
|
561
|
+
# application/vnd.filmit.zfc
|
|
562
|
+
# application/vnd.fints
|
|
563
|
+
# application/vnd.firemonkeys.cloudcell
|
|
564
|
+
application/vnd.flographit gph
|
|
565
|
+
application/vnd.fluxtime.clip ftc
|
|
566
|
+
# application/vnd.font-fontforge-sfd
|
|
567
|
+
application/vnd.framemaker fm frame maker book
|
|
568
|
+
application/vnd.frogans.fnc fnc
|
|
569
|
+
application/vnd.frogans.ltf ltf
|
|
570
|
+
application/vnd.fsc.weblaunch fsc
|
|
571
|
+
application/vnd.fujitsu.oasys oas
|
|
572
|
+
application/vnd.fujitsu.oasys2 oa2
|
|
573
|
+
application/vnd.fujitsu.oasys3 oa3
|
|
574
|
+
application/vnd.fujitsu.oasysgp fg5
|
|
575
|
+
application/vnd.fujitsu.oasysprs bh2
|
|
576
|
+
# application/vnd.fujixerox.art-ex
|
|
577
|
+
# application/vnd.fujixerox.art4
|
|
578
|
+
application/vnd.fujixerox.ddd ddd
|
|
579
|
+
application/vnd.fujixerox.docuworks xdw
|
|
580
|
+
application/vnd.fujixerox.docuworks.binder xbd
|
|
581
|
+
# application/vnd.fujixerox.docuworks.container
|
|
582
|
+
# application/vnd.fujixerox.hbpl
|
|
583
|
+
# application/vnd.fut-misnet
|
|
584
|
+
application/vnd.fuzzysheet fzs
|
|
585
|
+
application/vnd.genomatix.tuxedo txd
|
|
586
|
+
# application/vnd.geo+json
|
|
587
|
+
# application/vnd.geocube+xml
|
|
588
|
+
application/vnd.geogebra.file ggb
|
|
589
|
+
application/vnd.geogebra.tool ggt
|
|
590
|
+
application/vnd.geometry-explorer gex gre
|
|
591
|
+
application/vnd.geonext gxt
|
|
592
|
+
application/vnd.geoplan g2w
|
|
593
|
+
application/vnd.geospace g3w
|
|
594
|
+
# application/vnd.gerber
|
|
595
|
+
# application/vnd.globalplatform.card-content-mgt
|
|
596
|
+
# application/vnd.globalplatform.card-content-mgt-response
|
|
597
|
+
application/vnd.gmx gmx
|
|
598
|
+
application/vnd.google-earth.kml+xml kml
|
|
599
|
+
application/vnd.google-earth.kmz kmz
|
|
600
|
+
# application/vnd.gov.sk.e-form+xml
|
|
601
|
+
# application/vnd.gov.sk.e-form+zip
|
|
602
|
+
# application/vnd.gov.sk.xmldatacontainer+xml
|
|
603
|
+
application/vnd.grafeq gqf gqs
|
|
604
|
+
# application/vnd.gridmp
|
|
605
|
+
application/vnd.groove-account gac
|
|
606
|
+
application/vnd.groove-help ghf
|
|
607
|
+
application/vnd.groove-identity-message gim
|
|
608
|
+
application/vnd.groove-injector grv
|
|
609
|
+
application/vnd.groove-tool-message gtm
|
|
610
|
+
application/vnd.groove-tool-template tpl
|
|
611
|
+
application/vnd.groove-vcard vcg
|
|
612
|
+
# application/vnd.hal+json
|
|
613
|
+
application/vnd.hal+xml hal
|
|
614
|
+
application/vnd.handheld-entertainment+xml zmm
|
|
615
|
+
application/vnd.hbci hbci
|
|
616
|
+
# application/vnd.hcl-bireports
|
|
617
|
+
# application/vnd.hdt
|
|
618
|
+
# application/vnd.heroku+json
|
|
619
|
+
application/vnd.hhe.lesson-player les
|
|
620
|
+
application/vnd.hp-hpgl hpgl
|
|
621
|
+
application/vnd.hp-hpid hpid
|
|
622
|
+
application/vnd.hp-hps hps
|
|
623
|
+
application/vnd.hp-jlyt jlt
|
|
624
|
+
application/vnd.hp-pcl pcl
|
|
625
|
+
application/vnd.hp-pclxl pclxl
|
|
626
|
+
# application/vnd.httphone
|
|
627
|
+
application/vnd.hydrostatix.sof-data sfd-hdstx
|
|
628
|
+
# application/vnd.hyperdrive+json
|
|
629
|
+
# application/vnd.hzn-3d-crossword
|
|
630
|
+
# application/vnd.ibm.afplinedata
|
|
631
|
+
# application/vnd.ibm.electronic-media
|
|
632
|
+
application/vnd.ibm.minipay mpy
|
|
633
|
+
application/vnd.ibm.modcap afp listafp list3820
|
|
634
|
+
application/vnd.ibm.rights-management irm
|
|
635
|
+
application/vnd.ibm.secure-container sc
|
|
636
|
+
application/vnd.iccprofile icc icm
|
|
637
|
+
# application/vnd.ieee.1905
|
|
638
|
+
application/vnd.igloader igl
|
|
639
|
+
application/vnd.immervision-ivp ivp
|
|
640
|
+
application/vnd.immervision-ivu ivu
|
|
641
|
+
# application/vnd.ims.imsccv1p1
|
|
642
|
+
# application/vnd.ims.imsccv1p2
|
|
643
|
+
# application/vnd.ims.imsccv1p3
|
|
644
|
+
# application/vnd.ims.lis.v2.result+json
|
|
645
|
+
# application/vnd.ims.lti.v2.toolconsumerprofile+json
|
|
646
|
+
# application/vnd.ims.lti.v2.toolproxy+json
|
|
647
|
+
# application/vnd.ims.lti.v2.toolproxy.id+json
|
|
648
|
+
# application/vnd.ims.lti.v2.toolsettings+json
|
|
649
|
+
# application/vnd.ims.lti.v2.toolsettings.simple+json
|
|
650
|
+
# application/vnd.informedcontrol.rms+xml
|
|
651
|
+
# application/vnd.informix-visionary
|
|
652
|
+
# application/vnd.infotech.project
|
|
653
|
+
# application/vnd.infotech.project+xml
|
|
654
|
+
# application/vnd.innopath.wamp.notification
|
|
655
|
+
application/vnd.insors.igm igm
|
|
656
|
+
application/vnd.intercon.formnet xpw xpx
|
|
657
|
+
application/vnd.intergeo i2g
|
|
658
|
+
# application/vnd.intertrust.digibox
|
|
659
|
+
# application/vnd.intertrust.nncp
|
|
660
|
+
application/vnd.intu.qbo qbo
|
|
661
|
+
application/vnd.intu.qfx qfx
|
|
662
|
+
# application/vnd.iptc.g2.catalogitem+xml
|
|
663
|
+
# application/vnd.iptc.g2.conceptitem+xml
|
|
664
|
+
# application/vnd.iptc.g2.knowledgeitem+xml
|
|
665
|
+
# application/vnd.iptc.g2.newsitem+xml
|
|
666
|
+
# application/vnd.iptc.g2.newsmessage+xml
|
|
667
|
+
# application/vnd.iptc.g2.packageitem+xml
|
|
668
|
+
# application/vnd.iptc.g2.planningitem+xml
|
|
669
|
+
application/vnd.ipunplugged.rcprofile rcprofile
|
|
670
|
+
application/vnd.irepository.package+xml irp
|
|
671
|
+
application/vnd.is-xpr xpr
|
|
672
|
+
application/vnd.isac.fcs fcs
|
|
673
|
+
application/vnd.jam jam
|
|
674
|
+
# application/vnd.japannet-directory-service
|
|
675
|
+
# application/vnd.japannet-jpnstore-wakeup
|
|
676
|
+
# application/vnd.japannet-payment-wakeup
|
|
677
|
+
# application/vnd.japannet-registration
|
|
678
|
+
# application/vnd.japannet-registration-wakeup
|
|
679
|
+
# application/vnd.japannet-setstore-wakeup
|
|
680
|
+
# application/vnd.japannet-verification
|
|
681
|
+
# application/vnd.japannet-verification-wakeup
|
|
682
|
+
application/vnd.jcp.javame.midlet-rms rms
|
|
683
|
+
application/vnd.jisp jisp
|
|
684
|
+
application/vnd.joost.joda-archive joda
|
|
685
|
+
# application/vnd.jsk.isdn-ngn
|
|
686
|
+
application/vnd.kahootz ktz ktr
|
|
687
|
+
application/vnd.kde.karbon karbon
|
|
688
|
+
application/vnd.kde.kchart chrt
|
|
689
|
+
application/vnd.kde.kformula kfo
|
|
690
|
+
application/vnd.kde.kivio flw
|
|
691
|
+
application/vnd.kde.kontour kon
|
|
692
|
+
application/vnd.kde.kpresenter kpr kpt
|
|
693
|
+
application/vnd.kde.kspread ksp
|
|
694
|
+
application/vnd.kde.kword kwd kwt
|
|
695
|
+
application/vnd.kenameaapp htke
|
|
696
|
+
application/vnd.kidspiration kia
|
|
697
|
+
application/vnd.kinar kne knp
|
|
698
|
+
application/vnd.koan skp skd skt skm
|
|
699
|
+
application/vnd.kodak-descriptor sse
|
|
700
|
+
application/vnd.las.las+xml lasxml
|
|
701
|
+
# application/vnd.liberty-request+xml
|
|
702
|
+
application/vnd.llamagraphics.life-balance.desktop lbd
|
|
703
|
+
application/vnd.llamagraphics.life-balance.exchange+xml lbe
|
|
704
|
+
application/vnd.lotus-1-2-3 123
|
|
705
|
+
application/vnd.lotus-approach apr
|
|
706
|
+
application/vnd.lotus-freelance pre
|
|
707
|
+
application/vnd.lotus-notes nsf
|
|
708
|
+
application/vnd.lotus-organizer org
|
|
709
|
+
application/vnd.lotus-screencam scm
|
|
710
|
+
application/vnd.lotus-wordpro lwp
|
|
711
|
+
application/vnd.macports.portpkg portpkg
|
|
712
|
+
# application/vnd.mapbox-vector-tile
|
|
713
|
+
# application/vnd.marlin.drm.actiontoken+xml
|
|
714
|
+
# application/vnd.marlin.drm.conftoken+xml
|
|
715
|
+
# application/vnd.marlin.drm.license+xml
|
|
716
|
+
# application/vnd.marlin.drm.mdcf
|
|
717
|
+
# application/vnd.mason+json
|
|
718
|
+
# application/vnd.maxmind.maxmind-db
|
|
719
|
+
application/vnd.mcd mcd
|
|
720
|
+
application/vnd.medcalcdata mc1
|
|
721
|
+
application/vnd.mediastation.cdkey cdkey
|
|
722
|
+
# application/vnd.meridian-slingshot
|
|
723
|
+
application/vnd.mfer mwf
|
|
724
|
+
application/vnd.mfmp mfm
|
|
725
|
+
# application/vnd.micro+json
|
|
726
|
+
application/vnd.micrografx.flo flo
|
|
727
|
+
application/vnd.micrografx.igx igx
|
|
728
|
+
# application/vnd.microsoft.portable-executable
|
|
729
|
+
# application/vnd.miele+json
|
|
730
|
+
application/vnd.mif mif
|
|
731
|
+
# application/vnd.minisoft-hp3000-save
|
|
732
|
+
# application/vnd.mitsubishi.misty-guard.trustweb
|
|
733
|
+
application/vnd.mobius.daf daf
|
|
734
|
+
application/vnd.mobius.dis dis
|
|
735
|
+
application/vnd.mobius.mbk mbk
|
|
736
|
+
application/vnd.mobius.mqy mqy
|
|
737
|
+
application/vnd.mobius.msl msl
|
|
738
|
+
application/vnd.mobius.plc plc
|
|
739
|
+
application/vnd.mobius.txf txf
|
|
740
|
+
application/vnd.mophun.application mpn
|
|
741
|
+
application/vnd.mophun.certificate mpc
|
|
742
|
+
# application/vnd.motorola.flexsuite
|
|
743
|
+
# application/vnd.motorola.flexsuite.adsi
|
|
744
|
+
# application/vnd.motorola.flexsuite.fis
|
|
745
|
+
# application/vnd.motorola.flexsuite.gotap
|
|
746
|
+
# application/vnd.motorola.flexsuite.kmr
|
|
747
|
+
# application/vnd.motorola.flexsuite.ttc
|
|
748
|
+
# application/vnd.motorola.flexsuite.wem
|
|
749
|
+
# application/vnd.motorola.iprm
|
|
750
|
+
application/vnd.mozilla.xul+xml xul
|
|
751
|
+
# application/vnd.ms-3mfdocument
|
|
752
|
+
application/vnd.ms-artgalry cil
|
|
753
|
+
# application/vnd.ms-asf
|
|
754
|
+
application/vnd.ms-cab-compressed cab
|
|
755
|
+
# application/vnd.ms-color.iccprofile
|
|
756
|
+
application/vnd.ms-excel xls xlm xla xlc xlt xlw
|
|
757
|
+
application/vnd.ms-excel.addin.macroenabled.12 xlam
|
|
758
|
+
application/vnd.ms-excel.sheet.binary.macroenabled.12 xlsb
|
|
759
|
+
application/vnd.ms-excel.sheet.macroenabled.12 xlsm
|
|
760
|
+
application/vnd.ms-excel.template.macroenabled.12 xltm
|
|
761
|
+
application/vnd.ms-fontobject eot
|
|
762
|
+
application/vnd.ms-htmlhelp chm
|
|
763
|
+
application/vnd.ms-ims ims
|
|
764
|
+
application/vnd.ms-lrm lrm
|
|
765
|
+
# application/vnd.ms-office.activex+xml
|
|
766
|
+
application/vnd.ms-officetheme thmx
|
|
767
|
+
# application/vnd.ms-opentype
|
|
768
|
+
# application/vnd.ms-package.obfuscated-opentype
|
|
769
|
+
application/vnd.ms-pki.seccat cat
|
|
770
|
+
application/vnd.ms-pki.stl stl
|
|
771
|
+
# application/vnd.ms-playready.initiator+xml
|
|
772
|
+
application/vnd.ms-powerpoint ppt pps pot
|
|
773
|
+
application/vnd.ms-powerpoint.addin.macroenabled.12 ppam
|
|
774
|
+
application/vnd.ms-powerpoint.presentation.macroenabled.12 pptm
|
|
775
|
+
application/vnd.ms-powerpoint.slide.macroenabled.12 sldm
|
|
776
|
+
application/vnd.ms-powerpoint.slideshow.macroenabled.12 ppsm
|
|
777
|
+
application/vnd.ms-powerpoint.template.macroenabled.12 potm
|
|
778
|
+
# application/vnd.ms-printdevicecapabilities+xml
|
|
779
|
+
# application/vnd.ms-printing.printticket+xml
|
|
780
|
+
# application/vnd.ms-printschematicket+xml
|
|
781
|
+
application/vnd.ms-project mpp mpt
|
|
782
|
+
# application/vnd.ms-tnef
|
|
783
|
+
# application/vnd.ms-windows.devicepairing
|
|
784
|
+
# application/vnd.ms-windows.nwprinting.oob
|
|
785
|
+
# application/vnd.ms-windows.printerpairing
|
|
786
|
+
# application/vnd.ms-windows.wsd.oob
|
|
787
|
+
# application/vnd.ms-wmdrm.lic-chlg-req
|
|
788
|
+
# application/vnd.ms-wmdrm.lic-resp
|
|
789
|
+
# application/vnd.ms-wmdrm.meter-chlg-req
|
|
790
|
+
# application/vnd.ms-wmdrm.meter-resp
|
|
791
|
+
application/vnd.ms-word.document.macroenabled.12 docm
|
|
792
|
+
application/vnd.ms-word.template.macroenabled.12 dotm
|
|
793
|
+
application/vnd.ms-works wps wks wcm wdb
|
|
794
|
+
application/vnd.ms-wpl wpl
|
|
795
|
+
application/vnd.ms-xpsdocument xps
|
|
796
|
+
# application/vnd.msa-disk-image
|
|
797
|
+
application/vnd.mseq mseq
|
|
798
|
+
# application/vnd.msign
|
|
799
|
+
# application/vnd.multiad.creator
|
|
800
|
+
# application/vnd.multiad.creator.cif
|
|
801
|
+
# application/vnd.music-niff
|
|
802
|
+
application/vnd.musician mus
|
|
803
|
+
application/vnd.muvee.style msty
|
|
804
|
+
application/vnd.mynfc taglet
|
|
805
|
+
# application/vnd.ncd.control
|
|
806
|
+
# application/vnd.ncd.reference
|
|
807
|
+
# application/vnd.nervana
|
|
808
|
+
# application/vnd.netfpx
|
|
809
|
+
application/vnd.neurolanguage.nlu nlu
|
|
810
|
+
# application/vnd.nintendo.nitro.rom
|
|
811
|
+
# application/vnd.nintendo.snes.rom
|
|
812
|
+
application/vnd.nitf ntf nitf
|
|
813
|
+
application/vnd.noblenet-directory nnd
|
|
814
|
+
application/vnd.noblenet-sealer nns
|
|
815
|
+
application/vnd.noblenet-web nnw
|
|
816
|
+
# application/vnd.nokia.catalogs
|
|
817
|
+
# application/vnd.nokia.conml+wbxml
|
|
818
|
+
# application/vnd.nokia.conml+xml
|
|
819
|
+
# application/vnd.nokia.iptv.config+xml
|
|
820
|
+
# application/vnd.nokia.isds-radio-presets
|
|
821
|
+
# application/vnd.nokia.landmark+wbxml
|
|
822
|
+
# application/vnd.nokia.landmark+xml
|
|
823
|
+
# application/vnd.nokia.landmarkcollection+xml
|
|
824
|
+
# application/vnd.nokia.n-gage.ac+xml
|
|
825
|
+
application/vnd.nokia.n-gage.data ngdat
|
|
826
|
+
application/vnd.nokia.n-gage.symbian.install n-gage
|
|
827
|
+
# application/vnd.nokia.ncd
|
|
828
|
+
# application/vnd.nokia.pcd+wbxml
|
|
829
|
+
# application/vnd.nokia.pcd+xml
|
|
830
|
+
application/vnd.nokia.radio-preset rpst
|
|
831
|
+
application/vnd.nokia.radio-presets rpss
|
|
832
|
+
application/vnd.novadigm.edm edm
|
|
833
|
+
application/vnd.novadigm.edx edx
|
|
834
|
+
application/vnd.novadigm.ext ext
|
|
835
|
+
# application/vnd.ntt-local.content-share
|
|
836
|
+
# application/vnd.ntt-local.file-transfer
|
|
837
|
+
# application/vnd.ntt-local.ogw_remote-access
|
|
838
|
+
# application/vnd.ntt-local.sip-ta_remote
|
|
839
|
+
# application/vnd.ntt-local.sip-ta_tcp_stream
|
|
840
|
+
application/vnd.oasis.opendocument.chart odc
|
|
841
|
+
application/vnd.oasis.opendocument.chart-template otc
|
|
842
|
+
application/vnd.oasis.opendocument.database odb
|
|
843
|
+
application/vnd.oasis.opendocument.formula odf
|
|
844
|
+
application/vnd.oasis.opendocument.formula-template odft
|
|
845
|
+
application/vnd.oasis.opendocument.graphics odg
|
|
846
|
+
application/vnd.oasis.opendocument.graphics-template otg
|
|
847
|
+
application/vnd.oasis.opendocument.image odi
|
|
848
|
+
application/vnd.oasis.opendocument.image-template oti
|
|
849
|
+
application/vnd.oasis.opendocument.presentation odp
|
|
850
|
+
application/vnd.oasis.opendocument.presentation-template otp
|
|
851
|
+
application/vnd.oasis.opendocument.spreadsheet ods
|
|
852
|
+
application/vnd.oasis.opendocument.spreadsheet-template ots
|
|
853
|
+
application/vnd.oasis.opendocument.text odt
|
|
854
|
+
application/vnd.oasis.opendocument.text-master odm
|
|
855
|
+
application/vnd.oasis.opendocument.text-template ott
|
|
856
|
+
application/vnd.oasis.opendocument.text-web oth
|
|
857
|
+
# application/vnd.obn
|
|
858
|
+
# application/vnd.oftn.l10n+json
|
|
859
|
+
# application/vnd.oipf.contentaccessdownload+xml
|
|
860
|
+
# application/vnd.oipf.contentaccessstreaming+xml
|
|
861
|
+
# application/vnd.oipf.cspg-hexbinary
|
|
862
|
+
# application/vnd.oipf.dae.svg+xml
|
|
863
|
+
# application/vnd.oipf.dae.xhtml+xml
|
|
864
|
+
# application/vnd.oipf.mippvcontrolmessage+xml
|
|
865
|
+
# application/vnd.oipf.pae.gem
|
|
866
|
+
# application/vnd.oipf.spdiscovery+xml
|
|
867
|
+
# application/vnd.oipf.spdlist+xml
|
|
868
|
+
# application/vnd.oipf.ueprofile+xml
|
|
869
|
+
# application/vnd.oipf.userprofile+xml
|
|
870
|
+
application/vnd.olpc-sugar xo
|
|
871
|
+
# application/vnd.oma-scws-config
|
|
872
|
+
# application/vnd.oma-scws-http-request
|
|
873
|
+
# application/vnd.oma-scws-http-response
|
|
874
|
+
# application/vnd.oma.bcast.associated-procedure-parameter+xml
|
|
875
|
+
# application/vnd.oma.bcast.drm-trigger+xml
|
|
876
|
+
# application/vnd.oma.bcast.imd+xml
|
|
877
|
+
# application/vnd.oma.bcast.ltkm
|
|
878
|
+
# application/vnd.oma.bcast.notification+xml
|
|
879
|
+
# application/vnd.oma.bcast.provisioningtrigger
|
|
880
|
+
# application/vnd.oma.bcast.sgboot
|
|
881
|
+
# application/vnd.oma.bcast.sgdd+xml
|
|
882
|
+
# application/vnd.oma.bcast.sgdu
|
|
883
|
+
# application/vnd.oma.bcast.simple-symbol-container
|
|
884
|
+
# application/vnd.oma.bcast.smartcard-trigger+xml
|
|
885
|
+
# application/vnd.oma.bcast.sprov+xml
|
|
886
|
+
# application/vnd.oma.bcast.stkm
|
|
887
|
+
# application/vnd.oma.cab-address-book+xml
|
|
888
|
+
# application/vnd.oma.cab-feature-handler+xml
|
|
889
|
+
# application/vnd.oma.cab-pcc+xml
|
|
890
|
+
# application/vnd.oma.cab-subs-invite+xml
|
|
891
|
+
# application/vnd.oma.cab-user-prefs+xml
|
|
892
|
+
# application/vnd.oma.dcd
|
|
893
|
+
# application/vnd.oma.dcdc
|
|
894
|
+
application/vnd.oma.dd2+xml dd2
|
|
895
|
+
# application/vnd.oma.drm.risd+xml
|
|
896
|
+
# application/vnd.oma.group-usage-list+xml
|
|
897
|
+
# application/vnd.oma.lwm2m+json
|
|
898
|
+
# application/vnd.oma.lwm2m+tlv
|
|
899
|
+
# application/vnd.oma.pal+xml
|
|
900
|
+
# application/vnd.oma.poc.detailed-progress-report+xml
|
|
901
|
+
# application/vnd.oma.poc.final-report+xml
|
|
902
|
+
# application/vnd.oma.poc.groups+xml
|
|
903
|
+
# application/vnd.oma.poc.invocation-descriptor+xml
|
|
904
|
+
# application/vnd.oma.poc.optimized-progress-report+xml
|
|
905
|
+
# application/vnd.oma.push
|
|
906
|
+
# application/vnd.oma.scidm.messages+xml
|
|
907
|
+
# application/vnd.oma.xcap-directory+xml
|
|
908
|
+
# application/vnd.omads-email+xml
|
|
909
|
+
# application/vnd.omads-file+xml
|
|
910
|
+
# application/vnd.omads-folder+xml
|
|
911
|
+
# application/vnd.omaloc-supl-init
|
|
912
|
+
# application/vnd.onepager
|
|
913
|
+
# application/vnd.openblox.game+xml
|
|
914
|
+
# application/vnd.openblox.game-binary
|
|
915
|
+
# application/vnd.openeye.oeb
|
|
916
|
+
application/vnd.openofficeorg.extension oxt
|
|
917
|
+
# application/vnd.openxmlformats-officedocument.custom-properties+xml
|
|
918
|
+
# application/vnd.openxmlformats-officedocument.customxmlproperties+xml
|
|
919
|
+
# application/vnd.openxmlformats-officedocument.drawing+xml
|
|
920
|
+
# application/vnd.openxmlformats-officedocument.drawingml.chart+xml
|
|
921
|
+
# application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
|
|
922
|
+
# application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml
|
|
923
|
+
# application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml
|
|
924
|
+
# application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml
|
|
925
|
+
# application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml
|
|
926
|
+
# application/vnd.openxmlformats-officedocument.extended-properties+xml
|
|
927
|
+
# application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml
|
|
928
|
+
# application/vnd.openxmlformats-officedocument.presentationml.comments+xml
|
|
929
|
+
# application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml
|
|
930
|
+
# application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml
|
|
931
|
+
# application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml
|
|
932
|
+
application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
|
|
933
|
+
# application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
|
|
934
|
+
# application/vnd.openxmlformats-officedocument.presentationml.presprops+xml
|
|
935
|
+
application/vnd.openxmlformats-officedocument.presentationml.slide sldx
|
|
936
|
+
# application/vnd.openxmlformats-officedocument.presentationml.slide+xml
|
|
937
|
+
# application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml
|
|
938
|
+
# application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml
|
|
939
|
+
application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
|
|
940
|
+
# application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
|
|
941
|
+
# application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml
|
|
942
|
+
# application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml
|
|
943
|
+
# application/vnd.openxmlformats-officedocument.presentationml.tags+xml
|
|
944
|
+
application/vnd.openxmlformats-officedocument.presentationml.template potx
|
|
945
|
+
# application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
|
|
946
|
+
# application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml
|
|
947
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml
|
|
948
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
|
|
949
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
|
|
950
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
|
|
951
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
|
|
952
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml
|
|
953
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml
|
|
954
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml
|
|
955
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml
|
|
956
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml
|
|
957
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml
|
|
958
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml
|
|
959
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml
|
|
960
|
+
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
|
|
961
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
|
|
962
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml
|
|
963
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
|
|
964
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
|
|
965
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml
|
|
966
|
+
application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
|
|
967
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
|
|
968
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml
|
|
969
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml
|
|
970
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
|
|
971
|
+
# application/vnd.openxmlformats-officedocument.theme+xml
|
|
972
|
+
# application/vnd.openxmlformats-officedocument.themeoverride+xml
|
|
973
|
+
# application/vnd.openxmlformats-officedocument.vmldrawing
|
|
974
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
|
|
975
|
+
application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
|
|
976
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
|
|
977
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
|
|
978
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
|
|
979
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml
|
|
980
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
|
|
981
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
|
|
982
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
|
|
983
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
|
|
984
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
|
|
985
|
+
application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
|
|
986
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
|
|
987
|
+
# application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml
|
|
988
|
+
# application/vnd.openxmlformats-package.core-properties+xml
|
|
989
|
+
# application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
|
|
990
|
+
# application/vnd.openxmlformats-package.relationships+xml
|
|
991
|
+
# application/vnd.oracle.resource+json
|
|
992
|
+
# application/vnd.orange.indata
|
|
993
|
+
# application/vnd.osa.netdeploy
|
|
994
|
+
application/vnd.osgeo.mapguide.package mgp
|
|
995
|
+
# application/vnd.osgi.bundle
|
|
996
|
+
application/vnd.osgi.dp dp
|
|
997
|
+
application/vnd.osgi.subsystem esa
|
|
998
|
+
# application/vnd.otps.ct-kip+xml
|
|
999
|
+
# application/vnd.oxli.countgraph
|
|
1000
|
+
# application/vnd.pagerduty+json
|
|
1001
|
+
application/vnd.palm pdb pqa oprc
|
|
1002
|
+
# application/vnd.panoply
|
|
1003
|
+
# application/vnd.paos.xml
|
|
1004
|
+
application/vnd.pawaafile paw
|
|
1005
|
+
# application/vnd.pcos
|
|
1006
|
+
application/vnd.pg.format str
|
|
1007
|
+
application/vnd.pg.osasli ei6
|
|
1008
|
+
# application/vnd.piaccess.application-licence
|
|
1009
|
+
application/vnd.picsel efif
|
|
1010
|
+
application/vnd.pmi.widget wg
|
|
1011
|
+
# application/vnd.poc.group-advertisement+xml
|
|
1012
|
+
application/vnd.pocketlearn plf
|
|
1013
|
+
application/vnd.powerbuilder6 pbd
|
|
1014
|
+
# application/vnd.powerbuilder6-s
|
|
1015
|
+
# application/vnd.powerbuilder7
|
|
1016
|
+
# application/vnd.powerbuilder7-s
|
|
1017
|
+
# application/vnd.powerbuilder75
|
|
1018
|
+
# application/vnd.powerbuilder75-s
|
|
1019
|
+
# application/vnd.preminet
|
|
1020
|
+
application/vnd.previewsystems.box box
|
|
1021
|
+
application/vnd.proteus.magazine mgz
|
|
1022
|
+
application/vnd.publishare-delta-tree qps
|
|
1023
|
+
application/vnd.pvi.ptid1 ptid
|
|
1024
|
+
# application/vnd.pwg-multiplexed
|
|
1025
|
+
# application/vnd.pwg-xhtml-print+xml
|
|
1026
|
+
# application/vnd.qualcomm.brew-app-res
|
|
1027
|
+
# application/vnd.quarantainenet
|
|
1028
|
+
application/vnd.quark.quarkxpress qxd qxt qwd qwt qxl qxb
|
|
1029
|
+
# application/vnd.quobject-quoxdocument
|
|
1030
|
+
# application/vnd.radisys.moml+xml
|
|
1031
|
+
# application/vnd.radisys.msml+xml
|
|
1032
|
+
# application/vnd.radisys.msml-audit+xml
|
|
1033
|
+
# application/vnd.radisys.msml-audit-conf+xml
|
|
1034
|
+
# application/vnd.radisys.msml-audit-conn+xml
|
|
1035
|
+
# application/vnd.radisys.msml-audit-dialog+xml
|
|
1036
|
+
# application/vnd.radisys.msml-audit-stream+xml
|
|
1037
|
+
# application/vnd.radisys.msml-conf+xml
|
|
1038
|
+
# application/vnd.radisys.msml-dialog+xml
|
|
1039
|
+
# application/vnd.radisys.msml-dialog-base+xml
|
|
1040
|
+
# application/vnd.radisys.msml-dialog-fax-detect+xml
|
|
1041
|
+
# application/vnd.radisys.msml-dialog-fax-sendrecv+xml
|
|
1042
|
+
# application/vnd.radisys.msml-dialog-group+xml
|
|
1043
|
+
# application/vnd.radisys.msml-dialog-speech+xml
|
|
1044
|
+
# application/vnd.radisys.msml-dialog-transform+xml
|
|
1045
|
+
# application/vnd.rainstor.data
|
|
1046
|
+
# application/vnd.rapid
|
|
1047
|
+
# application/vnd.rar
|
|
1048
|
+
application/vnd.realvnc.bed bed
|
|
1049
|
+
application/vnd.recordare.musicxml mxl
|
|
1050
|
+
application/vnd.recordare.musicxml+xml musicxml
|
|
1051
|
+
# application/vnd.renlearn.rlprint
|
|
1052
|
+
application/vnd.rig.cryptonote cryptonote
|
|
1053
|
+
application/vnd.rim.cod cod
|
|
1054
|
+
application/vnd.rn-realmedia rm
|
|
1055
|
+
application/vnd.rn-realmedia-vbr rmvb
|
|
1056
|
+
application/vnd.route66.link66+xml link66
|
|
1057
|
+
# application/vnd.rs-274x
|
|
1058
|
+
# application/vnd.ruckus.download
|
|
1059
|
+
# application/vnd.s3sms
|
|
1060
|
+
application/vnd.sailingtracker.track st
|
|
1061
|
+
# application/vnd.sbm.cid
|
|
1062
|
+
# application/vnd.sbm.mid2
|
|
1063
|
+
# application/vnd.scribus
|
|
1064
|
+
# application/vnd.sealed.3df
|
|
1065
|
+
# application/vnd.sealed.csf
|
|
1066
|
+
# application/vnd.sealed.doc
|
|
1067
|
+
# application/vnd.sealed.eml
|
|
1068
|
+
# application/vnd.sealed.mht
|
|
1069
|
+
# application/vnd.sealed.net
|
|
1070
|
+
# application/vnd.sealed.ppt
|
|
1071
|
+
# application/vnd.sealed.tiff
|
|
1072
|
+
# application/vnd.sealed.xls
|
|
1073
|
+
# application/vnd.sealedmedia.softseal.html
|
|
1074
|
+
# application/vnd.sealedmedia.softseal.pdf
|
|
1075
|
+
application/vnd.seemail see
|
|
1076
|
+
application/vnd.sema sema
|
|
1077
|
+
application/vnd.semd semd
|
|
1078
|
+
application/vnd.semf semf
|
|
1079
|
+
application/vnd.shana.informed.formdata ifm
|
|
1080
|
+
application/vnd.shana.informed.formtemplate itp
|
|
1081
|
+
application/vnd.shana.informed.interchange iif
|
|
1082
|
+
application/vnd.shana.informed.package ipk
|
|
1083
|
+
application/vnd.simtech-mindmapper twd twds
|
|
1084
|
+
# application/vnd.siren+json
|
|
1085
|
+
application/vnd.smaf mmf
|
|
1086
|
+
# application/vnd.smart.notebook
|
|
1087
|
+
application/vnd.smart.teacher teacher
|
|
1088
|
+
# application/vnd.software602.filler.form+xml
|
|
1089
|
+
# application/vnd.software602.filler.form-xml-zip
|
|
1090
|
+
application/vnd.solent.sdkm+xml sdkm sdkd
|
|
1091
|
+
application/vnd.spotfire.dxp dxp
|
|
1092
|
+
application/vnd.spotfire.sfs sfs
|
|
1093
|
+
# application/vnd.sss-cod
|
|
1094
|
+
# application/vnd.sss-dtf
|
|
1095
|
+
# application/vnd.sss-ntf
|
|
1096
|
+
application/vnd.stardivision.calc sdc
|
|
1097
|
+
application/vnd.stardivision.draw sda
|
|
1098
|
+
application/vnd.stardivision.impress sdd
|
|
1099
|
+
application/vnd.stardivision.math smf
|
|
1100
|
+
application/vnd.stardivision.writer sdw vor
|
|
1101
|
+
application/vnd.stardivision.writer-global sgl
|
|
1102
|
+
application/vnd.stepmania.package smzip
|
|
1103
|
+
application/vnd.stepmania.stepchart sm
|
|
1104
|
+
# application/vnd.street-stream
|
|
1105
|
+
# application/vnd.sun.wadl+xml
|
|
1106
|
+
application/vnd.sun.xml.calc sxc
|
|
1107
|
+
application/vnd.sun.xml.calc.template stc
|
|
1108
|
+
application/vnd.sun.xml.draw sxd
|
|
1109
|
+
application/vnd.sun.xml.draw.template std
|
|
1110
|
+
application/vnd.sun.xml.impress sxi
|
|
1111
|
+
application/vnd.sun.xml.impress.template sti
|
|
1112
|
+
application/vnd.sun.xml.math sxm
|
|
1113
|
+
application/vnd.sun.xml.writer sxw
|
|
1114
|
+
application/vnd.sun.xml.writer.global sxg
|
|
1115
|
+
application/vnd.sun.xml.writer.template stw
|
|
1116
|
+
application/vnd.sus-calendar sus susp
|
|
1117
|
+
application/vnd.svd svd
|
|
1118
|
+
# application/vnd.swiftview-ics
|
|
1119
|
+
application/vnd.symbian.install sis sisx
|
|
1120
|
+
application/vnd.syncml+xml xsm
|
|
1121
|
+
application/vnd.syncml.dm+wbxml bdm
|
|
1122
|
+
application/vnd.syncml.dm+xml xdm
|
|
1123
|
+
# application/vnd.syncml.dm.notification
|
|
1124
|
+
# application/vnd.syncml.dmddf+wbxml
|
|
1125
|
+
# application/vnd.syncml.dmddf+xml
|
|
1126
|
+
# application/vnd.syncml.dmtnds+wbxml
|
|
1127
|
+
# application/vnd.syncml.dmtnds+xml
|
|
1128
|
+
# application/vnd.syncml.ds.notification
|
|
1129
|
+
application/vnd.tao.intent-module-archive tao
|
|
1130
|
+
application/vnd.tcpdump.pcap pcap cap dmp
|
|
1131
|
+
# application/vnd.tmd.mediaflex.api+xml
|
|
1132
|
+
# application/vnd.tml
|
|
1133
|
+
application/vnd.tmobile-livetv tmo
|
|
1134
|
+
application/vnd.trid.tpt tpt
|
|
1135
|
+
application/vnd.triscape.mxs mxs
|
|
1136
|
+
application/vnd.trueapp tra
|
|
1137
|
+
# application/vnd.truedoc
|
|
1138
|
+
# application/vnd.ubisoft.webplayer
|
|
1139
|
+
application/vnd.ufdl ufd ufdl
|
|
1140
|
+
application/vnd.uiq.theme utz
|
|
1141
|
+
application/vnd.umajin umj
|
|
1142
|
+
application/vnd.unity unityweb
|
|
1143
|
+
application/vnd.uoml+xml uoml
|
|
1144
|
+
# application/vnd.uplanet.alert
|
|
1145
|
+
# application/vnd.uplanet.alert-wbxml
|
|
1146
|
+
# application/vnd.uplanet.bearer-choice
|
|
1147
|
+
# application/vnd.uplanet.bearer-choice-wbxml
|
|
1148
|
+
# application/vnd.uplanet.cacheop
|
|
1149
|
+
# application/vnd.uplanet.cacheop-wbxml
|
|
1150
|
+
# application/vnd.uplanet.channel
|
|
1151
|
+
# application/vnd.uplanet.channel-wbxml
|
|
1152
|
+
# application/vnd.uplanet.list
|
|
1153
|
+
# application/vnd.uplanet.list-wbxml
|
|
1154
|
+
# application/vnd.uplanet.listcmd
|
|
1155
|
+
# application/vnd.uplanet.listcmd-wbxml
|
|
1156
|
+
# application/vnd.uplanet.signal
|
|
1157
|
+
# application/vnd.uri-map
|
|
1158
|
+
# application/vnd.valve.source.material
|
|
1159
|
+
application/vnd.vcx vcx
|
|
1160
|
+
# application/vnd.vd-study
|
|
1161
|
+
# application/vnd.vectorworks
|
|
1162
|
+
# application/vnd.vel+json
|
|
1163
|
+
# application/vnd.verimatrix.vcas
|
|
1164
|
+
# application/vnd.vidsoft.vidconference
|
|
1165
|
+
application/vnd.visio vsd vst vss vsw
|
|
1166
|
+
application/vnd.visionary vis
|
|
1167
|
+
# application/vnd.vividence.scriptfile
|
|
1168
|
+
application/vnd.vsf vsf
|
|
1169
|
+
# application/vnd.wap.sic
|
|
1170
|
+
# application/vnd.wap.slc
|
|
1171
|
+
application/vnd.wap.wbxml wbxml
|
|
1172
|
+
application/vnd.wap.wmlc wmlc
|
|
1173
|
+
application/vnd.wap.wmlscriptc wmlsc
|
|
1174
|
+
application/vnd.webturbo wtb
|
|
1175
|
+
# application/vnd.wfa.p2p
|
|
1176
|
+
# application/vnd.wfa.wsc
|
|
1177
|
+
# application/vnd.windows.devicepairing
|
|
1178
|
+
# application/vnd.wmc
|
|
1179
|
+
# application/vnd.wmf.bootstrap
|
|
1180
|
+
# application/vnd.wolfram.mathematica
|
|
1181
|
+
# application/vnd.wolfram.mathematica.package
|
|
1182
|
+
application/vnd.wolfram.player nbp
|
|
1183
|
+
application/vnd.wordperfect wpd
|
|
1184
|
+
application/vnd.wqd wqd
|
|
1185
|
+
# application/vnd.wrq-hp3000-labelled
|
|
1186
|
+
application/vnd.wt.stf stf
|
|
1187
|
+
# application/vnd.wv.csp+wbxml
|
|
1188
|
+
# application/vnd.wv.csp+xml
|
|
1189
|
+
# application/vnd.wv.ssp+xml
|
|
1190
|
+
# application/vnd.xacml+json
|
|
1191
|
+
application/vnd.xara xar
|
|
1192
|
+
application/vnd.xfdl xfdl
|
|
1193
|
+
# application/vnd.xfdl.webform
|
|
1194
|
+
# application/vnd.xmi+xml
|
|
1195
|
+
# application/vnd.xmpie.cpkg
|
|
1196
|
+
# application/vnd.xmpie.dpkg
|
|
1197
|
+
# application/vnd.xmpie.plan
|
|
1198
|
+
# application/vnd.xmpie.ppkg
|
|
1199
|
+
# application/vnd.xmpie.xlim
|
|
1200
|
+
application/vnd.yamaha.hv-dic hvd
|
|
1201
|
+
application/vnd.yamaha.hv-script hvs
|
|
1202
|
+
application/vnd.yamaha.hv-voice hvp
|
|
1203
|
+
application/vnd.yamaha.openscoreformat osf
|
|
1204
|
+
application/vnd.yamaha.openscoreformat.osfpvg+xml osfpvg
|
|
1205
|
+
# application/vnd.yamaha.remote-setup
|
|
1206
|
+
application/vnd.yamaha.smaf-audio saf
|
|
1207
|
+
application/vnd.yamaha.smaf-phrase spf
|
|
1208
|
+
# application/vnd.yamaha.through-ngn
|
|
1209
|
+
# application/vnd.yamaha.tunnel-udpencap
|
|
1210
|
+
# application/vnd.yaoweme
|
|
1211
|
+
application/vnd.yellowriver-custom-menu cmp
|
|
1212
|
+
application/vnd.zul zir zirz
|
|
1213
|
+
application/vnd.zzazz.deck+xml zaz
|
|
1214
|
+
application/voicexml+xml vxml
|
|
1215
|
+
# application/vq-rtcpxr
|
|
1216
|
+
# application/watcherinfo+xml
|
|
1217
|
+
# application/whoispp-query
|
|
1218
|
+
# application/whoispp-response
|
|
1219
|
+
application/widget wgt
|
|
1220
|
+
application/winhlp hlp
|
|
1221
|
+
# application/wita
|
|
1222
|
+
# application/wordperfect5.1
|
|
1223
|
+
application/wsdl+xml wsdl
|
|
1224
|
+
application/wspolicy+xml wspolicy
|
|
1225
|
+
application/x-7z-compressed 7z
|
|
1226
|
+
application/x-abiword abw
|
|
1227
|
+
application/x-ace-compressed ace
|
|
1228
|
+
# application/x-amf
|
|
1229
|
+
application/x-apple-diskimage dmg
|
|
1230
|
+
application/x-authorware-bin aab x32 u32 vox
|
|
1231
|
+
application/x-authorware-map aam
|
|
1232
|
+
application/x-authorware-seg aas
|
|
1233
|
+
application/x-bcpio bcpio
|
|
1234
|
+
application/x-bittorrent torrent
|
|
1235
|
+
application/x-blorb blb blorb
|
|
1236
|
+
application/x-bzip bz
|
|
1237
|
+
application/x-bzip2 bz2 boz
|
|
1238
|
+
application/x-cbr cbr cba cbt cbz cb7
|
|
1239
|
+
application/x-cdlink vcd
|
|
1240
|
+
application/x-cfs-compressed cfs
|
|
1241
|
+
application/x-chat chat
|
|
1242
|
+
application/x-chess-pgn pgn
|
|
1243
|
+
# application/x-compress
|
|
1244
|
+
application/x-conference nsc
|
|
1245
|
+
application/x-cpio cpio
|
|
1246
|
+
application/x-csh csh
|
|
1247
|
+
application/x-debian-package deb udeb
|
|
1248
|
+
application/x-dgc-compressed dgc
|
|
1249
|
+
application/x-director dir dcr dxr cst cct cxt w3d fgd swa
|
|
1250
|
+
application/x-doom wad
|
|
1251
|
+
application/x-dtbncx+xml ncx
|
|
1252
|
+
application/x-dtbook+xml dtb
|
|
1253
|
+
application/x-dtbresource+xml res
|
|
1254
|
+
application/x-dvi dvi
|
|
1255
|
+
application/x-envoy evy
|
|
1256
|
+
application/x-eva eva
|
|
1257
|
+
application/x-font-bdf bdf
|
|
1258
|
+
# application/x-font-dos
|
|
1259
|
+
# application/x-font-framemaker
|
|
1260
|
+
application/x-font-ghostscript gsf
|
|
1261
|
+
# application/x-font-libgrx
|
|
1262
|
+
application/x-font-linux-psf psf
|
|
1263
|
+
application/x-font-pcf pcf
|
|
1264
|
+
application/x-font-snf snf
|
|
1265
|
+
# application/x-font-speedo
|
|
1266
|
+
# application/x-font-sunos-news
|
|
1267
|
+
application/x-font-type1 pfa pfb pfm afm
|
|
1268
|
+
# application/x-font-vfont
|
|
1269
|
+
application/x-freearc arc
|
|
1270
|
+
application/x-futuresplash spl
|
|
1271
|
+
application/x-gca-compressed gca
|
|
1272
|
+
application/x-glulx ulx
|
|
1273
|
+
application/x-gnumeric gnumeric
|
|
1274
|
+
application/x-gramps-xml gramps
|
|
1275
|
+
application/x-gtar gtar
|
|
1276
|
+
# application/x-gzip
|
|
1277
|
+
application/x-hdf hdf
|
|
1278
|
+
application/x-install-instructions install
|
|
1279
|
+
application/x-iso9660-image iso
|
|
1280
|
+
application/x-java-jnlp-file jnlp
|
|
1281
|
+
application/x-latex latex
|
|
1282
|
+
application/x-lzh-compressed lzh lha
|
|
1283
|
+
application/x-mie mie
|
|
1284
|
+
application/x-mobipocket-ebook prc mobi
|
|
1285
|
+
application/x-ms-application application
|
|
1286
|
+
application/x-ms-shortcut lnk
|
|
1287
|
+
application/x-ms-wmd wmd
|
|
1288
|
+
application/x-ms-wmz wmz
|
|
1289
|
+
application/x-ms-xbap xbap
|
|
1290
|
+
application/x-msaccess mdb
|
|
1291
|
+
application/x-msbinder obd
|
|
1292
|
+
application/x-mscardfile crd
|
|
1293
|
+
application/x-msclip clp
|
|
1294
|
+
application/x-msdownload exe dll com bat msi
|
|
1295
|
+
application/x-msmediaview mvb m13 m14
|
|
1296
|
+
application/x-msmetafile wmf wmz emf emz
|
|
1297
|
+
application/x-msmoney mny
|
|
1298
|
+
application/x-mspublisher pub
|
|
1299
|
+
application/x-msschedule scd
|
|
1300
|
+
application/x-msterminal trm
|
|
1301
|
+
application/x-mswrite wri
|
|
1302
|
+
application/x-netcdf nc cdf
|
|
1303
|
+
application/x-nzb nzb
|
|
1304
|
+
application/x-pkcs12 p12 pfx
|
|
1305
|
+
application/x-pkcs7-certificates p7b spc
|
|
1306
|
+
application/x-pkcs7-certreqresp p7r
|
|
1307
|
+
application/x-rar-compressed rar
|
|
1308
|
+
application/x-research-info-systems ris
|
|
1309
|
+
application/x-sh sh
|
|
1310
|
+
application/x-shar shar
|
|
1311
|
+
application/x-shockwave-flash swf
|
|
1312
|
+
application/x-silverlight-app xap
|
|
1313
|
+
application/x-sql sql
|
|
1314
|
+
application/x-stuffit sit
|
|
1315
|
+
application/x-stuffitx sitx
|
|
1316
|
+
application/x-subrip srt
|
|
1317
|
+
application/x-sv4cpio sv4cpio
|
|
1318
|
+
application/x-sv4crc sv4crc
|
|
1319
|
+
application/x-t3vm-image t3
|
|
1320
|
+
application/x-tads gam
|
|
1321
|
+
application/x-tar tar
|
|
1322
|
+
application/x-tcl tcl
|
|
1323
|
+
application/x-tex tex
|
|
1324
|
+
application/x-tex-tfm tfm
|
|
1325
|
+
application/x-texinfo texinfo texi
|
|
1326
|
+
application/x-tgif obj
|
|
1327
|
+
application/x-ustar ustar
|
|
1328
|
+
application/x-wais-source src
|
|
1329
|
+
# application/x-www-form-urlencoded
|
|
1330
|
+
application/x-x509-ca-cert der crt
|
|
1331
|
+
application/x-xfig fig
|
|
1332
|
+
application/x-xliff+xml xlf
|
|
1333
|
+
application/x-xpinstall xpi
|
|
1334
|
+
application/x-xz xz
|
|
1335
|
+
application/x-zmachine z1 z2 z3 z4 z5 z6 z7 z8
|
|
1336
|
+
# application/x400-bp
|
|
1337
|
+
# application/xacml+xml
|
|
1338
|
+
application/xaml+xml xaml
|
|
1339
|
+
# application/xcap-att+xml
|
|
1340
|
+
# application/xcap-caps+xml
|
|
1341
|
+
application/xcap-diff+xml xdf
|
|
1342
|
+
# application/xcap-el+xml
|
|
1343
|
+
# application/xcap-error+xml
|
|
1344
|
+
# application/xcap-ns+xml
|
|
1345
|
+
# application/xcon-conference-info+xml
|
|
1346
|
+
# application/xcon-conference-info-diff+xml
|
|
1347
|
+
application/xenc+xml xenc
|
|
1348
|
+
application/xhtml+xml xhtml xht
|
|
1349
|
+
# application/xhtml-voice+xml
|
|
1350
|
+
application/xml xml xsl
|
|
1351
|
+
application/xml-dtd dtd
|
|
1352
|
+
# application/xml-external-parsed-entity
|
|
1353
|
+
# application/xml-patch+xml
|
|
1354
|
+
# application/xmpp+xml
|
|
1355
|
+
application/xop+xml xop
|
|
1356
|
+
application/xproc+xml xpl
|
|
1357
|
+
application/xslt+xml xslt
|
|
1358
|
+
application/xspf+xml xspf
|
|
1359
|
+
application/xv+xml mxml xhvml xvml xvm
|
|
1360
|
+
application/yang yang
|
|
1361
|
+
application/yin+xml yin
|
|
1362
|
+
application/zip zip
|
|
1363
|
+
# application/zlib
|
|
1364
|
+
# audio/1d-interleaved-parityfec
|
|
1365
|
+
# audio/32kadpcm
|
|
1366
|
+
# audio/3gpp
|
|
1367
|
+
# audio/3gpp2
|
|
1368
|
+
# audio/ac3
|
|
1369
|
+
audio/adpcm adp
|
|
1370
|
+
# audio/amr
|
|
1371
|
+
# audio/amr-wb
|
|
1372
|
+
# audio/amr-wb+
|
|
1373
|
+
# audio/aptx
|
|
1374
|
+
# audio/asc
|
|
1375
|
+
# audio/atrac-advanced-lossless
|
|
1376
|
+
# audio/atrac-x
|
|
1377
|
+
# audio/atrac3
|
|
1378
|
+
audio/basic au snd
|
|
1379
|
+
# audio/bv16
|
|
1380
|
+
# audio/bv32
|
|
1381
|
+
# audio/clearmode
|
|
1382
|
+
# audio/cn
|
|
1383
|
+
# audio/dat12
|
|
1384
|
+
# audio/dls
|
|
1385
|
+
# audio/dsr-es201108
|
|
1386
|
+
# audio/dsr-es202050
|
|
1387
|
+
# audio/dsr-es202211
|
|
1388
|
+
# audio/dsr-es202212
|
|
1389
|
+
# audio/dv
|
|
1390
|
+
# audio/dvi4
|
|
1391
|
+
# audio/eac3
|
|
1392
|
+
# audio/encaprtp
|
|
1393
|
+
# audio/evrc
|
|
1394
|
+
# audio/evrc-qcp
|
|
1395
|
+
# audio/evrc0
|
|
1396
|
+
# audio/evrc1
|
|
1397
|
+
# audio/evrcb
|
|
1398
|
+
# audio/evrcb0
|
|
1399
|
+
# audio/evrcb1
|
|
1400
|
+
# audio/evrcnw
|
|
1401
|
+
# audio/evrcnw0
|
|
1402
|
+
# audio/evrcnw1
|
|
1403
|
+
# audio/evrcwb
|
|
1404
|
+
# audio/evrcwb0
|
|
1405
|
+
# audio/evrcwb1
|
|
1406
|
+
# audio/evs
|
|
1407
|
+
# audio/example
|
|
1408
|
+
# audio/fwdred
|
|
1409
|
+
# audio/g711-0
|
|
1410
|
+
# audio/g719
|
|
1411
|
+
# audio/g722
|
|
1412
|
+
# audio/g7221
|
|
1413
|
+
# audio/g723
|
|
1414
|
+
# audio/g726-16
|
|
1415
|
+
# audio/g726-24
|
|
1416
|
+
# audio/g726-32
|
|
1417
|
+
# audio/g726-40
|
|
1418
|
+
# audio/g728
|
|
1419
|
+
# audio/g729
|
|
1420
|
+
# audio/g7291
|
|
1421
|
+
# audio/g729d
|
|
1422
|
+
# audio/g729e
|
|
1423
|
+
# audio/gsm
|
|
1424
|
+
# audio/gsm-efr
|
|
1425
|
+
# audio/gsm-hr-08
|
|
1426
|
+
# audio/ilbc
|
|
1427
|
+
# audio/ip-mr_v2.5
|
|
1428
|
+
# audio/isac
|
|
1429
|
+
# audio/l16
|
|
1430
|
+
# audio/l20
|
|
1431
|
+
# audio/l24
|
|
1432
|
+
# audio/l8
|
|
1433
|
+
# audio/lpc
|
|
1434
|
+
audio/midi mid midi kar rmi
|
|
1435
|
+
# audio/mobile-xmf
|
|
1436
|
+
audio/mp4 m4a mp4a
|
|
1437
|
+
# audio/mp4a-latm
|
|
1438
|
+
# audio/mpa
|
|
1439
|
+
# audio/mpa-robust
|
|
1440
|
+
audio/mpeg mp3 mpga mp2 mp2a m2a m3a
|
|
1441
|
+
# audio/mpeg4-generic
|
|
1442
|
+
# audio/musepack
|
|
1443
|
+
audio/ogg ogg oga spx
|
|
1444
|
+
# audio/opus
|
|
1445
|
+
# audio/parityfec
|
|
1446
|
+
# audio/pcma
|
|
1447
|
+
# audio/pcma-wb
|
|
1448
|
+
# audio/pcmu
|
|
1449
|
+
# audio/pcmu-wb
|
|
1450
|
+
# audio/prs.sid
|
|
1451
|
+
# audio/qcelp
|
|
1452
|
+
# audio/raptorfec
|
|
1453
|
+
# audio/red
|
|
1454
|
+
# audio/rtp-enc-aescm128
|
|
1455
|
+
# audio/rtp-midi
|
|
1456
|
+
# audio/rtploopback
|
|
1457
|
+
# audio/rtx
|
|
1458
|
+
audio/s3m s3m
|
|
1459
|
+
audio/silk sil
|
|
1460
|
+
# audio/smv
|
|
1461
|
+
# audio/smv-qcp
|
|
1462
|
+
# audio/smv0
|
|
1463
|
+
# audio/sp-midi
|
|
1464
|
+
# audio/speex
|
|
1465
|
+
# audio/t140c
|
|
1466
|
+
# audio/t38
|
|
1467
|
+
# audio/telephone-event
|
|
1468
|
+
# audio/tone
|
|
1469
|
+
# audio/uemclip
|
|
1470
|
+
# audio/ulpfec
|
|
1471
|
+
# audio/vdvi
|
|
1472
|
+
# audio/vmr-wb
|
|
1473
|
+
# audio/vnd.3gpp.iufp
|
|
1474
|
+
# audio/vnd.4sb
|
|
1475
|
+
# audio/vnd.audiokoz
|
|
1476
|
+
# audio/vnd.celp
|
|
1477
|
+
# audio/vnd.cisco.nse
|
|
1478
|
+
# audio/vnd.cmles.radio-events
|
|
1479
|
+
# audio/vnd.cns.anp1
|
|
1480
|
+
# audio/vnd.cns.inf1
|
|
1481
|
+
audio/vnd.dece.audio uva uvva
|
|
1482
|
+
audio/vnd.digital-winds eol
|
|
1483
|
+
# audio/vnd.dlna.adts
|
|
1484
|
+
# audio/vnd.dolby.heaac.1
|
|
1485
|
+
# audio/vnd.dolby.heaac.2
|
|
1486
|
+
# audio/vnd.dolby.mlp
|
|
1487
|
+
# audio/vnd.dolby.mps
|
|
1488
|
+
# audio/vnd.dolby.pl2
|
|
1489
|
+
# audio/vnd.dolby.pl2x
|
|
1490
|
+
# audio/vnd.dolby.pl2z
|
|
1491
|
+
# audio/vnd.dolby.pulse.1
|
|
1492
|
+
audio/vnd.dra dra
|
|
1493
|
+
audio/vnd.dts dts
|
|
1494
|
+
audio/vnd.dts.hd dtshd
|
|
1495
|
+
# audio/vnd.dvb.file
|
|
1496
|
+
# audio/vnd.everad.plj
|
|
1497
|
+
# audio/vnd.hns.audio
|
|
1498
|
+
audio/vnd.lucent.voice lvp
|
|
1499
|
+
audio/vnd.ms-playready.media.pya pya
|
|
1500
|
+
# audio/vnd.nokia.mobile-xmf
|
|
1501
|
+
# audio/vnd.nortel.vbk
|
|
1502
|
+
audio/vnd.nuera.ecelp4800 ecelp4800
|
|
1503
|
+
audio/vnd.nuera.ecelp7470 ecelp7470
|
|
1504
|
+
audio/vnd.nuera.ecelp9600 ecelp9600
|
|
1505
|
+
# audio/vnd.octel.sbc
|
|
1506
|
+
# audio/vnd.qcelp
|
|
1507
|
+
# audio/vnd.rhetorex.32kadpcm
|
|
1508
|
+
audio/vnd.rip rip
|
|
1509
|
+
# audio/vnd.sealedmedia.softseal.mpeg
|
|
1510
|
+
# audio/vnd.vmx.cvsd
|
|
1511
|
+
# audio/vorbis
|
|
1512
|
+
# audio/vorbis-config
|
|
1513
|
+
audio/webm weba
|
|
1514
|
+
audio/x-aac aac
|
|
1515
|
+
audio/x-aiff aif aiff aifc
|
|
1516
|
+
audio/x-caf caf
|
|
1517
|
+
audio/x-flac flac
|
|
1518
|
+
audio/x-matroska mka
|
|
1519
|
+
audio/x-mpegurl m3u
|
|
1520
|
+
audio/x-ms-wax wax
|
|
1521
|
+
audio/x-ms-wma wma
|
|
1522
|
+
audio/x-pn-realaudio ram ra
|
|
1523
|
+
audio/x-pn-realaudio-plugin rmp
|
|
1524
|
+
# audio/x-tta
|
|
1525
|
+
audio/x-wav wav
|
|
1526
|
+
audio/xm xm
|
|
1527
|
+
chemical/x-cdx cdx
|
|
1528
|
+
chemical/x-cif cif
|
|
1529
|
+
chemical/x-cmdf cmdf
|
|
1530
|
+
chemical/x-cml cml
|
|
1531
|
+
chemical/x-csml csml
|
|
1532
|
+
# chemical/x-pdb
|
|
1533
|
+
chemical/x-xyz xyz
|
|
1534
|
+
font/collection ttc
|
|
1535
|
+
font/otf otf
|
|
1536
|
+
# font/sfnt
|
|
1537
|
+
font/ttf ttf
|
|
1538
|
+
font/woff woff
|
|
1539
|
+
font/woff2 woff2
|
|
1540
|
+
image/bmp bmp
|
|
1541
|
+
image/cgm cgm
|
|
1542
|
+
# image/dicom-rle
|
|
1543
|
+
# image/emf
|
|
1544
|
+
# image/example
|
|
1545
|
+
# image/fits
|
|
1546
|
+
image/g3fax g3
|
|
1547
|
+
image/gif gif
|
|
1548
|
+
image/ief ief
|
|
1549
|
+
# image/jls
|
|
1550
|
+
# image/jp2
|
|
1551
|
+
image/jpeg jpg jpeg jpe
|
|
1552
|
+
# image/jpm
|
|
1553
|
+
# image/jpx
|
|
1554
|
+
image/ktx ktx
|
|
1555
|
+
# image/naplps
|
|
1556
|
+
image/png png
|
|
1557
|
+
image/prs.btif btif
|
|
1558
|
+
# image/prs.pti
|
|
1559
|
+
# image/pwg-raster
|
|
1560
|
+
image/sgi sgi
|
|
1561
|
+
image/svg+xml svg svgz
|
|
1562
|
+
# image/t38
|
|
1563
|
+
image/tiff tiff tif
|
|
1564
|
+
# image/tiff-fx
|
|
1565
|
+
image/vnd.adobe.photoshop psd
|
|
1566
|
+
# image/vnd.airzip.accelerator.azv
|
|
1567
|
+
# image/vnd.cns.inf2
|
|
1568
|
+
image/vnd.dece.graphic uvi uvvi uvg uvvg
|
|
1569
|
+
image/vnd.djvu djvu djv
|
|
1570
|
+
image/vnd.dvb.subtitle sub
|
|
1571
|
+
image/vnd.dwg dwg
|
|
1572
|
+
image/vnd.dxf dxf
|
|
1573
|
+
image/vnd.fastbidsheet fbs
|
|
1574
|
+
image/vnd.fpx fpx
|
|
1575
|
+
image/vnd.fst fst
|
|
1576
|
+
image/vnd.fujixerox.edmics-mmr mmr
|
|
1577
|
+
image/vnd.fujixerox.edmics-rlc rlc
|
|
1578
|
+
# image/vnd.globalgraphics.pgb
|
|
1579
|
+
# image/vnd.microsoft.icon
|
|
1580
|
+
# image/vnd.mix
|
|
1581
|
+
# image/vnd.mozilla.apng
|
|
1582
|
+
image/vnd.ms-modi mdi
|
|
1583
|
+
image/vnd.ms-photo wdp
|
|
1584
|
+
image/vnd.net-fpx npx
|
|
1585
|
+
# image/vnd.radiance
|
|
1586
|
+
# image/vnd.sealed.png
|
|
1587
|
+
# image/vnd.sealedmedia.softseal.gif
|
|
1588
|
+
# image/vnd.sealedmedia.softseal.jpg
|
|
1589
|
+
# image/vnd.svf
|
|
1590
|
+
# image/vnd.tencent.tap
|
|
1591
|
+
# image/vnd.valve.source.texture
|
|
1592
|
+
image/vnd.wap.wbmp wbmp
|
|
1593
|
+
image/vnd.xiff xif
|
|
1594
|
+
# image/vnd.zbrush.pcx
|
|
1595
|
+
image/webp webp
|
|
1596
|
+
# image/wmf
|
|
1597
|
+
image/x-3ds 3ds
|
|
1598
|
+
image/x-cmu-raster ras
|
|
1599
|
+
image/x-cmx cmx
|
|
1600
|
+
image/x-freehand fh fhc fh4 fh5 fh7
|
|
1601
|
+
image/x-icon ico
|
|
1602
|
+
image/x-mrsid-image sid
|
|
1603
|
+
image/x-pcx pcx
|
|
1604
|
+
image/x-pict pic pct
|
|
1605
|
+
image/x-portable-anymap pnm
|
|
1606
|
+
image/x-portable-bitmap pbm
|
|
1607
|
+
image/x-portable-graymap pgm
|
|
1608
|
+
image/x-portable-pixmap ppm
|
|
1609
|
+
image/x-rgb rgb
|
|
1610
|
+
image/x-tga tga
|
|
1611
|
+
image/x-xbitmap xbm
|
|
1612
|
+
image/x-xpixmap xpm
|
|
1613
|
+
image/x-xwindowdump xwd
|
|
1614
|
+
# message/cpim
|
|
1615
|
+
# message/delivery-status
|
|
1616
|
+
# message/disposition-notification
|
|
1617
|
+
# message/example
|
|
1618
|
+
# message/external-body
|
|
1619
|
+
# message/feedback-report
|
|
1620
|
+
# message/global
|
|
1621
|
+
# message/global-delivery-status
|
|
1622
|
+
# message/global-disposition-notification
|
|
1623
|
+
# message/global-headers
|
|
1624
|
+
# message/http
|
|
1625
|
+
# message/imdn+xml
|
|
1626
|
+
# message/news
|
|
1627
|
+
# message/partial
|
|
1628
|
+
message/rfc822 eml mime
|
|
1629
|
+
# message/s-http
|
|
1630
|
+
# message/sip
|
|
1631
|
+
# message/sipfrag
|
|
1632
|
+
# message/tracking-status
|
|
1633
|
+
# message/vnd.si.simp
|
|
1634
|
+
# message/vnd.wfa.wsc
|
|
1635
|
+
# model/example
|
|
1636
|
+
# model/gltf+json
|
|
1637
|
+
model/iges igs iges
|
|
1638
|
+
model/mesh msh mesh silo
|
|
1639
|
+
model/vnd.collada+xml dae
|
|
1640
|
+
model/vnd.dwf dwf
|
|
1641
|
+
# model/vnd.flatland.3dml
|
|
1642
|
+
model/vnd.gdl gdl
|
|
1643
|
+
# model/vnd.gs-gdl
|
|
1644
|
+
# model/vnd.gs.gdl
|
|
1645
|
+
model/vnd.gtw gtw
|
|
1646
|
+
# model/vnd.moml+xml
|
|
1647
|
+
model/vnd.mts mts
|
|
1648
|
+
# model/vnd.opengex
|
|
1649
|
+
# model/vnd.parasolid.transmit.binary
|
|
1650
|
+
# model/vnd.parasolid.transmit.text
|
|
1651
|
+
# model/vnd.rosette.annotated-data-model
|
|
1652
|
+
# model/vnd.valve.source.compiled-map
|
|
1653
|
+
model/vnd.vtu vtu
|
|
1654
|
+
model/vrml wrl vrml
|
|
1655
|
+
model/x3d+binary x3db x3dbz
|
|
1656
|
+
# model/x3d+fastinfoset
|
|
1657
|
+
model/x3d+vrml x3dv x3dvz
|
|
1658
|
+
model/x3d+xml x3d x3dz
|
|
1659
|
+
# model/x3d-vrml
|
|
1660
|
+
# multipart/alternative
|
|
1661
|
+
# multipart/appledouble
|
|
1662
|
+
# multipart/byteranges
|
|
1663
|
+
# multipart/digest
|
|
1664
|
+
# multipart/encrypted
|
|
1665
|
+
# multipart/example
|
|
1666
|
+
# multipart/form-data
|
|
1667
|
+
# multipart/header-set
|
|
1668
|
+
# multipart/mixed
|
|
1669
|
+
# multipart/parallel
|
|
1670
|
+
# multipart/related
|
|
1671
|
+
# multipart/report
|
|
1672
|
+
# multipart/signed
|
|
1673
|
+
# multipart/voice-message
|
|
1674
|
+
# multipart/x-mixed-replace
|
|
1675
|
+
# text/1d-interleaved-parityfec
|
|
1676
|
+
text/cache-manifest appcache
|
|
1677
|
+
text/calendar ics ifb
|
|
1678
|
+
text/css css
|
|
1679
|
+
text/csv csv
|
|
1680
|
+
# text/csv-schema
|
|
1681
|
+
# text/directory
|
|
1682
|
+
# text/dns
|
|
1683
|
+
# text/ecmascript
|
|
1684
|
+
# text/encaprtp
|
|
1685
|
+
# text/enriched
|
|
1686
|
+
# text/example
|
|
1687
|
+
# text/fwdred
|
|
1688
|
+
# text/grammar-ref-list
|
|
1689
|
+
text/html html htm
|
|
1690
|
+
# text/javascript
|
|
1691
|
+
# text/jcr-cnd
|
|
1692
|
+
# text/markdown
|
|
1693
|
+
# text/mizar
|
|
1694
|
+
text/n3 n3
|
|
1695
|
+
# text/parameters
|
|
1696
|
+
# text/parityfec
|
|
1697
|
+
text/plain txt text conf def list log in
|
|
1698
|
+
# text/provenance-notation
|
|
1699
|
+
# text/prs.fallenstein.rst
|
|
1700
|
+
text/prs.lines.tag dsc
|
|
1701
|
+
# text/prs.prop.logic
|
|
1702
|
+
# text/raptorfec
|
|
1703
|
+
# text/red
|
|
1704
|
+
# text/rfc822-headers
|
|
1705
|
+
text/richtext rtx
|
|
1706
|
+
# text/rtf
|
|
1707
|
+
# text/rtp-enc-aescm128
|
|
1708
|
+
# text/rtploopback
|
|
1709
|
+
# text/rtx
|
|
1710
|
+
text/sgml sgml sgm
|
|
1711
|
+
# text/t140
|
|
1712
|
+
text/tab-separated-values tsv
|
|
1713
|
+
text/troff t tr roff man me ms
|
|
1714
|
+
text/turtle ttl
|
|
1715
|
+
# text/ulpfec
|
|
1716
|
+
text/uri-list uri uris urls
|
|
1717
|
+
text/vcard vcard
|
|
1718
|
+
# text/vnd.a
|
|
1719
|
+
# text/vnd.abc
|
|
1720
|
+
text/vnd.curl curl
|
|
1721
|
+
text/vnd.curl.dcurl dcurl
|
|
1722
|
+
text/vnd.curl.mcurl mcurl
|
|
1723
|
+
text/vnd.curl.scurl scurl
|
|
1724
|
+
# text/vnd.debian.copyright
|
|
1725
|
+
# text/vnd.dmclientscript
|
|
1726
|
+
text/vnd.dvb.subtitle sub
|
|
1727
|
+
# text/vnd.esmertec.theme-descriptor
|
|
1728
|
+
text/vnd.fly fly
|
|
1729
|
+
text/vnd.fmi.flexstor flx
|
|
1730
|
+
text/vnd.graphviz gv
|
|
1731
|
+
text/vnd.in3d.3dml 3dml
|
|
1732
|
+
text/vnd.in3d.spot spot
|
|
1733
|
+
# text/vnd.iptc.newsml
|
|
1734
|
+
# text/vnd.iptc.nitf
|
|
1735
|
+
# text/vnd.latex-z
|
|
1736
|
+
# text/vnd.motorola.reflex
|
|
1737
|
+
# text/vnd.ms-mediapackage
|
|
1738
|
+
# text/vnd.net2phone.commcenter.command
|
|
1739
|
+
# text/vnd.radisys.msml-basic-layout
|
|
1740
|
+
# text/vnd.si.uricatalogue
|
|
1741
|
+
text/vnd.sun.j2me.app-descriptor jad
|
|
1742
|
+
# text/vnd.trolltech.linguist
|
|
1743
|
+
# text/vnd.wap.si
|
|
1744
|
+
# text/vnd.wap.sl
|
|
1745
|
+
text/vnd.wap.wml wml
|
|
1746
|
+
text/vnd.wap.wmlscript wmls
|
|
1747
|
+
text/x-asm s asm
|
|
1748
|
+
text/x-c c cc cxx cpp h hh dic
|
|
1749
|
+
text/x-fortran f for f77 f90
|
|
1750
|
+
text/x-java-source java
|
|
1751
|
+
text/x-nfo nfo
|
|
1752
|
+
text/x-opml opml
|
|
1753
|
+
text/x-pascal p pas
|
|
1754
|
+
text/x-setext etx
|
|
1755
|
+
text/x-sfv sfv
|
|
1756
|
+
text/x-uuencode uu
|
|
1757
|
+
text/x-vcalendar vcs
|
|
1758
|
+
text/x-vcard vcf
|
|
1759
|
+
# text/xml
|
|
1760
|
+
# text/xml-external-parsed-entity
|
|
1761
|
+
# video/1d-interleaved-parityfec
|
|
1762
|
+
video/3gpp 3gp
|
|
1763
|
+
# video/3gpp-tt
|
|
1764
|
+
video/3gpp2 3g2
|
|
1765
|
+
# video/bmpeg
|
|
1766
|
+
# video/bt656
|
|
1767
|
+
# video/celb
|
|
1768
|
+
# video/dv
|
|
1769
|
+
# video/encaprtp
|
|
1770
|
+
# video/example
|
|
1771
|
+
video/h261 h261
|
|
1772
|
+
video/h263 h263
|
|
1773
|
+
# video/h263-1998
|
|
1774
|
+
# video/h263-2000
|
|
1775
|
+
video/h264 h264
|
|
1776
|
+
# video/h264-rcdo
|
|
1777
|
+
# video/h264-svc
|
|
1778
|
+
# video/h265
|
|
1779
|
+
# video/iso.segment
|
|
1780
|
+
video/jpeg jpgv
|
|
1781
|
+
# video/jpeg2000
|
|
1782
|
+
video/jpm jpm jpgm
|
|
1783
|
+
video/mj2 mj2 mjp2
|
|
1784
|
+
# video/mp1s
|
|
1785
|
+
# video/mp2p
|
|
1786
|
+
# video/mp2t
|
|
1787
|
+
video/mp4 mp4 mp4v mpg4
|
|
1788
|
+
# video/mp4v-es
|
|
1789
|
+
video/mpeg mpeg mpg mpe m1v m2v
|
|
1790
|
+
# video/mpeg4-generic
|
|
1791
|
+
# video/mpv
|
|
1792
|
+
# video/nv
|
|
1793
|
+
video/ogg ogv
|
|
1794
|
+
# video/parityfec
|
|
1795
|
+
# video/pointer
|
|
1796
|
+
video/quicktime qt mov
|
|
1797
|
+
# video/raptorfec
|
|
1798
|
+
# video/raw
|
|
1799
|
+
# video/rtp-enc-aescm128
|
|
1800
|
+
# video/rtploopback
|
|
1801
|
+
# video/rtx
|
|
1802
|
+
# video/smpte292m
|
|
1803
|
+
# video/ulpfec
|
|
1804
|
+
# video/vc1
|
|
1805
|
+
# video/vnd.cctv
|
|
1806
|
+
video/vnd.dece.hd uvh uvvh
|
|
1807
|
+
video/vnd.dece.mobile uvm uvvm
|
|
1808
|
+
# video/vnd.dece.mp4
|
|
1809
|
+
video/vnd.dece.pd uvp uvvp
|
|
1810
|
+
video/vnd.dece.sd uvs uvvs
|
|
1811
|
+
video/vnd.dece.video uvv uvvv
|
|
1812
|
+
# video/vnd.directv.mpeg
|
|
1813
|
+
# video/vnd.directv.mpeg-tts
|
|
1814
|
+
# video/vnd.dlna.mpeg-tts
|
|
1815
|
+
video/vnd.dvb.file dvb
|
|
1816
|
+
video/vnd.fvt fvt
|
|
1817
|
+
# video/vnd.hns.video
|
|
1818
|
+
# video/vnd.iptvforum.1dparityfec-1010
|
|
1819
|
+
# video/vnd.iptvforum.1dparityfec-2005
|
|
1820
|
+
# video/vnd.iptvforum.2dparityfec-1010
|
|
1821
|
+
# video/vnd.iptvforum.2dparityfec-2005
|
|
1822
|
+
# video/vnd.iptvforum.ttsavc
|
|
1823
|
+
# video/vnd.iptvforum.ttsmpeg2
|
|
1824
|
+
# video/vnd.motorola.video
|
|
1825
|
+
# video/vnd.motorola.videop
|
|
1826
|
+
video/vnd.mpegurl mxu m4u
|
|
1827
|
+
video/vnd.ms-playready.media.pyv pyv
|
|
1828
|
+
# video/vnd.nokia.interleaved-multimedia
|
|
1829
|
+
# video/vnd.nokia.videovoip
|
|
1830
|
+
# video/vnd.objectvideo
|
|
1831
|
+
# video/vnd.radgamettools.bink
|
|
1832
|
+
# video/vnd.radgamettools.smacker
|
|
1833
|
+
# video/vnd.sealed.mpeg1
|
|
1834
|
+
# video/vnd.sealed.mpeg4
|
|
1835
|
+
# video/vnd.sealed.swf
|
|
1836
|
+
# video/vnd.sealedmedia.softseal.mov
|
|
1837
|
+
video/vnd.uvvu.mp4 uvu uvvu
|
|
1838
|
+
video/vnd.vivo viv
|
|
1839
|
+
# video/vp8
|
|
1840
|
+
video/webm webm
|
|
1841
|
+
video/x-f4v f4v
|
|
1842
|
+
video/x-fli fli
|
|
1843
|
+
video/x-flv flv
|
|
1844
|
+
video/x-m4v m4v
|
|
1845
|
+
video/x-matroska mkv mk3d mks
|
|
1846
|
+
video/x-mng mng
|
|
1847
|
+
video/x-ms-asf asf asx
|
|
1848
|
+
video/x-ms-vob vob
|
|
1849
|
+
video/x-ms-wm wm
|
|
1850
|
+
video/x-ms-wmv wmv
|
|
1851
|
+
video/x-ms-wmx wmx
|
|
1852
|
+
video/x-ms-wvx wvx
|
|
1853
|
+
video/x-msvideo avi
|
|
1854
|
+
video/x-sgi-movie movie
|
|
1855
|
+
video/x-smv smv
|
|
1856
|
+
x-conference/x-cooltalk ice
|
|
1857
|
+
|
|
1858
|
+
# Telegram animated stickers
|
|
1859
|
+
application/x-bad-tgsticker tgs
|
|
1860
|
+
application/x-tgsticker tgs
|
|
1861
|
+
"""
|