2019-12-02 15:34:05 +00:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// source: chat_message.proto
|
|
|
|
|
|
|
|
package protobuf
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
2020-02-10 11:22:37 +00:00
|
|
|
proto "github.com/golang/protobuf/proto"
|
2020-03-09 07:55:58 +00:00
|
|
|
math "math"
|
2019-12-02 15:34:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
|
2020-05-13 13:16:17 +00:00
|
|
|
type ImageMessage_ImageType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
ImageMessage_UNKNOWN_IMAGE_TYPE ImageMessage_ImageType = 0
|
|
|
|
ImageMessage_PNG ImageMessage_ImageType = 1
|
|
|
|
ImageMessage_JPEG ImageMessage_ImageType = 2
|
|
|
|
ImageMessage_WEBP ImageMessage_ImageType = 3
|
|
|
|
ImageMessage_GIF ImageMessage_ImageType = 4
|
|
|
|
)
|
|
|
|
|
|
|
|
var ImageMessage_ImageType_name = map[int32]string{
|
|
|
|
0: "UNKNOWN_IMAGE_TYPE",
|
|
|
|
1: "PNG",
|
|
|
|
2: "JPEG",
|
|
|
|
3: "WEBP",
|
|
|
|
4: "GIF",
|
|
|
|
}
|
|
|
|
|
|
|
|
var ImageMessage_ImageType_value = map[string]int32{
|
|
|
|
"UNKNOWN_IMAGE_TYPE": 0,
|
|
|
|
"PNG": 1,
|
|
|
|
"JPEG": 2,
|
|
|
|
"WEBP": 3,
|
|
|
|
"GIF": 4,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x ImageMessage_ImageType) String() string {
|
|
|
|
return proto.EnumName(ImageMessage_ImageType_name, int32(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ImageMessage_ImageType) EnumDescriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_263952f55fd35689, []int{1, 0}
|
|
|
|
}
|
|
|
|
|
2020-06-17 18:55:49 +00:00
|
|
|
type AudioMessage_AudioType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
AudioMessage_UNKNOWN_AUDIO_TYPE AudioMessage_AudioType = 0
|
|
|
|
AudioMessage_AAC AudioMessage_AudioType = 1
|
|
|
|
AudioMessage_AMR AudioMessage_AudioType = 2
|
|
|
|
)
|
|
|
|
|
|
|
|
var AudioMessage_AudioType_name = map[int32]string{
|
|
|
|
0: "UNKNOWN_AUDIO_TYPE",
|
|
|
|
1: "AAC",
|
|
|
|
2: "AMR",
|
|
|
|
}
|
|
|
|
|
|
|
|
var AudioMessage_AudioType_value = map[string]int32{
|
|
|
|
"UNKNOWN_AUDIO_TYPE": 0,
|
|
|
|
"AAC": 1,
|
|
|
|
"AMR": 2,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x AudioMessage_AudioType) String() string {
|
|
|
|
return proto.EnumName(AudioMessage_AudioType_name, int32(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (AudioMessage_AudioType) EnumDescriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_263952f55fd35689, []int{2, 0}
|
|
|
|
}
|
|
|
|
|
2020-07-07 16:24:32 +00:00
|
|
|
type EmojiReaction_Type int32
|
|
|
|
|
|
|
|
const (
|
2020-07-08 12:24:22 +00:00
|
|
|
EmojiReaction_UNKNOWN_EMOJI_REACTION_TYPE EmojiReaction_Type = 0
|
|
|
|
EmojiReaction_LOVE EmojiReaction_Type = 1
|
|
|
|
EmojiReaction_THUMBS_UP EmojiReaction_Type = 2
|
|
|
|
EmojiReaction_THUMBS_DOWN EmojiReaction_Type = 3
|
|
|
|
EmojiReaction_LAUGH EmojiReaction_Type = 4
|
|
|
|
EmojiReaction_SAD EmojiReaction_Type = 5
|
|
|
|
EmojiReaction_ANGRY EmojiReaction_Type = 6
|
2020-07-07 16:24:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var EmojiReaction_Type_name = map[int32]string{
|
2020-07-08 12:24:22 +00:00
|
|
|
0: "UNKNOWN_EMOJI_REACTION_TYPE",
|
2020-07-07 16:24:32 +00:00
|
|
|
1: "LOVE",
|
|
|
|
2: "THUMBS_UP",
|
|
|
|
3: "THUMBS_DOWN",
|
|
|
|
4: "LAUGH",
|
|
|
|
5: "SAD",
|
|
|
|
6: "ANGRY",
|
|
|
|
}
|
|
|
|
|
|
|
|
var EmojiReaction_Type_value = map[string]int32{
|
2020-07-08 12:24:22 +00:00
|
|
|
"UNKNOWN_EMOJI_REACTION_TYPE": 0,
|
|
|
|
"LOVE": 1,
|
|
|
|
"THUMBS_UP": 2,
|
|
|
|
"THUMBS_DOWN": 3,
|
|
|
|
"LAUGH": 4,
|
|
|
|
"SAD": 5,
|
|
|
|
"ANGRY": 6,
|
2020-07-07 16:24:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x EmojiReaction_Type) String() string {
|
|
|
|
return proto.EnumName(EmojiReaction_Type_name, int32(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (EmojiReaction_Type) EnumDescriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_263952f55fd35689, []int{3, 0}
|
|
|
|
}
|
|
|
|
|
2019-12-02 15:34:05 +00:00
|
|
|
type ChatMessage_MessageType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
ChatMessage_UNKNOWN_MESSAGE_TYPE ChatMessage_MessageType = 0
|
|
|
|
ChatMessage_ONE_TO_ONE ChatMessage_MessageType = 1
|
|
|
|
ChatMessage_PUBLIC_GROUP ChatMessage_MessageType = 2
|
|
|
|
ChatMessage_PRIVATE_GROUP ChatMessage_MessageType = 3
|
|
|
|
// Only local
|
|
|
|
ChatMessage_SYSTEM_MESSAGE_PRIVATE_GROUP ChatMessage_MessageType = 4
|
|
|
|
)
|
|
|
|
|
|
|
|
var ChatMessage_MessageType_name = map[int32]string{
|
|
|
|
0: "UNKNOWN_MESSAGE_TYPE",
|
|
|
|
1: "ONE_TO_ONE",
|
|
|
|
2: "PUBLIC_GROUP",
|
|
|
|
3: "PRIVATE_GROUP",
|
|
|
|
4: "SYSTEM_MESSAGE_PRIVATE_GROUP",
|
|
|
|
}
|
|
|
|
|
|
|
|
var ChatMessage_MessageType_value = map[string]int32{
|
|
|
|
"UNKNOWN_MESSAGE_TYPE": 0,
|
|
|
|
"ONE_TO_ONE": 1,
|
|
|
|
"PUBLIC_GROUP": 2,
|
|
|
|
"PRIVATE_GROUP": 3,
|
|
|
|
"SYSTEM_MESSAGE_PRIVATE_GROUP": 4,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x ChatMessage_MessageType) String() string {
|
|
|
|
return proto.EnumName(ChatMessage_MessageType_name, int32(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ChatMessage_MessageType) EnumDescriptor() ([]byte, []int) {
|
2020-07-07 16:24:32 +00:00
|
|
|
return fileDescriptor_263952f55fd35689, []int{5, 0}
|
2019-12-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ChatMessage_ContentType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
ChatMessage_UNKNOWN_CONTENT_TYPE ChatMessage_ContentType = 0
|
|
|
|
ChatMessage_TEXT_PLAIN ChatMessage_ContentType = 1
|
|
|
|
ChatMessage_STICKER ChatMessage_ContentType = 2
|
|
|
|
ChatMessage_STATUS ChatMessage_ContentType = 3
|
|
|
|
ChatMessage_EMOJI ChatMessage_ContentType = 4
|
2020-01-10 18:59:01 +00:00
|
|
|
ChatMessage_TRANSACTION_COMMAND ChatMessage_ContentType = 5
|
2020-01-28 11:16:28 +00:00
|
|
|
// Only local
|
|
|
|
ChatMessage_SYSTEM_MESSAGE_CONTENT_PRIVATE_GROUP ChatMessage_ContentType = 6
|
2020-05-13 13:16:17 +00:00
|
|
|
ChatMessage_IMAGE ChatMessage_ContentType = 7
|
2020-06-17 18:55:49 +00:00
|
|
|
ChatMessage_AUDIO ChatMessage_ContentType = 8
|
2019-12-02 15:34:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var ChatMessage_ContentType_name = map[int32]string{
|
|
|
|
0: "UNKNOWN_CONTENT_TYPE",
|
|
|
|
1: "TEXT_PLAIN",
|
|
|
|
2: "STICKER",
|
|
|
|
3: "STATUS",
|
|
|
|
4: "EMOJI",
|
2020-01-10 18:59:01 +00:00
|
|
|
5: "TRANSACTION_COMMAND",
|
2020-01-28 11:16:28 +00:00
|
|
|
6: "SYSTEM_MESSAGE_CONTENT_PRIVATE_GROUP",
|
2020-05-13 13:16:17 +00:00
|
|
|
7: "IMAGE",
|
2020-06-17 18:55:49 +00:00
|
|
|
8: "AUDIO",
|
2019-12-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var ChatMessage_ContentType_value = map[string]int32{
|
2020-01-28 11:16:28 +00:00
|
|
|
"UNKNOWN_CONTENT_TYPE": 0,
|
|
|
|
"TEXT_PLAIN": 1,
|
|
|
|
"STICKER": 2,
|
|
|
|
"STATUS": 3,
|
|
|
|
"EMOJI": 4,
|
|
|
|
"TRANSACTION_COMMAND": 5,
|
|
|
|
"SYSTEM_MESSAGE_CONTENT_PRIVATE_GROUP": 6,
|
2020-05-13 13:16:17 +00:00
|
|
|
"IMAGE": 7,
|
2020-06-17 18:55:49 +00:00
|
|
|
"AUDIO": 8,
|
2019-12-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x ChatMessage_ContentType) String() string {
|
|
|
|
return proto.EnumName(ChatMessage_ContentType_name, int32(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ChatMessage_ContentType) EnumDescriptor() ([]byte, []int) {
|
2020-07-07 16:24:32 +00:00
|
|
|
return fileDescriptor_263952f55fd35689, []int{5, 1}
|
2019-12-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type StickerMessage struct {
|
|
|
|
Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
|
|
|
|
Pack int32 `protobuf:"varint,2,opt,name=pack,proto3" json:"pack,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *StickerMessage) Reset() { *m = StickerMessage{} }
|
|
|
|
func (m *StickerMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*StickerMessage) ProtoMessage() {}
|
|
|
|
func (*StickerMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_263952f55fd35689, []int{0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *StickerMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_StickerMessage.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *StickerMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_StickerMessage.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *StickerMessage) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_StickerMessage.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *StickerMessage) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_StickerMessage.Size(m)
|
|
|
|
}
|
|
|
|
func (m *StickerMessage) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_StickerMessage.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_StickerMessage proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *StickerMessage) GetHash() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Hash
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *StickerMessage) GetPack() int32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Pack
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-05-13 13:16:17 +00:00
|
|
|
type ImageMessage struct {
|
|
|
|
Payload []byte `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
|
|
|
|
Type ImageMessage_ImageType `protobuf:"varint,2,opt,name=type,proto3,enum=protobuf.ImageMessage_ImageType" json:"type,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ImageMessage) Reset() { *m = ImageMessage{} }
|
|
|
|
func (m *ImageMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ImageMessage) ProtoMessage() {}
|
|
|
|
func (*ImageMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_263952f55fd35689, []int{1}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ImageMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ImageMessage.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ImageMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ImageMessage.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *ImageMessage) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ImageMessage.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *ImageMessage) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ImageMessage.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ImageMessage) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ImageMessage.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ImageMessage proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ImageMessage) GetPayload() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Payload
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ImageMessage) GetType() ImageMessage_ImageType {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
|
|
|
return ImageMessage_UNKNOWN_IMAGE_TYPE
|
|
|
|
}
|
|
|
|
|
2020-06-17 18:55:49 +00:00
|
|
|
type AudioMessage struct {
|
|
|
|
Payload []byte `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
|
|
|
|
Type AudioMessage_AudioType `protobuf:"varint,2,opt,name=type,proto3,enum=protobuf.AudioMessage_AudioType" json:"type,omitempty"`
|
2020-06-23 14:30:39 +00:00
|
|
|
DurationMs uint64 `protobuf:"varint,3,opt,name=duration_ms,json=durationMs,proto3" json:"duration_ms,omitempty"`
|
2020-06-17 18:55:49 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *AudioMessage) Reset() { *m = AudioMessage{} }
|
|
|
|
func (m *AudioMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*AudioMessage) ProtoMessage() {}
|
|
|
|
func (*AudioMessage) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_263952f55fd35689, []int{2}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *AudioMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_AudioMessage.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *AudioMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_AudioMessage.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *AudioMessage) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_AudioMessage.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *AudioMessage) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_AudioMessage.Size(m)
|
|
|
|
}
|
|
|
|
func (m *AudioMessage) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_AudioMessage.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_AudioMessage proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *AudioMessage) GetPayload() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Payload
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *AudioMessage) GetType() AudioMessage_AudioType {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
|
|
|
return AudioMessage_UNKNOWN_AUDIO_TYPE
|
|
|
|
}
|
|
|
|
|
2020-06-23 14:30:39 +00:00
|
|
|
func (m *AudioMessage) GetDurationMs() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.DurationMs
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-07-07 16:24:32 +00:00
|
|
|
type EmojiReaction struct {
|
2020-07-08 14:39:37 +00:00
|
|
|
MessageId string `protobuf:"bytes,1,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
|
2020-07-07 16:24:32 +00:00
|
|
|
Type EmojiReaction_Type `protobuf:"varint,2,opt,name=type,proto3,enum=protobuf.EmojiReaction_Type" json:"type,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EmojiReaction) Reset() { *m = EmojiReaction{} }
|
|
|
|
func (m *EmojiReaction) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*EmojiReaction) ProtoMessage() {}
|
|
|
|
func (*EmojiReaction) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_263952f55fd35689, []int{3}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EmojiReaction) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_EmojiReaction.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *EmojiReaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_EmojiReaction.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *EmojiReaction) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_EmojiReaction.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *EmojiReaction) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_EmojiReaction.Size(m)
|
|
|
|
}
|
|
|
|
func (m *EmojiReaction) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_EmojiReaction.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_EmojiReaction proto.InternalMessageInfo
|
|
|
|
|
2020-07-08 14:39:37 +00:00
|
|
|
func (m *EmojiReaction) GetMessageId() string {
|
2020-07-07 16:24:32 +00:00
|
|
|
if m != nil {
|
2020-07-08 14:39:37 +00:00
|
|
|
return m.MessageId
|
2020-07-07 16:24:32 +00:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EmojiReaction) GetType() EmojiReaction_Type {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
2020-07-08 12:24:22 +00:00
|
|
|
return EmojiReaction_UNKNOWN_EMOJI_REACTION_TYPE
|
2020-07-07 16:24:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type EmojiReactionRetraction struct {
|
2020-07-08 14:39:37 +00:00
|
|
|
EmojiReactionId string `protobuf:"bytes,1,opt,name=emoji_reaction_id,json=emojiReactionId,proto3" json:"emoji_reaction_id,omitempty"`
|
2020-07-07 16:24:32 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EmojiReactionRetraction) Reset() { *m = EmojiReactionRetraction{} }
|
|
|
|
func (m *EmojiReactionRetraction) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*EmojiReactionRetraction) ProtoMessage() {}
|
|
|
|
func (*EmojiReactionRetraction) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_263952f55fd35689, []int{4}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EmojiReactionRetraction) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_EmojiReactionRetraction.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *EmojiReactionRetraction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_EmojiReactionRetraction.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *EmojiReactionRetraction) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_EmojiReactionRetraction.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *EmojiReactionRetraction) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_EmojiReactionRetraction.Size(m)
|
|
|
|
}
|
|
|
|
func (m *EmojiReactionRetraction) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_EmojiReactionRetraction.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_EmojiReactionRetraction proto.InternalMessageInfo
|
|
|
|
|
2020-07-08 14:39:37 +00:00
|
|
|
func (m *EmojiReactionRetraction) GetEmojiReactionId() string {
|
2020-07-07 16:24:32 +00:00
|
|
|
if m != nil {
|
2020-07-08 14:39:37 +00:00
|
|
|
return m.EmojiReactionId
|
2020-07-07 16:24:32 +00:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-12-02 15:34:05 +00:00
|
|
|
type ChatMessage struct {
|
|
|
|
// Lamport timestamp of the chat message
|
|
|
|
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
|
|
|
|
// Unix timestamps in milliseconds, currently not used as we use whisper as more reliable, but here
|
|
|
|
// so that we don't rely on it
|
|
|
|
Timestamp uint64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
|
|
// Text of the message
|
|
|
|
Text string `protobuf:"bytes,3,opt,name=text,proto3" json:"text,omitempty"`
|
2020-03-09 07:55:58 +00:00
|
|
|
// Id of the message that we are replying to
|
2019-12-02 15:34:05 +00:00
|
|
|
ResponseTo string `protobuf:"bytes,4,opt,name=response_to,json=responseTo,proto3" json:"response_to,omitempty"`
|
|
|
|
// Ens name of the sender
|
|
|
|
EnsName string `protobuf:"bytes,5,opt,name=ens_name,json=ensName,proto3" json:"ens_name,omitempty"`
|
|
|
|
// Chat id, this field is symmetric for public-chats and private group chats,
|
|
|
|
// but asymmetric in case of one-to-ones, as the sender will use the chat-id
|
|
|
|
// of the received, while the receiver will use the chat-id of the sender.
|
|
|
|
// Probably should be the concatenation of sender-pk & receiver-pk in alphabetical order
|
|
|
|
ChatId string `protobuf:"bytes,6,opt,name=chat_id,json=chatId,proto3" json:"chat_id,omitempty"`
|
|
|
|
// The type of message (public/one-to-one/private-group-chat)
|
|
|
|
MessageType ChatMessage_MessageType `protobuf:"varint,7,opt,name=message_type,json=messageType,proto3,enum=protobuf.ChatMessage_MessageType" json:"message_type,omitempty"`
|
|
|
|
// The type of the content of the message
|
|
|
|
ContentType ChatMessage_ContentType `protobuf:"varint,8,opt,name=content_type,json=contentType,proto3,enum=protobuf.ChatMessage_ContentType" json:"content_type,omitempty"`
|
|
|
|
// Types that are valid to be assigned to Payload:
|
|
|
|
// *ChatMessage_Sticker
|
2020-05-13 13:16:17 +00:00
|
|
|
// *ChatMessage_Image
|
2020-06-17 18:55:49 +00:00
|
|
|
// *ChatMessage_Audio
|
2019-12-02 15:34:05 +00:00
|
|
|
Payload isChatMessage_Payload `protobuf_oneof:"payload"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) Reset() { *m = ChatMessage{} }
|
|
|
|
func (m *ChatMessage) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ChatMessage) ProtoMessage() {}
|
|
|
|
func (*ChatMessage) Descriptor() ([]byte, []int) {
|
2020-07-07 16:24:32 +00:00
|
|
|
return fileDescriptor_263952f55fd35689, []int{5}
|
2019-12-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ChatMessage.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ChatMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ChatMessage.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *ChatMessage) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ChatMessage.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *ChatMessage) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ChatMessage.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ChatMessage) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ChatMessage.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ChatMessage proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ChatMessage) GetClock() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Clock
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) GetTimestamp() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Timestamp
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) GetText() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Text
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) GetResponseTo() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ResponseTo
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) GetEnsName() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.EnsName
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) GetChatId() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ChatId
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) GetMessageType() ChatMessage_MessageType {
|
|
|
|
if m != nil {
|
|
|
|
return m.MessageType
|
|
|
|
}
|
|
|
|
return ChatMessage_UNKNOWN_MESSAGE_TYPE
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) GetContentType() ChatMessage_ContentType {
|
|
|
|
if m != nil {
|
|
|
|
return m.ContentType
|
|
|
|
}
|
|
|
|
return ChatMessage_UNKNOWN_CONTENT_TYPE
|
|
|
|
}
|
|
|
|
|
|
|
|
type isChatMessage_Payload interface {
|
|
|
|
isChatMessage_Payload()
|
|
|
|
}
|
|
|
|
|
|
|
|
type ChatMessage_Sticker struct {
|
|
|
|
Sticker *StickerMessage `protobuf:"bytes,9,opt,name=sticker,proto3,oneof"`
|
|
|
|
}
|
|
|
|
|
2020-05-13 13:16:17 +00:00
|
|
|
type ChatMessage_Image struct {
|
|
|
|
Image *ImageMessage `protobuf:"bytes,10,opt,name=image,proto3,oneof"`
|
|
|
|
}
|
|
|
|
|
2020-06-17 18:55:49 +00:00
|
|
|
type ChatMessage_Audio struct {
|
|
|
|
Audio *AudioMessage `protobuf:"bytes,11,opt,name=audio,proto3,oneof"`
|
|
|
|
}
|
|
|
|
|
2019-12-02 15:34:05 +00:00
|
|
|
func (*ChatMessage_Sticker) isChatMessage_Payload() {}
|
|
|
|
|
2020-05-13 13:16:17 +00:00
|
|
|
func (*ChatMessage_Image) isChatMessage_Payload() {}
|
|
|
|
|
2020-06-17 18:55:49 +00:00
|
|
|
func (*ChatMessage_Audio) isChatMessage_Payload() {}
|
|
|
|
|
2019-12-02 15:34:05 +00:00
|
|
|
func (m *ChatMessage) GetPayload() isChatMessage_Payload {
|
|
|
|
if m != nil {
|
|
|
|
return m.Payload
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ChatMessage) GetSticker() *StickerMessage {
|
|
|
|
if x, ok := m.GetPayload().(*ChatMessage_Sticker); ok {
|
|
|
|
return x.Sticker
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-13 13:16:17 +00:00
|
|
|
func (m *ChatMessage) GetImage() *ImageMessage {
|
|
|
|
if x, ok := m.GetPayload().(*ChatMessage_Image); ok {
|
|
|
|
return x.Image
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-17 18:55:49 +00:00
|
|
|
func (m *ChatMessage) GetAudio() *AudioMessage {
|
|
|
|
if x, ok := m.GetPayload().(*ChatMessage_Audio); ok {
|
|
|
|
return x.Audio
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-02 15:34:05 +00:00
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
|
|
func (*ChatMessage) XXX_OneofWrappers() []interface{} {
|
|
|
|
return []interface{}{
|
|
|
|
(*ChatMessage_Sticker)(nil),
|
2020-05-13 13:16:17 +00:00
|
|
|
(*ChatMessage_Image)(nil),
|
2020-06-17 18:55:49 +00:00
|
|
|
(*ChatMessage_Audio)(nil),
|
2019-12-02 15:34:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2020-05-13 13:16:17 +00:00
|
|
|
proto.RegisterEnum("protobuf.ImageMessage_ImageType", ImageMessage_ImageType_name, ImageMessage_ImageType_value)
|
2020-06-17 18:55:49 +00:00
|
|
|
proto.RegisterEnum("protobuf.AudioMessage_AudioType", AudioMessage_AudioType_name, AudioMessage_AudioType_value)
|
2020-07-07 16:24:32 +00:00
|
|
|
proto.RegisterEnum("protobuf.EmojiReaction_Type", EmojiReaction_Type_name, EmojiReaction_Type_value)
|
2019-12-02 15:34:05 +00:00
|
|
|
proto.RegisterEnum("protobuf.ChatMessage_MessageType", ChatMessage_MessageType_name, ChatMessage_MessageType_value)
|
|
|
|
proto.RegisterEnum("protobuf.ChatMessage_ContentType", ChatMessage_ContentType_name, ChatMessage_ContentType_value)
|
|
|
|
proto.RegisterType((*StickerMessage)(nil), "protobuf.StickerMessage")
|
2020-05-13 13:16:17 +00:00
|
|
|
proto.RegisterType((*ImageMessage)(nil), "protobuf.ImageMessage")
|
2020-06-17 18:55:49 +00:00
|
|
|
proto.RegisterType((*AudioMessage)(nil), "protobuf.AudioMessage")
|
2020-07-07 16:24:32 +00:00
|
|
|
proto.RegisterType((*EmojiReaction)(nil), "protobuf.EmojiReaction")
|
|
|
|
proto.RegisterType((*EmojiReactionRetraction)(nil), "protobuf.EmojiReactionRetraction")
|
2019-12-02 15:34:05 +00:00
|
|
|
proto.RegisterType((*ChatMessage)(nil), "protobuf.ChatMessage")
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("chat_message.proto", fileDescriptor_263952f55fd35689) }
|
|
|
|
|
|
|
|
var fileDescriptor_263952f55fd35689 = []byte{
|
2020-07-08 14:39:37 +00:00
|
|
|
// 788 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xcd, 0x6e, 0xa4, 0x46,
|
|
|
|
0x10, 0x36, 0x33, 0xcc, 0x0f, 0xc5, 0xd8, 0xdb, 0xdb, 0x59, 0xad, 0x89, 0xe2, 0x28, 0x13, 0x94,
|
|
|
|
0xc3, 0x28, 0x87, 0x51, 0xb4, 0xd9, 0x48, 0xb9, 0x62, 0xdc, 0x19, 0xb3, 0x6b, 0x7e, 0xd4, 0xf4,
|
|
|
|
0xac, 0xe3, 0x13, 0x62, 0xa1, 0xb3, 0x26, 0x5e, 0x06, 0x34, 0x60, 0x29, 0xbe, 0xe4, 0x11, 0xf2,
|
|
|
|
0x1e, 0xb9, 0x47, 0x79, 0x90, 0x3c, 0x51, 0xd4, 0x0d, 0x18, 0xc6, 0x8a, 0x72, 0xd9, 0x13, 0x5d,
|
|
|
|
0x55, 0x5f, 0x15, 0x5f, 0x75, 0xd5, 0xd7, 0x80, 0x93, 0xdb, 0xb8, 0x8e, 0x72, 0x5e, 0x55, 0xf1,
|
|
|
|
0x07, 0xbe, 0x2e, 0xf7, 0x45, 0x5d, 0xe0, 0xb9, 0xfc, 0xbc, 0xbf, 0xff, 0xc5, 0xfc, 0x11, 0x4e,
|
|
|
|
0xc2, 0x3a, 0x4b, 0xee, 0xf8, 0xde, 0x6d, 0x10, 0x18, 0x83, 0x7a, 0x1b, 0x57, 0xb7, 0x86, 0xb2,
|
|
|
|
0x54, 0x56, 0x1a, 0x95, 0x67, 0xe1, 0x2b, 0xe3, 0xe4, 0xce, 0x18, 0x2d, 0x95, 0xd5, 0x84, 0xca,
|
|
|
|
0xb3, 0xf9, 0xa7, 0x02, 0x0b, 0x27, 0x8f, 0x3f, 0xf0, 0x2e, 0xd1, 0x80, 0x59, 0x19, 0x3f, 0x7c,
|
|
|
|
0x2c, 0xe2, 0x54, 0xe6, 0x2e, 0x68, 0x67, 0xe2, 0xd7, 0xa0, 0xd6, 0x0f, 0x25, 0x97, 0xe9, 0x27,
|
|
|
|
0xaf, 0x96, 0xeb, 0xee, 0xef, 0xeb, 0x61, 0x7e, 0x63, 0xb0, 0x87, 0x92, 0x53, 0x89, 0x36, 0x1d,
|
|
|
|
0xd0, 0x1e, 0x5d, 0xf8, 0x25, 0xe0, 0xad, 0xf7, 0xd6, 0xf3, 0xaf, 0xbd, 0xc8, 0x71, 0xad, 0x0d,
|
|
|
|
0x89, 0xd8, 0x4d, 0x40, 0xd0, 0x11, 0x9e, 0xc1, 0x38, 0xf0, 0x36, 0x48, 0xc1, 0x73, 0x50, 0xdf,
|
|
|
|
0x04, 0x64, 0x83, 0x46, 0xe2, 0x74, 0x4d, 0xce, 0x03, 0x34, 0x16, 0xc1, 0x8d, 0xf3, 0x13, 0x52,
|
|
|
|
0xcd, 0xbf, 0x15, 0x58, 0x58, 0xf7, 0x69, 0x56, 0x7c, 0x02, 0xd7, 0x61, 0x7e, 0x63, 0xf4, 0x5c,
|
|
|
|
0xf1, 0x57, 0xa0, 0xa7, 0xf7, 0xfb, 0xb8, 0xce, 0x8a, 0x5d, 0x94, 0x57, 0xc6, 0x78, 0xa9, 0xac,
|
|
|
|
0x54, 0x0a, 0x9d, 0xcb, 0xad, 0xcc, 0x1f, 0x40, 0x7b, 0xcc, 0x19, 0x36, 0x63, 0x6d, 0x2f, 0x1c,
|
|
|
|
0x7f, 0xd0, 0x8c, 0x65, 0xd9, 0x48, 0x91, 0x07, 0x97, 0xa2, 0x91, 0xf9, 0x8f, 0x02, 0xc7, 0x24,
|
|
|
|
0x2f, 0x7e, 0xcd, 0x28, 0x8f, 0x13, 0x51, 0x0a, 0x7f, 0x09, 0xd0, 0xce, 0x32, 0xca, 0xd2, 0x76,
|
|
|
|
0x48, 0x5a, 0xeb, 0x71, 0x52, 0xfc, 0xdd, 0x01, 0xfd, 0xb3, 0x9e, 0xfe, 0x41, 0x95, 0xf5, 0xe0,
|
|
|
|
0x9a, 0x4b, 0x50, 0x59, 0xd3, 0xc2, 0x17, 0x1d, 0x29, 0xe2, 0xfa, 0x6f, 0x9c, 0x88, 0x12, 0xcb,
|
|
|
|
0x66, 0x8e, 0xef, 0x75, 0xec, 0xe6, 0xa0, 0x5e, 0xf9, 0xef, 0x08, 0x52, 0xf0, 0x31, 0x68, 0xec,
|
|
|
|
0x72, 0xeb, 0x9e, 0x87, 0xd1, 0x36, 0x40, 0x23, 0xfc, 0x0c, 0xf4, 0xd6, 0xbc, 0xf0, 0xaf, 0x3d,
|
|
|
|
0x34, 0xc6, 0x1a, 0x4c, 0xae, 0xac, 0xed, 0xe6, 0x12, 0xa9, 0xa2, 0x93, 0xd0, 0xba, 0x40, 0x13,
|
|
|
|
0xe1, 0xb3, 0xbc, 0x0d, 0xbd, 0x41, 0x53, 0x93, 0xc0, 0xe9, 0x01, 0x1b, 0xca, 0xeb, 0x7d, 0xdb,
|
|
|
|
0xdd, 0xb7, 0xf0, 0x9c, 0x8b, 0x50, 0xb4, 0x6f, 0x63, 0x7d, 0x93, 0xcf, 0xf8, 0x30, 0xc7, 0x49,
|
|
|
|
0xcd, 0x3f, 0xa6, 0xa0, 0xdb, 0xb7, 0x71, 0xdd, 0xcd, 0xf4, 0x05, 0x4c, 0x92, 0x8f, 0x45, 0x72,
|
|
|
|
0x27, 0xf1, 0x2a, 0x6d, 0x0c, 0x7c, 0x06, 0x5a, 0x9d, 0xe5, 0xbc, 0xaa, 0xe3, 0xbc, 0x94, 0xb7,
|
|
|
|
0xa2, 0xd2, 0xde, 0x21, 0x16, 0xbb, 0xe6, 0xbf, 0xd5, 0x72, 0x60, 0x1a, 0x95, 0x67, 0x31, 0xcb,
|
|
|
|
0x3d, 0xaf, 0xca, 0x62, 0x57, 0xf1, 0xa8, 0x2e, 0x0c, 0x55, 0x86, 0xa0, 0x73, 0xb1, 0x02, 0x7f,
|
|
|
|
0x0e, 0x73, 0xbe, 0xab, 0xa2, 0x5d, 0x9c, 0x73, 0x63, 0x22, 0xa3, 0x33, 0xbe, 0xab, 0xbc, 0x38,
|
|
|
|
0xe7, 0xf8, 0x14, 0x66, 0x52, 0x6e, 0x59, 0x6a, 0x4c, 0x65, 0x64, 0x2a, 0x4c, 0x27, 0xc5, 0x17,
|
|
|
|
0xb0, 0xe8, 0xc6, 0x26, 0xe7, 0x33, 0x93, 0xf3, 0xf9, 0xba, 0x9f, 0xcf, 0xa0, 0x93, 0x75, 0xfb,
|
|
|
|
0x95, 0x43, 0xd2, 0xf3, 0xde, 0x10, 0x55, 0x92, 0x62, 0x57, 0xf3, 0x5d, 0xdd, 0x54, 0x99, 0xff,
|
|
|
|
0x5f, 0x15, 0xbb, 0x41, 0x36, 0x55, 0x92, 0xde, 0xc0, 0xaf, 0x61, 0x56, 0x35, 0x9a, 0x37, 0xb4,
|
|
|
|
0xa5, 0xb2, 0xd2, 0x5f, 0x19, 0x7d, 0x81, 0xc3, 0xc7, 0xe0, 0xf2, 0x88, 0x76, 0x50, 0xbc, 0x86,
|
|
|
|
0x49, 0x26, 0xe4, 0x68, 0x80, 0xcc, 0x79, 0xf9, 0xdf, 0x2a, 0xbe, 0x3c, 0xa2, 0x0d, 0x4c, 0xe0,
|
|
|
|
0x63, 0xb1, 0xf1, 0x86, 0xfe, 0x14, 0x3f, 0x54, 0x92, 0xc0, 0x4b, 0x98, 0xf9, 0x3b, 0xe8, 0x83,
|
|
|
|
0xbe, 0xb1, 0x01, 0x2f, 0xba, 0x75, 0x74, 0x49, 0x18, 0x0e, 0x24, 0x7f, 0x02, 0xe0, 0x7b, 0x24,
|
|
|
|
0x62, 0x7e, 0xe4, 0x7b, 0x62, 0x1b, 0x11, 0x2c, 0x82, 0xed, 0xf9, 0x95, 0x63, 0x47, 0x1b, 0xea,
|
|
|
|
0xcb, 0x85, 0x7c, 0x0e, 0xc7, 0x01, 0x75, 0xde, 0x59, 0x8c, 0xb4, 0xae, 0x31, 0x5e, 0xc2, 0x59,
|
|
|
|
0x78, 0x13, 0x32, 0xe2, 0x3e, 0x56, 0x3b, 0x44, 0xa8, 0xe6, 0x5f, 0x0a, 0xe8, 0x83, 0x2b, 0x1b,
|
|
|
|
0x12, 0xb0, 0x7d, 0x8f, 0x11, 0x8f, 0x0d, 0x08, 0x30, 0xf2, 0x33, 0x8b, 0x82, 0x2b, 0xcb, 0xf1,
|
|
|
|
0x90, 0x82, 0x75, 0x98, 0x85, 0xcc, 0xb1, 0xdf, 0x12, 0x8a, 0x46, 0x18, 0x60, 0x1a, 0x32, 0x8b,
|
|
|
|
0x6d, 0xc3, 0x46, 0x07, 0x52, 0x4a, 0x48, 0xc5, 0xa7, 0xf0, 0x19, 0xa3, 0x96, 0x17, 0xb6, 0x92,
|
|
|
|
0xb2, 0x7d, 0xd7, 0xb5, 0x3c, 0xa1, 0x8b, 0x15, 0x7c, 0xf3, 0x84, 0x58, 0xf7, 0xb7, 0x43, 0x82,
|
|
|
|
0x53, 0x51, 0x4d, 0x3e, 0x7d, 0x68, 0x26, 0xc5, 0x24, 0x1e, 0x0e, 0x34, 0x3f, 0xd7, 0x1e, 0x5f,
|
|
|
|
0xb2, 0xf7, 0x53, 0x79, 0xc3, 0xdf, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xe2, 0xe4, 0x1c, 0xf7,
|
|
|
|
0xf2, 0x05, 0x00, 0x00,
|
2019-12-02 15:34:05 +00:00
|
|
|
}
|