status-go/protocol/protobuf/communities.pb.go

1826 lines
72 KiB
Go

// Code generated by protoc-gen-go. DO NOT EDIT.
// source: communities.proto
package protobuf
import (
fmt "fmt"
proto "github.com/golang/protobuf/proto"
math "math"
)
// 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
type CommunityMember_Roles int32
const (
CommunityMember_ROLE_NONE CommunityMember_Roles = 0
CommunityMember_ROLE_OWNER CommunityMember_Roles = 1
CommunityMember_ROLE_ADMIN CommunityMember_Roles = 4
CommunityMember_ROLE_TOKEN_MASTER CommunityMember_Roles = 5
)
var CommunityMember_Roles_name = map[int32]string{
0: "ROLE_NONE",
1: "ROLE_OWNER",
4: "ROLE_ADMIN",
5: "ROLE_TOKEN_MASTER",
}
var CommunityMember_Roles_value = map[string]int32{
"ROLE_NONE": 0,
"ROLE_OWNER": 1,
"ROLE_ADMIN": 4,
"ROLE_TOKEN_MASTER": 5,
}
func (x CommunityMember_Roles) String() string {
return proto.EnumName(CommunityMember_Roles_name, int32(x))
}
func (CommunityMember_Roles) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{1, 0}
}
type CommunityPermissions_Access int32
const (
CommunityPermissions_UNKNOWN_ACCESS CommunityPermissions_Access = 0
CommunityPermissions_NO_MEMBERSHIP CommunityPermissions_Access = 1
CommunityPermissions_INVITATION_ONLY CommunityPermissions_Access = 2
CommunityPermissions_ON_REQUEST CommunityPermissions_Access = 3
)
var CommunityPermissions_Access_name = map[int32]string{
0: "UNKNOWN_ACCESS",
1: "NO_MEMBERSHIP",
2: "INVITATION_ONLY",
3: "ON_REQUEST",
}
var CommunityPermissions_Access_value = map[string]int32{
"UNKNOWN_ACCESS": 0,
"NO_MEMBERSHIP": 1,
"INVITATION_ONLY": 2,
"ON_REQUEST": 3,
}
func (x CommunityPermissions_Access) String() string {
return proto.EnumName(CommunityPermissions_Access_name, int32(x))
}
func (CommunityPermissions_Access) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{3, 0}
}
type CommunityTokenPermission_Type int32
const (
CommunityTokenPermission_UNKNOWN_TOKEN_PERMISSION CommunityTokenPermission_Type = 0
CommunityTokenPermission_BECOME_ADMIN CommunityTokenPermission_Type = 1
CommunityTokenPermission_BECOME_MEMBER CommunityTokenPermission_Type = 2
CommunityTokenPermission_CAN_VIEW_CHANNEL CommunityTokenPermission_Type = 3
CommunityTokenPermission_CAN_VIEW_AND_POST_CHANNEL CommunityTokenPermission_Type = 4
CommunityTokenPermission_BECOME_TOKEN_MASTER CommunityTokenPermission_Type = 5
CommunityTokenPermission_BECOME_TOKEN_OWNER CommunityTokenPermission_Type = 6
)
var CommunityTokenPermission_Type_name = map[int32]string{
0: "UNKNOWN_TOKEN_PERMISSION",
1: "BECOME_ADMIN",
2: "BECOME_MEMBER",
3: "CAN_VIEW_CHANNEL",
4: "CAN_VIEW_AND_POST_CHANNEL",
5: "BECOME_TOKEN_MASTER",
6: "BECOME_TOKEN_OWNER",
}
var CommunityTokenPermission_Type_value = map[string]int32{
"UNKNOWN_TOKEN_PERMISSION": 0,
"BECOME_ADMIN": 1,
"BECOME_MEMBER": 2,
"CAN_VIEW_CHANNEL": 3,
"CAN_VIEW_AND_POST_CHANNEL": 4,
"BECOME_TOKEN_MASTER": 5,
"BECOME_TOKEN_OWNER": 6,
}
func (x CommunityTokenPermission_Type) String() string {
return proto.EnumName(CommunityTokenPermission_Type_name, int32(x))
}
func (CommunityTokenPermission_Type) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{5, 0}
}
type Grant struct {
CommunityId []byte `protobuf:"bytes,1,opt,name=community_id,json=communityId,proto3" json:"community_id,omitempty"`
MemberId []byte `protobuf:"bytes,2,opt,name=member_id,json=memberId,proto3" json:"member_id,omitempty"`
ChatId string `protobuf:"bytes,3,opt,name=chat_id,json=chatId,proto3" json:"chat_id,omitempty"`
Clock uint64 `protobuf:"varint,4,opt,name=clock,proto3" json:"clock,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Grant) Reset() { *m = Grant{} }
func (m *Grant) String() string { return proto.CompactTextString(m) }
func (*Grant) ProtoMessage() {}
func (*Grant) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{0}
}
func (m *Grant) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Grant.Unmarshal(m, b)
}
func (m *Grant) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Grant.Marshal(b, m, deterministic)
}
func (m *Grant) XXX_Merge(src proto.Message) {
xxx_messageInfo_Grant.Merge(m, src)
}
func (m *Grant) XXX_Size() int {
return xxx_messageInfo_Grant.Size(m)
}
func (m *Grant) XXX_DiscardUnknown() {
xxx_messageInfo_Grant.DiscardUnknown(m)
}
var xxx_messageInfo_Grant proto.InternalMessageInfo
func (m *Grant) GetCommunityId() []byte {
if m != nil {
return m.CommunityId
}
return nil
}
func (m *Grant) GetMemberId() []byte {
if m != nil {
return m.MemberId
}
return nil
}
func (m *Grant) GetChatId() string {
if m != nil {
return m.ChatId
}
return ""
}
func (m *Grant) GetClock() uint64 {
if m != nil {
return m.Clock
}
return 0
}
type CommunityMember struct {
Roles []CommunityMember_Roles `protobuf:"varint,1,rep,packed,name=roles,proto3,enum=protobuf.CommunityMember_Roles" json:"roles,omitempty"`
RevealedAccounts []*RevealedAccount `protobuf:"bytes,2,rep,name=revealed_accounts,json=revealedAccounts,proto3" json:"revealed_accounts,omitempty"` // Deprecated: Do not use.
LastUpdateClock uint64 `protobuf:"varint,3,opt,name=last_update_clock,json=lastUpdateClock,proto3" json:"last_update_clock,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityMember) Reset() { *m = CommunityMember{} }
func (m *CommunityMember) String() string { return proto.CompactTextString(m) }
func (*CommunityMember) ProtoMessage() {}
func (*CommunityMember) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{1}
}
func (m *CommunityMember) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityMember.Unmarshal(m, b)
}
func (m *CommunityMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityMember.Marshal(b, m, deterministic)
}
func (m *CommunityMember) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityMember.Merge(m, src)
}
func (m *CommunityMember) XXX_Size() int {
return xxx_messageInfo_CommunityMember.Size(m)
}
func (m *CommunityMember) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityMember.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityMember proto.InternalMessageInfo
func (m *CommunityMember) GetRoles() []CommunityMember_Roles {
if m != nil {
return m.Roles
}
return nil
}
// Deprecated: Do not use.
func (m *CommunityMember) GetRevealedAccounts() []*RevealedAccount {
if m != nil {
return m.RevealedAccounts
}
return nil
}
func (m *CommunityMember) GetLastUpdateClock() uint64 {
if m != nil {
return m.LastUpdateClock
}
return 0
}
type CommunityTokenMetadata struct {
ContractAddresses map[uint64]string `protobuf:"bytes,1,rep,name=contract_addresses,json=contractAddresses,proto3" json:"contract_addresses,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
Image string `protobuf:"bytes,3,opt,name=image,proto3" json:"image,omitempty"`
TokenType CommunityTokenType `protobuf:"varint,4,opt,name=tokenType,proto3,enum=protobuf.CommunityTokenType" json:"tokenType,omitempty"`
Symbol string `protobuf:"bytes,5,opt,name=symbol,proto3" json:"symbol,omitempty"`
Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
Decimals uint32 `protobuf:"varint,7,opt,name=decimals,proto3" json:"decimals,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityTokenMetadata) Reset() { *m = CommunityTokenMetadata{} }
func (m *CommunityTokenMetadata) String() string { return proto.CompactTextString(m) }
func (*CommunityTokenMetadata) ProtoMessage() {}
func (*CommunityTokenMetadata) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{2}
}
func (m *CommunityTokenMetadata) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityTokenMetadata.Unmarshal(m, b)
}
func (m *CommunityTokenMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityTokenMetadata.Marshal(b, m, deterministic)
}
func (m *CommunityTokenMetadata) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityTokenMetadata.Merge(m, src)
}
func (m *CommunityTokenMetadata) XXX_Size() int {
return xxx_messageInfo_CommunityTokenMetadata.Size(m)
}
func (m *CommunityTokenMetadata) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityTokenMetadata.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityTokenMetadata proto.InternalMessageInfo
func (m *CommunityTokenMetadata) GetContractAddresses() map[uint64]string {
if m != nil {
return m.ContractAddresses
}
return nil
}
func (m *CommunityTokenMetadata) GetDescription() string {
if m != nil {
return m.Description
}
return ""
}
func (m *CommunityTokenMetadata) GetImage() string {
if m != nil {
return m.Image
}
return ""
}
func (m *CommunityTokenMetadata) GetTokenType() CommunityTokenType {
if m != nil {
return m.TokenType
}
return CommunityTokenType_UNKNOWN_TOKEN_TYPE
}
func (m *CommunityTokenMetadata) GetSymbol() string {
if m != nil {
return m.Symbol
}
return ""
}
func (m *CommunityTokenMetadata) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *CommunityTokenMetadata) GetDecimals() uint32 {
if m != nil {
return m.Decimals
}
return 0
}
type CommunityPermissions struct {
EnsOnly bool `protobuf:"varint,1,opt,name=ens_only,json=ensOnly,proto3" json:"ens_only,omitempty"`
// https://gitlab.matrix.org/matrix-org/olm/blob/master/docs/megolm.md is a candidate for the algorithm to be used in case we want to have private communityal chats, lighter than pairwise encryption using the DR, less secure, but more efficient for large number of participants
Private bool `protobuf:"varint,2,opt,name=private,proto3" json:"private,omitempty"`
Access CommunityPermissions_Access `protobuf:"varint,3,opt,name=access,proto3,enum=protobuf.CommunityPermissions_Access" json:"access,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityPermissions) Reset() { *m = CommunityPermissions{} }
func (m *CommunityPermissions) String() string { return proto.CompactTextString(m) }
func (*CommunityPermissions) ProtoMessage() {}
func (*CommunityPermissions) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{3}
}
func (m *CommunityPermissions) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityPermissions.Unmarshal(m, b)
}
func (m *CommunityPermissions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityPermissions.Marshal(b, m, deterministic)
}
func (m *CommunityPermissions) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityPermissions.Merge(m, src)
}
func (m *CommunityPermissions) XXX_Size() int {
return xxx_messageInfo_CommunityPermissions.Size(m)
}
func (m *CommunityPermissions) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityPermissions.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityPermissions proto.InternalMessageInfo
func (m *CommunityPermissions) GetEnsOnly() bool {
if m != nil {
return m.EnsOnly
}
return false
}
func (m *CommunityPermissions) GetPrivate() bool {
if m != nil {
return m.Private
}
return false
}
func (m *CommunityPermissions) GetAccess() CommunityPermissions_Access {
if m != nil {
return m.Access
}
return CommunityPermissions_UNKNOWN_ACCESS
}
type TokenCriteria struct {
ContractAddresses map[uint64]string `protobuf:"bytes,1,rep,name=contract_addresses,json=contractAddresses,proto3" json:"contract_addresses,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
Type CommunityTokenType `protobuf:"varint,2,opt,name=type,proto3,enum=protobuf.CommunityTokenType" json:"type,omitempty"`
Symbol string `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"`
Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
Amount string `protobuf:"bytes,5,opt,name=amount,proto3" json:"amount,omitempty"`
TokenIds []uint64 `protobuf:"varint,6,rep,packed,name=token_ids,json=tokenIds,proto3" json:"token_ids,omitempty"`
EnsPattern string `protobuf:"bytes,7,opt,name=ens_pattern,json=ensPattern,proto3" json:"ens_pattern,omitempty"`
Decimals uint64 `protobuf:"varint,8,opt,name=decimals,proto3" json:"decimals,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TokenCriteria) Reset() { *m = TokenCriteria{} }
func (m *TokenCriteria) String() string { return proto.CompactTextString(m) }
func (*TokenCriteria) ProtoMessage() {}
func (*TokenCriteria) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{4}
}
func (m *TokenCriteria) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TokenCriteria.Unmarshal(m, b)
}
func (m *TokenCriteria) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TokenCriteria.Marshal(b, m, deterministic)
}
func (m *TokenCriteria) XXX_Merge(src proto.Message) {
xxx_messageInfo_TokenCriteria.Merge(m, src)
}
func (m *TokenCriteria) XXX_Size() int {
return xxx_messageInfo_TokenCriteria.Size(m)
}
func (m *TokenCriteria) XXX_DiscardUnknown() {
xxx_messageInfo_TokenCriteria.DiscardUnknown(m)
}
var xxx_messageInfo_TokenCriteria proto.InternalMessageInfo
func (m *TokenCriteria) GetContractAddresses() map[uint64]string {
if m != nil {
return m.ContractAddresses
}
return nil
}
func (m *TokenCriteria) GetType() CommunityTokenType {
if m != nil {
return m.Type
}
return CommunityTokenType_UNKNOWN_TOKEN_TYPE
}
func (m *TokenCriteria) GetSymbol() string {
if m != nil {
return m.Symbol
}
return ""
}
func (m *TokenCriteria) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *TokenCriteria) GetAmount() string {
if m != nil {
return m.Amount
}
return ""
}
func (m *TokenCriteria) GetTokenIds() []uint64 {
if m != nil {
return m.TokenIds
}
return nil
}
func (m *TokenCriteria) GetEnsPattern() string {
if m != nil {
return m.EnsPattern
}
return ""
}
func (m *TokenCriteria) GetDecimals() uint64 {
if m != nil {
return m.Decimals
}
return 0
}
type CommunityTokenPermission struct {
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Type CommunityTokenPermission_Type `protobuf:"varint,2,opt,name=type,proto3,enum=protobuf.CommunityTokenPermission_Type" json:"type,omitempty"`
TokenCriteria []*TokenCriteria `protobuf:"bytes,3,rep,name=token_criteria,json=tokenCriteria,proto3" json:"token_criteria,omitempty"`
ChatIds []string `protobuf:"bytes,4,rep,name=chat_ids,json=chatIds,proto3" json:"chat_ids,omitempty"`
IsPrivate bool `protobuf:"varint,5,opt,name=is_private,json=isPrivate,proto3" json:"is_private,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityTokenPermission) Reset() { *m = CommunityTokenPermission{} }
func (m *CommunityTokenPermission) String() string { return proto.CompactTextString(m) }
func (*CommunityTokenPermission) ProtoMessage() {}
func (*CommunityTokenPermission) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{5}
}
func (m *CommunityTokenPermission) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityTokenPermission.Unmarshal(m, b)
}
func (m *CommunityTokenPermission) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityTokenPermission.Marshal(b, m, deterministic)
}
func (m *CommunityTokenPermission) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityTokenPermission.Merge(m, src)
}
func (m *CommunityTokenPermission) XXX_Size() int {
return xxx_messageInfo_CommunityTokenPermission.Size(m)
}
func (m *CommunityTokenPermission) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityTokenPermission.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityTokenPermission proto.InternalMessageInfo
func (m *CommunityTokenPermission) GetId() string {
if m != nil {
return m.Id
}
return ""
}
func (m *CommunityTokenPermission) GetType() CommunityTokenPermission_Type {
if m != nil {
return m.Type
}
return CommunityTokenPermission_UNKNOWN_TOKEN_PERMISSION
}
func (m *CommunityTokenPermission) GetTokenCriteria() []*TokenCriteria {
if m != nil {
return m.TokenCriteria
}
return nil
}
func (m *CommunityTokenPermission) GetChatIds() []string {
if m != nil {
return m.ChatIds
}
return nil
}
func (m *CommunityTokenPermission) GetIsPrivate() bool {
if m != nil {
return m.IsPrivate
}
return false
}
type CommunityDescription struct {
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
Members map[string]*CommunityMember `protobuf:"bytes,2,rep,name=members,proto3" json:"members,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
Permissions *CommunityPermissions `protobuf:"bytes,3,opt,name=permissions,proto3" json:"permissions,omitempty"`
Identity *ChatIdentity `protobuf:"bytes,5,opt,name=identity,proto3" json:"identity,omitempty"`
Chats map[string]*CommunityChat `protobuf:"bytes,6,rep,name=chats,proto3" json:"chats,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
BanList []string `protobuf:"bytes,7,rep,name=ban_list,json=banList,proto3" json:"ban_list,omitempty"`
Categories map[string]*CommunityCategory `protobuf:"bytes,8,rep,name=categories,proto3" json:"categories,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
ArchiveMagnetlinkClock uint64 `protobuf:"varint,9,opt,name=archive_magnetlink_clock,json=archiveMagnetlinkClock,proto3" json:"archive_magnetlink_clock,omitempty"`
AdminSettings *CommunityAdminSettings `protobuf:"bytes,10,opt,name=admin_settings,json=adminSettings,proto3" json:"admin_settings,omitempty"`
IntroMessage string `protobuf:"bytes,11,opt,name=intro_message,json=introMessage,proto3" json:"intro_message,omitempty"`
OutroMessage string `protobuf:"bytes,12,opt,name=outro_message,json=outroMessage,proto3" json:"outro_message,omitempty"`
Encrypted bool `protobuf:"varint,13,opt,name=encrypted,proto3" json:"encrypted,omitempty"` // Deprecated: Do not use.
Tags []string `protobuf:"bytes,14,rep,name=tags,proto3" json:"tags,omitempty"`
TokenPermissions map[string]*CommunityTokenPermission `protobuf:"bytes,15,rep,name=token_permissions,json=tokenPermissions,proto3" json:"token_permissions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
CommunityTokensMetadata []*CommunityTokenMetadata `protobuf:"bytes,16,rep,name=community_tokens_metadata,json=communityTokensMetadata,proto3" json:"community_tokens_metadata,omitempty"`
ActiveMembersCount uint64 `protobuf:"varint,17,opt,name=active_members_count,json=activeMembersCount,proto3" json:"active_members_count,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityDescription) Reset() { *m = CommunityDescription{} }
func (m *CommunityDescription) String() string { return proto.CompactTextString(m) }
func (*CommunityDescription) ProtoMessage() {}
func (*CommunityDescription) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{6}
}
func (m *CommunityDescription) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityDescription.Unmarshal(m, b)
}
func (m *CommunityDescription) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityDescription.Marshal(b, m, deterministic)
}
func (m *CommunityDescription) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityDescription.Merge(m, src)
}
func (m *CommunityDescription) XXX_Size() int {
return xxx_messageInfo_CommunityDescription.Size(m)
}
func (m *CommunityDescription) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityDescription.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityDescription proto.InternalMessageInfo
func (m *CommunityDescription) GetClock() uint64 {
if m != nil {
return m.Clock
}
return 0
}
func (m *CommunityDescription) GetMembers() map[string]*CommunityMember {
if m != nil {
return m.Members
}
return nil
}
func (m *CommunityDescription) GetPermissions() *CommunityPermissions {
if m != nil {
return m.Permissions
}
return nil
}
func (m *CommunityDescription) GetIdentity() *ChatIdentity {
if m != nil {
return m.Identity
}
return nil
}
func (m *CommunityDescription) GetChats() map[string]*CommunityChat {
if m != nil {
return m.Chats
}
return nil
}
func (m *CommunityDescription) GetBanList() []string {
if m != nil {
return m.BanList
}
return nil
}
func (m *CommunityDescription) GetCategories() map[string]*CommunityCategory {
if m != nil {
return m.Categories
}
return nil
}
func (m *CommunityDescription) GetArchiveMagnetlinkClock() uint64 {
if m != nil {
return m.ArchiveMagnetlinkClock
}
return 0
}
func (m *CommunityDescription) GetAdminSettings() *CommunityAdminSettings {
if m != nil {
return m.AdminSettings
}
return nil
}
func (m *CommunityDescription) GetIntroMessage() string {
if m != nil {
return m.IntroMessage
}
return ""
}
func (m *CommunityDescription) GetOutroMessage() string {
if m != nil {
return m.OutroMessage
}
return ""
}
// Deprecated: Do not use.
func (m *CommunityDescription) GetEncrypted() bool {
if m != nil {
return m.Encrypted
}
return false
}
func (m *CommunityDescription) GetTags() []string {
if m != nil {
return m.Tags
}
return nil
}
func (m *CommunityDescription) GetTokenPermissions() map[string]*CommunityTokenPermission {
if m != nil {
return m.TokenPermissions
}
return nil
}
func (m *CommunityDescription) GetCommunityTokensMetadata() []*CommunityTokenMetadata {
if m != nil {
return m.CommunityTokensMetadata
}
return nil
}
func (m *CommunityDescription) GetActiveMembersCount() uint64 {
if m != nil {
return m.ActiveMembersCount
}
return 0
}
type CommunityAdminSettings struct {
PinMessageAllMembersEnabled bool `protobuf:"varint,1,opt,name=pin_message_all_members_enabled,json=pinMessageAllMembersEnabled,proto3" json:"pin_message_all_members_enabled,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityAdminSettings) Reset() { *m = CommunityAdminSettings{} }
func (m *CommunityAdminSettings) String() string { return proto.CompactTextString(m) }
func (*CommunityAdminSettings) ProtoMessage() {}
func (*CommunityAdminSettings) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{7}
}
func (m *CommunityAdminSettings) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityAdminSettings.Unmarshal(m, b)
}
func (m *CommunityAdminSettings) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityAdminSettings.Marshal(b, m, deterministic)
}
func (m *CommunityAdminSettings) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityAdminSettings.Merge(m, src)
}
func (m *CommunityAdminSettings) XXX_Size() int {
return xxx_messageInfo_CommunityAdminSettings.Size(m)
}
func (m *CommunityAdminSettings) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityAdminSettings.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityAdminSettings proto.InternalMessageInfo
func (m *CommunityAdminSettings) GetPinMessageAllMembersEnabled() bool {
if m != nil {
return m.PinMessageAllMembersEnabled
}
return false
}
type CommunityChat struct {
Members map[string]*CommunityMember `protobuf:"bytes,1,rep,name=members,proto3" json:"members,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
Permissions *CommunityPermissions `protobuf:"bytes,2,opt,name=permissions,proto3" json:"permissions,omitempty"`
Identity *ChatIdentity `protobuf:"bytes,3,opt,name=identity,proto3" json:"identity,omitempty"`
CategoryId string `protobuf:"bytes,4,opt,name=category_id,json=categoryId,proto3" json:"category_id,omitempty"`
Position int32 `protobuf:"varint,5,opt,name=position,proto3" json:"position,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityChat) Reset() { *m = CommunityChat{} }
func (m *CommunityChat) String() string { return proto.CompactTextString(m) }
func (*CommunityChat) ProtoMessage() {}
func (*CommunityChat) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{8}
}
func (m *CommunityChat) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityChat.Unmarshal(m, b)
}
func (m *CommunityChat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityChat.Marshal(b, m, deterministic)
}
func (m *CommunityChat) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityChat.Merge(m, src)
}
func (m *CommunityChat) XXX_Size() int {
return xxx_messageInfo_CommunityChat.Size(m)
}
func (m *CommunityChat) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityChat.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityChat proto.InternalMessageInfo
func (m *CommunityChat) GetMembers() map[string]*CommunityMember {
if m != nil {
return m.Members
}
return nil
}
func (m *CommunityChat) GetPermissions() *CommunityPermissions {
if m != nil {
return m.Permissions
}
return nil
}
func (m *CommunityChat) GetIdentity() *ChatIdentity {
if m != nil {
return m.Identity
}
return nil
}
func (m *CommunityChat) GetCategoryId() string {
if m != nil {
return m.CategoryId
}
return ""
}
func (m *CommunityChat) GetPosition() int32 {
if m != nil {
return m.Position
}
return 0
}
type CommunityCategory struct {
CategoryId string `protobuf:"bytes,1,opt,name=category_id,json=categoryId,proto3" json:"category_id,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
Position int32 `protobuf:"varint,3,opt,name=position,proto3" json:"position,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityCategory) Reset() { *m = CommunityCategory{} }
func (m *CommunityCategory) String() string { return proto.CompactTextString(m) }
func (*CommunityCategory) ProtoMessage() {}
func (*CommunityCategory) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{9}
}
func (m *CommunityCategory) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityCategory.Unmarshal(m, b)
}
func (m *CommunityCategory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityCategory.Marshal(b, m, deterministic)
}
func (m *CommunityCategory) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityCategory.Merge(m, src)
}
func (m *CommunityCategory) XXX_Size() int {
return xxx_messageInfo_CommunityCategory.Size(m)
}
func (m *CommunityCategory) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityCategory.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityCategory proto.InternalMessageInfo
func (m *CommunityCategory) GetCategoryId() string {
if m != nil {
return m.CategoryId
}
return ""
}
func (m *CommunityCategory) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *CommunityCategory) GetPosition() int32 {
if m != nil {
return m.Position
}
return 0
}
type RevealedAccount struct {
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
ChainIds []uint64 `protobuf:"varint,3,rep,packed,name=chain_ids,json=chainIds,proto3" json:"chain_ids,omitempty"`
IsAirdropAddress bool `protobuf:"varint,4,opt,name=isAirdropAddress,proto3" json:"isAirdropAddress,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RevealedAccount) Reset() { *m = RevealedAccount{} }
func (m *RevealedAccount) String() string { return proto.CompactTextString(m) }
func (*RevealedAccount) ProtoMessage() {}
func (*RevealedAccount) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{10}
}
func (m *RevealedAccount) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RevealedAccount.Unmarshal(m, b)
}
func (m *RevealedAccount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RevealedAccount.Marshal(b, m, deterministic)
}
func (m *RevealedAccount) XXX_Merge(src proto.Message) {
xxx_messageInfo_RevealedAccount.Merge(m, src)
}
func (m *RevealedAccount) XXX_Size() int {
return xxx_messageInfo_RevealedAccount.Size(m)
}
func (m *RevealedAccount) XXX_DiscardUnknown() {
xxx_messageInfo_RevealedAccount.DiscardUnknown(m)
}
var xxx_messageInfo_RevealedAccount proto.InternalMessageInfo
func (m *RevealedAccount) GetAddress() string {
if m != nil {
return m.Address
}
return ""
}
func (m *RevealedAccount) GetSignature() []byte {
if m != nil {
return m.Signature
}
return nil
}
func (m *RevealedAccount) GetChainIds() []uint64 {
if m != nil {
return m.ChainIds
}
return nil
}
func (m *RevealedAccount) GetIsAirdropAddress() bool {
if m != nil {
return m.IsAirdropAddress
}
return false
}
type CommunityRequestToJoin struct {
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
EnsName string `protobuf:"bytes,2,opt,name=ens_name,json=ensName,proto3" json:"ens_name,omitempty"`
ChatId string `protobuf:"bytes,3,opt,name=chat_id,json=chatId,proto3" json:"chat_id,omitempty"`
CommunityId []byte `protobuf:"bytes,4,opt,name=community_id,json=communityId,proto3" json:"community_id,omitempty"`
DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
RevealedAccounts []*RevealedAccount `protobuf:"bytes,6,rep,name=revealed_accounts,json=revealedAccounts,proto3" json:"revealed_accounts,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityRequestToJoin) Reset() { *m = CommunityRequestToJoin{} }
func (m *CommunityRequestToJoin) String() string { return proto.CompactTextString(m) }
func (*CommunityRequestToJoin) ProtoMessage() {}
func (*CommunityRequestToJoin) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{11}
}
func (m *CommunityRequestToJoin) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityRequestToJoin.Unmarshal(m, b)
}
func (m *CommunityRequestToJoin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityRequestToJoin.Marshal(b, m, deterministic)
}
func (m *CommunityRequestToJoin) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityRequestToJoin.Merge(m, src)
}
func (m *CommunityRequestToJoin) XXX_Size() int {
return xxx_messageInfo_CommunityRequestToJoin.Size(m)
}
func (m *CommunityRequestToJoin) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityRequestToJoin.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityRequestToJoin proto.InternalMessageInfo
func (m *CommunityRequestToJoin) GetClock() uint64 {
if m != nil {
return m.Clock
}
return 0
}
func (m *CommunityRequestToJoin) GetEnsName() string {
if m != nil {
return m.EnsName
}
return ""
}
func (m *CommunityRequestToJoin) GetChatId() string {
if m != nil {
return m.ChatId
}
return ""
}
func (m *CommunityRequestToJoin) GetCommunityId() []byte {
if m != nil {
return m.CommunityId
}
return nil
}
func (m *CommunityRequestToJoin) GetDisplayName() string {
if m != nil {
return m.DisplayName
}
return ""
}
func (m *CommunityRequestToJoin) GetRevealedAccounts() []*RevealedAccount {
if m != nil {
return m.RevealedAccounts
}
return nil
}
type CommunityEditSharedAddresses struct {
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
CommunityId []byte `protobuf:"bytes,2,opt,name=community_id,json=communityId,proto3" json:"community_id,omitempty"`
RevealedAccounts []*RevealedAccount `protobuf:"bytes,3,rep,name=revealed_accounts,json=revealedAccounts,proto3" json:"revealed_accounts,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityEditSharedAddresses) Reset() { *m = CommunityEditSharedAddresses{} }
func (m *CommunityEditSharedAddresses) String() string { return proto.CompactTextString(m) }
func (*CommunityEditSharedAddresses) ProtoMessage() {}
func (*CommunityEditSharedAddresses) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{12}
}
func (m *CommunityEditSharedAddresses) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityEditSharedAddresses.Unmarshal(m, b)
}
func (m *CommunityEditSharedAddresses) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityEditSharedAddresses.Marshal(b, m, deterministic)
}
func (m *CommunityEditSharedAddresses) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityEditSharedAddresses.Merge(m, src)
}
func (m *CommunityEditSharedAddresses) XXX_Size() int {
return xxx_messageInfo_CommunityEditSharedAddresses.Size(m)
}
func (m *CommunityEditSharedAddresses) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityEditSharedAddresses.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityEditSharedAddresses proto.InternalMessageInfo
func (m *CommunityEditSharedAddresses) GetClock() uint64 {
if m != nil {
return m.Clock
}
return 0
}
func (m *CommunityEditSharedAddresses) GetCommunityId() []byte {
if m != nil {
return m.CommunityId
}
return nil
}
func (m *CommunityEditSharedAddresses) GetRevealedAccounts() []*RevealedAccount {
if m != nil {
return m.RevealedAccounts
}
return nil
}
type CommunityCancelRequestToJoin struct {
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
EnsName string `protobuf:"bytes,2,opt,name=ens_name,json=ensName,proto3" json:"ens_name,omitempty"`
ChatId string `protobuf:"bytes,3,opt,name=chat_id,json=chatId,proto3" json:"chat_id,omitempty"`
CommunityId []byte `protobuf:"bytes,4,opt,name=community_id,json=communityId,proto3" json:"community_id,omitempty"`
DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityCancelRequestToJoin) Reset() { *m = CommunityCancelRequestToJoin{} }
func (m *CommunityCancelRequestToJoin) String() string { return proto.CompactTextString(m) }
func (*CommunityCancelRequestToJoin) ProtoMessage() {}
func (*CommunityCancelRequestToJoin) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{13}
}
func (m *CommunityCancelRequestToJoin) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityCancelRequestToJoin.Unmarshal(m, b)
}
func (m *CommunityCancelRequestToJoin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityCancelRequestToJoin.Marshal(b, m, deterministic)
}
func (m *CommunityCancelRequestToJoin) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityCancelRequestToJoin.Merge(m, src)
}
func (m *CommunityCancelRequestToJoin) XXX_Size() int {
return xxx_messageInfo_CommunityCancelRequestToJoin.Size(m)
}
func (m *CommunityCancelRequestToJoin) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityCancelRequestToJoin.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityCancelRequestToJoin proto.InternalMessageInfo
func (m *CommunityCancelRequestToJoin) GetClock() uint64 {
if m != nil {
return m.Clock
}
return 0
}
func (m *CommunityCancelRequestToJoin) GetEnsName() string {
if m != nil {
return m.EnsName
}
return ""
}
func (m *CommunityCancelRequestToJoin) GetChatId() string {
if m != nil {
return m.ChatId
}
return ""
}
func (m *CommunityCancelRequestToJoin) GetCommunityId() []byte {
if m != nil {
return m.CommunityId
}
return nil
}
func (m *CommunityCancelRequestToJoin) GetDisplayName() string {
if m != nil {
return m.DisplayName
}
return ""
}
type CommunityRequestToJoinResponse struct {
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
Community *CommunityDescription `protobuf:"bytes,2,opt,name=community,proto3" json:"community,omitempty"`
Accepted bool `protobuf:"varint,3,opt,name=accepted,proto3" json:"accepted,omitempty"`
Grant []byte `protobuf:"bytes,4,opt,name=grant,proto3" json:"grant,omitempty"`
CommunityId []byte `protobuf:"bytes,5,opt,name=community_id,json=communityId,proto3" json:"community_id,omitempty"`
MagnetUri string `protobuf:"bytes,6,opt,name=magnet_uri,json=magnetUri,proto3" json:"magnet_uri,omitempty"`
ProtectedTopicPrivateKey []byte `protobuf:"bytes,7,opt,name=protected_topic_private_key,json=protectedTopicPrivateKey,proto3" json:"protected_topic_private_key,omitempty"`
Shard *Shard `protobuf:"bytes,8,opt,name=shard,proto3" json:"shard,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityRequestToJoinResponse) Reset() { *m = CommunityRequestToJoinResponse{} }
func (m *CommunityRequestToJoinResponse) String() string { return proto.CompactTextString(m) }
func (*CommunityRequestToJoinResponse) ProtoMessage() {}
func (*CommunityRequestToJoinResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{14}
}
func (m *CommunityRequestToJoinResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityRequestToJoinResponse.Unmarshal(m, b)
}
func (m *CommunityRequestToJoinResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityRequestToJoinResponse.Marshal(b, m, deterministic)
}
func (m *CommunityRequestToJoinResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityRequestToJoinResponse.Merge(m, src)
}
func (m *CommunityRequestToJoinResponse) XXX_Size() int {
return xxx_messageInfo_CommunityRequestToJoinResponse.Size(m)
}
func (m *CommunityRequestToJoinResponse) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityRequestToJoinResponse.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityRequestToJoinResponse proto.InternalMessageInfo
func (m *CommunityRequestToJoinResponse) GetClock() uint64 {
if m != nil {
return m.Clock
}
return 0
}
func (m *CommunityRequestToJoinResponse) GetCommunity() *CommunityDescription {
if m != nil {
return m.Community
}
return nil
}
func (m *CommunityRequestToJoinResponse) GetAccepted() bool {
if m != nil {
return m.Accepted
}
return false
}
func (m *CommunityRequestToJoinResponse) GetGrant() []byte {
if m != nil {
return m.Grant
}
return nil
}
func (m *CommunityRequestToJoinResponse) GetCommunityId() []byte {
if m != nil {
return m.CommunityId
}
return nil
}
func (m *CommunityRequestToJoinResponse) GetMagnetUri() string {
if m != nil {
return m.MagnetUri
}
return ""
}
func (m *CommunityRequestToJoinResponse) GetProtectedTopicPrivateKey() []byte {
if m != nil {
return m.ProtectedTopicPrivateKey
}
return nil
}
func (m *CommunityRequestToJoinResponse) GetShard() *Shard {
if m != nil {
return m.Shard
}
return nil
}
type CommunityRequestToLeave struct {
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
CommunityId []byte `protobuf:"bytes,2,opt,name=community_id,json=communityId,proto3" json:"community_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityRequestToLeave) Reset() { *m = CommunityRequestToLeave{} }
func (m *CommunityRequestToLeave) String() string { return proto.CompactTextString(m) }
func (*CommunityRequestToLeave) ProtoMessage() {}
func (*CommunityRequestToLeave) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{15}
}
func (m *CommunityRequestToLeave) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityRequestToLeave.Unmarshal(m, b)
}
func (m *CommunityRequestToLeave) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityRequestToLeave.Marshal(b, m, deterministic)
}
func (m *CommunityRequestToLeave) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityRequestToLeave.Merge(m, src)
}
func (m *CommunityRequestToLeave) XXX_Size() int {
return xxx_messageInfo_CommunityRequestToLeave.Size(m)
}
func (m *CommunityRequestToLeave) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityRequestToLeave.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityRequestToLeave proto.InternalMessageInfo
func (m *CommunityRequestToLeave) GetClock() uint64 {
if m != nil {
return m.Clock
}
return 0
}
func (m *CommunityRequestToLeave) GetCommunityId() []byte {
if m != nil {
return m.CommunityId
}
return nil
}
type CommunityMessageArchiveMagnetlink struct {
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
MagnetUri string `protobuf:"bytes,2,opt,name=magnet_uri,json=magnetUri,proto3" json:"magnet_uri,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommunityMessageArchiveMagnetlink) Reset() { *m = CommunityMessageArchiveMagnetlink{} }
func (m *CommunityMessageArchiveMagnetlink) String() string { return proto.CompactTextString(m) }
func (*CommunityMessageArchiveMagnetlink) ProtoMessage() {}
func (*CommunityMessageArchiveMagnetlink) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{16}
}
func (m *CommunityMessageArchiveMagnetlink) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommunityMessageArchiveMagnetlink.Unmarshal(m, b)
}
func (m *CommunityMessageArchiveMagnetlink) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommunityMessageArchiveMagnetlink.Marshal(b, m, deterministic)
}
func (m *CommunityMessageArchiveMagnetlink) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommunityMessageArchiveMagnetlink.Merge(m, src)
}
func (m *CommunityMessageArchiveMagnetlink) XXX_Size() int {
return xxx_messageInfo_CommunityMessageArchiveMagnetlink.Size(m)
}
func (m *CommunityMessageArchiveMagnetlink) XXX_DiscardUnknown() {
xxx_messageInfo_CommunityMessageArchiveMagnetlink.DiscardUnknown(m)
}
var xxx_messageInfo_CommunityMessageArchiveMagnetlink proto.InternalMessageInfo
func (m *CommunityMessageArchiveMagnetlink) GetClock() uint64 {
if m != nil {
return m.Clock
}
return 0
}
func (m *CommunityMessageArchiveMagnetlink) GetMagnetUri() string {
if m != nil {
return m.MagnetUri
}
return ""
}
type WakuMessage struct {
Sig []byte `protobuf:"bytes,1,opt,name=sig,proto3" json:"sig,omitempty"`
Timestamp uint64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
Topic []byte `protobuf:"bytes,3,opt,name=topic,proto3" json:"topic,omitempty"`
Payload []byte `protobuf:"bytes,4,opt,name=payload,proto3" json:"payload,omitempty"`
Padding []byte `protobuf:"bytes,5,opt,name=padding,proto3" json:"padding,omitempty"`
Hash []byte `protobuf:"bytes,6,opt,name=hash,proto3" json:"hash,omitempty"`
ThirdPartyId string `protobuf:"bytes,7,opt,name=thirdPartyId,proto3" json:"thirdPartyId,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *WakuMessage) Reset() { *m = WakuMessage{} }
func (m *WakuMessage) String() string { return proto.CompactTextString(m) }
func (*WakuMessage) ProtoMessage() {}
func (*WakuMessage) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{17}
}
func (m *WakuMessage) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WakuMessage.Unmarshal(m, b)
}
func (m *WakuMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_WakuMessage.Marshal(b, m, deterministic)
}
func (m *WakuMessage) XXX_Merge(src proto.Message) {
xxx_messageInfo_WakuMessage.Merge(m, src)
}
func (m *WakuMessage) XXX_Size() int {
return xxx_messageInfo_WakuMessage.Size(m)
}
func (m *WakuMessage) XXX_DiscardUnknown() {
xxx_messageInfo_WakuMessage.DiscardUnknown(m)
}
var xxx_messageInfo_WakuMessage proto.InternalMessageInfo
func (m *WakuMessage) GetSig() []byte {
if m != nil {
return m.Sig
}
return nil
}
func (m *WakuMessage) GetTimestamp() uint64 {
if m != nil {
return m.Timestamp
}
return 0
}
func (m *WakuMessage) GetTopic() []byte {
if m != nil {
return m.Topic
}
return nil
}
func (m *WakuMessage) GetPayload() []byte {
if m != nil {
return m.Payload
}
return nil
}
func (m *WakuMessage) GetPadding() []byte {
if m != nil {
return m.Padding
}
return nil
}
func (m *WakuMessage) GetHash() []byte {
if m != nil {
return m.Hash
}
return nil
}
func (m *WakuMessage) GetThirdPartyId() string {
if m != nil {
return m.ThirdPartyId
}
return ""
}
type WakuMessageArchiveMetadata struct {
Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
From uint64 `protobuf:"varint,2,opt,name=from,proto3" json:"from,omitempty"`
To uint64 `protobuf:"varint,3,opt,name=to,proto3" json:"to,omitempty"`
ContentTopic [][]byte `protobuf:"bytes,4,rep,name=contentTopic,proto3" json:"contentTopic,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *WakuMessageArchiveMetadata) Reset() { *m = WakuMessageArchiveMetadata{} }
func (m *WakuMessageArchiveMetadata) String() string { return proto.CompactTextString(m) }
func (*WakuMessageArchiveMetadata) ProtoMessage() {}
func (*WakuMessageArchiveMetadata) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{18}
}
func (m *WakuMessageArchiveMetadata) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WakuMessageArchiveMetadata.Unmarshal(m, b)
}
func (m *WakuMessageArchiveMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_WakuMessageArchiveMetadata.Marshal(b, m, deterministic)
}
func (m *WakuMessageArchiveMetadata) XXX_Merge(src proto.Message) {
xxx_messageInfo_WakuMessageArchiveMetadata.Merge(m, src)
}
func (m *WakuMessageArchiveMetadata) XXX_Size() int {
return xxx_messageInfo_WakuMessageArchiveMetadata.Size(m)
}
func (m *WakuMessageArchiveMetadata) XXX_DiscardUnknown() {
xxx_messageInfo_WakuMessageArchiveMetadata.DiscardUnknown(m)
}
var xxx_messageInfo_WakuMessageArchiveMetadata proto.InternalMessageInfo
func (m *WakuMessageArchiveMetadata) GetVersion() uint32 {
if m != nil {
return m.Version
}
return 0
}
func (m *WakuMessageArchiveMetadata) GetFrom() uint64 {
if m != nil {
return m.From
}
return 0
}
func (m *WakuMessageArchiveMetadata) GetTo() uint64 {
if m != nil {
return m.To
}
return 0
}
func (m *WakuMessageArchiveMetadata) GetContentTopic() [][]byte {
if m != nil {
return m.ContentTopic
}
return nil
}
type WakuMessageArchive struct {
Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
Metadata *WakuMessageArchiveMetadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
Messages []*WakuMessage `protobuf:"bytes,3,rep,name=messages,proto3" json:"messages,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *WakuMessageArchive) Reset() { *m = WakuMessageArchive{} }
func (m *WakuMessageArchive) String() string { return proto.CompactTextString(m) }
func (*WakuMessageArchive) ProtoMessage() {}
func (*WakuMessageArchive) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{19}
}
func (m *WakuMessageArchive) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WakuMessageArchive.Unmarshal(m, b)
}
func (m *WakuMessageArchive) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_WakuMessageArchive.Marshal(b, m, deterministic)
}
func (m *WakuMessageArchive) XXX_Merge(src proto.Message) {
xxx_messageInfo_WakuMessageArchive.Merge(m, src)
}
func (m *WakuMessageArchive) XXX_Size() int {
return xxx_messageInfo_WakuMessageArchive.Size(m)
}
func (m *WakuMessageArchive) XXX_DiscardUnknown() {
xxx_messageInfo_WakuMessageArchive.DiscardUnknown(m)
}
var xxx_messageInfo_WakuMessageArchive proto.InternalMessageInfo
func (m *WakuMessageArchive) GetVersion() uint32 {
if m != nil {
return m.Version
}
return 0
}
func (m *WakuMessageArchive) GetMetadata() *WakuMessageArchiveMetadata {
if m != nil {
return m.Metadata
}
return nil
}
func (m *WakuMessageArchive) GetMessages() []*WakuMessage {
if m != nil {
return m.Messages
}
return nil
}
type WakuMessageArchiveIndexMetadata struct {
Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
Metadata *WakuMessageArchiveMetadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
Offset uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
Size uint64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
Padding uint64 `protobuf:"varint,5,opt,name=padding,proto3" json:"padding,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *WakuMessageArchiveIndexMetadata) Reset() { *m = WakuMessageArchiveIndexMetadata{} }
func (m *WakuMessageArchiveIndexMetadata) String() string { return proto.CompactTextString(m) }
func (*WakuMessageArchiveIndexMetadata) ProtoMessage() {}
func (*WakuMessageArchiveIndexMetadata) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{20}
}
func (m *WakuMessageArchiveIndexMetadata) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WakuMessageArchiveIndexMetadata.Unmarshal(m, b)
}
func (m *WakuMessageArchiveIndexMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_WakuMessageArchiveIndexMetadata.Marshal(b, m, deterministic)
}
func (m *WakuMessageArchiveIndexMetadata) XXX_Merge(src proto.Message) {
xxx_messageInfo_WakuMessageArchiveIndexMetadata.Merge(m, src)
}
func (m *WakuMessageArchiveIndexMetadata) XXX_Size() int {
return xxx_messageInfo_WakuMessageArchiveIndexMetadata.Size(m)
}
func (m *WakuMessageArchiveIndexMetadata) XXX_DiscardUnknown() {
xxx_messageInfo_WakuMessageArchiveIndexMetadata.DiscardUnknown(m)
}
var xxx_messageInfo_WakuMessageArchiveIndexMetadata proto.InternalMessageInfo
func (m *WakuMessageArchiveIndexMetadata) GetVersion() uint32 {
if m != nil {
return m.Version
}
return 0
}
func (m *WakuMessageArchiveIndexMetadata) GetMetadata() *WakuMessageArchiveMetadata {
if m != nil {
return m.Metadata
}
return nil
}
func (m *WakuMessageArchiveIndexMetadata) GetOffset() uint64 {
if m != nil {
return m.Offset
}
return 0
}
func (m *WakuMessageArchiveIndexMetadata) GetSize() uint64 {
if m != nil {
return m.Size
}
return 0
}
func (m *WakuMessageArchiveIndexMetadata) GetPadding() uint64 {
if m != nil {
return m.Padding
}
return 0
}
type WakuMessageArchiveIndex struct {
Archives map[string]*WakuMessageArchiveIndexMetadata `protobuf:"bytes,1,rep,name=archives,proto3" json:"archives,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *WakuMessageArchiveIndex) Reset() { *m = WakuMessageArchiveIndex{} }
func (m *WakuMessageArchiveIndex) String() string { return proto.CompactTextString(m) }
func (*WakuMessageArchiveIndex) ProtoMessage() {}
func (*WakuMessageArchiveIndex) Descriptor() ([]byte, []int) {
return fileDescriptor_f937943d74c1cd8b, []int{21}
}
func (m *WakuMessageArchiveIndex) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WakuMessageArchiveIndex.Unmarshal(m, b)
}
func (m *WakuMessageArchiveIndex) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_WakuMessageArchiveIndex.Marshal(b, m, deterministic)
}
func (m *WakuMessageArchiveIndex) XXX_Merge(src proto.Message) {
xxx_messageInfo_WakuMessageArchiveIndex.Merge(m, src)
}
func (m *WakuMessageArchiveIndex) XXX_Size() int {
return xxx_messageInfo_WakuMessageArchiveIndex.Size(m)
}
func (m *WakuMessageArchiveIndex) XXX_DiscardUnknown() {
xxx_messageInfo_WakuMessageArchiveIndex.DiscardUnknown(m)
}
var xxx_messageInfo_WakuMessageArchiveIndex proto.InternalMessageInfo
func (m *WakuMessageArchiveIndex) GetArchives() map[string]*WakuMessageArchiveIndexMetadata {
if m != nil {
return m.Archives
}
return nil
}
func init() {
proto.RegisterEnum("protobuf.CommunityMember_Roles", CommunityMember_Roles_name, CommunityMember_Roles_value)
proto.RegisterEnum("protobuf.CommunityPermissions_Access", CommunityPermissions_Access_name, CommunityPermissions_Access_value)
proto.RegisterEnum("protobuf.CommunityTokenPermission_Type", CommunityTokenPermission_Type_name, CommunityTokenPermission_Type_value)
proto.RegisterType((*Grant)(nil), "protobuf.Grant")
proto.RegisterType((*CommunityMember)(nil), "protobuf.CommunityMember")
proto.RegisterType((*CommunityTokenMetadata)(nil), "protobuf.CommunityTokenMetadata")
proto.RegisterMapType((map[uint64]string)(nil), "protobuf.CommunityTokenMetadata.ContractAddressesEntry")
proto.RegisterType((*CommunityPermissions)(nil), "protobuf.CommunityPermissions")
proto.RegisterType((*TokenCriteria)(nil), "protobuf.TokenCriteria")
proto.RegisterMapType((map[uint64]string)(nil), "protobuf.TokenCriteria.ContractAddressesEntry")
proto.RegisterType((*CommunityTokenPermission)(nil), "protobuf.CommunityTokenPermission")
proto.RegisterType((*CommunityDescription)(nil), "protobuf.CommunityDescription")
proto.RegisterMapType((map[string]*CommunityCategory)(nil), "protobuf.CommunityDescription.CategoriesEntry")
proto.RegisterMapType((map[string]*CommunityChat)(nil), "protobuf.CommunityDescription.ChatsEntry")
proto.RegisterMapType((map[string]*CommunityMember)(nil), "protobuf.CommunityDescription.MembersEntry")
proto.RegisterMapType((map[string]*CommunityTokenPermission)(nil), "protobuf.CommunityDescription.TokenPermissionsEntry")
proto.RegisterType((*CommunityAdminSettings)(nil), "protobuf.CommunityAdminSettings")
proto.RegisterType((*CommunityChat)(nil), "protobuf.CommunityChat")
proto.RegisterMapType((map[string]*CommunityMember)(nil), "protobuf.CommunityChat.MembersEntry")
proto.RegisterType((*CommunityCategory)(nil), "protobuf.CommunityCategory")
proto.RegisterType((*RevealedAccount)(nil), "protobuf.RevealedAccount")
proto.RegisterType((*CommunityRequestToJoin)(nil), "protobuf.CommunityRequestToJoin")
proto.RegisterType((*CommunityEditSharedAddresses)(nil), "protobuf.CommunityEditSharedAddresses")
proto.RegisterType((*CommunityCancelRequestToJoin)(nil), "protobuf.CommunityCancelRequestToJoin")
proto.RegisterType((*CommunityRequestToJoinResponse)(nil), "protobuf.CommunityRequestToJoinResponse")
proto.RegisterType((*CommunityRequestToLeave)(nil), "protobuf.CommunityRequestToLeave")
proto.RegisterType((*CommunityMessageArchiveMagnetlink)(nil), "protobuf.CommunityMessageArchiveMagnetlink")
proto.RegisterType((*WakuMessage)(nil), "protobuf.WakuMessage")
proto.RegisterType((*WakuMessageArchiveMetadata)(nil), "protobuf.WakuMessageArchiveMetadata")
proto.RegisterType((*WakuMessageArchive)(nil), "protobuf.WakuMessageArchive")
proto.RegisterType((*WakuMessageArchiveIndexMetadata)(nil), "protobuf.WakuMessageArchiveIndexMetadata")
proto.RegisterType((*WakuMessageArchiveIndex)(nil), "protobuf.WakuMessageArchiveIndex")
proto.RegisterMapType((map[string]*WakuMessageArchiveIndexMetadata)(nil), "protobuf.WakuMessageArchiveIndex.ArchivesEntry")
}
func init() {
proto.RegisterFile("communities.proto", fileDescriptor_f937943d74c1cd8b)
}
var fileDescriptor_f937943d74c1cd8b = []byte{
// 2122 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x73, 0x1b, 0x49,
0xf5, 0xdf, 0xd1, 0x48, 0xb6, 0xf4, 0x64, 0xd9, 0x72, 0x27, 0xb1, 0x27, 0x4e, 0xb2, 0x51, 0xe6,
0xfb, 0xdd, 0xc2, 0x1b, 0x0a, 0x67, 0xd7, 0x40, 0x91, 0xda, 0x65, 0x7f, 0x28, 0xf2, 0x90, 0xd5,
0x26, 0x1a, 0x79, 0x5b, 0xf2, 0x06, 0xb6, 0x80, 0xa9, 0xf6, 0x4c, 0xdb, 0xee, 0x8a, 0x34, 0x23,
0xa6, 0x5b, 0x2e, 0xc4, 0x81, 0x03, 0xf0, 0x17, 0xc0, 0x1f, 0xc0, 0x81, 0x3b, 0xfc, 0x09, 0x1c,
0xa8, 0xe2, 0xb8, 0x77, 0x6e, 0xfc, 0x09, 0x9c, 0x39, 0x51, 0xdd, 0x3d, 0x33, 0x9a, 0x91, 0xe4,
0x38, 0xcb, 0x42, 0x15, 0x27, 0xcd, 0x7b, 0xfd, 0xfa, 0xf5, 0xeb, 0xf7, 0x3e, 0xfd, 0xfa, 0xd3,
0x82, 0x6d, 0x3f, 0x1a, 0x8f, 0xa7, 0x21, 0x13, 0x8c, 0xf2, 0x83, 0x49, 0x1c, 0x89, 0x08, 0x55,
0xd5, 0xcf, 0xe9, 0xf4, 0x6c, 0xef, 0x86, 0x7f, 0x41, 0x84, 0xc7, 0x02, 0x1a, 0x0a, 0x26, 0x66,
0x7a, 0x78, 0xaf, 0x4e, 0xc3, 0xe9, 0x98, 0xa7, 0x02, 0xbf, 0x20, 0x71, 0xa0, 0x05, 0xfb, 0x12,
0x2a, 0x4f, 0x63, 0x12, 0x0a, 0xf4, 0x00, 0x36, 0x52, 0xb7, 0x33, 0x8f, 0x05, 0x96, 0xd1, 0x32,
0xf6, 0x37, 0x70, 0x3d, 0xd3, 0x75, 0x03, 0x74, 0x07, 0x6a, 0x63, 0x3a, 0x3e, 0xa5, 0xb1, 0x1c,
0x2f, 0xa9, 0xf1, 0xaa, 0x56, 0x74, 0x03, 0xb4, 0x0b, 0xeb, 0xc9, 0xca, 0x96, 0xd9, 0x32, 0xf6,
0x6b, 0x78, 0x4d, 0x8a, 0xdd, 0x00, 0xdd, 0x84, 0x8a, 0x3f, 0x8a, 0xfc, 0x97, 0x56, 0xb9, 0x65,
0xec, 0x97, 0xb1, 0x16, 0xec, 0xbf, 0x96, 0x60, 0xab, 0x93, 0xfa, 0xee, 0x29, 0x27, 0xe8, 0xbb,
0x50, 0x89, 0xa3, 0x11, 0xe5, 0x96, 0xd1, 0x32, 0xf7, 0x37, 0x0f, 0xef, 0x1f, 0xa4, 0x9b, 0x3a,
0x58, 0xb0, 0x3c, 0xc0, 0xd2, 0x0c, 0x6b, 0x6b, 0xf4, 0x29, 0x6c, 0xc7, 0xf4, 0x92, 0x92, 0x11,
0x0d, 0x3c, 0xe2, 0xfb, 0xd1, 0x34, 0x14, 0xdc, 0x2a, 0xb5, 0xcc, 0xfd, 0xfa, 0xe1, 0xed, 0xb9,
0x0b, 0x9c, 0x98, 0xb4, 0xb5, 0xc5, 0x93, 0x92, 0x65, 0xe0, 0x66, 0x5c, 0x54, 0x72, 0xf4, 0x10,
0xb6, 0x47, 0x84, 0x0b, 0x6f, 0x3a, 0x09, 0x88, 0xa0, 0x9e, 0x0e, 0xdc, 0x54, 0x81, 0x6f, 0xc9,
0x81, 0x13, 0xa5, 0xef, 0xa8, 0x2d, 0xfc, 0xda, 0x80, 0x8a, 0x0a, 0x04, 0x35, 0xa0, 0x86, 0xfb,
0xcf, 0x1d, 0xcf, 0xed, 0xbb, 0x4e, 0xf3, 0x0d, 0xb4, 0x09, 0xa0, 0xc4, 0xfe, 0x0b, 0xd7, 0xc1,
0x4d, 0x23, 0x93, 0xdb, 0x47, 0xbd, 0xae, 0xdb, 0x2c, 0xa3, 0x5b, 0xb0, 0xad, 0xe4, 0x61, 0xff,
0x99, 0xe3, 0x7a, 0xbd, 0xf6, 0x60, 0xe8, 0xe0, 0x66, 0xc5, 0x2e, 0x57, 0x4b, 0xcd, 0x92, 0x5d,
0xae, 0x9a, 0x4d, 0xf3, 0xa1, 0x36, 0xe8, 0xb5, 0xdd, 0xf6, 0x53, 0xc7, 0x3b, 0x19, 0x38, 0x78,
0xf0, 0xf0, 0x96, 0x56, 0xf5, 0x8f, 0x1c, 0xdc, 0x1e, 0x3a, 0x5e, 0xa7, 0xef, 0x0e, 0x1d, 0x77,
0x68, 0xff, 0xca, 0x84, 0x9d, 0x2c, 0x3d, 0xc3, 0xe8, 0x25, 0x0d, 0x7b, 0x54, 0x90, 0x80, 0x08,
0x82, 0xce, 0x00, 0xf9, 0x51, 0x28, 0x62, 0xe2, 0x0b, 0x8f, 0x04, 0x41, 0x4c, 0x39, 0x4f, 0x92,
0x5b, 0x3f, 0xfc, 0xde, 0x8a, 0xe4, 0x16, 0x66, 0x1f, 0x74, 0x92, 0xa9, 0xed, 0x74, 0xa6, 0x13,
0x8a, 0x78, 0x86, 0xb7, 0xfd, 0x45, 0x3d, 0x6a, 0x41, 0x3d, 0xa0, 0xdc, 0x8f, 0xd9, 0x44, 0xb0,
0x28, 0x54, 0xc8, 0xa8, 0xe1, 0xbc, 0x4a, 0x62, 0x80, 0x8d, 0xc9, 0x39, 0x4d, 0xa0, 0xa1, 0x05,
0xf4, 0x1e, 0xd4, 0x84, 0x5c, 0x72, 0x38, 0x9b, 0x50, 0x85, 0x8e, 0xcd, 0xc3, 0xbb, 0x57, 0x85,
0x25, 0x6d, 0xf0, 0xdc, 0x1c, 0xed, 0xc0, 0x1a, 0x9f, 0x8d, 0x4f, 0xa3, 0x91, 0x55, 0xd1, 0x68,
0xd3, 0x12, 0x42, 0x50, 0x0e, 0xc9, 0x98, 0x5a, 0x6b, 0x4a, 0xab, 0xbe, 0xd1, 0x1e, 0x54, 0x03,
0xea, 0xb3, 0x31, 0x19, 0x71, 0x6b, 0xbd, 0x65, 0xec, 0x37, 0x70, 0x26, 0xef, 0x1d, 0xc9, 0xec,
0xad, 0xda, 0x28, 0x6a, 0x82, 0xf9, 0x92, 0xce, 0xd4, 0x39, 0x28, 0x63, 0xf9, 0x29, 0x77, 0x71,
0x49, 0x46, 0x53, 0x9a, 0xec, 0x50, 0x0b, 0xef, 0x95, 0x1e, 0x1b, 0xf6, 0xdf, 0x0d, 0xb8, 0x99,
0xc5, 0x7b, 0x4c, 0xe3, 0x31, 0xe3, 0x9c, 0x45, 0x21, 0x47, 0xb7, 0xa1, 0x4a, 0x43, 0xee, 0x45,
0xe1, 0x48, 0x7b, 0xaa, 0xe2, 0x75, 0x1a, 0xf2, 0x7e, 0x38, 0x9a, 0x21, 0x0b, 0xd6, 0x27, 0x31,
0xbb, 0x24, 0x42, 0xfb, 0xab, 0xe2, 0x54, 0x44, 0x1f, 0xc0, 0x1a, 0xf1, 0x7d, 0xca, 0xb9, 0x4a,
0xd7, 0xe6, 0xe1, 0x5b, 0x2b, 0x92, 0x92, 0x5b, 0xe4, 0xa0, 0xad, 0x8c, 0x71, 0x32, 0xc9, 0x1e,
0xc2, 0x9a, 0xd6, 0x20, 0x04, 0x9b, 0x27, 0xee, 0x33, 0xb7, 0xff, 0xc2, 0xf5, 0xda, 0x9d, 0x8e,
0x33, 0x18, 0x34, 0xdf, 0x40, 0xdb, 0xd0, 0x70, 0xfb, 0x5e, 0xcf, 0xe9, 0x3d, 0x71, 0xf0, 0xe0,
0x93, 0xee, 0x71, 0xd3, 0x40, 0x37, 0x60, 0xab, 0xeb, 0x7e, 0xde, 0x1d, 0xb6, 0x87, 0xdd, 0xbe,
0xeb, 0xf5, 0xdd, 0xe7, 0x3f, 0x6a, 0x96, 0x24, 0x68, 0xfb, 0xae, 0x87, 0x9d, 0xcf, 0x4e, 0x9c,
0xc1, 0xb0, 0x69, 0xda, 0xbf, 0x31, 0xa1, 0xa1, 0x2a, 0xd1, 0x89, 0x99, 0xa0, 0x31, 0x23, 0xe8,
0x27, 0xaf, 0x80, 0xd7, 0xc1, 0x3c, 0xe4, 0xc2, 0xa4, 0xaf, 0x80, 0xaa, 0x77, 0xa0, 0x2c, 0x24,
0x30, 0x4a, 0xaf, 0x01, 0x0c, 0x65, 0x99, 0xc3, 0x84, 0xb9, 0x12, 0x13, 0xe5, 0x1c, 0x26, 0x76,
0x60, 0x8d, 0x8c, 0xe5, 0x99, 0x4f, 0xf1, 0xa3, 0x25, 0xd9, 0xe3, 0x14, 0xc8, 0x3c, 0x16, 0x70,
0x6b, 0xad, 0x65, 0xee, 0x97, 0x71, 0x55, 0x29, 0xba, 0x01, 0x47, 0xf7, 0xa1, 0x2e, 0xab, 0x39,
0x21, 0x42, 0xd0, 0x38, 0x54, 0x58, 0xaa, 0x61, 0xa0, 0x21, 0x3f, 0xd6, 0x9a, 0x02, 0xd2, 0xaa,
0x0a, 0x38, 0xff, 0x69, 0xa4, 0xfd, 0xce, 0x04, 0xab, 0x98, 0x80, 0x39, 0x12, 0xd0, 0x26, 0x94,
0x92, 0xce, 0x5d, 0xc3, 0x25, 0x16, 0xa0, 0xf7, 0x0b, 0x29, 0xfc, 0xc6, 0x55, 0x29, 0x9c, 0x7b,
0x38, 0xc8, 0x65, 0xf3, 0x43, 0xd8, 0xd4, 0x99, 0xf0, 0x93, 0xda, 0x59, 0xa6, 0x2a, 0xed, 0xee,
0x15, 0xa5, 0xc5, 0x0d, 0x51, 0x80, 0xc7, 0x6d, 0xa8, 0x26, 0x17, 0x02, 0xb7, 0xca, 0x2d, 0x73,
0xbf, 0x86, 0xd7, 0xf5, 0x8d, 0xc0, 0xd1, 0x3d, 0x00, 0xc6, 0xbd, 0x14, 0xfd, 0x15, 0x85, 0xfe,
0x1a, 0xe3, 0xc7, 0x5a, 0x61, 0xff, 0xc9, 0x80, 0xb2, 0x3a, 0xe4, 0x77, 0xc1, 0x4a, 0xf1, 0xab,
0x7b, 0xe5, 0xb1, 0x83, 0x7b, 0xdd, 0xc1, 0xa0, 0xdb, 0x77, 0x9b, 0x6f, 0xa0, 0x26, 0x6c, 0x3c,
0x71, 0x3a, 0xfd, 0x5e, 0xda, 0x58, 0x0d, 0x89, 0xed, 0x44, 0xa3, 0xf1, 0xdd, 0x2c, 0xa1, 0x9b,
0xd0, 0xec, 0xb4, 0x5d, 0xef, 0xf3, 0xae, 0xf3, 0xc2, 0xeb, 0x7c, 0xd2, 0x76, 0x5d, 0xe7, 0x79,
0xd3, 0x44, 0xf7, 0xe0, 0x76, 0xa6, 0x6d, 0xbb, 0x47, 0xde, 0x71, 0x7f, 0x30, 0xcc, 0x86, 0xcb,
0x68, 0x17, 0x6e, 0x24, 0x7e, 0x8a, 0x2d, 0x1a, 0xed, 0x00, 0x2a, 0x0c, 0xe8, 0x0e, 0xbf, 0x66,
0xff, 0xb3, 0x96, 0x3b, 0xff, 0x47, 0xc5, 0xc6, 0xa7, 0xef, 0x10, 0x23, 0x77, 0xf9, 0x21, 0x07,
0xd6, 0xf5, 0xbd, 0x99, 0xde, 0x53, 0xdf, 0x5c, 0x51, 0x9a, 0x9c, 0x9b, 0x03, 0x7d, 0xed, 0x25,
0x67, 0x25, 0x9d, 0x8b, 0x3e, 0x86, 0xfa, 0x64, 0xde, 0x06, 0x14, 0xe8, 0xeb, 0x87, 0x6f, 0xbe,
0xba, 0x59, 0xe0, 0xfc, 0x14, 0x74, 0x08, 0xd5, 0x94, 0x29, 0xa8, 0x32, 0xd4, 0x0f, 0x77, 0x72,
0xd3, 0x55, 0xb5, 0xf4, 0x28, 0xce, 0xec, 0xd0, 0x47, 0x50, 0x91, 0x75, 0xd4, 0xa7, 0xa3, 0x7e,
0xf8, 0xf6, 0x35, 0xa1, 0x4b, 0x2f, 0x49, 0xe0, 0x7a, 0x9e, 0x04, 0xc6, 0x29, 0x09, 0xbd, 0x11,
0xe3, 0xc2, 0x5a, 0xd7, 0xc0, 0x38, 0x25, 0xe1, 0x73, 0xc6, 0x05, 0x72, 0x01, 0x7c, 0x22, 0xe8,
0x79, 0x14, 0x33, 0x2a, 0x4f, 0xd0, 0x42, 0x2b, 0x59, 0xbd, 0x40, 0x36, 0x41, 0xaf, 0x92, 0xf3,
0x80, 0x1e, 0x83, 0x45, 0x62, 0xff, 0x82, 0x5d, 0x52, 0x6f, 0x4c, 0xce, 0x43, 0x2a, 0x46, 0x2c,
0x7c, 0x99, 0xdc, 0xea, 0x35, 0x55, 0x91, 0x9d, 0x64, 0xbc, 0x97, 0x0d, 0xab, 0xcb, 0x1d, 0x3d,
0x85, 0x4d, 0x12, 0x8c, 0x59, 0xe8, 0x71, 0x2a, 0x04, 0x0b, 0xcf, 0xb9, 0x05, 0x2a, 0x3f, 0xad,
0x15, 0xd1, 0xb4, 0xa5, 0xe1, 0x20, 0xb1, 0xc3, 0x0d, 0x92, 0x17, 0xd1, 0xff, 0x41, 0x83, 0x85,
0x22, 0x8e, 0xbc, 0x31, 0xe5, 0x5c, 0x5e, 0x81, 0x75, 0x75, 0x3c, 0x37, 0x94, 0xb2, 0xa7, 0x75,
0xd2, 0x28, 0x9a, 0xe6, 0x8d, 0x36, 0xb4, 0x91, 0x52, 0xa6, 0x46, 0x2d, 0xa8, 0xd1, 0xd0, 0x8f,
0x67, 0x13, 0x41, 0x03, 0xab, 0x21, 0x0f, 0x8d, 0x22, 0x31, 0x73, 0xa5, 0x6c, 0x74, 0x82, 0x9c,
0x73, 0x6b, 0x53, 0x65, 0x55, 0x7d, 0x23, 0x02, 0xdb, 0xfa, 0x18, 0xe7, 0xa1, 0xb2, 0xa5, 0x32,
0xfb, 0x9d, 0x6b, 0x32, 0xbb, 0xd0, 0x1c, 0x92, 0xfc, 0x36, 0xc5, 0x82, 0x1a, 0xfd, 0x18, 0x6e,
0xcf, 0xa9, 0xa3, 0x1a, 0xe5, 0xde, 0x38, 0xa1, 0x11, 0x56, 0x53, 0x2d, 0xd5, 0xba, 0x8e, 0x6e,
0xe0, 0x5d, 0xbf, 0xa0, 0xe7, 0x19, 0x8b, 0x79, 0x07, 0x6e, 0x12, 0x5f, 0xa8, 0x12, 0x6a, 0xdc,
0x7b, 0x8a, 0xab, 0x59, 0xdb, 0xaa, 0x7e, 0x48, 0x8f, 0x25, 0x07, 0xa4, 0x23, 0x47, 0xf6, 0x4e,
0x60, 0x23, 0x7f, 0x60, 0xf2, 0xfd, 0xb5, 0xa6, 0xfb, 0xeb, 0xa3, 0x7c, 0x7f, 0x2d, 0xd0, 0xc4,
0x05, 0xa6, 0x99, 0x6b, 0xbd, 0x7b, 0x9f, 0x01, 0xcc, 0xc1, 0xbc, 0xc2, 0xe9, 0xb7, 0x8a, 0x4e,
0x77, 0x57, 0x38, 0x95, 0xf3, 0xf3, 0x2e, 0xbf, 0x80, 0xad, 0x05, 0xf8, 0xae, 0xf0, 0xfb, 0x6e,
0xd1, 0xef, 0x9d, 0x55, 0x7e, 0xb5, 0x93, 0x59, 0xde, 0xf7, 0x39, 0xdc, 0x5a, 0x59, 0xc0, 0x15,
0x2b, 0x3c, 0x2e, 0xae, 0x60, 0x5f, 0x7f, 0x51, 0xe4, 0xaf, 0xa4, 0x9f, 0xe6, 0x08, 0x68, 0xe1,
0x28, 0xa0, 0x23, 0xb8, 0x3f, 0x61, 0x61, 0x0a, 0x6a, 0x8f, 0x8c, 0x46, 0x59, 0x0d, 0x69, 0x48,
0x4e, 0x47, 0x34, 0x48, 0x48, 0xd1, 0x9d, 0x09, 0x0b, 0x13, 0x98, 0xb7, 0x47, 0xa3, 0xac, 0x78,
0xca, 0xc4, 0xfe, 0x5b, 0x09, 0x1a, 0x85, 0x0c, 0xa2, 0x0f, 0xe7, 0xfd, 0x53, 0xd3, 0x8d, 0xff,
0xbf, 0x22, 0xd7, 0xaf, 0xd7, 0x38, 0x4b, 0x5f, 0xaf, 0x71, 0x9a, 0xaf, 0xd9, 0x38, 0xef, 0x43,
0x3d, 0x69, 0x4d, 0xea, 0x81, 0xa5, 0xd9, 0x48, 0xda, 0xad, 0xe4, 0xfb, 0x6a, 0x0f, 0xaa, 0x93,
0x88, 0x33, 0x45, 0xa2, 0x65, 0x37, 0xae, 0xe0, 0x4c, 0xfe, 0x2f, 0x61, 0xda, 0x0e, 0x60, 0x7b,
0x09, 0x44, 0x8b, 0x81, 0x1a, 0x4b, 0x81, 0xa6, 0x84, 0xaa, 0x54, 0x24, 0xd9, 0x59, 0xf0, 0x66,
0x31, 0x78, 0xfb, 0xb7, 0x06, 0x6c, 0x2d, 0xbc, 0xbf, 0x24, 0xfd, 0x4d, 0x48, 0x63, 0xb2, 0x40,
0x2a, 0xa2, 0xbb, 0x50, 0xe3, 0xec, 0x3c, 0x24, 0x62, 0x1a, 0xd3, 0xe4, 0x99, 0x39, 0x57, 0x48,
0x82, 0xe6, 0x5f, 0x10, 0xa6, 0x09, 0x9a, 0xa9, 0x09, 0x9a, 0x52, 0x48, 0x62, 0xf1, 0x10, 0x9a,
0x8c, 0xb7, 0x59, 0x1c, 0xc4, 0xd1, 0x24, 0x21, 0x59, 0x2a, 0xcf, 0x55, 0xbc, 0xa4, 0xb7, 0xff,
0x61, 0xe4, 0x70, 0x8b, 0xe9, 0xcf, 0xa6, 0x94, 0x8b, 0x61, 0xf4, 0x69, 0xc4, 0xae, 0xba, 0xb5,
0x13, 0x2e, 0x9f, 0xdb, 0xb9, 0xe4, 0xf2, 0xae, 0xdc, 0xfc, 0x95, 0x8f, 0xdf, 0xc5, 0x57, 0x75,
0x79, 0xf9, 0x55, 0xfd, 0x00, 0x36, 0x02, 0xc6, 0x27, 0x23, 0x32, 0xd3, 0xae, 0x2b, 0xc9, 0xf3,
0x49, 0xeb, 0x94, 0xfb, 0x1f, 0xac, 0x7a, 0xe1, 0xae, 0x5d, 0xf3, 0xc2, 0x5d, 0x7e, 0xdd, 0xda,
0xbf, 0x37, 0xe0, 0x6e, 0xb6, 0x65, 0x27, 0x60, 0x62, 0x70, 0x41, 0x62, 0x1a, 0xcc, 0x39, 0xf7,
0xea, 0x8d, 0x2f, 0x6e, 0xa2, 0xb4, 0xbc, 0x89, 0x95, 0x11, 0x9a, 0x5f, 0x3d, 0xc2, 0x3f, 0xe6,
0x23, 0xec, 0x90, 0xd0, 0xa7, 0xa3, 0xff, 0xe9, 0xd2, 0xd8, 0x5f, 0x96, 0xe0, 0xcd, 0xd5, 0x28,
0xc2, 0x94, 0x4f, 0xa2, 0x90, 0xd3, 0x2b, 0x42, 0xfe, 0x3e, 0xd4, 0xb2, 0xa5, 0x5e, 0xd1, 0x81,
0x72, 0xf7, 0x31, 0x9e, 0x4f, 0x90, 0xa7, 0x4d, 0xbe, 0xf6, 0x14, 0x15, 0x30, 0x15, 0xc0, 0x33,
0x59, 0xae, 0x77, 0x1e, 0x93, 0x50, 0x24, 0x3b, 0xd2, 0xc2, 0xd2, 0x76, 0x2b, 0xcb, 0xdb, 0xbd,
0x07, 0xa0, 0x59, 0x92, 0x37, 0x8d, 0x59, 0xf2, 0x82, 0xae, 0x69, 0xcd, 0x49, 0xcc, 0xd0, 0x07,
0x70, 0x47, 0xc6, 0x47, 0x7d, 0x41, 0x03, 0x4f, 0x44, 0x13, 0xe6, 0xa7, 0x14, 0xde, 0x93, 0xad,
0x68, 0x5d, 0x39, 0xb4, 0x32, 0x93, 0xa1, 0xb4, 0x48, 0x28, 0xfd, 0x33, 0x3a, 0x43, 0x6f, 0x41,
0x45, 0xfd, 0xf1, 0xa4, 0x1e, 0x46, 0xf5, 0xc3, 0xad, 0xf9, 0x66, 0x25, 0x0a, 0x03, 0xac, 0x47,
0x6d, 0x0c, 0xbb, 0xcb, 0xf9, 0x7c, 0x4e, 0xc9, 0x25, 0xfd, 0xb7, 0xd1, 0x69, 0xff, 0x10, 0x1e,
0xe4, 0x7a, 0xa0, 0xbe, 0x66, 0x16, 0x69, 0xdf, 0x15, 0xde, 0x8b, 0x39, 0x29, 0x2d, 0xe4, 0xc4,
0xfe, 0xb3, 0x01, 0xf5, 0x17, 0xe4, 0xe5, 0x34, 0xe5, 0x68, 0x4d, 0x30, 0x39, 0x3b, 0x4f, 0xfe,
0x3c, 0x93, 0x9f, 0xb2, 0x9b, 0x09, 0x36, 0xa6, 0x5c, 0x90, 0xf1, 0x44, 0xcd, 0x2f, 0xe3, 0xb9,
0x42, 0x2e, 0xaa, 0x32, 0xa9, 0x8a, 0xb8, 0x81, 0xb5, 0xa0, 0xfe, 0x1a, 0x20, 0xb3, 0x51, 0x44,
0x52, 0x54, 0xa6, 0xa2, 0x1e, 0x09, 0x02, 0x16, 0x9e, 0x27, 0x05, 0x4c, 0x45, 0xd9, 0x93, 0x2f,
0x08, 0xbf, 0x50, 0x65, 0xdb, 0xc0, 0xea, 0x1b, 0xd9, 0xb0, 0x21, 0x2e, 0x58, 0x1c, 0x1c, 0x93,
0x58, 0xe6, 0x21, 0x79, 0xb0, 0x16, 0x74, 0xf6, 0x2f, 0x61, 0x2f, 0xb7, 0x81, 0x34, 0x2d, 0x29,
0xf9, 0xb2, 0x60, 0xfd, 0x92, 0xc6, 0xf2, 0xce, 0x53, 0x7b, 0x6a, 0xe0, 0x54, 0x94, 0xeb, 0x9d,
0xc5, 0xd1, 0x38, 0xd9, 0x92, 0xfa, 0x96, 0xef, 0x4f, 0x11, 0x25, 0x7f, 0x97, 0x95, 0x44, 0x24,
0xd7, 0x97, 0xef, 0x7a, 0x1a, 0x0a, 0x05, 0x06, 0xf5, 0x0c, 0xdc, 0xc0, 0x05, 0x9d, 0xfd, 0x07,
0x03, 0xd0, 0x72, 0x00, 0xaf, 0x58, 0xf8, 0x63, 0xa8, 0x66, 0xe4, 0x52, 0x9f, 0x9b, 0xdc, 0xed,
0x7f, 0xf5, 0x56, 0x70, 0x36, 0x0b, 0xbd, 0x2b, 0x3d, 0x28, 0x9b, 0xb4, 0x47, 0xdd, 0x5a, 0xe9,
0x01, 0x67, 0x66, 0xf6, 0x5f, 0x0c, 0xb8, 0xbf, 0xec, 0xbb, 0x1b, 0x06, 0xf4, 0xe7, 0xaf, 0x91,
0xab, 0xaf, 0x1f, 0xf2, 0x0e, 0xac, 0x45, 0x67, 0x67, 0x9c, 0x8a, 0x24, 0xbb, 0x89, 0x24, 0xab,
0xc0, 0xd9, 0x2f, 0x68, 0xf2, 0xdf, 0xaa, 0xfa, 0x5e, 0xc4, 0x48, 0x39, 0xc3, 0x88, 0xfd, 0xa5,
0x01, 0xbb, 0x57, 0xec, 0x02, 0x3d, 0x83, 0x6a, 0xf2, 0x14, 0x4a, 0x49, 0xd5, 0xa3, 0x57, 0xc5,
0xa8, 0x26, 0x1d, 0x24, 0x42, 0xc2, 0xaf, 0x32, 0x07, 0x7b, 0x67, 0xd0, 0x28, 0x0c, 0xad, 0xa0,
0x2b, 0x1f, 0x15, 0xe9, 0xca, 0xdb, 0xd7, 0x2e, 0x96, 0x65, 0x65, 0x4e, 0x5f, 0x9e, 0x34, 0xbe,
0xa8, 0x1f, 0x3c, 0x7a, 0x3f, 0x9d, 0x79, 0xba, 0xa6, 0xbe, 0xbe, 0xfd, 0xaf, 0x00, 0x00, 0x00,
0xff, 0xff, 0xa6, 0x25, 0xae, 0xc0, 0x21, 0x17, 0x00, 0x00,
}