From 0ac833042fd3f22455a50f0ddd688c8cab53b7db Mon Sep 17 00:00:00 2001 From: cboh4 Date: Mon, 10 Nov 2025 13:30:25 +0200 Subject: [PATCH 1/2] fix --- proto/secret/compute/v1beta1/msg.proto | 13 + x/compute/internal/types/msg.pb.go | 636 +++++++++++++++++++++---- 2 files changed, 544 insertions(+), 105 deletions(-) diff --git a/proto/secret/compute/v1beta1/msg.proto b/proto/secret/compute/v1beta1/msg.proto index 89c36117f..53ff8a66b 100644 --- a/proto/secret/compute/v1beta1/msg.proto +++ b/proto/secret/compute/v1beta1/msg.proto @@ -243,6 +243,19 @@ message MsgContractGovernanceProposal { message MsgContractGovernanceProposalResponse {} +message MsgMigrateContractProposal { + option (gogoproto.goproto_getters) = false; + option (cosmos.msg.v1.signer) = "authority"; + option (amino.name) = "wasm/MsgMigrateContractProposal"; + + string authority = 1; + string title = 2; + string description = 3; + repeated MigrateContractInfo contracts = 4; +} + +message MsgMigrateContractProposalResponse {} + message MsgSetContractGovernance { option (gogoproto.goproto_getters) = false; option (cosmos.msg.v1.signer) = "sender"; diff --git a/x/compute/internal/types/msg.pb.go b/x/compute/internal/types/msg.pb.go index ea2ae2e7c..c8f3f90ac 100644 --- a/x/compute/internal/types/msg.pb.go +++ b/x/compute/internal/types/msg.pb.go @@ -1027,6 +1027,82 @@ func (m *MsgContractGovernanceProposalResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgContractGovernanceProposalResponse proto.InternalMessageInfo +type MsgMigrateContractProposal struct { + Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"` + Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"` + Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` + Contracts []*MigrateContractInfo `protobuf:"bytes,4,rep,name=contracts,proto3" json:"contracts,omitempty"` +} + +func (m *MsgMigrateContractProposal) Reset() { *m = MsgMigrateContractProposal{} } +func (m *MsgMigrateContractProposal) String() string { return proto.CompactTextString(m) } +func (*MsgMigrateContractProposal) ProtoMessage() {} +func (*MsgMigrateContractProposal) Descriptor() ([]byte, []int) { + return fileDescriptor_6815433faf72a133, []int{20} +} +func (m *MsgMigrateContractProposal) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgMigrateContractProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgMigrateContractProposal.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgMigrateContractProposal) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgMigrateContractProposal.Merge(m, src) +} +func (m *MsgMigrateContractProposal) XXX_Size() int { + return m.Size() +} +func (m *MsgMigrateContractProposal) XXX_DiscardUnknown() { + xxx_messageInfo_MsgMigrateContractProposal.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgMigrateContractProposal proto.InternalMessageInfo + +type MsgMigrateContractProposalResponse struct { +} + +func (m *MsgMigrateContractProposalResponse) Reset() { *m = MsgMigrateContractProposalResponse{} } +func (m *MsgMigrateContractProposalResponse) String() string { return proto.CompactTextString(m) } +func (*MsgMigrateContractProposalResponse) ProtoMessage() {} +func (*MsgMigrateContractProposalResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_6815433faf72a133, []int{21} +} +func (m *MsgMigrateContractProposalResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgMigrateContractProposalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgMigrateContractProposalResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgMigrateContractProposalResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgMigrateContractProposalResponse.Merge(m, src) +} +func (m *MsgMigrateContractProposalResponse) XXX_Size() int { + return m.Size() +} +func (m *MsgMigrateContractProposalResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MsgMigrateContractProposalResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgMigrateContractProposalResponse proto.InternalMessageInfo + type MsgSetContractGovernance struct { // Sender (must be contract admin) Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"` @@ -1038,7 +1114,7 @@ func (m *MsgSetContractGovernance) Reset() { *m = MsgSetContractGovernan func (m *MsgSetContractGovernance) String() string { return proto.CompactTextString(m) } func (*MsgSetContractGovernance) ProtoMessage() {} func (*MsgSetContractGovernance) Descriptor() ([]byte, []int) { - return fileDescriptor_6815433faf72a133, []int{20} + return fileDescriptor_6815433faf72a133, []int{22} } func (m *MsgSetContractGovernance) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1074,7 +1150,7 @@ func (m *MsgSetContractGovernanceResponse) Reset() { *m = MsgSetContract func (m *MsgSetContractGovernanceResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetContractGovernanceResponse) ProtoMessage() {} func (*MsgSetContractGovernanceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6815433faf72a133, []int{21} + return fileDescriptor_6815433faf72a133, []int{23} } func (m *MsgSetContractGovernanceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1114,7 +1190,7 @@ func (m *MsgUpdateMachineWhitelistProposal) Reset() { *m = MsgUpdateMach func (m *MsgUpdateMachineWhitelistProposal) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMachineWhitelistProposal) ProtoMessage() {} func (*MsgUpdateMachineWhitelistProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_6815433faf72a133, []int{22} + return fileDescriptor_6815433faf72a133, []int{24} } func (m *MsgUpdateMachineWhitelistProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1154,7 +1230,7 @@ func (m *MsgUpdateMachineWhitelistProposalResponse) String() string { } func (*MsgUpdateMachineWhitelistProposalResponse) ProtoMessage() {} func (*MsgUpdateMachineWhitelistProposalResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6815433faf72a133, []int{23} + return fileDescriptor_6815433faf72a133, []int{25} } func (m *MsgUpdateMachineWhitelistProposalResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1194,7 +1270,7 @@ func (m *MsgUpdateMachineWhitelist) Reset() { *m = MsgUpdateMachineWhite func (m *MsgUpdateMachineWhitelist) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMachineWhitelist) ProtoMessage() {} func (*MsgUpdateMachineWhitelist) Descriptor() ([]byte, []int) { - return fileDescriptor_6815433faf72a133, []int{24} + return fileDescriptor_6815433faf72a133, []int{26} } func (m *MsgUpdateMachineWhitelist) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1230,7 +1306,7 @@ func (m *MsgUpdateMachineWhitelistResponse) Reset() { *m = MsgUpdateMach func (m *MsgUpdateMachineWhitelistResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMachineWhitelistResponse) ProtoMessage() {} func (*MsgUpdateMachineWhitelistResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6815433faf72a133, []int{25} + return fileDescriptor_6815433faf72a133, []int{27} } func (m *MsgUpdateMachineWhitelistResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1280,6 +1356,8 @@ func init() { proto.RegisterType((*UpdateAdminInfo)(nil), "secret.compute.v1beta1.UpdateAdminInfo") proto.RegisterType((*MsgContractGovernanceProposal)(nil), "secret.compute.v1beta1.MsgContractGovernanceProposal") proto.RegisterType((*MsgContractGovernanceProposalResponse)(nil), "secret.compute.v1beta1.MsgContractGovernanceProposalResponse") + proto.RegisterType((*MsgMigrateContractProposal)(nil), "secret.compute.v1beta1.MsgMigrateContractProposal") + proto.RegisterType((*MsgMigrateContractProposalResponse)(nil), "secret.compute.v1beta1.MsgMigrateContractProposalResponse") proto.RegisterType((*MsgSetContractGovernance)(nil), "secret.compute.v1beta1.MsgSetContractGovernance") proto.RegisterType((*MsgSetContractGovernanceResponse)(nil), "secret.compute.v1beta1.MsgSetContractGovernanceResponse") proto.RegisterType((*MsgUpdateMachineWhitelistProposal)(nil), "secret.compute.v1beta1.MsgUpdateMachineWhitelistProposal") @@ -1291,105 +1369,106 @@ func init() { func init() { proto.RegisterFile("secret/compute/v1beta1/msg.proto", fileDescriptor_6815433faf72a133) } var fileDescriptor_6815433faf72a133 = []byte{ - // 1554 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0x4f, 0x6f, 0xdb, 0xc6, - 0x12, 0x37, 0x23, 0x59, 0xb6, 0x46, 0x72, 0xec, 0x30, 0x8e, 0x2d, 0x33, 0x2f, 0x92, 0x1f, 0xfd, - 0x1c, 0x3b, 0x4e, 0x2c, 0xc5, 0x7e, 0x68, 0xd0, 0xa8, 0xcd, 0xc1, 0x76, 0x93, 0x46, 0x40, 0x95, - 0x06, 0x74, 0x8b, 0x00, 0xbd, 0x08, 0x2b, 0x72, 0x43, 0x11, 0x91, 0x48, 0x95, 0x4b, 0xd9, 0xf1, - 0xa1, 0x40, 0xd0, 0x02, 0x45, 0x91, 0x53, 0xd0, 0x63, 0x0b, 0x14, 0x3d, 0x14, 0x68, 0xd1, 0x93, - 0x0f, 0x3d, 0xf5, 0x13, 0xa4, 0xb7, 0x20, 0x97, 0xf6, 0xe4, 0x16, 0x0e, 0x0a, 0x03, 0xfd, 0x08, - 0x3d, 0x15, 0xcb, 0x5d, 0x52, 0x14, 0x43, 0xd2, 0x7f, 0x90, 0xf4, 0x92, 0x68, 0x67, 0xe7, 0xcf, - 0x6f, 0x66, 0x7e, 0xb3, 0xbb, 0x34, 0xcc, 0x12, 0xac, 0xda, 0xd8, 0xa9, 0xa8, 0x56, 0xa7, 0xdb, - 0x73, 0x70, 0x65, 0x6b, 0xa5, 0x89, 0x1d, 0xb4, 0x52, 0xe9, 0x10, 0xbd, 0xdc, 0xb5, 0x2d, 0xc7, - 0x12, 0xa7, 0x98, 0x46, 0x99, 0x6b, 0x94, 0xb9, 0x86, 0x34, 0xa9, 0x5b, 0xba, 0xe5, 0xaa, 0x54, - 0xe8, 0x2f, 0xa6, 0x2d, 0x4d, 0xab, 0x16, 0xe9, 0x58, 0x84, 0xda, 0x57, 0xb6, 0x02, 0x6e, 0xa4, - 0x19, 0xb6, 0xd1, 0x60, 0x16, 0x6c, 0xc1, 0xb7, 0x8a, 0xdc, 0xa6, 0x89, 0x48, 0x1f, 0x80, 0x6a, - 0x19, 0x26, 0xdf, 0x3f, 0x83, 0x3a, 0x86, 0x69, 0x55, 0xdc, 0x7f, 0xb9, 0x68, 0x2e, 0x06, 0x76, - 0x17, 0xd9, 0xa8, 0xc3, 0xfd, 0xca, 0x7f, 0x09, 0x90, 0xaf, 0x13, 0x7d, 0xd3, 0xb1, 0x6c, 0xbc, - 0x61, 0x69, 0x58, 0xac, 0x41, 0x86, 0x60, 0x53, 0xc3, 0x76, 0x41, 0x98, 0x15, 0x16, 0xf3, 0xeb, - 0x2b, 0x7f, 0xef, 0x95, 0x96, 0x75, 0xc3, 0x69, 0xf5, 0x9a, 0x34, 0x3d, 0x8e, 0x8a, 0xff, 0xb7, - 0x4c, 0xb4, 0x07, 0x15, 0x67, 0xa7, 0x8b, 0x49, 0x79, 0x4d, 0x55, 0xd7, 0x34, 0xcd, 0xc6, 0x84, - 0x28, 0xdc, 0x81, 0x78, 0x0d, 0x4e, 0x6f, 0x23, 0xd2, 0x69, 0x34, 0x77, 0x1c, 0xdc, 0x50, 0x2d, - 0x0d, 0x17, 0x4e, 0xb9, 0x2e, 0x27, 0xf6, 0xf7, 0x4a, 0xf9, 0x7b, 0x6b, 0x9b, 0xf5, 0xf5, 0x1d, - 0xc7, 0x0d, 0xaa, 0xe4, 0xa9, 0x9e, 0xb7, 0x12, 0xa7, 0x20, 0x43, 0xac, 0x9e, 0xad, 0xe2, 0x42, - 0x6a, 0x56, 0x58, 0xcc, 0x2a, 0x7c, 0x25, 0x16, 0x60, 0xa4, 0xd9, 0x33, 0xda, 0x14, 0x5b, 0xda, - 0xdd, 0xf0, 0x96, 0xd5, 0xf9, 0x2f, 0xbe, 0x2d, 0x0d, 0x7d, 0x7a, 0xb0, 0xbb, 0xc4, 0x43, 0x3f, - 0x3e, 0xd8, 0x5d, 0x3a, 0x43, 0x7d, 0x56, 0x82, 0xb9, 0xc9, 0x6f, 0xc1, 0x64, 0x70, 0xad, 0x60, - 0xd2, 0xb5, 0x4c, 0x82, 0xc5, 0x39, 0x18, 0xa1, 0xf0, 0x1a, 0x86, 0xe6, 0x26, 0x9d, 0x5e, 0x87, - 0xfd, 0xbd, 0x52, 0x86, 0xaa, 0xd4, 0xde, 0x51, 0x32, 0x74, 0xab, 0xa6, 0xc9, 0x7f, 0xa6, 0x60, - 0xaa, 0x4e, 0xf4, 0x9a, 0x49, 0x1c, 0x64, 0x3a, 0x06, 0xa2, 0x60, 0x4d, 0xc7, 0x46, 0xaa, 0xf3, - 0x2a, 0x6b, 0x76, 0x05, 0x44, 0x15, 0xb5, 0xdb, 0x4d, 0xa4, 0x3e, 0x70, 0x4b, 0xd6, 0x68, 0x21, - 0xd2, 0x72, 0xeb, 0x96, 0x55, 0x26, 0xbc, 0x1d, 0x8a, 0xec, 0x36, 0x22, 0xad, 0x20, 0xf0, 0x54, - 0x1c, 0x70, 0x71, 0x12, 0x86, 0xdb, 0xa8, 0x89, 0xdb, 0xbc, 0x68, 0x6c, 0x21, 0xce, 0xc0, 0xa8, - 0x61, 0x1a, 0x4e, 0xa3, 0x43, 0xf4, 0xc2, 0x30, 0x45, 0xad, 0x8c, 0xd0, 0x75, 0x9d, 0xe8, 0xe2, - 0x23, 0x01, 0xc0, 0xdd, 0xbb, 0xdf, 0x33, 0x35, 0x52, 0xc8, 0xcc, 0xa6, 0x16, 0x73, 0xab, 0x33, - 0x65, 0xce, 0x47, 0xca, 0x40, 0x8f, 0xe0, 0xe5, 0x0d, 0xcb, 0x30, 0xd7, 0x6f, 0x3d, 0xdd, 0x2b, - 0x0d, 0xfd, 0xf8, 0x7b, 0x69, 0xf1, 0x08, 0x29, 0x53, 0x03, 0xf2, 0xd5, 0xc1, 0xee, 0x52, 0xbe, - 0x8d, 0x75, 0xa4, 0xee, 0x34, 0x28, 0x87, 0xc9, 0x0f, 0x07, 0xbb, 0x4b, 0x82, 0x92, 0xa5, 0x41, - 0x6f, 0xd1, 0x98, 0xe2, 0x2a, 0xe4, 0xfd, 0x32, 0x10, 0x43, 0x2f, 0x8c, 0xb8, 0x75, 0x1d, 0xdf, - 0xdf, 0x2b, 0xe5, 0x36, 0xb8, 0x7c, 0xd3, 0xd0, 0x95, 0x9c, 0xda, 0x5f, 0xd0, 0x3c, 0x91, 0xd6, - 0x31, 0xcc, 0xc2, 0x28, 0xcb, 0xd3, 0x5d, 0x54, 0x2b, 0x11, 0xd4, 0x38, 0xef, 0x51, 0x23, 0xa2, - 0x99, 0xf2, 0x1d, 0x28, 0x46, 0xef, 0xf8, 0x74, 0x29, 0xc0, 0x08, 0x62, 0x6d, 0x73, 0xfb, 0x9d, - 0x55, 0xbc, 0xa5, 0x28, 0x42, 0x5a, 0x43, 0x0e, 0x62, 0x3c, 0x57, 0xdc, 0xdf, 0xf2, 0xf3, 0x14, - 0x88, 0x75, 0xa2, 0xdf, 0x7c, 0x88, 0xd5, 0xde, 0xeb, 0xe1, 0x4c, 0x1d, 0x46, 0x55, 0xee, 0x96, - 0x4f, 0xd8, 0x09, 0x9c, 0xf9, 0x2e, 0xc4, 0x09, 0x48, 0x51, 0x52, 0xa4, 0xdc, 0x1c, 0xe8, 0xcf, - 0x18, 0x52, 0xa6, 0x63, 0x48, 0x49, 0xe9, 0x43, 0xb0, 0xe9, 0xd1, 0x67, 0xf8, 0x5f, 0xa3, 0x0f, - 0x0d, 0x1a, 0x4d, 0x9f, 0xcc, 0xe1, 0xf4, 0xa9, 0x5e, 0x8e, 0x20, 0xca, 0xb4, 0x47, 0x94, 0x50, - 0xf7, 0xe4, 0xab, 0x20, 0xbd, 0x2c, 0xf5, 0x09, 0xe2, 0xd1, 0x40, 0x08, 0xd0, 0xe0, 0xf1, 0x29, - 0x97, 0x06, 0x75, 0x43, 0xb7, 0x83, 0x47, 0xc7, 0xd4, 0x00, 0x0d, 0xb2, 0x7e, 0x4f, 0xa5, 0x50, - 0x4f, 0xb3, 0x81, 0x06, 0x1d, 0x69, 0xea, 0x79, 0x17, 0xd3, 0xfd, 0x2e, 0x9e, 0x64, 0xa6, 0xa2, - 0x3b, 0x3f, 0x1a, 0xdd, 0xf9, 0xea, 0x42, 0x5c, 0xf9, 0x42, 0x59, 0xf3, 0xf2, 0x85, 0xa4, 0x89, - 0xe5, 0xfb, 0x59, 0x80, 0xd3, 0x75, 0xa2, 0x7f, 0xd8, 0xd5, 0x90, 0x83, 0xd7, 0xe8, 0x64, 0xc7, - 0x96, 0xee, 0x3c, 0x64, 0x4d, 0xbc, 0xdd, 0x60, 0x67, 0x01, 0xaf, 0x9d, 0x89, 0xb7, 0x99, 0x51, - 0xb0, 0xae, 0xa9, 0x50, 0x5d, 0x4f, 0x50, 0xa0, 0xea, 0x5c, 0x28, 0xe5, 0xb3, 0x5e, 0xca, 0x01, - 0xa4, 0x72, 0xc1, 0xbd, 0x39, 0x02, 0x12, 0x2f, 0x55, 0xf9, 0x6b, 0x01, 0xc6, 0xea, 0x44, 0xdf, - 0x68, 0x63, 0x64, 0x27, 0x67, 0xf5, 0xaa, 0x81, 0xcb, 0x21, 0xe0, 0xa2, 0x07, 0xbc, 0x8f, 0x45, - 0x9e, 0x86, 0x73, 0x03, 0x02, 0x1f, 0xf6, 0xae, 0x00, 0xe3, 0x7e, 0x46, 0x77, 0xdd, 0xf7, 0x84, - 0x78, 0x0d, 0xb2, 0xa8, 0xe7, 0xb4, 0x2c, 0xdb, 0x70, 0x76, 0x18, 0xf6, 0xf5, 0xc2, 0xf3, 0x9f, - 0x96, 0x27, 0xf9, 0xdc, 0xf3, 0x73, 0x66, 0xd3, 0xb1, 0x0d, 0x53, 0x57, 0xfa, 0xaa, 0xe2, 0xdb, - 0x90, 0x61, 0x2f, 0x12, 0xb7, 0x57, 0xb9, 0xd5, 0x62, 0x39, 0xfa, 0x31, 0x55, 0x66, 0x71, 0xd6, - 0xd3, 0xf4, 0xb8, 0x50, 0xb8, 0x0d, 0xa3, 0x5c, 0xdf, 0x1b, 0xcd, 0x64, 0x72, 0xb0, 0x05, 0xcc, - 0x4c, 0x9e, 0x81, 0xe9, 0x90, 0xc8, 0xcf, 0xe6, 0x3b, 0x01, 0x0a, 0xee, 0x9e, 0x6e, 0x23, 0x0d, - 0xdf, 0xb5, 0xad, 0xae, 0x45, 0x50, 0xfb, 0x2e, 0x22, 0x04, 0x6b, 0xe2, 0x3c, 0x9c, 0x66, 0x45, - 0x6a, 0x0c, 0x9e, 0xf9, 0x63, 0x4c, 0xca, 0xd3, 0x12, 0x2f, 0xc2, 0x78, 0xc7, 0x6e, 0x60, 0x53, - 0x6d, 0xa3, 0xad, 0xc0, 0xa5, 0x9d, 0x57, 0xc6, 0x3a, 0xf6, 0x4d, 0x26, 0x75, 0x47, 0xe4, 0xba, - 0x77, 0xca, 0x84, 0xbc, 0x52, 0xe0, 0x17, 0xfa, 0xc0, 0x23, 0x90, 0xc8, 0x32, 0xcc, 0xc6, 0xed, - 0xf9, 0xa9, 0xbc, 0x0f, 0x67, 0x43, 0x53, 0x55, 0x33, 0xef, 0x5b, 0x09, 0x37, 0x56, 0x11, 0x72, - 0x74, 0x58, 0xbc, 0xf3, 0x84, 0x62, 0x4e, 0x2b, 0x74, 0x7e, 0x36, 0xd8, 0xab, 0xe7, 0x36, 0x8c, - 0x07, 0x78, 0x7b, 0x88, 0xb3, 0xa4, 0xc9, 0x93, 0x7f, 0x39, 0x05, 0x17, 0x28, 0x9b, 0x38, 0xae, - 0x77, 0xad, 0x2d, 0x6c, 0x9b, 0xc8, 0x54, 0xfd, 0x54, 0xc4, 0xff, 0xbc, 0xc4, 0xa0, 0x20, 0x4f, - 0x26, 0x61, 0xd8, 0x31, 0x9c, 0x36, 0xe6, 0x8e, 0xd9, 0x42, 0x9c, 0x85, 0x9c, 0x86, 0x89, 0x6a, - 0x1b, 0x5d, 0xc7, 0xb0, 0x4c, 0x3e, 0x19, 0x41, 0x91, 0x58, 0x83, 0xac, 0x37, 0x28, 0xa4, 0x90, - 0x76, 0x2f, 0xa3, 0xcb, 0x71, 0x14, 0x8b, 0xa8, 0x9d, 0xd2, 0xb7, 0x16, 0xdf, 0x83, 0x31, 0x37, - 0xb7, 0x46, 0xcf, 0x2d, 0x89, 0x77, 0xb7, 0x2d, 0xc4, 0xb9, 0x0b, 0x55, 0x4e, 0xc9, 0xbb, 0xd6, - 0x4c, 0x4a, 0xfa, 0x54, 0x18, 0xa4, 0xaf, 0xec, 0x0f, 0x62, 0x6c, 0xa5, 0xe4, 0x05, 0x98, 0x4f, - 0x54, 0xf0, 0xf9, 0xf0, 0x84, 0x51, 0x7b, 0x13, 0x3b, 0x2f, 0x2b, 0xc7, 0x1e, 0x35, 0x97, 0x60, - 0xc2, 0xcb, 0xd9, 0x27, 0x3d, 0x2b, 0xfa, 0xb8, 0x27, 0xe7, 0xb4, 0xaf, 0xae, 0x44, 0x5c, 0x9a, - 0x3e, 0x8d, 0x23, 0xa3, 0x72, 0x1a, 0x47, 0xee, 0xf9, 0xb0, 0x7f, 0x15, 0xe0, 0xbf, 0xfe, 0xb4, - 0xd6, 0x91, 0xda, 0x32, 0x4c, 0x7c, 0xaf, 0x65, 0x38, 0xb8, 0x6d, 0x10, 0xe7, 0x35, 0xf3, 0xe5, - 0x02, 0x40, 0x87, 0x45, 0xa4, 0x03, 0xc1, 0x1e, 0x39, 0x59, 0x2e, 0xa9, 0x69, 0xd5, 0x1b, 0xd1, - 0x5d, 0xbb, 0x38, 0x78, 0xe8, 0xc4, 0x61, 0x96, 0x2f, 0xc3, 0xa5, 0x43, 0x95, 0xfc, 0x32, 0x7c, - 0x2f, 0xc0, 0x4c, 0xac, 0x76, 0x6c, 0xfb, 0x4a, 0x90, 0xeb, 0x72, 0x4f, 0xfd, 0x91, 0x06, 0x4f, - 0x54, 0xd3, 0x42, 0x19, 0xa6, 0xc2, 0x19, 0xae, 0x46, 0xf4, 0xb4, 0x98, 0x9c, 0x9e, 0x3c, 0x97, - 0xd0, 0x2f, 0x2f, 0x9d, 0xd5, 0xe7, 0x39, 0x48, 0xd1, 0xef, 0x8b, 0x06, 0x64, 0xfb, 0xdf, 0x9b, - 0xff, 0x8b, 0x9d, 0xc5, 0xc0, 0x97, 0x9a, 0x74, 0xe5, 0x28, 0x5a, 0xfe, 0x03, 0xe2, 0x13, 0x38, - 0x1b, 0xf5, 0x99, 0x56, 0x4e, 0x70, 0x12, 0xa1, 0x2f, 0x5d, 0x3b, 0x9e, 0xbe, 0x1f, 0xfe, 0x63, - 0x18, 0x0f, 0xbf, 0xf6, 0x97, 0x12, 0x5c, 0x85, 0x74, 0xa5, 0xd5, 0xa3, 0xeb, 0x06, 0x43, 0x86, - 0x5f, 0x96, 0x49, 0x21, 0x43, 0xba, 0x89, 0x21, 0xe3, 0x5e, 0x69, 0x18, 0x72, 0xc1, 0xd7, 0xd8, - 0xc5, 0x04, 0x17, 0x01, 0x3d, 0xa9, 0x7c, 0x34, 0x3d, 0x3f, 0x4c, 0x13, 0x20, 0xf0, 0x3a, 0x9a, - 0x4f, 0xb0, 0xee, 0xab, 0x49, 0xcb, 0x47, 0x52, 0xf3, 0x63, 0xb4, 0x20, 0x3f, 0xf0, 0x94, 0x59, - 0x38, 0x14, 0x23, 0x53, 0x94, 0x2a, 0x47, 0x54, 0xf4, 0x23, 0x7d, 0x26, 0xc0, 0xb9, 0xe8, 0x77, - 0xc6, 0xd5, 0x44, 0x57, 0x11, 0x16, 0xd2, 0x9b, 0xc7, 0xb5, 0xf0, 0x51, 0x7c, 0x29, 0x80, 0x94, - 0x70, 0x0f, 0xbf, 0x91, 0x54, 0xbd, 0x58, 0x33, 0xe9, 0xc6, 0x89, 0xcc, 0x06, 0x4a, 0x13, 0x7d, - 0x4f, 0x25, 0x95, 0x26, 0xd2, 0x22, 0xb1, 0x34, 0x89, 0x37, 0x8f, 0xf8, 0x8d, 0x00, 0xc5, 0x43, - 0xae, 0x9d, 0xeb, 0x87, 0x36, 0x3d, 0xce, 0x54, 0x5a, 0x3b, 0xb1, 0xa9, 0x0f, 0xf0, 0x73, 0x01, - 0xa6, 0x62, 0x2e, 0x84, 0x95, 0x63, 0x7b, 0x97, 0x8e, 0x9f, 0x8b, 0x07, 0x44, 0x1a, 0x7e, 0x44, - 0xbf, 0xba, 0xd7, 0x3f, 0x78, 0xba, 0x5f, 0x14, 0x9e, 0xed, 0x17, 0x85, 0x3f, 0xf6, 0x8b, 0xc2, - 0x93, 0x17, 0xc5, 0xa1, 0x67, 0x2f, 0x8a, 0x43, 0xbf, 0xbd, 0x28, 0x0e, 0x7d, 0x54, 0x0d, 0x7c, - 0xcf, 0x13, 0xd5, 0x76, 0xda, 0xa8, 0x49, 0x2a, 0x9b, 0x6e, 0xb8, 0x3b, 0xd8, 0xd9, 0xb6, 0xec, - 0x07, 0x95, 0x87, 0xfe, 0x1f, 0x27, 0x0d, 0xd3, 0xa1, 0xad, 0x68, 0xb3, 0xef, 0xfc, 0x66, 0xc6, - 0xfd, 0xeb, 0xe4, 0xff, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x18, 0x16, 0x62, 0xc6, 0x7b, 0x15, - 0x00, 0x00, + // 1582 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0xcf, 0x6f, 0x1b, 0xc5, + 0x17, 0xcf, 0xd6, 0x8e, 0x13, 0x3f, 0x3b, 0x4d, 0xba, 0x4d, 0x13, 0x67, 0xfb, 0xad, 0x9d, 0xef, + 0xa6, 0x69, 0xd2, 0xb4, 0xb1, 0x9b, 0x20, 0x22, 0x6a, 0xe8, 0x21, 0x0e, 0x2d, 0xb5, 0x84, 0x4b, + 0xb5, 0x01, 0x55, 0xe2, 0x62, 0x8d, 0x77, 0xa7, 0xeb, 0x55, 0xed, 0x5d, 0xb3, 0xb3, 0x4e, 0x9a, + 0x03, 0x52, 0x05, 0x12, 0x42, 0x3d, 0x55, 0x1c, 0x41, 0x42, 0x1c, 0x90, 0x40, 0x9c, 0x72, 0xe0, + 0xc4, 0x5f, 0x50, 0x6e, 0x55, 0x2f, 0x70, 0x0a, 0x28, 0x15, 0x8a, 0xc4, 0x9d, 0x0b, 0x27, 0x34, + 0xbb, 0xb3, 0xeb, 0xf5, 0x66, 0x77, 0xe3, 0x44, 0x2d, 0x12, 0x97, 0x36, 0x33, 0xf3, 0x7e, 0x7e, + 0xde, 0xe7, 0xbd, 0x99, 0x35, 0xcc, 0x12, 0x2c, 0x9b, 0xd8, 0x2a, 0xc9, 0x46, 0xbb, 0xd3, 0xb5, + 0x70, 0x69, 0x6b, 0xa5, 0x81, 0x2d, 0xb4, 0x52, 0x6a, 0x13, 0xb5, 0xd8, 0x31, 0x0d, 0xcb, 0xe0, + 0xa7, 0x1c, 0x89, 0x22, 0x93, 0x28, 0x32, 0x09, 0x61, 0x52, 0x35, 0x54, 0xc3, 0x16, 0x29, 0xd1, + 0xbf, 0x1c, 0x69, 0x61, 0x5a, 0x36, 0x48, 0xdb, 0x20, 0x54, 0xbf, 0xb4, 0xe5, 0x33, 0x23, 0xcc, + 0x38, 0x07, 0x75, 0x47, 0xc3, 0x59, 0xb0, 0xa3, 0x3c, 0xd3, 0x69, 0x20, 0xd2, 0x0b, 0x40, 0x36, + 0x34, 0x9d, 0x9d, 0x9f, 0x41, 0x6d, 0x4d, 0x37, 0x4a, 0xf6, 0xbf, 0x6c, 0x6b, 0x2e, 0x22, 0xec, + 0x0e, 0x32, 0x51, 0x9b, 0xd9, 0x15, 0xff, 0xe4, 0x20, 0x5b, 0x23, 0xea, 0xa6, 0x65, 0x98, 0x78, + 0xc3, 0x50, 0x30, 0x5f, 0x85, 0x14, 0xc1, 0xba, 0x82, 0xcd, 0x1c, 0x37, 0xcb, 0x2d, 0x66, 0x2b, + 0x2b, 0x7f, 0xef, 0x15, 0x96, 0x55, 0xcd, 0x6a, 0x76, 0x1b, 0x34, 0x3d, 0x16, 0x15, 0xfb, 0x6f, + 0x99, 0x28, 0x0f, 0x4a, 0xd6, 0x4e, 0x07, 0x93, 0xe2, 0xba, 0x2c, 0xaf, 0x2b, 0x8a, 0x89, 0x09, + 0x91, 0x98, 0x01, 0x7e, 0x0d, 0x4e, 0x6f, 0x23, 0xd2, 0xae, 0x37, 0x76, 0x2c, 0x5c, 0x97, 0x0d, + 0x05, 0xe7, 0x4e, 0xd9, 0x26, 0x27, 0xf6, 0xf7, 0x0a, 0xd9, 0x7b, 0xeb, 0x9b, 0xb5, 0xca, 0x8e, + 0x65, 0x3b, 0x95, 0xb2, 0x54, 0xce, 0x5d, 0xf1, 0x53, 0x90, 0x22, 0x46, 0xd7, 0x94, 0x71, 0x2e, + 0x31, 0xcb, 0x2d, 0xa6, 0x25, 0xb6, 0xe2, 0x73, 0x30, 0xd2, 0xe8, 0x6a, 0x2d, 0x1a, 0x5b, 0xd2, + 0x3e, 0x70, 0x97, 0xe5, 0xf9, 0xcf, 0xbf, 0x29, 0x0c, 0x7d, 0x72, 0xb0, 0xbb, 0xc4, 0x5c, 0x3f, + 0x3e, 0xd8, 0x5d, 0x3a, 0x43, 0x6d, 0x96, 0xfc, 0xb9, 0x89, 0x6f, 0xc2, 0xa4, 0x7f, 0x2d, 0x61, + 0xd2, 0x31, 0x74, 0x82, 0xf9, 0x39, 0x18, 0xa1, 0xe1, 0xd5, 0x35, 0xc5, 0x4e, 0x3a, 0x59, 0x81, + 0xfd, 0xbd, 0x42, 0x8a, 0x8a, 0x54, 0xdf, 0x96, 0x52, 0xf4, 0xa8, 0xaa, 0x88, 0x7f, 0x24, 0x60, + 0xaa, 0x46, 0xd4, 0xaa, 0x4e, 0x2c, 0xa4, 0x5b, 0x1a, 0xa2, 0xc1, 0xea, 0x96, 0x89, 0x64, 0xeb, + 0x65, 0x62, 0x76, 0x15, 0x78, 0x19, 0xb5, 0x5a, 0x0d, 0x24, 0x3f, 0xb0, 0x21, 0xab, 0x37, 0x11, + 0x69, 0xda, 0xb8, 0xa5, 0xa5, 0x09, 0xf7, 0x84, 0x46, 0x76, 0x1b, 0x91, 0xa6, 0x3f, 0xf0, 0x44, + 0x54, 0xe0, 0xfc, 0x24, 0x0c, 0xb7, 0x50, 0x03, 0xb7, 0x18, 0x68, 0xce, 0x82, 0x9f, 0x81, 0x51, + 0x4d, 0xd7, 0xac, 0x7a, 0x9b, 0xa8, 0xb9, 0x61, 0x1a, 0xb5, 0x34, 0x42, 0xd7, 0x35, 0xa2, 0xf2, + 0x8f, 0x38, 0x00, 0xfb, 0xec, 0x7e, 0x57, 0x57, 0x48, 0x2e, 0x35, 0x9b, 0x58, 0xcc, 0xac, 0xce, + 0x14, 0x19, 0x1f, 0x29, 0x03, 0x5d, 0x82, 0x17, 0x37, 0x0c, 0x4d, 0xaf, 0xdc, 0x7a, 0xba, 0x57, + 0x18, 0xfa, 0xe1, 0xb7, 0xc2, 0xe2, 0x00, 0x29, 0x53, 0x05, 0xf2, 0xe5, 0xc1, 0xee, 0x52, 0xb6, + 0x85, 0x55, 0x24, 0xef, 0xd4, 0x29, 0x87, 0xc9, 0xf7, 0x07, 0xbb, 0x4b, 0x9c, 0x94, 0xa6, 0x4e, + 0x6f, 0x51, 0x9f, 0xfc, 0x2a, 0x64, 0x3d, 0x18, 0x88, 0xa6, 0xe6, 0x46, 0x6c, 0x5c, 0xc7, 0xf7, + 0xf7, 0x0a, 0x99, 0x0d, 0xb6, 0xbf, 0xa9, 0xa9, 0x52, 0x46, 0xee, 0x2d, 0x68, 0x9e, 0x48, 0x69, + 0x6b, 0x7a, 0x6e, 0xd4, 0xc9, 0xd3, 0x5e, 0x94, 0x4b, 0x21, 0xd4, 0x38, 0xef, 0x52, 0x23, 0xa4, + 0x98, 0xe2, 0x1d, 0xc8, 0x87, 0x9f, 0x78, 0x74, 0xc9, 0xc1, 0x08, 0x72, 0xca, 0x66, 0xd7, 0x3b, + 0x2d, 0xb9, 0x4b, 0x9e, 0x87, 0xa4, 0x82, 0x2c, 0xe4, 0xf0, 0x5c, 0xb2, 0xff, 0x16, 0x9f, 0x27, + 0x80, 0xaf, 0x11, 0xf5, 0xe6, 0x43, 0x2c, 0x77, 0x5f, 0x0d, 0x67, 0x6a, 0x30, 0x2a, 0x33, 0xb3, + 0xac, 0xc3, 0x4e, 0x60, 0xcc, 0x33, 0xc1, 0x4f, 0x40, 0x82, 0x92, 0x22, 0x61, 0xe7, 0x40, 0xff, + 0x8c, 0x20, 0x65, 0x32, 0x82, 0x94, 0x94, 0x3e, 0x04, 0xeb, 0x2e, 0x7d, 0x86, 0xff, 0x35, 0xfa, + 0x50, 0xa7, 0xe1, 0xf4, 0x49, 0x1d, 0x4d, 0x9f, 0xf2, 0x95, 0x10, 0xa2, 0x4c, 0xbb, 0x44, 0x09, + 0x54, 0x4f, 0xbc, 0x06, 0xc2, 0xe1, 0x5d, 0x8f, 0x20, 0x2e, 0x0d, 0x38, 0x1f, 0x0d, 0x1e, 0x9f, + 0xb2, 0x69, 0x50, 0xd3, 0x54, 0xd3, 0x3f, 0x3a, 0xa6, 0xfa, 0x68, 0x90, 0xf6, 0x6a, 0x2a, 0x04, + 0x6a, 0x9a, 0xf6, 0x15, 0x68, 0xa0, 0xae, 0x67, 0x55, 0x4c, 0xf6, 0xaa, 0x78, 0x92, 0x9e, 0x0a, + 0xaf, 0xfc, 0x68, 0x78, 0xe5, 0xcb, 0x0b, 0x51, 0xf0, 0x05, 0xb2, 0x66, 0xf0, 0x05, 0x76, 0x63, + 0xe1, 0xfb, 0x89, 0x83, 0xd3, 0x35, 0xa2, 0x7e, 0xd0, 0x51, 0x90, 0x85, 0xd7, 0x69, 0x67, 0x47, + 0x42, 0x77, 0x1e, 0xd2, 0x3a, 0xde, 0xae, 0x3b, 0xb3, 0x80, 0x61, 0xa7, 0xe3, 0x6d, 0x47, 0xc9, + 0x8f, 0x6b, 0x22, 0x80, 0xeb, 0x09, 0x00, 0x2a, 0xcf, 0x05, 0x52, 0x3e, 0xeb, 0xa6, 0xec, 0x8b, + 0x54, 0xcc, 0xd9, 0x37, 0x87, 0x6f, 0xc7, 0x4d, 0x55, 0xfc, 0x8a, 0x83, 0xb1, 0x1a, 0x51, 0x37, + 0x5a, 0x18, 0x99, 0xf1, 0x59, 0xbd, 0xec, 0xc0, 0xc5, 0x40, 0xe0, 0xbc, 0x1b, 0x78, 0x2f, 0x16, + 0x71, 0x1a, 0xce, 0xf5, 0x6d, 0x78, 0x61, 0xef, 0x72, 0x30, 0xee, 0x65, 0x74, 0xd7, 0x7e, 0x4f, + 0xf0, 0x6b, 0x90, 0x46, 0x5d, 0xab, 0x69, 0x98, 0x9a, 0xb5, 0xe3, 0xc4, 0x5e, 0xc9, 0x3d, 0xff, + 0x71, 0x79, 0x92, 0xf5, 0x3d, 0x9b, 0x33, 0x9b, 0x96, 0xa9, 0xe9, 0xaa, 0xd4, 0x13, 0xe5, 0xdf, + 0x82, 0x94, 0xf3, 0x22, 0xb1, 0x6b, 0x95, 0x59, 0xcd, 0x17, 0xc3, 0x1f, 0x53, 0x45, 0xc7, 0x4f, + 0x25, 0x49, 0xc7, 0x85, 0xc4, 0x74, 0x1c, 0xca, 0xf5, 0xac, 0xd1, 0x4c, 0x26, 0xfb, 0x4b, 0xe0, + 0xa8, 0x89, 0x33, 0x30, 0x1d, 0xd8, 0xf2, 0xb2, 0xf9, 0x96, 0x83, 0x9c, 0x7d, 0xa6, 0x9a, 0x48, + 0xc1, 0x77, 0x4d, 0xa3, 0x63, 0x10, 0xd4, 0xba, 0x8b, 0x08, 0xc1, 0x0a, 0x3f, 0x0f, 0xa7, 0x1d, + 0x90, 0xea, 0xfd, 0x33, 0x7f, 0xcc, 0xd9, 0x65, 0x69, 0xf1, 0x97, 0x60, 0xbc, 0x6d, 0xd6, 0xb1, + 0x2e, 0xb7, 0xd0, 0x96, 0xef, 0xd2, 0xce, 0x4a, 0x63, 0x6d, 0xf3, 0xa6, 0xb3, 0x6b, 0xb7, 0xc8, + 0x75, 0x77, 0xca, 0x04, 0xac, 0xd2, 0xc0, 0x2f, 0xf4, 0x02, 0x0f, 0x89, 0x44, 0x14, 0x61, 0x36, + 0xea, 0xcc, 0x4b, 0xe5, 0x3d, 0x38, 0x1b, 0xe8, 0xaa, 0xaa, 0x7e, 0xdf, 0x88, 0xb9, 0xb1, 0xf2, + 0x90, 0xa1, 0xcd, 0xe2, 0xce, 0x13, 0x1a, 0x73, 0x52, 0xa2, 0xfd, 0xb3, 0xe1, 0xbc, 0x7a, 0x6e, + 0xc3, 0xb8, 0x8f, 0xb7, 0x47, 0x18, 0x8b, 0xeb, 0x3c, 0xf1, 0xe7, 0x53, 0x70, 0x81, 0xb2, 0x89, + 0xc5, 0xf5, 0x8e, 0xb1, 0x85, 0x4d, 0x1d, 0xe9, 0xb2, 0x97, 0x0a, 0xff, 0xbf, 0x43, 0x0c, 0xf2, + 0xf3, 0x64, 0x12, 0x86, 0x2d, 0xcd, 0x6a, 0x61, 0x66, 0xd8, 0x59, 0xf0, 0xb3, 0x90, 0x51, 0x30, + 0x91, 0x4d, 0xad, 0x63, 0x69, 0x86, 0xce, 0x3a, 0xc3, 0xbf, 0xc5, 0x57, 0x21, 0xed, 0x36, 0x0a, + 0xc9, 0x25, 0xed, 0xcb, 0xe8, 0x4a, 0x14, 0xc5, 0x42, 0xb0, 0x93, 0x7a, 0xda, 0xfc, 0xbb, 0x30, + 0x66, 0xe7, 0x56, 0xef, 0xda, 0x90, 0xb8, 0x77, 0xdb, 0x42, 0x94, 0xb9, 0x00, 0x72, 0x52, 0xd6, + 0xd6, 0x76, 0x76, 0x49, 0x8f, 0x0a, 0xfd, 0xf4, 0x15, 0xbd, 0x46, 0x8c, 0x44, 0x4a, 0x5c, 0x80, + 0xf9, 0x58, 0x01, 0x8f, 0x0f, 0x7f, 0x71, 0x61, 0x93, 0xf6, 0x3f, 0x83, 0x78, 0x79, 0x2d, 0x1c, + 0xa3, 0x42, 0xc4, 0xc5, 0xe2, 0x01, 0x74, 0x11, 0xc4, 0xe8, 0x53, 0x0f, 0x9d, 0x27, 0x4e, 0xe3, + 0x6f, 0x62, 0xeb, 0x30, 0x94, 0x91, 0x83, 0xf8, 0x32, 0x4c, 0xb8, 0xf1, 0x79, 0x23, 0xc1, 0x01, + 0x68, 0xdc, 0xdd, 0x67, 0x43, 0xa1, 0xbc, 0x12, 0xf2, 0xa4, 0xf0, 0x9a, 0x3c, 0xd4, 0x2b, 0x6b, + 0xf2, 0xd0, 0x33, 0x2f, 0xec, 0x5f, 0x38, 0xf8, 0xbf, 0x37, 0xcb, 0x6a, 0x48, 0x6e, 0x6a, 0x3a, + 0xbe, 0xd7, 0xd4, 0x2c, 0xdc, 0xd2, 0xc8, 0xab, 0xae, 0xed, 0x05, 0x80, 0xb6, 0xe3, 0x91, 0x8e, + 0x0b, 0xe7, 0x09, 0x98, 0x66, 0x3b, 0x55, 0xa5, 0x7c, 0x23, 0xbc, 0x5e, 0x97, 0xfa, 0x47, 0x72, + 0x54, 0xcc, 0xe2, 0x15, 0xb8, 0x7c, 0xa4, 0x90, 0x07, 0xc3, 0x77, 0x1c, 0xcc, 0x44, 0x4a, 0x47, + 0x96, 0xaf, 0x00, 0x99, 0x0e, 0xb3, 0xd4, 0x1b, 0x78, 0xe0, 0x6e, 0x55, 0x95, 0x40, 0x86, 0x89, + 0x60, 0x86, 0xab, 0x21, 0x35, 0xcd, 0xc7, 0xa7, 0x27, 0xce, 0xc5, 0xd4, 0xcb, 0x4d, 0x67, 0xf5, + 0x79, 0x06, 0x12, 0xf4, 0xeb, 0xab, 0x0e, 0xe9, 0xde, 0xd7, 0xf8, 0xc5, 0xc8, 0xbe, 0xf1, 0x7d, + 0xc7, 0x0a, 0x57, 0x07, 0x91, 0xf2, 0x9e, 0x57, 0x1f, 0xc3, 0xd9, 0xb0, 0x8f, 0xd8, 0x62, 0x8c, + 0x91, 0x10, 0x79, 0x61, 0xed, 0x78, 0xf2, 0x9e, 0xfb, 0x8f, 0x60, 0x3c, 0xf8, 0x2d, 0xb4, 0x14, + 0x63, 0x2a, 0x20, 0x2b, 0xac, 0x0e, 0x2e, 0xeb, 0x77, 0x19, 0x7c, 0x77, 0xc7, 0xb9, 0x0c, 0xc8, + 0xc6, 0xba, 0x8c, 0x7a, 0xc3, 0x62, 0xc8, 0xf8, 0xdf, 0xaa, 0x97, 0x62, 0x4c, 0xf8, 0xe4, 0x84, + 0xe2, 0x60, 0x72, 0x9e, 0x9b, 0x06, 0x80, 0xef, 0xed, 0x38, 0x1f, 0xa3, 0xdd, 0x13, 0x13, 0x96, + 0x07, 0x12, 0xf3, 0x7c, 0x34, 0x21, 0xdb, 0xf7, 0xd0, 0x5b, 0x38, 0x32, 0x46, 0x47, 0x50, 0x28, + 0x0d, 0x28, 0xe8, 0x79, 0xfa, 0x94, 0x83, 0x73, 0xe1, 0xaf, 0xb0, 0x6b, 0xb1, 0xa6, 0x42, 0x34, + 0x84, 0x37, 0x8e, 0xab, 0xe1, 0x45, 0xf1, 0x05, 0x07, 0x42, 0xcc, 0x2b, 0xe5, 0xf5, 0x38, 0xf4, + 0x22, 0xd5, 0x84, 0x1b, 0x27, 0x52, 0xeb, 0x83, 0x26, 0xfc, 0x9e, 0x8a, 0x83, 0x26, 0x54, 0x23, + 0x16, 0x9a, 0xd8, 0x9b, 0x87, 0xff, 0x9a, 0x83, 0xfc, 0x11, 0xd7, 0xce, 0xf5, 0x23, 0x8b, 0x1e, + 0xa5, 0x2a, 0xac, 0x9f, 0x58, 0xd5, 0x0b, 0xf0, 0x33, 0x0e, 0xa6, 0x22, 0x2e, 0x84, 0x95, 0x63, + 0x5b, 0x17, 0x8e, 0x9f, 0x8b, 0x1b, 0x88, 0x30, 0xfc, 0xe8, 0x60, 0x77, 0x89, 0xab, 0xbc, 0xff, + 0x74, 0x3f, 0xcf, 0x3d, 0xdb, 0xcf, 0x73, 0xbf, 0xef, 0xe7, 0xb9, 0x27, 0x2f, 0xf2, 0x43, 0xcf, + 0x5e, 0xe4, 0x87, 0x7e, 0x7d, 0x91, 0x1f, 0xfa, 0xb0, 0xec, 0xfb, 0xb5, 0x83, 0xc8, 0xa6, 0xd5, + 0x42, 0x0d, 0x52, 0xda, 0xb4, 0xdd, 0xdd, 0xc1, 0xd6, 0xb6, 0x61, 0x3e, 0x28, 0x3d, 0xf4, 0x7e, + 0xba, 0xd5, 0x74, 0x8b, 0x96, 0xa2, 0xe5, 0xfc, 0x0a, 0xd2, 0x48, 0xd9, 0xbf, 0xdd, 0xbe, 0xf6, + 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa2, 0x16, 0x1b, 0xd2, 0x99, 0x16, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2708,6 +2787,87 @@ func (m *MsgContractGovernanceProposalResponse) MarshalToSizedBuffer(dAtA []byte return len(dAtA) - i, nil } +func (m *MsgMigrateContractProposal) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgMigrateContractProposal) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgMigrateContractProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Contracts) > 0 { + for iNdEx := len(m.Contracts) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Contracts[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintMsg(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + } + if len(m.Description) > 0 { + i -= len(m.Description) + copy(dAtA[i:], m.Description) + i = encodeVarintMsg(dAtA, i, uint64(len(m.Description))) + i-- + dAtA[i] = 0x1a + } + if len(m.Title) > 0 { + i -= len(m.Title) + copy(dAtA[i:], m.Title) + i = encodeVarintMsg(dAtA, i, uint64(len(m.Title))) + i-- + dAtA[i] = 0x12 + } + if len(m.Authority) > 0 { + i -= len(m.Authority) + copy(dAtA[i:], m.Authority) + i = encodeVarintMsg(dAtA, i, uint64(len(m.Authority))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgMigrateContractProposalResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgMigrateContractProposalResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgMigrateContractProposalResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + func (m *MsgSetContractGovernance) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -3296,6 +3456,42 @@ func (m *MsgContractGovernanceProposalResponse) Size() (n int) { return n } +func (m *MsgMigrateContractProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Authority) + if l > 0 { + n += 1 + l + sovMsg(uint64(l)) + } + l = len(m.Title) + if l > 0 { + n += 1 + l + sovMsg(uint64(l)) + } + l = len(m.Description) + if l > 0 { + n += 1 + l + sovMsg(uint64(l)) + } + if len(m.Contracts) > 0 { + for _, e := range m.Contracts { + l = e.Size() + n += 1 + l + sovMsg(uint64(l)) + } + } + return n +} + +func (m *MsgMigrateContractProposalResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + func (m *MsgSetContractGovernance) Size() (n int) { if m == nil { return 0 @@ -5950,6 +6146,236 @@ func (m *MsgContractGovernanceProposalResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *MsgMigrateContractProposal) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMsg + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgMigrateContractProposal: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgMigrateContractProposal: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Authority", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMsg + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthMsg + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthMsg + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Authority = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Title", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMsg + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthMsg + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthMsg + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Title = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMsg + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthMsg + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthMsg + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Description = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Contracts", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMsg + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthMsg + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthMsg + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Contracts = append(m.Contracts, &MigrateContractInfo{}) + if err := m.Contracts[len(m.Contracts)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipMsg(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthMsg + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgMigrateContractProposalResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMsg + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgMigrateContractProposalResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgMigrateContractProposalResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipMsg(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthMsg + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *MsgSetContractGovernance) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 From 46a15fc4218441fc63475ce0796850dd5ca62731 Mon Sep 17 00:00:00 2001 From: cboh4 Date: Mon, 10 Nov 2025 13:34:54 +0200 Subject: [PATCH 2/2] add comment --- proto/secret/compute/v1beta1/msg.proto | 1 + x/compute/internal/types/msg.pb.go | 1 + 2 files changed, 2 insertions(+) diff --git a/proto/secret/compute/v1beta1/msg.proto b/proto/secret/compute/v1beta1/msg.proto index 53ff8a66b..958c5be61 100644 --- a/proto/secret/compute/v1beta1/msg.proto +++ b/proto/secret/compute/v1beta1/msg.proto @@ -243,6 +243,7 @@ message MsgContractGovernanceProposal { message MsgContractGovernanceProposalResponse {} +// for backward compatibility message MsgMigrateContractProposal { option (gogoproto.goproto_getters) = false; option (cosmos.msg.v1.signer) = "authority"; diff --git a/x/compute/internal/types/msg.pb.go b/x/compute/internal/types/msg.pb.go index c8f3f90ac..213df846a 100644 --- a/x/compute/internal/types/msg.pb.go +++ b/x/compute/internal/types/msg.pb.go @@ -1027,6 +1027,7 @@ func (m *MsgContractGovernanceProposalResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgContractGovernanceProposalResponse proto.InternalMessageInfo +// for backward compatibility type MsgMigrateContractProposal struct { Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"` Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`