Commit 91bfb7cd authored by Chunchi Che's avatar Chunchi Che

sync neos-protobuf

parent de3ce728
...@@ -20,6 +20,70 @@ const ( ...@@ -20,6 +20,70 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
) )
type StocTypeChange_SelfType int32
const (
StocTypeChange_UNKNOWN StocTypeChange_SelfType = 0
StocTypeChange_PLAYER1 StocTypeChange_SelfType = 1
StocTypeChange_PLAYER2 StocTypeChange_SelfType = 2
StocTypeChange_PLAYER3 StocTypeChange_SelfType = 3
StocTypeChange_PLAYER4 StocTypeChange_SelfType = 4
StocTypeChange_PLAYER5 StocTypeChange_SelfType = 5
StocTypeChange_PLAYER6 StocTypeChange_SelfType = 6
StocTypeChange_OBSERVER StocTypeChange_SelfType = 100
)
// Enum value maps for StocTypeChange_SelfType.
var (
StocTypeChange_SelfType_name = map[int32]string{
0: "UNKNOWN",
1: "PLAYER1",
2: "PLAYER2",
3: "PLAYER3",
4: "PLAYER4",
5: "PLAYER5",
6: "PLAYER6",
100: "OBSERVER",
}
StocTypeChange_SelfType_value = map[string]int32{
"UNKNOWN": 0,
"PLAYER1": 1,
"PLAYER2": 2,
"PLAYER3": 3,
"PLAYER4": 4,
"PLAYER5": 5,
"PLAYER6": 6,
"OBSERVER": 100,
}
)
func (x StocTypeChange_SelfType) Enum() *StocTypeChange_SelfType {
p := new(StocTypeChange_SelfType)
*p = x
return p
}
func (x StocTypeChange_SelfType) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (StocTypeChange_SelfType) Descriptor() protoreflect.EnumDescriptor {
return file_ocgcore_proto_enumTypes[0].Descriptor()
}
func (StocTypeChange_SelfType) Type() protoreflect.EnumType {
return &file_ocgcore_proto_enumTypes[0]
}
func (x StocTypeChange_SelfType) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use StocTypeChange_SelfType.Descriptor instead.
func (StocTypeChange_SelfType) EnumDescriptor() ([]byte, []int) {
return file_ocgcore_proto_rawDescGZIP(), []int{10, 0}
}
type StocHsPlayerChange_State int32 type StocHsPlayerChange_State int32
const ( const (
...@@ -62,11 +126,11 @@ func (x StocHsPlayerChange_State) String() string { ...@@ -62,11 +126,11 @@ func (x StocHsPlayerChange_State) String() string {
} }
func (StocHsPlayerChange_State) Descriptor() protoreflect.EnumDescriptor { func (StocHsPlayerChange_State) Descriptor() protoreflect.EnumDescriptor {
return file_ocgcore_proto_enumTypes[0].Descriptor() return file_ocgcore_proto_enumTypes[1].Descriptor()
} }
func (StocHsPlayerChange_State) Type() protoreflect.EnumType { func (StocHsPlayerChange_State) Type() protoreflect.EnumType {
return &file_ocgcore_proto_enumTypes[0] return &file_ocgcore_proto_enumTypes[1]
} }
func (x StocHsPlayerChange_State) Number() protoreflect.EnumNumber { func (x StocHsPlayerChange_State) Number() protoreflect.EnumNumber {
...@@ -819,7 +883,8 @@ type StocTypeChange struct { ...@@ -819,7 +883,8 @@ type StocTypeChange struct {
sizeCache protoimpl.SizeCache sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields unknownFields protoimpl.UnknownFields
Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"` SelfType StocTypeChange_SelfType `protobuf:"varint,1,opt,name=self_type,json=selfType,proto3,enum=ygopro.StocTypeChange_SelfType" json:"self_type,omitempty"`
IsHost bool `protobuf:"varint,2,opt,name=is_host,json=isHost,proto3" json:"is_host,omitempty"`
} }
func (x *StocTypeChange) Reset() { func (x *StocTypeChange) Reset() {
...@@ -854,11 +919,18 @@ func (*StocTypeChange) Descriptor() ([]byte, []int) { ...@@ -854,11 +919,18 @@ func (*StocTypeChange) Descriptor() ([]byte, []int) {
return file_ocgcore_proto_rawDescGZIP(), []int{10} return file_ocgcore_proto_rawDescGZIP(), []int{10}
} }
func (x *StocTypeChange) GetType() int32 { func (x *StocTypeChange) GetSelfType() StocTypeChange_SelfType {
if x != nil { if x != nil {
return x.Type return x.SelfType
} }
return 0 return StocTypeChange_UNKNOWN
}
func (x *StocTypeChange) GetIsHost() bool {
if x != nil {
return x.IsHost
}
return false
} }
type StocHsPlayerChange struct { type StocHsPlayerChange struct {
...@@ -1065,27 +1137,38 @@ var file_ocgcore_proto_rawDesc = []byte{ ...@@ -1065,27 +1137,38 @@ var file_ocgcore_proto_rawDesc = []byte{
0x6c, 0x61, 0x79, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10,
0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x70, 0x6f, 0x73,
0x22, 0x24, 0x0a, 0x0e, 0x53, 0x74, 0x6f, 0x63, 0x54, 0x79, 0x70, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x22, 0xdc, 0x01, 0x0a, 0x0e, 0x53, 0x74, 0x6f, 0x63, 0x54, 0x79, 0x70, 0x65, 0x43, 0x68, 0x61,
0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x6e, 0x67, 0x65, 0x12, 0x3c, 0x0a, 0x09, 0x73, 0x65, 0x6c, 0x66, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0xd0, 0x01, 0x0a, 0x12, 0x53, 0x74, 0x6f, 0x63, 0x48, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x79, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x2e,
0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x36, 0x0a, 0x53, 0x74, 0x6f, 0x63, 0x54, 0x79, 0x70, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x53,
0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x79, 0x65, 0x6c, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x08, 0x73, 0x65, 0x6c, 0x66, 0x54, 0x79, 0x70,
0x67, 0x6f, 0x70, 0x72, 0x6f, 0x2e, 0x53, 0x74, 0x6f, 0x63, 0x48, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01,
0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x48, 0x6f, 0x73, 0x74, 0x22, 0x73, 0x0a, 0x08, 0x53, 0x65,
0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x6c, 0x66, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57,
0x28, 0x05, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x4e, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x31, 0x10, 0x01,
0x5f, 0x70, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x32, 0x10, 0x02, 0x12, 0x0b, 0x0a,
0x64, 0x50, 0x6f, 0x73, 0x22, 0x53, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x33, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x4c,
0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x4d, 0x4f, 0x41, 0x59, 0x45, 0x52, 0x34, 0x10, 0x04, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x4c, 0x41, 0x59, 0x45,
0x56, 0x45, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x45, 0x41, 0x44, 0x59, 0x10, 0x02, 0x12, 0x52, 0x35, 0x10, 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x36, 0x10,
0x0c, 0x0a, 0x08, 0x4e, 0x4f, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x59, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x06, 0x12, 0x0c, 0x0a, 0x08, 0x4f, 0x42, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x10, 0x64, 0x22,
0x05, 0x4c, 0x45, 0x41, 0x56, 0x45, 0x10, 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x4f, 0x5f, 0x4f, 0xd0, 0x01, 0x0a, 0x12, 0x53, 0x74, 0x6f, 0x63, 0x48, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72,
0x42, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x10, 0x05, 0x22, 0x29, 0x0a, 0x11, 0x53, 0x74, 0x6f, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x36, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18,
0x63, 0x48, 0x73, 0x57, 0x61, 0x74, 0x63, 0x68, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x14, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x79, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x2e, 0x53,
0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x74, 0x6f, 0x63, 0x48, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67,
0x6f, 0x75, 0x6e, 0x74, 0x42, 0x13, 0x5a, 0x11, 0x44, 0x61, 0x72, 0x6b, 0x4e, 0x65, 0x6f, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x10,
0x2f, 0x79, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x70, 0x6f, 0x73,
0x33, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x5f, 0x70, 0x6f, 0x73, 0x18, 0x03, 0x20,
0x01, 0x28, 0x05, 0x52, 0x08, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x50, 0x6f, 0x73, 0x22, 0x53, 0x0a,
0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57,
0x4e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x4d, 0x4f, 0x56, 0x45, 0x10, 0x01, 0x12, 0x09, 0x0a,
0x05, 0x52, 0x45, 0x41, 0x44, 0x59, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x4e, 0x4f, 0x5f, 0x52,
0x45, 0x41, 0x44, 0x59, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x4c, 0x45, 0x41, 0x56, 0x45, 0x10,
0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x4f, 0x5f, 0x4f, 0x42, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52,
0x10, 0x05, 0x22, 0x29, 0x0a, 0x11, 0x53, 0x74, 0x6f, 0x63, 0x48, 0x73, 0x57, 0x61, 0x74, 0x63,
0x68, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x13, 0x5a,
0x11, 0x44, 0x61, 0x72, 0x6b, 0x4e, 0x65, 0x6f, 0x73, 0x2f, 0x79, 0x67, 0x6f, 0x70, 0x72, 0x6f,
0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
} }
var ( var (
...@@ -1100,42 +1183,44 @@ func file_ocgcore_proto_rawDescGZIP() []byte { ...@@ -1100,42 +1183,44 @@ func file_ocgcore_proto_rawDescGZIP() []byte {
return file_ocgcore_proto_rawDescData return file_ocgcore_proto_rawDescData
} }
var file_ocgcore_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_ocgcore_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
var file_ocgcore_proto_msgTypes = make([]protoimpl.MessageInfo, 13) var file_ocgcore_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
var file_ocgcore_proto_goTypes = []interface{}{ var file_ocgcore_proto_goTypes = []interface{}{
(StocHsPlayerChange_State)(0), // 0: ygopro.StocHsPlayerChange.State (StocTypeChange_SelfType)(0), // 0: ygopro.StocTypeChange.SelfType
(*YgoCtosMsg)(nil), // 1: ygopro.YgoCtosMsg (StocHsPlayerChange_State)(0), // 1: ygopro.StocHsPlayerChange.State
(*YgoStocMsg)(nil), // 2: ygopro.YgoStocMsg (*YgoCtosMsg)(nil), // 2: ygopro.YgoCtosMsg
(*CtosPlayerInfo)(nil), // 3: ygopro.CtosPlayerInfo (*YgoStocMsg)(nil), // 3: ygopro.YgoStocMsg
(*CtosJoinGame)(nil), // 4: ygopro.CtosJoinGame (*CtosPlayerInfo)(nil), // 4: ygopro.CtosPlayerInfo
(*CtosUpdateDeck)(nil), // 5: ygopro.CtosUpdateDeck (*CtosJoinGame)(nil), // 5: ygopro.CtosJoinGame
(*CtosHsReady)(nil), // 6: ygopro.CtosHsReady (*CtosUpdateDeck)(nil), // 6: ygopro.CtosUpdateDeck
(*CtosHsStart)(nil), // 7: ygopro.CtosHsStart (*CtosHsReady)(nil), // 7: ygopro.CtosHsReady
(*StocJoinGame)(nil), // 8: ygopro.StocJoinGame (*CtosHsStart)(nil), // 8: ygopro.CtosHsStart
(*StocChat)(nil), // 9: ygopro.StocChat (*StocJoinGame)(nil), // 9: ygopro.StocJoinGame
(*StocHsPlayerEnter)(nil), // 10: ygopro.StocHsPlayerEnter (*StocChat)(nil), // 10: ygopro.StocChat
(*StocTypeChange)(nil), // 11: ygopro.StocTypeChange (*StocHsPlayerEnter)(nil), // 11: ygopro.StocHsPlayerEnter
(*StocHsPlayerChange)(nil), // 12: ygopro.StocHsPlayerChange (*StocTypeChange)(nil), // 12: ygopro.StocTypeChange
(*StocHsWatchChange)(nil), // 13: ygopro.StocHsWatchChange (*StocHsPlayerChange)(nil), // 13: ygopro.StocHsPlayerChange
(*StocHsWatchChange)(nil), // 14: ygopro.StocHsWatchChange
} }
var file_ocgcore_proto_depIdxs = []int32{ var file_ocgcore_proto_depIdxs = []int32{
3, // 0: ygopro.YgoCtosMsg.ctos_player_info:type_name -> ygopro.CtosPlayerInfo 4, // 0: ygopro.YgoCtosMsg.ctos_player_info:type_name -> ygopro.CtosPlayerInfo
4, // 1: ygopro.YgoCtosMsg.ctos_join_game:type_name -> ygopro.CtosJoinGame 5, // 1: ygopro.YgoCtosMsg.ctos_join_game:type_name -> ygopro.CtosJoinGame
5, // 2: ygopro.YgoCtosMsg.ctos_update_deck:type_name -> ygopro.CtosUpdateDeck 6, // 2: ygopro.YgoCtosMsg.ctos_update_deck:type_name -> ygopro.CtosUpdateDeck
6, // 3: ygopro.YgoCtosMsg.ctos_hs_ready:type_name -> ygopro.CtosHsReady 7, // 3: ygopro.YgoCtosMsg.ctos_hs_ready:type_name -> ygopro.CtosHsReady
7, // 4: ygopro.YgoCtosMsg.ctos_hs_start:type_name -> ygopro.CtosHsStart 8, // 4: ygopro.YgoCtosMsg.ctos_hs_start:type_name -> ygopro.CtosHsStart
8, // 5: ygopro.YgoStocMsg.stoc_join_game:type_name -> ygopro.StocJoinGame 9, // 5: ygopro.YgoStocMsg.stoc_join_game:type_name -> ygopro.StocJoinGame
9, // 6: ygopro.YgoStocMsg.stoc_chat:type_name -> ygopro.StocChat 10, // 6: ygopro.YgoStocMsg.stoc_chat:type_name -> ygopro.StocChat
10, // 7: ygopro.YgoStocMsg.stoc_hs_player_enter:type_name -> ygopro.StocHsPlayerEnter 11, // 7: ygopro.YgoStocMsg.stoc_hs_player_enter:type_name -> ygopro.StocHsPlayerEnter
11, // 8: ygopro.YgoStocMsg.stoc_type_change:type_name -> ygopro.StocTypeChange 12, // 8: ygopro.YgoStocMsg.stoc_type_change:type_name -> ygopro.StocTypeChange
12, // 9: ygopro.YgoStocMsg.stoc_hs_player_change:type_name -> ygopro.StocHsPlayerChange 13, // 9: ygopro.YgoStocMsg.stoc_hs_player_change:type_name -> ygopro.StocHsPlayerChange
13, // 10: ygopro.YgoStocMsg.stoc_hs_watch_change:type_name -> ygopro.StocHsWatchChange 14, // 10: ygopro.YgoStocMsg.stoc_hs_watch_change:type_name -> ygopro.StocHsWatchChange
0, // 11: ygopro.StocHsPlayerChange.state:type_name -> ygopro.StocHsPlayerChange.State 0, // 11: ygopro.StocTypeChange.self_type:type_name -> ygopro.StocTypeChange.SelfType
12, // [12:12] is the sub-list for method output_type 1, // 12: ygopro.StocHsPlayerChange.state:type_name -> ygopro.StocHsPlayerChange.State
12, // [12:12] is the sub-list for method input_type 13, // [13:13] is the sub-list for method output_type
12, // [12:12] is the sub-list for extension type_name 13, // [13:13] is the sub-list for method input_type
12, // [12:12] is the sub-list for extension extendee 13, // [13:13] is the sub-list for extension type_name
0, // [0:12] is the sub-list for field type_name 13, // [13:13] is the sub-list for extension extendee
0, // [0:13] is the sub-list for field type_name
} }
func init() { file_ocgcore_proto_init() } func init() { file_ocgcore_proto_init() }
...@@ -1321,7 +1406,7 @@ func file_ocgcore_proto_init() { ...@@ -1321,7 +1406,7 @@ func file_ocgcore_proto_init() {
File: protoimpl.DescBuilder{ File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(), GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_ocgcore_proto_rawDesc, RawDescriptor: file_ocgcore_proto_rawDesc,
NumEnums: 1, NumEnums: 2,
NumMessages: 13, NumMessages: 13,
NumExtensions: 0, NumExtensions: 0,
NumServices: 0, NumServices: 0,
......
Subproject commit 1484721f97b2353631d11f869c8371a46a7def9d Subproject commit ed6ff3b15aaa74e35feb40d33aa518b52a275402
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment