run protoc on address
This commit is contained in:
+136
-43
@@ -175,6 +175,7 @@ type StandardClaims struct {
|
||||
PhoneNumber string `protobuf:"bytes,17,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"`
|
||||
PhoneNumberVerified bool `protobuf:"varint,18,opt,name=phone_number_verified,json=phoneNumberVerified,proto3" json:"phone_number_verified,omitempty"`
|
||||
UpdatedAt int32 `protobuf:"varint,19,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
|
||||
Address *Address `protobuf:"bytes,20,opt,name=address,proto3" json:"address,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
@@ -338,6 +339,92 @@ func (m *StandardClaims) GetUpdatedAt() int32 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *StandardClaims) GetAddress() *Address {
|
||||
if m != nil {
|
||||
return m.Address
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type Address struct {
|
||||
Formatted string `protobuf:"bytes,1,opt,name=formatted,proto3" json:"formatted,omitempty"`
|
||||
StreetAddress string `protobuf:"bytes,2,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
|
||||
Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
|
||||
Region string `protobuf:"bytes,4,opt,name=region,proto3" json:"region,omitempty"`
|
||||
PostalCode string `protobuf:"bytes,5,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
|
||||
Country string `protobuf:"bytes,6,opt,name=country,proto3" json:"country,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Address) Reset() { *m = Address{} }
|
||||
func (m *Address) String() string { return proto.CompactTextString(m) }
|
||||
func (*Address) ProtoMessage() {}
|
||||
func (*Address) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e3c84319968a576b, []int{4}
|
||||
}
|
||||
|
||||
func (m *Address) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Address.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Address) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Address.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Address) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Address.Merge(m, src)
|
||||
}
|
||||
func (m *Address) XXX_Size() int {
|
||||
return xxx_messageInfo_Address.Size(m)
|
||||
}
|
||||
func (m *Address) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Address.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Address proto.InternalMessageInfo
|
||||
|
||||
func (m *Address) GetFormatted() string {
|
||||
if m != nil {
|
||||
return m.Formatted
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Address) GetStreetAddress() string {
|
||||
if m != nil {
|
||||
return m.StreetAddress
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Address) GetLocality() string {
|
||||
if m != nil {
|
||||
return m.Locality
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Address) GetRegion() string {
|
||||
if m != nil {
|
||||
return m.Region
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Address) GetPostalCode() string {
|
||||
if m != nil {
|
||||
return m.PostalCode
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Address) GetCountry() string {
|
||||
if m != nil {
|
||||
return m.Country
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type Phoenix struct {
|
||||
Theme string `protobuf:"bytes,1,opt,name=theme,proto3" json:"theme,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
@@ -349,7 +436,7 @@ func (m *Phoenix) Reset() { *m = Phoenix{} }
|
||||
func (m *Phoenix) String() string { return proto.CompactTextString(m) }
|
||||
func (*Phoenix) ProtoMessage() {}
|
||||
func (*Phoenix) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e3c84319968a576b, []int{4}
|
||||
return fileDescriptor_e3c84319968a576b, []int{5}
|
||||
}
|
||||
|
||||
func (m *Phoenix) XXX_Unmarshal(b []byte) error {
|
||||
@@ -388,7 +475,7 @@ func (m *Query) Reset() { *m = Query{} }
|
||||
func (m *Query) String() string { return proto.CompactTextString(m) }
|
||||
func (*Query) ProtoMessage() {}
|
||||
func (*Query) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e3c84319968a576b, []int{5}
|
||||
return fileDescriptor_e3c84319968a576b, []int{6}
|
||||
}
|
||||
|
||||
func (m *Query) XXX_Unmarshal(b []byte) error {
|
||||
@@ -427,7 +514,7 @@ func (m *Records) Reset() { *m = Records{} }
|
||||
func (m *Records) String() string { return proto.CompactTextString(m) }
|
||||
func (*Records) ProtoMessage() {}
|
||||
func (*Records) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_e3c84319968a576b, []int{6}
|
||||
return fileDescriptor_e3c84319968a576b, []int{7}
|
||||
}
|
||||
|
||||
func (m *Records) XXX_Unmarshal(b []byte) error {
|
||||
@@ -460,6 +547,7 @@ func init() {
|
||||
proto.RegisterType((*Payload)(nil), "settings.Payload")
|
||||
proto.RegisterType((*Account)(nil), "settings.Account")
|
||||
proto.RegisterType((*StandardClaims)(nil), "settings.StandardClaims")
|
||||
proto.RegisterType((*Address)(nil), "settings.Address")
|
||||
proto.RegisterType((*Phoenix)(nil), "settings.Phoenix")
|
||||
proto.RegisterType((*Query)(nil), "settings.Query")
|
||||
proto.RegisterType((*Records)(nil), "settings.Records")
|
||||
@@ -468,44 +556,49 @@ func init() {
|
||||
func init() { proto.RegisterFile("pkg/proto/v0/accounts.proto", fileDescriptor_e3c84319968a576b) }
|
||||
|
||||
var fileDescriptor_e3c84319968a576b = []byte{
|
||||
// 611 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x94, 0xed, 0x6e, 0x12, 0x4f,
|
||||
0x14, 0xc6, 0xb3, 0x7f, 0x5e, 0x16, 0x0e, 0x2d, 0x94, 0xe9, 0xdf, 0x66, 0xa4, 0x36, 0xc5, 0x4d,
|
||||
0x4c, 0x50, 0x23, 0x28, 0xc6, 0x0b, 0xa8, 0xc6, 0xf4, 0x4b, 0xd3, 0xe8, 0x12, 0xfd, 0xe0, 0x17,
|
||||
0xb2, 0xec, 0x1e, 0x60, 0xd2, 0x7d, 0xcb, 0xcc, 0x2c, 0x8a, 0x77, 0xe2, 0x45, 0x79, 0x4f, 0x66,
|
||||
0xcf, 0xcc, 0x42, 0x2b, 0x7e, 0x62, 0x9e, 0xe7, 0xf9, 0x9d, 0xd9, 0xc3, 0xc9, 0xcc, 0xc0, 0x79,
|
||||
0x7e, 0xb7, 0x9a, 0xe4, 0x32, 0xd3, 0xd9, 0x64, 0xf3, 0x7a, 0x12, 0x84, 0x61, 0x56, 0xa4, 0x5a,
|
||||
0x8d, 0xc9, 0x61, 0x2d, 0x85, 0x5a, 0x8b, 0x74, 0xa5, 0x06, 0xe7, 0xab, 0x2c, 0x5b, 0xc5, 0x68,
|
||||
0xc8, 0x45, 0xb1, 0x9c, 0x60, 0x92, 0xeb, 0xad, 0xc1, 0xbc, 0x6b, 0x68, 0xfa, 0x18, 0x66, 0x32,
|
||||
0x62, 0x27, 0x50, 0xbb, 0xc3, 0x2d, 0x77, 0x86, 0xce, 0xa8, 0xed, 0x97, 0x4b, 0xf6, 0x12, 0xdc,
|
||||
0x3c, 0xd8, 0xc6, 0x59, 0x10, 0xf1, 0xff, 0x86, 0xce, 0xa8, 0x33, 0xed, 0x8f, 0xab, 0x4d, 0xc7,
|
||||
0x9f, 0x4c, 0xe0, 0x57, 0x84, 0x17, 0x82, 0x6b, 0x3d, 0xaa, 0x5b, 0x67, 0x98, 0x8a, 0x1f, 0xb4,
|
||||
0xdb, 0xc3, 0x3a, 0x13, 0xf8, 0x15, 0x51, 0xc2, 0xb6, 0xf3, 0xc3, 0x8f, 0x5c, 0x99, 0xc0, 0xaf,
|
||||
0x08, 0xef, 0x06, 0x5c, 0xeb, 0xb1, 0x2b, 0xe8, 0x29, 0x1d, 0xa4, 0x51, 0x20, 0xa3, 0x79, 0x18,
|
||||
0x07, 0x22, 0x51, 0xf6, 0x63, 0x7c, 0x5f, 0x3f, 0xb3, 0xc0, 0x07, 0xca, 0xfd, 0xae, 0x7a, 0xa0,
|
||||
0xbd, 0xdf, 0x75, 0xe8, 0x3e, 0x44, 0xca, 0x21, 0xa8, 0x62, 0x51, 0x0d, 0x41, 0x15, 0x0b, 0xc6,
|
||||
0xa0, 0x9e, 0x06, 0x09, 0x52, 0x73, 0x6d, 0x9f, 0xd6, 0xec, 0x02, 0x60, 0x25, 0x36, 0x98, 0xce,
|
||||
0x29, 0xa9, 0x51, 0xd2, 0x26, 0xe7, 0xb6, 0x8c, 0x2f, 0xa1, 0xb3, 0x0c, 0x12, 0x11, 0x6f, 0x4d,
|
||||
0x5e, 0xa7, 0x1c, 0x8c, 0x55, 0x01, 0x89, 0x88, 0xa2, 0x18, 0x0d, 0xd0, 0x30, 0x80, 0xb1, 0x08,
|
||||
0x18, 0x40, 0x2b, 0x15, 0xe1, 0x1d, 0xa5, 0x4d, 0x4a, 0x77, 0x9a, 0xbd, 0x02, 0x96, 0x4b, 0x5c,
|
||||
0xa2, 0x94, 0x18, 0xcd, 0x0b, 0x85, 0x92, 0x28, 0x97, 0xa8, 0xfe, 0x2e, 0xf9, 0x62, 0x03, 0xc6,
|
||||
0xc1, 0xcd, 0x65, 0xb6, 0x14, 0x31, 0xf2, 0x16, 0x31, 0x95, 0xa4, 0x44, 0x84, 0xba, 0x90, 0xc8,
|
||||
0xdb, 0x36, 0x31, 0xb2, 0x4c, 0xbe, 0xe3, 0x42, 0x09, 0x8d, 0x1c, 0x4c, 0x62, 0x25, 0xfb, 0x1f,
|
||||
0x1a, 0x98, 0x04, 0x22, 0xe6, 0x1d, 0xf2, 0x8d, 0x60, 0xcf, 0xa0, 0x4b, 0x8b, 0xf9, 0x06, 0xa5,
|
||||
0x58, 0x0a, 0x8c, 0xf8, 0xd1, 0xd0, 0x19, 0xb5, 0xfc, 0x63, 0x72, 0xbf, 0x5a, 0x93, 0x9d, 0x41,
|
||||
0x73, 0x85, 0x69, 0x84, 0x92, 0x1f, 0x53, 0xb5, 0x55, 0xec, 0x09, 0xb4, 0x17, 0x42, 0xea, 0x75,
|
||||
0x14, 0x68, 0xe4, 0x5d, 0x33, 0xcd, 0x9d, 0x51, 0xce, 0xe2, 0x67, 0x96, 0xa2, 0x48, 0x97, 0x19,
|
||||
0xef, 0x99, 0x59, 0x54, 0xba, 0xdc, 0x31, 0xce, 0xc2, 0x20, 0x46, 0x7e, 0x62, 0x76, 0x34, 0x8a,
|
||||
0x3d, 0x85, 0xa3, 0x7c, 0x9d, 0xa5, 0x38, 0x4f, 0x8b, 0x64, 0x81, 0x92, 0xf7, 0x29, 0xed, 0x90,
|
||||
0x77, 0x4b, 0x16, 0x9b, 0xc2, 0xa3, 0xfb, 0xc8, 0xbe, 0x75, 0x46, 0xad, 0x9f, 0xde, 0x63, 0x77,
|
||||
0x7f, 0xe0, 0x02, 0xa0, 0xc8, 0xcb, 0xa6, 0xa2, 0x79, 0xa0, 0xf9, 0xe9, 0xd0, 0x19, 0x35, 0xfc,
|
||||
0xb6, 0x75, 0xae, 0xb4, 0x77, 0x09, 0xae, 0x3d, 0xde, 0xe5, 0x9c, 0xf4, 0x1a, 0x13, 0xb4, 0x27,
|
||||
0xc9, 0x08, 0xef, 0x31, 0x34, 0x3e, 0x17, 0x28, 0xb7, 0x87, 0x77, 0xcd, 0x7b, 0x07, 0xae, 0xb9,
|
||||
0x87, 0x8a, 0xbd, 0x00, 0x57, 0x9a, 0x25, 0x77, 0x86, 0xb5, 0x51, 0x67, 0x7a, 0xb2, 0x3f, 0xd1,
|
||||
0x86, 0xf1, 0x2b, 0x60, 0xfa, 0xcb, 0x81, 0xde, 0xcc, 0x86, 0x33, 0x94, 0x1b, 0x11, 0x22, 0x7b,
|
||||
0x0e, 0xb5, 0x19, 0x6a, 0x76, 0x50, 0x35, 0x38, 0x70, 0xd8, 0x08, 0x6a, 0xd7, 0xa8, 0x59, 0x6f,
|
||||
0x1f, 0x50, 0x7f, 0xff, 0x20, 0xdf, 0x40, 0xfd, 0x46, 0x28, 0xcd, 0xce, 0xc6, 0xe6, 0x35, 0x19,
|
||||
0x57, 0xaf, 0xc9, 0xf8, 0x63, 0xf9, 0x9a, 0x0c, 0xfa, 0x7f, 0x57, 0xa8, 0xf7, 0xee, 0xb7, 0x86,
|
||||
0x81, 0x9a, 0xf4, 0xf3, 0xf6, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x77, 0xd8, 0xdb, 0xb0,
|
||||
0x04, 0x00, 0x00,
|
||||
// 704 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x54, 0xdd, 0x6e, 0xdb, 0x36,
|
||||
0x14, 0x86, 0xe6, 0x1f, 0xd9, 0xc7, 0x89, 0x1d, 0x33, 0x59, 0xc0, 0x39, 0x0b, 0xe2, 0x09, 0x18,
|
||||
0xe0, 0x6d, 0x98, 0xbd, 0x79, 0xd8, 0x03, 0x64, 0xc1, 0x90, 0x9b, 0x20, 0x68, 0x65, 0xb4, 0x17,
|
||||
0xbd, 0x11, 0x64, 0xf1, 0xd8, 0x26, 0x22, 0x89, 0x02, 0x49, 0xb9, 0x75, 0xdf, 0xa4, 0x0f, 0xd3,
|
||||
0x17, 0xeb, 0x55, 0x21, 0x92, 0xb2, 0x93, 0xba, 0x57, 0xe2, 0xf7, 0x73, 0x8e, 0x8e, 0x0e, 0x3e,
|
||||
0x11, 0xae, 0x8a, 0xa7, 0xf5, 0xac, 0x90, 0x42, 0x8b, 0xd9, 0xf6, 0xaf, 0x59, 0x9c, 0x24, 0xa2,
|
||||
0xcc, 0xb5, 0x9a, 0x1a, 0x86, 0x74, 0x14, 0x6a, 0xcd, 0xf3, 0xb5, 0x1a, 0x5d, 0xad, 0x85, 0x58,
|
||||
0xa7, 0x68, 0x9d, 0xcb, 0x72, 0x35, 0xc3, 0xac, 0xd0, 0x3b, 0x6b, 0x0b, 0xee, 0xa1, 0x1d, 0x62,
|
||||
0x22, 0x24, 0x23, 0x67, 0xd0, 0x78, 0xc2, 0x1d, 0xf5, 0xc6, 0xde, 0xa4, 0x1b, 0x56, 0x47, 0xf2,
|
||||
0x07, 0xf8, 0x45, 0xbc, 0x4b, 0x45, 0xcc, 0xe8, 0x0f, 0x63, 0x6f, 0xd2, 0x9b, 0x0f, 0xa7, 0x75,
|
||||
0xd3, 0xe9, 0x2b, 0x2b, 0x84, 0xb5, 0x23, 0x48, 0xc0, 0x77, 0x9c, 0xa9, 0xdb, 0x08, 0xcc, 0xf9,
|
||||
0x07, 0xd3, 0xed, 0x65, 0x9d, 0x15, 0xc2, 0xda, 0x51, 0x99, 0xdd, 0xe4, 0xc7, 0x2f, 0xb9, 0xb5,
|
||||
0x42, 0x58, 0x3b, 0x82, 0x07, 0xf0, 0x1d, 0x47, 0x6e, 0x61, 0xa0, 0x74, 0x9c, 0xb3, 0x58, 0xb2,
|
||||
0x28, 0x49, 0x63, 0x9e, 0x29, 0xf7, 0x32, 0x7a, 0xa8, 0x5f, 0x38, 0xc3, 0x9d, 0xd1, 0xc3, 0xbe,
|
||||
0x7a, 0x81, 0x83, 0x2f, 0x4d, 0xe8, 0xbf, 0xb4, 0x54, 0x4b, 0x50, 0xe5, 0xb2, 0x5e, 0x82, 0x2a,
|
||||
0x97, 0x84, 0x40, 0x33, 0x8f, 0x33, 0x34, 0xc3, 0x75, 0x43, 0x73, 0x26, 0xd7, 0x00, 0x6b, 0xbe,
|
||||
0xc5, 0x3c, 0x32, 0x4a, 0xc3, 0x28, 0x5d, 0xc3, 0x3c, 0x56, 0xf2, 0x0d, 0xf4, 0x56, 0x71, 0xc6,
|
||||
0xd3, 0x9d, 0xd5, 0x9b, 0x46, 0x07, 0x4b, 0xd5, 0x86, 0x8c, 0x33, 0x96, 0xa2, 0x35, 0xb4, 0xac,
|
||||
0xc1, 0x52, 0xc6, 0x30, 0x82, 0x4e, 0xce, 0x93, 0x27, 0xa3, 0xb6, 0x8d, 0xba, 0xc7, 0xe4, 0x4f,
|
||||
0x20, 0x85, 0xc4, 0x15, 0x4a, 0x89, 0x2c, 0x2a, 0x15, 0x4a, 0xe3, 0xf2, 0x8d, 0x6b, 0xb8, 0x57,
|
||||
0xde, 0x38, 0x81, 0x50, 0xf0, 0x0b, 0x29, 0x56, 0x3c, 0x45, 0xda, 0x31, 0x9e, 0x1a, 0x1a, 0x85,
|
||||
0x27, 0xba, 0x94, 0x48, 0xbb, 0x4e, 0xb1, 0xb0, 0x52, 0xde, 0xe3, 0x52, 0x71, 0x8d, 0x14, 0xac,
|
||||
0xe2, 0x20, 0xb9, 0x80, 0x16, 0x66, 0x31, 0x4f, 0x69, 0xcf, 0xf0, 0x16, 0x90, 0x5f, 0xa1, 0x6f,
|
||||
0x0e, 0xd1, 0x16, 0x25, 0x5f, 0x71, 0x64, 0xf4, 0x64, 0xec, 0x4d, 0x3a, 0xe1, 0xa9, 0x61, 0xdf,
|
||||
0x3a, 0x92, 0x5c, 0x42, 0x7b, 0x8d, 0x39, 0x43, 0x49, 0x4f, 0x4d, 0xb5, 0x43, 0xe4, 0x67, 0xe8,
|
||||
0x2e, 0xb9, 0xd4, 0x1b, 0x16, 0x6b, 0xa4, 0x7d, 0xbb, 0xcd, 0x3d, 0x51, 0xed, 0xe2, 0xa3, 0xc8,
|
||||
0x91, 0xe7, 0x2b, 0x41, 0x07, 0x76, 0x17, 0x35, 0xae, 0x3a, 0xa6, 0x22, 0x89, 0x53, 0xa4, 0x67,
|
||||
0xb6, 0xa3, 0x45, 0xe4, 0x17, 0x38, 0x29, 0x36, 0x22, 0xc7, 0x28, 0x2f, 0xb3, 0x25, 0x4a, 0x3a,
|
||||
0x34, 0x6a, 0xcf, 0x70, 0x8f, 0x86, 0x22, 0x73, 0xf8, 0xf1, 0xb9, 0xe5, 0x30, 0x3a, 0x31, 0xa3,
|
||||
0x9f, 0x3f, 0xf3, 0xee, 0x3f, 0xe0, 0x1a, 0xa0, 0x2c, 0xaa, 0xa1, 0x58, 0x14, 0x6b, 0x7a, 0x3e,
|
||||
0xf6, 0x26, 0xad, 0xb0, 0xeb, 0x98, 0x5b, 0x6d, 0xa2, 0xcc, 0x98, 0x44, 0xa5, 0xe8, 0xc5, 0x51,
|
||||
0x94, 0xad, 0x10, 0xd6, 0x8e, 0xe0, 0xb3, 0x07, 0xbe, 0x23, 0xab, 0x05, 0xac, 0x84, 0xcc, 0x62,
|
||||
0xad, 0x91, 0xb9, 0xec, 0x1d, 0x88, 0x6a, 0xbb, 0x4a, 0x4b, 0x44, 0x1d, 0xd5, 0xdd, 0x6d, 0x16,
|
||||
0x4f, 0x2d, 0x5b, 0x37, 0x19, 0x41, 0xc7, 0x7c, 0x3d, 0xd7, 0x3b, 0x17, 0xc9, 0x3d, 0xae, 0xf6,
|
||||
0x24, 0x71, 0xcd, 0x45, 0xee, 0xc2, 0xe8, 0x50, 0x15, 0xc4, 0x42, 0x28, 0x1d, 0xa7, 0x51, 0x22,
|
||||
0xd8, 0x3e, 0x88, 0x96, 0xba, 0x13, 0xcc, 0x24, 0xc1, 0xfc, 0x6e, 0x72, 0xe7, 0x72, 0x58, 0xc3,
|
||||
0xe0, 0x06, 0x7c, 0xf7, 0x2f, 0x57, 0xa1, 0xd0, 0x1b, 0xcc, 0xd0, 0x8d, 0x6e, 0x41, 0xf0, 0x13,
|
||||
0xb4, 0x5e, 0x97, 0x28, 0x77, 0xc7, 0x17, 0x4b, 0xf0, 0x2f, 0xf8, 0xf6, 0xd2, 0x51, 0xe4, 0x77,
|
||||
0xf0, 0xa5, 0x3d, 0x52, 0x6f, 0xdc, 0x98, 0xf4, 0xe6, 0x67, 0x87, 0x9d, 0x59, 0x4f, 0x58, 0x1b,
|
||||
0xe6, 0x9f, 0x3c, 0x18, 0x2c, 0x9c, 0xb8, 0x40, 0xb9, 0xe5, 0x09, 0x92, 0xdf, 0xa0, 0xb1, 0x40,
|
||||
0x4d, 0x8e, 0xaa, 0x46, 0x47, 0x0c, 0x99, 0x40, 0xe3, 0x1e, 0x35, 0x19, 0x1c, 0x04, 0x33, 0xdf,
|
||||
0x77, 0x9c, 0x7f, 0x43, 0xf3, 0x81, 0x2b, 0x4d, 0x2e, 0xa7, 0xf6, 0xea, 0x9c, 0xd6, 0x57, 0xe7,
|
||||
0xf4, 0xff, 0xea, 0xea, 0x1c, 0x0d, 0xbf, 0xad, 0x50, 0xff, 0xf9, 0xef, 0x5a, 0xd6, 0xd4, 0x36,
|
||||
0x8f, 0x7f, 0xbe, 0x06, 0x00, 0x00, 0xff, 0xff, 0xf3, 0x1c, 0x02, 0x9f, 0x9d, 0x05, 0x00, 0x00,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user