func fmt.Sprintf

2732 uses

	fmt (current package)
		print.go#L237: func Sprintf(format string, a ...any) string {

	crypto/tls
		cipher_suites.go#L113: 	return fmt.Sprintf("0x%04X", id)
		common.go#L60: 		return fmt.Sprintf("0x%04X", version)
		common.go#L1061: 			panic(fmt.Sprintf("tls: unable to generate random session ticket key: %v", err))
		common.go#L1124: 			panic(fmt.Sprintf("unable to generate random session ticket key: %v", err))
		common.go#L1817: 	return fmt.Sprintf("tls: failed to verify certificate: %s", e.Err)
		conn.go#L660: 		msg := fmt.Sprintf("received record with version %x when expecting version %x", vers, expectedVers)
		conn.go#L674: 		msg := fmt.Sprintf("oversized record received with length %d", n)
		ech.go#L53: 	return fmt.Sprintf("tls: malformed ECHConfig, invalid %s field", e.field)
		quic.go#L35: 		return fmt.Sprintf("QUICEncryptionLevel(%v)", int(l))

	crypto/x509
		constraints.go#L437: 			return fmt.Sprintf("%s@%s", s.local, s.domain), true
		verify.go#L95: 			s = fmt.Sprintf("%s: %s", s, e.Detail)
		verify.go#L124: 			return fmt.Sprintf("x509: certificate is valid for %d IP SANs, but none matched %s", len(c.IPAddresses), h.Host)
		verify.go#L134: 			return fmt.Sprintf("x509: certificate is valid for %d names, but none matched %s", len(c.DNSNames), h.Host)
		verify.go#L167: 		s += fmt.Sprintf(" (possibly because of %q while trying to verify candidate authority certificate %q)", e.hintErr, certName)
		verify.go#L257: 	return fmt.Sprintf("%s@%s", s.local, s.domain)
		verify.go#L463: 			Detail: fmt.Sprintf("current time %s is before %s", now.Format(time.RFC3339), c.NotBefore.Format(time.RFC3339)),
		verify.go#L469: 			Detail: fmt.Sprintf("current time %s is after %s", now.Format(time.RFC3339), c.NotAfter.Format(time.RFC3339)),
		verify.go#L651: 			details = append(details, fmt.Sprintf("%d candidate chains with incompatible key usage", incompatibleKeyUsageChains))
		verify.go#L654: 			details = append(details, fmt.Sprintf("%d candidate chains with invalid policies", invalidPoliciesChains))
		verify.go#L1038: 		panic(fmt.Sprintf("OIDFromInts(%v) unexpected error: %v", ints, err))
		x509.go#L901: 	return fmt.Sprintf("x509: cannot verify signature: insecure algorithm %v", SignatureAlgorithm(e))

	encoding/asn1
		asn1.go#L673: 		err = SyntaxError{fmt.Sprintf("%s slice too big: %d elements of %d bytes", elemType.Kind(), numElements, elemSize)}
		asn1.go#L819: 		err = StructuralError{fmt.Sprintf("unknown Go type: %v", fieldType)}
		asn1.go#L887: 			err = StructuralError{fmt.Sprintf("tags don't match (%d vs %+v) %+v %s @%d", expectedTag, t, params, fieldType.Name(), offset)}
		asn1.go#L1025: 			err = SyntaxError{fmt.Sprintf("internal error: unknown string type %d", universalTag)}
		marshal.go#L626: 		return nil, StructuralError{fmt.Sprintf("unknown Go type: %v", v.Type())}

	encoding/hex
		hex.go#L73: 	return fmt.Sprintf("encoding/hex: invalid byte: %#U", rune(e))

	encoding/json
		encode.go#L775: 			e.error(&UnsupportedValueError{v, fmt.Sprintf("encountered a cycle via %s", v.Type())})
		encode.go#L858: 			e.error(&UnsupportedValueError{v, fmt.Sprintf("encountered a cycle via %s", v.Type())})
		encode.go#L914: 			e.error(&UnsupportedValueError{v, fmt.Sprintf("encountered a cycle via %s", v.Type())})

	github.com/andybalholm/brotli
		hash.go#L306: 	panic(fmt.Sprintf("unknown hasher type: %d", typ))

	github.com/andybalholm/brotli/matchfinder
		textencoder.go#L19: 			dst = append(dst, []byte(fmt.Sprintf("<%d,%d>", m.Length, m.Distance))...)

	github.com/coder/websocket
		close.go#L71: 	return fmt.Sprintf("status = %v and reason = %q", ce.Code, ce.Reason)

	github.com/go-faster/errors
		format.go#L46: 	return &errorString{fmt.Sprintf(format, a...), Caller(1)}
		wrap.go#L95: 	msg := fmt.Sprintf(format, a...)

	github.com/go-faster/jx
		dec_error.go#L12: 	return fmt.Sprintf("unexpected byte %d %q at %d", e.Token, e.Token, e.Offset)

	github.com/gotd/td/bin
		errors.go#L12: 	return fmt.Sprintf("invalid %s length: %d", i.Where, i.Length)
		errors.go#L21: 	return fmt.Sprintf("unexpected id %#x", e.ID)

	github.com/gotd/td/crypto
		key.go#L125: 	return fmt.Sprintf("Key(id: %x)", a.ID)

	github.com/gotd/td/exchange
		server_flow.go#L60: 	return fmt.Sprintf("unexpected encrypted message (auth key id %x) during key exchange", e.AuthKeyID)

	github.com/gotd/td/mt
		tl_bad_msg_notification_gen.go#L83: 	return fmt.Sprintf("BadMsgNotification%+v", Alias(*b))
		tl_bad_msg_notification_gen.go#L263: 	return fmt.Sprintf("BadServerSalt%+v", Alias(*b))
		tl_client_d_h_inner_data_gen.go#L83: 	return fmt.Sprintf("ClientDHInnerData%+v", Alias(*c))
		tl_destroy_session_gen.go#L68: 	return fmt.Sprintf("DestroySessionRequest%+v", Alias(*d))
		tl_destroy_session_res_gen.go#L73: 	return fmt.Sprintf("DestroySessionOk%+v", Alias(*d))
		tl_destroy_session_res_gen.go#L198: 	return fmt.Sprintf("DestroySessionNone%+v", Alias(*d))
		tl_future_salt_gen.go#L78: 	return fmt.Sprintf("FutureSalt%+v", Alias(*f))
		tl_future_salts_gen.go#L78: 	return fmt.Sprintf("FutureSalts%+v", Alias(*f))
		tl_get_future_salts_gen.go#L68: 	return fmt.Sprintf("GetFutureSaltsRequest%+v", Alias(*g))
		tl_gzip_packed_gen.go#L68: 	return fmt.Sprintf("GzipPacked%+v", Alias(*g))
		tl_http_wait_gen.go#L78: 	return fmt.Sprintf("HTTPWaitRequest%+v", Alias(*h))
		tl_message_gen.go#L83: 	return fmt.Sprintf("Message%+v", Alias(*m))
		tl_msg_container_gen.go#L68: 	return fmt.Sprintf("MsgContainer%+v", Alias(*m))
		tl_msg_copy_gen.go#L68: 	return fmt.Sprintf("MsgCopy%+v", Alias(*m))
		tl_msg_detailed_info_gen.go#L88: 	return fmt.Sprintf("MsgDetailedInfo%+v", Alias(*m))
		tl_msg_detailed_info_gen.go#L283: 	return fmt.Sprintf("MsgNewDetailedInfo%+v", Alias(*m))
		tl_msg_resend_req_gen.go#L68: 	return fmt.Sprintf("MsgResendReq%+v", Alias(*m))
		tl_msgs_ack_gen.go#L68: 	return fmt.Sprintf("MsgsAck%+v", Alias(*m))
		tl_msgs_all_info_gen.go#L73: 	return fmt.Sprintf("MsgsAllInfo%+v", Alias(*m))
		tl_msgs_state_info_gen.go#L73: 	return fmt.Sprintf("MsgsStateInfo%+v", Alias(*m))
		tl_msgs_state_req_gen.go#L68: 	return fmt.Sprintf("MsgsStateReq%+v", Alias(*m))
		tl_new_session_created_gen.go#L78: 	return fmt.Sprintf("NewSessionCreated%+v", Alias(*n))
		tl_p_q_inner_data_gen.go#L98: 	return fmt.Sprintf("PQInnerData%+v", Alias(*p))
		tl_p_q_inner_data_gen.go#L353: 	return fmt.Sprintf("PQInnerDataDC%+v", Alias(*p))
		tl_p_q_inner_data_gen.go#L633: 	return fmt.Sprintf("PQInnerDataTempDC%+v", Alias(*p))
		tl_ping_delay_disconnect_gen.go#L73: 	return fmt.Sprintf("PingDelayDisconnectRequest%+v", Alias(*p))
		tl_ping_gen.go#L68: 	return fmt.Sprintf("PingRequest%+v", Alias(*p))
		tl_pong_gen.go#L73: 	return fmt.Sprintf("Pong%+v", Alias(*p))
		tl_req_d_h_params_gen.go#L93: 	return fmt.Sprintf("ReqDHParamsRequest%+v", Alias(*r))
		tl_req_pq_gen.go#L68: 	return fmt.Sprintf("ReqPqRequest%+v", Alias(*r))
		tl_req_pq_multi_gen.go#L68: 	return fmt.Sprintf("ReqPqMultiRequest%+v", Alias(*r))
		tl_res_p_q_gen.go#L83: 	return fmt.Sprintf("ResPQ%+v", Alias(*r))
		tl_rpc_drop_answer_const_gen.go#L68: 	return fmt.Sprintf("RPCDropAnswerRequest%+v", Alias(*r))
		tl_rpc_drop_answer_gen.go#L68: 	return fmt.Sprintf("RPCAnswerUnknown%+v", Alias(*r))
		tl_rpc_drop_answer_gen.go#L167: 	return fmt.Sprintf("RPCAnswerDroppedRunning%+v", Alias(*r))
		tl_rpc_drop_answer_gen.go#L281: 	return fmt.Sprintf("RPCAnswerDropped%+v", Alias(*r))
		tl_rpc_error_gen.go#L73: 	return fmt.Sprintf("RPCError%+v", Alias(*r))
		tl_rpc_result_gen.go#L73: 	return fmt.Sprintf("RPCResult%+v", Alias(*r))
		tl_server_d_h_inner_data_gen.go#L93: 	return fmt.Sprintf("ServerDHInnerData%+v", Alias(*s))
		tl_server_d_h_params_gen.go#L83: 	return fmt.Sprintf("ServerDHParamsFail%+v", Alias(*s))
		tl_server_d_h_params_gen.go#L258: 	return fmt.Sprintf("ServerDHParamsOk%+v", Alias(*s))
		tl_set_client_d_h_params_answer_gen.go#L83: 	return fmt.Sprintf("DhGenOk%+v", Alias(*d))
		tl_set_client_d_h_params_answer_gen.go#L258: 	return fmt.Sprintf("DhGenRetry%+v", Alias(*d))
		tl_set_client_d_h_params_answer_gen.go#L433: 	return fmt.Sprintf("DhGenFail%+v", Alias(*d))
		tl_set_client_d_h_params_gen.go#L78: 	return fmt.Sprintf("SetClientDHParamsRequest%+v", Alias(*s))

	github.com/gotd/td/mtproto
		handle_bad_msg.go#L38: 		return fmt.Sprintf("bad msg error code %d", c.Code)
		zap.go#L18: 	attrs := []log.Attr{log.String("type_id", fmt.Sprintf("0x%x", l.ID))}

	github.com/gotd/td/proto
		gzip.go#L136: 	return fmt.Sprintf("payload too big (expanded %d bytes to greater than %d)",
		message_id.go#L43: 	return fmt.Sprintf("%x (%s, %s)",

	github.com/gotd/td/proto/codec
		errors.go#L40: 		return fmt.Sprintf("protocol error %d", p.Code)
		errors.go#L83: 	return fmt.Sprintf("payload is not aligned, expected align by %d", e.expected)
		errors.go#L96: 	return fmt.Sprintf("invalid message length %d", e.n)

	github.com/gotd/td/rpc
		errors.go#L16: 	return fmt.Sprintf("retry limit reached after %d attempts", r.Retries)

	github.com/gotd/td/session/tdesktop
		errors.go#L17: 	return fmt.Sprintf("wrong magic %+v", w.Magic)
		tdesktop.go#L50: 			keyFile = fileKey(fmt.Sprintf("data#%d", account+1))

	github.com/gotd/td/tdjson
		errors.go#L15: 	return fmt.Sprintf("unexpected id %s", e.ID)

	github.com/gotd/td/telegram
		handle_updates.go#L44: 		c.log.Warn(c.ctx, "Ignoring update", log.String("update_type", fmt.Sprintf("%T", u)))
		invoke.go#L36: 				attribute.String("tg.method.id", fmt.Sprintf("%x", id)),
		invoke.go#L40: 				name = fmt.Sprintf("0x%x", id)
		invoke.go#L44: 			spanName = fmt.Sprintf("Invoke: %s", name)
		session.go#L49: 		log.String("key_id", fmt.Sprintf("%x", data.AuthKeyID)),
		session.go#L96: 		log.String("key_id", fmt.Sprintf("%x", data.AuthKeyID)),

	github.com/gotd/td/telegram/auth
		flow.go#L322: 	phone := fmt.Sprintf("99966%d%04d", dc, n)
		password.go#L145: 	return fmt.Sprintf("wait to reset password (%s)", r.Until())

	github.com/gotd/td/telegram/auth/qrlogin
		errors.go#L22: 	return fmt.Sprintf("migration to %d needed", m.MigrateTo.DCID)

	github.com/gotd/td/tg
		tl_access_point_rule_gen.go#L80: 	return fmt.Sprintf("AccessPointRule%+v", Alias(*a))
		tl_account_accept_authorization_gen.go#L92: 	return fmt.Sprintf("AccountAcceptAuthorizationRequest%+v", Alias(*a))
		tl_account_authorization_form_gen.go#L113: 	return fmt.Sprintf("AccountAuthorizationForm%+v", Alias(*a))
		tl_account_authorizations_gen.go#L76: 	return fmt.Sprintf("AccountAuthorizations%+v", Alias(*a))
		tl_account_auto_download_settings_gen.go#L81: 	return fmt.Sprintf("AccountAutoDownloadSettings%+v", Alias(*a))
		tl_account_auto_save_settings_gen.go#L102: 	return fmt.Sprintf("AccountAutoSaveSettings%+v", Alias(*a))
		tl_account_business_chat_links_gen.go#L84: 	return fmt.Sprintf("AccountBusinessChatLinks%+v", Alias(*b))
		tl_account_cancel_password_email_gen.go#L69: 	return fmt.Sprintf("AccountCancelPasswordEmailRequest%+v", Alias(*c))
		tl_account_change_authorization_settings_gen.go#L108: 	return fmt.Sprintf("AccountChangeAuthorizationSettingsRequest%+v", Alias(*c))
		tl_account_change_phone_gen.go#L87: 	return fmt.Sprintf("AccountChangePhoneRequest%+v", Alias(*c))
		tl_account_chat_themes_gen.go#L71: 	return fmt.Sprintf("AccountChatThemesNotModified%+v", Alias(*c))
		tl_account_chat_themes_gen.go#L212: 	return fmt.Sprintf("AccountChatThemes%+v", Alias(*c))
		tl_account_check_username_gen.go#L72: 	return fmt.Sprintf("AccountCheckUsernameRequest%+v", Alias(*c))
		tl_account_clear_recent_emoji_statuses_gen.go#L69: 	return fmt.Sprintf("AccountClearRecentEmojiStatusesRequest%+v", Alias(*c))
		tl_account_confirm_bot_connection_gen.go#L70: 	return fmt.Sprintf("AccountConfirmBotConnectionRequest%+v", Alias(*c))
		tl_account_confirm_password_email_gen.go#L77: 	return fmt.Sprintf("AccountConfirmPasswordEmailRequest%+v", Alias(*c))
		tl_account_confirm_phone_gen.go#L85: 	return fmt.Sprintf("AccountConfirmPhoneRequest%+v", Alias(*c))
		tl_account_connected_bots_gen.go#L79: 	return fmt.Sprintf("AccountConnectedBots%+v", Alias(*c))
		tl_account_content_settings_gen.go#L85: 	return fmt.Sprintf("AccountContentSettings%+v", Alias(*c))
		tl_account_create_business_chat_link_gen.go#L74: 	return fmt.Sprintf("AccountCreateBusinessChatLinkRequest%+v", Alias(*c))
		tl_account_create_theme_gen.go#L103: 	return fmt.Sprintf("AccountCreateThemeRequest%+v", Alias(*c))
		tl_account_days_ttl_gen.go#L71: 	return fmt.Sprintf("AccountDaysTTL%+v", Alias(*a))
		tl_account_decline_password_reset_gen.go#L69: 	return fmt.Sprintf("AccountDeclinePasswordResetRequest%+v", Alias(*d))
		tl_account_delete_account_gen.go#L98: 	return fmt.Sprintf("AccountDeleteAccountRequest%+v", Alias(*d))
		tl_account_delete_auto_save_exceptions_gen.go#L66: 	return fmt.Sprintf("AccountDeleteAutoSaveExceptionsRequest%+v", Alias(*d))
		tl_account_delete_business_chat_link_gen.go#L77: 	return fmt.Sprintf("AccountDeleteBusinessChatLinkRequest%+v", Alias(*d))
		tl_account_delete_passkey_gen.go#L79: 	return fmt.Sprintf("AccountDeletePasskeyRequest%+v", Alias(*d))
		tl_account_delete_secure_value_gen.go#L75: 	return fmt.Sprintf("AccountDeleteSecureValueRequest%+v", Alias(*d))
		tl_account_delete_web_browser_settings_exceptions_gen.go#L65: 	return fmt.Sprintf("AccountDeleteWebBrowserSettingsExceptionsRequest%+v", Alias(*d))
		tl_account_disable_peer_connected_bot_gen.go#L79: 	return fmt.Sprintf("AccountDisablePeerConnectedBotRequest%+v", Alias(*d))
		tl_account_edit_business_chat_link_gen.go#L82: 	return fmt.Sprintf("AccountEditBusinessChatLinkRequest%+v", Alias(*e))
		tl_account_email_verified_gen.go#L76: 	return fmt.Sprintf("AccountEmailVerified%+v", Alias(*e))
		tl_account_email_verified_gen.go#L219: 	return fmt.Sprintf("AccountEmailVerifiedLogin%+v", Alias(*e))
		tl_account_emoji_statuses_gen.go#L74: 	return fmt.Sprintf("AccountEmojiStatusesNotModified%+v", Alias(*e))
		tl_account_emoji_statuses_gen.go#L195: 	return fmt.Sprintf("AccountEmojiStatuses%+v", Alias(*e))
		tl_account_finish_takeout_session_gen.go#L82: 	return fmt.Sprintf("AccountFinishTakeoutSessionRequest%+v", Alias(*f))
		tl_account_get_account_ttl_gen.go#L66: 	return fmt.Sprintf("AccountGetAccountTTLRequest%+v", Alias(*g))
		tl_account_get_all_secure_values_gen.go#L70: 	return fmt.Sprintf("AccountGetAllSecureValuesRequest%+v", Alias(*g))
		tl_account_get_authorization_form_gen.go#L81: 	return fmt.Sprintf("AccountGetAuthorizationFormRequest%+v", Alias(*g))
		tl_account_get_authorizations_gen.go#L66: 	return fmt.Sprintf("AccountGetAuthorizationsRequest%+v", Alias(*g))
		tl_account_get_auto_download_settings_gen.go#L66: 	return fmt.Sprintf("AccountGetAutoDownloadSettingsRequest%+v", Alias(*g))
		tl_account_get_auto_save_settings_gen.go#L66: 	return fmt.Sprintf("AccountGetAutoSaveSettingsRequest%+v", Alias(*g))
		tl_account_get_bot_business_connection_gen.go#L95: 	return fmt.Sprintf("AccountGetBotBusinessConnectionRequest%+v", Alias(*g))
		tl_account_get_business_chat_links_gen.go#L69: 	return fmt.Sprintf("AccountGetBusinessChatLinksRequest%+v", Alias(*g))
		tl_account_get_channel_default_emoji_statuses_gen.go#L77: 	return fmt.Sprintf("AccountGetChannelDefaultEmojiStatusesRequest%+v", Alias(*g))
		tl_account_get_channel_restricted_status_emojis_gen.go#L79: 	return fmt.Sprintf("AccountGetChannelRestrictedStatusEmojisRequest%+v", Alias(*g))
		tl_account_get_chat_themes_gen.go#L77: 	return fmt.Sprintf("AccountGetChatThemesRequest%+v", Alias(*g))
		tl_account_get_collectible_emoji_statuses_gen.go#L78: 	return fmt.Sprintf("AccountGetCollectibleEmojiStatusesRequest%+v", Alias(*g))
		tl_account_get_connected_bots_gen.go#L69: 	return fmt.Sprintf("AccountGetConnectedBotsRequest%+v", Alias(*g))
		tl_account_get_contact_sign_up_notification_gen.go#L66: 	return fmt.Sprintf("AccountGetContactSignUpNotificationRequest%+v", Alias(*g))
		tl_account_get_content_settings_gen.go#L66: 	return fmt.Sprintf("AccountGetContentSettingsRequest%+v", Alias(*g))
		tl_account_get_default_background_emojis_gen.go#L79: 	return fmt.Sprintf("AccountGetDefaultBackgroundEmojisRequest%+v", Alias(*g))
		tl_account_get_default_emoji_statuses_gen.go#L77: 	return fmt.Sprintf("AccountGetDefaultEmojiStatusesRequest%+v", Alias(*g))
		tl_account_get_default_group_photo_emojis_gen.go#L78: 	return fmt.Sprintf("AccountGetDefaultGroupPhotoEmojisRequest%+v", Alias(*g))
		tl_account_get_default_profile_photo_emojis_gen.go#L78: 	return fmt.Sprintf("AccountGetDefaultProfilePhotoEmojisRequest%+v", Alias(*g))
		tl_account_get_global_privacy_settings_gen.go#L66: 	return fmt.Sprintf("AccountGetGlobalPrivacySettingsRequest%+v", Alias(*g))
		tl_account_get_multi_wall_papers_gen.go#L77: 	return fmt.Sprintf("AccountGetMultiWallPapersRequest%+v", Alias(*g))
		tl_account_get_notify_exceptions_gen.go#L91: 	return fmt.Sprintf("AccountGetNotifyExceptionsRequest%+v", Alias(*g))
		tl_account_get_notify_settings_gen.go#L71: 	return fmt.Sprintf("AccountGetNotifySettingsRequest%+v", Alias(*g))
		tl_account_get_paid_messages_revenue_gen.go#L96: 	return fmt.Sprintf("AccountGetPaidMessagesRevenueRequest%+v", Alias(*g))
		tl_account_get_passkeys_gen.go#L70: 	return fmt.Sprintf("AccountGetPasskeysRequest%+v", Alias(*g))
		tl_account_get_password_gen.go#L66: 	return fmt.Sprintf("AccountGetPasswordRequest%+v", Alias(*g))
		tl_account_get_password_settings_gen.go#L78: 	return fmt.Sprintf("AccountGetPasswordSettingsRequest%+v", Alias(*g))
		tl_account_get_privacy_gen.go#L71: 	return fmt.Sprintf("AccountGetPrivacyRequest%+v", Alias(*g))
		tl_account_get_reactions_notify_settings_gen.go#L69: 	return fmt.Sprintf("AccountGetReactionsNotifySettingsRequest%+v", Alias(*g))
		tl_account_get_recent_emoji_statuses_gen.go#L77: 	return fmt.Sprintf("AccountGetRecentEmojiStatusesRequest%+v", Alias(*g))
		tl_account_get_saved_music_ids_gen.go#L78: 	return fmt.Sprintf("AccountGetSavedMusicIDsRequest%+v", Alias(*g))
		tl_account_get_saved_ringtones_gen.go#L74: 	return fmt.Sprintf("AccountGetSavedRingtonesRequest%+v", Alias(*g))
		tl_account_get_secure_value_gen.go#L75: 	return fmt.Sprintf("AccountGetSecureValueRequest%+v", Alias(*g))
		tl_account_get_theme_gen.go#L76: 	return fmt.Sprintf("AccountGetThemeRequest%+v", Alias(*g))
		tl_account_get_themes_gen.go#L79: 	return fmt.Sprintf("AccountGetThemesRequest%+v", Alias(*g))
		tl_account_get_tmp_password_gen.go#L77: 	return fmt.Sprintf("AccountGetTmpPasswordRequest%+v", Alias(*g))
		tl_account_get_unique_gift_chat_themes_gen.go#L99: 	return fmt.Sprintf("AccountGetUniqueGiftChatThemesRequest%+v", Alias(*g))
		tl_account_get_wall_paper_gen.go#L77: 	return fmt.Sprintf("AccountGetWallPaperRequest%+v", Alias(*g))
		tl_account_get_wall_papers_gen.go#L77: 	return fmt.Sprintf("AccountGetWallPapersRequest%+v", Alias(*g))
		tl_account_get_web_authorizations_gen.go#L69: 	return fmt.Sprintf("AccountGetWebAuthorizationsRequest%+v", Alias(*g))
		tl_account_get_web_browser_settings_gen.go#L70: 	return fmt.Sprintf("AccountGetWebBrowserSettingsRequest%+v", Alias(*g))
		tl_account_init_passkey_registration_gen.go#L70: 	return fmt.Sprintf("AccountInitPasskeyRegistrationRequest%+v", Alias(*i))
		tl_account_init_takeout_session_gen.go#L123: 	return fmt.Sprintf("AccountInitTakeoutSessionRequest%+v", Alias(*i))
		tl_account_install_theme_gen.go#L100: 	return fmt.Sprintf("AccountInstallThemeRequest%+v", Alias(*i))
		tl_account_install_wall_paper_gen.go#L85: 	return fmt.Sprintf("AccountInstallWallPaperRequest%+v", Alias(*i))
		tl_account_invalidate_sign_in_codes_gen.go#L74: 	return fmt.Sprintf("AccountInvalidateSignInCodesRequest%+v", Alias(*i))
		tl_account_paid_messages_revenue_gen.go#L79: 	return fmt.Sprintf("AccountPaidMessagesRevenue%+v", Alias(*p))
		tl_account_passkey_registration_options_gen.go#L78: 	return fmt.Sprintf("AccountPasskeyRegistrationOptions%+v", Alias(*p))
		tl_account_passkeys_gen.go#L74: 	return fmt.Sprintf("AccountPasskeys%+v", Alias(*p))
		tl_account_password_gen.go#L181: 	return fmt.Sprintf("AccountPassword%+v", Alias(*p))
		tl_account_password_input_settings_gen.go#L118: 	return fmt.Sprintf("AccountPasswordInputSettings%+v", Alias(*p))
		tl_account_password_settings_gen.go#L98: 	return fmt.Sprintf("AccountPasswordSettings%+v", Alias(*p))
		tl_account_privacy_rules_gen.go#L81: 	return fmt.Sprintf("AccountPrivacyRules%+v", Alias(*p))
		tl_account_register_device_gen.go#L117: 	return fmt.Sprintf("AccountRegisterDeviceRequest%+v", Alias(*r))
		tl_account_register_passkey_gen.go#L75: 	return fmt.Sprintf("AccountRegisterPasskeyRequest%+v", Alias(*r))
		tl_account_reorder_usernames_gen.go#L71: 	return fmt.Sprintf("AccountReorderUsernamesRequest%+v", Alias(*r))
		tl_account_report_peer_gen.go#L81: 	return fmt.Sprintf("AccountReportPeerRequest%+v", Alias(*r))
		tl_account_report_profile_photo_gen.go#L86: 	return fmt.Sprintf("AccountReportProfilePhotoRequest%+v", Alias(*r))
		tl_account_resend_password_email_gen.go#L69: 	return fmt.Sprintf("AccountResendPasswordEmailRequest%+v", Alias(*r))
		tl_account_reset_authorization_gen.go#L74: 	return fmt.Sprintf("AccountResetAuthorizationRequest%+v", Alias(*r))
		tl_account_reset_notify_settings_gen.go#L66: 	return fmt.Sprintf("AccountResetNotifySettingsRequest%+v", Alias(*r))
		tl_account_reset_password_gen.go#L70: 	return fmt.Sprintf("AccountResetPasswordRequest%+v", Alias(*r))
		tl_account_reset_password_result_gen.go#L77: 	return fmt.Sprintf("AccountResetPasswordFailedWait%+v", Alias(*r))
		tl_account_reset_password_result_gen.go#L213: 	return fmt.Sprintf("AccountResetPasswordRequestedWait%+v", Alias(*r))
		tl_account_reset_password_result_gen.go#L343: 	return fmt.Sprintf("AccountResetPasswordOk%+v", Alias(*r))
		tl_account_reset_wall_papers_gen.go#L69: 	return fmt.Sprintf("AccountResetWallPapersRequest%+v", Alias(*r))
		tl_account_reset_web_authorization_gen.go#L77: 	return fmt.Sprintf("AccountResetWebAuthorizationRequest%+v", Alias(*r))
		tl_account_reset_web_authorizations_gen.go#L69: 	return fmt.Sprintf("AccountResetWebAuthorizationsRequest%+v", Alias(*r))
		tl_account_resolve_business_chat_link_gen.go#L77: 	return fmt.Sprintf("AccountResolveBusinessChatLinkRequest%+v", Alias(*r))
		tl_account_resolved_business_chat_links_gen.go#L107: 	return fmt.Sprintf("AccountResolvedBusinessChatLinks%+v", Alias(*r))
		tl_account_save_auto_download_settings_gen.go#L89: 	return fmt.Sprintf("AccountSaveAutoDownloadSettingsRequest%+v", Alias(*s))
		tl_account_save_auto_save_settings_gen.go#L104: 	return fmt.Sprintf("AccountSaveAutoSaveSettingsRequest%+v", Alias(*s))
		tl_account_save_music_gen.go#L98: 	return fmt.Sprintf("AccountSaveMusicRequest%+v", Alias(*s))
		tl_account_save_ringtone_gen.go#L90: 	return fmt.Sprintf("AccountSaveRingtoneRequest%+v", Alias(*s))
		tl_account_save_secure_value_gen.go#L86: 	return fmt.Sprintf("AccountSaveSecureValueRequest%+v", Alias(*s))
		tl_account_save_theme_gen.go#L76: 	return fmt.Sprintf("AccountSaveThemeRequest%+v", Alias(*s))
		tl_account_save_wall_paper_gen.go#L87: 	return fmt.Sprintf("AccountSaveWallPaperRequest%+v", Alias(*s))
		tl_account_saved_music_ids_gen.go#L75: 	return fmt.Sprintf("AccountSavedMusicIDsNotModified%+v", Alias(*s))
		tl_account_saved_music_ids_gen.go#L190: 	return fmt.Sprintf("AccountSavedMusicIDs%+v", Alias(*s))
		tl_account_saved_ringtone_gen.go#L72: 	return fmt.Sprintf("AccountSavedRingtone%+v", Alias(*s))
		tl_account_saved_ringtone_gen.go#L183: 	return fmt.Sprintf("AccountSavedRingtoneConverted%+v", Alias(*s))
		tl_account_saved_ringtones_gen.go#L71: 	return fmt.Sprintf("AccountSavedRingtonesNotModified%+v", Alias(*s))
		tl_account_saved_ringtones_gen.go#L186: 	return fmt.Sprintf("AccountSavedRingtones%+v", Alias(*s))
		tl_account_send_change_phone_code_gen.go#L76: 	return fmt.Sprintf("AccountSendChangePhoneCodeRequest%+v", Alias(*s))
		tl_account_send_confirm_phone_code_gen.go#L82: 	return fmt.Sprintf("AccountSendConfirmPhoneCodeRequest%+v", Alias(*s))
		tl_account_send_verify_email_code_gen.go#L76: 	return fmt.Sprintf("AccountSendVerifyEmailCodeRequest%+v", Alias(*s))
		tl_account_send_verify_phone_code_gen.go#L79: 	return fmt.Sprintf("AccountSendVerifyPhoneCodeRequest%+v", Alias(*s))
		tl_account_sent_email_code_gen.go#L79: 	return fmt.Sprintf("AccountSentEmailCode%+v", Alias(*s))
		tl_account_set_account_ttl_gen.go#L71: 	return fmt.Sprintf("AccountSetAccountTTLRequest%+v", Alias(*s))
		tl_account_set_authorization_ttl_gen.go#L71: 	return fmt.Sprintf("AccountSetAuthorizationTTLRequest%+v", Alias(*s))
		tl_account_set_contact_sign_up_notification_gen.go#L71: 	return fmt.Sprintf("AccountSetContactSignUpNotificationRequest%+v", Alias(*s))
		tl_account_set_content_settings_gen.go#L79: 	return fmt.Sprintf("AccountSetContentSettingsRequest%+v", Alias(*s))
		tl_account_set_global_privacy_settings_gen.go#L71: 	return fmt.Sprintf("AccountSetGlobalPrivacySettingsRequest%+v", Alias(*s))
		tl_account_set_main_profile_tab_gen.go#L74: 	return fmt.Sprintf("AccountSetMainProfileTabRequest%+v", Alias(*s))
		tl_account_set_privacy_gen.go#L76: 	return fmt.Sprintf("AccountSetPrivacyRequest%+v", Alias(*s))
		tl_account_set_reactions_notify_settings_gen.go#L74: 	return fmt.Sprintf("AccountSetReactionsNotifySettingsRequest%+v", Alias(*s))
		tl_account_takeout_gen.go#L71: 	return fmt.Sprintf("AccountTakeout%+v", Alias(*t))
		tl_account_themes_gen.go#L71: 	return fmt.Sprintf("AccountThemesNotModified%+v", Alias(*t))
		tl_account_themes_gen.go#L186: 	return fmt.Sprintf("AccountThemes%+v", Alias(*t))
		tl_account_tmp_password_gen.go#L76: 	return fmt.Sprintf("AccountTmpPassword%+v", Alias(*t))
		tl_account_toggle_connected_bot_paused_gen.go#L80: 	return fmt.Sprintf("AccountToggleConnectedBotPausedRequest%+v", Alias(*t))
		tl_account_toggle_no_paid_messages_exception_gen.go#L111: 	return fmt.Sprintf("AccountToggleNoPaidMessagesExceptionRequest%+v", Alias(*t))
		tl_account_toggle_sponsored_messages_gen.go#L77: 	return fmt.Sprintf("AccountToggleSponsoredMessagesRequest%+v", Alias(*t))
		tl_account_toggle_username_gen.go#L80: 	return fmt.Sprintf("AccountToggleUsernameRequest%+v", Alias(*t))
		tl_account_toggle_web_browser_settings_exception_gen.go#L87: 	return fmt.Sprintf("AccountToggleWebBrowserSettingsExceptionRequest%+v", Alias(*t))
		tl_account_unregister_device_gen.go#L87: 	return fmt.Sprintf("AccountUnregisterDeviceRequest%+v", Alias(*u))
		tl_account_update_birthday_gen.go#L84: 	return fmt.Sprintf("AccountUpdateBirthdayRequest%+v", Alias(*u))
		tl_account_update_business_away_message_gen.go#L84: 	return fmt.Sprintf("AccountUpdateBusinessAwayMessageRequest%+v", Alias(*u))
		tl_account_update_business_greeting_message_gen.go#L84: 	return fmt.Sprintf("AccountUpdateBusinessGreetingMessageRequest%+v", Alias(*u))
		tl_account_update_business_intro_gen.go#L84: 	return fmt.Sprintf("AccountUpdateBusinessIntroRequest%+v", Alias(*u))
		tl_account_update_business_location_gen.go#L96: 	return fmt.Sprintf("AccountUpdateBusinessLocationRequest%+v", Alias(*u))
		tl_account_update_business_work_hours_gen.go#L91: 	return fmt.Sprintf("AccountUpdateBusinessWorkHoursRequest%+v", Alias(*u))
		tl_account_update_color_gen.go#L94: 	return fmt.Sprintf("AccountUpdateColorRequest%+v", Alias(*u))
		tl_account_update_connected_bot_gen.go#L100: 	return fmt.Sprintf("AccountUpdateConnectedBotRequest%+v", Alias(*u))
		tl_account_update_device_locked_gen.go#L78: 	return fmt.Sprintf("AccountUpdateDeviceLockedRequest%+v", Alias(*u))
		tl_account_update_emoji_status_gen.go#L77: 	return fmt.Sprintf("AccountUpdateEmojiStatusRequest%+v", Alias(*u))
		tl_account_update_notify_settings_gen.go#L76: 	return fmt.Sprintf("AccountUpdateNotifySettingsRequest%+v", Alias(*u))
		tl_account_update_password_settings_gen.go#L82: 	return fmt.Sprintf("AccountUpdatePasswordSettingsRequest%+v", Alias(*u))
		tl_account_update_personal_channel_gen.go#L81: 	return fmt.Sprintf("AccountUpdatePersonalChannelRequest%+v", Alias(*u))
		tl_account_update_profile_gen.go#L95: 	return fmt.Sprintf("AccountUpdateProfileRequest%+v", Alias(*u))
		tl_account_update_status_gen.go#L75: 	return fmt.Sprintf("AccountUpdateStatusRequest%+v", Alias(*u))
		tl_account_update_theme_gen.go#L112: 	return fmt.Sprintf("AccountUpdateThemeRequest%+v", Alias(*u))
		tl_account_update_username_gen.go#L72: 	return fmt.Sprintf("AccountUpdateUsernameRequest%+v", Alias(*u))
		tl_account_update_web_browser_settings_gen.go#L80: 	return fmt.Sprintf("AccountUpdateWebBrowserSettingsRequest%+v", Alias(*u))
		tl_account_upload_ringtone_gen.go#L85: 	return fmt.Sprintf("AccountUploadRingtoneRequest%+v", Alias(*u))
		tl_account_upload_theme_gen.go#L100: 	return fmt.Sprintf("AccountUploadThemeRequest%+v", Alias(*u))
		tl_account_upload_wall_paper_gen.go#L100: 	return fmt.Sprintf("AccountUploadWallPaperRequest%+v", Alias(*u))
		tl_account_verify_email_gen.go#L76: 	return fmt.Sprintf("AccountVerifyEmailRequest%+v", Alias(*v))
		tl_account_verify_phone_gen.go#L90: 	return fmt.Sprintf("AccountVerifyPhoneRequest%+v", Alias(*v))
		tl_account_wall_papers_gen.go#L74: 	return fmt.Sprintf("AccountWallPapersNotModified%+v", Alias(*w))
		tl_account_wall_papers_gen.go#L195: 	return fmt.Sprintf("AccountWallPapers%+v", Alias(*w))
		tl_account_web_authorizations_gen.go#L76: 	return fmt.Sprintf("AccountWebAuthorizations%+v", Alias(*w))
		tl_account_web_browser_settings_gen.go#L70: 	return fmt.Sprintf("AccountWebBrowserSettingsNotModified%+v", Alias(*w))
		tl_account_web_browser_settings_gen.go#L201: 	return fmt.Sprintf("AccountWebBrowserSettings%+v", Alias(*w))
		tl_ai_compose_tone_example_gen.go#L75: 	return fmt.Sprintf("AiComposeToneExample%+v", Alias(*a))
		tl_ai_compose_tone_gen.go#L135: 	return fmt.Sprintf("AiComposeTone%+v", Alias(*a))
		tl_ai_compose_tone_gen.go#L593: 	return fmt.Sprintf("AiComposeToneDefault%+v", Alias(*a))
		tl_aicompose_create_tone_gen.go#L90: 	return fmt.Sprintf("AicomposeCreateToneRequest%+v", Alias(*c))
		tl_aicompose_delete_tone_gen.go#L70: 	return fmt.Sprintf("AicomposeDeleteToneRequest%+v", Alias(*d))
		tl_aicompose_get_tone_example_gen.go#L75: 	return fmt.Sprintf("AicomposeGetToneExampleRequest%+v", Alias(*g))
		tl_aicompose_get_tone_gen.go#L70: 	return fmt.Sprintf("AicomposeGetToneRequest%+v", Alias(*g))
		tl_aicompose_get_tones_gen.go#L70: 	return fmt.Sprintf("AicomposeGetTonesRequest%+v", Alias(*g))
		tl_aicompose_save_tone_gen.go#L75: 	return fmt.Sprintf("AicomposeSaveToneRequest%+v", Alias(*s))
		tl_aicompose_tones_gen.go#L70: 	return fmt.Sprintf("AicomposeTonesNotModified%+v", Alias(*t))
		tl_aicompose_tones_gen.go#L186: 	return fmt.Sprintf("AicomposeTones%+v", Alias(*t))
		tl_aicompose_update_tone_gen.go#L103: 	return fmt.Sprintf("AicomposeUpdateToneRequest%+v", Alias(*u))
		tl_attach_menu_bot_gen.go#L145: 	return fmt.Sprintf("AttachMenuBot%+v", Alias(*a))
		tl_attach_menu_bot_icon_color_gen.go#L82: 	return fmt.Sprintf("AttachMenuBotIconColor%+v", Alias(*a))
		tl_attach_menu_bot_icon_gen.go#L104: 	return fmt.Sprintf("AttachMenuBotIcon%+v", Alias(*a))
		tl_attach_menu_bots_bot_gen.go#L82: 	return fmt.Sprintf("AttachMenuBotsBot%+v", Alias(*a))
		tl_attach_menu_bots_gen.go#L71: 	return fmt.Sprintf("AttachMenuBotsNotModified%+v", Alias(*a))
		tl_attach_menu_bots_gen.go#L197: 	return fmt.Sprintf("AttachMenuBots%+v", Alias(*a))
		tl_attach_menu_peer_type_gen.go#L71: 	return fmt.Sprintf("AttachMenuPeerTypeSameBotPM%+v", Alias(*a))
		tl_attach_menu_peer_type_gen.go#L174: 	return fmt.Sprintf("AttachMenuPeerTypeBotPM%+v", Alias(*a))
		tl_attach_menu_peer_type_gen.go#L277: 	return fmt.Sprintf("AttachMenuPeerTypePM%+v", Alias(*a))
		tl_attach_menu_peer_type_gen.go#L382: 	return fmt.Sprintf("AttachMenuPeerTypeChat%+v", Alias(*a))
		tl_attach_menu_peer_type_gen.go#L484: 	return fmt.Sprintf("AttachMenuPeerTypeBroadcast%+v", Alias(*a))
		tl_auction_bid_level_gen.go#L87: 	return fmt.Sprintf("AuctionBidLevel%+v", Alias(*a))
		tl_auth_accept_login_token_gen.go#L79: 	return fmt.Sprintf("AuthAcceptLoginTokenRequest%+v", Alias(*a))
		tl_auth_authorization_gen.go#L118: 	return fmt.Sprintf("AuthAuthorization%+v", Alias(*a))
		tl_auth_authorization_gen.go#L439: 	return fmt.Sprintf("AuthAuthorizationSignUpRequired%+v", Alias(*a))
		tl_auth_bind_temp_auth_key_gen.go#L101: 	return fmt.Sprintf("AuthBindTempAuthKeyRequest%+v", Alias(*b))
		tl_auth_cancel_code_gen.go#L79: 	return fmt.Sprintf("AuthCancelCodeRequest%+v", Alias(*c))
		tl_auth_check_paid_auth_gen.go#L90: 	return fmt.Sprintf("AuthCheckPaidAuthRequest%+v", Alias(*c))
		tl_auth_check_password_gen.go#L77: 	return fmt.Sprintf("AuthCheckPasswordRequest%+v", Alias(*c))
		tl_auth_check_recovery_password_gen.go#L77: 	return fmt.Sprintf("AuthCheckRecoveryPasswordRequest%+v", Alias(*c))
		tl_auth_code_type_gen.go#L72: 	return fmt.Sprintf("AuthCodeTypeSMS%+v", Alias(*c))
		tl_auth_code_type_gen.go#L174: 	return fmt.Sprintf("AuthCodeTypeCall%+v", Alias(*c))
		tl_auth_code_type_gen.go#L277: 	return fmt.Sprintf("AuthCodeTypeFlashCall%+v", Alias(*c))
		tl_auth_code_type_gen.go#L380: 	return fmt.Sprintf("AuthCodeTypeMissedCall%+v", Alias(*c))
		tl_auth_code_type_gen.go#L485: 	return fmt.Sprintf("AuthCodeTypeFragmentSMS%+v", Alias(*c))
		tl_auth_drop_temp_auth_keys_gen.go#L71: 	return fmt.Sprintf("AuthDropTempAuthKeysRequest%+v", Alias(*d))
		tl_auth_export_authorization_gen.go#L71: 	return fmt.Sprintf("AuthExportAuthorizationRequest%+v", Alias(*e))
		tl_auth_export_login_token_gen.go#L95: 	return fmt.Sprintf("AuthExportLoginTokenRequest%+v", Alias(*e))
		tl_auth_exported_authorization_gen.go#L76: 	return fmt.Sprintf("AuthExportedAuthorization%+v", Alias(*e))
		tl_auth_finish_passkey_login_gen.go#L110: 	return fmt.Sprintf("AuthFinishPasskeyLoginRequest%+v", Alias(*f))
		tl_auth_import_authorization_gen.go#L76: 	return fmt.Sprintf("AuthImportAuthorizationRequest%+v", Alias(*i))
		tl_auth_import_bot_authorization_gen.go#L95: 	return fmt.Sprintf("AuthImportBotAuthorizationRequest%+v", Alias(*i))
		tl_auth_import_login_token_gen.go#L77: 	return fmt.Sprintf("AuthImportLoginTokenRequest%+v", Alias(*i))
		tl_auth_import_web_token_authorization_gen.go#L87: 	return fmt.Sprintf("AuthImportWebTokenAuthorizationRequest%+v", Alias(*i))
		tl_auth_init_passkey_login_gen.go#L86: 	return fmt.Sprintf("AuthInitPasskeyLoginRequest%+v", Alias(*i))
		tl_auth_log_out_gen.go#L66: 	return fmt.Sprintf("AuthLogOutRequest%+v", Alias(*l))
		tl_auth_logged_out_gen.go#L87: 	return fmt.Sprintf("AuthLoggedOut%+v", Alias(*l))
		tl_auth_login_token_gen.go#L84: 	return fmt.Sprintf("AuthLoginToken%+v", Alias(*l))
		tl_auth_login_token_gen.go#L246: 	return fmt.Sprintf("AuthLoginTokenMigrateTo%+v", Alias(*l))
		tl_auth_login_token_gen.go#L403: 	return fmt.Sprintf("AuthLoginTokenSuccess%+v", Alias(*l))
		tl_auth_passkey_login_options_gen.go#L78: 	return fmt.Sprintf("AuthPasskeyLoginOptions%+v", Alias(*p))
		tl_auth_password_recovery_gen.go#L79: 	return fmt.Sprintf("AuthPasswordRecovery%+v", Alias(*p))
		tl_auth_recover_password_gen.go#L91: 	return fmt.Sprintf("AuthRecoverPasswordRequest%+v", Alias(*r))
		tl_auth_report_missing_code_gen.go#L87: 	return fmt.Sprintf("AuthReportMissingCodeRequest%+v", Alias(*r))
		tl_auth_request_firebase_sms_gen.go#L114: 	return fmt.Sprintf("AuthRequestFirebaseSMSRequest%+v", Alias(*r))
		tl_auth_request_password_recovery_gen.go#L71: 	return fmt.Sprintf("AuthRequestPasswordRecoveryRequest%+v", Alias(*r))
		tl_auth_resend_code_gen.go#L103: 	return fmt.Sprintf("AuthResendCodeRequest%+v", Alias(*r))
		tl_auth_reset_authorizations_gen.go#L71: 	return fmt.Sprintf("AuthResetAuthorizationsRequest%+v", Alias(*r))
		tl_auth_reset_login_email_gen.go#L82: 	return fmt.Sprintf("AuthResetLoginEmailRequest%+v", Alias(*r))
		tl_auth_send_code_gen.go#L92: 	return fmt.Sprintf("AuthSendCodeRequest%+v", Alias(*s))
		tl_auth_sent_code_gen.go#L110: 	return fmt.Sprintf("AuthSentCode%+v", Alias(*s))
		tl_auth_sent_code_gen.go#L375: 	return fmt.Sprintf("AuthSentCodeSuccess%+v", Alias(*s))
		tl_auth_sent_code_gen.go#L564: 	return fmt.Sprintf("AuthSentCodePaymentRequired%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L76: 	return fmt.Sprintf("AuthSentCodeTypeApp%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L211: 	return fmt.Sprintf("AuthSentCodeTypeSMS%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L347: 	return fmt.Sprintf("AuthSentCodeTypeCall%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L487: 	return fmt.Sprintf("AuthSentCodeTypeFlashCall%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L629: 	return fmt.Sprintf("AuthSentCodeTypeMissedCall%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L834: 	return fmt.Sprintf("AuthSentCodeTypeEmailCode%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L1163: 	return fmt.Sprintf("AuthSentCodeTypeSetUpEmailRequired%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L1361: 	return fmt.Sprintf("AuthSentCodeTypeFragmentSMS%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L1574: 	return fmt.Sprintf("AuthSentCodeTypeFirebaseSMS%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L1939: 	return fmt.Sprintf("AuthSentCodeTypeSMSWord%+v", Alias(*s))
		tl_auth_sent_code_type_gen.go#L2117: 	return fmt.Sprintf("AuthSentCodeTypeSMSPhrase%+v", Alias(*s))
		tl_auth_sign_in_gen.go#L101: 	return fmt.Sprintf("AuthSignInRequest%+v", Alias(*s))
		tl_auth_sign_up_gen.go#L100: 	return fmt.Sprintf("AuthSignUpRequest%+v", Alias(*s))
		tl_authorization_gen.go#L170: 	return fmt.Sprintf("Authorization%+v", Alias(*a))
		tl_auto_download_settings_gen.go#L136: 	return fmt.Sprintf("AutoDownloadSettings%+v", Alias(*a))
		tl_auto_save_exception_gen.go#L76: 	return fmt.Sprintf("AutoSaveException%+v", Alias(*a))
		tl_auto_save_settings_gen.go#L91: 	return fmt.Sprintf("AutoSaveSettings%+v", Alias(*a))
		tl_available_effect_gen.go#L134: 	return fmt.Sprintf("AvailableEffect%+v", Alias(*a))
		tl_available_reaction_gen.go#L136: 	return fmt.Sprintf("AvailableReaction%+v", Alias(*a))
		tl_bank_card_open_url_gen.go#L76: 	return fmt.Sprintf("BankCardOpenURL%+v", Alias(*b))
		tl_base_theme_gen.go#L71: 	return fmt.Sprintf("BaseThemeClassic%+v", Alias(*b))
		tl_base_theme_gen.go#L173: 	return fmt.Sprintf("BaseThemeDay%+v", Alias(*b))
		tl_base_theme_gen.go#L275: 	return fmt.Sprintf("BaseThemeNight%+v", Alias(*b))
		tl_base_theme_gen.go#L377: 	return fmt.Sprintf("BaseThemeTinted%+v", Alias(*b))
		tl_base_theme_gen.go#L479: 	return fmt.Sprintf("BaseThemeArctic%+v", Alias(*b))
		tl_birthday_gen.go#L97: 	return fmt.Sprintf("Birthday%+v", Alias(*b))
		tl_bool_gen.go#L71: 	return fmt.Sprintf("BoolFalse%+v", Alias(*b))
		tl_bool_gen.go#L173: 	return fmt.Sprintf("BoolTrue%+v", Alias(*b))
		tl_boost_gen.go#L160: 	return fmt.Sprintf("Boost%+v", Alias(*b))
		tl_bot_app_gen.go#L71: 	return fmt.Sprintf("BotAppNotModified%+v", Alias(*b))
		tl_bot_app_gen.go#L233: 	return fmt.Sprintf("BotApp%+v", Alias(*b))
		tl_bot_app_settings_gen.go#L115: 	return fmt.Sprintf("BotAppSettings%+v", Alias(*b))
		tl_bot_business_connection_gen.go#L118: 	return fmt.Sprintf("BotBusinessConnection%+v", Alias(*b))
		tl_bot_command_gen.go#L76: 	return fmt.Sprintf("BotCommand%+v", Alias(*b))
		tl_bot_command_scope_gen.go#L71: 	return fmt.Sprintf("BotCommandScopeDefault%+v", Alias(*b))
		tl_bot_command_scope_gen.go#L173: 	return fmt.Sprintf("BotCommandScopeUsers%+v", Alias(*b))
		tl_bot_command_scope_gen.go#L278: 	return fmt.Sprintf("BotCommandScopeChats%+v", Alias(*b))
		tl_bot_command_scope_gen.go#L384: 	return fmt.Sprintf("BotCommandScopeChatAdmins%+v", Alias(*b))
		tl_bot_command_scope_gen.go#L491: 	return fmt.Sprintf("BotCommandScopePeer%+v", Alias(*b))
		tl_bot_command_scope_gen.go#L635: 	return fmt.Sprintf("BotCommandScopePeerAdmins%+v", Alias(*b))
		tl_bot_command_scope_gen.go#L784: 	return fmt.Sprintf("BotCommandScopePeerUser%+v", Alias(*b))
		tl_bot_command_vector_gen.go#L68: 	return fmt.Sprintf("BotCommandVector%+v", Alias(*vec))
		tl_bot_info_gen.go#L158: 	return fmt.Sprintf("BotInfo%+v", Alias(*b))
		tl_bot_inline_message_gen.go#L110: 	return fmt.Sprintf("BotInlineMessageMediaAuto%+v", Alias(*b))
		tl_bot_inline_message_gen.go#L437: 	return fmt.Sprintf("BotInlineMessageText%+v", Alias(*b))
		tl_bot_inline_message_gen.go#L801: 	return fmt.Sprintf("BotInlineMessageMediaGeo%+v", Alias(*b))
		tl_bot_inline_message_gen.go#L1164: 	return fmt.Sprintf("BotInlineMessageMediaVenue%+v", Alias(*b))
		tl_bot_inline_message_gen.go#L1503: 	return fmt.Sprintf("BotInlineMessageMediaContact%+v", Alias(*b))
		tl_bot_inline_message_gen.go#L1820: 	return fmt.Sprintf("BotInlineMessageMediaInvoice%+v", Alias(*b))
		tl_bot_inline_message_gen.go#L2248: 	return fmt.Sprintf("BotInlineMessageMediaWebPage%+v", Alias(*b))
		tl_bot_inline_message_gen.go#L2692: 	return fmt.Sprintf("BotInlineMessageRichMessage%+v", Alias(*b))
		tl_bot_inline_result_gen.go#L132: 	return fmt.Sprintf("BotInlineResult%+v", Alias(*b))
		tl_bot_inline_result_gen.go#L597: 	return fmt.Sprintf("BotInlineMediaResult%+v", Alias(*b))
		tl_bot_menu_button_gen.go#L75: 	return fmt.Sprintf("BotMenuButtonDefault%+v", Alias(*b))
		tl_bot_menu_button_gen.go#L180: 	return fmt.Sprintf("BotMenuButtonCommands%+v", Alias(*b))
		tl_bot_menu_button_gen.go#L299: 	return fmt.Sprintf("BotMenuButton%+v", Alias(*b))
		tl_bot_preview_media_gen.go#L79: 	return fmt.Sprintf("BotPreviewMedia%+v", Alias(*b))
		tl_bot_preview_media_vector_gen.go#L68: 	return fmt.Sprintf("BotPreviewMediaVector%+v", Alias(*vec))
		tl_bot_verification_gen.go#L84: 	return fmt.Sprintf("BotVerification%+v", Alias(*b))
		tl_bot_verifier_settings_gen.go#L100: 	return fmt.Sprintf("BotVerifierSettings%+v", Alias(*b))
		tl_bots_access_settings_gen.go#L82: 	return fmt.Sprintf("BotsAccessSettings%+v", Alias(*a))
		tl_bots_add_preview_media_gen.go#L90: 	return fmt.Sprintf("BotsAddPreviewMediaRequest%+v", Alias(*a))
		tl_bots_allow_send_message_gen.go#L71: 	return fmt.Sprintf("BotsAllowSendMessageRequest%+v", Alias(*a))
		tl_bots_answer_webhook_json_query_gen.go#L76: 	return fmt.Sprintf("BotsAnswerWebhookJSONQueryRequest%+v", Alias(*a))
		tl_bots_bot_info_gen.go#L81: 	return fmt.Sprintf("BotsBotInfo%+v", Alias(*b))
		tl_bots_can_send_message_gen.go#L71: 	return fmt.Sprintf("BotsCanSendMessageRequest%+v", Alias(*c))
		tl_bots_check_download_file_params_gen.go#L95: 	return fmt.Sprintf("BotsCheckDownloadFileParamsRequest%+v", Alias(*c))
		tl_bots_check_username_gen.go#L70: 	return fmt.Sprintf("BotsCheckUsernameRequest%+v", Alias(*c))
		tl_bots_create_bot_gen.go#L90: 	return fmt.Sprintf("BotsCreateBotRequest%+v", Alias(*c))
		tl_bots_delete_preview_media_gen.go#L90: 	return fmt.Sprintf("BotsDeletePreviewMediaRequest%+v", Alias(*d))
		tl_bots_edit_access_settings_gen.go#L87: 	return fmt.Sprintf("BotsEditAccessSettingsRequest%+v", Alias(*e))
		tl_bots_edit_preview_media_gen.go#L98: 	return fmt.Sprintf("BotsEditPreviewMediaRequest%+v", Alias(*e))
		tl_bots_export_bot_token_gen.go#L75: 	return fmt.Sprintf("BotsExportBotTokenRequest%+v", Alias(*e))
		tl_bots_exported_bot_token_gen.go#L70: 	return fmt.Sprintf("BotsExportedBotToken%+v", Alias(*e))
		tl_bots_get_access_settings_gen.go#L70: 	return fmt.Sprintf("BotsGetAccessSettingsRequest%+v", Alias(*g))
		tl_bots_get_admined_bots_gen.go#L66: 	return fmt.Sprintf("BotsGetAdminedBotsRequest%+v", Alias(*g))
		tl_bots_get_bot_commands_gen.go#L76: 	return fmt.Sprintf("BotsGetBotCommandsRequest%+v", Alias(*g))
		tl_bots_get_bot_info_gen.go#L88: 	return fmt.Sprintf("BotsGetBotInfoRequest%+v", Alias(*g))
		tl_bots_get_bot_menu_button_gen.go#L76: 	return fmt.Sprintf("BotsGetBotMenuButtonRequest%+v", Alias(*g))
		tl_bots_get_bot_recommendations_gen.go#L75: 	return fmt.Sprintf("BotsGetBotRecommendationsRequest%+v", Alias(*g))
		tl_bots_get_popular_app_bots_gen.go#L87: 	return fmt.Sprintf("BotsGetPopularAppBotsRequest%+v", Alias(*g))
		tl_bots_get_preview_info_gen.go#L85: 	return fmt.Sprintf("BotsGetPreviewInfoRequest%+v", Alias(*g))
		tl_bots_get_preview_medias_gen.go#L74: 	return fmt.Sprintf("BotsGetPreviewMediasRequest%+v", Alias(*g))
		tl_bots_get_requested_web_view_button_gen.go#L75: 	return fmt.Sprintf("BotsGetRequestedWebViewButtonRequest%+v", Alias(*g))
		tl_bots_invoke_web_view_custom_method_gen.go#L93: 	return fmt.Sprintf("BotsInvokeWebViewCustomMethodRequest%+v", Alias(*i))
		tl_bots_popular_app_bots_gen.go#L96: 	return fmt.Sprintf("BotsPopularAppBots%+v", Alias(*p))
		tl_bots_preview_info_gen.go#L86: 	return fmt.Sprintf("BotsPreviewInfo%+v", Alias(*p))
		tl_bots_reorder_preview_medias_gen.go#L87: 	return fmt.Sprintf("BotsReorderPreviewMediasRequest%+v", Alias(*r))
		tl_bots_reorder_usernames_gen.go#L76: 	return fmt.Sprintf("BotsReorderUsernamesRequest%+v", Alias(*r))
		tl_bots_request_web_view_button_gen.go#L75: 	return fmt.Sprintf("BotsRequestWebViewButtonRequest%+v", Alias(*r))
		tl_bots_requested_button_gen.go#L70: 	return fmt.Sprintf("BotsRequestedButton%+v", Alias(*r))
		tl_bots_reset_bot_commands_gen.go#L76: 	return fmt.Sprintf("BotsResetBotCommandsRequest%+v", Alias(*r))
		tl_bots_send_custom_request_gen.go#L76: 	return fmt.Sprintf("BotsSendCustomRequestRequest%+v", Alias(*s))
		tl_bots_set_bot_broadcast_default_admin_rights_gen.go#L76: 	return fmt.Sprintf("BotsSetBotBroadcastDefaultAdminRightsRequest%+v", Alias(*s))
		tl_bots_set_bot_commands_gen.go#L81: 	return fmt.Sprintf("BotsSetBotCommandsRequest%+v", Alias(*s))
		tl_bots_set_bot_group_default_admin_rights_gen.go#L76: 	return fmt.Sprintf("BotsSetBotGroupDefaultAdminRightsRequest%+v", Alias(*s))
		tl_bots_set_bot_info_gen.go#L108: 	return fmt.Sprintf("BotsSetBotInfoRequest%+v", Alias(*s))
		tl_bots_set_bot_menu_button_gen.go#L79: 	return fmt.Sprintf("BotsSetBotMenuButtonRequest%+v", Alias(*s))
		tl_bots_set_custom_verification_gen.go#L107: 	return fmt.Sprintf("BotsSetCustomVerificationRequest%+v", Alias(*s))
		tl_bots_set_join_chat_results_gen.go#L75: 	return fmt.Sprintf("BotsSetJoinChatResultsRequest%+v", Alias(*s))
		tl_bots_toggle_user_emoji_status_permission_gen.go#L79: 	return fmt.Sprintf("BotsToggleUserEmojiStatusPermissionRequest%+v", Alias(*t))
		tl_bots_toggle_username_gen.go#L84: 	return fmt.Sprintf("BotsToggleUsernameRequest%+v", Alias(*t))
		tl_bots_update_star_ref_program_gen.go#L105: 	return fmt.Sprintf("BotsUpdateStarRefProgramRequest%+v", Alias(*u))
		tl_bots_update_user_emoji_status_gen.go#L80: 	return fmt.Sprintf("BotsUpdateUserEmojiStatusRequest%+v", Alias(*u))
		tl_business_away_message_gen.go#L103: 	return fmt.Sprintf("BusinessAwayMessage%+v", Alias(*b))
		tl_business_away_message_schedule_gen.go#L74: 	return fmt.Sprintf("BusinessAwayMessageScheduleAlways%+v", Alias(*b))
		tl_business_away_message_schedule_gen.go#L183: 	return fmt.Sprintf("BusinessAwayMessageScheduleOutsideWorkHours%+v", Alias(*b))
		tl_business_away_message_schedule_gen.go#L299: 	return fmt.Sprintf("BusinessAwayMessageScheduleCustom%+v", Alias(*b))
		tl_business_bot_recipients_gen.go#L120: 	return fmt.Sprintf("BusinessBotRecipients%+v", Alias(*b))
		tl_business_bot_rights_gen.go#L152: 	return fmt.Sprintf("BusinessBotRights%+v", Alias(*b))
		tl_business_chat_link_gen.go#L113: 	return fmt.Sprintf("BusinessChatLink%+v", Alias(*b))
		tl_business_greeting_message_gen.go#L90: 	return fmt.Sprintf("BusinessGreetingMessage%+v", Alias(*b))
		tl_business_intro_gen.go#L103: 	return fmt.Sprintf("BusinessIntro%+v", Alias(*b))
		tl_business_location_gen.go#L89: 	return fmt.Sprintf("BusinessLocation%+v", Alias(*b))
		tl_business_recipients_gen.go#L115: 	return fmt.Sprintf("BusinessRecipients%+v", Alias(*b))
		tl_business_weekly_open_gen.go#L87: 	return fmt.Sprintf("BusinessWeeklyOpen%+v", Alias(*b))
		tl_business_work_hours_gen.go#L112: 	return fmt.Sprintf("BusinessWorkHours%+v", Alias(*b))
		tl_bytes_gen.go#L65: 	return fmt.Sprintf("Bytes%+v", Alias(*b))
		tl_cdn_config_gen.go#L77: 	return fmt.Sprintf("CDNConfig%+v", Alias(*c))
		tl_cdn_public_key_gen.go#L82: 	return fmt.Sprintf("CDNPublicKey%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L81: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeTitle%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L243: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeAbout%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L407: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeUsername%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L569: 	return fmt.Sprintf("ChannelAdminLogEventActionChangePhoto%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L738: 	return fmt.Sprintf("ChannelAdminLogEventActionToggleInvites%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L875: 	return fmt.Sprintf("ChannelAdminLogEventActionToggleSignatures%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L1012: 	return fmt.Sprintf("ChannelAdminLogEventActionUpdatePinned%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L1157: 	return fmt.Sprintf("ChannelAdminLogEventActionEditMessage%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L1326: 	return fmt.Sprintf("ChannelAdminLogEventActionDeleteMessage%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L1464: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantJoin%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L1569: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantLeave%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L1678: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantInvite%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L1828: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantToggleBan%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L2005: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantToggleAdmin%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L2179: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeStickerSet%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L2351: 	return fmt.Sprintf("ChannelAdminLogEventActionTogglePreHistoryHidden%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L2499: 	return fmt.Sprintf("ChannelAdminLogEventActionDefaultBannedRights%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L2656: 	return fmt.Sprintf("ChannelAdminLogEventActionStopPoll%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L2803: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeLinkedChat%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L2967: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeLocation%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L3144: 	return fmt.Sprintf("ChannelAdminLogEventActionToggleSlowMode%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L3303: 	return fmt.Sprintf("ChannelAdminLogEventActionStartGroupCall%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L3445: 	return fmt.Sprintf("ChannelAdminLogEventActionDiscardGroupCall%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L3587: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantMute%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L3724: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantUnmute%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L3861: 	return fmt.Sprintf("ChannelAdminLogEventActionToggleGroupCallSetting%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L4020: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantJoinByInvite%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L4205: 	return fmt.Sprintf("ChannelAdminLogEventActionExportedInviteDelete%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L4347: 	return fmt.Sprintf("ChannelAdminLogEventActionExportedInviteRevoke%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L4494: 	return fmt.Sprintf("ChannelAdminLogEventActionExportedInviteEdit%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L4664: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantVolume%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L4806: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeHistoryTTL%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L4970: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantJoinByRequest%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L5134: 	return fmt.Sprintf("ChannelAdminLogEventActionToggleNoForwards%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L5269: 	return fmt.Sprintf("ChannelAdminLogEventActionSendMessage%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L5419: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeAvailableReactions%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L5593: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeUsernames%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L5782: 	return fmt.Sprintf("ChannelAdminLogEventActionToggleForum%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L5923: 	return fmt.Sprintf("ChannelAdminLogEventActionCreateTopic%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L6071: 	return fmt.Sprintf("ChannelAdminLogEventActionEditTopic%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L6244: 	return fmt.Sprintf("ChannelAdminLogEventActionDeleteTopic%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L6404: 	return fmt.Sprintf("ChannelAdminLogEventActionPinTopic%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L6627: 	return fmt.Sprintf("ChannelAdminLogEventActionToggleAntiSpam%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L6772: 	return fmt.Sprintf("ChannelAdminLogEventActionChangePeerColor%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L6949: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeProfilePeerColor%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L7126: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeWallpaper%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L7303: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeEmojiStatus%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L7480: 	return fmt.Sprintf("ChannelAdminLogEventActionChangeEmojiStickerSet%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L7649: 	return fmt.Sprintf("ChannelAdminLogEventActionToggleSignatureProfiles%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L7794: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantSubExtend%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L7966: 	return fmt.Sprintf("ChannelAdminLogEventActionToggleAutotranslation%+v", Alias(*c))
		tl_channel_admin_log_event_action_gen.go#L8116: 	return fmt.Sprintf("ChannelAdminLogEventActionParticipantEditRank%+v", Alias(*c))
		tl_channel_admin_log_event_gen.go#L86: 	return fmt.Sprintf("ChannelAdminLogEvent%+v", Alias(*c))
		tl_channel_admin_log_events_filter_gen.go#L239: 	return fmt.Sprintf("ChannelAdminLogEventsFilter%+v", Alias(*c))
		tl_channel_location_gen.go#L71: 	return fmt.Sprintf("ChannelLocationEmpty%+v", Alias(*c))
		tl_channel_location_gen.go#L183: 	return fmt.Sprintf("ChannelLocation%+v", Alias(*c))
		tl_channel_messages_filter_gen.go#L71: 	return fmt.Sprintf("ChannelMessagesFilterEmpty%+v", Alias(*c))
		tl_channel_messages_filter_gen.go#L191: 	return fmt.Sprintf("ChannelMessagesFilter%+v", Alias(*c))
		tl_channel_participant_gen.go#L110: 	return fmt.Sprintf("ChannelParticipant%+v", Alias(*c))
		tl_channel_participant_gen.go#L406: 	return fmt.Sprintf("ChannelParticipantSelf%+v", Alias(*c))
		tl_channel_participant_gen.go#L733: 	return fmt.Sprintf("ChannelParticipantCreator%+v", Alias(*c))
		tl_channel_participant_gen.go#L997: 	return fmt.Sprintf("ChannelParticipantAdmin%+v", Alias(*c))
		tl_channel_participant_gen.go#L1394: 	return fmt.Sprintf("ChannelParticipantBanned%+v", Alias(*c))
		tl_channel_participant_gen.go#L1684: 	return fmt.Sprintf("ChannelParticipantLeft%+v", Alias(*c))
		tl_channel_participants_filter_gen.go#L71: 	return fmt.Sprintf("ChannelParticipantsRecent%+v", Alias(*c))
		tl_channel_participants_filter_gen.go#L173: 	return fmt.Sprintf("ChannelParticipantsAdmins%+v", Alias(*c))
		tl_channel_participants_filter_gen.go#L280: 	return fmt.Sprintf("ChannelParticipantsKicked%+v", Alias(*c))
		tl_channel_participants_filter_gen.go#L410: 	return fmt.Sprintf("ChannelParticipantsBots%+v", Alias(*c))
		tl_channel_participants_filter_gen.go#L517: 	return fmt.Sprintf("ChannelParticipantsBanned%+v", Alias(*c))
		tl_channel_participants_filter_gen.go#L652: 	return fmt.Sprintf("ChannelParticipantsSearch%+v", Alias(*c))
		tl_channel_participants_filter_gen.go#L787: 	return fmt.Sprintf("ChannelParticipantsContacts%+v", Alias(*c))
		tl_channel_participants_filter_gen.go#L949: 	return fmt.Sprintf("ChannelParticipantsMentions%+v", Alias(*c))
		tl_channels_admin_log_results_gen.go#L81: 	return fmt.Sprintf("ChannelsAdminLogResults%+v", Alias(*a))
		tl_channels_channel_participant_gen.go#L81: 	return fmt.Sprintf("ChannelsChannelParticipant%+v", Alias(*c))
		tl_channels_channel_participants_gen.go#L91: 	return fmt.Sprintf("ChannelsChannelParticipants%+v", Alias(*c))
		tl_channels_channel_participants_gen.go#L358: 	return fmt.Sprintf("ChannelsChannelParticipantsNotModified%+v", Alias(*c))
		tl_channels_check_search_posts_flood_gen.go#L84: 	return fmt.Sprintf("ChannelsCheckSearchPostsFloodRequest%+v", Alias(*c))
		tl_channels_check_username_gen.go#L79: 	return fmt.Sprintf("ChannelsCheckUsernameRequest%+v", Alias(*c))
		tl_channels_convert_to_gigagroup_gen.go#L79: 	return fmt.Sprintf("ChannelsConvertToGigagroupRequest%+v", Alias(*c))
		tl_channels_create_channel_gen.go#L153: 	return fmt.Sprintf("ChannelsCreateChannelRequest%+v", Alias(*c))
		tl_channels_deactivate_all_usernames_gen.go#L71: 	return fmt.Sprintf("ChannelsDeactivateAllUsernamesRequest%+v", Alias(*d))
		tl_channels_delete_channel_gen.go#L77: 	return fmt.Sprintf("ChannelsDeleteChannelRequest%+v", Alias(*d))
		tl_channels_delete_history_gen.go#L95: 	return fmt.Sprintf("ChannelsDeleteHistoryRequest%+v", Alias(*d))
		tl_channels_delete_messages_gen.go#L82: 	return fmt.Sprintf("ChannelsDeleteMessagesRequest%+v", Alias(*d))
		tl_channels_delete_participant_history_gen.go#L76: 	return fmt.Sprintf("ChannelsDeleteParticipantHistoryRequest%+v", Alias(*d))
		tl_channels_edit_admin_gen.go#L103: 	return fmt.Sprintf("ChannelsEditAdminRequest%+v", Alias(*e))
		tl_channels_edit_banned_gen.go#L87: 	return fmt.Sprintf("ChannelsEditBannedRequest%+v", Alias(*e))
		tl_channels_edit_location_gen.go#L87: 	return fmt.Sprintf("ChannelsEditLocationRequest%+v", Alias(*e))
		tl_channels_edit_photo_gen.go#L79: 	return fmt.Sprintf("ChannelsEditPhotoRequest%+v", Alias(*e))
		tl_channels_edit_title_gen.go#L79: 	return fmt.Sprintf("ChannelsEditTitleRequest%+v", Alias(*e))
		tl_channels_export_message_link_gen.go#L97: 	return fmt.Sprintf("ChannelsExportMessageLinkRequest%+v", Alias(*e))
		tl_channels_get_admin_log_gen.go#L125: 	return fmt.Sprintf("ChannelsGetAdminLogRequest%+v", Alias(*g))
		tl_channels_get_admined_public_channels_gen.go#L111: 	return fmt.Sprintf("ChannelsGetAdminedPublicChannelsRequest%+v", Alias(*g))
		tl_channels_get_channel_recommendations_gen.go#L83: 	return fmt.Sprintf("ChannelsGetChannelRecommendationsRequest%+v", Alias(*g))
		tl_channels_get_channels_gen.go#L74: 	return fmt.Sprintf("ChannelsGetChannelsRequest%+v", Alias(*g))
		tl_channels_get_full_channel_gen.go#L81: 	return fmt.Sprintf("ChannelsGetFullChannelRequest%+v", Alias(*g))
		tl_channels_get_groups_for_discussion_gen.go#L76: 	return fmt.Sprintf("ChannelsGetGroupsForDiscussionRequest%+v", Alias(*g))
		tl_channels_get_inactive_channels_gen.go#L66: 	return fmt.Sprintf("ChannelsGetInactiveChannelsRequest%+v", Alias(*g))
		tl_channels_get_left_channels_gen.go#L79: 	return fmt.Sprintf("ChannelsGetLeftChannelsRequest%+v", Alias(*g))
		tl_channels_get_message_author_gen.go#L81: 	return fmt.Sprintf("ChannelsGetMessageAuthorRequest%+v", Alias(*g))
		tl_channels_get_messages_gen.go#L79: 	return fmt.Sprintf("ChannelsGetMessagesRequest%+v", Alias(*g))
		tl_channels_get_participant_gen.go#L79: 	return fmt.Sprintf("ChannelsGetParticipantRequest%+v", Alias(*g))
		tl_channels_get_participants_gen.go#L103: 	return fmt.Sprintf("ChannelsGetParticipantsRequest%+v", Alias(*g))
		tl_channels_get_send_as_gen.go#L93: 	return fmt.Sprintf("ChannelsGetSendAsRequest%+v", Alias(*g))
		tl_channels_invite_to_channel_gen.go#L76: 	return fmt.Sprintf("ChannelsInviteToChannelRequest%+v", Alias(*i))
		tl_channels_join_channel_gen.go#L71: 	return fmt.Sprintf("ChannelsJoinChannelRequest%+v", Alias(*j))
		tl_channels_leave_channel_gen.go#L77: 	return fmt.Sprintf("ChannelsLeaveChannelRequest%+v", Alias(*l))
		tl_channels_read_history_gen.go#L82: 	return fmt.Sprintf("ChannelsReadHistoryRequest%+v", Alias(*r))
		tl_channels_read_message_contents_gen.go#L84: 	return fmt.Sprintf("ChannelsReadMessageContentsRequest%+v", Alias(*r))
		tl_channels_reorder_usernames_gen.go#L76: 	return fmt.Sprintf("ChannelsReorderUsernamesRequest%+v", Alias(*r))
		tl_channels_report_anti_spam_false_positive_gen.go#L84: 	return fmt.Sprintf("ChannelsReportAntiSpamFalsePositiveRequest%+v", Alias(*r))
		tl_channels_report_spam_gen.go#L82: 	return fmt.Sprintf("ChannelsReportSpamRequest%+v", Alias(*r))
		tl_channels_restrict_sponsored_messages_gen.go#L82: 	return fmt.Sprintf("ChannelsRestrictSponsoredMessagesRequest%+v", Alias(*r))
		tl_channels_search_posts_gen.go#L141: 	return fmt.Sprintf("ChannelsSearchPostsRequest%+v", Alias(*s))
		tl_channels_send_as_peers_gen.go#L81: 	return fmt.Sprintf("ChannelsSendAsPeers%+v", Alias(*s))
		tl_channels_set_boosts_to_unblock_restrictions_gen.go#L85: 	return fmt.Sprintf("ChannelsSetBoostsToUnblockRestrictionsRequest%+v", Alias(*s))
		tl_channels_set_discussion_group_gen.go#L82: 	return fmt.Sprintf("ChannelsSetDiscussionGroupRequest%+v", Alias(*s))
		tl_channels_set_emoji_stickers_gen.go#L83: 	return fmt.Sprintf("ChannelsSetEmojiStickersRequest%+v", Alias(*s))
		tl_channels_set_main_profile_tab_gen.go#L79: 	return fmt.Sprintf("ChannelsSetMainProfileTabRequest%+v", Alias(*s))
		tl_channels_set_stickers_gen.go#L76: 	return fmt.Sprintf("ChannelsSetStickersRequest%+v", Alias(*s))
		tl_channels_sponsored_message_report_result_gen.go#L88: 	return fmt.Sprintf("ChannelsSponsoredMessageReportResultChooseOption%+v", Alias(*s))
		tl_channels_sponsored_message_report_result_gen.go#L257: 	return fmt.Sprintf("ChannelsSponsoredMessageReportResultAdsHidden%+v", Alias(*s))
		tl_channels_sponsored_message_report_result_gen.go#L361: 	return fmt.Sprintf("ChannelsSponsoredMessageReportResultReported%+v", Alias(*s))
		tl_channels_toggle_anti_spam_gen.go#L84: 	return fmt.Sprintf("ChannelsToggleAntiSpamRequest%+v", Alias(*t))
		tl_channels_toggle_autotranslation_gen.go#L79: 	return fmt.Sprintf("ChannelsToggleAutotranslationRequest%+v", Alias(*t))
		tl_channels_toggle_forum_gen.go#L84: 	return fmt.Sprintf("ChannelsToggleForumRequest%+v", Alias(*t))
		tl_channels_toggle_join_request_gen.go#L96: 	return fmt.Sprintf("ChannelsToggleJoinRequestRequest%+v", Alias(*t))
		tl_channels_toggle_join_to_send_gen.go#L80: 	return fmt.Sprintf("ChannelsToggleJoinToSendRequest%+v", Alias(*t))
		tl_channels_toggle_participants_hidden_gen.go#L82: 	return fmt.Sprintf("ChannelsToggleParticipantsHiddenRequest%+v", Alias(*t))
		tl_channels_toggle_pre_history_hidden_gen.go#L76: 	return fmt.Sprintf("ChannelsTogglePreHistoryHiddenRequest%+v", Alias(*t))
		tl_channels_toggle_signatures_gen.go#L90: 	return fmt.Sprintf("ChannelsToggleSignaturesRequest%+v", Alias(*t))
		tl_channels_toggle_slow_mode_gen.go#L81: 	return fmt.Sprintf("ChannelsToggleSlowModeRequest%+v", Alias(*t))
		tl_channels_toggle_username_gen.go#L89: 	return fmt.Sprintf("ChannelsToggleUsernameRequest%+v", Alias(*t))
		tl_channels_toggle_view_forum_as_messages_gen.go#L87: 	return fmt.Sprintf("ChannelsToggleViewForumAsMessagesRequest%+v", Alias(*t))
		tl_channels_update_color_gen.go#L112: 	return fmt.Sprintf("ChannelsUpdateColorRequest%+v", Alias(*u))
		tl_channels_update_emoji_status_gen.go#L87: 	return fmt.Sprintf("ChannelsUpdateEmojiStatusRequest%+v", Alias(*u))
		tl_channels_update_paid_messages_price_gen.go#L111: 	return fmt.Sprintf("ChannelsUpdatePaidMessagesPriceRequest%+v", Alias(*u))
		tl_channels_update_username_gen.go#L76: 	return fmt.Sprintf("ChannelsUpdateUsernameRequest%+v", Alias(*u))
		tl_chat_admin_rights_gen.go#L216: 	return fmt.Sprintf("ChatAdminRights%+v", Alias(*c))
		tl_chat_admin_with_invites_gen.go#L81: 	return fmt.Sprintf("ChatAdminWithInvites%+v", Alias(*c))
		tl_chat_banned_rights_gen.go#L254: 	return fmt.Sprintf("ChatBannedRights%+v", Alias(*c))
		tl_chat_full_gen.go#L238: 	return fmt.Sprintf("ChatFull%+v", Alias(*c))
		tl_chat_full_gen.go#L1701: 	return fmt.Sprintf("ChannelFull%+v", Alias(*c))
		tl_chat_gen.go#L76: 	return fmt.Sprintf("ChatEmpty%+v", Alias(*c))
		tl_chat_gen.go#L323: 	return fmt.Sprintf("Chat%+v", Alias(*c))
		tl_chat_gen.go#L900: 	return fmt.Sprintf("ChatForbidden%+v", Alias(*c))
		tl_chat_gen.go#L1516: 	return fmt.Sprintf("Channel%+v", Alias(*c))
		tl_chat_gen.go#L3369: 	return fmt.Sprintf("ChannelForbidden%+v", Alias(*c))
		tl_chat_invite_gen.go#L76: 	return fmt.Sprintf("ChatInviteAlready%+v", Alias(*c))
		tl_chat_invite_gen.go#L355: 	return fmt.Sprintf("ChatInvite%+v", Alias(*c))
		tl_chat_invite_gen.go#L1081: 	return fmt.Sprintf("ChatInvitePeek%+v", Alias(*c))
		tl_chat_invite_importer_gen.go#L117: 	return fmt.Sprintf("ChatInviteImporter%+v", Alias(*c))
		tl_chat_onlines_gen.go#L71: 	return fmt.Sprintf("ChatOnlines%+v", Alias(*c))
		tl_chat_participant_gen.go#L107: 	return fmt.Sprintf("ChatParticipant%+v", Alias(*c))
		tl_chat_participant_gen.go#L361: 	return fmt.Sprintf("ChatParticipantCreator%+v", Alias(*c))
		tl_chat_participant_gen.go#L581: 	return fmt.Sprintf("ChatParticipantAdmin%+v", Alias(*c))
		tl_chat_participants_gen.go#L95: 	return fmt.Sprintf("ChatParticipantsForbidden%+v", Alias(*c))
		tl_chat_participants_gen.go#L303: 	return fmt.Sprintf("ChatParticipants%+v", Alias(*c))
		tl_chat_photo_gen.go#L71: 	return fmt.Sprintf("ChatPhotoEmpty%+v", Alias(*c))
		tl_chat_photo_gen.go#L206: 	return fmt.Sprintf("ChatPhoto%+v", Alias(*c))
		tl_chat_reactions_gen.go#L71: 	return fmt.Sprintf("ChatReactionsNone%+v", Alias(*c))
		tl_chat_reactions_gen.go#L186: 	return fmt.Sprintf("ChatReactionsAll%+v", Alias(*c))
		tl_chat_reactions_gen.go#L346: 	return fmt.Sprintf("ChatReactionsSome%+v", Alias(*c))
		tl_chat_theme_gen.go#L76: 	return fmt.Sprintf("ChatTheme%+v", Alias(*c))
		tl_chat_theme_gen.go#L223: 	return fmt.Sprintf("ChatThemeUniqueGift%+v", Alias(*c))
		tl_chatlists_chatlist_invite_gen.go#L99: 	return fmt.Sprintf("ChatlistsChatlistInviteAlready%+v", Alias(*c))
		tl_chatlists_chatlist_invite_gen.go#L453: 	return fmt.Sprintf("ChatlistsChatlistInvite%+v", Alias(*c))
		tl_chatlists_chatlist_updates_gen.go#L84: 	return fmt.Sprintf("ChatlistsChatlistUpdates%+v", Alias(*c))
		tl_chatlists_check_chatlist_invite_gen.go#L77: 	return fmt.Sprintf("ChatlistsCheckChatlistInviteRequest%+v", Alias(*c))
		tl_chatlists_delete_exported_invite_gen.go#L82: 	return fmt.Sprintf("ChatlistsDeleteExportedInviteRequest%+v", Alias(*d))
		tl_chatlists_edit_exported_invite_gen.go#L104: 	return fmt.Sprintf("ChatlistsEditExportedInviteRequest%+v", Alias(*e))
		tl_chatlists_export_chatlist_invite_gen.go#L89: 	return fmt.Sprintf("ChatlistsExportChatlistInviteRequest%+v", Alias(*e))
		tl_chatlists_exported_chatlist_invite_gen.go#L82: 	return fmt.Sprintf("ChatlistsExportedChatlistInvite%+v", Alias(*e))
		tl_chatlists_exported_invites_gen.go#L87: 	return fmt.Sprintf("ChatlistsExportedInvites%+v", Alias(*e))
		tl_chatlists_get_chatlist_updates_gen.go#L77: 	return fmt.Sprintf("ChatlistsGetChatlistUpdatesRequest%+v", Alias(*g))
		tl_chatlists_get_exported_invites_gen.go#L74: 	return fmt.Sprintf("ChatlistsGetExportedInvitesRequest%+v", Alias(*g))
		tl_chatlists_get_leave_chatlist_suggestions_gen.go#L76: 	return fmt.Sprintf("ChatlistsGetLeaveChatlistSuggestionsRequest%+v", Alias(*g))
		tl_chatlists_hide_chatlist_updates_gen.go#L74: 	return fmt.Sprintf("ChatlistsHideChatlistUpdatesRequest%+v", Alias(*h))
		tl_chatlists_join_chatlist_invite_gen.go#L87: 	return fmt.Sprintf("ChatlistsJoinChatlistInviteRequest%+v", Alias(*j))
		tl_chatlists_join_chatlist_updates_gen.go#L84: 	return fmt.Sprintf("ChatlistsJoinChatlistUpdatesRequest%+v", Alias(*j))
		tl_chatlists_leave_chatlist_gen.go#L79: 	return fmt.Sprintf("ChatlistsLeaveChatlistRequest%+v", Alias(*l))
		tl_code_settings_gen.go#L147: 	return fmt.Sprintf("CodeSettings%+v", Alias(*c))
		tl_config_gen.go#L380: 	return fmt.Sprintf("Config%+v", Alias(*c))
		tl_connected_bot_gen.go#L117: 	return fmt.Sprintf("ConnectedBot%+v", Alias(*c))
		tl_connected_bot_star_ref_gen.go#L129: 	return fmt.Sprintf("ConnectedBotStarRef%+v", Alias(*c))
		tl_contact_birthday_gen.go#L76: 	return fmt.Sprintf("ContactBirthday%+v", Alias(*c))
		tl_contact_gen.go#L76: 	return fmt.Sprintf("Contact%+v", Alias(*c))
		tl_contact_status_gen.go#L76: 	return fmt.Sprintf("ContactStatus%+v", Alias(*c))
		tl_contact_status_vector_gen.go#L68: 	return fmt.Sprintf("ContactStatusVector%+v", Alias(*vec))
		tl_contacts_accept_contact_gen.go#L74: 	return fmt.Sprintf("ContactsAcceptContactRequest%+v", Alias(*a))
		tl_contacts_add_contact_gen.go#L116: 	return fmt.Sprintf("ContactsAddContactRequest%+v", Alias(*a))
		tl_contacts_block_from_replies_gen.go#L100: 	return fmt.Sprintf("ContactsBlockFromRepliesRequest%+v", Alias(*b))
		tl_contacts_block_gen.go#L91: 	return fmt.Sprintf("ContactsBlockRequest%+v", Alias(*b))
		tl_contacts_blocked_gen.go#L86: 	return fmt.Sprintf("ContactsBlocked%+v", Alias(*b))
		tl_contacts_blocked_gen.go#L341: 	return fmt.Sprintf("ContactsBlockedSlice%+v", Alias(*b))
		tl_contacts_contact_birthdays_gen.go#L76: 	return fmt.Sprintf("ContactsContactBirthdays%+v", Alias(*c))
		tl_contacts_contacts_gen.go#L71: 	return fmt.Sprintf("ContactsContactsNotModified%+v", Alias(*c))
		tl_contacts_contacts_gen.go#L188: 	return fmt.Sprintf("ContactsContacts%+v", Alias(*c))
		tl_contacts_delete_by_phones_gen.go#L71: 	return fmt.Sprintf("ContactsDeleteByPhonesRequest%+v", Alias(*d))
		tl_contacts_delete_contacts_gen.go#L71: 	return fmt.Sprintf("ContactsDeleteContactsRequest%+v", Alias(*d))
		tl_contacts_edit_close_friends_gen.go#L77: 	return fmt.Sprintf("ContactsEditCloseFriendsRequest%+v", Alias(*e))
		tl_contacts_export_contact_token_gen.go#L69: 	return fmt.Sprintf("ContactsExportContactTokenRequest%+v", Alias(*e))
		tl_contacts_found_gen.go#L86: 	return fmt.Sprintf("ContactsFound%+v", Alias(*f))
		tl_contacts_get_birthdays_gen.go#L74: 	return fmt.Sprintf("ContactsGetBirthdaysRequest%+v", Alias(*g))
		tl_contacts_get_blocked_gen.go#L93: 	return fmt.Sprintf("ContactsGetBlockedRequest%+v", Alias(*g))
		tl_contacts_get_contact_ids_gen.go#L76: 	return fmt.Sprintf("ContactsGetContactIDsRequest%+v", Alias(*g))
		tl_contacts_get_contacts_gen.go#L81: 	return fmt.Sprintf("ContactsGetContactsRequest%+v", Alias(*g))
		tl_contacts_get_located_gen.go#L99: 	return fmt.Sprintf("ContactsGetLocatedRequest%+v", Alias(*g))
		tl_contacts_get_saved_gen.go#L69: 	return fmt.Sprintf("ContactsGetSavedRequest%+v", Alias(*g))
		tl_contacts_get_sponsored_peers_gen.go#L71: 	return fmt.Sprintf("ContactsGetSponsoredPeersRequest%+v", Alias(*g))
		tl_contacts_get_statuses_gen.go#L67: 	return fmt.Sprintf("ContactsGetStatusesRequest%+v", Alias(*g))
		tl_contacts_get_top_peers_gen.go#L151: 	return fmt.Sprintf("ContactsGetTopPeersRequest%+v", Alias(*g))
		tl_contacts_import_contact_token_gen.go#L77: 	return fmt.Sprintf("ContactsImportContactTokenRequest%+v", Alias(*i))
		tl_contacts_import_contacts_gen.go#L77: 	return fmt.Sprintf("ContactsImportContactsRequest%+v", Alias(*i))
		tl_contacts_imported_contacts_gen.go#L87: 	return fmt.Sprintf("ContactsImportedContacts%+v", Alias(*i))
		tl_contacts_reset_saved_gen.go#L66: 	return fmt.Sprintf("ContactsResetSavedRequest%+v", Alias(*r))
		tl_contacts_reset_top_peer_rating_gen.go#L79: 	return fmt.Sprintf("ContactsResetTopPeerRatingRequest%+v", Alias(*r))
		tl_contacts_resolve_phone_gen.go#L77: 	return fmt.Sprintf("ContactsResolvePhoneRequest%+v", Alias(*r))
		tl_contacts_resolve_username_gen.go#L89: 	return fmt.Sprintf("ContactsResolveUsernameRequest%+v", Alias(*r))
		tl_contacts_resolved_peer_gen.go#L81: 	return fmt.Sprintf("ContactsResolvedPeer%+v", Alias(*r))
		tl_contacts_search_gen.go#L91: 	return fmt.Sprintf("ContactsSearchRequest%+v", Alias(*s))
		tl_contacts_set_blocked_gen.go#L99: 	return fmt.Sprintf("ContactsSetBlockedRequest%+v", Alias(*s))
		tl_contacts_sponsored_peers_gen.go#L71: 	return fmt.Sprintf("ContactsSponsoredPeersEmpty%+v", Alias(*s))
		tl_contacts_sponsored_peers_gen.go#L188: 	return fmt.Sprintf("ContactsSponsoredPeers%+v", Alias(*s))
		tl_contacts_toggle_top_peers_gen.go#L74: 	return fmt.Sprintf("ContactsToggleTopPeersRequest%+v", Alias(*t))
		tl_contacts_top_peers_gen.go#L71: 	return fmt.Sprintf("ContactsTopPeersNotModified%+v", Alias(*t))
		tl_contacts_top_peers_gen.go#L188: 	return fmt.Sprintf("ContactsTopPeers%+v", Alias(*t))
		tl_contacts_top_peers_gen.go#L423: 	return fmt.Sprintf("ContactsTopPeersDisabled%+v", Alias(*t))
		tl_contacts_unblock_gen.go#L91: 	return fmt.Sprintf("ContactsUnblockRequest%+v", Alias(*u))
		tl_contacts_update_contact_note_gen.go#L79: 	return fmt.Sprintf("ContactsUpdateContactNoteRequest%+v", Alias(*u))
		tl_data_json_gen.go#L71: 	return fmt.Sprintf("DataJSON%+v", Alias(*d))
		tl_dc_option_gen.go#L140: 	return fmt.Sprintf("DCOption%+v", Alias(*d))
		tl_default_history_ttl_gen.go#L72: 	return fmt.Sprintf("DefaultHistoryTTL%+v", Alias(*d))
		tl_dialog_filter_gen.go#L209: 	return fmt.Sprintf("DialogFilter%+v", Alias(*d))
		tl_dialog_filter_gen.go#L861: 	return fmt.Sprintf("DialogFilterDefault%+v", Alias(*d))
		tl_dialog_filter_gen.go#L1029: 	return fmt.Sprintf("DialogFilterChatlist%+v", Alias(*d))
		tl_dialog_filter_suggested_gen.go#L85: 	return fmt.Sprintf("DialogFilterSuggested%+v", Alias(*d))
		tl_dialog_filter_suggested_vector_gen.go#L68: 	return fmt.Sprintf("DialogFilterSuggestedVector%+v", Alias(*vec))
		tl_dialog_gen.go#L187: 	return fmt.Sprintf("Dialog%+v", Alias(*d))
		tl_dialog_gen.go#L818: 	return fmt.Sprintf("DialogFolder%+v", Alias(*d))
		tl_dialog_peer_class_vector_gen.go#L68: 	return fmt.Sprintf("DialogPeerClassVector%+v", Alias(*vec))
		tl_dialog_peer_gen.go#L76: 	return fmt.Sprintf("DialogPeer%+v", Alias(*d))
		tl_dialog_peer_gen.go#L222: 	return fmt.Sprintf("DialogPeerFolder%+v", Alias(*d))
		tl_disallowed_gifts_settings_gen.go#L116: 	return fmt.Sprintf("DisallowedGiftsSettings%+v", Alias(*d))
		tl_document_attribute_gen.go#L81: 	return fmt.Sprintf("DocumentAttributeImageSize%+v", Alias(*d))
		tl_document_attribute_gen.go#L233: 	return fmt.Sprintf("DocumentAttributeAnimated%+v", Alias(*d))
		tl_document_attribute_gen.go#L365: 	return fmt.Sprintf("DocumentAttributeSticker%+v", Alias(*d))
		tl_document_attribute_gen.go#L669: 	return fmt.Sprintf("DocumentAttributeVideo%+v", Alias(*d))
		tl_document_attribute_gen.go#L1112: 	return fmt.Sprintf("DocumentAttributeAudio%+v", Alias(*d))
		tl_document_attribute_gen.go#L1413: 	return fmt.Sprintf("DocumentAttributeFilename%+v", Alias(*d))
		tl_document_attribute_gen.go#L1543: 	return fmt.Sprintf("DocumentAttributeHasStickers%+v", Alias(*d))
		tl_document_attribute_gen.go#L1675: 	return fmt.Sprintf("DocumentAttributeCustomEmoji%+v", Alias(*d))
		tl_document_class_vector_gen.go#L68: 	return fmt.Sprintf("DocumentClassVector%+v", Alias(*vec))
		tl_document_gen.go#L76: 	return fmt.Sprintf("DocumentEmpty%+v", Alias(*d))
		tl_document_gen.go#L271: 	return fmt.Sprintf("Document%+v", Alias(*d))
		tl_double_gen.go#L65: 	return fmt.Sprintf("Double%+v", Alias(*d))
		tl_draft_message_gen.go#L86: 	return fmt.Sprintf("DraftMessageEmpty%+v", Alias(*d))
		tl_draft_message_gen.go#L332: 	return fmt.Sprintf("DraftMessage%+v", Alias(*d))
		tl_email_verification_gen.go#L76: 	return fmt.Sprintf("EmailVerificationCode%+v", Alias(*e))
		tl_email_verification_gen.go#L211: 	return fmt.Sprintf("EmailVerificationGoogle%+v", Alias(*e))
		tl_email_verification_gen.go#L346: 	return fmt.Sprintf("EmailVerificationApple%+v", Alias(*e))
		tl_email_verify_purpose_gen.go#L84: 	return fmt.Sprintf("EmailVerifyPurposeLoginSetup%+v", Alias(*e))
		tl_email_verify_purpose_gen.go#L236: 	return fmt.Sprintf("EmailVerifyPurposeLoginChange%+v", Alias(*e))
		tl_email_verify_purpose_gen.go#L341: 	return fmt.Sprintf("EmailVerifyPurposePassport%+v", Alias(*e))
		tl_emoji_group_gen.go#L89: 	return fmt.Sprintf("EmojiGroup%+v", Alias(*e))
		tl_emoji_group_gen.go#L296: 	return fmt.Sprintf("EmojiGroupGreeting%+v", Alias(*e))
		tl_emoji_group_gen.go#L503: 	return fmt.Sprintf("EmojiGroupPremium%+v", Alias(*e))
		tl_emoji_keyword_gen.go#L81: 	return fmt.Sprintf("EmojiKeyword%+v", Alias(*e))
		tl_emoji_keyword_gen.go#L256: 	return fmt.Sprintf("EmojiKeywordDeleted%+v", Alias(*e))
		tl_emoji_keywords_difference_gen.go#L86: 	return fmt.Sprintf("EmojiKeywordsDifference%+v", Alias(*e))
		tl_emoji_language_gen.go#L71: 	return fmt.Sprintf("EmojiLanguage%+v", Alias(*e))
		tl_emoji_language_vector_gen.go#L68: 	return fmt.Sprintf("EmojiLanguageVector%+v", Alias(*vec))
		tl_emoji_list_gen.go#L74: 	return fmt.Sprintf("EmojiListNotModified%+v", Alias(*e))
		tl_emoji_list_gen.go#L192: 	return fmt.Sprintf("EmojiList%+v", Alias(*e))
		tl_emoji_status_gen.go#L71: 	return fmt.Sprintf("EmojiStatusEmpty%+v", Alias(*e))
		tl_emoji_status_gen.go#L199: 	return fmt.Sprintf("EmojiStatus%+v", Alias(*e))
		tl_emoji_status_gen.go#L482: 	return fmt.Sprintf("EmojiStatusCollectible%+v", Alias(*e))
		tl_emoji_status_gen.go#L876: 	return fmt.Sprintf("InputEmojiStatusCollectible%+v", Alias(*i))
		tl_emoji_url_gen.go#L73: 	return fmt.Sprintf("EmojiURL%+v", Alias(*e))
		tl_encrypted_chat_gen.go#L76: 	return fmt.Sprintf("EncryptedChatEmpty%+v", Alias(*e))
		tl_encrypted_chat_gen.go#L231: 	return fmt.Sprintf("EncryptedChatWaiting%+v", Alias(*e))
		tl_encrypted_chat_gen.go#L500: 	return fmt.Sprintf("EncryptedChatRequested%+v", Alias(*e))
		tl_encrypted_chat_gen.go#L833: 	return fmt.Sprintf("EncryptedChat%+v", Alias(*e))
		tl_encrypted_chat_gen.go#L1113: 	return fmt.Sprintf("EncryptedChatDiscarded%+v", Alias(*e))
		tl_encrypted_file_gen.go#L71: 	return fmt.Sprintf("EncryptedFileEmpty%+v", Alias(*e))
		tl_encrypted_file_gen.go#L198: 	return fmt.Sprintf("EncryptedFile%+v", Alias(*e))
		tl_encrypted_message_gen.go#L100: 	return fmt.Sprintf("EncryptedMessage%+v", Alias(*e))
		tl_encrypted_message_gen.go#L347: 	return fmt.Sprintf("EncryptedMessageService%+v", Alias(*e))
		tl_error_gen.go#L76: 	return fmt.Sprintf("Error%+v", Alias(*e))
		tl_exported_chat_invite_gen.go#L175: 	return fmt.Sprintf("ChatInviteExported%+v", Alias(*c))
		tl_exported_chat_invite_gen.go#L784: 	return fmt.Sprintf("ChatInvitePublicJoinRequests%+v", Alias(*c))
		tl_exported_chatlist_invite_gen.go#L95: 	return fmt.Sprintf("ExportedChatlistInvite%+v", Alias(*e))
		tl_exported_contact_token_gen.go#L82: 	return fmt.Sprintf("ExportedContactToken%+v", Alias(*e))
		tl_exported_message_link_gen.go#L76: 	return fmt.Sprintf("ExportedMessageLink%+v", Alias(*e))
		tl_exported_story_link_gen.go#L77: 	return fmt.Sprintf("ExportedStoryLink%+v", Alias(*e))
		tl_fact_check_gen.go#L111: 	return fmt.Sprintf("FactCheck%+v", Alias(*f))
		tl_fact_check_vector_gen.go#L68: 	return fmt.Sprintf("FactCheckVector%+v", Alias(*vec))
		tl_file_hash_gen.go#L80: 	return fmt.Sprintf("FileHash%+v", Alias(*f))
		tl_file_hash_vector_gen.go#L68: 	return fmt.Sprintf("FileHashVector%+v", Alias(*vec))
		tl_folder_gen.go#L106: 	return fmt.Sprintf("Folder%+v", Alias(*f))
		tl_folder_peer_gen.go#L79: 	return fmt.Sprintf("FolderPeer%+v", Alias(*f))
		tl_folders_edit_peer_folders_gen.go#L74: 	return fmt.Sprintf("FoldersEditPeerFoldersRequest%+v", Alias(*e))
		tl_forum_topic_gen.go#L76: 	return fmt.Sprintf("ForumTopicDeleted%+v", Alias(*f))
		tl_forum_topic_gen.go#L353: 	return fmt.Sprintf("ForumTopic%+v", Alias(*f))
		tl_found_story_gen.go#L79: 	return fmt.Sprintf("FoundStory%+v", Alias(*f))
		tl_fragment_collectible_info_gen.go#L111: 	return fmt.Sprintf("FragmentCollectibleInfo%+v", Alias(*c))
		tl_fragment_get_collectible_info_gen.go#L75: 	return fmt.Sprintf("FragmentGetCollectibleInfoRequest%+v", Alias(*g))
		tl_game_gen.go#L111: 	return fmt.Sprintf("Game%+v", Alias(*g))
		tl_geo_point_address_gen.go#L103: 	return fmt.Sprintf("GeoPointAddress%+v", Alias(*g))
		tl_geo_point_gen.go#L71: 	return fmt.Sprintf("GeoPointEmpty%+v", Alias(*g))
		tl_geo_point_gen.go#L203: 	return fmt.Sprintf("GeoPoint%+v", Alias(*g))
		tl_global_privacy_settings_gen.go#L155: 	return fmt.Sprintf("GlobalPrivacySettings%+v", Alias(*g))
		tl_group_call_donor_gen.go#L95: 	return fmt.Sprintf("GroupCallDonor%+v", Alias(*g))
		tl_group_call_gen.go#L89: 	return fmt.Sprintf("GroupCallDiscarded%+v", Alias(*g))
		tl_group_call_gen.go#L430: 	return fmt.Sprintf("GroupCall%+v", Alias(*g))
		tl_group_call_message_gen.go#L105: 	return fmt.Sprintf("GroupCallMessage%+v", Alias(*g))
		tl_group_call_participant_gen.go#L199: 	return fmt.Sprintf("GroupCallParticipant%+v", Alias(*g))
		tl_group_call_participant_video_gen.go#L96: 	return fmt.Sprintf("GroupCallParticipantVideo%+v", Alias(*g))
		tl_group_call_participant_video_source_group_gen.go#L76: 	return fmt.Sprintf("GroupCallParticipantVideoSourceGroup%+v", Alias(*g))
		tl_group_call_stream_channel_gen.go#L86: 	return fmt.Sprintf("GroupCallStreamChannel%+v", Alias(*g))
		tl_help_accept_terms_of_service_gen.go#L71: 	return fmt.Sprintf("HelpAcceptTermsOfServiceRequest%+v", Alias(*a))
		tl_help_app_config_gen.go#L71: 	return fmt.Sprintf("HelpAppConfigNotModified%+v", Alias(*a))
		tl_help_app_config_gen.go#L192: 	return fmt.Sprintf("HelpAppConfig%+v", Alias(*a))
		tl_help_app_update_gen.go#L128: 	return fmt.Sprintf("HelpAppUpdate%+v", Alias(*a))
		tl_help_app_update_gen.go#L523: 	return fmt.Sprintf("HelpNoAppUpdate%+v", Alias(*n))
		tl_help_config_simple_gen.go#L80: 	return fmt.Sprintf("HelpConfigSimple%+v", Alias(*c))
		tl_help_countries_list_gen.go#L71: 	return fmt.Sprintf("HelpCountriesListNotModified%+v", Alias(*c))
		tl_help_countries_list_gen.go#L186: 	return fmt.Sprintf("HelpCountriesList%+v", Alias(*c))
		tl_help_country_code_gen.go#L93: 	return fmt.Sprintf("HelpCountryCode%+v", Alias(*c))
		tl_help_country_gen.go#L101: 	return fmt.Sprintf("HelpCountry%+v", Alias(*c))
		tl_help_deep_link_info_gen.go#L71: 	return fmt.Sprintf("HelpDeepLinkInfoEmpty%+v", Alias(*d))
		tl_help_deep_link_info_gen.go#L204: 	return fmt.Sprintf("HelpDeepLinkInfo%+v", Alias(*d))
		tl_help_dismiss_suggestion_gen.go#L85: 	return fmt.Sprintf("HelpDismissSuggestionRequest%+v", Alias(*d))
		tl_help_edit_user_info_gen.go#L84: 	return fmt.Sprintf("HelpEditUserInfoRequest%+v", Alias(*e))
		tl_help_get_app_config_gen.go#L77: 	return fmt.Sprintf("HelpGetAppConfigRequest%+v", Alias(*g))
		tl_help_get_app_update_gen.go#L71: 	return fmt.Sprintf("HelpGetAppUpdateRequest%+v", Alias(*g))
		tl_help_get_cdn_config_gen.go#L69: 	return fmt.Sprintf("HelpGetCDNConfigRequest%+v", Alias(*g))
		tl_help_get_config_gen.go#L66: 	return fmt.Sprintf("HelpGetConfigRequest%+v", Alias(*g))
		tl_help_get_countries_list_gen.go#L79: 	return fmt.Sprintf("HelpGetCountriesListRequest%+v", Alias(*g))
		tl_help_get_deep_link_info_gen.go#L74: 	return fmt.Sprintf("HelpGetDeepLinkInfoRequest%+v", Alias(*g))
		tl_help_get_invite_text_gen.go#L66: 	return fmt.Sprintf("HelpGetInviteTextRequest%+v", Alias(*g))
		tl_help_get_nearest_dc_gen.go#L66: 	return fmt.Sprintf("HelpGetNearestDCRequest%+v", Alias(*g))
		tl_help_get_passport_config_gen.go#L77: 	return fmt.Sprintf("HelpGetPassportConfigRequest%+v", Alias(*g))
		tl_help_get_peer_colors_gen.go#L77: 	return fmt.Sprintf("HelpGetPeerColorsRequest%+v", Alias(*g))
		tl_help_get_peer_profile_colors_gen.go#L77: 	return fmt.Sprintf("HelpGetPeerProfileColorsRequest%+v", Alias(*g))
		tl_help_get_premium_promo_gen.go#L66: 	return fmt.Sprintf("HelpGetPremiumPromoRequest%+v", Alias(*g))
		tl_help_get_promo_data_gen.go#L70: 	return fmt.Sprintf("HelpGetPromoDataRequest%+v", Alias(*g))
		tl_help_get_recent_me_urls_gen.go#L81: 	return fmt.Sprintf("HelpGetRecentMeURLsRequest%+v", Alias(*g))
		tl_help_get_support_gen.go#L66: 	return fmt.Sprintf("HelpGetSupportRequest%+v", Alias(*g))
		tl_help_get_support_name_gen.go#L66: 	return fmt.Sprintf("HelpGetSupportNameRequest%+v", Alias(*g))
		tl_help_get_terms_of_service_update_gen.go#L66: 	return fmt.Sprintf("HelpGetTermsOfServiceUpdateRequest%+v", Alias(*g))
		tl_help_get_timezones_list_gen.go#L78: 	return fmt.Sprintf("HelpGetTimezonesListRequest%+v", Alias(*g))
		tl_help_get_user_info_gen.go#L71: 	return fmt.Sprintf("HelpGetUserInfoRequest%+v", Alias(*g))
		tl_help_hide_promo_data_gen.go#L71: 	return fmt.Sprintf("HelpHidePromoDataRequest%+v", Alias(*h))
		tl_help_invite_text_gen.go#L71: 	return fmt.Sprintf("HelpInviteText%+v", Alias(*i))
		tl_help_passport_config_gen.go#L71: 	return fmt.Sprintf("HelpPassportConfigNotModified%+v", Alias(*p))
		tl_help_passport_config_gen.go#L189: 	return fmt.Sprintf("HelpPassportConfig%+v", Alias(*p))
		tl_help_peer_color_option_gen.go#L131: 	return fmt.Sprintf("HelpPeerColorOption%+v", Alias(*p))
		tl_help_peer_color_set_gen.go#L79: 	return fmt.Sprintf("HelpPeerColorSet%+v", Alias(*p))
		tl_help_peer_color_set_gen.go#L243: 	return fmt.Sprintf("HelpPeerColorProfileSet%+v", Alias(*p))
		tl_help_peer_colors_gen.go#L71: 	return fmt.Sprintf("HelpPeerColorsNotModified%+v", Alias(*p))
		tl_help_peer_colors_gen.go#L192: 	return fmt.Sprintf("HelpPeerColors%+v", Alias(*p))
		tl_help_premium_promo_gen.go#L109: 	return fmt.Sprintf("HelpPremiumPromo%+v", Alias(*p))
		tl_help_promo_data_gen.go#L76: 	return fmt.Sprintf("HelpPromoDataEmpty%+v", Alias(*p))
		tl_help_promo_data_gen.go#L290: 	return fmt.Sprintf("HelpPromoData%+v", Alias(*p))
		tl_help_recent_me_urls_gen.go#L81: 	return fmt.Sprintf("HelpRecentMeURLs%+v", Alias(*r))
		tl_help_save_app_log_gen.go#L71: 	return fmt.Sprintf("HelpSaveAppLogRequest%+v", Alias(*s))
		tl_help_set_bot_updates_status_gen.go#L77: 	return fmt.Sprintf("HelpSetBotUpdatesStatusRequest%+v", Alias(*s))
		tl_help_support_gen.go#L76: 	return fmt.Sprintf("HelpSupport%+v", Alias(*s))
		tl_help_support_name_gen.go#L71: 	return fmt.Sprintf("HelpSupportName%+v", Alias(*s))
		tl_help_terms_of_service_gen.go#L105: 	return fmt.Sprintf("HelpTermsOfService%+v", Alias(*t))
		tl_help_terms_of_service_update_gen.go#L80: 	return fmt.Sprintf("HelpTermsOfServiceUpdateEmpty%+v", Alias(*t))
		tl_help_terms_of_service_update_gen.go#L229: 	return fmt.Sprintf("HelpTermsOfServiceUpdate%+v", Alias(*t))
		tl_help_timezones_list_gen.go#L71: 	return fmt.Sprintf("HelpTimezonesListNotModified%+v", Alias(*t))
		tl_help_timezones_list_gen.go#L190: 	return fmt.Sprintf("HelpTimezonesList%+v", Alias(*t))
		tl_help_user_info_gen.go#L71: 	return fmt.Sprintf("HelpUserInfoEmpty%+v", Alias(*u))
		tl_help_user_info_gen.go#L196: 	return fmt.Sprintf("HelpUserInfo%+v", Alias(*u))
		tl_high_score_gen.go#L81: 	return fmt.Sprintf("HighScore%+v", Alias(*h))
		tl_imported_contact_gen.go#L79: 	return fmt.Sprintf("ImportedContact%+v", Alias(*i))
		tl_init_connection_gen.go#L136: 	return fmt.Sprintf("InitConnectionRequest%+v", Alias(*i))
		tl_inline_bot_switch_p_m_gen.go#L77: 	return fmt.Sprintf("InlineBotSwitchPM%+v", Alias(*i))
		tl_inline_bot_web_view_gen.go#L80: 	return fmt.Sprintf("InlineBotWebView%+v", Alias(*i))
		tl_inline_query_peer_type_gen.go#L71: 	return fmt.Sprintf("InlineQueryPeerTypeSameBotPM%+v", Alias(*i))
		tl_inline_query_peer_type_gen.go#L173: 	return fmt.Sprintf("InlineQueryPeerTypePM%+v", Alias(*i))
		tl_inline_query_peer_type_gen.go#L278: 	return fmt.Sprintf("InlineQueryPeerTypeChat%+v", Alias(*i))
		tl_inline_query_peer_type_gen.go#L383: 	return fmt.Sprintf("InlineQueryPeerTypeMegagroup%+v", Alias(*i))
		tl_inline_query_peer_type_gen.go#L488: 	return fmt.Sprintf("InlineQueryPeerTypeBroadcast%+v", Alias(*i))
		tl_inline_query_peer_type_gen.go#L590: 	return fmt.Sprintf("InlineQueryPeerTypeBotPM%+v", Alias(*i))
		tl_input_ai_compose_tone_gen.go#L75: 	return fmt.Sprintf("InputAiComposeToneDefault%+v", Alias(*i))
		tl_input_ai_compose_tone_gen.go#L214: 	return fmt.Sprintf("InputAiComposeToneID%+v", Alias(*i))
		tl_input_ai_compose_tone_gen.go#L370: 	return fmt.Sprintf("InputAiComposeToneSlug%+v", Alias(*i))
		tl_input_app_event_gen.go#L87: 	return fmt.Sprintf("InputAppEvent%+v", Alias(*i))
		tl_input_bot_app_gen.go#L90: 	return fmt.Sprintf("InputBotAppID%+v", Alias(*i))
		tl_input_bot_app_gen.go#L258: 	return fmt.Sprintf("InputBotAppShortName%+v", Alias(*i))
		tl_input_bot_inline_message_gen.go#L107: 	return fmt.Sprintf("InputBotInlineMessageMediaAuto%+v", Alias(*i))
		tl_input_bot_inline_message_gen.go#L434: 	return fmt.Sprintf("InputBotInlineMessageText%+v", Alias(*i))
		tl_input_bot_inline_message_gen.go#L798: 	return fmt.Sprintf("InputBotInlineMessageMediaGeo%+v", Alias(*i))
		tl_input_bot_inline_message_gen.go#L1161: 	return fmt.Sprintf("InputBotInlineMessageMediaVenue%+v", Alias(*i))
		tl_input_bot_inline_message_gen.go#L1500: 	return fmt.Sprintf("InputBotInlineMessageMediaContact%+v", Alias(*i))
		tl_input_bot_inline_message_gen.go#L1770: 	return fmt.Sprintf("InputBotInlineMessageGame%+v", Alias(*i))
		tl_input_bot_inline_message_gen.go#L1995: 	return fmt.Sprintf("InputBotInlineMessageMediaInvoice%+v", Alias(*i))
		tl_input_bot_inline_message_gen.go#L2395: 	return fmt.Sprintf("InputBotInlineMessageMediaWebPage%+v", Alias(*i))
		tl_input_bot_inline_message_gen.go#L2809: 	return fmt.Sprintf("InputBotInlineMessageRichMessage%+v", Alias(*i))
		tl_input_bot_inline_message_id_gen.go#L87: 	return fmt.Sprintf("InputBotInlineMessageID%+v", Alias(*i))
		tl_input_bot_inline_message_id_gen.go#L281: 	return fmt.Sprintf("InputBotInlineMessageID64%+v", Alias(*i))
		tl_input_bot_inline_result_gen.go#L132: 	return fmt.Sprintf("InputBotInlineResult%+v", Alias(*i))
		tl_input_bot_inline_result_gen.go#L552: 	return fmt.Sprintf("InputBotInlineResultPhoto%+v", Alias(*i))
		tl_input_bot_inline_result_gen.go#L803: 	return fmt.Sprintf("InputBotInlineResultDocument%+v", Alias(*i))
		tl_input_bot_inline_result_gen.go#L1119: 	return fmt.Sprintf("InputBotInlineResultGame%+v", Alias(*i))
		tl_input_business_away_message_gen.go#L103: 	return fmt.Sprintf("InputBusinessAwayMessage%+v", Alias(*i))
		tl_input_business_bot_recipients_gen.go#L118: 	return fmt.Sprintf("InputBusinessBotRecipients%+v", Alias(*i))
		tl_input_business_chat_link_gen.go#L101: 	return fmt.Sprintf("InputBusinessChatLink%+v", Alias(*i))
		tl_input_business_greeting_message_gen.go#L90: 	return fmt.Sprintf("InputBusinessGreetingMessage%+v", Alias(*i))
		tl_input_business_intro_gen.go#L97: 	return fmt.Sprintf("InputBusinessIntro%+v", Alias(*i))
		tl_input_business_recipients_gen.go#L115: 	return fmt.Sprintf("InputBusinessRecipients%+v", Alias(*i))
		tl_input_channel_gen.go#L71: 	return fmt.Sprintf("InputChannelEmpty%+v", Alias(*i))
		tl_input_channel_gen.go#L186: 	return fmt.Sprintf("InputChannel%+v", Alias(*i))
		tl_input_channel_gen.go#L356: 	return fmt.Sprintf("InputChannelFromMessage%+v", Alias(*i))
		tl_input_chat_photo_gen.go#L71: 	return fmt.Sprintf("InputChatPhotoEmpty%+v", Alias(*i))
		tl_input_chat_photo_gen.go#L220: 	return fmt.Sprintf("InputChatUploadedPhoto%+v", Alias(*i))
		tl_input_chat_photo_gen.go#L525: 	return fmt.Sprintf("InputChatPhoto%+v", Alias(*i))
		tl_input_chat_theme_gen.go#L71: 	return fmt.Sprintf("InputChatThemeEmpty%+v", Alias(*i))
		tl_input_chat_theme_gen.go#L181: 	return fmt.Sprintf("InputChatTheme%+v", Alias(*i))
		tl_input_chat_theme_gen.go#L324: 	return fmt.Sprintf("InputChatThemeUniqueGift%+v", Alias(*i))
		tl_input_chatlist_dialog_filter_gen.go#L74: 	return fmt.Sprintf("InputChatlistDialogFilter%+v", Alias(*i))
		tl_input_check_password_srp_gen.go#L71: 	return fmt.Sprintf("InputCheckPasswordEmpty%+v", Alias(*i))
		tl_input_check_password_srp_gen.go#L200: 	return fmt.Sprintf("InputCheckPasswordSRP%+v", Alias(*i))
		tl_input_client_proxy_gen.go#L79: 	return fmt.Sprintf("InputClientProxy%+v", Alias(*i))
		tl_input_collectible_gen.go#L79: 	return fmt.Sprintf("InputCollectibleUsername%+v", Alias(*i))
		tl_input_collectible_gen.go#L217: 	return fmt.Sprintf("InputCollectiblePhone%+v", Alias(*i))
		tl_input_dialog_peer_gen.go#L76: 	return fmt.Sprintf("InputDialogPeer%+v", Alias(*i))
		tl_input_dialog_peer_gen.go#L222: 	return fmt.Sprintf("InputDialogPeerFolder%+v", Alias(*i))
		tl_input_document_gen.go#L71: 	return fmt.Sprintf("InputDocumentEmpty%+v", Alias(*i))
		tl_input_document_gen.go#L194: 	return fmt.Sprintf("InputDocument%+v", Alias(*i))
		tl_input_encrypted_chat_gen.go#L82: 	return fmt.Sprintf("InputEncryptedChat%+v", Alias(*i))
		tl_input_encrypted_file_gen.go#L71: 	return fmt.Sprintf("InputEncryptedFileEmpty%+v", Alias(*i))
		tl_input_encrypted_file_gen.go#L197: 	return fmt.Sprintf("InputEncryptedFileUploaded%+v", Alias(*i))
		tl_input_encrypted_file_gen.go#L409: 	return fmt.Sprintf("InputEncryptedFile%+v", Alias(*i))
		tl_input_encrypted_file_gen.go#L580: 	return fmt.Sprintf("InputEncryptedFileBigUploaded%+v", Alias(*i))
		tl_input_file_gen.go#L98: 	return fmt.Sprintf("InputFile%+v", Alias(*i))
		tl_input_file_gen.go#L313: 	return fmt.Sprintf("InputFileBig%+v", Alias(*i))
		tl_input_file_gen.go#L496: 	return fmt.Sprintf("InputFileStoryDocument%+v", Alias(*i))
		tl_input_file_location_gen.go#L94: 	return fmt.Sprintf("InputFileLocation%+v", Alias(*i))
		tl_input_file_location_gen.go#L306: 	return fmt.Sprintf("InputEncryptedFileLocation%+v", Alias(*i))
		tl_input_file_location_gen.go#L484: 	return fmt.Sprintf("InputDocumentFileLocation%+v", Alias(*i))
		tl_input_file_location_gen.go#L699: 	return fmt.Sprintf("InputSecureFileLocation%+v", Alias(*i))
		tl_input_file_location_gen.go#L857: 	return fmt.Sprintf("InputTakeoutFileLocation%+v", Alias(*i))
		tl_input_file_location_gen.go#L996: 	return fmt.Sprintf("InputPhotoFileLocation%+v", Alias(*i))
		tl_input_file_location_gen.go#L1222: 	return fmt.Sprintf("InputPhotoLegacyFileLocation%+v", Alias(*i))
		tl_input_file_location_gen.go#L1485: 	return fmt.Sprintf("InputPeerPhotoFileLocation%+v", Alias(*i))
		tl_input_file_location_gen.go#L1698: 	return fmt.Sprintf("InputStickerSetThumb%+v", Alias(*i))
		tl_input_file_location_gen.go#L1893: 	return fmt.Sprintf("InputGroupCallStream%+v", Alias(*i))
		tl_input_file_location_gen.go#L2191: 	return fmt.Sprintf("InputPeerPhotoFileLocationLegacy%+v", Alias(*i))
		tl_input_file_location_gen.go#L2427: 	return fmt.Sprintf("InputStickerSetThumbLegacy%+v", Alias(*i))
		tl_input_folder_peer_gen.go#L79: 	return fmt.Sprintf("InputFolderPeer%+v", Alias(*i))
		tl_input_game_gen.go#L87: 	return fmt.Sprintf("InputGameID%+v", Alias(*i))
		tl_input_game_gen.go#L252: 	return fmt.Sprintf("InputGameShortName%+v", Alias(*i))
		tl_input_geo_point_gen.go#L71: 	return fmt.Sprintf("InputGeoPointEmpty%+v", Alias(*i))
		tl_input_geo_point_gen.go#L198: 	return fmt.Sprintf("InputGeoPoint%+v", Alias(*i))
		tl_input_group_call_gen.go#L84: 	return fmt.Sprintf("InputGroupCall%+v", Alias(*i))
		tl_input_group_call_gen.go#L247: 	return fmt.Sprintf("InputGroupCallSlug%+v", Alias(*i))
		tl_input_group_call_gen.go#L388: 	return fmt.Sprintf("InputGroupCallInviteMessage%+v", Alias(*i))
		tl_input_invoice_gen.go#L85: 	return fmt.Sprintf("InputInvoiceMessage%+v", Alias(*i))
		tl_input_invoice_gen.go#L252: 	return fmt.Sprintf("InputInvoiceSlug%+v", Alias(*i))
		tl_input_invoice_gen.go#L410: 	return fmt.Sprintf("InputInvoicePremiumGiftCode%+v", Alias(*i))
		tl_input_invoice_gen.go#L583: 	return fmt.Sprintf("InputInvoiceStars%+v", Alias(*i))
		tl_input_invoice_gen.go#L729: 	return fmt.Sprintf("InputInvoiceChatInviteSubscription%+v", Alias(*i))
		tl_input_invoice_gen.go#L908: 	return fmt.Sprintf("InputInvoiceStarGift%+v", Alias(*i))
		tl_input_invoice_gen.go#L1206: 	return fmt.Sprintf("InputInvoiceStarGiftUpgrade%+v", Alias(*i))
		tl_input_invoice_gen.go#L1399: 	return fmt.Sprintf("InputInvoiceStarGiftTransfer%+v", Alias(*i))
		tl_input_invoice_gen.go#L1595: 	return fmt.Sprintf("InputInvoicePremiumGiftStars%+v", Alias(*i))
		tl_input_invoice_gen.go#L1825: 	return fmt.Sprintf("InputInvoiceBusinessBotTransferStars%+v", Alias(*i))
		tl_input_invoice_gen.go#L2010: 	return fmt.Sprintf("InputInvoiceStarGiftResale%+v", Alias(*i))
		tl_input_invoice_gen.go#L2228: 	return fmt.Sprintf("InputInvoiceStarGiftPrepaidUpgrade%+v", Alias(*i))
		tl_input_invoice_gen.go#L2397: 	return fmt.Sprintf("InputInvoicePremiumAuthCode%+v", Alias(*i))
		tl_input_invoice_gen.go#L2546: 	return fmt.Sprintf("InputInvoiceStarGiftDropOriginalDetails%+v", Alias(*i))
		tl_input_invoice_gen.go#L2744: 	return fmt.Sprintf("InputInvoiceStarGiftAuctionBid%+v", Alias(*i))
		tl_input_media_gen.go#L71: 	return fmt.Sprintf("InputMediaEmpty%+v", Alias(*i))
		tl_input_media_gen.go#L220: 	return fmt.Sprintf("InputMediaUploadedPhoto%+v", Alias(*i))
		tl_input_media_gen.go#L619: 	return fmt.Sprintf("InputMediaPhoto%+v", Alias(*i))
		tl_input_media_gen.go#L919: 	return fmt.Sprintf("InputMediaGeoPoint%+v", Alias(*i))
		tl_input_media_gen.go#L1074: 	return fmt.Sprintf("InputMediaContact%+v", Alias(*i))
		tl_input_media_gen.go#L1351: 	return fmt.Sprintf("InputMediaUploadedDocument%+v", Alias(*i))
		tl_input_media_gen.go#L1944: 	return fmt.Sprintf("InputMediaDocument%+v", Alias(*i))
		tl_input_media_gen.go#L2322: 	return fmt.Sprintf("InputMediaVenue%+v", Alias(*i))
		tl_input_media_gen.go#L2592: 	return fmt.Sprintf("InputMediaPhotoExternal%+v", Alias(*i))
		tl_input_media_gen.go#L2845: 	return fmt.Sprintf("InputMediaDocumentExternal%+v", Alias(*i))
		tl_input_media_gen.go#L3151: 	return fmt.Sprintf("InputMediaGame%+v", Alias(*i))
		tl_input_media_gen.go#L3364: 	return fmt.Sprintf("InputMediaInvoice%+v", Alias(*i))
		tl_input_media_gen.go#L3813: 	return fmt.Sprintf("InputMediaGeoLive%+v", Alias(*i))
		tl_input_media_gen.go#L4165: 	return fmt.Sprintf("InputMediaPoll%+v", Alias(*i))
		tl_input_media_gen.go#L4570: 	return fmt.Sprintf("InputMediaDice%+v", Alias(*i))
		tl_input_media_gen.go#L4710: 	return fmt.Sprintf("InputMediaStory%+v", Alias(*i))
		tl_input_media_gen.go#L4899: 	return fmt.Sprintf("InputMediaWebPage%+v", Alias(*i))
		tl_input_media_gen.go#L5168: 	return fmt.Sprintf("InputMediaPaidMedia%+v", Alias(*i))
		tl_input_media_gen.go#L5405: 	return fmt.Sprintf("InputMediaTodo%+v", Alias(*i))
		tl_input_media_gen.go#L5549: 	return fmt.Sprintf("InputMediaStakeDice%+v", Alias(*i))
		tl_input_message_gen.go#L76: 	return fmt.Sprintf("InputMessageID%+v", Alias(*i))
		tl_input_message_gen.go#L211: 	return fmt.Sprintf("InputMessageReplyTo%+v", Alias(*i))
		tl_input_message_gen.go#L341: 	return fmt.Sprintf("InputMessagePinned%+v", Alias(*i))
		tl_input_message_gen.go#L454: 	return fmt.Sprintf("InputMessageCallbackQuery%+v", Alias(*i))
		tl_input_message_read_metric_gen.go#L95: 	return fmt.Sprintf("InputMessageReadMetric%+v", Alias(*i))
		tl_input_notify_peer_gen.go#L76: 	return fmt.Sprintf("InputNotifyPeer%+v", Alias(*i))
		tl_input_notify_peer_gen.go#L211: 	return fmt.Sprintf("InputNotifyUsers%+v", Alias(*i))
		tl_input_notify_peer_gen.go#L313: 	return fmt.Sprintf("InputNotifyChats%+v", Alias(*i))
		tl_input_notify_peer_gen.go#L418: 	return fmt.Sprintf("InputNotifyBroadcasts%+v", Alias(*i))
		tl_input_notify_peer_gen.go#L537: 	return fmt.Sprintf("InputNotifyForumTopic%+v", Alias(*i))
		tl_input_passkey_credential_gen.go#L99: 	return fmt.Sprintf("InputPasskeyCredentialPublicKey%+v", Alias(*i))
		tl_input_passkey_credential_gen.go#L282: 	return fmt.Sprintf("InputPasskeyCredentialFirebasePNV%+v", Alias(*i))
		tl_input_passkey_response_gen.go#L95: 	return fmt.Sprintf("InputPasskeyResponseRegister%+v", Alias(*i))
		tl_input_passkey_response_gen.go#L288: 	return fmt.Sprintf("InputPasskeyResponseLogin%+v", Alias(*i))
		tl_input_payment_credentials_gen.go#L81: 	return fmt.Sprintf("InputPaymentCredentialsSaved%+v", Alias(*i))
		tl_input_payment_credentials_gen.go#L251: 	return fmt.Sprintf("InputPaymentCredentials%+v", Alias(*i))
		tl_input_payment_credentials_gen.go#L429: 	return fmt.Sprintf("InputPaymentCredentialsApplePay%+v", Alias(*i))
		tl_input_payment_credentials_gen.go#L564: 	return fmt.Sprintf("InputPaymentCredentialsGooglePay%+v", Alias(*i))
		tl_input_peer_gen.go#L71: 	return fmt.Sprintf("InputPeerEmpty%+v", Alias(*i))
		tl_input_peer_gen.go#L173: 	return fmt.Sprintf("InputPeerSelf%+v", Alias(*i))
		tl_input_peer_gen.go#L280: 	return fmt.Sprintf("InputPeerChat%+v", Alias(*i))
		tl_input_peer_gen.go#L423: 	return fmt.Sprintf("InputPeerUser%+v", Alias(*i))
		tl_input_peer_gen.go#L588: 	return fmt.Sprintf("InputPeerChannel%+v", Alias(*i))
		tl_input_peer_gen.go#L758: 	return fmt.Sprintf("InputPeerUserFromMessage%+v", Alias(*i))
		tl_input_peer_gen.go#L955: 	return fmt.Sprintf("InputPeerChannelFromMessage%+v", Alias(*i))
		tl_input_peer_notify_settings_gen.go#L123: 	return fmt.Sprintf("InputPeerNotifySettings%+v", Alias(*i))
		tl_input_phone_call_gen.go#L79: 	return fmt.Sprintf("InputPhoneCall%+v", Alias(*i))
		tl_input_phone_contact_gen.go#L112: 	return fmt.Sprintf("InputPhoneContact%+v", Alias(*i))
		tl_input_photo_gen.go#L71: 	return fmt.Sprintf("InputPhotoEmpty%+v", Alias(*i))
		tl_input_photo_gen.go#L194: 	return fmt.Sprintf("InputPhoto%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L84: 	return fmt.Sprintf("InputPrivacyKeyStatusTimestamp%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L186: 	return fmt.Sprintf("InputPrivacyKeyChatInvite%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L288: 	return fmt.Sprintf("InputPrivacyKeyPhoneCall%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L390: 	return fmt.Sprintf("InputPrivacyKeyPhoneP2P%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L495: 	return fmt.Sprintf("InputPrivacyKeyForwards%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L597: 	return fmt.Sprintf("InputPrivacyKeyProfilePhoto%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L699: 	return fmt.Sprintf("InputPrivacyKeyPhoneNumber%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L801: 	return fmt.Sprintf("InputPrivacyKeyAddedByPhone%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L906: 	return fmt.Sprintf("InputPrivacyKeyVoiceMessages%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L1008: 	return fmt.Sprintf("InputPrivacyKeyAbout%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L1110: 	return fmt.Sprintf("InputPrivacyKeyBirthday%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L1215: 	return fmt.Sprintf("InputPrivacyKeyStarGiftsAutoSave%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L1320: 	return fmt.Sprintf("InputPrivacyKeyNoPaidMessages%+v", Alias(*i))
		tl_input_privacy_key_gen.go#L1425: 	return fmt.Sprintf("InputPrivacyKeySavedMusic%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L71: 	return fmt.Sprintf("InputPrivacyValueAllowContacts%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L173: 	return fmt.Sprintf("InputPrivacyValueAllowAll%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L280: 	return fmt.Sprintf("InputPrivacyValueAllowUsers%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L433: 	return fmt.Sprintf("InputPrivacyValueDisallowContacts%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L535: 	return fmt.Sprintf("InputPrivacyValueDisallowAll%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L642: 	return fmt.Sprintf("InputPrivacyValueDisallowUsers%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L806: 	return fmt.Sprintf("InputPrivacyValueAllowChatParticipants%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L960: 	return fmt.Sprintf("InputPrivacyValueDisallowChatParticipants%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L1106: 	return fmt.Sprintf("InputPrivacyValueAllowCloseFriends%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L1213: 	return fmt.Sprintf("InputPrivacyValueAllowPremium%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L1315: 	return fmt.Sprintf("InputPrivacyValueAllowBots%+v", Alias(*i))
		tl_input_privacy_rule_gen.go#L1417: 	return fmt.Sprintf("InputPrivacyValueDisallowBots%+v", Alias(*i))
		tl_input_quick_reply_shortcut_gen.go#L79: 	return fmt.Sprintf("InputQuickReplyShortcut%+v", Alias(*i))
		tl_input_quick_reply_shortcut_gen.go#L217: 	return fmt.Sprintf("InputQuickReplyShortcutID%+v", Alias(*i))
		tl_input_reply_to_gen.go#L162: 	return fmt.Sprintf("InputReplyToMessage%+v", Alias(*i))
		tl_input_reply_to_gen.go#L679: 	return fmt.Sprintf("InputReplyToStory%+v", Alias(*i))
		tl_input_reply_to_gen.go#L844: 	return fmt.Sprintf("InputReplyToMonoForum%+v", Alias(*i))
		tl_input_rich_file_gen.go#L80: 	return fmt.Sprintf("InputRichFilePhoto%+v", Alias(*i))
		tl_input_rich_file_gen.go#L246: 	return fmt.Sprintf("InputRichFileDocument%+v", Alias(*i))
		tl_input_rich_message_gen.go#L111: 	return fmt.Sprintf("InputRichMessage%+v", Alias(*i))
		tl_input_rich_message_gen.go#L564: 	return fmt.Sprintf("InputRichMessageHTML%+v", Alias(*i))
		tl_input_rich_message_gen.go#L860: 	return fmt.Sprintf("InputRichMessageMarkdown%+v", Alias(*i))
		tl_input_saved_star_gift_gen.go#L80: 	return fmt.Sprintf("InputSavedStarGiftUser%+v", Alias(*i))
		tl_input_saved_star_gift_gen.go#L225: 	return fmt.Sprintf("InputSavedStarGiftChat%+v", Alias(*i))
		tl_input_saved_star_gift_gen.go#L390: 	return fmt.Sprintf("InputSavedStarGiftSlug%+v", Alias(*i))
		tl_input_secure_file_gen.go#L99: 	return fmt.Sprintf("InputSecureFileUploaded%+v", Alias(*i))
		tl_input_secure_file_gen.go#L331: 	return fmt.Sprintf("InputSecureFile%+v", Alias(*i))
		tl_input_secure_value_gen.go#L155: 	return fmt.Sprintf("InputSecureValue%+v", Alias(*i))
		tl_input_single_media_gen.go#L103: 	return fmt.Sprintf("InputSingleMedia%+v", Alias(*i))
		tl_input_star_gift_auction_gen.go#L83: 	return fmt.Sprintf("InputStarGiftAuction%+v", Alias(*i))
		tl_input_star_gift_auction_gen.go#L225: 	return fmt.Sprintf("InputStarGiftAuctionSlug%+v", Alias(*i))
		tl_input_stars_transaction_gen.go#L87: 	return fmt.Sprintf("InputStarsTransaction%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L71: 	return fmt.Sprintf("InputStickerSetEmpty%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L183: 	return fmt.Sprintf("InputStickerSetID%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L346: 	return fmt.Sprintf("InputStickerSetShortName%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L476: 	return fmt.Sprintf("InputStickerSetAnimatedEmoji%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L586: 	return fmt.Sprintf("InputStickerSetDice%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L717: 	return fmt.Sprintf("InputStickerSetAnimatedEmojiAnimations%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L819: 	return fmt.Sprintf("InputStickerSetPremiumGifts%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L925: 	return fmt.Sprintf("InputStickerSetEmojiGenericAnimations%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L1030: 	return fmt.Sprintf("InputStickerSetEmojiDefaultStatuses%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L1136: 	return fmt.Sprintf("InputStickerSetEmojiDefaultTopicIcons%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L1241: 	return fmt.Sprintf("InputStickerSetEmojiChannelDefaultStatuses%+v", Alias(*i))
		tl_input_sticker_set_gen.go#L1343: 	return fmt.Sprintf("InputStickerSetTonGifts%+v", Alias(*i))
		tl_input_sticker_set_item_gen.go#L98: 	return fmt.Sprintf("InputStickerSetItem%+v", Alias(*i))
		tl_input_stickered_media_gen.go#L76: 	return fmt.Sprintf("InputStickeredMediaPhoto%+v", Alias(*i))
		tl_input_stickered_media_gen.go#L216: 	return fmt.Sprintf("InputStickeredMediaDocument%+v", Alias(*i))
		tl_input_store_payment_purpose_gen.go#L90: 	return fmt.Sprintf("InputStorePaymentPremiumSubscription%+v", Alias(*i))
		tl_input_store_payment_purpose_gen.go#L295: 	return fmt.Sprintf("InputStorePaymentGiftPremium%+v", Alias(*i))
		tl_input_store_payment_purpose_gen.go#L537: 	return fmt.Sprintf("InputStorePaymentPremiumGiftCode%+v", Alias(*i))
		tl_input_store_payment_purpose_gen.go#L932: 	return fmt.Sprintf("InputStorePaymentPremiumGiveaway%+v", Alias(*i))
		tl_input_store_payment_purpose_gen.go#L1435: 	return fmt.Sprintf("InputStorePaymentStarsTopup%+v", Alias(*i))
		tl_input_store_payment_purpose_gen.go#L1700: 	return fmt.Sprintf("InputStorePaymentStarsGift%+v", Alias(*i))
		tl_input_store_payment_purpose_gen.go#L2010: 	return fmt.Sprintf("InputStorePaymentStarsGiveaway%+v", Alias(*i))
		tl_input_store_payment_purpose_gen.go#L2562: 	return fmt.Sprintf("InputStorePaymentAuthCode%+v", Alias(*i))
		tl_input_theme_gen.go#L81: 	return fmt.Sprintf("InputTheme%+v", Alias(*i))
		tl_input_theme_gen.go#L241: 	return fmt.Sprintf("InputThemeSlug%+v", Alias(*i))
		tl_input_theme_settings_gen.go#L132: 	return fmt.Sprintf("InputThemeSettings%+v", Alias(*i))
		tl_input_user_gen.go#L71: 	return fmt.Sprintf("InputUserEmpty%+v", Alias(*i))
		tl_input_user_gen.go#L173: 	return fmt.Sprintf("InputUserSelf%+v", Alias(*i))
		tl_input_user_gen.go#L288: 	return fmt.Sprintf("InputUser%+v", Alias(*i))
		tl_input_user_gen.go#L458: 	return fmt.Sprintf("InputUserFromMessage%+v", Alias(*i))
		tl_input_wall_paper_gen.go#L87: 	return fmt.Sprintf("InputWallPaper%+v", Alias(*i))
		tl_input_wall_paper_gen.go#L248: 	return fmt.Sprintf("InputWallPaperSlug%+v", Alias(*i))
		tl_input_wall_paper_gen.go#L388: 	return fmt.Sprintf("InputWallPaperNoFile%+v", Alias(*i))
		tl_input_web_document_gen.go#L89: 	return fmt.Sprintf("InputWebDocument%+v", Alias(*i))
		tl_input_web_file_location_gen.go#L81: 	return fmt.Sprintf("InputWebFileLocation%+v", Alias(*i))
		tl_input_web_file_location_gen.go#L274: 	return fmt.Sprintf("InputWebFileGeoPointLocation%+v", Alias(*i))
		tl_input_web_file_location_gen.go#L561: 	return fmt.Sprintf("InputWebFileAudioAlbumThumbLocation%+v", Alias(*i))
		tl_int_gen.go#L65: 	return fmt.Sprintf("Int%+v", Alias(*i))
		tl_int_vector_gen.go#L68: 	return fmt.Sprintf("IntVector%+v", Alias(*vec))
		tl_invoice_gen.go#L175: 	return fmt.Sprintf("Invoice%+v", Alias(*i))
		tl_invoke_after_msg_gen.go#L76: 	return fmt.Sprintf("InvokeAfterMsgRequest%+v", Alias(*i))
		tl_invoke_after_msgs_gen.go#L76: 	return fmt.Sprintf("InvokeAfterMsgsRequest%+v", Alias(*i))
		tl_invoke_with_apns_secret_gen.go#L81: 	return fmt.Sprintf("InvokeWithApnsSecretRequest%+v", Alias(*i))
		tl_invoke_with_business_connection_gen.go#L84: 	return fmt.Sprintf("InvokeWithBusinessConnectionRequest%+v", Alias(*i))
		tl_invoke_with_google_play_integrity_gen.go#L81: 	return fmt.Sprintf("InvokeWithGooglePlayIntegrityRequest%+v", Alias(*i))
		tl_invoke_with_layer_gen.go#L79: 	return fmt.Sprintf("InvokeWithLayerRequest%+v", Alias(*i))
		tl_invoke_with_messages_range_gen.go#L76: 	return fmt.Sprintf("InvokeWithMessagesRangeRequest%+v", Alias(*i))
		tl_invoke_with_re_captcha_gen.go#L78: 	return fmt.Sprintf("InvokeWithReCaptchaRequest%+v", Alias(*i))
		tl_invoke_with_takeout_gen.go#L82: 	return fmt.Sprintf("InvokeWithTakeoutRequest%+v", Alias(*i))
		tl_invoke_without_updates_gen.go#L76: 	return fmt.Sprintf("InvokeWithoutUpdatesRequest%+v", Alias(*i))
		tl_ip_port_gen.go#L80: 	return fmt.Sprintf("IPPort%+v", Alias(*i))
		tl_ip_port_gen.go#L246: 	return fmt.Sprintf("IPPortSecret%+v", Alias(*i))
		tl_join_chat_bot_result_gen.go#L70: 	return fmt.Sprintf("JoinChatBotResultApproved%+v", Alias(*j))
		tl_join_chat_bot_result_gen.go#L171: 	return fmt.Sprintf("JoinChatBotResultDeclined%+v", Alias(*j))
		tl_join_chat_bot_result_gen.go#L272: 	return fmt.Sprintf("JoinChatBotResultQueued%+v", Alias(*j))
		tl_join_chat_bot_result_gen.go#L378: 	return fmt.Sprintf("JoinChatBotResultWebView%+v", Alias(*j))
		tl_json_object_value_gen.go#L76: 	return fmt.Sprintf("JSONObjectValue%+v", Alias(*j))
		tl_json_value_gen.go#L71: 	return fmt.Sprintf("JSONNull%+v", Alias(*j))
		tl_json_value_gen.go#L178: 	return fmt.Sprintf("JSONBool%+v", Alias(*j))
		tl_json_value_gen.go#L313: 	return fmt.Sprintf("JSONNumber%+v", Alias(*j))
		tl_json_value_gen.go#L448: 	return fmt.Sprintf("JSONString%+v", Alias(*j))
		tl_json_value_gen.go#L583: 	return fmt.Sprintf("JSONArray%+v", Alias(*j))
		tl_json_value_gen.go#L741: 	return fmt.Sprintf("JSONObject%+v", Alias(*j))
		tl_keyboard_button_gen.go#L94: 	return fmt.Sprintf("KeyboardButton%+v", Alias(*k))
		tl_keyboard_button_gen.go#L306: 	return fmt.Sprintf("KeyboardButtonURL%+v", Alias(*k))
		tl_keyboard_button_gen.go#L555: 	return fmt.Sprintf("KeyboardButtonCallback%+v", Alias(*k))
		tl_keyboard_button_gen.go#L814: 	return fmt.Sprintf("KeyboardButtonRequestPhone%+v", Alias(*k))
		tl_keyboard_button_gen.go#L1021: 	return fmt.Sprintf("KeyboardButtonRequestGeoLocation%+v", Alias(*k))
		tl_keyboard_button_gen.go#L1248: 	return fmt.Sprintf("KeyboardButtonSwitchInline%+v", Alias(*k))
		tl_keyboard_button_gen.go#L1574: 	return fmt.Sprintf("KeyboardButtonGame%+v", Alias(*k))
		tl_keyboard_button_gen.go#L1781: 	return fmt.Sprintf("KeyboardButtonBuy%+v", Alias(*k))
		tl_keyboard_button_gen.go#L2035: 	return fmt.Sprintf("KeyboardButtonURLAuth%+v", Alias(*k))
		tl_keyboard_button_gen.go#L2369: 	return fmt.Sprintf("InputKeyboardButtonURLAuth%+v", Alias(*i))
		tl_keyboard_button_gen.go#L2704: 	return fmt.Sprintf("KeyboardButtonRequestPoll%+v", Alias(*k))
		tl_keyboard_button_gen.go#L2957: 	return fmt.Sprintf("InputKeyboardButtonUserProfile%+v", Alias(*i))
		tl_keyboard_button_gen.go#L3196: 	return fmt.Sprintf("KeyboardButtonUserProfile%+v", Alias(*k))
		tl_keyboard_button_gen.go#L3441: 	return fmt.Sprintf("KeyboardButtonWebView%+v", Alias(*k))
		tl_keyboard_button_gen.go#L3686: 	return fmt.Sprintf("KeyboardButtonSimpleWebView%+v", Alias(*k))
		tl_keyboard_button_gen.go#L3940: 	return fmt.Sprintf("KeyboardButtonRequestPeer%+v", Alias(*k))
		tl_keyboard_button_gen.go#L4258: 	return fmt.Sprintf("InputKeyboardButtonRequestPeer%+v", Alias(*i))
		tl_keyboard_button_gen.go#L4631: 	return fmt.Sprintf("KeyboardButtonCopy%+v", Alias(*k))
		tl_keyboard_button_row_gen.go#L71: 	return fmt.Sprintf("KeyboardButtonRow%+v", Alias(*k))
		tl_keyboard_button_style_gen.go#L103: 	return fmt.Sprintf("KeyboardButtonStyle%+v", Alias(*k))
		tl_labeled_price_gen.go#L82: 	return fmt.Sprintf("LabeledPrice%+v", Alias(*l))
		tl_lang_pack_difference_gen.go#L86: 	return fmt.Sprintf("LangPackDifference%+v", Alias(*l))
		tl_lang_pack_language_gen.go#L137: 	return fmt.Sprintf("LangPackLanguage%+v", Alias(*l))
		tl_lang_pack_language_vector_gen.go#L68: 	return fmt.Sprintf("LangPackLanguageVector%+v", Alias(*vec))
		tl_lang_pack_string_class_vector_gen.go#L68: 	return fmt.Sprintf("LangPackStringClassVector%+v", Alias(*vec))
		tl_lang_pack_string_gen.go#L81: 	return fmt.Sprintf("LangPackString%+v", Alias(*l))
		tl_lang_pack_string_gen.go#L291: 	return fmt.Sprintf("LangPackStringPluralized%+v", Alias(*l))
		tl_lang_pack_string_gen.go#L666: 	return fmt.Sprintf("LangPackStringDeleted%+v", Alias(*l))
		tl_langpack_get_difference_gen.go#L85: 	return fmt.Sprintf("LangpackGetDifferenceRequest%+v", Alias(*g))
		tl_langpack_get_lang_pack_gen.go#L80: 	return fmt.Sprintf("LangpackGetLangPackRequest%+v", Alias(*g))
		tl_langpack_get_language_gen.go#L80: 	return fmt.Sprintf("LangpackGetLanguageRequest%+v", Alias(*g))
		tl_langpack_get_languages_gen.go#L71: 	return fmt.Sprintf("LangpackGetLanguagesRequest%+v", Alias(*g))
		tl_langpack_get_strings_gen.go#L85: 	return fmt.Sprintf("LangpackGetStringsRequest%+v", Alias(*g))
		tl_long_gen.go#L65: 	return fmt.Sprintf("Long%+v", Alias(*l))
		tl_long_vector_gen.go#L68: 	return fmt.Sprintf("LongVector%+v", Alias(*vec))
		tl_mask_coords_gen.go#L94: 	return fmt.Sprintf("MaskCoords%+v", Alias(*m))
		tl_media_area_coordinates_gen.go#L106: 	return fmt.Sprintf("MediaAreaCoordinates%+v", Alias(*m))
		tl_media_area_gen.go#L110: 	return fmt.Sprintf("MediaAreaVenue%+v", Alias(*m))
		tl_media_area_gen.go#L404: 	return fmt.Sprintf("InputMediaAreaVenue%+v", Alias(*i))
		tl_media_area_gen.go#L607: 	return fmt.Sprintf("MediaAreaGeoPoint%+v", Alias(*m))
		tl_media_area_gen.go#L849: 	return fmt.Sprintf("MediaAreaSuggestedReaction%+v", Alias(*m))
		tl_media_area_gen.go#L1095: 	return fmt.Sprintf("MediaAreaChannelPost%+v", Alias(*m))
		tl_media_area_gen.go#L1285: 	return fmt.Sprintf("InputMediaAreaChannelPost%+v", Alias(*i))
		tl_media_area_gen.go#L1478: 	return fmt.Sprintf("MediaAreaURL%+v", Alias(*m))
		tl_media_area_gen.go#L1657: 	return fmt.Sprintf("MediaAreaWeather%+v", Alias(*m))
		tl_media_area_gen.go#L1870: 	return fmt.Sprintf("MediaAreaStarGift%+v", Alias(*m))
		tl_message_action_gen.go#L71: 	return fmt.Sprintf("MessageActionEmpty%+v", Alias(*m))
		tl_message_action_gen.go#L183: 	return fmt.Sprintf("MessageActionChatCreate%+v", Alias(*m))
		tl_message_action_gen.go#L353: 	return fmt.Sprintf("MessageActionChatEditTitle%+v", Alias(*m))
		tl_message_action_gen.go#L488: 	return fmt.Sprintf("MessageActionChatEditPhoto%+v", Alias(*m))
		tl_message_action_gen.go#L623: 	return fmt.Sprintf("MessageActionChatDeletePhoto%+v", Alias(*m))
		tl_message_action_gen.go#L730: 	return fmt.Sprintf("MessageActionChatAddUser%+v", Alias(*m))
		tl_message_action_gen.go#L878: 	return fmt.Sprintf("MessageActionChatDeleteUser%+v", Alias(*m))
		tl_message_action_gen.go#L1013: 	return fmt.Sprintf("MessageActionChatJoinedByLink%+v", Alias(*m))
		tl_message_action_gen.go#L1148: 	return fmt.Sprintf("MessageActionChannelCreate%+v", Alias(*m))
		tl_message_action_gen.go#L1286: 	return fmt.Sprintf("MessageActionChatMigrateTo%+v", Alias(*m))
		tl_message_action_gen.go#L1429: 	return fmt.Sprintf("MessageActionChannelMigrateFrom%+v", Alias(*m))
		tl_message_action_gen.go#L1581: 	return fmt.Sprintf("MessageActionPinMessage%+v", Alias(*m))
		tl_message_action_gen.go#L1683: 	return fmt.Sprintf("MessageActionHistoryClear%+v", Alias(*m))
		tl_message_action_gen.go#L1795: 	return fmt.Sprintf("MessageActionGameScore%+v", Alias(*m))
		tl_message_action_gen.go#L2019: 	return fmt.Sprintf("MessageActionPaymentSentMe%+v", Alias(*m))
		tl_message_action_gen.go#L2471: 	return fmt.Sprintf("MessageActionPaymentSent%+v", Alias(*m))
		tl_message_action_gen.go#L2810: 	return fmt.Sprintf("MessageActionPhoneCall%+v", Alias(*m))
		tl_message_action_gen.go#L3070: 	return fmt.Sprintf("MessageActionScreenshotTaken%+v", Alias(*m))
		tl_message_action_gen.go#L3178: 	return fmt.Sprintf("MessageActionCustomAction%+v", Alias(*m))
		tl_message_action_gen.go#L3356: 	return fmt.Sprintf("MessageActionBotAllowed%+v", Alias(*m))
		tl_message_action_gen.go#L3638: 	return fmt.Sprintf("MessageActionSecureValuesSentMe%+v", Alias(*m))
		tl_message_action_gen.go#L3813: 	return fmt.Sprintf("MessageActionSecureValuesSent%+v", Alias(*m))
		tl_message_action_gen.go#L3966: 	return fmt.Sprintf("MessageActionContactSignUp%+v", Alias(*m))
		tl_message_action_gen.go#L4086: 	return fmt.Sprintf("MessageActionGeoProximityReached%+v", Alias(*m))
		tl_message_action_gen.go#L4293: 	return fmt.Sprintf("MessageActionGroupCall%+v", Alias(*m))
		tl_message_action_gen.go#L4495: 	return fmt.Sprintf("MessageActionInviteToGroupCall%+v", Alias(*m))
		tl_message_action_gen.go#L4692: 	return fmt.Sprintf("MessageActionSetMessagesTTL%+v", Alias(*m))
		tl_message_action_gen.go#L4889: 	return fmt.Sprintf("MessageActionGroupCallScheduled%+v", Alias(*m))
		tl_message_action_gen.go#L5051: 	return fmt.Sprintf("MessageActionSetChatTheme%+v", Alias(*m))
		tl_message_action_gen.go#L5186: 	return fmt.Sprintf("MessageActionChatJoinedByRequest%+v", Alias(*m))
		tl_message_action_gen.go#L5305: 	return fmt.Sprintf("MessageActionWebViewDataSentMe%+v", Alias(*m))
		tl_message_action_gen.go#L5471: 	return fmt.Sprintf("MessageActionWebViewDataSent%+v", Alias(*m))
		tl_message_action_gen.go#L5661: 	return fmt.Sprintf("MessageActionGiftPremium%+v", Alias(*m))
		tl_message_action_gen.go#L6008: 	return fmt.Sprintf("MessageActionTopicCreate%+v", Alias(*m))
		tl_message_action_gen.go#L6286: 	return fmt.Sprintf("MessageActionTopicEdit%+v", Alias(*m))
		tl_message_action_gen.go#L6579: 	return fmt.Sprintf("MessageActionSuggestProfilePhoto%+v", Alias(*m))
		tl_message_action_gen.go#L6731: 	return fmt.Sprintf("MessageActionRequestedPeer%+v", Alias(*m))
		tl_message_action_gen.go#L6947: 	return fmt.Sprintf("MessageActionSetChatWallPaper%+v", Alias(*m))
		tl_message_action_gen.go#L7254: 	return fmt.Sprintf("MessageActionGiftCode%+v", Alias(*m))
		tl_message_action_gen.go#L7751: 	return fmt.Sprintf("MessageActionGiveawayLaunch%+v", Alias(*m))
		tl_message_action_gen.go#L7942: 	return fmt.Sprintf("MessageActionGiveawayResults%+v", Alias(*m))
		tl_message_action_gen.go#L8148: 	return fmt.Sprintf("MessageActionBoostApply%+v", Alias(*m))
		tl_message_action_gen.go#L8296: 	return fmt.Sprintf("MessageActionRequestedPeerSentMe%+v", Alias(*m))
		tl_message_action_gen.go#L8512: 	return fmt.Sprintf("MessageActionPaymentRefunded%+v", Alias(*m))
		tl_message_action_gen.go#L8828: 	return fmt.Sprintf("MessageActionGiftStars%+v", Alias(*m))
		tl_message_action_gen.go#L9184: 	return fmt.Sprintf("MessageActionPrizeStars%+v", Alias(*m))
		tl_message_action_gen.go#L9613: 	return fmt.Sprintf("MessageActionStarGift%+v", Alias(*m))
		tl_message_action_gen.go#L10678: 	return fmt.Sprintf("MessageActionStarGiftUnique%+v", Alias(*m))
		tl_message_action_gen.go#L11506: 	return fmt.Sprintf("MessageActionPaidMessagesRefunded%+v", Alias(*m))
		tl_message_action_gen.go#L11688: 	return fmt.Sprintf("MessageActionPaidMessagesPrice%+v", Alias(*m))
		tl_message_action_gen.go#L11912: 	return fmt.Sprintf("MessageActionConferenceCall%+v", Alias(*m))
		tl_message_action_gen.go#L12266: 	return fmt.Sprintf("MessageActionTodoCompletions%+v", Alias(*m))
		tl_message_action_gen.go#L12452: 	return fmt.Sprintf("MessageActionTodoAppendTasks%+v", Alias(*m))
		tl_message_action_gen.go#L12640: 	return fmt.Sprintf("MessageActionSuggestedPostApproval%+v", Alias(*m))
		tl_message_action_gen.go#L12958: 	return fmt.Sprintf("MessageActionSuggestedPostSuccess%+v", Alias(*m))
		tl_message_action_gen.go#L13113: 	return fmt.Sprintf("MessageActionSuggestedPostRefund%+v", Alias(*m))
		tl_message_action_gen.go#L13307: 	return fmt.Sprintf("MessageActionGiftTon%+v", Alias(*m))
		tl_message_action_gen.go#L13567: 	return fmt.Sprintf("MessageActionSuggestBirthday%+v", Alias(*m))
		tl_message_action_gen.go#L13735: 	return fmt.Sprintf("MessageActionStarGiftPurchaseOffer%+v", Alias(*m))
		tl_message_action_gen.go#L14025: 	return fmt.Sprintf("MessageActionStarGiftPurchaseOfferDeclined%+v", Alias(*m))
		tl_message_action_gen.go#L14242: 	return fmt.Sprintf("MessageActionNewCreatorPending%+v", Alias(*m))
		tl_message_action_gen.go#L14383: 	return fmt.Sprintf("MessageActionChangeCreator%+v", Alias(*m))
		tl_message_action_gen.go#L14530: 	return fmt.Sprintf("MessageActionNoForwardsToggle%+v", Alias(*m))
		tl_message_action_gen.go#L14710: 	return fmt.Sprintf("MessageActionNoForwardsRequest%+v", Alias(*m))
		tl_message_action_gen.go#L14909: 	return fmt.Sprintf("MessageActionPollAppendAnswer%+v", Alias(*m))
		tl_message_action_gen.go#L15048: 	return fmt.Sprintf("MessageActionPollDeleteAnswer%+v", Alias(*m))
		tl_message_action_gen.go#L15187: 	return fmt.Sprintf("MessageActionManagedBotCreated%+v", Alias(*m))
		tl_message_entity_gen.go#L87: 	return fmt.Sprintf("MessageEntityUnknown%+v", Alias(*m))
		tl_message_entity_gen.go#L260: 	return fmt.Sprintf("MessageEntityMention%+v", Alias(*m))
		tl_message_entity_gen.go#L428: 	return fmt.Sprintf("MessageEntityHashtag%+v", Alias(*m))
		tl_message_entity_gen.go#L596: 	return fmt.Sprintf("MessageEntityBotCommand%+v", Alias(*m))
		tl_message_entity_gen.go#L770: 	return fmt.Sprintf("MessageEntityURL%+v", Alias(*m))
		tl_message_entity_gen.go#L941: 	return fmt.Sprintf("MessageEntityEmail%+v", Alias(*m))
		tl_message_entity_gen.go#L1109: 	return fmt.Sprintf("MessageEntityBold%+v", Alias(*m))
		tl_message_entity_gen.go#L1277: 	return fmt.Sprintf("MessageEntityItalic%+v", Alias(*m))
		tl_message_entity_gen.go#L1445: 	return fmt.Sprintf("MessageEntityCode%+v", Alias(*m))
		tl_message_entity_gen.go#L1619: 	return fmt.Sprintf("MessageEntityPre%+v", Alias(*m))
		tl_message_entity_gen.go#L1824: 	return fmt.Sprintf("MessageEntityTextURL%+v", Alias(*m))
		tl_message_entity_gen.go#L2024: 	return fmt.Sprintf("MessageEntityMentionName%+v", Alias(*m))
		tl_message_entity_gen.go#L2224: 	return fmt.Sprintf("InputMessageEntityMentionName%+v", Alias(*i))
		tl_message_entity_gen.go#L2419: 	return fmt.Sprintf("MessageEntityPhone%+v", Alias(*m))
		tl_message_entity_gen.go#L2587: 	return fmt.Sprintf("MessageEntityCashtag%+v", Alias(*m))
		tl_message_entity_gen.go#L2755: 	return fmt.Sprintf("MessageEntityUnderline%+v", Alias(*m))
		tl_message_entity_gen.go#L2923: 	return fmt.Sprintf("MessageEntityStrike%+v", Alias(*m))
		tl_message_entity_gen.go#L3091: 	return fmt.Sprintf("MessageEntityBankCard%+v", Alias(*m))
		tl_message_entity_gen.go#L3259: 	return fmt.Sprintf("MessageEntitySpoiler%+v", Alias(*m))
		tl_message_entity_gen.go#L3443: 	return fmt.Sprintf("MessageEntityCustomEmoji%+v", Alias(*m))
		tl_message_entity_gen.go#L3646: 	return fmt.Sprintf("MessageEntityBlockquote%+v", Alias(*m))
		tl_message_entity_gen.go#L3915: 	return fmt.Sprintf("MessageEntityFormattedDate%+v", Alias(*m))
		tl_message_entity_gen.go#L4291: 	return fmt.Sprintf("MessageEntityDiffInsert%+v", Alias(*m))
		tl_message_entity_gen.go#L4457: 	return fmt.Sprintf("MessageEntityDiffReplace%+v", Alias(*m))
		tl_message_entity_gen.go#L4640: 	return fmt.Sprintf("MessageEntityDiffDelete%+v", Alias(*m))
		tl_message_extended_media_gen.go#L113: 	return fmt.Sprintf("MessageExtendedMediaPreview%+v", Alias(*m))
		tl_message_extended_media_gen.go#L411: 	return fmt.Sprintf("MessageExtendedMedia%+v", Alias(*m))
		tl_message_fwd_header_gen.go#L198: 	return fmt.Sprintf("MessageFwdHeader%+v", Alias(*m))
		tl_message_gen.go#L91: 	return fmt.Sprintf("MessageEmpty%+v", Alias(*m))
		tl_message_gen.go#L705: 	return fmt.Sprintf("Message%+v", Alias(*m))
		tl_message_gen.go#L2788: 	return fmt.Sprintf("MessageService%+v", Alias(*m))
		tl_message_media_gen.go#L71: 	return fmt.Sprintf("MessageMediaEmpty%+v", Alias(*m))
		tl_message_media_gen.go#L212: 	return fmt.Sprintf("MessageMediaPhoto%+v", Alias(*m))
		tl_message_media_gen.go#L531: 	return fmt.Sprintf("MessageMediaGeo%+v", Alias(*m))
		tl_message_media_gen.go#L691: 	return fmt.Sprintf("MessageMediaContact%+v", Alias(*m))
		tl_message_media_gen.go#L909: 	return fmt.Sprintf("MessageMediaUnsupported%+v", Alias(*m))
		tl_message_media_gen.go#L1080: 	return fmt.Sprintf("MessageMediaDocument%+v", Alias(*m))
		tl_message_media_gen.go#L1631: 	return fmt.Sprintf("MessageMediaWebPage%+v", Alias(*m))
		tl_message_media_gen.go#L1930: 	return fmt.Sprintf("MessageMediaVenue%+v", Alias(*m))
		tl_message_media_gen.go#L2180: 	return fmt.Sprintf("MessageMediaGame%+v", Alias(*m))
		tl_message_media_gen.go#L2391: 	return fmt.Sprintf("MessageMediaInvoice%+v", Alias(*m))
		tl_message_media_gen.go#L2857: 	return fmt.Sprintf("MessageMediaGeoLive%+v", Alias(*m))
		tl_message_media_gen.go#L3134: 	return fmt.Sprintf("MessageMediaPoll%+v", Alias(*m))
		tl_message_media_gen.go#L3376: 	return fmt.Sprintf("MessageMediaDice%+v", Alias(*m))
		tl_message_media_gen.go#L3621: 	return fmt.Sprintf("MessageMediaStory%+v", Alias(*m))
		tl_message_media_gen.go#L3948: 	return fmt.Sprintf("MessageMediaGiveaway%+v", Alias(*m))
		tl_message_media_gen.go#L4477: 	return fmt.Sprintf("MessageMediaGiveawayResults%+v", Alias(*m))
		tl_message_media_gen.go#L4987: 	return fmt.Sprintf("MessageMediaPaidMedia%+v", Alias(*m))
		tl_message_media_gen.go#L5185: 	return fmt.Sprintf("MessageMediaToDo%+v", Alias(*m))
		tl_message_media_gen.go#L5401: 	return fmt.Sprintf("MessageMediaVideoStream%+v", Alias(*m))
		tl_message_peer_reaction_gen.go#L114: 	return fmt.Sprintf("MessagePeerReaction%+v", Alias(*m))
		tl_message_peer_vote_gen.go#L86: 	return fmt.Sprintf("MessagePeerVote%+v", Alias(*m))
		tl_message_peer_vote_gen.go#L279: 	return fmt.Sprintf("MessagePeerVoteInputOption%+v", Alias(*m))
		tl_message_peer_vote_gen.go#L451: 	return fmt.Sprintf("MessagePeerVoteMultiple%+v", Alias(*m))
		tl_message_range_gen.go#L76: 	return fmt.Sprintf("MessageRange%+v", Alias(*m))
		tl_message_range_vector_gen.go#L68: 	return fmt.Sprintf("MessageRangeVector%+v", Alias(*vec))
		tl_message_reactions_gen.go#L129: 	return fmt.Sprintf("MessageReactions%+v", Alias(*m))
		tl_message_reactor_gen.go#L107: 	return fmt.Sprintf("MessageReactor%+v", Alias(*m))
		tl_message_replies_gen.go#L133: 	return fmt.Sprintf("MessageReplies%+v", Alias(*m))
		tl_message_reply_header_gen.go#L193: 	return fmt.Sprintf("MessageReplyHeader%+v", Alias(*m))
		tl_message_reply_header_gen.go#L893: 	return fmt.Sprintf("MessageReplyStoryHeader%+v", Alias(*m))
		tl_message_report_option_gen.go#L80: 	return fmt.Sprintf("MessageReportOption%+v", Alias(*m))
		tl_message_views_gen.go#L98: 	return fmt.Sprintf("MessageViews%+v", Alias(*m))
		tl_messages_accept_encryption_gen.go#L84: 	return fmt.Sprintf("MessagesAcceptEncryptionRequest%+v", Alias(*a))
		tl_messages_accept_url_auth_gen.go#L137: 	return fmt.Sprintf("MessagesAcceptURLAuthRequest%+v", Alias(*a))
		tl_messages_add_chat_user_gen.go#L81: 	return fmt.Sprintf("MessagesAddChatUserRequest%+v", Alias(*a))
		tl_messages_add_poll_answer_gen.go#L80: 	return fmt.Sprintf("MessagesAddPollAnswerRequest%+v", Alias(*a))
		tl_messages_affected_found_messages_gen.go#L92: 	return fmt.Sprintf("MessagesAffectedFoundMessages%+v", Alias(*a))
		tl_messages_affected_history_gen.go#L83: 	return fmt.Sprintf("MessagesAffectedHistory%+v", Alias(*a))
		tl_messages_affected_messages_gen.go#L82: 	return fmt.Sprintf("MessagesAffectedMessages%+v", Alias(*a))
		tl_messages_all_stickers_gen.go#L71: 	return fmt.Sprintf("MessagesAllStickersNotModified%+v", Alias(*a))
		tl_messages_all_stickers_gen.go#L186: 	return fmt.Sprintf("MessagesAllStickers%+v", Alias(*a))
		tl_messages_append_todo_list_gen.go#L84: 	return fmt.Sprintf("MessagesAppendTodoListRequest%+v", Alias(*a))
		tl_messages_archived_stickers_gen.go#L76: 	return fmt.Sprintf("MessagesArchivedStickers%+v", Alias(*a))
		tl_messages_available_effects_gen.go#L74: 	return fmt.Sprintf("MessagesAvailableEffectsNotModified%+v", Alias(*a))
		tl_messages_available_effects_gen.go#L197: 	return fmt.Sprintf("MessagesAvailableEffects%+v", Alias(*a))
		tl_messages_available_reactions_gen.go#L71: 	return fmt.Sprintf("MessagesAvailableReactionsNotModified%+v", Alias(*a))
		tl_messages_available_reactions_gen.go#L192: 	return fmt.Sprintf("MessagesAvailableReactions%+v", Alias(*a))
		tl_messages_bot_app_gen.go#L102: 	return fmt.Sprintf("MessagesBotApp%+v", Alias(*b))
		tl_messages_bot_callback_answer_gen.go#L108: 	return fmt.Sprintf("MessagesBotCallbackAnswer%+v", Alias(*b))
		tl_messages_bot_prepared_inline_message_gen.go#L84: 	return fmt.Sprintf("MessagesBotPreparedInlineMessage%+v", Alias(*b))
		tl_messages_bot_results_gen.go#L125: 	return fmt.Sprintf("MessagesBotResults%+v", Alias(*b))
		tl_messages_chat_admins_with_invites_gen.go#L76: 	return fmt.Sprintf("MessagesChatAdminsWithInvites%+v", Alias(*c))
		tl_messages_chat_full_gen.go#L87: 	return fmt.Sprintf("MessagesChatFull%+v", Alias(*c))
		tl_messages_chat_invite_importers_gen.go#L81: 	return fmt.Sprintf("MessagesChatInviteImporters%+v", Alias(*c))
		tl_messages_chat_invite_join_result_gen.go#L75: 	return fmt.Sprintf("MessagesChatInviteJoinResultOk%+v", Alias(*c))
		tl_messages_chat_invite_join_result_gen.go#L224: 	return fmt.Sprintf("MessagesChatInviteJoinResultWebView%+v", Alias(*c))
		tl_messages_chats_gen.go#L76: 	return fmt.Sprintf("MessagesChats%+v", Alias(*c))
		tl_messages_chats_gen.go#L242: 	return fmt.Sprintf("MessagesChatsSlice%+v", Alias(*c))
		tl_messages_check_chat_invite_gen.go#L74: 	return fmt.Sprintf("MessagesCheckChatInviteRequest%+v", Alias(*c))
		tl_messages_check_history_import_gen.go#L75: 	return fmt.Sprintf("MessagesCheckHistoryImportRequest%+v", Alias(*c))
		tl_messages_check_history_import_peer_gen.go#L82: 	return fmt.Sprintf("MessagesCheckHistoryImportPeerRequest%+v", Alias(*c))
		tl_messages_check_quick_reply_shortcut_gen.go#L76: 	return fmt.Sprintf("MessagesCheckQuickReplyShortcutRequest%+v", Alias(*c))
		tl_messages_check_url_auth_match_code_gen.go#L92: 	return fmt.Sprintf("MessagesCheckURLAuthMatchCodeRequest%+v", Alias(*c))
		tl_messages_checked_history_import_peer_gen.go#L78: 	return fmt.Sprintf("MessagesCheckedHistoryImportPeer%+v", Alias(*c))
		tl_messages_clear_all_drafts_gen.go#L69: 	return fmt.Sprintf("MessagesClearAllDraftsRequest%+v", Alias(*c))
		tl_messages_clear_recent_reactions_gen.go#L69: 	return fmt.Sprintf("MessagesClearRecentReactionsRequest%+v", Alias(*c))
		tl_messages_clear_recent_stickers_gen.go#L79: 	return fmt.Sprintf("MessagesClearRecentStickersRequest%+v", Alias(*c))
		tl_messages_click_sponsored_message_gen.go#L93: 	return fmt.Sprintf("MessagesClickSponsoredMessageRequest%+v", Alias(*c))
		tl_messages_compose_message_with_a_i_gen.go#L99: 	return fmt.Sprintf("MessagesComposeMessageWithAIRequest%+v", Alias(*c))
		tl_messages_composed_message_with_a_i_gen.go#L82: 	return fmt.Sprintf("MessagesComposedMessageWithAI%+v", Alias(*c))
		tl_messages_create_chat_gen.go#L96: 	return fmt.Sprintf("MessagesCreateChatRequest%+v", Alias(*c))
		tl_messages_create_forum_topic_gen.go#L127: 	return fmt.Sprintf("MessagesCreateForumTopicRequest%+v", Alias(*c))
		tl_messages_decline_url_auth_gen.go#L80: 	return fmt.Sprintf("MessagesDeclineURLAuthRequest%+v", Alias(*d))
		tl_messages_delete_chat_gen.go#L74: 	return fmt.Sprintf("MessagesDeleteChatRequest%+v", Alias(*d))
		tl_messages_delete_chat_user_gen.go#L89: 	return fmt.Sprintf("MessagesDeleteChatUserRequest%+v", Alias(*d))
		tl_messages_delete_exported_chat_invite_gen.go#L76: 	return fmt.Sprintf("MessagesDeleteExportedChatInviteRequest%+v", Alias(*d))
		tl_messages_delete_fact_check_gen.go#L82: 	return fmt.Sprintf("MessagesDeleteFactCheckRequest%+v", Alias(*d))
		tl_messages_delete_history_gen.go#L109: 	return fmt.Sprintf("MessagesDeleteHistoryRequest%+v", Alias(*d))
		tl_messages_delete_messages_gen.go#L84: 	return fmt.Sprintf("MessagesDeleteMessagesRequest%+v", Alias(*d))
		tl_messages_delete_participant_reaction_gen.go#L80: 	return fmt.Sprintf("MessagesDeleteParticipantReactionRequest%+v", Alias(*d))
		tl_messages_delete_participant_reactions_gen.go#L75: 	return fmt.Sprintf("MessagesDeleteParticipantReactionsRequest%+v", Alias(*d))
		tl_messages_delete_phone_call_history_gen.go#L79: 	return fmt.Sprintf("MessagesDeletePhoneCallHistoryRequest%+v", Alias(*d))
		tl_messages_delete_poll_answer_gen.go#L80: 	return fmt.Sprintf("MessagesDeletePollAnswerRequest%+v", Alias(*d))
		tl_messages_delete_quick_reply_messages_gen.go#L84: 	return fmt.Sprintf("MessagesDeleteQuickReplyMessagesRequest%+v", Alias(*d))
		tl_messages_delete_quick_reply_shortcut_gen.go#L82: 	return fmt.Sprintf("MessagesDeleteQuickReplyShortcutRequest%+v", Alias(*d))
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L76: 	return fmt.Sprintf("MessagesDeleteRevokedExportedChatInvitesRequest%+v", Alias(*d))
		tl_messages_delete_saved_history_gen.go#L118: 	return fmt.Sprintf("MessagesDeleteSavedHistoryRequest%+v", Alias(*d))
		tl_messages_delete_scheduled_messages_gen.go#L76: 	return fmt.Sprintf("MessagesDeleteScheduledMessagesRequest%+v", Alias(*d))
		tl_messages_delete_topic_history_gen.go#L80: 	return fmt.Sprintf("MessagesDeleteTopicHistoryRequest%+v", Alias(*d))
		tl_messages_dh_config_gen.go#L76: 	return fmt.Sprintf("MessagesDhConfigNotModified%+v", Alias(*d))
		tl_messages_dh_config_gen.go#L232: 	return fmt.Sprintf("MessagesDhConfig%+v", Alias(*d))
		tl_messages_dialog_filters_gen.go#L90: 	return fmt.Sprintf("MessagesDialogFilters%+v", Alias(*d))
		tl_messages_dialogs_gen.go#L91: 	return fmt.Sprintf("MessagesDialogs%+v", Alias(*d))
		tl_messages_dialogs_gen.go#L404: 	return fmt.Sprintf("MessagesDialogsSlice%+v", Alias(*d))
		tl_messages_dialogs_gen.go#L719: 	return fmt.Sprintf("MessagesDialogsNotModified%+v", Alias(*d))
		tl_messages_discard_encryption_gen.go#L84: 	return fmt.Sprintf("MessagesDiscardEncryptionRequest%+v", Alias(*d))
		tl_messages_discussion_message_gen.go#L128: 	return fmt.Sprintf("MessagesDiscussionMessage%+v", Alias(*d))
		tl_messages_edit_chat_about_gen.go#L82: 	return fmt.Sprintf("MessagesEditChatAboutRequest%+v", Alias(*e))
		tl_messages_edit_chat_admin_gen.go#L84: 	return fmt.Sprintf("MessagesEditChatAdminRequest%+v", Alias(*e))
		tl_messages_edit_chat_creator_gen.go#L88: 	return fmt.Sprintf("MessagesEditChatCreatorRequest%+v", Alias(*e))
		tl_messages_edit_chat_default_banned_rights_gen.go#L79: 	return fmt.Sprintf("MessagesEditChatDefaultBannedRightsRequest%+v", Alias(*e))
		tl_messages_edit_chat_participant_rank_gen.go#L84: 	return fmt.Sprintf("MessagesEditChatParticipantRankRequest%+v", Alias(*e))
		tl_messages_edit_chat_photo_gen.go#L76: 	return fmt.Sprintf("MessagesEditChatPhotoRequest%+v", Alias(*e))
		tl_messages_edit_chat_title_gen.go#L76: 	return fmt.Sprintf("MessagesEditChatTitleRequest%+v", Alias(*e))
		tl_messages_edit_exported_chat_invite_gen.go#L118: 	return fmt.Sprintf("MessagesEditExportedChatInviteRequest%+v", Alias(*e))
		tl_messages_edit_fact_check_gen.go#L90: 	return fmt.Sprintf("MessagesEditFactCheckRequest%+v", Alias(*e))
		tl_messages_edit_forum_topic_gen.go#L124: 	return fmt.Sprintf("MessagesEditForumTopicRequest%+v", Alias(*e))
		tl_messages_edit_inline_bot_message_gen.go#L128: 	return fmt.Sprintf("MessagesEditInlineBotMessageRequest%+v", Alias(*e))
		tl_messages_edit_message_gen.go#L165: 	return fmt.Sprintf("MessagesEditMessageRequest%+v", Alias(*e))
		tl_messages_edit_quick_reply_shortcut_gen.go#L84: 	return fmt.Sprintf("MessagesEditQuickReplyShortcutRequest%+v", Alias(*e))
		tl_messages_emoji_game_info_gen.go#L70: 	return fmt.Sprintf("MessagesEmojiGameUnavailable%+v", Alias(*e))
		tl_messages_emoji_game_info_gen.go#L206: 	return fmt.Sprintf("MessagesEmojiGameDiceInfo%+v", Alias(*e))
		tl_messages_emoji_game_outcome_gen.go#L80: 	return fmt.Sprintf("MessagesEmojiGameOutcome%+v", Alias(*e))
		tl_messages_emoji_groups_gen.go#L74: 	return fmt.Sprintf("MessagesEmojiGroupsNotModified%+v", Alias(*e))
		tl_messages_emoji_groups_gen.go#L195: 	return fmt.Sprintf("MessagesEmojiGroups%+v", Alias(*e))
		tl_messages_export_chat_invite_gen.go#L124: 	return fmt.Sprintf("MessagesExportChatInviteRequest%+v", Alias(*e))
		tl_messages_exported_chat_invite_gen.go#L81: 	return fmt.Sprintf("MessagesExportedChatInvite%+v", Alias(*e))
		tl_messages_exported_chat_invite_gen.go#L276: 	return fmt.Sprintf("MessagesExportedChatInviteReplaced%+v", Alias(*e))
		tl_messages_exported_chat_invites_gen.go#L81: 	return fmt.Sprintf("MessagesExportedChatInvites%+v", Alias(*e))
		tl_messages_fave_sticker_gen.go#L76: 	return fmt.Sprintf("MessagesFaveStickerRequest%+v", Alias(*f))
		tl_messages_faved_stickers_gen.go#L71: 	return fmt.Sprintf("MessagesFavedStickersNotModified%+v", Alias(*f))
		tl_messages_faved_stickers_gen.go#L191: 	return fmt.Sprintf("MessagesFavedStickers%+v", Alias(*f))
		tl_messages_featured_stickers_gen.go#L76: 	return fmt.Sprintf("MessagesFeaturedStickersNotModified%+v", Alias(*f))
		tl_messages_featured_stickers_gen.go#L242: 	return fmt.Sprintf("MessagesFeaturedStickers%+v", Alias(*f))
		tl_messages_filter_gen.go#L71: 	return fmt.Sprintf("InputMessagesFilterEmpty%+v", Alias(*i))
		tl_messages_filter_gen.go#L173: 	return fmt.Sprintf("InputMessagesFilterPhotos%+v", Alias(*i))
		tl_messages_filter_gen.go#L275: 	return fmt.Sprintf("InputMessagesFilterVideo%+v", Alias(*i))
		tl_messages_filter_gen.go#L377: 	return fmt.Sprintf("InputMessagesFilterPhotoVideo%+v", Alias(*i))
		tl_messages_filter_gen.go#L479: 	return fmt.Sprintf("InputMessagesFilterDocument%+v", Alias(*i))
		tl_messages_filter_gen.go#L581: 	return fmt.Sprintf("InputMessagesFilterURL%+v", Alias(*i))
		tl_messages_filter_gen.go#L683: 	return fmt.Sprintf("InputMessagesFilterGif%+v", Alias(*i))
		tl_messages_filter_gen.go#L785: 	return fmt.Sprintf("InputMessagesFilterVoice%+v", Alias(*i))
		tl_messages_filter_gen.go#L887: 	return fmt.Sprintf("InputMessagesFilterMusic%+v", Alias(*i))
		tl_messages_filter_gen.go#L989: 	return fmt.Sprintf("InputMessagesFilterChatPhotos%+v", Alias(*i))
		tl_messages_filter_gen.go#L1104: 	return fmt.Sprintf("InputMessagesFilterPhoneCalls%+v", Alias(*i))
		tl_messages_filter_gen.go#L1255: 	return fmt.Sprintf("InputMessagesFilterRoundVoice%+v", Alias(*i))
		tl_messages_filter_gen.go#L1357: 	return fmt.Sprintf("InputMessagesFilterRoundVideo%+v", Alias(*i))
		tl_messages_filter_gen.go#L1462: 	return fmt.Sprintf("InputMessagesFilterMyMentions%+v", Alias(*i))
		tl_messages_filter_gen.go#L1564: 	return fmt.Sprintf("InputMessagesFilterGeo%+v", Alias(*i))
		tl_messages_filter_gen.go#L1666: 	return fmt.Sprintf("InputMessagesFilterContacts%+v", Alias(*i))
		tl_messages_filter_gen.go#L1768: 	return fmt.Sprintf("InputMessagesFilterPinned%+v", Alias(*i))
		tl_messages_filter_gen.go#L1869: 	return fmt.Sprintf("InputMessagesFilterPoll%+v", Alias(*i))
		tl_messages_forum_topics_gen.go#L130: 	return fmt.Sprintf("MessagesForumTopics%+v", Alias(*f))
		tl_messages_forward_messages_gen.go#L236: 	return fmt.Sprintf("MessagesForwardMessagesRequest%+v", Alias(*f))
		tl_messages_found_sticker_sets_gen.go#L71: 	return fmt.Sprintf("MessagesFoundStickerSetsNotModified%+v", Alias(*f))
		tl_messages_found_sticker_sets_gen.go#L186: 	return fmt.Sprintf("MessagesFoundStickerSets%+v", Alias(*f))
		tl_messages_found_stickers_gen.go#L89: 	return fmt.Sprintf("MessagesFoundStickersNotModified%+v", Alias(*f))
		tl_messages_found_stickers_gen.go#L282: 	return fmt.Sprintf("MessagesFoundStickers%+v", Alias(*f))
		tl_messages_get_admins_with_invites_gen.go#L71: 	return fmt.Sprintf("MessagesGetAdminsWithInvitesRequest%+v", Alias(*g))
		tl_messages_get_all_drafts_gen.go#L71: 	return fmt.Sprintf("MessagesGetAllDraftsRequest%+v", Alias(*g))
		tl_messages_get_all_stickers_gen.go#L74: 	return fmt.Sprintf("MessagesGetAllStickersRequest%+v", Alias(*g))
		tl_messages_get_archived_stickers_gen.go#L106: 	return fmt.Sprintf("MessagesGetArchivedStickersRequest%+v", Alias(*g))
		tl_messages_get_attach_menu_bot_gen.go#L75: 	return fmt.Sprintf("MessagesGetAttachMenuBotRequest%+v", Alias(*g))
		tl_messages_get_attach_menu_bots_gen.go#L77: 	return fmt.Sprintf("MessagesGetAttachMenuBotsRequest%+v", Alias(*g))
		tl_messages_get_attached_stickers_gen.go#L71: 	return fmt.Sprintf("MessagesGetAttachedStickersRequest%+v", Alias(*g))
		tl_messages_get_available_effects_gen.go#L77: 	return fmt.Sprintf("MessagesGetAvailableEffectsRequest%+v", Alias(*g))
		tl_messages_get_available_reactions_gen.go#L77: 	return fmt.Sprintf("MessagesGetAvailableReactionsRequest%+v", Alias(*g))
		tl_messages_get_bot_app_gen.go#L85: 	return fmt.Sprintf("MessagesGetBotAppRequest%+v", Alias(*g))
		tl_messages_get_bot_callback_answer_gen.go#L108: 	return fmt.Sprintf("MessagesGetBotCallbackAnswerRequest%+v", Alias(*g))
		tl_messages_get_chat_invite_importers_gen.go#L138: 	return fmt.Sprintf("MessagesGetChatInviteImportersRequest%+v", Alias(*g))
		tl_messages_get_chats_gen.go#L71: 	return fmt.Sprintf("MessagesGetChatsRequest%+v", Alias(*g))
		tl_messages_get_common_chats_gen.go#L87: 	return fmt.Sprintf("MessagesGetCommonChatsRequest%+v", Alias(*g))
		tl_messages_get_custom_emoji_documents_gen.go#L83: 	return fmt.Sprintf("MessagesGetCustomEmojiDocumentsRequest%+v", Alias(*g))
		tl_messages_get_default_history_ttl_gen.go#L66: 	return fmt.Sprintf("MessagesGetDefaultHistoryTTLRequest%+v", Alias(*g))
		tl_messages_get_default_tag_reactions_gen.go#L77: 	return fmt.Sprintf("MessagesGetDefaultTagReactionsRequest%+v", Alias(*g))
		tl_messages_get_dh_config_gen.go#L80: 	return fmt.Sprintf("MessagesGetDhConfigRequest%+v", Alias(*g))
		tl_messages_get_dialog_filters_gen.go#L69: 	return fmt.Sprintf("MessagesGetDialogFiltersRequest%+v", Alias(*g))
		tl_messages_get_dialog_unread_marks_gen.go#L82: 	return fmt.Sprintf("MessagesGetDialogUnreadMarksRequest%+v", Alias(*g))
		tl_messages_get_dialogs_gen.go#L127: 	return fmt.Sprintf("MessagesGetDialogsRequest%+v", Alias(*g))
		tl_messages_get_discussion_message_gen.go#L84: 	return fmt.Sprintf("MessagesGetDiscussionMessageRequest%+v", Alias(*g))
		tl_messages_get_document_by_hash_gen.go#L81: 	return fmt.Sprintf("MessagesGetDocumentByHashRequest%+v", Alias(*g))
		tl_messages_get_emoji_game_info_gen.go#L65: 	return fmt.Sprintf("MessagesGetEmojiGameInfoRequest%+v", Alias(*g))
		tl_messages_get_emoji_groups_gen.go#L77: 	return fmt.Sprintf("MessagesGetEmojiGroupsRequest%+v", Alias(*g))
		tl_messages_get_emoji_keywords_difference_gen.go#L79: 	return fmt.Sprintf("MessagesGetEmojiKeywordsDifferenceRequest%+v", Alias(*g))
		tl_messages_get_emoji_keywords_gen.go#L74: 	return fmt.Sprintf("MessagesGetEmojiKeywordsRequest%+v", Alias(*g))
		tl_messages_get_emoji_keywords_languages_gen.go#L77: 	return fmt.Sprintf("MessagesGetEmojiKeywordsLanguagesRequest%+v", Alias(*g))
		tl_messages_get_emoji_profile_photo_groups_gen.go#L79: 	return fmt.Sprintf("MessagesGetEmojiProfilePhotoGroupsRequest%+v", Alias(*g))
		tl_messages_get_emoji_status_groups_gen.go#L79: 	return fmt.Sprintf("MessagesGetEmojiStatusGroupsRequest%+v", Alias(*g))
		tl_messages_get_emoji_sticker_groups_gen.go#L77: 	return fmt.Sprintf("MessagesGetEmojiStickerGroupsRequest%+v", Alias(*g))
		tl_messages_get_emoji_stickers_gen.go#L77: 	return fmt.Sprintf("MessagesGetEmojiStickersRequest%+v", Alias(*g))
		tl_messages_get_emoji_url_gen.go#L76: 	return fmt.Sprintf("MessagesGetEmojiURLRequest%+v", Alias(*g))
		tl_messages_get_exported_chat_invite_gen.go#L76: 	return fmt.Sprintf("MessagesGetExportedChatInviteRequest%+v", Alias(*g))
		tl_messages_get_exported_chat_invites_gen.go#L117: 	return fmt.Sprintf("MessagesGetExportedChatInvitesRequest%+v", Alias(*g))
		tl_messages_get_extended_media_gen.go#L83: 	return fmt.Sprintf("MessagesGetExtendedMediaRequest%+v", Alias(*g))
		tl_messages_get_fact_check_gen.go#L82: 	return fmt.Sprintf("MessagesGetFactCheckRequest%+v", Alias(*g))
		tl_messages_get_faved_stickers_gen.go#L74: 	return fmt.Sprintf("MessagesGetFavedStickersRequest%+v", Alias(*g))
		tl_messages_get_featured_emoji_stickers_gen.go#L74: 	return fmt.Sprintf("MessagesGetFeaturedEmojiStickersRequest%+v", Alias(*g))
		tl_messages_get_featured_stickers_gen.go#L74: 	return fmt.Sprintf("MessagesGetFeaturedStickersRequest%+v", Alias(*g))
		tl_messages_get_forum_topics_by_id_gen.go#L77: 	return fmt.Sprintf("MessagesGetForumTopicsByIDRequest%+v", Alias(*g))
		tl_messages_get_forum_topics_gen.go#L127: 	return fmt.Sprintf("MessagesGetForumTopicsRequest%+v", Alias(*g))
		tl_messages_get_full_chat_gen.go#L77: 	return fmt.Sprintf("MessagesGetFullChatRequest%+v", Alias(*g))
		tl_messages_get_future_chat_creator_after_leave_gen.go#L76: 	return fmt.Sprintf("MessagesGetFutureChatCreatorAfterLeaveRequest%+v", Alias(*g))
		tl_messages_get_game_high_scores_gen.go#L81: 	return fmt.Sprintf("MessagesGetGameHighScoresRequest%+v", Alias(*g))
		tl_messages_get_history_gen.go#L112: 	return fmt.Sprintf("MessagesGetHistoryRequest%+v", Alias(*g))
		tl_messages_get_inline_bot_results_gen.go#L101: 	return fmt.Sprintf("MessagesGetInlineBotResultsRequest%+v", Alias(*g))
		tl_messages_get_inline_game_high_scores_gen.go#L76: 	return fmt.Sprintf("MessagesGetInlineGameHighScoresRequest%+v", Alias(*g))
		tl_messages_get_mask_stickers_gen.go#L74: 	return fmt.Sprintf("MessagesGetMaskStickersRequest%+v", Alias(*g))
		tl_messages_get_message_edit_data_gen.go#L76: 	return fmt.Sprintf("MessagesGetMessageEditDataRequest%+v", Alias(*g))
		tl_messages_get_message_reactions_list_gen.go#L113: 	return fmt.Sprintf("MessagesGetMessageReactionsListRequest%+v", Alias(*g))
		tl_messages_get_message_read_participants_gen.go#L84: 	return fmt.Sprintf("MessagesGetMessageReadParticipantsRequest%+v", Alias(*g))
		tl_messages_get_messages_gen.go#L71: 	return fmt.Sprintf("MessagesGetMessagesRequest%+v", Alias(*g))
		tl_messages_get_messages_reactions_gen.go#L79: 	return fmt.Sprintf("MessagesGetMessagesReactionsRequest%+v", Alias(*g))
		tl_messages_get_messages_views_gen.go#L84: 	return fmt.Sprintf("MessagesGetMessagesViewsRequest%+v", Alias(*g))
		tl_messages_get_my_stickers_gen.go#L85: 	return fmt.Sprintf("MessagesGetMyStickersRequest%+v", Alias(*g))
		tl_messages_get_old_featured_stickers_gen.go#L87: 	return fmt.Sprintf("MessagesGetOldFeaturedStickersRequest%+v", Alias(*g))
		tl_messages_get_onlines_gen.go#L71: 	return fmt.Sprintf("MessagesGetOnlinesRequest%+v", Alias(*g))
		tl_messages_get_outbox_read_date_gen.go#L93: 	return fmt.Sprintf("MessagesGetOutboxReadDateRequest%+v", Alias(*g))
		tl_messages_get_paid_reaction_privacy_gen.go#L71: 	return fmt.Sprintf("MessagesGetPaidReactionPrivacyRequest%+v", Alias(*g))
		tl_messages_get_peer_dialogs_gen.go#L71: 	return fmt.Sprintf("MessagesGetPeerDialogsRequest%+v", Alias(*g))
		tl_messages_get_peer_settings_gen.go#L71: 	return fmt.Sprintf("MessagesGetPeerSettingsRequest%+v", Alias(*g))
		tl_messages_get_personal_channel_history_gen.go#L90: 	return fmt.Sprintf("MessagesGetPersonalChannelHistoryRequest%+v", Alias(*g))
		tl_messages_get_pinned_dialogs_gen.go#L74: 	return fmt.Sprintf("MessagesGetPinnedDialogsRequest%+v", Alias(*g))
		tl_messages_get_pinned_saved_dialogs_gen.go#L69: 	return fmt.Sprintf("MessagesGetPinnedSavedDialogsRequest%+v", Alias(*g))
		tl_messages_get_poll_results_gen.go#L81: 	return fmt.Sprintf("MessagesGetPollResultsRequest%+v", Alias(*g))
		tl_messages_get_poll_votes_gen.go#L110: 	return fmt.Sprintf("MessagesGetPollVotesRequest%+v", Alias(*g))
		tl_messages_get_prepared_inline_message_gen.go#L88: 	return fmt.Sprintf("MessagesGetPreparedInlineMessageRequest%+v", Alias(*g))
		tl_messages_get_quick_replies_gen.go#L78: 	return fmt.Sprintf("MessagesGetQuickRepliesRequest%+v", Alias(*g))
		tl_messages_get_quick_reply_messages_gen.go#L98: 	return fmt.Sprintf("MessagesGetQuickReplyMessagesRequest%+v", Alias(*g))
		tl_messages_get_recent_locations_gen.go#L87: 	return fmt.Sprintf("MessagesGetRecentLocationsRequest%+v", Alias(*g))
		tl_messages_get_recent_reactions_gen.go#L85: 	return fmt.Sprintf("MessagesGetRecentReactionsRequest%+v", Alias(*g))
		tl_messages_get_recent_stickers_gen.go#L87: 	return fmt.Sprintf("MessagesGetRecentStickersRequest%+v", Alias(*g))
		tl_messages_get_replies_gen.go#L128: 	return fmt.Sprintf("MessagesGetRepliesRequest%+v", Alias(*g))
		tl_messages_get_rich_message_gen.go#L75: 	return fmt.Sprintf("MessagesGetRichMessageRequest%+v", Alias(*g))
		tl_messages_get_saved_dialogs_by_id_gen.go#L94: 	return fmt.Sprintf("MessagesGetSavedDialogsByIDRequest%+v", Alias(*g))
		tl_messages_get_saved_dialogs_gen.go#L129: 	return fmt.Sprintf("MessagesGetSavedDialogsRequest%+v", Alias(*g))
		tl_messages_get_saved_gifs_gen.go#L74: 	return fmt.Sprintf("MessagesGetSavedGifsRequest%+v", Alias(*g))
		tl_messages_get_saved_history_gen.go#L132: 	return fmt.Sprintf("MessagesGetSavedHistoryRequest%+v", Alias(*g))
		tl_messages_get_saved_reaction_tags_gen.go#L95: 	return fmt.Sprintf("MessagesGetSavedReactionTagsRequest%+v", Alias(*g))
		tl_messages_get_scheduled_history_gen.go#L82: 	return fmt.Sprintf("MessagesGetScheduledHistoryRequest%+v", Alias(*g))
		tl_messages_get_scheduled_messages_gen.go#L76: 	return fmt.Sprintf("MessagesGetScheduledMessagesRequest%+v", Alias(*g))
		tl_messages_get_search_counters_gen.go#L108: 	return fmt.Sprintf("MessagesGetSearchCountersRequest%+v", Alias(*g))
		tl_messages_get_search_results_calendar_gen.go#L118: 	return fmt.Sprintf("MessagesGetSearchResultsCalendarRequest%+v", Alias(*g))
		tl_messages_get_search_results_positions_gen.go#L118: 	return fmt.Sprintf("MessagesGetSearchResultsPositionsRequest%+v", Alias(*g))
		tl_messages_get_split_ranges_gen.go#L66: 	return fmt.Sprintf("MessagesGetSplitRangesRequest%+v", Alias(*g))
		tl_messages_get_sponsored_messages_gen.go#L92: 	return fmt.Sprintf("MessagesGetSponsoredMessagesRequest%+v", Alias(*g))
		tl_messages_get_sticker_set_gen.go#L79: 	return fmt.Sprintf("MessagesGetStickerSetRequest%+v", Alias(*g))
		tl_messages_get_stickers_gen.go#L79: 	return fmt.Sprintf("MessagesGetStickersRequest%+v", Alias(*g))
		tl_messages_get_suggested_dialog_filters_gen.go#L69: 	return fmt.Sprintf("MessagesGetSuggestedDialogFiltersRequest%+v", Alias(*g))
		tl_messages_get_top_reactions_gen.go#L85: 	return fmt.Sprintf("MessagesGetTopReactionsRequest%+v", Alias(*g))
		tl_messages_get_unread_mentions_gen.go#L129: 	return fmt.Sprintf("MessagesGetUnreadMentionsRequest%+v", Alias(*g))
		tl_messages_get_unread_poll_votes_gen.go#L107: 	return fmt.Sprintf("MessagesGetUnreadPollVotesRequest%+v", Alias(*g))
		tl_messages_get_unread_reactions_gen.go#L134: 	return fmt.Sprintf("MessagesGetUnreadReactionsRequest%+v", Alias(*g))
		tl_messages_get_web_page_gen.go#L87: 	return fmt.Sprintf("MessagesGetWebPageRequest%+v", Alias(*g))
		tl_messages_get_web_page_preview_gen.go#L89: 	return fmt.Sprintf("MessagesGetWebPagePreviewRequest%+v", Alias(*g))
		tl_messages_hide_all_chat_join_requests_gen.go#L100: 	return fmt.Sprintf("MessagesHideAllChatJoinRequestsRequest%+v", Alias(*h))
		tl_messages_hide_chat_join_request_gen.go#L98: 	return fmt.Sprintf("MessagesHideChatJoinRequestRequest%+v", Alias(*h))
		tl_messages_hide_peer_settings_bar_gen.go#L77: 	return fmt.Sprintf("MessagesHidePeerSettingsBarRequest%+v", Alias(*h))
		tl_messages_high_scores_gen.go#L76: 	return fmt.Sprintf("MessagesHighScores%+v", Alias(*h))
		tl_messages_history_import_gen.go#L77: 	return fmt.Sprintf("MessagesHistoryImport%+v", Alias(*h))
		tl_messages_history_import_parsed_gen.go#L97: 	return fmt.Sprintf("MessagesHistoryImportParsed%+v", Alias(*h))
		tl_messages_import_chat_invite_gen.go#L74: 	return fmt.Sprintf("MessagesImportChatInviteRequest%+v", Alias(*i))
		tl_messages_inactive_chats_gen.go#L81: 	return fmt.Sprintf("MessagesInactiveChats%+v", Alias(*i))
		tl_messages_init_history_import_gen.go#L92: 	return fmt.Sprintf("MessagesInitHistoryImportRequest%+v", Alias(*i))
		tl_messages_install_sticker_set_gen.go#L76: 	return fmt.Sprintf("MessagesInstallStickerSetRequest%+v", Alias(*i))
		tl_messages_invited_users_gen.go#L81: 	return fmt.Sprintf("MessagesInvitedUsers%+v", Alias(*i))
		tl_messages_mark_dialog_unread_gen.go#L95: 	return fmt.Sprintf("MessagesMarkDialogUnreadRequest%+v", Alias(*m))
		tl_messages_message_edit_data_gen.go#L79: 	return fmt.Sprintf("MessagesMessageEditData%+v", Alias(*m))
		tl_messages_message_reactions_list_gen.go#L105: 	return fmt.Sprintf("MessagesMessageReactionsList%+v", Alias(*m))
		tl_messages_message_views_gen.go#L81: 	return fmt.Sprintf("MessagesMessageViews%+v", Alias(*m))
		tl_messages_messages_gen.go#L91: 	return fmt.Sprintf("MessagesMessages%+v", Alias(*m))
		tl_messages_messages_gen.go#L449: 	return fmt.Sprintf("MessagesMessagesSlice%+v", Alias(*m))
		tl_messages_messages_gen.go#L984: 	return fmt.Sprintf("MessagesChannelMessages%+v", Alias(*c))
		tl_messages_messages_gen.go#L1405: 	return fmt.Sprintf("MessagesMessagesNotModified%+v", Alias(*m))
		tl_messages_migrate_chat_gen.go#L77: 	return fmt.Sprintf("MessagesMigrateChatRequest%+v", Alias(*m))
		tl_messages_my_stickers_gen.go#L79: 	return fmt.Sprintf("MessagesMyStickers%+v", Alias(*m))
		tl_messages_peer_dialogs_gen.go#L94: 	return fmt.Sprintf("MessagesPeerDialogs%+v", Alias(*p))
		tl_messages_peer_settings_gen.go#L81: 	return fmt.Sprintf("MessagesPeerSettings%+v", Alias(*p))
		tl_messages_prepared_inline_message_gen.go#L98: 	return fmt.Sprintf("MessagesPreparedInlineMessage%+v", Alias(*p))
		tl_messages_prolong_web_view_gen.go#L125: 	return fmt.Sprintf("MessagesProlongWebViewRequest%+v", Alias(*p))
		tl_messages_quick_replies_gen.go#L94: 	return fmt.Sprintf("MessagesQuickReplies%+v", Alias(*q))
		tl_messages_quick_replies_gen.go#L377: 	return fmt.Sprintf("MessagesQuickRepliesNotModified%+v", Alias(*q))
		tl_messages_rate_transcribed_audio_gen.go#L89: 	return fmt.Sprintf("MessagesRateTranscribedAudioRequest%+v", Alias(*r))
		tl_messages_reactions_gen.go#L74: 	return fmt.Sprintf("MessagesReactionsNotModified%+v", Alias(*r))
		tl_messages_reactions_gen.go#L193: 	return fmt.Sprintf("MessagesReactions%+v", Alias(*r))
		tl_messages_read_discussion_gen.go#L84: 	return fmt.Sprintf("MessagesReadDiscussionRequest%+v", Alias(*r))
		tl_messages_read_encrypted_history_gen.go#L76: 	return fmt.Sprintf("MessagesReadEncryptedHistoryRequest%+v", Alias(*r))
		tl_messages_read_featured_stickers_gen.go#L71: 	return fmt.Sprintf("MessagesReadFeaturedStickersRequest%+v", Alias(*r))
		tl_messages_read_history_gen.go#L77: 	return fmt.Sprintf("MessagesReadHistoryRequest%+v", Alias(*r))
		tl_messages_read_mentions_gen.go#L89: 	return fmt.Sprintf("MessagesReadMentionsRequest%+v", Alias(*r))
		tl_messages_read_message_contents_gen.go#L75: 	return fmt.Sprintf("MessagesReadMessageContentsRequest%+v", Alias(*r))
		tl_messages_read_poll_votes_gen.go#L82: 	return fmt.Sprintf("MessagesReadPollVotesRequest%+v", Alias(*r))
		tl_messages_read_reactions_gen.go#L103: 	return fmt.Sprintf("MessagesReadReactionsRequest%+v", Alias(*r))
		tl_messages_read_saved_history_gen.go#L85: 	return fmt.Sprintf("MessagesReadSavedHistoryRequest%+v", Alias(*r))
		tl_messages_received_messages_gen.go#L71: 	return fmt.Sprintf("MessagesReceivedMessagesRequest%+v", Alias(*r))
		tl_messages_received_queue_gen.go#L73: 	return fmt.Sprintf("MessagesReceivedQueueRequest%+v", Alias(*r))
		tl_messages_recent_stickers_gen.go#L71: 	return fmt.Sprintf("MessagesRecentStickersNotModified%+v", Alias(*r))
		tl_messages_recent_stickers_gen.go#L196: 	return fmt.Sprintf("MessagesRecentStickers%+v", Alias(*r))
		tl_messages_reorder_pinned_dialogs_gen.go#L92: 	return fmt.Sprintf("MessagesReorderPinnedDialogsRequest%+v", Alias(*r))
		tl_messages_reorder_pinned_forum_topics_gen.go#L98: 	return fmt.Sprintf("MessagesReorderPinnedForumTopicsRequest%+v", Alias(*r))
		tl_messages_reorder_pinned_saved_dialogs_gen.go#L87: 	return fmt.Sprintf("MessagesReorderPinnedSavedDialogsRequest%+v", Alias(*r))
		tl_messages_reorder_quick_replies_gen.go#L79: 	return fmt.Sprintf("MessagesReorderQuickRepliesRequest%+v", Alias(*r))
		tl_messages_reorder_sticker_sets_gen.go#L92: 	return fmt.Sprintf("MessagesReorderStickerSetsRequest%+v", Alias(*r))
		tl_messages_report_encrypted_spam_gen.go#L71: 	return fmt.Sprintf("MessagesReportEncryptedSpamRequest%+v", Alias(*r))
		tl_messages_report_gen.go#L86: 	return fmt.Sprintf("MessagesReportRequest%+v", Alias(*r))
		tl_messages_report_messages_delivery_gen.go#L100: 	return fmt.Sprintf("MessagesReportMessagesDeliveryRequest%+v", Alias(*r))
		tl_messages_report_music_listen_gen.go#L75: 	return fmt.Sprintf("MessagesReportMusicListenRequest%+v", Alias(*r))
		tl_messages_report_reaction_gen.go#L84: 	return fmt.Sprintf("MessagesReportReactionRequest%+v", Alias(*r))
		tl_messages_report_read_metrics_gen.go#L75: 	return fmt.Sprintf("MessagesReportReadMetricsRequest%+v", Alias(*r))
		tl_messages_report_spam_gen.go#L75: 	return fmt.Sprintf("MessagesReportSpamRequest%+v", Alias(*r))
		tl_messages_report_sponsored_message_gen.go#L84: 	return fmt.Sprintf("MessagesReportSponsoredMessageRequest%+v", Alias(*r))
		tl_messages_request_app_web_view_gen.go#L153: 	return fmt.Sprintf("MessagesRequestAppWebViewRequest%+v", Alias(*r))
		tl_messages_request_encryption_gen.go#L85: 	return fmt.Sprintf("MessagesRequestEncryptionRequest%+v", Alias(*r))
		tl_messages_request_main_web_view_gen.go#L135: 	return fmt.Sprintf("MessagesRequestMainWebViewRequest%+v", Alias(*r))
		tl_messages_request_simple_web_view_gen.go#L138: 	return fmt.Sprintf("MessagesRequestSimpleWebViewRequest%+v", Alias(*r))
		tl_messages_request_url_auth_gen.go#L121: 	return fmt.Sprintf("MessagesRequestURLAuthRequest%+v", Alias(*r))
		tl_messages_request_web_view_gen.go#L191: 	return fmt.Sprintf("MessagesRequestWebViewRequest%+v", Alias(*r))
		tl_messages_save_default_send_as_gen.go#L77: 	return fmt.Sprintf("MessagesSaveDefaultSendAsRequest%+v", Alias(*s))
		tl_messages_save_draft_gen.go#L150: 	return fmt.Sprintf("MessagesSaveDraftRequest%+v", Alias(*s))
		tl_messages_save_gif_gen.go#L76: 	return fmt.Sprintf("MessagesSaveGifRequest%+v", Alias(*s))
		tl_messages_save_prepared_inline_message_gen.go#L99: 	return fmt.Sprintf("MessagesSavePreparedInlineMessageRequest%+v", Alias(*s))
		tl_messages_save_recent_sticker_gen.go#L89: 	return fmt.Sprintf("MessagesSaveRecentStickerRequest%+v", Alias(*s))
		tl_messages_saved_dialogs_gen.go#L97: 	return fmt.Sprintf("MessagesSavedDialogs%+v", Alias(*s))
		tl_messages_saved_dialogs_gen.go#L413: 	return fmt.Sprintf("MessagesSavedDialogsSlice%+v", Alias(*s))
		tl_messages_saved_dialogs_gen.go#L731: 	return fmt.Sprintf("MessagesSavedDialogsNotModified%+v", Alias(*s))
		tl_messages_saved_gifs_gen.go#L71: 	return fmt.Sprintf("MessagesSavedGifsNotModified%+v", Alias(*s))
		tl_messages_saved_gifs_gen.go#L186: 	return fmt.Sprintf("MessagesSavedGifs%+v", Alias(*s))
		tl_messages_saved_reaction_tags_gen.go#L74: 	return fmt.Sprintf("MessagesSavedReactionTagsNotModified%+v", Alias(*s))
		tl_messages_saved_reaction_tags_gen.go#L194: 	return fmt.Sprintf("MessagesSavedReactionTags%+v", Alias(*s))
		tl_messages_search_counter_gen.go#L93: 	return fmt.Sprintf("MessagesSearchCounter%+v", Alias(*s))
		tl_messages_search_counter_vector_gen.go#L68: 	return fmt.Sprintf("MessagesSearchCounterVector%+v", Alias(*vec))
		tl_messages_search_custom_emoji_gen.go#L82: 	return fmt.Sprintf("MessagesSearchCustomEmojiRequest%+v", Alias(*s))
		tl_messages_search_emoji_sticker_sets_gen.go#L95: 	return fmt.Sprintf("MessagesSearchEmojiStickerSetsRequest%+v", Alias(*s))
		tl_messages_search_gen.go#L191: 	return fmt.Sprintf("MessagesSearchRequest%+v", Alias(*s))
		tl_messages_search_global_gen.go#L158: 	return fmt.Sprintf("MessagesSearchGlobalRequest%+v", Alias(*s))
		tl_messages_search_results_calendar_gen.go#L130: 	return fmt.Sprintf("MessagesSearchResultsCalendar%+v", Alias(*s))
		tl_messages_search_results_positions_gen.go#L76: 	return fmt.Sprintf("MessagesSearchResultsPositions%+v", Alias(*s))
		tl_messages_search_sent_media_gen.go#L82: 	return fmt.Sprintf("MessagesSearchSentMediaRequest%+v", Alias(*s))
		tl_messages_search_sticker_sets_gen.go#L92: 	return fmt.Sprintf("MessagesSearchStickerSetsRequest%+v", Alias(*s))
		tl_messages_search_stickers_gen.go#L124: 	return fmt.Sprintf("MessagesSearchStickersRequest%+v", Alias(*s))
		tl_messages_send_bot_requested_peer_gen.go#L116: 	return fmt.Sprintf("MessagesSendBotRequestedPeerRequest%+v", Alias(*s))
		tl_messages_send_encrypted_file_gen.go#L103: 	return fmt.Sprintf("MessagesSendEncryptedFileRequest%+v", Alias(*s))
		tl_messages_send_encrypted_gen.go#L98: 	return fmt.Sprintf("MessagesSendEncryptedRequest%+v", Alias(*s))
		tl_messages_send_encrypted_service_gen.go#L85: 	return fmt.Sprintf("MessagesSendEncryptedServiceRequest%+v", Alias(*s))
		tl_messages_send_inline_bot_result_gen.go#L175: 	return fmt.Sprintf("MessagesSendInlineBotResultRequest%+v", Alias(*s))
		tl_messages_send_media_gen.go#L238: 	return fmt.Sprintf("MessagesSendMediaRequest%+v", Alias(*s))
		tl_messages_send_message_gen.go#L245: 	return fmt.Sprintf("MessagesSendMessageRequest%+v", Alias(*s))
		tl_messages_send_multi_media_gen.go#L196: 	return fmt.Sprintf("MessagesSendMultiMediaRequest%+v", Alias(*s))
		tl_messages_send_paid_reaction_gen.go#L119: 	return fmt.Sprintf("MessagesSendPaidReactionRequest%+v", Alias(*s))
		tl_messages_send_quick_reply_messages_gen.go#L91: 	return fmt.Sprintf("MessagesSendQuickReplyMessagesRequest%+v", Alias(*s))
		tl_messages_send_reaction_gen.go#L114: 	return fmt.Sprintf("MessagesSendReactionRequest%+v", Alias(*s))
		tl_messages_send_scheduled_messages_gen.go#L76: 	return fmt.Sprintf("MessagesSendScheduledMessagesRequest%+v", Alias(*s))
		tl_messages_send_screenshot_notification_gen.go#L82: 	return fmt.Sprintf("MessagesSendScreenshotNotificationRequest%+v", Alias(*s))
		tl_messages_send_vote_gen.go#L87: 	return fmt.Sprintf("MessagesSendVoteRequest%+v", Alias(*s))
		tl_messages_send_web_view_data_gen.go#L96: 	return fmt.Sprintf("MessagesSendWebViewDataRequest%+v", Alias(*s))
		tl_messages_send_web_view_result_message_gen.go#L83: 	return fmt.Sprintf("MessagesSendWebViewResultMessageRequest%+v", Alias(*s))
		tl_messages_sent_encrypted_message_gen.go#L76: 	return fmt.Sprintf("MessagesSentEncryptedMessage%+v", Alias(*s))
		tl_messages_sent_encrypted_message_gen.go#L216: 	return fmt.Sprintf("MessagesSentEncryptedFile%+v", Alias(*s))
		tl_messages_set_bot_callback_answer_gen.go#L103: 	return fmt.Sprintf("MessagesSetBotCallbackAnswerRequest%+v", Alias(*s))
		tl_messages_set_bot_guest_chat_result_gen.go#L75: 	return fmt.Sprintf("MessagesSetBotGuestChatResultRequest%+v", Alias(*s))
		tl_messages_set_bot_precheckout_results_gen.go#L104: 	return fmt.Sprintf("MessagesSetBotPrecheckoutResultsRequest%+v", Alias(*s))
		tl_messages_set_bot_shipping_results_gen.go#L100: 	return fmt.Sprintf("MessagesSetBotShippingResultsRequest%+v", Alias(*s))
		tl_messages_set_chat_available_reactions_gen.go#L116: 	return fmt.Sprintf("MessagesSetChatAvailableReactionsRequest%+v", Alias(*s))
		tl_messages_set_chat_theme_gen.go#L79: 	return fmt.Sprintf("MessagesSetChatThemeRequest%+v", Alias(*s))
		tl_messages_set_chat_wall_paper_gen.go#L135: 	return fmt.Sprintf("MessagesSetChatWallPaperRequest%+v", Alias(*s))
		tl_messages_set_default_history_ttl_gen.go#L71: 	return fmt.Sprintf("MessagesSetDefaultHistoryTTLRequest%+v", Alias(*s))
		tl_messages_set_default_reaction_gen.go#L75: 	return fmt.Sprintf("MessagesSetDefaultReactionRequest%+v", Alias(*s))
		tl_messages_set_encrypted_typing_gen.go#L81: 	return fmt.Sprintf("MessagesSetEncryptedTypingRequest%+v", Alias(*s))
		tl_messages_set_game_score_gen.go#L107: 	return fmt.Sprintf("MessagesSetGameScoreRequest%+v", Alias(*s))
		tl_messages_set_history_ttl_gen.go#L76: 	return fmt.Sprintf("MessagesSetHistoryTTLRequest%+v", Alias(*s))
		tl_messages_set_inline_bot_results_gen.go#L131: 	return fmt.Sprintf("MessagesSetInlineBotResultsRequest%+v", Alias(*s))
		tl_messages_set_inline_game_score_gen.go#L102: 	return fmt.Sprintf("MessagesSetInlineGameScoreRequest%+v", Alias(*s))
		tl_messages_set_typing_gen.go#L98: 	return fmt.Sprintf("MessagesSetTypingRequest%+v", Alias(*s))
		tl_messages_sponsored_messages_gen.go#L124: 	return fmt.Sprintf("MessagesSponsoredMessages%+v", Alias(*s))
		tl_messages_sponsored_messages_gen.go#L495: 	return fmt.Sprintf("MessagesSponsoredMessagesEmpty%+v", Alias(*s))
		tl_messages_start_bot_gen.go#L92: 	return fmt.Sprintf("MessagesStartBotRequest%+v", Alias(*s))
		tl_messages_start_history_import_gen.go#L89: 	return fmt.Sprintf("MessagesStartHistoryImportRequest%+v", Alias(*s))
		tl_messages_sticker_set_gen.go#L91: 	return fmt.Sprintf("MessagesStickerSet%+v", Alias(*s))
		tl_messages_sticker_set_gen.go#L340: 	return fmt.Sprintf("MessagesStickerSetNotModified%+v", Alias(*s))
		tl_messages_sticker_set_install_result_gen.go#L73: 	return fmt.Sprintf("MessagesStickerSetInstallResultSuccess%+v", Alias(*s))
		tl_messages_sticker_set_install_result_gen.go#L183: 	return fmt.Sprintf("MessagesStickerSetInstallResultArchive%+v", Alias(*s))
		tl_messages_stickers_gen.go#L71: 	return fmt.Sprintf("MessagesStickersNotModified%+v", Alias(*s))
		tl_messages_stickers_gen.go#L186: 	return fmt.Sprintf("MessagesStickers%+v", Alias(*s))
		tl_messages_summarize_text_gen.go#L101: 	return fmt.Sprintf("MessagesSummarizeTextRequest%+v", Alias(*s))
		tl_messages_toggle_bot_in_attach_menu_gen.go#L96: 	return fmt.Sprintf("MessagesToggleBotInAttachMenuRequest%+v", Alias(*t))
		tl_messages_toggle_dialog_filter_tags_gen.go#L74: 	return fmt.Sprintf("MessagesToggleDialogFilterTagsRequest%+v", Alias(*t))
		tl_messages_toggle_dialog_pin_gen.go#L84: 	return fmt.Sprintf("MessagesToggleDialogPinRequest%+v", Alias(*t))
		tl_messages_toggle_no_forwards_gen.go#L98: 	return fmt.Sprintf("MessagesToggleNoForwardsRequest%+v", Alias(*t))
		tl_messages_toggle_paid_reaction_privacy_gen.go#L85: 	return fmt.Sprintf("MessagesTogglePaidReactionPrivacyRequest%+v", Alias(*t))
		tl_messages_toggle_peer_translations_gen.go#L87: 	return fmt.Sprintf("MessagesTogglePeerTranslationsRequest%+v", Alias(*t))
		tl_messages_toggle_saved_dialog_pin_gen.go#L87: 	return fmt.Sprintf("MessagesToggleSavedDialogPinRequest%+v", Alias(*t))
		tl_messages_toggle_sticker_sets_gen.go#L94: 	return fmt.Sprintf("MessagesToggleStickerSetsRequest%+v", Alias(*t))
		tl_messages_toggle_suggested_post_approval_gen.go#L110: 	return fmt.Sprintf("MessagesToggleSuggestedPostApprovalRequest%+v", Alias(*t))
		tl_messages_toggle_todo_completed_gen.go#L89: 	return fmt.Sprintf("MessagesToggleTodoCompletedRequest%+v", Alias(*t))
		tl_messages_transcribe_audio_gen.go#L79: 	return fmt.Sprintf("MessagesTranscribeAudioRequest%+v", Alias(*t))
		tl_messages_transcribed_audio_gen.go#L121: 	return fmt.Sprintf("MessagesTranscribedAudio%+v", Alias(*t))
		tl_messages_translate_result_gen.go#L77: 	return fmt.Sprintf("MessagesTranslateResult%+v", Alias(*t))
		tl_messages_translate_text_gen.go#L112: 	return fmt.Sprintf("MessagesTranslateTextRequest%+v", Alias(*t))
		tl_messages_uninstall_sticker_set_gen.go#L71: 	return fmt.Sprintf("MessagesUninstallStickerSetRequest%+v", Alias(*u))
		tl_messages_unpin_all_messages_gen.go#L103: 	return fmt.Sprintf("MessagesUnpinAllMessagesRequest%+v", Alias(*u))
		tl_messages_update_dialog_filter_gen.go#L95: 	return fmt.Sprintf("MessagesUpdateDialogFilterRequest%+v", Alias(*u))
		tl_messages_update_dialog_filters_order_gen.go#L77: 	return fmt.Sprintf("MessagesUpdateDialogFiltersOrderRequest%+v", Alias(*u))
		tl_messages_update_pinned_forum_topic_gen.go#L88: 	return fmt.Sprintf("MessagesUpdatePinnedForumTopicRequest%+v", Alias(*u))
		tl_messages_update_pinned_message_gen.go#L99: 	return fmt.Sprintf("MessagesUpdatePinnedMessageRequest%+v", Alias(*u))
		tl_messages_update_saved_reaction_tag_gen.go#L93: 	return fmt.Sprintf("MessagesUpdateSavedReactionTagRequest%+v", Alias(*u))
		tl_messages_upload_encrypted_file_gen.go#L77: 	return fmt.Sprintf("MessagesUploadEncryptedFileRequest%+v", Alias(*u))
		tl_messages_upload_imported_media_gen.go#L93: 	return fmt.Sprintf("MessagesUploadImportedMediaRequest%+v", Alias(*u))
		tl_messages_upload_media_gen.go#L109: 	return fmt.Sprintf("MessagesUploadMediaRequest%+v", Alias(*u))
		tl_messages_view_sponsored_message_gen.go#L74: 	return fmt.Sprintf("MessagesViewSponsoredMessageRequest%+v", Alias(*v))
		tl_messages_votes_list_gen.go#L109: 	return fmt.Sprintf("MessagesVotesList%+v", Alias(*v))
		tl_messages_web_page_gen.go#L81: 	return fmt.Sprintf("MessagesWebPage%+v", Alias(*w))
		tl_messages_web_page_preview_gen.go#L85: 	return fmt.Sprintf("MessagesWebPagePreview%+v", Alias(*w))
		tl_missing_invitee_gen.go#L106: 	return fmt.Sprintf("MissingInvitee%+v", Alias(*m))
		tl_my_boost_gen.go#L114: 	return fmt.Sprintf("MyBoost%+v", Alias(*m))
		tl_nearest_dc_gen.go#L81: 	return fmt.Sprintf("NearestDC%+v", Alias(*n))
		tl_notification_sound_gen.go#L71: 	return fmt.Sprintf("NotificationSoundDefault%+v", Alias(*n))
		tl_notification_sound_gen.go#L173: 	return fmt.Sprintf("NotificationSoundNone%+v", Alias(*n))
		tl_notification_sound_gen.go#L286: 	return fmt.Sprintf("NotificationSoundLocal%+v", Alias(*n))
		tl_notification_sound_gen.go#L446: 	return fmt.Sprintf("NotificationSoundRingtone%+v", Alias(*n))
		tl_notify_peer_gen.go#L76: 	return fmt.Sprintf("NotifyPeer%+v", Alias(*n))
		tl_notify_peer_gen.go#L211: 	return fmt.Sprintf("NotifyUsers%+v", Alias(*n))
		tl_notify_peer_gen.go#L313: 	return fmt.Sprintf("NotifyChats%+v", Alias(*n))
		tl_notify_peer_gen.go#L415: 	return fmt.Sprintf("NotifyBroadcasts%+v", Alias(*n))
		tl_notify_peer_gen.go#L534: 	return fmt.Sprintf("NotifyForumTopic%+v", Alias(*n))
		tl_null_gen.go#L66: 	return fmt.Sprintf("Null%+v", Alias(*n))
		tl_outbox_read_date_gen.go#L71: 	return fmt.Sprintf("OutboxReadDate%+v", Alias(*o))
		tl_page_block_gen.go#L71: 	return fmt.Sprintf("PageBlockUnsupported%+v", Alias(*p))
		tl_page_block_gen.go#L178: 	return fmt.Sprintf("PageBlockTitle%+v", Alias(*p))
		tl_page_block_gen.go#L318: 	return fmt.Sprintf("PageBlockSubtitle%+v", Alias(*p))
		tl_page_block_gen.go#L463: 	return fmt.Sprintf("PageBlockAuthorDate%+v", Alias(*p))
		tl_page_block_gen.go#L625: 	return fmt.Sprintf("PageBlockHeader%+v", Alias(*p))
		tl_page_block_gen.go#L765: 	return fmt.Sprintf("PageBlockSubheader%+v", Alias(*p))
		tl_page_block_gen.go#L905: 	return fmt.Sprintf("PageBlockParagraph%+v", Alias(*p))
		tl_page_block_gen.go#L1050: 	return fmt.Sprintf("PageBlockPreformatted%+v", Alias(*p))
		tl_page_block_gen.go#L1212: 	return fmt.Sprintf("PageBlockFooter%+v", Alias(*p))
		tl_page_block_gen.go#L1347: 	return fmt.Sprintf("PageBlockDivider%+v", Alias(*p))
		tl_page_block_gen.go#L1454: 	return fmt.Sprintf("PageBlockAnchor%+v", Alias(*p))
		tl_page_block_gen.go#L1589: 	return fmt.Sprintf("PageBlockList%+v", Alias(*p))
		tl_page_block_gen.go#L1752: 	return fmt.Sprintf("PageBlockBlockquote%+v", Alias(*p))
		tl_page_block_gen.go#L1924: 	return fmt.Sprintf("PageBlockPullquote%+v", Alias(*p))
		tl_page_block_gen.go#L2123: 	return fmt.Sprintf("PageBlockPhoto%+v", Alias(*p))
		tl_page_block_gen.go#L2433: 	return fmt.Sprintf("PageBlockVideo%+v", Alias(*p))
		tl_page_block_gen.go#L2693: 	return fmt.Sprintf("PageBlockCover%+v", Alias(*p))
		tl_page_block_gen.go#L2886: 	return fmt.Sprintf("PageBlockEmbed%+v", Alias(*p))
		tl_page_block_gen.go#L3329: 	return fmt.Sprintf("PageBlockEmbedPost%+v", Alias(*p))
		tl_page_block_gen.go#L3624: 	return fmt.Sprintf("PageBlockCollage%+v", Alias(*p))
		tl_page_block_gen.go#L3809: 	return fmt.Sprintf("PageBlockSlideshow%+v", Alias(*p))
		tl_page_block_gen.go#L3989: 	return fmt.Sprintf("PageBlockChannel%+v", Alias(*p))
		tl_page_block_gen.go#L4137: 	return fmt.Sprintf("PageBlockAudio%+v", Alias(*p))
		tl_page_block_gen.go#L4294: 	return fmt.Sprintf("PageBlockKicker%+v", Alias(*p))
		tl_page_block_gen.go#L4457: 	return fmt.Sprintf("PageBlockTable%+v", Alias(*p))
		tl_page_block_gen.go#L4731: 	return fmt.Sprintf("PageBlockOrderedList%+v", Alias(*p))
		tl_page_block_gen.go#L5032: 	return fmt.Sprintf("PageBlockDetails%+v", Alias(*p))
		tl_page_block_gen.go#L5265: 	return fmt.Sprintf("PageBlockRelatedArticles%+v", Alias(*p))
		tl_page_block_gen.go#L5462: 	return fmt.Sprintf("PageBlockMap%+v", Alias(*p))
		tl_page_block_gen.go#L5689: 	return fmt.Sprintf("PageBlockHeading1%+v", Alias(*p))
		tl_page_block_gen.go#L5828: 	return fmt.Sprintf("PageBlockHeading2%+v", Alias(*p))
		tl_page_block_gen.go#L5967: 	return fmt.Sprintf("PageBlockHeading3%+v", Alias(*p))
		tl_page_block_gen.go#L6106: 	return fmt.Sprintf("PageBlockHeading4%+v", Alias(*p))
		tl_page_block_gen.go#L6245: 	return fmt.Sprintf("PageBlockHeading5%+v", Alias(*p))
		tl_page_block_gen.go#L6384: 	return fmt.Sprintf("PageBlockHeading6%+v", Alias(*p))
		tl_page_block_gen.go#L6523: 	return fmt.Sprintf("PageBlockMath%+v", Alias(*p))
		tl_page_block_gen.go#L6657: 	return fmt.Sprintf("PageBlockThinking%+v", Alias(*p))
		tl_page_block_gen.go#L6816: 	return fmt.Sprintf("InputPageBlockMap%+v", Alias(*i))
		tl_page_block_gen.go#L7048: 	return fmt.Sprintf("PageBlockBlockquoteBlocks%+v", Alias(*p))
		tl_page_caption_gen.go#L76: 	return fmt.Sprintf("PageCaption%+v", Alias(*p))
		tl_page_gen.go#L126: 	return fmt.Sprintf("Page%+v", Alias(*p))
		tl_page_list_item_gen.go#L91: 	return fmt.Sprintf("PageListItemText%+v", Alias(*p))
		tl_page_list_item_gen.go#L319: 	return fmt.Sprintf("PageListItemBlocks%+v", Alias(*p))
		tl_page_list_ordered_item_gen.go#L112: 	return fmt.Sprintf("PageListOrderedItemText%+v", Alias(*p))
		tl_page_list_ordered_item_gen.go#L487: 	return fmt.Sprintf("PageListOrderedItemBlocks%+v", Alias(*p))
		tl_page_related_article_gen.go#L119: 	return fmt.Sprintf("PageRelatedArticle%+v", Alias(*p))
		tl_page_table_cell_gen.go#L120: 	return fmt.Sprintf("PageTableCell%+v", Alias(*p))
		tl_page_table_row_gen.go#L71: 	return fmt.Sprintf("PageTableRow%+v", Alias(*p))
		tl_paid_reaction_privacy_gen.go#L74: 	return fmt.Sprintf("PaidReactionPrivacyDefault%+v", Alias(*p))
		tl_paid_reaction_privacy_gen.go#L176: 	return fmt.Sprintf("PaidReactionPrivacyAnonymous%+v", Alias(*p))
		tl_paid_reaction_privacy_gen.go#L287: 	return fmt.Sprintf("PaidReactionPrivacyPeer%+v", Alias(*p))
		tl_passkey_gen.go#L115: 	return fmt.Sprintf("Passkey%+v", Alias(*p))
		tl_password_kdf_algo_gen.go#L72: 	return fmt.Sprintf("PasswordKdfAlgoUnknown%+v", Alias(*p))
		tl_password_kdf_algo_gen.go#L211: 	return fmt.Sprintf("PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow%+v", Alias(*p))
		tl_payment_charge_gen.go#L76: 	return fmt.Sprintf("PaymentCharge%+v", Alias(*p))
		tl_payment_form_method_gen.go#L76: 	return fmt.Sprintf("PaymentFormMethod%+v", Alias(*p))
		tl_payment_requested_info_gen.go#L102: 	return fmt.Sprintf("PaymentRequestedInfo%+v", Alias(*p))
		tl_payment_saved_credentials_card_gen.go#L76: 	return fmt.Sprintf("PaymentSavedCredentialsCard%+v", Alias(*p))
		tl_payments_apply_gift_code_gen.go#L74: 	return fmt.Sprintf("PaymentsApplyGiftCodeRequest%+v", Alias(*a))
		tl_payments_assign_app_store_transaction_gen.go#L77: 	return fmt.Sprintf("PaymentsAssignAppStoreTransactionRequest%+v", Alias(*a))
		tl_payments_assign_play_market_transaction_gen.go#L77: 	return fmt.Sprintf("PaymentsAssignPlayMarketTransactionRequest%+v", Alias(*a))
		tl_payments_bank_card_data_gen.go#L76: 	return fmt.Sprintf("PaymentsBankCardData%+v", Alias(*b))
		tl_payments_bot_cancel_stars_subscription_gen.go#L103: 	return fmt.Sprintf("PaymentsBotCancelStarsSubscriptionRequest%+v", Alias(*b))
		tl_payments_can_purchase_store_gen.go#L72: 	return fmt.Sprintf("PaymentsCanPurchaseStoreRequest%+v", Alias(*c))
		tl_payments_change_stars_subscription_gen.go#L97: 	return fmt.Sprintf("PaymentsChangeStarsSubscriptionRequest%+v", Alias(*c))
		tl_payments_check_can_send_gift_gen.go#L74: 	return fmt.Sprintf("PaymentsCheckCanSendGiftRequest%+v", Alias(*c))
		tl_payments_check_can_send_gift_result_gen.go#L71: 	return fmt.Sprintf("PaymentsCheckCanSendGiftResultOk%+v", Alias(*c))
		tl_payments_check_can_send_gift_result_gen.go#L180: 	return fmt.Sprintf("PaymentsCheckCanSendGiftResultFail%+v", Alias(*c))
		tl_payments_check_gift_code_gen.go#L74: 	return fmt.Sprintf("PaymentsCheckGiftCodeRequest%+v", Alias(*c))
		tl_payments_checked_gift_code_gen.go#L133: 	return fmt.Sprintf("PaymentsCheckedGiftCode%+v", Alias(*c))
		tl_payments_clear_saved_info_gen.go#L84: 	return fmt.Sprintf("PaymentsClearSavedInfoRequest%+v", Alias(*c))
		tl_payments_connect_star_ref_bot_gen.go#L80: 	return fmt.Sprintf("PaymentsConnectStarRefBotRequest%+v", Alias(*c))
		tl_payments_connected_star_ref_bots_gen.go#L84: 	return fmt.Sprintf("PaymentsConnectedStarRefBots%+v", Alias(*c))
		tl_payments_convert_star_gift_gen.go#L83: 	return fmt.Sprintf("PaymentsConvertStarGiftRequest%+v", Alias(*c))
		tl_payments_craft_star_gift_gen.go#L83: 	return fmt.Sprintf("PaymentsCraftStarGiftRequest%+v", Alias(*c))
		tl_payments_create_star_gift_collection_gen.go#L84: 	return fmt.Sprintf("PaymentsCreateStarGiftCollectionRequest%+v", Alias(*c))
		tl_payments_delete_star_gift_collection_gen.go#L79: 	return fmt.Sprintf("PaymentsDeleteStarGiftCollectionRequest%+v", Alias(*d))
		tl_payments_edit_connected_star_ref_bot_gen.go#L92: 	return fmt.Sprintf("PaymentsEditConnectedStarRefBotRequest%+v", Alias(*e))
		tl_payments_export_invoice_gen.go#L74: 	return fmt.Sprintf("PaymentsExportInvoiceRequest%+v", Alias(*e))
		tl_payments_exported_invoice_gen.go#L77: 	return fmt.Sprintf("PaymentsExportedInvoice%+v", Alias(*e))
		tl_payments_fulfill_stars_subscription_gen.go#L82: 	return fmt.Sprintf("PaymentsFulfillStarsSubscriptionRequest%+v", Alias(*f))
		tl_payments_get_bank_card_data_gen.go#L71: 	return fmt.Sprintf("PaymentsGetBankCardDataRequest%+v", Alias(*g))
		tl_payments_get_connected_star_ref_bot_gen.go#L79: 	return fmt.Sprintf("PaymentsGetConnectedStarRefBotRequest%+v", Alias(*g))
		tl_payments_get_connected_star_ref_bots_gen.go#L106: 	return fmt.Sprintf("PaymentsGetConnectedStarRefBotsRequest%+v", Alias(*g))
		tl_payments_get_craft_star_gifts_gen.go#L93: 	return fmt.Sprintf("PaymentsGetCraftStarGiftsRequest%+v", Alias(*g))
		tl_payments_get_giveaway_info_gen.go#L82: 	return fmt.Sprintf("PaymentsGetGiveawayInfoRequest%+v", Alias(*g))
		tl_payments_get_payment_form_gen.go#L89: 	return fmt.Sprintf("PaymentsGetPaymentFormRequest%+v", Alias(*g))
		tl_payments_get_payment_receipt_gen.go#L76: 	return fmt.Sprintf("PaymentsGetPaymentReceiptRequest%+v", Alias(*g))
		tl_payments_get_premium_gift_code_options_gen.go#L84: 	return fmt.Sprintf("PaymentsGetPremiumGiftCodeOptionsRequest%+v", Alias(*g))
		tl_payments_get_resale_star_gifts_gen.go#L159: 	return fmt.Sprintf("PaymentsGetResaleStarGiftsRequest%+v", Alias(*g))
		tl_payments_get_saved_info_gen.go#L66: 	return fmt.Sprintf("PaymentsGetSavedInfoRequest%+v", Alias(*g))
		tl_payments_get_saved_star_gift_gen.go#L76: 	return fmt.Sprintf("PaymentsGetSavedStarGiftRequest%+v", Alias(*g))
		tl_payments_get_saved_star_gifts_gen.go#L177: 	return fmt.Sprintf("PaymentsGetSavedStarGiftsRequest%+v", Alias(*g))
		tl_payments_get_star_gift_active_auctions_gen.go#L77: 	return fmt.Sprintf("PaymentsGetStarGiftActiveAuctionsRequest%+v", Alias(*g))
		tl_payments_get_star_gift_auction_acquired_gifts_gen.go#L74: 	return fmt.Sprintf("PaymentsGetStarGiftAuctionAcquiredGiftsRequest%+v", Alias(*g))
		tl_payments_get_star_gift_auction_state_gen.go#L88: 	return fmt.Sprintf("PaymentsGetStarGiftAuctionStateRequest%+v", Alias(*g))
		tl_payments_get_star_gift_collections_gen.go#L85: 	return fmt.Sprintf("PaymentsGetStarGiftCollectionsRequest%+v", Alias(*g))
		tl_payments_get_star_gift_upgrade_attributes_gen.go#L83: 	return fmt.Sprintf("PaymentsGetStarGiftUpgradeAttributesRequest%+v", Alias(*g))
		tl_payments_get_star_gift_upgrade_preview_gen.go#L77: 	return fmt.Sprintf("PaymentsGetStarGiftUpgradePreviewRequest%+v", Alias(*g))
		tl_payments_get_star_gift_withdrawal_url_gen.go#L82: 	return fmt.Sprintf("PaymentsGetStarGiftWithdrawalURLRequest%+v", Alias(*g))
		tl_payments_get_star_gifts_gen.go#L79: 	return fmt.Sprintf("PaymentsGetStarGiftsRequest%+v", Alias(*g))
		tl_payments_get_stars_gift_options_gen.go#L85: 	return fmt.Sprintf("PaymentsGetStarsGiftOptionsRequest%+v", Alias(*g))
		tl_payments_get_stars_giveaway_options_gen.go#L69: 	return fmt.Sprintf("PaymentsGetStarsGiveawayOptionsRequest%+v", Alias(*g))
		tl_payments_get_stars_revenue_ads_account_url_gen.go#L76: 	return fmt.Sprintf("PaymentsGetStarsRevenueAdsAccountURLRequest%+v", Alias(*g))
		tl_payments_get_stars_revenue_stats_gen.go#L95: 	return fmt.Sprintf("PaymentsGetStarsRevenueStatsRequest%+v", Alias(*g))
		tl_payments_get_stars_revenue_withdrawal_url_gen.go#L102: 	return fmt.Sprintf("PaymentsGetStarsRevenueWithdrawalURLRequest%+v", Alias(*g))
		tl_payments_get_stars_status_gen.go#L89: 	return fmt.Sprintf("PaymentsGetStarsStatusRequest%+v", Alias(*g))
		tl_payments_get_stars_subscriptions_gen.go#L99: 	return fmt.Sprintf("PaymentsGetStarsSubscriptionsRequest%+v", Alias(*g))
		tl_payments_get_stars_topup_options_gen.go#L70: 	return fmt.Sprintf("PaymentsGetStarsTopupOptionsRequest%+v", Alias(*g))
		tl_payments_get_stars_transactions_by_id_gen.go#L92: 	return fmt.Sprintf("PaymentsGetStarsTransactionsByIDRequest%+v", Alias(*g))
		tl_payments_get_stars_transactions_gen.go#L134: 	return fmt.Sprintf("PaymentsGetStarsTransactionsRequest%+v", Alias(*g))
		tl_payments_get_suggested_star_ref_bots_gen.go#L113: 	return fmt.Sprintf("PaymentsGetSuggestedStarRefBotsRequest%+v", Alias(*g))
		tl_payments_get_unique_star_gift_gen.go#L76: 	return fmt.Sprintf("PaymentsGetUniqueStarGiftRequest%+v", Alias(*g))
		tl_payments_get_unique_star_gift_value_info_gen.go#L77: 	return fmt.Sprintf("PaymentsGetUniqueStarGiftValueInfoRequest%+v", Alias(*g))
		tl_payments_giveaway_info_gen.go#L129: 	return fmt.Sprintf("PaymentsGiveawayInfo%+v", Alias(*g))
		tl_payments_giveaway_info_gen.go#L526: 	return fmt.Sprintf("PaymentsGiveawayInfoResults%+v", Alias(*g))
		tl_payments_launch_prepaid_giveaway_gen.go#L84: 	return fmt.Sprintf("PaymentsLaunchPrepaidGiveawayRequest%+v", Alias(*l))
		tl_payments_payment_form_gen.go#L181: 	return fmt.Sprintf("PaymentsPaymentForm%+v", Alias(*p))
		tl_payments_payment_form_gen.go#L891: 	return fmt.Sprintf("PaymentsPaymentFormStars%+v", Alias(*p))
		tl_payments_payment_form_gen.go#L1226: 	return fmt.Sprintf("PaymentsPaymentFormStarGift%+v", Alias(*p))
		tl_payments_payment_receipt_gen.go#L166: 	return fmt.Sprintf("PaymentsPaymentReceipt%+v", Alias(*p))
		tl_payments_payment_receipt_gen.go#L765: 	return fmt.Sprintf("PaymentsPaymentReceiptStars%+v", Alias(*p))
		tl_payments_payment_result_gen.go#L76: 	return fmt.Sprintf("PaymentsPaymentResult%+v", Alias(*p))
		tl_payments_payment_result_gen.go#L216: 	return fmt.Sprintf("PaymentsPaymentVerificationNeeded%+v", Alias(*p))
		tl_payments_refund_stars_charge_gen.go#L80: 	return fmt.Sprintf("PaymentsRefundStarsChargeRequest%+v", Alias(*r))
		tl_payments_reorder_star_gift_collections_gen.go#L79: 	return fmt.Sprintf("PaymentsReorderStarGiftCollectionsRequest%+v", Alias(*r))
		tl_payments_resale_star_gifts_gen.go#L144: 	return fmt.Sprintf("PaymentsResaleStarGifts%+v", Alias(*r))
		tl_payments_resolve_star_gift_offer_gen.go#L93: 	return fmt.Sprintf("PaymentsResolveStarGiftOfferRequest%+v", Alias(*r))
		tl_payments_save_star_gift_gen.go#L87: 	return fmt.Sprintf("PaymentsSaveStarGiftRequest%+v", Alias(*s))
		tl_payments_saved_info_gen.go#L86: 	return fmt.Sprintf("PaymentsSavedInfo%+v", Alias(*s))
		tl_payments_saved_star_gifts_gen.go#L119: 	return fmt.Sprintf("PaymentsSavedStarGifts%+v", Alias(*s))
		tl_payments_send_payment_form_gen.go#L119: 	return fmt.Sprintf("PaymentsSendPaymentFormRequest%+v", Alias(*s))
		tl_payments_send_star_gift_offer_gen.go#L124: 	return fmt.Sprintf("PaymentsSendStarGiftOfferRequest%+v", Alias(*s))
		tl_payments_send_stars_form_gen.go#L79: 	return fmt.Sprintf("PaymentsSendStarsFormRequest%+v", Alias(*s))
		tl_payments_star_gift_active_auctions_gen.go#L77: 	return fmt.Sprintf("PaymentsStarGiftActiveAuctionsNotModified%+v", Alias(*s))
		tl_payments_star_gift_active_auctions_gen.go#L197: 	return fmt.Sprintf("PaymentsStarGiftActiveAuctions%+v", Alias(*s))
		tl_payments_star_gift_auction_acquired_gifts_gen.go#L84: 	return fmt.Sprintf("PaymentsStarGiftAuctionAcquiredGifts%+v", Alias(*s))
		tl_payments_star_gift_auction_state_gen.go#L105: 	return fmt.Sprintf("PaymentsStarGiftAuctionState%+v", Alias(*s))
		tl_payments_star_gift_collections_gen.go#L76: 	return fmt.Sprintf("PaymentsStarGiftCollectionsNotModified%+v", Alias(*s))
		tl_payments_star_gift_collections_gen.go#L186: 	return fmt.Sprintf("PaymentsStarGiftCollections%+v", Alias(*s))
		tl_payments_star_gift_upgrade_attributes_gen.go#L81: 	return fmt.Sprintf("PaymentsStarGiftUpgradeAttributes%+v", Alias(*s))
		tl_payments_star_gift_upgrade_preview_gen.go#L91: 	return fmt.Sprintf("PaymentsStarGiftUpgradePreview%+v", Alias(*s))
		tl_payments_star_gift_withdrawal_url_gen.go#L71: 	return fmt.Sprintf("PaymentsStarGiftWithdrawalURL%+v", Alias(*s))
		tl_payments_star_gifts_gen.go#L74: 	return fmt.Sprintf("PaymentsStarGiftsNotModified%+v", Alias(*s))
		tl_payments_star_gifts_gen.go#L202: 	return fmt.Sprintf("PaymentsStarGifts%+v", Alias(*s))
		tl_payments_stars_revenue_ads_account_url_gen.go#L75: 	return fmt.Sprintf("PaymentsStarsRevenueAdsAccountURL%+v", Alias(*s))
		tl_payments_stars_revenue_stats_gen.go#L100: 	return fmt.Sprintf("PaymentsStarsRevenueStats%+v", Alias(*s))
		tl_payments_stars_revenue_withdrawal_url_gen.go#L77: 	return fmt.Sprintf("PaymentsStarsRevenueWithdrawalURL%+v", Alias(*s))
		tl_payments_stars_status_gen.go#L143: 	return fmt.Sprintf("PaymentsStarsStatus%+v", Alias(*s))
		tl_payments_suggested_star_ref_bots_gen.go#L103: 	return fmt.Sprintf("PaymentsSuggestedStarRefBots%+v", Alias(*s))
		tl_payments_toggle_chat_star_gift_notifications_gen.go#L96: 	return fmt.Sprintf("PaymentsToggleChatStarGiftNotificationsRequest%+v", Alias(*t))
		tl_payments_toggle_star_gifts_pinned_to_top_gen.go#L80: 	return fmt.Sprintf("PaymentsToggleStarGiftsPinnedToTopRequest%+v", Alias(*t))
		tl_payments_transfer_star_gift_gen.go#L84: 	return fmt.Sprintf("PaymentsTransferStarGiftRequest%+v", Alias(*t))
		tl_payments_unique_star_gift_gen.go#L87: 	return fmt.Sprintf("PaymentsUniqueStarGift%+v", Alias(*u))
		tl_payments_unique_star_gift_value_info_gen.go#L171: 	return fmt.Sprintf("PaymentsUniqueStarGiftValueInfo%+v", Alias(*u))
		tl_payments_update_star_gift_collection_gen.go#L115: 	return fmt.Sprintf("PaymentsUpdateStarGiftCollectionRequest%+v", Alias(*u))
		tl_payments_update_star_gift_price_gen.go#L82: 	return fmt.Sprintf("PaymentsUpdateStarGiftPriceRequest%+v", Alias(*u))
		tl_payments_upgrade_star_gift_gen.go#L95: 	return fmt.Sprintf("PaymentsUpgradeStarGiftRequest%+v", Alias(*u))
		tl_payments_validate_requested_info_gen.go#L89: 	return fmt.Sprintf("PaymentsValidateRequestedInfoRequest%+v", Alias(*v))
		tl_payments_validated_requested_info_gen.go#L84: 	return fmt.Sprintf("PaymentsValidatedRequestedInfo%+v", Alias(*v))
		tl_peer_blocked_gen.go#L76: 	return fmt.Sprintf("PeerBlocked%+v", Alias(*p))
		tl_peer_class_vector_gen.go#L68: 	return fmt.Sprintf("PeerClassVector%+v", Alias(*vec))
		tl_peer_color_gen.go#L103: 	return fmt.Sprintf("PeerColor%+v", Alias(*p))
		tl_peer_color_gen.go#L373: 	return fmt.Sprintf("PeerColorCollectible%+v", Alias(*p))
		tl_peer_color_gen.go#L726: 	return fmt.Sprintf("InputPeerColorCollectible%+v", Alias(*i))
		tl_peer_gen.go#L76: 	return fmt.Sprintf("PeerUser%+v", Alias(*p))
		tl_peer_gen.go#L211: 	return fmt.Sprintf("PeerChat%+v", Alias(*p))
		tl_peer_gen.go#L346: 	return fmt.Sprintf("PeerChannel%+v", Alias(*p))
		tl_peer_located_gen.go#L86: 	return fmt.Sprintf("PeerLocated%+v", Alias(*p))
		tl_peer_located_gen.go#L270: 	return fmt.Sprintf("PeerSelfLocated%+v", Alias(*p))
		tl_peer_notify_settings_gen.go#L153: 	return fmt.Sprintf("PeerNotifySettings%+v", Alias(*p))
		tl_peer_settings_gen.go#L247: 	return fmt.Sprintf("PeerSettings%+v", Alias(*p))
		tl_peer_stories_gen.go#L94: 	return fmt.Sprintf("PeerStories%+v", Alias(*p))
		tl_pending_suggestion_gen.go#L92: 	return fmt.Sprintf("PendingSuggestion%+v", Alias(*p))
		tl_phone_accept_call_gen.go#L87: 	return fmt.Sprintf("PhoneAcceptCallRequest%+v", Alias(*a))
		tl_phone_call_discard_reason_gen.go#L74: 	return fmt.Sprintf("PhoneCallDiscardReasonMissed%+v", Alias(*p))
		tl_phone_call_discard_reason_gen.go#L179: 	return fmt.Sprintf("PhoneCallDiscardReasonDisconnect%+v", Alias(*p))
		tl_phone_call_discard_reason_gen.go#L284: 	return fmt.Sprintf("PhoneCallDiscardReasonHangup%+v", Alias(*p))
		tl_phone_call_discard_reason_gen.go#L390: 	return fmt.Sprintf("PhoneCallDiscardReasonBusy%+v", Alias(*p))
		tl_phone_call_discard_reason_gen.go#L505: 	return fmt.Sprintf("PhoneCallDiscardReasonMigrateConferenceCall%+v", Alias(*p))
		tl_phone_call_gen.go#L76: 	return fmt.Sprintf("PhoneCallEmpty%+v", Alias(*p))
		tl_phone_call_gen.go#L259: 	return fmt.Sprintf("PhoneCallWaiting%+v", Alias(*p))
		tl_phone_call_gen.go#L637: 	return fmt.Sprintf("PhoneCallRequested%+v", Alias(*p))
		tl_phone_call_gen.go#L996: 	return fmt.Sprintf("PhoneCallAccepted%+v", Alias(*p))
		tl_phone_call_gen.go#L1393: 	return fmt.Sprintf("PhoneCall%+v", Alias(*p))
		tl_phone_call_gen.go#L1939: 	return fmt.Sprintf("PhoneCallDiscarded%+v", Alias(*p))
		tl_phone_call_protocol_gen.go#L111: 	return fmt.Sprintf("PhoneCallProtocol%+v", Alias(*p))
		tl_phone_check_group_call_gen.go#L82: 	return fmt.Sprintf("PhoneCheckGroupCallRequest%+v", Alias(*c))
		tl_phone_confirm_call_gen.go#L94: 	return fmt.Sprintf("PhoneConfirmCallRequest%+v", Alias(*c))
		tl_phone_connection_gen.go#L110: 	return fmt.Sprintf("PhoneConnection%+v", Alias(*p))
		tl_phone_connection_gen.go#L422: 	return fmt.Sprintf("PhoneConnectionWebrtc%+v", Alias(*p))
		tl_phone_create_conference_call_gen.go#L118: 	return fmt.Sprintf("PhoneCreateConferenceCallRequest%+v", Alias(*c))
		tl_phone_create_group_call_gen.go#L115: 	return fmt.Sprintf("PhoneCreateGroupCallRequest%+v", Alias(*c))
		tl_phone_decline_conference_call_invite_gen.go#L77: 	return fmt.Sprintf("PhoneDeclineConferenceCallInviteRequest%+v", Alias(*d))
		tl_phone_delete_conference_call_participants_gen.go#L106: 	return fmt.Sprintf("PhoneDeleteConferenceCallParticipantsRequest%+v", Alias(*d))
		tl_phone_delete_group_call_messages_gen.go#L92: 	return fmt.Sprintf("PhoneDeleteGroupCallMessagesRequest%+v", Alias(*d))
		tl_phone_delete_group_call_participant_messages_gen.go#L93: 	return fmt.Sprintf("PhoneDeleteGroupCallParticipantMessagesRequest%+v", Alias(*d))
		tl_phone_discard_call_gen.go#L102: 	return fmt.Sprintf("PhoneDiscardCallRequest%+v", Alias(*d))
		tl_phone_discard_group_call_gen.go#L74: 	return fmt.Sprintf("PhoneDiscardGroupCallRequest%+v", Alias(*d))
		tl_phone_edit_group_call_participant_gen.go#L132: 	return fmt.Sprintf("PhoneEditGroupCallParticipantRequest%+v", Alias(*e))
		tl_phone_edit_group_call_title_gen.go#L79: 	return fmt.Sprintf("PhoneEditGroupCallTitleRequest%+v", Alias(*e))
		tl_phone_export_group_call_invite_gen.go#L89: 	return fmt.Sprintf("PhoneExportGroupCallInviteRequest%+v", Alias(*e))
		tl_phone_exported_group_call_invite_gen.go#L71: 	return fmt.Sprintf("PhoneExportedGroupCallInvite%+v", Alias(*e))
		tl_phone_get_call_config_gen.go#L67: 	return fmt.Sprintf("PhoneGetCallConfigRequest%+v", Alias(*g))
		tl_phone_get_group_call_chain_blocks_gen.go#L92: 	return fmt.Sprintf("PhoneGetGroupCallChainBlocksRequest%+v", Alias(*g))
		tl_phone_get_group_call_gen.go#L92: 	return fmt.Sprintf("PhoneGetGroupCallRequest%+v", Alias(*g))
		tl_phone_get_group_call_join_as_gen.go#L75: 	return fmt.Sprintf("PhoneGetGroupCallJoinAsRequest%+v", Alias(*g))
		tl_phone_get_group_call_stars_gen.go#L74: 	return fmt.Sprintf("PhoneGetGroupCallStarsRequest%+v", Alias(*g))
		tl_phone_get_group_call_stream_channels_gen.go#L77: 	return fmt.Sprintf("PhoneGetGroupCallStreamChannelsRequest%+v", Alias(*g))
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L93: 	return fmt.Sprintf("PhoneGetGroupCallStreamRtmpURLRequest%+v", Alias(*g))
		tl_phone_get_group_participants_gen.go#L106: 	return fmt.Sprintf("PhoneGetGroupParticipantsRequest%+v", Alias(*g))
		tl_phone_group_call_gen.go#L95: 	return fmt.Sprintf("PhoneGroupCall%+v", Alias(*g))
		tl_phone_group_call_stars_gen.go#L85: 	return fmt.Sprintf("PhoneGroupCallStars%+v", Alias(*g))
		tl_phone_group_call_stream_channels_gen.go#L71: 	return fmt.Sprintf("PhoneGroupCallStreamChannels%+v", Alias(*g))
		tl_phone_group_call_stream_rtmp_url_gen.go#L76: 	return fmt.Sprintf("PhoneGroupCallStreamRtmpURL%+v", Alias(*g))
		tl_phone_group_participants_gen.go#L100: 	return fmt.Sprintf("PhoneGroupParticipants%+v", Alias(*g))
		tl_phone_invite_conference_call_participant_gen.go#L92: 	return fmt.Sprintf("PhoneInviteConferenceCallParticipantRequest%+v", Alias(*i))
		tl_phone_invite_to_group_call_gen.go#L79: 	return fmt.Sprintf("PhoneInviteToGroupCallRequest%+v", Alias(*i))
		tl_phone_join_as_peers_gen.go#L82: 	return fmt.Sprintf("PhoneJoinAsPeers%+v", Alias(*j))
		tl_phone_join_group_call_gen.go#L131: 	return fmt.Sprintf("PhoneJoinGroupCallRequest%+v", Alias(*j))
		tl_phone_join_group_call_presentation_gen.go#L79: 	return fmt.Sprintf("PhoneJoinGroupCallPresentationRequest%+v", Alias(*j))
		tl_phone_leave_group_call_gen.go#L79: 	return fmt.Sprintf("PhoneLeaveGroupCallRequest%+v", Alias(*l))
		tl_phone_leave_group_call_presentation_gen.go#L74: 	return fmt.Sprintf("PhoneLeaveGroupCallPresentationRequest%+v", Alias(*l))
		tl_phone_phone_call_gen.go#L76: 	return fmt.Sprintf("PhonePhoneCall%+v", Alias(*p))
		tl_phone_received_call_gen.go#L76: 	return fmt.Sprintf("PhoneReceivedCallRequest%+v", Alias(*r))
		tl_phone_request_call_gen.go#L105: 	return fmt.Sprintf("PhoneRequestCallRequest%+v", Alias(*r))
		tl_phone_save_call_debug_gen.go#L79: 	return fmt.Sprintf("PhoneSaveCallDebugRequest%+v", Alias(*s))
		tl_phone_save_call_log_gen.go#L76: 	return fmt.Sprintf("PhoneSaveCallLogRequest%+v", Alias(*s))
		tl_phone_save_default_group_call_join_as_gen.go#L80: 	return fmt.Sprintf("PhoneSaveDefaultGroupCallJoinAsRequest%+v", Alias(*s))
		tl_phone_save_default_send_as_gen.go#L75: 	return fmt.Sprintf("PhoneSaveDefaultSendAsRequest%+v", Alias(*s))
		tl_phone_send_conference_call_broadcast_gen.go#L80: 	return fmt.Sprintf("PhoneSendConferenceCallBroadcastRequest%+v", Alias(*s))
		tl_phone_send_group_call_encrypted_message_gen.go#L81: 	return fmt.Sprintf("PhoneSendGroupCallEncryptedMessageRequest%+v", Alias(*s))
		tl_phone_send_group_call_message_gen.go#L106: 	return fmt.Sprintf("PhoneSendGroupCallMessageRequest%+v", Alias(*s))
		tl_phone_send_signaling_data_gen.go#L79: 	return fmt.Sprintf("PhoneSendSignalingDataRequest%+v", Alias(*s))
		tl_phone_set_call_rating_gen.go#L106: 	return fmt.Sprintf("PhoneSetCallRatingRequest%+v", Alias(*s))
		tl_phone_start_scheduled_group_call_gen.go#L74: 	return fmt.Sprintf("PhoneStartScheduledGroupCallRequest%+v", Alias(*s))
		tl_phone_toggle_group_call_record_gen.go#L107: 	return fmt.Sprintf("PhoneToggleGroupCallRecordRequest%+v", Alias(*t))
		tl_phone_toggle_group_call_settings_gen.go#L109: 	return fmt.Sprintf("PhoneToggleGroupCallSettingsRequest%+v", Alias(*t))
		tl_phone_toggle_group_call_start_subscription_gen.go#L79: 	return fmt.Sprintf("PhoneToggleGroupCallStartSubscriptionRequest%+v", Alias(*t))
		tl_photo_gen.go#L76: 	return fmt.Sprintf("PhotoEmpty%+v", Alias(*p))
		tl_photo_gen.go#L262: 	return fmt.Sprintf("Photo%+v", Alias(*p))
		tl_photo_size_gen.go#L79: 	return fmt.Sprintf("PhotoSizeEmpty%+v", Alias(*p))
		tl_photo_size_gen.go#L232: 	return fmt.Sprintf("PhotoSize%+v", Alias(*p))
		tl_photo_size_gen.go#L448: 	return fmt.Sprintf("PhotoCachedSize%+v", Alias(*p))
		tl_photo_size_gen.go#L657: 	return fmt.Sprintf("PhotoStrippedSize%+v", Alias(*p))
		tl_photo_size_gen.go#L833: 	return fmt.Sprintf("PhotoSizeProgressive%+v", Alias(*p))
		tl_photo_size_gen.go#L1056: 	return fmt.Sprintf("PhotoPathSize%+v", Alias(*p))
		tl_photos_delete_photos_gen.go#L71: 	return fmt.Sprintf("PhotosDeletePhotosRequest%+v", Alias(*d))
		tl_photos_get_user_photos_gen.go#L93: 	return fmt.Sprintf("PhotosGetUserPhotosRequest%+v", Alias(*g))
		tl_photos_photo_gen.go#L76: 	return fmt.Sprintf("PhotosPhoto%+v", Alias(*p))
		tl_photos_photos_gen.go#L81: 	return fmt.Sprintf("PhotosPhotos%+v", Alias(*p))
		tl_photos_photos_gen.go#L294: 	return fmt.Sprintf("PhotosPhotosSlice%+v", Alias(*p))
		tl_photos_update_profile_photo_gen.go#L93: 	return fmt.Sprintf("PhotosUpdateProfilePhotoRequest%+v", Alias(*u))
		tl_photos_upload_contact_profile_photo_gen.go#L140: 	return fmt.Sprintf("PhotosUploadContactProfilePhotoRequest%+v", Alias(*u))
		tl_photos_upload_profile_photo_gen.go#L127: 	return fmt.Sprintf("PhotosUploadProfilePhotoRequest%+v", Alias(*u))
		tl_poll_answer_gen.go#L118: 	return fmt.Sprintf("PollAnswer%+v", Alias(*p))
		tl_poll_answer_gen.go#L432: 	return fmt.Sprintf("InputPollAnswer%+v", Alias(*i))
		tl_poll_answer_voters_gen.go#L106: 	return fmt.Sprintf("PollAnswerVoters%+v", Alias(*p))
		tl_poll_gen.go#L177: 	return fmt.Sprintf("Poll%+v", Alias(*p))
		tl_poll_results_gen.go#L140: 	return fmt.Sprintf("PollResults%+v", Alias(*p))
		tl_popular_contact_gen.go#L76: 	return fmt.Sprintf("PopularContact%+v", Alias(*p))
		tl_post_address_gen.go#L96: 	return fmt.Sprintf("PostAddress%+v", Alias(*p))
		tl_post_interaction_counters_gen.go#L91: 	return fmt.Sprintf("PostInteractionCountersMessage%+v", Alias(*p))
		tl_post_interaction_counters_gen.go#L307: 	return fmt.Sprintf("PostInteractionCountersStory%+v", Alias(*p))
		tl_premium_apply_boost_gen.go#L92: 	return fmt.Sprintf("PremiumApplyBoostRequest%+v", Alias(*a))
		tl_premium_boosts_list_gen.go#L105: 	return fmt.Sprintf("PremiumBoostsList%+v", Alias(*b))
		tl_premium_boosts_status_gen.go#L157: 	return fmt.Sprintf("PremiumBoostsStatus%+v", Alias(*b))
		tl_premium_get_boosts_list_gen.go#L105: 	return fmt.Sprintf("PremiumGetBoostsListRequest%+v", Alias(*g))
		tl_premium_get_boosts_status_gen.go#L74: 	return fmt.Sprintf("PremiumGetBoostsStatusRequest%+v", Alias(*g))
		tl_premium_get_my_boosts_gen.go#L71: 	return fmt.Sprintf("PremiumGetMyBoostsRequest%+v", Alias(*g))
		tl_premium_get_user_boosts_gen.go#L77: 	return fmt.Sprintf("PremiumGetUserBoostsRequest%+v", Alias(*g))
		tl_premium_gift_code_option_gen.go#L123: 	return fmt.Sprintf("PremiumGiftCodeOption%+v", Alias(*p))
		tl_premium_gift_code_option_vector_gen.go#L68: 	return fmt.Sprintf("PremiumGiftCodeOptionVector%+v", Alias(*vec))
		tl_premium_my_boosts_gen.go#L85: 	return fmt.Sprintf("PremiumMyBoosts%+v", Alias(*m))
		tl_premium_subscription_option_gen.go#L134: 	return fmt.Sprintf("PremiumSubscriptionOption%+v", Alias(*p))
		tl_prepaid_giveaway_gen.go#L100: 	return fmt.Sprintf("PrepaidGiveaway%+v", Alias(*p))
		tl_prepaid_giveaway_gen.go#L327: 	return fmt.Sprintf("PrepaidStarsGiveaway%+v", Alias(*p))
		tl_privacy_key_gen.go#L84: 	return fmt.Sprintf("PrivacyKeyStatusTimestamp%+v", Alias(*p))
		tl_privacy_key_gen.go#L186: 	return fmt.Sprintf("PrivacyKeyChatInvite%+v", Alias(*p))
		tl_privacy_key_gen.go#L288: 	return fmt.Sprintf("PrivacyKeyPhoneCall%+v", Alias(*p))
		tl_privacy_key_gen.go#L390: 	return fmt.Sprintf("PrivacyKeyPhoneP2P%+v", Alias(*p))
		tl_privacy_key_gen.go#L495: 	return fmt.Sprintf("PrivacyKeyForwards%+v", Alias(*p))
		tl_privacy_key_gen.go#L597: 	return fmt.Sprintf("PrivacyKeyProfilePhoto%+v", Alias(*p))
		tl_privacy_key_gen.go#L699: 	return fmt.Sprintf("PrivacyKeyPhoneNumber%+v", Alias(*p))
		tl_privacy_key_gen.go#L801: 	return fmt.Sprintf("PrivacyKeyAddedByPhone%+v", Alias(*p))
		tl_privacy_key_gen.go#L903: 	return fmt.Sprintf("PrivacyKeyVoiceMessages%+v", Alias(*p))
		tl_privacy_key_gen.go#L1005: 	return fmt.Sprintf("PrivacyKeyAbout%+v", Alias(*p))
		tl_privacy_key_gen.go#L1107: 	return fmt.Sprintf("PrivacyKeyBirthday%+v", Alias(*p))
		tl_privacy_key_gen.go#L1212: 	return fmt.Sprintf("PrivacyKeyStarGiftsAutoSave%+v", Alias(*p))
		tl_privacy_key_gen.go#L1317: 	return fmt.Sprintf("PrivacyKeyNoPaidMessages%+v", Alias(*p))
		tl_privacy_key_gen.go#L1422: 	return fmt.Sprintf("PrivacyKeySavedMusic%+v", Alias(*p))
		tl_privacy_rule_gen.go#L71: 	return fmt.Sprintf("PrivacyValueAllowContacts%+v", Alias(*p))
		tl_privacy_rule_gen.go#L173: 	return fmt.Sprintf("PrivacyValueAllowAll%+v", Alias(*p))
		tl_privacy_rule_gen.go#L280: 	return fmt.Sprintf("PrivacyValueAllowUsers%+v", Alias(*p))
		tl_privacy_rule_gen.go#L423: 	return fmt.Sprintf("PrivacyValueDisallowContacts%+v", Alias(*p))
		tl_privacy_rule_gen.go#L525: 	return fmt.Sprintf("PrivacyValueDisallowAll%+v", Alias(*p))
		tl_privacy_rule_gen.go#L632: 	return fmt.Sprintf("PrivacyValueDisallowUsers%+v", Alias(*p))
		tl_privacy_rule_gen.go#L786: 	return fmt.Sprintf("PrivacyValueAllowChatParticipants%+v", Alias(*p))
		tl_privacy_rule_gen.go#L940: 	return fmt.Sprintf("PrivacyValueDisallowChatParticipants%+v", Alias(*p))
		tl_privacy_rule_gen.go#L1086: 	return fmt.Sprintf("PrivacyValueAllowCloseFriends%+v", Alias(*p))
		tl_privacy_rule_gen.go#L1193: 	return fmt.Sprintf("PrivacyValueAllowPremium%+v", Alias(*p))
		tl_privacy_rule_gen.go#L1295: 	return fmt.Sprintf("PrivacyValueAllowBots%+v", Alias(*p))
		tl_privacy_rule_gen.go#L1397: 	return fmt.Sprintf("PrivacyValueDisallowBots%+v", Alias(*p))
		tl_profile_tab_gen.go#L74: 	return fmt.Sprintf("ProfileTabPosts%+v", Alias(*p))
		tl_profile_tab_gen.go#L179: 	return fmt.Sprintf("ProfileTabGifts%+v", Alias(*p))
		tl_profile_tab_gen.go#L281: 	return fmt.Sprintf("ProfileTabMedia%+v", Alias(*p))
		tl_profile_tab_gen.go#L383: 	return fmt.Sprintf("ProfileTabFiles%+v", Alias(*p))
		tl_profile_tab_gen.go#L488: 	return fmt.Sprintf("ProfileTabMusic%+v", Alias(*p))
		tl_profile_tab_gen.go#L590: 	return fmt.Sprintf("ProfileTabVoice%+v", Alias(*p))
		tl_profile_tab_gen.go#L692: 	return fmt.Sprintf("ProfileTabLinks%+v", Alias(*p))
		tl_profile_tab_gen.go#L794: 	return fmt.Sprintf("ProfileTabGifs%+v", Alias(*p))
		tl_public_forward_gen.go#L79: 	return fmt.Sprintf("PublicForwardMessage%+v", Alias(*p))
		tl_public_forward_gen.go#L227: 	return fmt.Sprintf("PublicForwardStory%+v", Alias(*p))
		tl_quick_reply_gen.go#L89: 	return fmt.Sprintf("QuickReply%+v", Alias(*q))
		tl_reaction_count_gen.go#L92: 	return fmt.Sprintf("ReactionCount%+v", Alias(*r))
		tl_reaction_gen.go#L71: 	return fmt.Sprintf("ReactionEmpty%+v", Alias(*r))
		tl_reaction_gen.go#L178: 	return fmt.Sprintf("ReactionEmoji%+v", Alias(*r))
		tl_reaction_gen.go#L319: 	return fmt.Sprintf("ReactionCustomEmoji%+v", Alias(*r))
		tl_reaction_gen.go#L452: 	return fmt.Sprintf("ReactionPaid%+v", Alias(*r))
		tl_reaction_notifications_from_gen.go#L71: 	return fmt.Sprintf("ReactionNotificationsFromContacts%+v", Alias(*r))
		tl_reaction_notifications_from_gen.go#L173: 	return fmt.Sprintf("ReactionNotificationsFromAll%+v", Alias(*r))
		tl_reactions_notify_settings_gen.go#L118: 	return fmt.Sprintf("ReactionsNotifySettings%+v", Alias(*r))
		tl_read_participant_date_gen.go#L76: 	return fmt.Sprintf("ReadParticipantDate%+v", Alias(*r))
		tl_read_participant_date_vector_gen.go#L68: 	return fmt.Sprintf("ReadParticipantDateVector%+v", Alias(*vec))
		tl_received_notify_message_gen.go#L76: 	return fmt.Sprintf("ReceivedNotifyMessage%+v", Alias(*r))
		tl_received_notify_message_vector_gen.go#L68: 	return fmt.Sprintf("ReceivedNotifyMessageVector%+v", Alias(*vec))
		tl_recent_me_url_gen.go#L76: 	return fmt.Sprintf("RecentMeURLUnknown%+v", Alias(*r))
		tl_recent_me_url_gen.go#L216: 	return fmt.Sprintf("RecentMeURLUser%+v", Alias(*r))
		tl_recent_me_url_gen.go#L378: 	return fmt.Sprintf("RecentMeURLChat%+v", Alias(*r))
		tl_recent_me_url_gen.go#L540: 	return fmt.Sprintf("RecentMeURLChatInvite%+v", Alias(*r))
		tl_recent_me_url_gen.go#L707: 	return fmt.Sprintf("RecentMeURLStickerSet%+v", Alias(*r))
		tl_recent_story_gen.go#L85: 	return fmt.Sprintf("RecentStory%+v", Alias(*r))
		tl_recent_story_vector_gen.go#L68: 	return fmt.Sprintf("RecentStoryVector%+v", Alias(*vec))
		tl_reply_markup_gen.go#L89: 	return fmt.Sprintf("ReplyKeyboardHide%+v", Alias(*r))
		tl_reply_markup_gen.go#L273: 	return fmt.Sprintf("ReplyKeyboardForceReply%+v", Alias(*r))
		tl_reply_markup_gen.go#L545: 	return fmt.Sprintf("ReplyKeyboardMarkup%+v", Alias(*r))
		tl_reply_markup_gen.go#L869: 	return fmt.Sprintf("ReplyInlineMarkup%+v", Alias(*r))
		tl_report_reason_gen.go#L71: 	return fmt.Sprintf("InputReportReasonSpam%+v", Alias(*i))
		tl_report_reason_gen.go#L173: 	return fmt.Sprintf("InputReportReasonViolence%+v", Alias(*i))
		tl_report_reason_gen.go#L275: 	return fmt.Sprintf("InputReportReasonPornography%+v", Alias(*i))
		tl_report_reason_gen.go#L377: 	return fmt.Sprintf("InputReportReasonChildAbuse%+v", Alias(*i))
		tl_report_reason_gen.go#L479: 	return fmt.Sprintf("InputReportReasonOther%+v", Alias(*i))
		tl_report_reason_gen.go#L581: 	return fmt.Sprintf("InputReportReasonCopyright%+v", Alias(*i))
		tl_report_reason_gen.go#L683: 	return fmt.Sprintf("InputReportReasonGeoIrrelevant%+v", Alias(*i))
		tl_report_reason_gen.go#L785: 	return fmt.Sprintf("InputReportReasonFake%+v", Alias(*i))
		tl_report_reason_gen.go#L887: 	return fmt.Sprintf("InputReportReasonIllegalDrugs%+v", Alias(*i))
		tl_report_reason_gen.go#L989: 	return fmt.Sprintf("InputReportReasonPersonalDetails%+v", Alias(*i))
		tl_report_result_gen.go#L86: 	return fmt.Sprintf("ReportResultChooseOption%+v", Alias(*r))
		tl_report_result_gen.go#L283: 	return fmt.Sprintf("ReportResultAddComment%+v", Alias(*r))
		tl_report_result_gen.go#L456: 	return fmt.Sprintf("ReportResultReported%+v", Alias(*r))
		tl_request_peer_type_gen.go#L96: 	return fmt.Sprintf("RequestPeerTypeUser%+v", Alias(*r))
		tl_request_peer_type_gen.go#L357: 	return fmt.Sprintf("RequestPeerTypeChat%+v", Alias(*r))
		tl_request_peer_type_gen.go#L742: 	return fmt.Sprintf("RequestPeerTypeBroadcast%+v", Alias(*r))
		tl_request_peer_type_gen.go#L1039: 	return fmt.Sprintf("RequestPeerTypeCreateBot%+v", Alias(*r))
		tl_requested_peer_gen.go#L119: 	return fmt.Sprintf("RequestedPeerUser%+v", Alias(*r))
		tl_requested_peer_gen.go#L466: 	return fmt.Sprintf("RequestedPeerChat%+v", Alias(*r))
		tl_requested_peer_gen.go#L739: 	return fmt.Sprintf("RequestedPeerChannel%+v", Alias(*r))
		tl_requirement_to_contact_class_vector_gen.go#L68: 	return fmt.Sprintf("RequirementToContactClassVector%+v", Alias(*vec))
		tl_requirement_to_contact_gen.go#L71: 	return fmt.Sprintf("RequirementToContactEmpty%+v", Alias(*r))
		tl_requirement_to_contact_gen.go#L176: 	return fmt.Sprintf("RequirementToContactPremium%+v", Alias(*r))
		tl_requirement_to_contact_gen.go#L291: 	return fmt.Sprintf("RequirementToContactPaidMessages%+v", Alias(*r))
		tl_restriction_reason_gen.go#L90: 	return fmt.Sprintf("RestrictionReason%+v", Alias(*r))
		tl_rich_message_gen.go#L95: 	return fmt.Sprintf("RichMessage%+v", Alias(*r))
		tl_rich_text_gen.go#L71: 	return fmt.Sprintf("TextEmpty%+v", Alias(*t))
		tl_rich_text_gen.go#L178: 	return fmt.Sprintf("TextPlain%+v", Alias(*t))
		tl_rich_text_gen.go#L313: 	return fmt.Sprintf("TextBold%+v", Alias(*t))
		tl_rich_text_gen.go#L453: 	return fmt.Sprintf("TextItalic%+v", Alias(*t))
		tl_rich_text_gen.go#L593: 	return fmt.Sprintf("TextUnderline%+v", Alias(*t))
		tl_rich_text_gen.go#L733: 	return fmt.Sprintf("TextStrike%+v", Alias(*t))
		tl_rich_text_gen.go#L873: 	return fmt.Sprintf("TextFixed%+v", Alias(*t))
		tl_rich_text_gen.go#L1023: 	return fmt.Sprintf("TextURL%+v", Alias(*t))
		tl_rich_text_gen.go#L1212: 	return fmt.Sprintf("TextEmail%+v", Alias(*t))
		tl_rich_text_gen.go#L1374: 	return fmt.Sprintf("TextConcat%+v", Alias(*t))
		tl_rich_text_gen.go#L1532: 	return fmt.Sprintf("TextSubscript%+v", Alias(*t))
		tl_rich_text_gen.go#L1672: 	return fmt.Sprintf("TextSuperscript%+v", Alias(*t))
		tl_rich_text_gen.go#L1812: 	return fmt.Sprintf("TextMarked%+v", Alias(*t))
		tl_rich_text_gen.go#L1957: 	return fmt.Sprintf("TextPhone%+v", Alias(*t))
		tl_rich_text_gen.go#L2129: 	return fmt.Sprintf("TextImage%+v", Alias(*t))
		tl_rich_text_gen.go#L2313: 	return fmt.Sprintf("TextAnchor%+v", Alias(*t))
		tl_rich_text_gen.go#L2474: 	return fmt.Sprintf("TextMath%+v", Alias(*t))
		tl_rich_text_gen.go#L2613: 	return fmt.Sprintf("TextCustomEmoji%+v", Alias(*t))
		tl_rich_text_gen.go#L2769: 	return fmt.Sprintf("TextSpoiler%+v", Alias(*t))
		tl_rich_text_gen.go#L2908: 	return fmt.Sprintf("TextMention%+v", Alias(*t))
		tl_rich_text_gen.go#L3047: 	return fmt.Sprintf("TextHashtag%+v", Alias(*t))
		tl_rich_text_gen.go#L3186: 	return fmt.Sprintf("TextBotCommand%+v", Alias(*t))
		tl_rich_text_gen.go#L3325: 	return fmt.Sprintf("TextCashtag%+v", Alias(*t))
		tl_rich_text_gen.go#L3464: 	return fmt.Sprintf("TextAutoURL%+v", Alias(*t))
		tl_rich_text_gen.go#L3603: 	return fmt.Sprintf("TextAutoEmail%+v", Alias(*t))
		tl_rich_text_gen.go#L3742: 	return fmt.Sprintf("TextAutoPhone%+v", Alias(*t))
		tl_rich_text_gen.go#L3881: 	return fmt.Sprintf("TextBankCard%+v", Alias(*t))
		tl_rich_text_gen.go#L4025: 	return fmt.Sprintf("TextMentionName%+v", Alias(*t))
		tl_rich_text_gen.go#L4226: 	return fmt.Sprintf("TextDate%+v", Alias(*t))
		tl_saved_dialog_gen.go#L97: 	return fmt.Sprintf("SavedDialog%+v", Alias(*s))
		tl_saved_dialog_gen.go#L365: 	return fmt.Sprintf("MonoForumDialog%+v", Alias(*m))
		tl_saved_phone_contact_gen.go#L86: 	return fmt.Sprintf("SavedPhoneContact%+v", Alias(*s))
		tl_saved_phone_contact_vector_gen.go#L68: 	return fmt.Sprintf("SavedPhoneContactVector%+v", Alias(*vec))
		tl_saved_reaction_tag_gen.go#L97: 	return fmt.Sprintf("SavedReactionTag%+v", Alias(*s))
		tl_saved_star_gift_gen.go#L279: 	return fmt.Sprintf("SavedStarGift%+v", Alias(*s))
		tl_search_posts_flood_gen.go#L108: 	return fmt.Sprintf("SearchPostsFlood%+v", Alias(*s))
		tl_search_result_position_gen.go#L81: 	return fmt.Sprintf("SearchResultPosition%+v", Alias(*s))
		tl_search_results_calendar_period_gen.go#L94: 	return fmt.Sprintf("SearchResultsCalendarPeriod%+v", Alias(*s))
		tl_secure_credentials_encrypted_gen.go#L96: 	return fmt.Sprintf("SecureCredentialsEncrypted%+v", Alias(*s))
		tl_secure_data_gen.go#L85: 	return fmt.Sprintf("SecureData%+v", Alias(*s))
		tl_secure_file_gen.go#L71: 	return fmt.Sprintf("SecureFileEmpty%+v", Alias(*s))
		tl_secure_file_gen.go#L212: 	return fmt.Sprintf("SecureFile%+v", Alias(*s))
		tl_secure_password_kdf_algo_gen.go#L71: 	return fmt.Sprintf("SecurePasswordKdfAlgoUnknown%+v", Alias(*s))
		tl_secure_password_kdf_algo_gen.go#L180: 	return fmt.Sprintf("SecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000%+v", Alias(*s))
		tl_secure_password_kdf_algo_gen.go#L315: 	return fmt.Sprintf("SecurePasswordKdfAlgoSHA512%+v", Alias(*s))
		tl_secure_plain_data_gen.go#L80: 	return fmt.Sprintf("SecurePlainPhone%+v", Alias(*s))
		tl_secure_plain_data_gen.go#L219: 	return fmt.Sprintf("SecurePlainEmail%+v", Alias(*s))
		tl_secure_required_type_gen.go#L99: 	return fmt.Sprintf("SecureRequiredType%+v", Alias(*s))
		tl_secure_required_type_gen.go#L342: 	return fmt.Sprintf("SecureRequiredTypeOneOf%+v", Alias(*s))
		tl_secure_secret_settings_gen.go#L81: 	return fmt.Sprintf("SecureSecretSettings%+v", Alias(*s))
		tl_secure_value_error_gen.go#L103: 	return fmt.Sprintf("SecureValueErrorData%+v", Alias(*s))
		tl_secure_value_error_gen.go#L327: 	return fmt.Sprintf("SecureValueErrorFrontSide%+v", Alias(*s))
		tl_secure_value_error_gen.go#L526: 	return fmt.Sprintf("SecureValueErrorReverseSide%+v", Alias(*s))
		tl_secure_value_error_gen.go#L728: 	return fmt.Sprintf("SecureValueErrorSelfie%+v", Alias(*s))
		tl_secure_value_error_gen.go#L932: 	return fmt.Sprintf("SecureValueErrorFile%+v", Alias(*s))
		tl_secure_value_error_gen.go#L1136: 	return fmt.Sprintf("SecureValueErrorFiles%+v", Alias(*s))
		tl_secure_value_error_gen.go#L1343: 	return fmt.Sprintf("SecureValueError%+v", Alias(*s))
		tl_secure_value_error_gen.go#L1554: 	return fmt.Sprintf("SecureValueErrorTranslationFile%+v", Alias(*s))
		tl_secure_value_error_gen.go#L1765: 	return fmt.Sprintf("SecureValueErrorTranslationFiles%+v", Alias(*s))
		tl_secure_value_gen.go#L157: 	return fmt.Sprintf("SecureValue%+v", Alias(*s))
		tl_secure_value_hash_gen.go#L76: 	return fmt.Sprintf("SecureValueHash%+v", Alias(*s))
		tl_secure_value_type_gen.go#L71: 	return fmt.Sprintf("SecureValueTypePersonalDetails%+v", Alias(*s))
		tl_secure_value_type_gen.go#L173: 	return fmt.Sprintf("SecureValueTypePassport%+v", Alias(*s))
		tl_secure_value_type_gen.go#L275: 	return fmt.Sprintf("SecureValueTypeDriverLicense%+v", Alias(*s))
		tl_secure_value_type_gen.go#L377: 	return fmt.Sprintf("SecureValueTypeIdentityCard%+v", Alias(*s))
		tl_secure_value_type_gen.go#L482: 	return fmt.Sprintf("SecureValueTypeInternalPassport%+v", Alias(*s))
		tl_secure_value_type_gen.go#L584: 	return fmt.Sprintf("SecureValueTypeAddress%+v", Alias(*s))
		tl_secure_value_type_gen.go#L686: 	return fmt.Sprintf("SecureValueTypeUtilityBill%+v", Alias(*s))
		tl_secure_value_type_gen.go#L788: 	return fmt.Sprintf("SecureValueTypeBankStatement%+v", Alias(*s))
		tl_secure_value_type_gen.go#L890: 	return fmt.Sprintf("SecureValueTypeRentalAgreement%+v", Alias(*s))
		tl_secure_value_type_gen.go#L995: 	return fmt.Sprintf("SecureValueTypePassportRegistration%+v", Alias(*s))
		tl_secure_value_type_gen.go#L1097: 	return fmt.Sprintf("SecureValueTypeTemporaryRegistration%+v", Alias(*s))
		tl_secure_value_type_gen.go#L1199: 	return fmt.Sprintf("SecureValueTypePhone%+v", Alias(*s))
		tl_secure_value_type_gen.go#L1301: 	return fmt.Sprintf("SecureValueTypeEmail%+v", Alias(*s))
		tl_secure_value_vector_gen.go#L68: 	return fmt.Sprintf("SecureValueVector%+v", Alias(*vec))
		tl_send_as_peer_gen.go#L84: 	return fmt.Sprintf("SendAsPeer%+v", Alias(*s))
		tl_send_message_action_gen.go#L71: 	return fmt.Sprintf("SendMessageTypingAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L174: 	return fmt.Sprintf("SendMessageCancelAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L276: 	return fmt.Sprintf("SendMessageRecordVideoAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L383: 	return fmt.Sprintf("SendMessageUploadVideoAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L513: 	return fmt.Sprintf("SendMessageRecordAudioAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L620: 	return fmt.Sprintf("SendMessageUploadAudioAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L755: 	return fmt.Sprintf("SendMessageUploadPhotoAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L890: 	return fmt.Sprintf("SendMessageUploadDocumentAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L1020: 	return fmt.Sprintf("SendMessageGeoLocationAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L1122: 	return fmt.Sprintf("SendMessageChooseContactAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L1224: 	return fmt.Sprintf("SendMessageGamePlayAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L1326: 	return fmt.Sprintf("SendMessageRecordRoundAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L1433: 	return fmt.Sprintf("SendMessageUploadRoundAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L1563: 	return fmt.Sprintf("SpeakingInGroupCallAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L1670: 	return fmt.Sprintf("SendMessageHistoryImportAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L1800: 	return fmt.Sprintf("SendMessageChooseStickerAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L1924: 	return fmt.Sprintf("SendMessageEmojiInteraction%+v", Alias(*s))
		tl_send_message_action_gen.go#L2107: 	return fmt.Sprintf("SendMessageEmojiInteractionSeen%+v", Alias(*s))
		tl_send_message_action_gen.go#L2254: 	return fmt.Sprintf("SendMessageTextDraftAction%+v", Alias(*s))
		tl_send_message_action_gen.go#L2415: 	return fmt.Sprintf("InputSendMessageRichMessageDraftAction%+v", Alias(*i))
		tl_send_message_action_gen.go#L2581: 	return fmt.Sprintf("SendMessageRichMessageDraftAction%+v", Alias(*s))
		tl_shipping_option_gen.go#L81: 	return fmt.Sprintf("ShippingOption%+v", Alias(*s))
		tl_sms_job_gen.go#L81: 	return fmt.Sprintf("SMSJob%+v", Alias(*s))
		tl_smsjobs_eligible_to_join_gen.go#L76: 	return fmt.Sprintf("SMSJobsEligibleToJoin%+v", Alias(*e))
		tl_smsjobs_finish_job_gen.go#L86: 	return fmt.Sprintf("SMSJobsFinishJobRequest%+v", Alias(*f))
		tl_smsjobs_get_sms_job_gen.go#L71: 	return fmt.Sprintf("SMSJobsGetSMSJobRequest%+v", Alias(*g))
		tl_smsjobs_get_status_gen.go#L66: 	return fmt.Sprintf("SMSJobsGetStatusRequest%+v", Alias(*g))
		tl_smsjobs_is_eligible_to_join_gen.go#L66: 	return fmt.Sprintf("SMSJobsIsEligibleToJoinRequest%+v", Alias(*i))
		tl_smsjobs_join_gen.go#L66: 	return fmt.Sprintf("SMSJobsJoinRequest%+v", Alias(*j))
		tl_smsjobs_leave_gen.go#L66: 	return fmt.Sprintf("SMSJobsLeaveRequest%+v", Alias(*l))
		tl_smsjobs_status_gen.go#L116: 	return fmt.Sprintf("SMSJobsStatus%+v", Alias(*s))
		tl_smsjobs_update_settings_gen.go#L79: 	return fmt.Sprintf("SMSJobsUpdateSettingsRequest%+v", Alias(*u))
		tl_sponsored_message_gen.go#L189: 	return fmt.Sprintf("SponsoredMessage%+v", Alias(*s))
		tl_sponsored_message_report_option_gen.go#L82: 	return fmt.Sprintf("SponsoredMessageReportOption%+v", Alias(*s))
		tl_sponsored_peer_gen.go#L108: 	return fmt.Sprintf("SponsoredPeer%+v", Alias(*s))
		tl_star_gift_active_auction_state_gen.go#L88: 	return fmt.Sprintf("StarGiftActiveAuctionState%+v", Alias(*s))
		tl_star_gift_attribute_counter_gen.go#L76: 	return fmt.Sprintf("StarGiftAttributeCounter%+v", Alias(*s))
		tl_star_gift_attribute_gen.go#L109: 	return fmt.Sprintf("StarGiftAttributeModel%+v", Alias(*s))
		tl_star_gift_attribute_gen.go#L356: 	return fmt.Sprintf("StarGiftAttributePattern%+v", Alias(*s))
		tl_star_gift_attribute_gen.go#L581: 	return fmt.Sprintf("StarGiftAttributeBackdrop%+v", Alias(*s))
		tl_star_gift_attribute_gen.go#L885: 	return fmt.Sprintf("StarGiftAttributeOriginalDetails%+v", Alias(*s))
		tl_star_gift_attribute_id_gen.go#L82: 	return fmt.Sprintf("StarGiftAttributeIDModel%+v", Alias(*s))
		tl_star_gift_attribute_id_gen.go#L223: 	return fmt.Sprintf("StarGiftAttributeIDPattern%+v", Alias(*s))
		tl_star_gift_attribute_id_gen.go#L361: 	return fmt.Sprintf("StarGiftAttributeIDBackdrop%+v", Alias(*s))
		tl_star_gift_attribute_rarity_gen.go#L76: 	return fmt.Sprintf("StarGiftAttributeRarity%+v", Alias(*s))
		tl_star_gift_attribute_rarity_gen.go#L206: 	return fmt.Sprintf("StarGiftAttributeRarityUncommon%+v", Alias(*s))
		tl_star_gift_attribute_rarity_gen.go#L308: 	return fmt.Sprintf("StarGiftAttributeRarityRare%+v", Alias(*s))
		tl_star_gift_attribute_rarity_gen.go#L410: 	return fmt.Sprintf("StarGiftAttributeRarityEpic%+v", Alias(*s))
		tl_star_gift_attribute_rarity_gen.go#L512: 	return fmt.Sprintf("StarGiftAttributeRarityLegendary%+v", Alias(*s))
		tl_star_gift_auction_acquired_gift_gen.go#L122: 	return fmt.Sprintf("StarGiftAuctionAcquiredGift%+v", Alias(*s))
		tl_star_gift_auction_round_gen.go#L88: 	return fmt.Sprintf("StarGiftAuctionRound%+v", Alias(*s))
		tl_star_gift_auction_round_gen.go#L269: 	return fmt.Sprintf("StarGiftAuctionRoundExtendable%+v", Alias(*s))
		tl_star_gift_auction_state_gen.go#L76: 	return fmt.Sprintf("StarGiftAuctionStateNotModified%+v", Alias(*s))
		tl_star_gift_auction_state_gen.go#L272: 	return fmt.Sprintf("StarGiftAuctionState%+v", Alias(*s))
		tl_star_gift_auction_state_gen.go#L753: 	return fmt.Sprintf("StarGiftAuctionStateFinished%+v", Alias(*s))
		tl_star_gift_auction_user_state_gen.go#L134: 	return fmt.Sprintf("StarGiftAuctionUserState%+v", Alias(*s))
		tl_star_gift_background_gen.go#L84: 	return fmt.Sprintf("StarGiftBackground%+v", Alias(*s))
		tl_star_gift_collection_gen.go#L108: 	return fmt.Sprintf("StarGiftCollection%+v", Alias(*s))
		tl_star_gift_gen.go#L314: 	return fmt.Sprintf("StarGift%+v", Alias(*s))
		tl_star_gift_gen.go#L1668: 	return fmt.Sprintf("StarGiftUnique%+v", Alias(*s))
		tl_star_gift_upgrade_price_gen.go#L79: 	return fmt.Sprintf("StarGiftUpgradePrice%+v", Alias(*s))
		tl_star_ref_program_gen.go#L118: 	return fmt.Sprintf("StarRefProgram%+v", Alias(*s))
		tl_stars_amount_gen.go#L86: 	return fmt.Sprintf("StarsAmount%+v", Alias(*s))
		tl_stars_amount_gen.go#L243: 	return fmt.Sprintf("StarsTonAmount%+v", Alias(*s))
		tl_stars_gift_option_gen.go#L113: 	return fmt.Sprintf("StarsGiftOption%+v", Alias(*s))
		tl_stars_gift_option_vector_gen.go#L68: 	return fmt.Sprintf("StarsGiftOptionVector%+v", Alias(*vec))
		tl_stars_giveaway_option_gen.go#L133: 	return fmt.Sprintf("StarsGiveawayOption%+v", Alias(*s))
		tl_stars_giveaway_option_vector_gen.go#L68: 	return fmt.Sprintf("StarsGiveawayOptionVector%+v", Alias(*vec))
		tl_stars_giveaway_winners_option_gen.go#L92: 	return fmt.Sprintf("StarsGiveawayWinnersOption%+v", Alias(*s))
		tl_stars_rating_gen.go#L99: 	return fmt.Sprintf("StarsRating%+v", Alias(*s))
		tl_stars_revenue_status_gen.go#L108: 	return fmt.Sprintf("StarsRevenueStatus%+v", Alias(*s))
		tl_stars_subscription_gen.go#L157: 	return fmt.Sprintf("StarsSubscription%+v", Alias(*s))
		tl_stars_subscription_pricing_gen.go#L81: 	return fmt.Sprintf("StarsSubscriptionPricing%+v", Alias(*s))
		tl_stars_topup_option_gen.go#L113: 	return fmt.Sprintf("StarsTopupOption%+v", Alias(*s))
		tl_stars_topup_option_vector_gen.go#L68: 	return fmt.Sprintf("StarsTopupOptionVector%+v", Alias(*vec))
		tl_stars_transaction_gen.go#L389: 	return fmt.Sprintf("StarsTransaction%+v", Alias(*s))
		tl_stars_transaction_peer_gen.go#L75: 	return fmt.Sprintf("StarsTransactionPeerUnsupported%+v", Alias(*s))
		tl_stars_transaction_peer_gen.go#L181: 	return fmt.Sprintf("StarsTransactionPeerAppStore%+v", Alias(*s))
		tl_stars_transaction_peer_gen.go#L287: 	return fmt.Sprintf("StarsTransactionPeerPlayMarket%+v", Alias(*s))
		tl_stars_transaction_peer_gen.go#L396: 	return fmt.Sprintf("StarsTransactionPeerPremiumBot%+v", Alias(*s))
		tl_stars_transaction_peer_gen.go#L504: 	return fmt.Sprintf("StarsTransactionPeerFragment%+v", Alias(*s))
		tl_stars_transaction_peer_gen.go#L614: 	return fmt.Sprintf("StarsTransactionPeer%+v", Alias(*s))
		tl_stars_transaction_peer_gen.go#L754: 	return fmt.Sprintf("StarsTransactionPeerAds%+v", Alias(*s))
		tl_stars_transaction_peer_gen.go#L861: 	return fmt.Sprintf("StarsTransactionPeerAPI%+v", Alias(*s))
		tl_stats_abs_value_and_prev_gen.go#L77: 	return fmt.Sprintf("StatsAbsValueAndPrev%+v", Alias(*s))
		tl_stats_broadcast_stats_gen.go#L198: 	return fmt.Sprintf("StatsBroadcastStats%+v", Alias(*b))
		tl_stats_date_range_days_gen.go#L79: 	return fmt.Sprintf("StatsDateRangeDays%+v", Alias(*s))
		tl_stats_get_broadcast_stats_gen.go#L87: 	return fmt.Sprintf("StatsGetBroadcastStatsRequest%+v", Alias(*g))
		tl_stats_get_megagroup_stats_gen.go#L90: 	return fmt.Sprintf("StatsGetMegagroupStatsRequest%+v", Alias(*g))
		tl_stats_get_message_public_forwards_gen.go#L99: 	return fmt.Sprintf("StatsGetMessagePublicForwardsRequest%+v", Alias(*g))
		tl_stats_get_message_stats_gen.go#L92: 	return fmt.Sprintf("StatsGetMessageStatsRequest%+v", Alias(*g))
		tl_stats_get_poll_stats_gen.go#L85: 	return fmt.Sprintf("StatsGetPollStatsRequest%+v", Alias(*g))
		tl_stats_get_story_public_forwards_gen.go#L99: 	return fmt.Sprintf("StatsGetStoryPublicForwardsRequest%+v", Alias(*g))
		tl_stats_get_story_stats_gen.go#L93: 	return fmt.Sprintf("StatsGetStoryStatsRequest%+v", Alias(*g))
		tl_stats_graph_gen.go#L81: 	return fmt.Sprintf("StatsGraphAsync%+v", Alias(*s))
		tl_stats_graph_gen.go#L219: 	return fmt.Sprintf("StatsGraphError%+v", Alias(*s))
		tl_stats_graph_gen.go#L372: 	return fmt.Sprintf("StatsGraph%+v", Alias(*s))
		tl_stats_group_top_admin_gen.go#L95: 	return fmt.Sprintf("StatsGroupTopAdmin%+v", Alias(*s))
		tl_stats_group_top_inviter_gen.go#L79: 	return fmt.Sprintf("StatsGroupTopInviter%+v", Alias(*s))
		tl_stats_group_top_poster_gen.go#L84: 	return fmt.Sprintf("StatsGroupTopPoster%+v", Alias(*s))
		tl_stats_load_async_graph_gen.go#L92: 	return fmt.Sprintf("StatsLoadAsyncGraphRequest%+v", Alias(*l))
		tl_stats_megagroup_stats_gen.go#L154: 	return fmt.Sprintf("StatsMegagroupStats%+v", Alias(*m))
		tl_stats_message_stats_gen.go#L76: 	return fmt.Sprintf("StatsMessageStats%+v", Alias(*m))
		tl_stats_percent_value_gen.go#L80: 	return fmt.Sprintf("StatsPercentValue%+v", Alias(*s))
		tl_stats_poll_stats_gen.go#L70: 	return fmt.Sprintf("StatsPollStats%+v", Alias(*p))
		tl_stats_public_forwards_gen.go#L108: 	return fmt.Sprintf("StatsPublicForwards%+v", Alias(*p))
		tl_stats_story_stats_gen.go#L81: 	return fmt.Sprintf("StatsStoryStats%+v", Alias(*s))
		tl_stats_url_gen.go#L71: 	return fmt.Sprintf("StatsURL%+v", Alias(*s))
		tl_sticker_keyword_gen.go#L76: 	return fmt.Sprintf("StickerKeyword%+v", Alias(*s))
		tl_sticker_pack_gen.go#L81: 	return fmt.Sprintf("StickerPack%+v", Alias(*s))
		tl_sticker_set_covered_class_vector_gen.go#L68: 	return fmt.Sprintf("StickerSetCoveredClassVector%+v", Alias(*vec))
		tl_sticker_set_covered_gen.go#L81: 	return fmt.Sprintf("StickerSetCovered%+v", Alias(*s))
		tl_sticker_set_covered_gen.go#L248: 	return fmt.Sprintf("StickerSetMultiCovered%+v", Alias(*s))
		tl_sticker_set_covered_gen.go#L449: 	return fmt.Sprintf("StickerSetFullCovered%+v", Alias(*s))
		tl_sticker_set_covered_gen.go#L703: 	return fmt.Sprintf("StickerSetNoCovered%+v", Alias(*s))
		tl_sticker_set_gen.go#L188: 	return fmt.Sprintf("StickerSet%+v", Alias(*s))
		tl_stickers_add_sticker_to_set_gen.go#L77: 	return fmt.Sprintf("StickersAddStickerToSetRequest%+v", Alias(*a))
		tl_stickers_change_sticker_gen.go#L107: 	return fmt.Sprintf("StickersChangeStickerRequest%+v", Alias(*c))
		tl_stickers_change_sticker_position_gen.go#L77: 	return fmt.Sprintf("StickersChangeStickerPositionRequest%+v", Alias(*c))
		tl_stickers_check_short_name_gen.go#L71: 	return fmt.Sprintf("StickersCheckShortNameRequest%+v", Alias(*c))
		tl_stickers_create_sticker_set_gen.go#L139: 	return fmt.Sprintf("StickersCreateStickerSetRequest%+v", Alias(*c))
		tl_stickers_delete_sticker_set_gen.go#L71: 	return fmt.Sprintf("StickersDeleteStickerSetRequest%+v", Alias(*d))
		tl_stickers_remove_sticker_from_set_gen.go#L72: 	return fmt.Sprintf("StickersRemoveStickerFromSetRequest%+v", Alias(*r))
		tl_stickers_rename_sticker_set_gen.go#L76: 	return fmt.Sprintf("StickersRenameStickerSetRequest%+v", Alias(*r))
		tl_stickers_replace_sticker_gen.go#L79: 	return fmt.Sprintf("StickersReplaceStickerRequest%+v", Alias(*r))
		tl_stickers_set_sticker_set_thumb_gen.go#L97: 	return fmt.Sprintf("StickersSetStickerSetThumbRequest%+v", Alias(*s))
		tl_stickers_suggest_short_name_gen.go#L71: 	return fmt.Sprintf("StickersSuggestShortNameRequest%+v", Alias(*s))
		tl_stickers_suggested_short_name_gen.go#L71: 	return fmt.Sprintf("StickersSuggestedShortName%+v", Alias(*s))
		tl_storage_file_type_gen.go#L71: 	return fmt.Sprintf("StorageFileUnknown%+v", Alias(*f))
		tl_storage_file_type_gen.go#L173: 	return fmt.Sprintf("StorageFilePartial%+v", Alias(*f))
		tl_storage_file_type_gen.go#L275: 	return fmt.Sprintf("StorageFileJpeg%+v", Alias(*f))
		tl_storage_file_type_gen.go#L377: 	return fmt.Sprintf("StorageFileGif%+v", Alias(*f))
		tl_storage_file_type_gen.go#L479: 	return fmt.Sprintf("StorageFilePng%+v", Alias(*f))
		tl_storage_file_type_gen.go#L581: 	return fmt.Sprintf("StorageFilePdf%+v", Alias(*f))
		tl_storage_file_type_gen.go#L683: 	return fmt.Sprintf("StorageFileMp3%+v", Alias(*f))
		tl_storage_file_type_gen.go#L785: 	return fmt.Sprintf("StorageFileMov%+v", Alias(*f))
		tl_storage_file_type_gen.go#L887: 	return fmt.Sprintf("StorageFileMp4%+v", Alias(*f))
		tl_storage_file_type_gen.go#L989: 	return fmt.Sprintf("StorageFileWebp%+v", Alias(*f))
		tl_stories_activate_stealth_mode_gen.go#L100: 	return fmt.Sprintf("StoriesActivateStealthModeRequest%+v", Alias(*a))
		tl_stories_albums_gen.go#L74: 	return fmt.Sprintf("StoriesAlbumsNotModified%+v", Alias(*a))
		tl_stories_albums_gen.go#L193: 	return fmt.Sprintf("StoriesAlbums%+v", Alias(*a))
		tl_stories_all_stories_gen.go#L95: 	return fmt.Sprintf("StoriesAllStoriesNotModified%+v", Alias(*a))
		tl_stories_all_stories_gen.go#L312: 	return fmt.Sprintf("StoriesAllStories%+v", Alias(*a))
		tl_stories_can_send_story_count_gen.go#L76: 	return fmt.Sprintf("StoriesCanSendStoryCount%+v", Alias(*c))
		tl_stories_can_send_story_gen.go#L71: 	return fmt.Sprintf("StoriesCanSendStoryRequest%+v", Alias(*c))
		tl_stories_create_album_gen.go#L84: 	return fmt.Sprintf("StoriesCreateAlbumRequest%+v", Alias(*c))
		tl_stories_delete_album_gen.go#L79: 	return fmt.Sprintf("StoriesDeleteAlbumRequest%+v", Alias(*d))
		tl_stories_delete_stories_gen.go#L79: 	return fmt.Sprintf("StoriesDeleteStoriesRequest%+v", Alias(*d))
		tl_stories_edit_story_gen.go#L149: 	return fmt.Sprintf("StoriesEditStoryRequest%+v", Alias(*e))
		tl_stories_export_story_link_gen.go#L79: 	return fmt.Sprintf("StoriesExportStoryLinkRequest%+v", Alias(*e))
		tl_stories_found_stories_gen.go#L104: 	return fmt.Sprintf("StoriesFoundStories%+v", Alias(*f))
		tl_stories_get_album_stories_gen.go#L95: 	return fmt.Sprintf("StoriesGetAlbumStoriesRequest%+v", Alias(*g))
		tl_stories_get_albums_gen.go#L83: 	return fmt.Sprintf("StoriesGetAlbumsRequest%+v", Alias(*g))
		tl_stories_get_all_read_peer_stories_gen.go#L71: 	return fmt.Sprintf("StoriesGetAllReadPeerStoriesRequest%+v", Alias(*g))
		tl_stories_get_all_stories_gen.go#L111: 	return fmt.Sprintf("StoriesGetAllStoriesRequest%+v", Alias(*g))
		tl_stories_get_chats_to_send_gen.go#L69: 	return fmt.Sprintf("StoriesGetChatsToSendRequest%+v", Alias(*g))
		tl_stories_get_peer_max_ids_gen.go#L71: 	return fmt.Sprintf("StoriesGetPeerMaxIDsRequest%+v", Alias(*g))
		tl_stories_get_peer_stories_gen.go#L74: 	return fmt.Sprintf("StoriesGetPeerStoriesRequest%+v", Alias(*g))
		tl_stories_get_pinned_stories_gen.go#L90: 	return fmt.Sprintf("StoriesGetPinnedStoriesRequest%+v", Alias(*g))
		tl_stories_get_stories_archive_gen.go#L90: 	return fmt.Sprintf("StoriesGetStoriesArchiveRequest%+v", Alias(*g))
		tl_stories_get_stories_by_id_gen.go#L79: 	return fmt.Sprintf("StoriesGetStoriesByIDRequest%+v", Alias(*g))
		tl_stories_get_stories_views_gen.go#L80: 	return fmt.Sprintf("StoriesGetStoriesViewsRequest%+v", Alias(*g))
		tl_stories_get_story_reactions_list_gen.go#L125: 	return fmt.Sprintf("StoriesGetStoryReactionsListRequest%+v", Alias(*g))
		tl_stories_get_story_views_list_gen.go#L136: 	return fmt.Sprintf("StoriesGetStoryViewsListRequest%+v", Alias(*g))
		tl_stories_increment_story_views_gen.go#L76: 	return fmt.Sprintf("StoriesIncrementStoryViewsRequest%+v", Alias(*i))
		tl_stories_peer_stories_gen.go#L84: 	return fmt.Sprintf("StoriesPeerStories%+v", Alias(*p))
		tl_stories_read_stories_gen.go#L80: 	return fmt.Sprintf("StoriesReadStoriesRequest%+v", Alias(*r))
		tl_stories_reorder_albums_gen.go#L79: 	return fmt.Sprintf("StoriesReorderAlbumsRequest%+v", Alias(*r))
		tl_stories_report_gen.go#L86: 	return fmt.Sprintf("StoriesReportRequest%+v", Alias(*r))
		tl_stories_search_posts_gen.go#L126: 	return fmt.Sprintf("StoriesSearchPostsRequest%+v", Alias(*s))
		tl_stories_send_reaction_gen.go#L97: 	return fmt.Sprintf("StoriesSendReactionRequest%+v", Alias(*s))
		tl_stories_send_story_gen.go#L194: 	return fmt.Sprintf("StoriesSendStoryRequest%+v", Alias(*s))
		tl_stories_start_live_gen.go#L134: 	return fmt.Sprintf("StoriesStartLiveRequest%+v", Alias(*s))
		tl_stories_stealth_mode_gen.go#L91: 	return fmt.Sprintf("StoriesStealthMode%+v", Alias(*s))
		tl_stories_stories_gen.go#L104: 	return fmt.Sprintf("StoriesStories%+v", Alias(*s))
		tl_stories_story_reactions_list_gen.go#L108: 	return fmt.Sprintf("StoriesStoryReactionsList%+v", Alias(*s))
		tl_stories_story_views_gen.go#L79: 	return fmt.Sprintf("StoriesStoryViews%+v", Alias(*s))
		tl_stories_story_views_list_gen.go#L119: 	return fmt.Sprintf("StoriesStoryViewsList%+v", Alias(*s))
		tl_stories_toggle_all_stories_hidden_gen.go#L72: 	return fmt.Sprintf("StoriesToggleAllStoriesHiddenRequest%+v", Alias(*t))
		tl_stories_toggle_peer_stories_hidden_gen.go#L80: 	return fmt.Sprintf("StoriesTogglePeerStoriesHiddenRequest%+v", Alias(*t))
		tl_stories_toggle_pinned_gen.go#L81: 	return fmt.Sprintf("StoriesTogglePinnedRequest%+v", Alias(*t))
		tl_stories_toggle_pinned_to_top_gen.go#L82: 	return fmt.Sprintf("StoriesTogglePinnedToTopRequest%+v", Alias(*t))
		tl_stories_update_album_gen.go#L115: 	return fmt.Sprintf("StoriesUpdateAlbumRequest%+v", Alias(*u))
		tl_story_album_gen.go#L101: 	return fmt.Sprintf("StoryAlbum%+v", Alias(*s))
		tl_story_fwd_header_gen.go#L103: 	return fmt.Sprintf("StoryFwdHeader%+v", Alias(*s))
		tl_story_item_gen.go#L76: 	return fmt.Sprintf("StoryItemDeleted%+v", Alias(*s))
		tl_story_item_gen.go#L248: 	return fmt.Sprintf("StoryItemSkipped%+v", Alias(*s))
		tl_story_item_gen.go#L669: 	return fmt.Sprintf("StoryItem%+v", Alias(*s))
		tl_story_reaction_gen.go#L86: 	return fmt.Sprintf("StoryReaction%+v", Alias(*s))
		tl_story_reaction_gen.go#L275: 	return fmt.Sprintf("StoryReactionPublicForward%+v", Alias(*s))
		tl_story_reaction_gen.go#L420: 	return fmt.Sprintf("StoryReactionPublicRepost%+v", Alias(*s))
		tl_story_view_gen.go#L116: 	return fmt.Sprintf("StoryView%+v", Alias(*s))
		tl_story_view_gen.go#L417: 	return fmt.Sprintf("StoryViewPublicForward%+v", Alias(*s))
		tl_story_view_gen.go#L660: 	return fmt.Sprintf("StoryViewPublicRepost%+v", Alias(*s))
		tl_story_views_gen.go#L119: 	return fmt.Sprintf("StoryViews%+v", Alias(*s))
		tl_string_gen.go#L65: 	return fmt.Sprintf("String%+v", Alias(*s))
		tl_suggested_post_gen.go#L101: 	return fmt.Sprintf("SuggestedPost%+v", Alias(*s))
		tl_test_use_config_simple_gen.go#L65: 	return fmt.Sprintf("TestUseConfigSimpleRequest%+v", Alias(*u))
		tl_test_use_error_gen.go#L65: 	return fmt.Sprintf("TestUseErrorRequest%+v", Alias(*u))
		tl_text_with_entities_gen.go#L82: 	return fmt.Sprintf("TextWithEntities%+v", Alias(*t))
		tl_theme_gen.go#L140: 	return fmt.Sprintf("Theme%+v", Alias(*t))
		tl_theme_settings_gen.go#L117: 	return fmt.Sprintf("ThemeSettings%+v", Alias(*t))
		tl_timezone_gen.go#L82: 	return fmt.Sprintf("Timezone%+v", Alias(*t))
		tl_todo_completion_gen.go#L84: 	return fmt.Sprintf("TodoCompletion%+v", Alias(*t))
		tl_todo_item_gen.go#L82: 	return fmt.Sprintf("TodoItem%+v", Alias(*t))
		tl_todo_list_gen.go#L100: 	return fmt.Sprintf("TodoList%+v", Alias(*t))
		tl_top_peer_category_gen.go#L71: 	return fmt.Sprintf("TopPeerCategoryBotsPM%+v", Alias(*t))
		tl_top_peer_category_gen.go#L173: 	return fmt.Sprintf("TopPeerCategoryBotsInline%+v", Alias(*t))
		tl_top_peer_category_gen.go#L275: 	return fmt.Sprintf("TopPeerCategoryCorrespondents%+v", Alias(*t))
		tl_top_peer_category_gen.go#L377: 	return fmt.Sprintf("TopPeerCategoryGroups%+v", Alias(*t))
		tl_top_peer_category_gen.go#L479: 	return fmt.Sprintf("TopPeerCategoryChannels%+v", Alias(*t))
		tl_top_peer_category_gen.go#L581: 	return fmt.Sprintf("TopPeerCategoryPhoneCalls%+v", Alias(*t))
		tl_top_peer_category_gen.go#L683: 	return fmt.Sprintf("TopPeerCategoryForwardUsers%+v", Alias(*t))
		tl_top_peer_category_gen.go#L785: 	return fmt.Sprintf("TopPeerCategoryForwardChats%+v", Alias(*t))
		tl_top_peer_category_gen.go#L890: 	return fmt.Sprintf("TopPeerCategoryBotsApp%+v", Alias(*t))
		tl_top_peer_category_gen.go#L991: 	return fmt.Sprintf("TopPeerCategoryBotsGuestChat%+v", Alias(*t))
		tl_top_peer_category_peers_gen.go#L81: 	return fmt.Sprintf("TopPeerCategoryPeers%+v", Alias(*t))
		tl_top_peer_gen.go#L79: 	return fmt.Sprintf("TopPeer%+v", Alias(*t))
		tl_true_gen.go#L69: 	return fmt.Sprintf("True%+v", Alias(*t))
		tl_update_gen.go#L89: 	return fmt.Sprintf("UpdateNewMessage%+v", Alias(*u))
		tl_update_gen.go#L281: 	return fmt.Sprintf("UpdateMessageID%+v", Alias(*u))
		tl_update_gen.go#L451: 	return fmt.Sprintf("UpdateDeleteMessages%+v", Alias(*u))
		tl_update_gen.go#L668: 	return fmt.Sprintf("UpdateUserTyping%+v", Alias(*u))
		tl_update_gen.go#L896: 	return fmt.Sprintf("UpdateChatUserTyping%+v", Alias(*u))
		tl_update_gen.go#L1092: 	return fmt.Sprintf("UpdateChatParticipants%+v", Alias(*u))
		tl_update_gen.go#L1237: 	return fmt.Sprintf("UpdateUserStatus%+v", Alias(*u))
		tl_update_gen.go#L1422: 	return fmt.Sprintf("UpdateUserName%+v", Alias(*u))
		tl_update_gen.go#L1678: 	return fmt.Sprintf("UpdateNewAuthorization%+v", Alias(*u))
		tl_update_gen.go#L1987: 	return fmt.Sprintf("UpdateNewEncryptedMessage%+v", Alias(*u))
		tl_update_gen.go#L2151: 	return fmt.Sprintf("UpdateEncryptedChatTyping%+v", Alias(*u))
		tl_update_gen.go#L2291: 	return fmt.Sprintf("UpdateEncryption%+v", Alias(*u))
		tl_update_gen.go#L2463: 	return fmt.Sprintf("UpdateEncryptedMessagesRead%+v", Alias(*u))
		tl_update_gen.go#L2666: 	return fmt.Sprintf("UpdateChatParticipantAdd%+v", Alias(*u))
		tl_update_gen.go#L2906: 	return fmt.Sprintf("UpdateChatParticipantDelete%+v", Alias(*u))
		tl_update_gen.go#L3085: 	return fmt.Sprintf("UpdateDCOptions%+v", Alias(*u))
		tl_update_gen.go#L3240: 	return fmt.Sprintf("UpdateNotifySettings%+v", Alias(*u))
		tl_update_gen.go#L3458: 	return fmt.Sprintf("UpdateServiceNotification%+v", Alias(*u))
		tl_update_gen.go#L3806: 	return fmt.Sprintf("UpdatePrivacy%+v", Alias(*u))
		tl_update_gen.go#L3996: 	return fmt.Sprintf("UpdateUserPhone%+v", Alias(*u))
		tl_update_gen.go#L4207: 	return fmt.Sprintf("UpdateReadHistoryInbox%+v", Alias(*u))
		tl_update_gen.go#L4551: 	return fmt.Sprintf("UpdateReadHistoryOutbox%+v", Alias(*u))
		tl_update_gen.go#L4776: 	return fmt.Sprintf("UpdateWebPage%+v", Alias(*u))
		tl_update_gen.go#L4997: 	return fmt.Sprintf("UpdateReadMessagesContents%+v", Alias(*u))
		tl_update_gen.go#L5273: 	return fmt.Sprintf("UpdateChannelTooLong%+v", Alias(*u))
		tl_update_gen.go#L5477: 	return fmt.Sprintf("UpdateChannel%+v", Alias(*u))
		tl_update_gen.go#L5631: 	return fmt.Sprintf("UpdateNewChannelMessage%+v", Alias(*u))
		tl_update_gen.go#L5854: 	return fmt.Sprintf("UpdateReadChannelInbox%+v", Alias(*u))
		tl_update_gen.go#L6133: 	return fmt.Sprintf("UpdateDeleteChannelMessages%+v", Alias(*u))
		tl_update_gen.go#L6357: 	return fmt.Sprintf("UpdateChannelMessageViews%+v", Alias(*u))
		tl_update_gen.go#L6558: 	return fmt.Sprintf("UpdateChatParticipantAdmin%+v", Alias(*u))
		tl_update_gen.go#L6759: 	return fmt.Sprintf("UpdateNewStickerSet%+v", Alias(*u))
		tl_update_gen.go#L6917: 	return fmt.Sprintf("UpdateStickerSetsOrder%+v", Alias(*u))
		tl_update_gen.go#L7158: 	return fmt.Sprintf("UpdateStickerSets%+v", Alias(*u))
		tl_update_gen.go#L7343: 	return fmt.Sprintf("UpdateSavedGifs%+v", Alias(*u))
		tl_update_gen.go#L7487: 	return fmt.Sprintf("UpdateBotInlineQuery%+v", Alias(*u))
		tl_update_gen.go#L7832: 	return fmt.Sprintf("UpdateBotInlineSend%+v", Alias(*u))
		tl_update_gen.go#L8135: 	return fmt.Sprintf("UpdateEditChannelMessage%+v", Alias(*u))
		tl_update_gen.go#L8363: 	return fmt.Sprintf("UpdateBotCallbackQuery%+v", Alias(*u))
		tl_update_gen.go#L8702: 	return fmt.Sprintf("UpdateEditMessage%+v", Alias(*u))
		tl_update_gen.go#L8925: 	return fmt.Sprintf("UpdateInlineBotCallbackQuery%+v", Alias(*u))
		tl_update_gen.go#L9234: 	return fmt.Sprintf("UpdateReadChannelOutbox%+v", Alias(*u))
		tl_update_gen.go#L9427: 	return fmt.Sprintf("UpdateDraftMessage%+v", Alias(*u))
		tl_update_gen.go#L9689: 	return fmt.Sprintf("UpdateReadFeaturedStickers%+v", Alias(*u))
		tl_update_gen.go#L9791: 	return fmt.Sprintf("UpdateRecentStickers%+v", Alias(*u))
		tl_update_gen.go#L9898: 	return fmt.Sprintf("UpdateConfig%+v", Alias(*u))
		tl_update_gen.go#L10005: 	return fmt.Sprintf("UpdatePtsChanged%+v", Alias(*u))
		tl_update_gen.go#L10139: 	return fmt.Sprintf("UpdateChannelWebPage%+v", Alias(*u))
		tl_update_gen.go#L10368: 	return fmt.Sprintf("UpdateDialogPinned%+v", Alias(*u))
		tl_update_gen.go#L10612: 	return fmt.Sprintf("UpdatePinnedDialogs%+v", Alias(*u))
		tl_update_gen.go#L10846: 	return fmt.Sprintf("UpdateBotWebhookJSON%+v", Alias(*u))
		tl_update_gen.go#L10991: 	return fmt.Sprintf("UpdateBotWebhookJSONQuery%+v", Alias(*u))
		tl_update_gen.go#L11185: 	return fmt.Sprintf("UpdateBotShippingQuery%+v", Alias(*u))
		tl_update_gen.go#L11438: 	return fmt.Sprintf("UpdateBotPrecheckoutQuery%+v", Alias(*u))
		tl_update_gen.go#L11756: 	return fmt.Sprintf("UpdatePhoneCall%+v", Alias(*u))
		tl_update_gen.go#L11900: 	return fmt.Sprintf("UpdateLangPackTooLong%+v", Alias(*u))
		tl_update_gen.go#L12035: 	return fmt.Sprintf("UpdateLangPack%+v", Alias(*u))
		tl_update_gen.go#L12169: 	return fmt.Sprintf("UpdateFavedStickers%+v", Alias(*u))
		tl_update_gen.go#L12318: 	return fmt.Sprintf("UpdateChannelReadMessagesContents%+v", Alias(*u))
		tl_update_gen.go#L12583: 	return fmt.Sprintf("UpdateContactsReset%+v", Alias(*u))
		tl_update_gen.go#L12698: 	return fmt.Sprintf("UpdateChannelAvailableMessages%+v", Alias(*u))
		tl_update_gen.go#L12878: 	return fmt.Sprintf("UpdateDialogUnreadMark%+v", Alias(*u))
		tl_update_gen.go#L13148: 	return fmt.Sprintf("UpdateMessagePoll%+v", Alias(*u))
		tl_update_gen.go#L13504: 	return fmt.Sprintf("UpdateChatDefaultBannedRights%+v", Alias(*u))
		tl_update_gen.go#L13707: 	return fmt.Sprintf("UpdateFolderPeers%+v", Alias(*u))
		tl_update_gen.go#L13906: 	return fmt.Sprintf("UpdatePeerSettings%+v", Alias(*u))
		tl_update_gen.go#L14068: 	return fmt.Sprintf("UpdatePeerLocated%+v", Alias(*u))
		tl_update_gen.go#L14229: 	return fmt.Sprintf("UpdateNewScheduledMessage%+v", Alias(*u))
		tl_update_gen.go#L14399: 	return fmt.Sprintf("UpdateDeleteScheduledMessages%+v", Alias(*u))
		tl_update_gen.go#L14641: 	return fmt.Sprintf("UpdateTheme%+v", Alias(*u))
		tl_update_gen.go#L14781: 	return fmt.Sprintf("UpdateGeoLiveViewed%+v", Alias(*u))
		tl_update_gen.go#L14938: 	return fmt.Sprintf("UpdateLoginToken%+v", Alias(*u))
		tl_update_gen.go#L15068: 	return fmt.Sprintf("UpdateMessagePollVote%+v", Alias(*u))
		tl_update_gen.go#L15346: 	return fmt.Sprintf("UpdateDialogFilter%+v", Alias(*u))
		tl_update_gen.go#L15546: 	return fmt.Sprintf("UpdateDialogFilterOrder%+v", Alias(*u))
		tl_update_gen.go#L15692: 	return fmt.Sprintf("UpdateDialogFilters%+v", Alias(*u))
		tl_update_gen.go#L15804: 	return fmt.Sprintf("UpdatePhoneCallSignalingData%+v", Alias(*u))
		tl_update_gen.go#L15971: 	return fmt.Sprintf("UpdateChannelMessageForwards%+v", Alias(*u))
		tl_update_gen.go#L16202: 	return fmt.Sprintf("UpdateReadChannelDiscussionInbox%+v", Alias(*u))
		tl_update_gen.go#L16498: 	return fmt.Sprintf("UpdateReadChannelDiscussionOutbox%+v", Alias(*u))
		tl_update_gen.go#L16702: 	return fmt.Sprintf("UpdatePeerBlocked%+v", Alias(*u))
		tl_update_gen.go#L16947: 	return fmt.Sprintf("UpdateChannelUserTyping%+v", Alias(*u))
		tl_update_gen.go#L17224: 	return fmt.Sprintf("UpdatePinnedMessages%+v", Alias(*u))
		tl_update_gen.go#L17523: 	return fmt.Sprintf("UpdatePinnedChannelMessages%+v", Alias(*u))
		tl_update_gen.go#L17795: 	return fmt.Sprintf("UpdateChat%+v", Alias(*u))
		tl_update_gen.go#L17943: 	return fmt.Sprintf("UpdateGroupCallParticipants%+v", Alias(*u))
		tl_update_gen.go#L18165: 	return fmt.Sprintf("UpdateGroupCall%+v", Alias(*u))
		tl_update_gen.go#L18409: 	return fmt.Sprintf("UpdatePeerHistoryTTL%+v", Alias(*u))
		tl_update_gen.go#L18662: 	return fmt.Sprintf("UpdateChatParticipant%+v", Alias(*u))
		tl_update_gen.go#L19103: 	return fmt.Sprintf("UpdateChannelParticipant%+v", Alias(*u))
		tl_update_gen.go#L19525: 	return fmt.Sprintf("UpdateBotStopped%+v", Alias(*u))
		tl_update_gen.go#L19742: 	return fmt.Sprintf("UpdateGroupCallConnection%+v", Alias(*u))
		tl_update_gen.go#L19933: 	return fmt.Sprintf("UpdateBotCommands%+v", Alias(*u))
		tl_update_gen.go#L20145: 	return fmt.Sprintf("UpdatePendingJoinRequests%+v", Alias(*u))
		tl_update_gen.go#L20392: 	return fmt.Sprintf("UpdateBotChatInviteRequester%+v", Alias(*u))
		tl_update_gen.go#L20742: 	return fmt.Sprintf("UpdateMessageReactions%+v", Alias(*u))
		tl_update_gen.go#L21026: 	return fmt.Sprintf("UpdateAttachMenuBots%+v", Alias(*u))
		tl_update_gen.go#L21137: 	return fmt.Sprintf("UpdateWebViewResultSent%+v", Alias(*u))
		tl_update_gen.go#L21277: 	return fmt.Sprintf("UpdateBotMenuButton%+v", Alias(*u))
		tl_update_gen.go#L21438: 	return fmt.Sprintf("UpdateSavedRingtones%+v", Alias(*u))
		tl_update_gen.go#L21582: 	return fmt.Sprintf("UpdateTranscribedAudio%+v", Alias(*u))
		tl_update_gen.go#L21829: 	return fmt.Sprintf("UpdateReadFeaturedEmojiStickers%+v", Alias(*u))
		tl_update_gen.go#L21947: 	return fmt.Sprintf("UpdateUserEmojiStatus%+v", Alias(*u))
		tl_update_gen.go#L22107: 	return fmt.Sprintf("UpdateRecentEmojiStatuses%+v", Alias(*u))
		tl_update_gen.go#L22212: 	return fmt.Sprintf("UpdateRecentReactions%+v", Alias(*u))
		tl_update_gen.go#L22349: 	return fmt.Sprintf("UpdateMoveStickerSetToTop%+v", Alias(*u))
		tl_update_gen.go#L22573: 	return fmt.Sprintf("UpdateMessageExtendedMedia%+v", Alias(*u))
		tl_update_gen.go#L22795: 	return fmt.Sprintf("UpdateUser%+v", Alias(*u))
		tl_update_gen.go#L22929: 	return fmt.Sprintf("UpdateAutoSaveSettings%+v", Alias(*u))
		tl_update_gen.go#L23041: 	return fmt.Sprintf("UpdateStory%+v", Alias(*u))
		tl_update_gen.go#L23213: 	return fmt.Sprintf("UpdateReadStories%+v", Alias(*u))
		tl_update_gen.go#L23393: 	return fmt.Sprintf("UpdateStoryID%+v", Alias(*u))
		tl_update_gen.go#L23556: 	return fmt.Sprintf("UpdateStoriesStealthMode%+v", Alias(*u))
		tl_update_gen.go#L23704: 	return fmt.Sprintf("UpdateSentStoryReaction%+v", Alias(*u))
		tl_update_gen.go#L23909: 	return fmt.Sprintf("UpdateBotChatBoost%+v", Alias(*u))
		tl_update_gen.go#L24109: 	return fmt.Sprintf("UpdateChannelViewForumAsMessages%+v", Alias(*u))
		tl_update_gen.go#L24295: 	return fmt.Sprintf("UpdatePeerWallpaper%+v", Alias(*u))
		tl_update_gen.go#L24557: 	return fmt.Sprintf("UpdateBotMessageReaction%+v", Alias(*u))
		tl_update_gen.go#L24903: 	return fmt.Sprintf("UpdateBotMessageReactions%+v", Alias(*u))
		tl_update_gen.go#L25162: 	return fmt.Sprintf("UpdateSavedDialogPinned%+v", Alias(*u))
		tl_update_gen.go#L25358: 	return fmt.Sprintf("UpdatePinnedSavedDialogs%+v", Alias(*u))
		tl_update_gen.go#L25551: 	return fmt.Sprintf("UpdateSavedReactionTags%+v", Alias(*u))
		tl_update_gen.go#L25658: 	return fmt.Sprintf("UpdateSMSJob%+v", Alias(*u))
		tl_update_gen.go#L25796: 	return fmt.Sprintf("UpdateQuickReplies%+v", Alias(*u))
		tl_update_gen.go#L25949: 	return fmt.Sprintf("UpdateNewQuickReply%+v", Alias(*u))
		tl_update_gen.go#L26090: 	return fmt.Sprintf("UpdateDeleteQuickReply%+v", Alias(*u))
		tl_update_gen.go#L26232: 	return fmt.Sprintf("UpdateQuickReplyMessage%+v", Alias(*u))
		tl_update_gen.go#L26380: 	return fmt.Sprintf("UpdateDeleteQuickReplyMessages%+v", Alias(*u))
		tl_update_gen.go#L26565: 	return fmt.Sprintf("UpdateBotBusinessConnect%+v", Alias(*u))
		tl_update_gen.go#L26753: 	return fmt.Sprintf("UpdateBotNewBusinessMessage%+v", Alias(*u))
		tl_update_gen.go#L27027: 	return fmt.Sprintf("UpdateBotEditBusinessMessage%+v", Alias(*u))
		tl_update_gen.go#L27294: 	return fmt.Sprintf("UpdateBotDeleteBusinessMessage%+v", Alias(*u))
		tl_update_gen.go#L27532: 	return fmt.Sprintf("UpdateNewStoryReaction%+v", Alias(*u))
		tl_update_gen.go#L27724: 	return fmt.Sprintf("UpdateStarsBalance%+v", Alias(*u))
		tl_update_gen.go#L27915: 	return fmt.Sprintf("UpdateBusinessBotCallbackQuery%+v", Alias(*u))
		tl_update_gen.go#L28251: 	return fmt.Sprintf("UpdateStarsRevenueStatus%+v", Alias(*u))
		tl_update_gen.go#L28432: 	return fmt.Sprintf("UpdateBotPurchasedPaidMedia%+v", Alias(*u))
		tl_update_gen.go#L28618: 	return fmt.Sprintf("UpdatePaidReactionPrivacy%+v", Alias(*u))
		tl_update_gen.go#L28758: 	return fmt.Sprintf("UpdateSentPhoneCode%+v", Alias(*u))
		tl_update_gen.go#L28916: 	return fmt.Sprintf("UpdateGroupCallChainBlocks%+v", Alias(*u))
		tl_update_gen.go#L29148: 	return fmt.Sprintf("UpdateReadMonoForumInbox%+v", Alias(*u))
		tl_update_gen.go#L29345: 	return fmt.Sprintf("UpdateReadMonoForumOutbox%+v", Alias(*u))
		tl_update_gen.go#L29552: 	return fmt.Sprintf("UpdateMonoForumNoPaidException%+v", Alias(*u))
		tl_update_gen.go#L29767: 	return fmt.Sprintf("UpdateGroupCallMessage%+v", Alias(*u))
		tl_update_gen.go#L29944: 	return fmt.Sprintf("UpdateGroupCallEncryptedMessage%+v", Alias(*u))
		tl_update_gen.go#L30155: 	return fmt.Sprintf("UpdatePinnedForumTopic%+v", Alias(*u))
		tl_update_gen.go#L30379: 	return fmt.Sprintf("UpdatePinnedForumTopics%+v", Alias(*u))
		tl_update_gen.go#L30590: 	return fmt.Sprintf("UpdateDeleteGroupCallMessages%+v", Alias(*u))
		tl_update_gen.go#L30777: 	return fmt.Sprintf("UpdateStarGiftAuctionState%+v", Alias(*u))
		tl_update_gen.go#L30952: 	return fmt.Sprintf("UpdateStarGiftAuctionUserState%+v", Alias(*u))
		tl_update_gen.go#L31108: 	return fmt.Sprintf("UpdateEmojiGameInfo%+v", Alias(*u))
		tl_update_gen.go#L31246: 	return fmt.Sprintf("UpdateStarGiftCraftFail%+v", Alias(*u))
		tl_update_gen.go#L31376: 	return fmt.Sprintf("UpdateChatParticipantRank%+v", Alias(*u))
		tl_update_gen.go#L31586: 	return fmt.Sprintf("UpdateManagedBot%+v", Alias(*u))
		tl_update_gen.go#L31786: 	return fmt.Sprintf("UpdateBotGuestChatQuery%+v", Alias(*u))
		tl_update_gen.go#L32044: 	return fmt.Sprintf("UpdateAiComposeTones%+v", Alias(*u))
		tl_update_gen.go#L32160: 	return fmt.Sprintf("UpdateJoinChatWebViewDecision%+v", Alias(*u))
		tl_update_gen.go#L32379: 	return fmt.Sprintf("UpdateNewBotConnection%+v", Alias(*u))
		tl_update_gen.go#L32689: 	return fmt.Sprintf("UpdateWebBrowserSettings%+v", Alias(*u))
		tl_update_gen.go#L32891: 	return fmt.Sprintf("UpdateWebBrowserException%+v", Alias(*u))
		tl_updates_channel_difference_gen.go#L103: 	return fmt.Sprintf("UpdatesChannelDifferenceEmpty%+v", Alias(*c))
		tl_updates_channel_difference_gen.go#L365: 	return fmt.Sprintf("UpdatesChannelDifferenceTooLong%+v", Alias(*c))
		tl_updates_channel_difference_gen.go#L772: 	return fmt.Sprintf("UpdatesChannelDifference%+v", Alias(*c))
		tl_updates_difference_gen.go#L81: 	return fmt.Sprintf("UpdatesDifferenceEmpty%+v", Alias(*d))
		tl_updates_difference_gen.go#L263: 	return fmt.Sprintf("UpdatesDifference%+v", Alias(*d))
		tl_updates_difference_gen.go#L651: 	return fmt.Sprintf("UpdatesDifferenceSlice%+v", Alias(*d))
		tl_updates_difference_gen.go#L1014: 	return fmt.Sprintf("UpdatesDifferenceTooLong%+v", Alias(*d))
		tl_updates_gen.go#L81: 	return fmt.Sprintf("UpdatesTooLong%+v", Alias(*u))
		tl_updates_gen.go#L292: 	return fmt.Sprintf("UpdateShortMessage%+v", Alias(*u))
		tl_updates_gen.go#L1013: 	return fmt.Sprintf("UpdateShortChatMessage%+v", Alias(*u))
		tl_updates_gen.go#L1654: 	return fmt.Sprintf("UpdateShort%+v", Alias(*u))
		tl_updates_gen.go#L1841: 	return fmt.Sprintf("UpdatesCombined%+v", Alias(*u))
		tl_updates_gen.go#L2174: 	return fmt.Sprintf("Updates%+v", Alias(*u))
		tl_updates_gen.go#L2529: 	return fmt.Sprintf("UpdateShortSentMessage%+v", Alias(*u))
		tl_updates_get_channel_difference_gen.go#L104: 	return fmt.Sprintf("UpdatesGetChannelDifferenceRequest%+v", Alias(*g))
		tl_updates_get_difference_gen.go#L128: 	return fmt.Sprintf("UpdatesGetDifferenceRequest%+v", Alias(*g))
		tl_updates_get_state_gen.go#L66: 	return fmt.Sprintf("UpdatesGetStateRequest%+v", Alias(*g))
		tl_updates_state_gen.go#L95: 	return fmt.Sprintf("UpdatesState%+v", Alias(*s))
		tl_upload_cdn_file_gen.go#L83: 	return fmt.Sprintf("UploadCDNFileReuploadNeeded%+v", Alias(*c))
		tl_upload_cdn_file_gen.go#L221: 	return fmt.Sprintf("UploadCDNFile%+v", Alias(*c))
		tl_upload_file_gen.go#L86: 	return fmt.Sprintf("UploadFile%+v", Alias(*f))
		tl_upload_file_gen.go#L308: 	return fmt.Sprintf("UploadFileCDNRedirect%+v", Alias(*f))
		tl_upload_get_cdn_file_gen.go#L84: 	return fmt.Sprintf("UploadGetCDNFileRequest%+v", Alias(*g))
		tl_upload_get_cdn_file_hashes_gen.go#L79: 	return fmt.Sprintf("UploadGetCDNFileHashesRequest%+v", Alias(*g))
		tl_upload_get_file_gen.go#L103: 	return fmt.Sprintf("UploadGetFileRequest%+v", Alias(*g))
		tl_upload_get_file_hashes_gen.go#L76: 	return fmt.Sprintf("UploadGetFileHashesRequest%+v", Alias(*g))
		tl_upload_get_web_file_gen.go#L80: 	return fmt.Sprintf("UploadGetWebFileRequest%+v", Alias(*g))
		tl_upload_reupload_cdn_file_gen.go#L79: 	return fmt.Sprintf("UploadReuploadCDNFileRequest%+v", Alias(*r))
		tl_upload_save_big_file_part_gen.go#L87: 	return fmt.Sprintf("UploadSaveBigFilePartRequest%+v", Alias(*s))
		tl_upload_save_file_part_gen.go#L81: 	return fmt.Sprintf("UploadSaveFilePartRequest%+v", Alias(*s))
		tl_upload_web_file_gen.go#L95: 	return fmt.Sprintf("UploadWebFile%+v", Alias(*w))
		tl_url_auth_result_gen.go#L188: 	return fmt.Sprintf("URLAuthResultRequest%+v", Alias(*u))
		tl_url_auth_result_gen.go#L803: 	return fmt.Sprintf("URLAuthResultAccepted%+v", Alias(*u))
		tl_url_auth_result_gen.go#L968: 	return fmt.Sprintf("URLAuthResultDefault%+v", Alias(*u))
		tl_user_class_vector_gen.go#L68: 	return fmt.Sprintf("UserClassVector%+v", Alias(*vec))
		tl_user_full_gen.go#L598: 	return fmt.Sprintf("UserFull%+v", Alias(*u))
		tl_user_gen.go#L76: 	return fmt.Sprintf("UserEmpty%+v", Alias(*u))
		tl_user_gen.go#L693: 	return fmt.Sprintf("User%+v", Alias(*u))
		tl_user_profile_photo_gen.go#L71: 	return fmt.Sprintf("UserProfilePhotoEmpty%+v", Alias(*u))
		tl_user_profile_photo_gen.go#L218: 	return fmt.Sprintf("UserProfilePhoto%+v", Alias(*u))
		tl_user_status_gen.go#L71: 	return fmt.Sprintf("UserStatusEmpty%+v", Alias(*u))
		tl_user_status_gen.go#L178: 	return fmt.Sprintf("UserStatusOnline%+v", Alias(*u))
		tl_user_status_gen.go#L313: 	return fmt.Sprintf("UserStatusOffline%+v", Alias(*u))
		tl_user_status_gen.go#L462: 	return fmt.Sprintf("UserStatusRecently%+v", Alias(*u))
		tl_user_status_gen.go#L632: 	return fmt.Sprintf("UserStatusLastWeek%+v", Alias(*u))
		tl_user_status_gen.go#L802: 	return fmt.Sprintf("UserStatusLastMonth%+v", Alias(*u))
		tl_username_gen.go#L92: 	return fmt.Sprintf("Username%+v", Alias(*u))
		tl_users_get_full_user_gen.go#L71: 	return fmt.Sprintf("UsersGetFullUserRequest%+v", Alias(*g))
		tl_users_get_requirements_to_contact_gen.go#L79: 	return fmt.Sprintf("UsersGetRequirementsToContactRequest%+v", Alias(*g))
		tl_users_get_saved_music_by_id_gen.go#L80: 	return fmt.Sprintf("UsersGetSavedMusicByIDRequest%+v", Alias(*g))
		tl_users_get_saved_music_gen.go#L96: 	return fmt.Sprintf("UsersGetSavedMusicRequest%+v", Alias(*g))
		tl_users_get_users_gen.go#L71: 	return fmt.Sprintf("UsersGetUsersRequest%+v", Alias(*g))
		tl_users_saved_music_gen.go#L80: 	return fmt.Sprintf("UsersSavedMusicNotModified%+v", Alias(*s))
		tl_users_saved_music_gen.go#L224: 	return fmt.Sprintf("UsersSavedMusic%+v", Alias(*s))
		tl_users_set_secure_value_errors_gen.go#L85: 	return fmt.Sprintf("UsersSetSecureValueErrorsRequest%+v", Alias(*s))
		tl_users_suggest_birthday_gen.go#L80: 	return fmt.Sprintf("UsersSuggestBirthdayRequest%+v", Alias(*s))
		tl_users_user_full_gen.go#L81: 	return fmt.Sprintf("UsersUserFull%+v", Alias(*u))
		tl_users_users_gen.go#L76: 	return fmt.Sprintf("UsersUsers%+v", Alias(*u))
		tl_users_users_gen.go#L239: 	return fmt.Sprintf("UsersUsersSlice%+v", Alias(*u))
		tl_video_size_gen.go#L109: 	return fmt.Sprintf("VideoSize%+v", Alias(*v))
		tl_video_size_gen.go#L382: 	return fmt.Sprintf("VideoSizeEmojiMarkup%+v", Alias(*v))
		tl_video_size_gen.go#L571: 	return fmt.Sprintf("VideoSizeStickerMarkup%+v", Alias(*v))
		tl_wall_paper_class_vector_gen.go#L68: 	return fmt.Sprintf("WallPaperClassVector%+v", Alias(*vec))
		tl_wall_paper_gen.go#L140: 	return fmt.Sprintf("WallPaper%+v", Alias(*w))
		tl_wall_paper_gen.go#L548: 	return fmt.Sprintf("WallPaperNoFile%+v", Alias(*w))
		tl_wall_paper_settings_gen.go#L160: 	return fmt.Sprintf("WallPaperSettings%+v", Alias(*w))
		tl_web_authorization_gen.go#L114: 	return fmt.Sprintf("WebAuthorization%+v", Alias(*w))
		tl_web_document_gen.go#L96: 	return fmt.Sprintf("WebDocument%+v", Alias(*w))
		tl_web_document_gen.go#L360: 	return fmt.Sprintf("WebDocumentNoProxy%+v", Alias(*w))
		tl_web_domain_exception_gen.go#L92: 	return fmt.Sprintf("WebDomainException%+v", Alias(*w))
		tl_web_page_attribute_gen.go#L93: 	return fmt.Sprintf("WebPageAttributeTheme%+v", Alias(*w))
		tl_web_page_attribute_gen.go#L354: 	return fmt.Sprintf("WebPageAttributeStory%+v", Alias(*w))
		tl_web_page_attribute_gen.go#L605: 	return fmt.Sprintf("WebPageAttributeStickerSet%+v", Alias(*w))
		tl_web_page_attribute_gen.go#L846: 	return fmt.Sprintf("WebPageAttributeUniqueStarGift%+v", Alias(*w))
		tl_web_page_attribute_gen.go#L993: 	return fmt.Sprintf("WebPageAttributeStarGiftCollection%+v", Alias(*w))
		tl_web_page_attribute_gen.go#L1163: 	return fmt.Sprintf("WebPageAttributeStarGiftAuction%+v", Alias(*w))
		tl_web_page_attribute_gen.go#L1324: 	return fmt.Sprintf("WebPageAttributeAiComposeTone%+v", Alias(*w))
		tl_web_page_gen.go#L91: 	return fmt.Sprintf("WebPageEmpty%+v", Alias(*w))
		tl_web_page_gen.go#L300: 	return fmt.Sprintf("WebPagePending%+v", Alias(*w))
		tl_web_page_gen.go#L659: 	return fmt.Sprintf("WebPage%+v", Alias(*w))
		tl_web_page_gen.go#L1553: 	return fmt.Sprintf("WebPageNotModified%+v", Alias(*w))
		tl_web_view_message_sent_gen.go#L81: 	return fmt.Sprintf("WebViewMessageSent%+v", Alias(*w))
		tl_web_view_result_url_gen.go#L107: 	return fmt.Sprintf("WebViewResultURL%+v", Alias(*w))

	github.com/gotd/td/tgerr
		error.go#L117: 		return fmt.Sprintf("rpc error code %d: %s (%d)", e.Code, e.Type, e.Argument)
		error.go#L119: 	return fmt.Sprintf("rpc error code %d: %s", e.Code, e.Message)

	github.com/klauspost/compress/fse
		compress.go#L316: 	return fmt.Sprintf("dnbits: %08x, fs:%d", s.deltaNbBits, s.deltaFindState)

	github.com/klauspost/compress/zstd
		blockdec.go#L116: 	return fmt.Sprintf("Steam Size: %d, Type: %v, Last: %t, Window: %d", len(b.data), b.Type, b.Last, b.WindowSize)
		blockenc.go#L140: 	return fmt.Sprintf("Type: %d, Size: %d, Last:%t", (h>>1)&3, h>>3, h&1 == 1)
		blockenc.go#L241: 	return fmt.Sprintf("Type: %d, SizeFormat: %d, Size: 0x%d, Bytes:%d", literalsBlockType(h&3), (h>>2)&3, h&((1<<60)-1)>>4, h>>60)
		enc_base.go#L59: 		panic(fmt.Sprintf("ecur (%d) > buffer reset (%d)", e.cur, e.bufferReset))
		enc_base.go#L113: 			err := fmt.Sprintf("s (%d) < 0", s)
		enc_base.go#L117: 			err := fmt.Sprintf("t (%d) < 0", t)
		enc_base.go#L121: 			err := fmt.Sprintf("s (%d) - t (%d) > maxMatchOff (%d)", s, t, e.maxMatchOff)
		enc_base.go#L125: 			panic(fmt.Sprintf("len(src)-s (%d) > maxCompressedBlockSize (%d)", len(src)-int(s), maxCompressedBlockSize))
		enc_best.go#L245: 					panic(fmt.Sprintf("offset: %d - s:%d - rep: %d - cur :%d - max: %d", offset, s, rep, e.cur, e.maxMatchOff))
		enc_best.go#L248: 					panic(fmt.Sprintf("second match mismatch: %v != %v, first: %08x", src[s:s+4], src[offset:offset+4], first))
		enc_best.go#L348: 				panic(fmt.Sprintf("best.offset > s: %d >= %d", best.offset, best.s))
		enc_best.go#L351: 				panic(fmt.Sprintf("s %d < nextEmit %d", best.s, nextEmit))
		enc_best.go#L354: 				panic(fmt.Sprintf("best.offset < s-e.maxMatchOff: %d < %d", best.offset, s-e.maxMatchOff))
		enc_best.go#L357: 				panic(fmt.Sprintf("match mismatch: %v != %v", src[best.s:best.s+best.length], src[best.offset:best.offset+best.length]))
		enc_best.go#L415: 			panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L303: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L320: 						panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L338: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L396: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L466: 			panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L828: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L845: 						panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L863: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L922: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_better.go#L982: 			panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_dfast.go#L190: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_dfast.go#L227: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_dfast.go#L255: 			panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_dfast.go#L497: 					panic(fmt.Sprintf("s (%d) <= t (%d). cur: %d", s, t, e.cur))
		enc_dfast.go#L534: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_dfast.go#L562: 			panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_dfast.go#L838: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_dfast.go#L876: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_dfast.go#L904: 			panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_fast.go#L178: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_fast.go#L191: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_fast.go#L212: 			panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_fast.go#L416: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_fast.go#L422: 					panic(fmt.Sprintf("t (%d) < 0, candidate.offset: %d, e.cur: %d, coffset0: %d, e.maxMatchOff: %d", t, candidate.offset, e.cur, coffset0, e.maxMatchOff))
		enc_fast.go#L432: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_fast.go#L453: 			panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_fast.go#L457: 			panic(fmt.Sprintf("t (%d) < 0 ", t))
		enc_fast.go#L678: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_fast.go#L691: 					panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		enc_fast.go#L712: 			panic(fmt.Sprintf("s (%d) <= t (%d)", s, t))
		fse_encoder.go#L57: 	return fmt.Sprintf("{deltabits: %08x, findstate:%d outbits:%d}", s.deltaNbBits, s.deltaFindState, s.outBits)
		fse_predefined.go#L58: 		panic(fmt.Sprintf("len(dst) (%d) != len(bits) (%d)", len(dst), len(bits)))

	github.com/refraction-networking/utls
		cipher_suites.go#L112: 	return fmt.Sprintf("0x%04X", id)
		common.go#L59: 		return fmt.Sprintf("0x%04X", version)
		common.go#L1047: 			panic(fmt.Sprintf("tls: unable to generate random session ticket key: %v", err))
		common.go#L1109: 			panic(fmt.Sprintf("unable to generate random session ticket key: %v", err))
		common.go#L1761: 	return fmt.Sprintf("tls: failed to verify certificate: %s", e.Err)
		conn.go#L664: 		msg := fmt.Sprintf("received record with version %x when expecting version %x", vers, expectedVers)
		conn.go#L678: 		msg := fmt.Sprintf("oversized record received with length %d", n)
		quic.go#L35: 		return fmt.Sprintf("QUICEncryptionLevel(%v)", int(l))
		u_clienthello_json.go#L160: 	warningMsg += fmt.Sprintf("%d ", id)
		u_clienthello_json.go#L162: 		warningMsg += fmt.Sprintf("(%s) ", name)
		u_common.go#L157: 	return fmt.Sprintf("%s-%s", p.Client, p.Version)
		u_common.go#L776: 			panic(fmt.Sprintf("tls: %s failed: the [%d] parameter is nil", caller, i))
		u_ech.go#L217: 		return fullLen, errors.New("bad Client Hello type, expected 0, got " + fmt.Sprintf("%d", chType))
		u_ech.go#L227: 		return fullLen, errors.New("bad KDF ID: " + fmt.Sprintf("%d", g.cipherSuite.KdfId))
		u_ech.go#L232: 		return fullLen, errors.New("bad AEAD ID: " + fmt.Sprintf("%d", g.cipherSuite.AeadId))
		u_session_controller.go#L108: 		panic(fmt.Sprintf("tls: %s failed: we can't modify the session after the clientHello is built", caller))
		u_session_controller.go#L116: 		panic(fmt.Sprintf("tls: %s failed: undesired controller state %d", caller, s.state))
		u_session_controller.go#L122: 		panic(fmt.Sprintf("tls: %s failed: you must not modify the session after it's locked", caller))
		u_session_controller.go#L128: 		panic(fmt.Sprintf("tls: %s failed: session resumption is enabled, but there is no %s in the ClientHelloSpec; Please consider provide one in the ClientHelloSpec; If this is intentional, you may consider disable resumption by setting Config.SessionTicketsDisabled to true, or set Config.PreferSkipResumptionOnNilExtension to true to suppress this exception", caller, extensionName))

	github.com/refraction-networking/utls/internal/quicvarint
		varint.go#L95: 	panic(fmt.Sprintf("%#x doesn't fit into 62 bits", i))
		varint.go#L108: 		panic(fmt.Sprintf("cannot encode %d in %d bytes", i, length))

	github.com/refraction-networking/utls/internal/quicvarint/protocol
		protocol.go#L38: 		return fmt.Sprintf("unknown packet type: %d", t)
		protocol.go#L96: 		return fmt.Sprintf("invalid ECN value: %d", e)

	go.opentelemetry.io/otel/attribute
		hash.go#L119: 		msg := fmt.Sprintf("unknown value type: %[1]v (%[1]T)", val)
		value.go#L377: 			return fmt.Sprintf("invalid: %v", v.asInt64Slice())
		value.go#L385: 			return fmt.Sprintf("invalid: %v", v.asFloat64Slice())
		value.go#L393: 			return fmt.Sprintf("invalid: %v", v.asStringSlice())

	go.opentelemetry.io/otel/trace
		auto.go#L504: 	return fmt.Sprintf("%s.%s", t.PkgPath(), t.Name())

	go.opentelemetry.io/otel/trace/internal/telemetry
		value.go#L333: 		return fmt.Sprintf("<unhandled telemetry.ValueKind: %s>", v.Kind())

	go.uber.org/multierr
		error.go#L273: 		writePrefixLine(w, _multilineIndent, fmt.Sprintf("%+v", item))

	golang.org/x/sync/singleflight
		singleflight.go#L31: 	return fmt.Sprintf("%v\n\n%s", p.value, p.stack)

	log
		log.go#L315: 	s := fmt.Sprintf(format, v...)
		log.go#L456: 	s := fmt.Sprintf(format, v...)

	math/big
		float.go#L382: 		return fmt.Sprintf("msb not set in last word %#x of %s", x.mant[m-1], x.Text('p', 0))
		int.go#L927: 		panic(fmt.Sprintf("big: invalid 2nd argument to Int.Jacobi: need odd integer but got %s", y.String()))
		natconv.go#L115: 		panic(fmt.Sprintf("invalid number base %d", base))
		rat.go#L138: 		panic(fmt.Sprintf("expected exactly %d bits of result", Msize2))
		rat.go#L236: 		panic(fmt.Sprintf("expected exactly %d bits of result", Msize2))

	mime
		mediatype.go#L208: 			simplePart := fmt.Sprintf("%s*%d", key, n)

	mime/multipart
		writer.go#L91: 	return fmt.Sprintf("%x", buf[:])
		writer.go#L160: 		fmt.Sprintf(`form-data; name="%s"`, escapeQuotes(fieldname)))
		writer.go#L167: 	return fmt.Sprintf(`form-data; name="%s"; filename="%s"`,

	net/http
		filetransport.go#L131: 	pr.res.Status = fmt.Sprintf("%d %s", code, StatusText(code))
		fs.go#L331: 		w.Header().Set("Content-Range", fmt.Sprintf("bytes */%d", size))
		fs.go#L1003: 	return fmt.Sprintf("bytes %d-%d/%d", r.start, r.start+r.length-1, size)
		h2_bundle.go#L1242: 		panic(fmt.Sprintf("unexpected buffer len=%v", len(p)))
		h2_bundle.go#L1375: 	return fmt.Sprintf("unknown error code 0x%x", uint32(e))
		h2_bundle.go#L1382: 	return fmt.Sprintf("ERR_UNKNOWN_%d", uint32(e))
		h2_bundle.go#L1390: 	return fmt.Sprintf("connection error: %s", http2ErrCode(e))
		h2_bundle.go#L1412: 		return fmt.Sprintf("stream error: stream ID %d; %v; %v", e.StreamID, e.Code, e.Cause)
		h2_bundle.go#L1414: 	return fmt.Sprintf("stream error: stream ID %d; %v", e.StreamID, e.Code)
		h2_bundle.go#L1439: 	return fmt.Sprintf("http2: connection error: %v: %v", e.Code, e.Reason)
		h2_bundle.go#L1445: 	return fmt.Sprintf("invalid pseudo-header %q", string(e))
		h2_bundle.go#L1451: 	return fmt.Sprintf("duplicate pseudo-header %q", string(e))
		h2_bundle.go#L1457: 	return fmt.Sprintf("invalid header field name %q", string(e))
		h2_bundle.go#L1463: 	return fmt.Sprintf("invalid header field value for %q", string(e))
		h2_bundle.go#L1622: 	return fmt.Sprintf("UNKNOWN_FRAME_TYPE_%d", t)
		h2_bundle.go#L2159: 				fmt.Sprintf("got %s for stream %d; expected CONTINUATION following %s for stream %d",
		h2_bundle.go#L2165: 				fmt.Sprintf("got CONTINUATION for stream %d; expected stream %d",
		h2_bundle.go#L2169: 		return fr.connError(http2ErrCodeProtocol, fmt.Sprintf("unexpected CONTINUATION for stream %d", fh.StreamID))
		h2_bundle.go#L2800: 		return nil, http2connError{http2ErrCodeFrameSize, fmt.Sprintf("PRIORITY frame payload size was %d; want 5", len(payload))}
		h2_bundle.go#L3371: 		panic(fmt.Sprintf("No space found in %q", b))
		h2_bundle.go#L3376: 		panic(fmt.Sprintf("Failed to parse goroutine ID out of %q: %v", b, err))
		h2_bundle.go#L3583: 	return fmt.Sprintf("[%v = %d]", s.ID, s.Val)
		h2_bundle.go#L3638: 	return fmt.Sprintf("UNKNOWN_SETTING_%d", uint16(s))
		h2_bundle.go#L4521: 			sc.rejectConn(http2ErrCodeInadequateSecurity, fmt.Sprintf("Prohibited TLS 1.2 Cipher Suite: %x", sc.tlsState.CipherSuite))
		h2_bundle.go#L5027: 				panic(fmt.Sprintf("unexpected type %T", v))
		h2_bundle.go#L5295: 				panic(fmt.Sprintf("internal error: attempt to send frame on a half-closed-local stream: %v", wr))
		h2_bundle.go#L5298: 			panic(fmt.Sprintf("internal error: attempt to send frame on a closed stream: %v", wr))
		h2_bundle.go#L5698: 		panic(fmt.Sprintf("invariant; can't close stream in state %v", st.state))
		h2_bundle.go#L6934: 		panic(fmt.Sprintf("invalid WriteHeader code %v", code))
		h2_bundle.go#L7219: 			panic(fmt.Sprintf("newWriterAndRequestNoBody(%+v): %v", msg.url, err))
		h2_bundle.go#L7327: 	f(fmt.Sprintf("%s_%s_%s", typ, codeStr, name))
		h2_bundle.go#L9436: 	return fmt.Sprintf("http2: server sent GOAWAY and closed the connection; LastStreamID=%v, ErrCode=%v, debug=%q",
		h2_bundle.go#L9523: 		f(fmt.Sprintf("read_frame_conn_error_%s", errCode.stringToken()))
		h2_bundle.go#L10845: 	return fmt.Sprintf("writeData(stream=%d, p=%d, endStream=%v)", w.streamID, len(w.p), w.endStream)
		h2_bundle.go#L11285: 		des = fmt.Sprintf("%T", wr.write)
		h2_bundle.go#L11287: 	return fmt.Sprintf("[FrameWriteRequest stream=%d, ch=%v, writer=%v]", wr.StreamID(), wr.done != nil, des)
		h2_bundle.go#L11299: 		panic(fmt.Sprintf("unbuffered done channel passed in for type %T", wr.write))
		h2_bundle.go#L11659: 			panic(fmt.Sprintf("stream %d already opened", streamID))
		h2_bundle.go#L11691: 		panic(fmt.Sprintf("violation of WriteScheduler interface: unknown stream %d", streamID))
		h2_bundle.go#L11694: 		panic(fmt.Sprintf("violation of WriteScheduler interface: stream %d already closed", streamID))
		pattern.go#L380: 		panic(fmt.Sprintf("unknown relationship %q", r1))
		pattern.go#L403: 		return fmt.Sprintf("%s matches the same requests as %s", p1, p2)
		pattern.go#L409: 		return fmt.Sprintf(`%[1]s and %[2]s both match some paths, like %[3]q.
		pattern.go#L416: 		return fmt.Sprintf("%s matches more methods than %s, but has a more specific path pattern", p1, p2)
		pattern.go#L419: 		return fmt.Sprintf("%s matches fewer methods than %s, but has a more general path pattern", p1, p2)
		pattern.go#L421: 	return fmt.Sprintf("bug: unexpected way for two patterns %s and %s to conflict: methods %s, paths %s", p1, p2, mrel, prel)
		pattern.go#L511: 				panic(fmt.Sprintf("literals differ: %q and %q", s1.s, s2.s))
		request.go#L465: 	s := fmt.Sprintf("%s=%s", sanitizeCookieName(c.Name), sanitizeCookieValue(c.Value, c.Quoted))
		server.go#L1126: 		panic(fmt.Sprintf("invalid WriteHeader code %v", code))
		server.go#L2258: 		panic("unexpected type " + fmt.Sprintf("%T", rc))
		server.go#L2274: 		panic("unexpected type " + fmt.Sprintf("%T", rc))
		server.go#L2908: 		pat.loc = fmt.Sprintf("%s:%d", file, line)
		server.go#L4003: 		name: fmt.Sprintf("%s-%d", baseName, uniqNameNext[baseName]),
		transfer.go#L648: 		return &unsupportedTEError{fmt.Sprintf("too many transfer encodings: %q", raw)}
		transfer.go#L651: 		return &unsupportedTEError{fmt.Sprintf("unsupported transfer encoding: %q", raw[0])}
		transport.go#L576: 			return fmt.Sprintf("field name %q", k)
		transport.go#L582: 				return fmt.Sprintf("field value for %q", k)
		transport.go#L1041: 	return fmt.Sprintf("net/http: Transport failed to read from server: %v", e.err)
		transport.go#L2110: 	return fmt.Sprintf("%s|%s%s|%s", k.proxy, k.scheme, h1, k.addr)
		transport.go#L2895: 			panic(fmt.Sprintf("internal error: exactly one of res or err should be set; nil=%v", re.res == nil))

	net/http/internal/httpcommon
		httpcommon.go#L499: 			return fmt.Sprintf("name %q", k)
		httpcommon.go#L505: 				return fmt.Sprintf("value for header %q", k)

	net/textproto
		reader.go#L218: 		err = ProtocolError(fmt.Sprintf("short response: %q", line))
		reader.go#L224: 		err = ProtocolError(fmt.Sprintf("invalid response code: %q", line))
		reader.go#L256: 		err = ProtocolError(fmt.Sprintf("unexpected multi-line response: %q", message))
		reader.go#L544: 		return m, ProtocolError(fmt.Sprintf("malformed MIME header initial line: %q", line))
		reader.go#L556: 			return m, ProtocolError(fmt.Sprintf("malformed MIME header line: %q", kv))
		reader.go#L560: 			return m, ProtocolError(fmt.Sprintf("malformed MIME header line: %q", kv))
		reader.go#L564: 				return m, ProtocolError(fmt.Sprintf("malformed MIME header line: %q", kv))
		reader.go#L612: 		return ProtocolError(fmt.Sprintf("malformed MIME header: missing colon: %q", line))
		textproto.go#L44: 	return fmt.Sprintf("%03d %q", e.Code, e.Msg)

	net/url
		url.go#L39: func (e *Error) Error() string { return fmt.Sprintf("%s %q: %s", e.Op, e.URL, e.Err) }

	rsc.io/qr/coding
		qr.go#L117: 	return fmt.Sprintf("Num(%#q)", string(s))
		qr.go#L160: 	return fmt.Sprintf("Alpha(%#q)", string(s))
		qr.go#L198: 	return fmt.Sprintf("String(%#q)", string(s))

	vendor/golang.org/x/net/http2/hpack
		hpack.go#L23: 	return fmt.Sprintf("decoding error: %v", de.Err)
		hpack.go#L31: 	return fmt.Sprintf("invalid indexed representation index %d", int(e))
		hpack.go#L57: 	return fmt.Sprintf("header field %q = %q%s", hf.Name, hf.Value, suffix)
		tables.go#L66: 		panic(fmt.Sprintf("evictOldest(%v) on table with %v entries", n, t.len()))
		tables.go#L118: 		panic(fmt.Sprintf("id (%v) <= evictCount (%v)", id, t.evictCount))

	vendor/golang.org/x/net/idna
		idna10.0.0.go#L324: 	return fmt.Sprintf("idna: invalid label %q", e.label)
		idna10.0.0.go#L331: 	return fmt.Sprintf("idna: disallowed rune %U", e)

	vendor/golang.org/x/text/unicode/bidi
		bracket.go#L57: 	return fmt.Sprintf("(%v, %v)", b.opener, b.closer)