-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtl_schema.go.backup
13397 lines (11477 loc) · 261 KB
/
tl_schema.go.backup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package mtproto
import "fmt"
const (
crc_boolFalse = 0xbc799737
crc_boolTrue = 0x997275b5
crc_true = 0x3fedd339
crc_error = 0xc4b9f9bb
crc_null = 0x56730bcc
crc_inputPeerEmpty = 0x7f3b18ea
crc_inputPeerSelf = 0x7da07ec9
crc_inputPeerChat = 0x179be863
crc_inputUserEmpty = 0xb98886cf
crc_inputUserSelf = 0xf7c1b13f
crc_inputPhoneContact = 0xf392b7f4
crc_inputFile = 0xf52ff27f
crc_inputMediaEmpty = 0x9664f57f
crc_inputMediaUploadedPhoto = 0x630c9af1
crc_inputMediaPhoto = 0xe9bfb4f3
crc_inputMediaGeoPoint = 0xf9c44144
crc_inputMediaContact = 0xa6e45987
crc_inputChatPhotoEmpty = 0x1ca48f57
crc_inputChatUploadedPhoto = 0x927c55b4
crc_inputChatPhoto = 0x8953ad37
crc_inputGeoPointEmpty = 0xe4c123d6
crc_inputGeoPoint = 0xf3b7acc9
crc_inputPhotoEmpty = 0x1cd7bf0d
crc_inputPhoto = 0xfb95c6c4
crc_inputFileLocation = 0x14637196
crc_inputAppEvent = 0x770656a8
crc_peerUser = 0x9db1bc6d
crc_peerChat = 0xbad0e5bb
crc_storage_fileUnknown = 0xaa963b05
crc_storage_fileJpeg = 0x007efe0e
crc_storage_fileGif = 0xcae1aadf
crc_storage_filePng = 0x0a4f63c0
crc_storage_filePdf = 0xae1e508d
crc_storage_fileMp3 = 0x528a0677
crc_storage_fileMov = 0x4b09ebbc
crc_storage_filePartial = 0x40bc6f52
crc_storage_fileMp4 = 0xb3cea0e4
crc_storage_fileWebp = 0x1081464c
crc_fileLocationUnavailable = 0x7c596b46
crc_fileLocation = 0x53d69076
crc_userEmpty = 0x200250ba
crc_userProfilePhotoEmpty = 0x4f11bae1
crc_userProfilePhoto = 0xd559d8c8
crc_userStatusEmpty = 0x09d05049
crc_userStatusOnline = 0xedb93949
crc_userStatusOffline = 0x008c703f
crc_chatEmpty = 0x9ba2d800
crc_chat = 0xd91cdd54
crc_chatForbidden = 0x07328bdb
crc_chatFull = 0x2e02a614
crc_chatParticipant = 0xc8d7493e
crc_chatParticipantsForbidden = 0xfc900c2b
crc_chatParticipants = 0x3f460fed
crc_chatPhotoEmpty = 0x37c1011c
crc_chatPhoto = 0x6153276a
crc_messageEmpty = 0x83e5de54
crc_message = 0xc09be45f
crc_messageService = 0x9e19a1f6
crc_messageMediaEmpty = 0x3ded6320
crc_messageMediaPhoto = 0x3d8ce53d
crc_messageMediaGeo = 0x56e0d474
crc_messageMediaContact = 0x5e7d2f39
crc_messageMediaUnsupported = 0x9f84f49e
crc_messageActionEmpty = 0xb6aef7b0
crc_messageActionChatCreate = 0xa6638b9a
crc_messageActionChatEditTitle = 0xb5a1ce5a
crc_messageActionChatEditPhoto = 0x7fcb13a8
crc_messageActionChatDeletePhoto = 0x95e3fbef
crc_messageActionChatAddUser = 0x488a7337
crc_messageActionChatDeleteUser = 0xb2ae9b0c
crc_dialog = 0x66ffba14
crc_photoEmpty = 0x2331b22d
crc_photo = 0x9288dd29
crc_photoSizeEmpty = 0x0e17e23c
crc_photoSize = 0x77bfb61b
crc_photoCachedSize = 0xe9a734fa
crc_geoPointEmpty = 0x1117dd5f
crc_geoPoint = 0x2049d70c
crc_auth_checkedPhone = 0x811ea28e
crc_auth_sentCode = 0x5e002502
crc_auth_authorization = 0xcd050916
crc_auth_exportedAuthorization = 0xdf969c2d
crc_inputNotifyPeer = 0xb8bc5b0c
crc_inputNotifyUsers = 0x193b4417
crc_inputNotifyChats = 0x4a95e84e
crc_inputNotifyAll = 0xa429b886
crc_inputPeerNotifyEventsEmpty = 0xf03064d8
crc_inputPeerNotifyEventsAll = 0xe86a2c74
crc_inputPeerNotifySettings = 0x38935eb2
crc_peerNotifyEventsEmpty = 0xadd53cb3
crc_peerNotifyEventsAll = 0x6d1ded88
crc_peerNotifySettingsEmpty = 0x70a68512
crc_peerNotifySettings = 0x9acda4c0
crc_peerSettings = 0x818426cd
crc_wallPaper = 0xccb03657
crc_inputReportReasonSpam = 0x58dbcab8
crc_inputReportReasonViolence = 0x1e22c78d
crc_inputReportReasonPornography = 0x2e59d922
crc_inputReportReasonOther = 0xe1746d0a
crc_userFull = 0x5932fc03
crc_contact = 0xf911c994
crc_importedContact = 0xd0028438
crc_contactBlocked = 0x561bc879
crc_contactStatus = 0xd3680c61
crc_contacts_link = 0x3ace484c
crc_contacts_contactsNotModified = 0xb74ba9d2
crc_contacts_contacts = 0x6f8b8cb2
crc_contacts_importedContacts = 0xad524315
crc_contacts_blocked = 0x1c138d15
crc_contacts_blockedSlice = 0x900802a1
crc_messages_dialogs = 0x15ba6c40
crc_messages_dialogsSlice = 0x71e094f3
crc_messages_messages = 0x8c718e87
crc_messages_messagesSlice = 0x0b446ae3
crc_messages_chats = 0x64ff9fd5
crc_messages_chatFull = 0xe5d7d19c
crc_messages_affectedHistory = 0xb45c69d1
crc_inputMessagesFilterEmpty = 0x57e2f66c
crc_inputMessagesFilterPhotos = 0x9609a51c
crc_inputMessagesFilterVideo = 0x9fc00e65
crc_inputMessagesFilterPhotoVideo = 0x56e9f0e4
crc_inputMessagesFilterPhotoVideoDocuments = 0xd95e73bb
crc_inputMessagesFilterDocument = 0x9eddf188
crc_inputMessagesFilterUrl = 0x7ef0dd87
crc_inputMessagesFilterGif = 0xffc86587
crc_updateNewMessage = 0x1f2b0afd
crc_updateMessageID = 0x4e90bfd6
crc_updateDeleteMessages = 0xa20db0e5
crc_updateUserTyping = 0x5c486927
crc_updateChatUserTyping = 0x9a65ea1f
crc_updateChatParticipants = 0x07761198
crc_updateUserStatus = 0x1bfbd823
crc_updateUserName = 0xa7332b73
crc_updateUserPhoto = 0x95313b0c
crc_updateContactRegistered = 0x2575bbb9
crc_updateContactLink = 0x9d2e67c5
crc_updateNewAuthorization = 0x8f06529a
crc_updates_state = 0xa56c2a3e
crc_updates_differenceEmpty = 0x5d75a138
crc_updates_difference = 0x00f49ca0
crc_updates_differenceSlice = 0xa8fb1981
crc_updatesTooLong = 0xe317af7e
crc_updateShortMessage = 0x914fbf11
crc_updateShortChatMessage = 0x16812688
crc_updateShort = 0x78d4dec1
crc_updatesCombined = 0x725b04c3
crc_updates = 0x74ae4240
crc_photos_photos = 0x8dca6aa5
crc_photos_photosSlice = 0x15051f54
crc_photos_photo = 0x20212ca8
crc_upload_file = 0x096a18d5
crc_dcOption = 0x05d8c6cc
crc_config = 0x9a6b2e2a
crc_nearestDc = 0x8e1a1775
crc_help_appUpdate = 0x8987f311
crc_help_noAppUpdate = 0xc45a6536
crc_help_inviteText = 0x18cb9f78
crc_wallPaperSolid = 0x63117f24
crc_updateNewEncryptedMessage = 0x12bcbd9a
crc_updateEncryptedChatTyping = 0x1710f156
crc_updateEncryption = 0xb4a2e88d
crc_updateEncryptedMessagesRead = 0x38fe25b7
crc_encryptedChatEmpty = 0xab7ec0a0
crc_encryptedChatWaiting = 0x3bf703dc
crc_encryptedChatRequested = 0xc878527e
crc_encryptedChat = 0xfa56ce36
crc_encryptedChatDiscarded = 0x13d6dd27
crc_inputEncryptedChat = 0xf141b5e1
crc_encryptedFileEmpty = 0xc21f497e
crc_encryptedFile = 0x4a70994c
crc_inputEncryptedFileEmpty = 0x1837c364
crc_inputEncryptedFileUploaded = 0x64bd0306
crc_inputEncryptedFile = 0x5a17b5e5
crc_inputEncryptedFileLocation = 0xf5235d55
crc_encryptedMessage = 0xed18c118
crc_encryptedMessageService = 0x23734b06
crc_messages_dhConfigNotModified = 0xc0e24635
crc_messages_dhConfig = 0x2c221edd
crc_messages_sentEncryptedMessage = 0x560f8935
crc_messages_sentEncryptedFile = 0x9493ff32
crc_inputFileBig = 0xfa4f0bb5
crc_inputEncryptedFileBigUploaded = 0x2dc173c8
crc_updateChatParticipantAdd = 0xea4b0e5c
crc_updateChatParticipantDelete = 0x6e5f8c22
crc_updateDcOptions = 0x8e5e9873
crc_inputMediaUploadedDocument = 0xd070f1e9
crc_inputMediaUploadedThumbDocument = 0x50d88cae
crc_inputMediaDocument = 0x1a77f29c
crc_messageMediaDocument = 0xf3e02ea8
crc_inputDocumentEmpty = 0x72f0eaae
crc_inputDocument = 0x18798952
crc_inputDocumentFileLocation = 0x430f0724
crc_documentEmpty = 0x36f8c871
crc_document = 0x87232bc7
crc_help_support = 0x17c6b5f6
crc_notifyPeer = 0x9fd40bd8
crc_notifyUsers = 0xb4c83b4c
crc_notifyChats = 0xc007cec3
crc_notifyAll = 0x74d07c60
crc_updateUserBlocked = 0x80ece81a
crc_updateNotifySettings = 0xbec268ef
crc_sendMessageTypingAction = 0x16bf744e
crc_sendMessageCancelAction = 0xfd5ec8f5
crc_sendMessageRecordVideoAction = 0xa187d66f
crc_sendMessageUploadVideoAction = 0xe9763aec
crc_sendMessageRecordAudioAction = 0xd52f73f7
crc_sendMessageUploadAudioAction = 0xf351d7ab
crc_sendMessageUploadPhotoAction = 0xd1d34a26
crc_sendMessageUploadDocumentAction = 0xaa0cd9e4
crc_sendMessageGeoLocationAction = 0x176f8ba1
crc_sendMessageChooseContactAction = 0x628cbc6f
crc_contacts_found = 0x1aa1f784
crc_updateServiceNotification = 0x382dd3e4
crc_userStatusRecently = 0xe26f42f1
crc_userStatusLastWeek = 0x07bf09fc
crc_userStatusLastMonth = 0x77ebc742
crc_updatePrivacy = 0xee3b272a
crc_inputPrivacyKeyStatusTimestamp = 0x4f96cb18
crc_privacyKeyStatusTimestamp = 0xbc2eab30
crc_inputPrivacyValueAllowContacts = 0x0d09e07b
crc_inputPrivacyValueAllowAll = 0x184b35ce
crc_inputPrivacyValueAllowUsers = 0x131cc67f
crc_inputPrivacyValueDisallowContacts = 0x0ba52007
crc_inputPrivacyValueDisallowAll = 0xd66b66c9
crc_inputPrivacyValueDisallowUsers = 0x90110467
crc_privacyValueAllowContacts = 0xfffe1bac
crc_privacyValueAllowAll = 0x65427b82
crc_privacyValueAllowUsers = 0x4d5bbe0c
crc_privacyValueDisallowContacts = 0xf888fa1a
crc_privacyValueDisallowAll = 0x8b73e763
crc_privacyValueDisallowUsers = 0x0c7f49b7
crc_account_privacyRules = 0x554abb6f
crc_accountDaysTTL = 0xb8d0afdf
crc_updateUserPhone = 0x12b9417b
crc_documentAttributeImageSize = 0x6c37c15c
crc_documentAttributeAnimated = 0x11b58939
crc_documentAttributeSticker = 0x6319d612
crc_documentAttributeVideo = 0x5910cccb
crc_documentAttributeAudio = 0x9852f9c6
crc_documentAttributeFilename = 0x15590068
crc_messages_stickersNotModified = 0xf1749a22
crc_messages_stickers = 0x8a8ecd32
crc_stickerPack = 0x12b299d4
crc_messages_allStickersNotModified = 0xe86602c3
crc_messages_allStickers = 0xedfd405f
crc_disabledFeature = 0xae636f24
crc_updateReadHistoryInbox = 0x9961fd5c
crc_updateReadHistoryOutbox = 0x2f2f21bf
crc_messages_affectedMessages = 0x84d19185
crc_contactLinkUnknown = 0x5f4f9247
crc_contactLinkNone = 0xfeedd3ad
crc_contactLinkHasPhone = 0x268f3f59
crc_contactLinkContact = 0xd502c2d0
crc_updateWebPage = 0x7f891213
crc_webPageEmpty = 0xeb1477e8
crc_webPagePending = 0xc586da1c
crc_webPage = 0xca820ed7
crc_messageMediaWebPage = 0xa32dd600
crc_authorization = 0x7bf2e6f6
crc_account_authorizations = 0x1250abde
crc_account_noPassword = 0x96dabc18
crc_account_password = 0x7c18141c
crc_account_passwordSettings = 0xb7b72ab3
crc_account_passwordInputSettings = 0x86916deb
crc_auth_passwordRecovery = 0x137948a5
crc_inputMediaVenue = 0x2827a81a
crc_messageMediaVenue = 0x7912b71f
crc_receivedNotifyMessage = 0xa384b779
crc_chatInviteEmpty = 0x69df3769
crc_chatInviteExported = 0xfc2e05bc
crc_chatInviteAlready = 0x5a686d7c
crc_chatInvite = 0xdb74f558
crc_messageActionChatJoinedByLink = 0xf89cf5e8
crc_updateReadMessagesContents = 0x68c13933
crc_inputStickerSetEmpty = 0xffb62b95
crc_inputStickerSetID = 0x9de7a269
crc_inputStickerSetShortName = 0x861cc8a0
crc_stickerSet = 0xcd303b41
crc_messages_stickerSet = 0xb60a24a6
crc_user = 0xd10d979a
crc_botCommand = 0xc27ac8c7
crc_botInfo = 0x98e81d3a
crc_keyboardButton = 0xa2fa4880
crc_keyboardButtonRow = 0x77608b83
crc_replyKeyboardHide = 0xa03e5b85
crc_replyKeyboardForceReply = 0xf4108aa0
crc_replyKeyboardMarkup = 0x3502758c
crc_inputPeerUser = 0x7b8e7de6
crc_inputUser = 0xd8292816
crc_help_appChangelogEmpty = 0xaf7e0394
crc_help_appChangelog = 0x4668e6bd
crc_messageEntityUnknown = 0xbb92ba95
crc_messageEntityMention = 0xfa04579d
crc_messageEntityHashtag = 0x6f635b0d
crc_messageEntityBotCommand = 0x6cef8ac7
crc_messageEntityUrl = 0x6ed02538
crc_messageEntityEmail = 0x64e475c2
crc_messageEntityBold = 0xbd610bc9
crc_messageEntityItalic = 0x826f8b60
crc_messageEntityCode = 0x28a20571
crc_messageEntityPre = 0x73924be0
crc_messageEntityTextUrl = 0x76a6d327
crc_updateShortSentMessage = 0x11f1331c
crc_inputChannelEmpty = 0xee8c1e86
crc_inputChannel = 0xafeb712e
crc_peerChannel = 0xbddde532
crc_inputPeerChannel = 0x20adaef8
crc_channel = 0xa14dca52
crc_channelForbidden = 0x8537784f
crc_contacts_resolvedPeer = 0x7f077ad9
crc_channelFull = 0xc3d5512f
crc_messageRange = 0x0ae30253
crc_messages_channelMessages = 0x99262e37
crc_messageActionChannelCreate = 0x95d2ac92
crc_updateChannelTooLong = 0xeb0467fb
crc_updateChannel = 0xb6d45656
crc_updateNewChannelMessage = 0x62ba04d9
crc_updateReadChannelInbox = 0x4214f37f
crc_updateDeleteChannelMessages = 0xc37521c9
crc_updateChannelMessageViews = 0x98a12b4b
crc_updates_channelDifferenceEmpty = 0x3e11affb
crc_updates_channelDifferenceTooLong = 0x410dee07
crc_updates_channelDifference = 0x2064674e
crc_channelMessagesFilterEmpty = 0x94d42ee7
crc_channelMessagesFilter = 0xcd77d957
crc_channelParticipant = 0x15ebac1d
crc_channelParticipantSelf = 0xa3289a6d
crc_channelParticipantModerator = 0x91057fef
crc_channelParticipantEditor = 0x98192d61
crc_channelParticipantKicked = 0x8cc5e69a
crc_channelParticipantCreator = 0xe3e2e1f9
crc_channelParticipantsRecent = 0xde3f3c79
crc_channelParticipantsAdmins = 0xb4608969
crc_channelParticipantsKicked = 0x3c37bb7a
crc_channelRoleEmpty = 0xb285a0c6
crc_channelRoleModerator = 0x9618d975
crc_channelRoleEditor = 0x820bfe8c
crc_channels_channelParticipants = 0xf56ee2a8
crc_channels_channelParticipant = 0xd0d9b163
crc_chatParticipantCreator = 0xda13538a
crc_chatParticipantAdmin = 0xe2d6e436
crc_updateChatAdmins = 0x6e947941
crc_updateChatParticipantAdmin = 0xb6901959
crc_messageActionChatMigrateTo = 0x51bdb021
crc_messageActionChannelMigrateFrom = 0xb055eaee
crc_channelParticipantsBots = 0xb0d1865b
crc_help_termsOfService = 0xf1ee3e90
crc_updateNewStickerSet = 0x688a30aa
crc_updateStickerSetsOrder = 0x0bb2d201
crc_updateStickerSets = 0x43ae3dec
crc_foundGif = 0x162ecc1f
crc_foundGifCached = 0x9c750409
crc_inputMediaGifExternal = 0x4843b0fd
crc_messages_foundGifs = 0x450a1c0a
crc_messages_savedGifsNotModified = 0xe8025ca2
crc_messages_savedGifs = 0x2e0709a5
crc_updateSavedGifs = 0x9375341e
crc_inputBotInlineMessageMediaAuto = 0x292fed13
crc_inputBotInlineMessageText = 0x3dcd7a87
crc_inputBotInlineResult = 0x2cbbe15a
crc_botInlineMessageMediaAuto = 0x0a74b15b
crc_botInlineMessageText = 0x8c7f65e2
crc_botInlineResult = 0x9bebaeb9
crc_messages_botResults = 0x256709a6
crc_updateBotInlineQuery = 0x54826690
crc_updateBotInlineSend = 0x0e48f964
crc_inputMessagesFilterVoice = 0x50f5c392
crc_inputMessagesFilterMusic = 0x3751b49e
crc_inputPrivacyKeyChatInvite = 0xbdfb0426
crc_privacyKeyChatInvite = 0x500e6dfa
crc_exportedMessageLink = 0x1f486803
crc_messageFwdHeader = 0xc786ddcb
crc_updateEditChannelMessage = 0x1b3f4df7
crc_updateChannelPinnedMessage = 0x98592475
crc_messageActionPinMessage = 0x94bd38ed
crc_auth_codeTypeSms = 0x72a3158c
crc_auth_codeTypeCall = 0x741cd3e3
crc_auth_codeTypeFlashCall = 0x226ccefb
crc_auth_sentCodeTypeApp = 0x3dbb5986
crc_auth_sentCodeTypeSms = 0xc000bba2
crc_auth_sentCodeTypeCall = 0x5353e5a7
crc_auth_sentCodeTypeFlashCall = 0xab03c6d9
crc_keyboardButtonUrl = 0x258aff05
crc_keyboardButtonCallback = 0x683a5e46
crc_keyboardButtonRequestPhone = 0xb16a6c29
crc_keyboardButtonRequestGeoLocation = 0xfc796b3f
crc_keyboardButtonSwitchInline = 0x0568a748
crc_replyInlineMarkup = 0x48a30254
crc_messages_botCallbackAnswer = 0xb10df1fb
crc_updateBotCallbackQuery = 0xe73547e1
crc_messages_messageEditData = 0x26b5dde6
crc_updateEditMessage = 0xe40370a3
crc_inputBotInlineMessageMediaGeo = 0xf4a59de1
crc_inputBotInlineMessageMediaVenue = 0xaaafadc8
crc_inputBotInlineMessageMediaContact = 0x2daf01a7
crc_botInlineMessageMediaGeo = 0x3a8fd8b8
crc_botInlineMessageMediaVenue = 0x4366232e
crc_botInlineMessageMediaContact = 0x35edb4d4
crc_inputBotInlineResultPhoto = 0xa8d864a7
crc_inputBotInlineResultDocument = 0xfff8fdc4
crc_botInlineMediaResult = 0x17db940b
crc_inputBotInlineMessageID = 0x890c3d89
crc_updateInlineBotCallbackQuery = 0xf9d27a5a
crc_inlineBotSwitchPM = 0x3c20629f
crc_messages_peerDialogs = 0x3371c354
crc_topPeer = 0xedcdc05b
crc_topPeerCategoryBotsPM = 0xab661b5b
crc_topPeerCategoryBotsInline = 0x148677e2
crc_topPeerCategoryCorrespondents = 0x0637b7ed
crc_topPeerCategoryGroups = 0xbd17a14a
crc_topPeerCategoryChannels = 0x161d9628
crc_topPeerCategoryPeers = 0xfb834291
crc_contacts_topPeersNotModified = 0xde266ef5
crc_contacts_topPeers = 0x70b772a8
crc_messageEntityMentionName = 0x352dca58
crc_inputMessageEntityMentionName = 0x208e68c9
crc_inputMessagesFilterChatPhotos = 0x3a20ecb8
crc_updateReadChannelOutbox = 0x25d6c9c7
crc_updateDraftMessage = 0xee2bb969
crc_draftMessageEmpty = 0xba4baec5
crc_draftMessage = 0xfd8e711f
crc_messageActionHistoryClear = 0x9fbab604
crc_messages_featuredStickersNotModified = 0x04ede3cf
crc_messages_featuredStickers = 0xf89d88e5
crc_updateReadFeaturedStickers = 0x571d2742
crc_messages_recentStickersNotModified = 0x0b17f890
crc_messages_recentStickers = 0x5ce20970
crc_updateRecentStickers = 0x9a422c20
crc_messages_archivedStickers = 0x4fcba9c8
crc_messages_stickerSetInstallResultSuccess = 0x38641628
crc_messages_stickerSetInstallResultArchive = 0x35e410a8
crc_stickerSetCovered = 0x6410a5d2
crc_updateConfig = 0xa229dd06
crc_updatePtsChanged = 0x3354678f
crc_inputMediaPhotoExternal = 0xb55f4f18
crc_inputMediaDocumentExternal = 0xe5e9607c
crc_stickerSetMultiCovered = 0x3407e51b
crc_maskCoords = 0xaed6dbb2
crc_documentAttributeHasStickers = 0x9801d2f7
crc_inputStickeredMediaPhoto = 0x4a992157
crc_inputStickeredMediaDocument = 0x0438865b
crc_game = 0xbdf9653b
crc_inputBotInlineResultGame = 0x4fa417f2
crc_inputBotInlineMessageGame = 0x4b425864
crc_sendMessageGamePlayAction = 0xdd6a8f48
crc_messageMediaGame = 0xfdb19008
crc_inputMediaGame = 0xd33f43f3
crc_inputGameID = 0x032c3e77
crc_inputGameShortName = 0xc331e80a
crc_keyboardButtonGame = 0x50f41ccf
crc_messageActionGameScore = 0x92a72876
crc_highScore = 0x58fffcd0
crc_messages_highScores = 0x9a3bfd99
crc_invokeAfterMsg = 0xcb9f372d
crc_invokeAfterMsgs = 0x3dc4b4f0
crc_auth_checkPhone = 0x6fe51dfb
crc_auth_sendCode = 0x86aef0ec
crc_auth_signUp = 0x1b067634
crc_auth_signIn = 0xbcd51581
crc_auth_logOut = 0x5717da40
crc_auth_resetAuthorizations = 0x9fab0d1a
crc_auth_sendInvites = 0x771c1d97
crc_auth_exportAuthorization = 0xe5bfffcd
crc_auth_importAuthorization = 0xe3ef9613
crc_auth_bindTempAuthKey = 0xcdd42a05
crc_account_registerDevice = 0x637ea878
crc_account_unregisterDevice = 0x65c55b40
crc_account_updateNotifySettings = 0x84be5b93
crc_account_getNotifySettings = 0x12b3ad31
crc_account_resetNotifySettings = 0xdb7e1747
crc_account_updateProfile = 0x78515775
crc_account_updateStatus = 0x6628562c
crc_account_getWallPapers = 0xc04cfac2
crc_account_reportPeer = 0xae189d5f
crc_users_getUsers = 0x0d91a548
crc_users_getFullUser = 0xca30a5b1
crc_contacts_getStatuses = 0xc4a353ee
crc_contacts_getContacts = 0x22c6aa08
crc_contacts_importContacts = 0xda30b32d
crc_contacts_deleteContact = 0x8e953744
crc_contacts_deleteContacts = 0x59ab389e
crc_contacts_block = 0x332b49fc
crc_contacts_unblock = 0xe54100bd
crc_contacts_getBlocked = 0xf57c350f
crc_contacts_exportCard = 0x84e53737
crc_contacts_importCard = 0x4fe196fe
crc_messages_getMessages = 0x4222fa74
crc_messages_getDialogs = 0x6b47f94d
crc_messages_getHistory = 0xafa92846
crc_messages_search = 0xd4569248
crc_messages_readHistory = 0x0e306d3a
crc_messages_deleteHistory = 0x1c015b09
crc_messages_deleteMessages = 0xa5f18925
crc_messages_receivedMessages = 0x05a954c0
crc_messages_setTyping = 0xa3825e50
crc_messages_sendMessage = 0xfa88427a
crc_messages_sendMedia = 0xc8f16791
crc_messages_forwardMessages = 0x708e0195
crc_messages_reportSpam = 0xcf1592db
crc_messages_hideReportSpam = 0xa8f1709b
crc_messages_getPeerSettings = 0x3672e09c
crc_messages_getChats = 0x3c6aa187
crc_messages_getFullChat = 0x3b831c66
crc_messages_editChatTitle = 0xdc452855
crc_messages_editChatPhoto = 0xca4c79d8
crc_messages_addChatUser = 0xf9a0aa09
crc_messages_deleteChatUser = 0xe0611f16
crc_messages_createChat = 0x09cb126e
crc_updates_getState = 0xedd4882a
crc_updates_getDifference = 0x0a041495
crc_photos_updateProfilePhoto = 0xf0bb5152
crc_photos_uploadProfilePhoto = 0x4f32c098
crc_photos_deletePhotos = 0x87cf7f2f
crc_upload_saveFilePart = 0xb304a621
crc_upload_getFile = 0xe3a6cfb5
crc_help_getConfig = 0xc4f9186b
crc_help_getNearestDc = 0x1fb33026
crc_help_getAppUpdate = 0xae2de196
crc_help_saveAppLog = 0x6f02f748
crc_help_getInviteText = 0x4d392343
crc_photos_getUserPhotos = 0x91cd32a8
crc_messages_forwardMessage = 0x33963bf9
crc_messages_getDhConfig = 0x26cf8950
crc_messages_requestEncryption = 0xf64daf43
crc_messages_acceptEncryption = 0x3dbc0415
crc_messages_discardEncryption = 0xedd923c5
crc_messages_setEncryptedTyping = 0x791451ed
crc_messages_readEncryptedHistory = 0x7f4b690a
crc_messages_sendEncrypted = 0xa9776773
crc_messages_sendEncryptedFile = 0x9a901b66
crc_messages_sendEncryptedService = 0x32d439a4
crc_messages_receivedQueue = 0x55a5bb66
crc_upload_saveBigFilePart = 0xde7b673d
crc_initConnection = 0x69796de9
crc_help_getSupport = 0x9cdf08cd
crc_messages_readMessageContents = 0x36a73f77
crc_account_checkUsername = 0x2714d86c
crc_account_updateUsername = 0x3e0bdd7c
crc_contacts_search = 0x11f812d8
crc_account_getPrivacy = 0xdadbc950
crc_account_setPrivacy = 0xc9f81ce8
crc_account_deleteAccount = 0x418d4e0b
crc_account_getAccountTTL = 0x08fc711d
crc_account_setAccountTTL = 0x2442485e
crc_invokeWithLayer = 0xda9b0d0d
crc_contacts_resolveUsername = 0xf93ccba3
crc_account_sendChangePhoneCode = 0x08e57deb
crc_account_changePhone = 0x70c32edb
crc_messages_getAllStickers = 0x1c9618b1
crc_account_updateDeviceLocked = 0x38df3532
crc_auth_importBotAuthorization = 0x67a3ff2c
crc_messages_getWebPagePreview = 0x25223e24
crc_account_getAuthorizations = 0xe320c158
crc_account_resetAuthorization = 0xdf77f3bc
crc_account_getPassword = 0x548a30f5
crc_account_getPasswordSettings = 0xbc8d11bb
crc_account_updatePasswordSettings = 0xfa7c4b86
crc_auth_checkPassword = 0x0a63011e
crc_auth_requestPasswordRecovery = 0xd897bc66
crc_auth_recoverPassword = 0x4ea56e92
crc_invokeWithoutUpdates = 0xbf9459b7
crc_messages_exportChatInvite = 0x7d885289
crc_messages_checkChatInvite = 0x3eadb1bb
crc_messages_importChatInvite = 0x6c50051c
crc_messages_getStickerSet = 0x2619a90e
crc_messages_installStickerSet = 0xc78fe460
crc_messages_uninstallStickerSet = 0xf96e55de
crc_messages_startBot = 0xe6df7378
crc_help_getAppChangelog = 0xb921197a
crc_messages_getMessagesViews = 0xc4c8a55d
crc_channels_readHistory = 0xcc104937
crc_channels_deleteMessages = 0x84c1fd4e
crc_channels_deleteUserHistory = 0xd10dd71b
crc_channels_reportSpam = 0xfe087810
crc_channels_getMessages = 0x93d7b347
crc_channels_getParticipants = 0x24d98f92
crc_channels_getParticipant = 0x546dd7a6
crc_channels_getChannels = 0x0a7f6bbb
crc_channels_getFullChannel = 0x08736a09
crc_channels_createChannel = 0xf4893d7f
crc_channels_editAbout = 0x13e27f1e
crc_channels_editAdmin = 0xeb7611d0
crc_channels_editTitle = 0x566decd0
crc_channels_editPhoto = 0xf12e57c9
crc_channels_checkUsername = 0x10e6bd2c
crc_channels_updateUsername = 0x3514b3de
crc_channels_joinChannel = 0x24b524c5
crc_channels_leaveChannel = 0xf836aa95
crc_channels_inviteToChannel = 0x199f3a6c
crc_channels_kickFromChannel = 0xa672de14
crc_channels_exportInvite = 0xc7560885
crc_channels_deleteChannel = 0xc0111fe3
crc_updates_getChannelDifference = 0xbb32d7c0
crc_messages_toggleChatAdmins = 0xec8bd9e1
crc_messages_editChatAdmin = 0xa9e69f2e
crc_messages_migrateChat = 0x15a3b8e3
crc_messages_searchGlobal = 0x9e3cacb0
crc_help_getTermsOfService = 0x350170f3
crc_messages_reorderStickerSets = 0x78337739
crc_messages_getDocumentByHash = 0x338e2464
crc_messages_searchGifs = 0xbf9a776b
crc_messages_getSavedGifs = 0x83bf3d52
crc_messages_saveGif = 0x327a30cb
crc_messages_getInlineBotResults = 0x514e999d
crc_messages_setInlineBotResults = 0xeb5ea206
crc_messages_sendInlineBotResult = 0xb16e06fe
crc_channels_toggleInvites = 0x49609307
crc_channels_exportMessageLink = 0xc846d22d
crc_channels_toggleSignatures = 0x1f69b606
crc_channels_updatePinnedMessage = 0xa72ded52
crc_auth_resendCode = 0x3ef1a9bf
crc_auth_cancelCode = 0x1f040578
crc_messages_getMessageEditData = 0xfda68d36
crc_messages_editMessage = 0xce91e4ca
crc_messages_editInlineBotMessage = 0x130c2c85
crc_messages_getBotCallbackAnswer = 0x810a9fec
crc_messages_setBotCallbackAnswer = 0xc927d44b
crc_contacts_getTopPeers = 0xd4982db5
crc_contacts_resetTopPeerRating = 0x1ae373ac
crc_messages_getPeerDialogs = 0x2d9776b9
crc_messages_saveDraft = 0xbc39e14b
crc_messages_getAllDrafts = 0x6a3f8d65
crc_messages_getFeaturedStickers = 0x2dacca4f
crc_messages_readFeaturedStickers = 0x5b118126
crc_messages_getRecentStickers = 0x5ea192c9
crc_messages_saveRecentSticker = 0x392718f8
crc_messages_clearRecentStickers = 0x8999602d
crc_messages_getArchivedStickers = 0x57f17692
crc_account_sendConfirmPhoneCode = 0x1516d7bd
crc_account_confirmPhone = 0x5f2178c3
crc_channels_getAdminedPublicChannels = 0x8d8d82d7
crc_messages_getMaskStickers = 0x65b8c79f
crc_messages_getAttachedStickers = 0xcc5b67cc
crc_auth_dropTempAuthKeys = 0x8e48a188
crc_messages_setGameScore = 0x8ef8ecc0
crc_messages_setInlineGameScore = 0x15ad9f64
crc_messages_getGameHighScores = 0xe822649d
crc_messages_getInlineGameHighScores = 0x0f635e1b
)
type TL_boolFalse struct {
}
type TL_boolTrue struct {
}
type TL_true struct {
}
type TL_error struct {
code int32
text string
}
type TL_null struct {
}
type TL_inputPeerEmpty struct {
}
type TL_inputPeerSelf struct {
}
type TL_inputPeerChat struct {
chat_id int32
}
type TL_inputUserEmpty struct {
}
type TL_inputUserSelf struct {
}
type TL_inputPhoneContact struct {
client_id int64
phone string
first_name string
last_name string
}
type TL_inputFile struct {
id int64
parts int32
name string
md5_checksum string
}
type TL_inputMediaEmpty struct {
}
type TL_inputMediaUploadedPhoto struct {
flags int32
file TL // InputFile
caption string
stickers []TL // InputDocument
}
type TL_inputMediaPhoto struct {
id TL // InputPhoto
caption string
}
type TL_inputMediaGeoPoint struct {
geo_point TL // InputGeoPoint
}
type TL_inputMediaContact struct {
phone_number string
first_name string
last_name string
}
type TL_inputChatPhotoEmpty struct {
}
type TL_inputChatUploadedPhoto struct {
file TL // InputFile
}
type TL_inputChatPhoto struct {
id TL // InputPhoto
}
type TL_inputGeoPointEmpty struct {
}
type TL_inputGeoPoint struct {
lat float64
long float64
}
type TL_inputPhotoEmpty struct {
}
type TL_inputPhoto struct {
id int64
access_hash int64
}
type TL_inputFileLocation struct {
volume_id int64
local_id int32
secret int64
}
type TL_inputAppEvent struct {
time float64
_type string
peer int64
data string
}
type TL_peerUser struct {
user_id int32
}
type TL_peerChat struct {
chat_id int32
}
type TL_storage_fileUnknown struct {
}
type TL_storage_fileJpeg struct {
}
type TL_storage_fileGif struct {
}
type TL_storage_filePng struct {
}
type TL_storage_filePdf struct {
}
type TL_storage_fileMp3 struct {
}
type TL_storage_fileMov struct {
}
type TL_storage_filePartial struct {
}
type TL_storage_fileMp4 struct {
}
type TL_storage_fileWebp struct {
}
type TL_fileLocationUnavailable struct {
volume_id int64
local_id int32
secret int64
}
type TL_fileLocation struct {
dc_id int32
volume_id int64
local_id int32
secret int64
}
type TL_userEmpty struct {
id int32
}
type TL_userProfilePhotoEmpty struct {
}
type TL_userProfilePhoto struct {
photo_id int64
photo_small TL // FileLocation
photo_big TL // FileLocation
}
type TL_userStatusEmpty struct {
}
type TL_userStatusOnline struct {
expires int32
}
type TL_userStatusOffline struct {
was_online int32
}
type TL_chatEmpty struct {
id int32
}
type TL_chat struct {
flags int32
// creator bool // flags_0?true
// kicked bool // flags_1?true
// left bool // flags_2?true
// admins_enabled bool // flags_3?true
// admin bool // flags_4?true
// deactivated bool // flags_5?true
id int32
title string
photo TL // ChatPhoto
participants_count int32
date int32
version int32
migrated_to TL // flags_6?InputChannel
}
type TL_chatForbidden struct {
id int32
title string
}
type TL_chatFull struct {
id int32
participants TL // ChatParticipants
chat_photo TL // Photo
notify_settings TL // PeerNotifySettings
exported_invite TL // ExportedChatInvite
bot_info []TL // BotInfo
}
type TL_chatParticipant struct {
user_id int32
inviter_id int32
date int32
}
type TL_chatParticipantsForbidden struct {
flags int32
chat_id int32
self_participant TL // flags_0?ChatParticipant
}
type TL_chatParticipants struct {
chat_id int32
participants []TL // ChatParticipant
version int32
}
type TL_chatPhotoEmpty struct {
}
type TL_chatPhoto struct {
photo_small TL // FileLocation
photo_big TL // FileLocation
}
type TL_messageEmpty struct {
id int32
}
type TL_message struct {
flags int32
// out bool // flags_1?true
// mentioned bool // flags_4?true
// media_unread bool // flags_5?true
// silent bool // flags_13?true
// post bool // flags_14?true
id int32
from_id int32
to_id TL // Peer
fwd_from TL // flags_2?MessageFwdHeader
via_bot_id int32
reply_to_msg_id int32
date int32
message string
media TL // flags_9?MessageMedia
reply_markup TL // flags_6?ReplyMarkup
entities []TL // MessageEntity
views int32
edit_date int32
}
type TL_messageService struct {
flags int32
// out bool // flags_1?true
// mentioned bool // flags_4?true
// media_unread bool // flags_5?true
// silent bool // flags_13?true
// post bool // flags_14?true
id int32
from_id int32
to_id TL // Peer
reply_to_msg_id int32
date int32
action TL // MessageAction
}
type TL_messageMediaEmpty struct {
}
type TL_messageMediaPhoto struct {
photo TL // Photo
caption string
}
type TL_messageMediaGeo struct {
geo TL // GeoPoint
}
type TL_messageMediaContact struct {
phone_number string
first_name string
last_name string
user_id int32
}
type TL_messageMediaUnsupported struct {
}
type TL_messageActionEmpty struct {
}
type TL_messageActionChatCreate struct {
title string
users []int32
}
type TL_messageActionChatEditTitle struct {
title string
}
type TL_messageActionChatEditPhoto struct {
photo TL // Photo
}
type TL_messageActionChatDeletePhoto struct {
}
type TL_messageActionChatAddUser struct {
users []int32
}
type TL_messageActionChatDeleteUser struct {
user_id int32
}
type TL_dialog struct {
flags int32
peer TL // Peer
top_message int32
read_inbox_max_id int32
read_outbox_max_id int32
unread_count int32
notify_settings TL // PeerNotifySettings
pts int32
draft TL // flags_1?DraftMessage
}
type TL_photoEmpty struct {
id int64
}
type TL_photo struct {