From ecaa329e51bbe7154b9e93bec609c1c2ef663d56 Mon Sep 17 00:00:00 2001 From: xing-yang Date: Mon, 10 Feb 2020 20:41:04 +0000 Subject: [PATCH] Add Volume Health Support to CSI --- csi.proto | 94 +++++ lib/go/csi/csi.pb.go | 843 +++++++++++++++++++++++++++++-------------- spec.md | 121 ++++++- 3 files changed, 791 insertions(+), 267 deletions(-) diff --git a/csi.proto b/csi.proto index 1b86c870..cf221041 100644 --- a/csi.proto +++ b/csi.proto @@ -95,6 +95,11 @@ service Controller { rpc ControllerExpandVolume (ControllerExpandVolumeRequest) returns (ControllerExpandVolumeResponse) {} + + rpc ControllerGetVolume (ControllerGetVolumeRequest) + returns (ControllerGetVolumeResponse) { + option (alpha_method) = true; + } } service Node { @@ -849,6 +854,12 @@ message ListVolumesResponse { // published_node_ids MAY include nodes not published to or // reported by the SP. The CO MUST be resilient to that. repeated string published_node_ids = 1; + + // Information about the current condition of the volume. + // This field is OPTIONAL. + // This field MUST be specified if the + // VOLUME_CONDITION controller capability is supported. + VolumeCondition volume_condition = 2 [(alpha_field) = true]; } message Entry { @@ -871,6 +882,40 @@ message ListVolumesResponse { // An empty string is equal to an unspecified field value. string next_token = 2; } +message ControllerGetVolumeRequest { + option (alpha_message) = true; + + // The ID of the volume to fetch current volume information for. + // This field is REQUIRED. + string volume_id = 1; +} + +message ControllerGetVolumeResponse { + option (alpha_message) = true; + + message VolumeStatus{ + // A list of all the `node_id` of nodes that this volume is + // controller published on. + // This field is OPTIONAL. + // This field MUST be specified if the PUBLISH_UNPUBLISH_VOLUME + // controller capability is supported. + // published_node_ids MAY include nodes not published to or + // reported by the SP. The CO MUST be resilient to that. + repeated string published_node_ids = 1; + + // Information about the current condition of the volume. + // This field is OPTIONAL. + // This field MUST be specified if the + // VOLUME_CONDITION controller capability is supported. + VolumeCondition volume_condition = 2; + } + + // This field is REQUIRED + Volume volume = 1; + + // This field is REQUIRED. + VolumeStatus status = 2; +} message GetCapacityRequest { // If specified, the Plugin SHALL report the capacity of the storage // that can be used to provision volumes that satisfy ALL of the @@ -945,6 +990,24 @@ message ControllerServiceCapability { // Indicates the SP supports the // ListVolumesResponse.entry.published_nodes field LIST_VOLUMES_PUBLISHED_NODES = 10; + + // Indicates that the Controller service can report volume + // conditions. + // An SP MAY implement `VolumeCondition` in only the Controller + // Plugin, only the Node Plugin, or both. + // If `VolumeCondition` is implemented in both the Controller and + // Node Plugins, it SHALL report from different perspectives. + // If for some reason Controller and Node Plugins report + // misaligned volume conditions, CO SHALL assume the worst case + // is the truth. + // Note that, for alpha, `VolumeCondition` is intended be + // informative for humans only, not for automation. + VOLUME_CONDITION = 11 [(alpha_enum_value) = true]; + + // Indicates the SP supports the ControllerGetVolume RPC. + // This enables COs to, for example, fetch per volume + // condition after a volume is provisioned. + GET_VOLUME = 12 [(alpha_enum_value) = true]; } Type type = 1; @@ -1273,6 +1336,11 @@ message NodeGetVolumeStatsRequest { message NodeGetVolumeStatsResponse { // This field is OPTIONAL. repeated VolumeUsage usage = 1; + // Information about the current condition of the volume. + // This field is OPTIONAL. + // This field MUST be specified if the VOLUME_CONDITION node + // capability is supported. + VolumeCondition volume_condition = 2 [(alpha_field) = true]; } message VolumeUsage { @@ -1296,6 +1364,20 @@ message VolumeUsage { // Units by which values are measured. This field is REQUIRED. Unit unit = 4; } + +// VolumeCondition represents the current condition of a volume. +message VolumeCondition { + option (alpha_message) = true; + + // Normal volumes are available for use and operating optimally. + // An abnormal volume does not meet these criteria. + // This field is REQUIRED. + bool abnormal = 1; + + // The message describing the condition of the volume. + // This field is REQUIRED. + string message = 2; +} message NodeGetCapabilitiesRequest { // Intentionally empty. } @@ -1318,6 +1400,18 @@ message NodeServiceCapability { GET_VOLUME_STATS = 2; // See VolumeExpansion for details. EXPAND_VOLUME = 3; + // Indicates that the Node service can report volume conditions. + // An SP MAY implement `VolumeCondition` in only the Node + // Plugin, only the Controller Plugin, or both. + // If `VolumeCondition` is implemented in both the Node and + // Controller Plugins, it SHALL report from different + // perspectives. + // If for some reason Node and Controller Plugins report + // misaligned volume conditions, CO SHALL assume the worst case + // is the truth. + // Note that, for alpha, `VolumeCondition` is intended to be + // informative for humans only, not for automation. + VOLUME_CONDITION = 4 [(alpha_enum_value) = true]; } Type type = 1; diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index ddd8de1a..35f59755 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -205,6 +205,22 @@ const ( // Indicates the SP supports the // ListVolumesResponse.entry.published_nodes field ControllerServiceCapability_RPC_LIST_VOLUMES_PUBLISHED_NODES ControllerServiceCapability_RPC_Type = 10 + // Indicates that the Controller service can report volume + // conditions. + // An SP MAY implement `VolumeCondition` in only the Controller + // Plugin, only the Node Plugin, or both. + // If `VolumeCondition` is implemented in both the Controller and + // Node Plugins, it SHALL report from different perspectives. + // If for some reason Controller and Node Plugins report + // misaligned volume conditions, CO SHALL assume the worst case + // is the truth. + // Note that, for alpha, `VolumeCondition` is intended be + // informative for humans only, not for automation. + ControllerServiceCapability_RPC_VOLUME_CONDITION ControllerServiceCapability_RPC_Type = 11 + // Indicates the SP supports the ControllerGetVolume RPC. + // This enables COs to, for example, fetch per volume + // condition after a volume is provisioned. + ControllerServiceCapability_RPC_GET_VOLUME ControllerServiceCapability_RPC_Type = 12 ) var ControllerServiceCapability_RPC_Type_name = map[int32]string{ @@ -219,6 +235,8 @@ var ControllerServiceCapability_RPC_Type_name = map[int32]string{ 8: "PUBLISH_READONLY", 9: "EXPAND_VOLUME", 10: "LIST_VOLUMES_PUBLISHED_NODES", + 11: "VOLUME_CONDITION", + 12: "GET_VOLUME", } var ControllerServiceCapability_RPC_Type_value = map[string]int32{ @@ -233,6 +251,8 @@ var ControllerServiceCapability_RPC_Type_value = map[string]int32{ "PUBLISH_READONLY": 8, "EXPAND_VOLUME": 9, "LIST_VOLUMES_PUBLISHED_NODES": 10, + "VOLUME_CONDITION": 11, + "GET_VOLUME": 12, } func (x ControllerServiceCapability_RPC_Type) String() string { @@ -240,7 +260,7 @@ func (x ControllerServiceCapability_RPC_Type) String() string { } func (ControllerServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{29, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{31, 0, 0} } type VolumeUsage_Unit int32 @@ -268,7 +288,7 @@ func (x VolumeUsage_Unit) String() string { } func (VolumeUsage_Unit) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{49, 0} + return fileDescriptor_9cdb00adce470e01, []int{51, 0} } type NodeServiceCapability_RPC_Type int32 @@ -282,6 +302,18 @@ const ( NodeServiceCapability_RPC_GET_VOLUME_STATS NodeServiceCapability_RPC_Type = 2 // See VolumeExpansion for details. NodeServiceCapability_RPC_EXPAND_VOLUME NodeServiceCapability_RPC_Type = 3 + // Indicates that the Node service can report volume conditions. + // An SP MAY implement `VolumeCondition` in only the Node + // Plugin, only the Controller Plugin, or both. + // If `VolumeCondition` is implemented in both the Node and + // Controller Plugins, it SHALL report from different + // perspectives. + // If for some reason Node and Controller Plugins report + // misaligned volume conditions, CO SHALL assume the worst case + // is the truth. + // Note that, for alpha, `VolumeCondition` is intended to be + // informative for humans only, not for automation. + NodeServiceCapability_RPC_VOLUME_CONDITION NodeServiceCapability_RPC_Type = 4 ) var NodeServiceCapability_RPC_Type_name = map[int32]string{ @@ -289,6 +321,7 @@ var NodeServiceCapability_RPC_Type_name = map[int32]string{ 1: "STAGE_UNSTAGE_VOLUME", 2: "GET_VOLUME_STATS", 3: "EXPAND_VOLUME", + 4: "VOLUME_CONDITION", } var NodeServiceCapability_RPC_Type_value = map[string]int32{ @@ -296,6 +329,7 @@ var NodeServiceCapability_RPC_Type_value = map[string]int32{ "STAGE_UNSTAGE_VOLUME": 1, "GET_VOLUME_STATS": 2, "EXPAND_VOLUME": 3, + "VOLUME_CONDITION": 4, } func (x NodeServiceCapability_RPC_Type) String() string { @@ -303,7 +337,7 @@ func (x NodeServiceCapability_RPC_Type) String() string { } func (NodeServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{52, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{55, 0, 0} } type GetPluginInfoRequest struct { @@ -2387,10 +2421,15 @@ type ListVolumesResponse_VolumeStatus struct { // not interpret this field. // published_node_ids MAY include nodes not published to or // reported by the SP. The CO MUST be resilient to that. - PublishedNodeIds []string `protobuf:"bytes,1,rep,name=published_node_ids,json=publishedNodeIds,proto3" json:"published_node_ids,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + PublishedNodeIds []string `protobuf:"bytes,1,rep,name=published_node_ids,json=publishedNodeIds,proto3" json:"published_node_ids,omitempty"` + // Information about the current condition of the volume. + // This field is OPTIONAL. + // This field MUST be specified if the + // VOLUME_CONDITION controller capability is supported. + VolumeCondition *VolumeCondition `protobuf:"bytes,2,opt,name=volume_condition,json=volumeCondition,proto3" json:"volume_condition,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ListVolumesResponse_VolumeStatus) Reset() { *m = ListVolumesResponse_VolumeStatus{} } @@ -2425,6 +2464,13 @@ func (m *ListVolumesResponse_VolumeStatus) GetPublishedNodeIds() []string { return nil } +func (m *ListVolumesResponse_VolumeStatus) GetVolumeCondition() *VolumeCondition { + if m != nil { + return m.VolumeCondition + } + return nil +} + type ListVolumesResponse_Entry struct { // This field is REQUIRED Volume *Volume `protobuf:"bytes,1,opt,name=volume,proto3" json:"volume,omitempty"` @@ -2476,6 +2522,156 @@ func (m *ListVolumesResponse_Entry) GetStatus() *ListVolumesResponse_VolumeStatu return nil } +type ControllerGetVolumeRequest struct { + // The ID of the volume to fetch current volume information for. + // This field is REQUIRED. + VolumeId string `protobuf:"bytes,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerGetVolumeRequest) Reset() { *m = ControllerGetVolumeRequest{} } +func (m *ControllerGetVolumeRequest) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeRequest) ProtoMessage() {} +func (*ControllerGetVolumeRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{25} +} + +func (m *ControllerGetVolumeRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeRequest.Unmarshal(m, b) +} +func (m *ControllerGetVolumeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeRequest.Marshal(b, m, deterministic) +} +func (m *ControllerGetVolumeRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeRequest.Merge(m, src) +} +func (m *ControllerGetVolumeRequest) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeRequest.Size(m) +} +func (m *ControllerGetVolumeRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerGetVolumeRequest proto.InternalMessageInfo + +func (m *ControllerGetVolumeRequest) GetVolumeId() string { + if m != nil { + return m.VolumeId + } + return "" +} + +type ControllerGetVolumeResponse struct { + // This field is REQUIRED + Volume *Volume `protobuf:"bytes,1,opt,name=volume,proto3" json:"volume,omitempty"` + // This field is REQUIRED. + Status *ControllerGetVolumeResponse_VolumeStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerGetVolumeResponse) Reset() { *m = ControllerGetVolumeResponse{} } +func (m *ControllerGetVolumeResponse) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeResponse) ProtoMessage() {} +func (*ControllerGetVolumeResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{26} +} + +func (m *ControllerGetVolumeResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeResponse.Unmarshal(m, b) +} +func (m *ControllerGetVolumeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeResponse.Marshal(b, m, deterministic) +} +func (m *ControllerGetVolumeResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeResponse.Merge(m, src) +} +func (m *ControllerGetVolumeResponse) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeResponse.Size(m) +} +func (m *ControllerGetVolumeResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerGetVolumeResponse proto.InternalMessageInfo + +func (m *ControllerGetVolumeResponse) GetVolume() *Volume { + if m != nil { + return m.Volume + } + return nil +} + +func (m *ControllerGetVolumeResponse) GetStatus() *ControllerGetVolumeResponse_VolumeStatus { + if m != nil { + return m.Status + } + return nil +} + +type ControllerGetVolumeResponse_VolumeStatus struct { + // A list of all the `node_id` of nodes that this volume is + // controller published on. + // This field is OPTIONAL. + // This field MUST be specified if the PUBLISH_UNPUBLISH_VOLUME + // controller capability is supported. + // published_node_ids MAY include nodes not published to or + // reported by the SP. The CO MUST be resilient to that. + PublishedNodeIds []string `protobuf:"bytes,1,rep,name=published_node_ids,json=publishedNodeIds,proto3" json:"published_node_ids,omitempty"` + // Information about the current condition of the volume. + // This field is OPTIONAL. + // This field MUST be specified if the + // VOLUME_CONDITION controller capability is supported. + VolumeCondition *VolumeCondition `protobuf:"bytes,2,opt,name=volume_condition,json=volumeCondition,proto3" json:"volume_condition,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ControllerGetVolumeResponse_VolumeStatus) Reset() { + *m = ControllerGetVolumeResponse_VolumeStatus{} +} +func (m *ControllerGetVolumeResponse_VolumeStatus) String() string { return proto.CompactTextString(m) } +func (*ControllerGetVolumeResponse_VolumeStatus) ProtoMessage() {} +func (*ControllerGetVolumeResponse_VolumeStatus) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{26, 0} +} + +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.Unmarshal(m, b) +} +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.Marshal(b, m, deterministic) +} +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.Merge(m, src) +} +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_Size() int { + return xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.Size(m) +} +func (m *ControllerGetVolumeResponse_VolumeStatus) XXX_DiscardUnknown() { + xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus.DiscardUnknown(m) +} + +var xxx_messageInfo_ControllerGetVolumeResponse_VolumeStatus proto.InternalMessageInfo + +func (m *ControllerGetVolumeResponse_VolumeStatus) GetPublishedNodeIds() []string { + if m != nil { + return m.PublishedNodeIds + } + return nil +} + +func (m *ControllerGetVolumeResponse_VolumeStatus) GetVolumeCondition() *VolumeCondition { + if m != nil { + return m.VolumeCondition + } + return nil +} + type GetCapacityRequest struct { // If specified, the Plugin SHALL report the capacity of the storage // that can be used to provision volumes that satisfy ALL of the @@ -2504,7 +2700,7 @@ func (m *GetCapacityRequest) Reset() { *m = GetCapacityRequest{} } func (m *GetCapacityRequest) String() string { return proto.CompactTextString(m) } func (*GetCapacityRequest) ProtoMessage() {} func (*GetCapacityRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{25} + return fileDescriptor_9cdb00adce470e01, []int{27} } func (m *GetCapacityRequest) XXX_Unmarshal(b []byte) error { @@ -2563,7 +2759,7 @@ func (m *GetCapacityResponse) Reset() { *m = GetCapacityResponse{} } func (m *GetCapacityResponse) String() string { return proto.CompactTextString(m) } func (*GetCapacityResponse) ProtoMessage() {} func (*GetCapacityResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{26} + return fileDescriptor_9cdb00adce470e01, []int{28} } func (m *GetCapacityResponse) XXX_Unmarshal(b []byte) error { @@ -2601,7 +2797,7 @@ func (m *ControllerGetCapabilitiesRequest) Reset() { *m = ControllerGetC func (m *ControllerGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*ControllerGetCapabilitiesRequest) ProtoMessage() {} func (*ControllerGetCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{27} + return fileDescriptor_9cdb00adce470e01, []int{29} } func (m *ControllerGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { @@ -2635,7 +2831,7 @@ func (m *ControllerGetCapabilitiesResponse) Reset() { *m = ControllerGet func (m *ControllerGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*ControllerGetCapabilitiesResponse) ProtoMessage() {} func (*ControllerGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{28} + return fileDescriptor_9cdb00adce470e01, []int{30} } func (m *ControllerGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { @@ -2677,7 +2873,7 @@ func (m *ControllerServiceCapability) Reset() { *m = ControllerServiceCa func (m *ControllerServiceCapability) String() string { return proto.CompactTextString(m) } func (*ControllerServiceCapability) ProtoMessage() {} func (*ControllerServiceCapability) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{29} + return fileDescriptor_9cdb00adce470e01, []int{31} } func (m *ControllerServiceCapability) XXX_Unmarshal(b []byte) error { @@ -2740,7 +2936,7 @@ func (m *ControllerServiceCapability_RPC) Reset() { *m = ControllerServi func (m *ControllerServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*ControllerServiceCapability_RPC) ProtoMessage() {} func (*ControllerServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{29, 0} + return fileDescriptor_9cdb00adce470e01, []int{31, 0} } func (m *ControllerServiceCapability_RPC) XXX_Unmarshal(b []byte) error { @@ -2803,7 +2999,7 @@ func (m *CreateSnapshotRequest) Reset() { *m = CreateSnapshotRequest{} } func (m *CreateSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotRequest) ProtoMessage() {} func (*CreateSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{30} + return fileDescriptor_9cdb00adce470e01, []int{32} } func (m *CreateSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -2866,7 +3062,7 @@ func (m *CreateSnapshotResponse) Reset() { *m = CreateSnapshotResponse{} func (m *CreateSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotResponse) ProtoMessage() {} func (*CreateSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{31} + return fileDescriptor_9cdb00adce470e01, []int{33} } func (m *CreateSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -2934,7 +3130,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{32} + return fileDescriptor_9cdb00adce470e01, []int{34} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { @@ -3007,7 +3203,7 @@ func (m *DeleteSnapshotRequest) Reset() { *m = DeleteSnapshotRequest{} } func (m *DeleteSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotRequest) ProtoMessage() {} func (*DeleteSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{33} + return fileDescriptor_9cdb00adce470e01, []int{35} } func (m *DeleteSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -3052,7 +3248,7 @@ func (m *DeleteSnapshotResponse) Reset() { *m = DeleteSnapshotResponse{} func (m *DeleteSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotResponse) ProtoMessage() {} func (*DeleteSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{34} + return fileDescriptor_9cdb00adce470e01, []int{36} } func (m *DeleteSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -3112,7 +3308,7 @@ func (m *ListSnapshotsRequest) Reset() { *m = ListSnapshotsRequest{} } func (m *ListSnapshotsRequest) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsRequest) ProtoMessage() {} func (*ListSnapshotsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{35} + return fileDescriptor_9cdb00adce470e01, []int{37} } func (m *ListSnapshotsRequest) XXX_Unmarshal(b []byte) error { @@ -3186,7 +3382,7 @@ func (m *ListSnapshotsResponse) Reset() { *m = ListSnapshotsResponse{} } func (m *ListSnapshotsResponse) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsResponse) ProtoMessage() {} func (*ListSnapshotsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{36} + return fileDescriptor_9cdb00adce470e01, []int{38} } func (m *ListSnapshotsResponse) XXX_Unmarshal(b []byte) error { @@ -3232,7 +3428,7 @@ func (m *ListSnapshotsResponse_Entry) Reset() { *m = ListSnapshotsRespon func (m *ListSnapshotsResponse_Entry) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsResponse_Entry) ProtoMessage() {} func (*ListSnapshotsResponse_Entry) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{36, 0} + return fileDescriptor_9cdb00adce470e01, []int{38, 0} } func (m *ListSnapshotsResponse_Entry) XXX_Unmarshal(b []byte) error { @@ -3286,7 +3482,7 @@ func (m *ControllerExpandVolumeRequest) Reset() { *m = ControllerExpandV func (m *ControllerExpandVolumeRequest) String() string { return proto.CompactTextString(m) } func (*ControllerExpandVolumeRequest) ProtoMessage() {} func (*ControllerExpandVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{37} + return fileDescriptor_9cdb00adce470e01, []int{39} } func (m *ControllerExpandVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3351,7 +3547,7 @@ func (m *ControllerExpandVolumeResponse) Reset() { *m = ControllerExpand func (m *ControllerExpandVolumeResponse) String() string { return proto.CompactTextString(m) } func (*ControllerExpandVolumeResponse) ProtoMessage() {} func (*ControllerExpandVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{38} + return fileDescriptor_9cdb00adce470e01, []int{40} } func (m *ControllerExpandVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3428,7 +3624,7 @@ func (m *NodeStageVolumeRequest) Reset() { *m = NodeStageVolumeRequest{} func (m *NodeStageVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeStageVolumeRequest) ProtoMessage() {} func (*NodeStageVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{39} + return fileDescriptor_9cdb00adce470e01, []int{41} } func (m *NodeStageVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3501,7 +3697,7 @@ func (m *NodeStageVolumeResponse) Reset() { *m = NodeStageVolumeResponse func (m *NodeStageVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeStageVolumeResponse) ProtoMessage() {} func (*NodeStageVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{40} + return fileDescriptor_9cdb00adce470e01, []int{42} } func (m *NodeStageVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3538,7 +3734,7 @@ func (m *NodeUnstageVolumeRequest) Reset() { *m = NodeUnstageVolumeReque func (m *NodeUnstageVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeUnstageVolumeRequest) ProtoMessage() {} func (*NodeUnstageVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{41} + return fileDescriptor_9cdb00adce470e01, []int{43} } func (m *NodeUnstageVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3583,7 +3779,7 @@ func (m *NodeUnstageVolumeResponse) Reset() { *m = NodeUnstageVolumeResp func (m *NodeUnstageVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeUnstageVolumeResponse) ProtoMessage() {} func (*NodeUnstageVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{42} + return fileDescriptor_9cdb00adce470e01, []int{44} } func (m *NodeUnstageVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3659,7 +3855,7 @@ func (m *NodePublishVolumeRequest) Reset() { *m = NodePublishVolumeReque func (m *NodePublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeRequest) ProtoMessage() {} func (*NodePublishVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{43} + return fileDescriptor_9cdb00adce470e01, []int{45} } func (m *NodePublishVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3746,7 +3942,7 @@ func (m *NodePublishVolumeResponse) Reset() { *m = NodePublishVolumeResp func (m *NodePublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeResponse) ProtoMessage() {} func (*NodePublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{44} + return fileDescriptor_9cdb00adce470e01, []int{46} } func (m *NodePublishVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3784,7 +3980,7 @@ func (m *NodeUnpublishVolumeRequest) Reset() { *m = NodeUnpublishVolumeR func (m *NodeUnpublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeRequest) ProtoMessage() {} func (*NodeUnpublishVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{45} + return fileDescriptor_9cdb00adce470e01, []int{47} } func (m *NodeUnpublishVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3829,7 +4025,7 @@ func (m *NodeUnpublishVolumeResponse) Reset() { *m = NodeUnpublishVolume func (m *NodeUnpublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeResponse) ProtoMessage() {} func (*NodeUnpublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{46} + return fileDescriptor_9cdb00adce470e01, []int{48} } func (m *NodeUnpublishVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3874,7 +4070,7 @@ func (m *NodeGetVolumeStatsRequest) Reset() { *m = NodeGetVolumeStatsReq func (m *NodeGetVolumeStatsRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetVolumeStatsRequest) ProtoMessage() {} func (*NodeGetVolumeStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{47} + return fileDescriptor_9cdb00adce470e01, []int{49} } func (m *NodeGetVolumeStatsRequest) XXX_Unmarshal(b []byte) error { @@ -3918,17 +4114,22 @@ func (m *NodeGetVolumeStatsRequest) GetStagingTargetPath() string { type NodeGetVolumeStatsResponse struct { // This field is OPTIONAL. - Usage []*VolumeUsage `protobuf:"bytes,1,rep,name=usage,proto3" json:"usage,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Usage []*VolumeUsage `protobuf:"bytes,1,rep,name=usage,proto3" json:"usage,omitempty"` + // Information about the current condition of the volume. + // This field is OPTIONAL. + // This field MUST be specified if the VOLUME_CONDITION node + // capability is supported. + VolumeCondition *VolumeCondition `protobuf:"bytes,2,opt,name=volume_condition,json=volumeCondition,proto3" json:"volume_condition,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *NodeGetVolumeStatsResponse) Reset() { *m = NodeGetVolumeStatsResponse{} } func (m *NodeGetVolumeStatsResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetVolumeStatsResponse) ProtoMessage() {} func (*NodeGetVolumeStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{48} + return fileDescriptor_9cdb00adce470e01, []int{50} } func (m *NodeGetVolumeStatsResponse) XXX_Unmarshal(b []byte) error { @@ -3956,6 +4157,13 @@ func (m *NodeGetVolumeStatsResponse) GetUsage() []*VolumeUsage { return nil } +func (m *NodeGetVolumeStatsResponse) GetVolumeCondition() *VolumeCondition { + if m != nil { + return m.VolumeCondition + } + return nil +} + type VolumeUsage struct { // The available capacity in specified Unit. This field is OPTIONAL. // The value of this field MUST NOT be negative. @@ -3977,7 +4185,7 @@ func (m *VolumeUsage) Reset() { *m = VolumeUsage{} } func (m *VolumeUsage) String() string { return proto.CompactTextString(m) } func (*VolumeUsage) ProtoMessage() {} func (*VolumeUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{49} + return fileDescriptor_9cdb00adce470e01, []int{51} } func (m *VolumeUsage) XXX_Unmarshal(b []byte) error { @@ -4026,6 +4234,59 @@ func (m *VolumeUsage) GetUnit() VolumeUsage_Unit { return VolumeUsage_UNKNOWN } +// VolumeCondition represents the current condition of a volume. +type VolumeCondition struct { + // Normal volumes are available for use and operating optimally. + // An abnormal volume does not meet these criteria. + // This field is REQUIRED. + Abnormal bool `protobuf:"varint,1,opt,name=abnormal,proto3" json:"abnormal,omitempty"` + // The message describing the condition of the volume. + // This field is REQUIRED. + Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *VolumeCondition) Reset() { *m = VolumeCondition{} } +func (m *VolumeCondition) String() string { return proto.CompactTextString(m) } +func (*VolumeCondition) ProtoMessage() {} +func (*VolumeCondition) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{52} +} + +func (m *VolumeCondition) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VolumeCondition.Unmarshal(m, b) +} +func (m *VolumeCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VolumeCondition.Marshal(b, m, deterministic) +} +func (m *VolumeCondition) XXX_Merge(src proto.Message) { + xxx_messageInfo_VolumeCondition.Merge(m, src) +} +func (m *VolumeCondition) XXX_Size() int { + return xxx_messageInfo_VolumeCondition.Size(m) +} +func (m *VolumeCondition) XXX_DiscardUnknown() { + xxx_messageInfo_VolumeCondition.DiscardUnknown(m) +} + +var xxx_messageInfo_VolumeCondition proto.InternalMessageInfo + +func (m *VolumeCondition) GetAbnormal() bool { + if m != nil { + return m.Abnormal + } + return false +} + +func (m *VolumeCondition) GetMessage() string { + if m != nil { + return m.Message + } + return "" +} + type NodeGetCapabilitiesRequest struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -4036,7 +4297,7 @@ func (m *NodeGetCapabilitiesRequest) Reset() { *m = NodeGetCapabilitiesR func (m *NodeGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesRequest) ProtoMessage() {} func (*NodeGetCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{50} + return fileDescriptor_9cdb00adce470e01, []int{53} } func (m *NodeGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { @@ -4070,7 +4331,7 @@ func (m *NodeGetCapabilitiesResponse) Reset() { *m = NodeGetCapabilities func (m *NodeGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesResponse) ProtoMessage() {} func (*NodeGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{51} + return fileDescriptor_9cdb00adce470e01, []int{54} } func (m *NodeGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { @@ -4112,7 +4373,7 @@ func (m *NodeServiceCapability) Reset() { *m = NodeServiceCapability{} } func (m *NodeServiceCapability) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability) ProtoMessage() {} func (*NodeServiceCapability) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{52} + return fileDescriptor_9cdb00adce470e01, []int{55} } func (m *NodeServiceCapability) XXX_Unmarshal(b []byte) error { @@ -4175,7 +4436,7 @@ func (m *NodeServiceCapability_RPC) Reset() { *m = NodeServiceCapability func (m *NodeServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability_RPC) ProtoMessage() {} func (*NodeServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{52, 0} + return fileDescriptor_9cdb00adce470e01, []int{55, 0} } func (m *NodeServiceCapability_RPC) XXX_Unmarshal(b []byte) error { @@ -4213,7 +4474,7 @@ func (m *NodeGetInfoRequest) Reset() { *m = NodeGetInfoRequest{} } func (m *NodeGetInfoRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetInfoRequest) ProtoMessage() {} func (*NodeGetInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{53} + return fileDescriptor_9cdb00adce470e01, []int{56} } func (m *NodeGetInfoRequest) XXX_Unmarshal(b []byte) error { @@ -4277,7 +4538,7 @@ func (m *NodeGetInfoResponse) Reset() { *m = NodeGetInfoResponse{} } func (m *NodeGetInfoResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetInfoResponse) ProtoMessage() {} func (*NodeGetInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{54} + return fileDescriptor_9cdb00adce470e01, []int{57} } func (m *NodeGetInfoResponse) XXX_Unmarshal(b []byte) error { @@ -4356,7 +4617,7 @@ func (m *NodeExpandVolumeRequest) Reset() { *m = NodeExpandVolumeRequest func (m *NodeExpandVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeExpandVolumeRequest) ProtoMessage() {} func (*NodeExpandVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{55} + return fileDescriptor_9cdb00adce470e01, []int{58} } func (m *NodeExpandVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -4424,7 +4685,7 @@ func (m *NodeExpandVolumeResponse) Reset() { *m = NodeExpandVolumeRespon func (m *NodeExpandVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeExpandVolumeResponse) ProtoMessage() {} func (*NodeExpandVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{56} + return fileDescriptor_9cdb00adce470e01, []int{59} } func (m *NodeExpandVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -4572,6 +4833,9 @@ func init() { proto.RegisterType((*ListVolumesResponse)(nil), "csi.v1.ListVolumesResponse") proto.RegisterType((*ListVolumesResponse_VolumeStatus)(nil), "csi.v1.ListVolumesResponse.VolumeStatus") proto.RegisterType((*ListVolumesResponse_Entry)(nil), "csi.v1.ListVolumesResponse.Entry") + proto.RegisterType((*ControllerGetVolumeRequest)(nil), "csi.v1.ControllerGetVolumeRequest") + proto.RegisterType((*ControllerGetVolumeResponse)(nil), "csi.v1.ControllerGetVolumeResponse") + proto.RegisterType((*ControllerGetVolumeResponse_VolumeStatus)(nil), "csi.v1.ControllerGetVolumeResponse.VolumeStatus") proto.RegisterType((*GetCapacityRequest)(nil), "csi.v1.GetCapacityRequest") proto.RegisterMapType((map[string]string)(nil), "csi.v1.GetCapacityRequest.ParametersEntry") proto.RegisterType((*GetCapacityResponse)(nil), "csi.v1.GetCapacityResponse") @@ -4611,6 +4875,7 @@ func init() { proto.RegisterType((*NodeGetVolumeStatsRequest)(nil), "csi.v1.NodeGetVolumeStatsRequest") proto.RegisterType((*NodeGetVolumeStatsResponse)(nil), "csi.v1.NodeGetVolumeStatsResponse") proto.RegisterType((*VolumeUsage)(nil), "csi.v1.VolumeUsage") + proto.RegisterType((*VolumeCondition)(nil), "csi.v1.VolumeCondition") proto.RegisterType((*NodeGetCapabilitiesRequest)(nil), "csi.v1.NodeGetCapabilitiesRequest") proto.RegisterType((*NodeGetCapabilitiesResponse)(nil), "csi.v1.NodeGetCapabilitiesResponse") proto.RegisterType((*NodeServiceCapability)(nil), "csi.v1.NodeServiceCapability") @@ -4633,226 +4898,236 @@ func init() { } var fileDescriptor_9cdb00adce470e01 = []byte{ - // 3490 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5b, 0x4f, 0x70, 0xdb, 0xc6, - 0xd5, 0x17, 0xf8, 0x47, 0x7f, 0x1e, 0x25, 0x99, 0x5e, 0xfd, 0x31, 0x0d, 0x49, 0xb6, 0x0c, 0xc7, - 0x8e, 0xec, 0xd8, 0xf4, 0x17, 0x27, 0xce, 0x7c, 0x91, 0x95, 0x2f, 0xa1, 0x28, 0x58, 0x62, 0x4c, - 0x53, 0x0a, 0x48, 0xc9, 0xb1, 0xbf, 0x2f, 0x83, 0x40, 0xe4, 0x8a, 0xc6, 0x84, 0x04, 0x18, 0x00, - 0xd4, 0x27, 0xf5, 0xd2, 0x99, 0xf6, 0xd4, 0x69, 0xef, 0x6d, 0x4f, 0x9d, 0x49, 0x7b, 0x6a, 0x9b, - 0xc9, 0xa9, 0xd3, 0x63, 0x67, 0x7a, 0xe8, 0xa1, 0x87, 0x4e, 0x6f, 0xed, 0xf4, 0x92, 0x6b, 0x27, - 0xd3, 0xce, 0x64, 0x7a, 0xec, 0xf4, 0xd0, 0xc1, 0xee, 0x02, 0x04, 0x40, 0x00, 0x24, 0x2d, 0x7b, - 0x72, 0xe8, 0x49, 0xc4, 0xdb, 0xf7, 0xde, 0xbe, 0x5d, 0xbc, 0xf7, 0xf6, 0xbd, 0xdf, 0x42, 0x70, - 0xaf, 0xa9, 0x5a, 0xcf, 0xba, 0x87, 0xf9, 0xba, 0xde, 0xbe, 0x53, 0xd7, 0x35, 0x4b, 0x51, 0x35, - 0x6c, 0xdc, 0x36, 0x2d, 0xdd, 0x50, 0x9a, 0xf8, 0xb6, 0xaa, 0x59, 0xd8, 0x38, 0x52, 0xea, 0xf8, - 0x8e, 0xd9, 0xc1, 0xf5, 0x3b, 0x75, 0x53, 0xcd, 0x77, 0x0c, 0xdd, 0xd2, 0xd1, 0xb8, 0xfd, 0xf3, - 0xf8, 0x75, 0x7e, 0xb5, 0xa9, 0xeb, 0xcd, 0x16, 0xbe, 0x43, 0xa8, 0x87, 0xdd, 0xa3, 0x3b, 0x0d, - 0x6c, 0xd6, 0x0d, 0xb5, 0x63, 0xe9, 0x06, 0xe5, 0xe4, 0x2f, 0x07, 0x39, 0x2c, 0xb5, 0x8d, 0x4d, - 0x4b, 0x69, 0x77, 0x18, 0xc3, 0xa5, 0x20, 0xc3, 0xff, 0x1b, 0x4a, 0xa7, 0x83, 0x0d, 0x93, 0x8e, - 0x0b, 0x8b, 0x30, 0xbf, 0x8d, 0xad, 0xbd, 0x56, 0xb7, 0xa9, 0x6a, 0x25, 0xed, 0x48, 0x97, 0xf0, - 0xa7, 0x5d, 0x6c, 0x5a, 0xc2, 0x9f, 0x39, 0x58, 0x08, 0x0c, 0x98, 0x1d, 0x5d, 0x33, 0x31, 0x42, - 0x90, 0xd2, 0x94, 0x36, 0xce, 0x71, 0xab, 0xdc, 0xda, 0x94, 0x44, 0x7e, 0xa3, 0x6b, 0x30, 0x7b, - 0x8c, 0xb5, 0x86, 0x6e, 0xc8, 0xc7, 0xd8, 0x30, 0x55, 0x5d, 0xcb, 0x25, 0xc8, 0xe8, 0x0c, 0xa5, - 0x1e, 0x50, 0x22, 0xda, 0x86, 0xc9, 0xb6, 0xa2, 0xa9, 0x47, 0xd8, 0xb4, 0x72, 0xc9, 0xd5, 0xe4, - 0x5a, 0xe6, 0xee, 0x6b, 0x79, 0xba, 0xd4, 0x7c, 0xe8, 0x5c, 0xf9, 0x47, 0x8c, 0x5b, 0xd4, 0x2c, - 0xe3, 0x54, 0x72, 0x85, 0xf9, 0xfb, 0x30, 0xe3, 0x1b, 0x42, 0x59, 0x48, 0x7e, 0x82, 0x4f, 0x99, - 0x4d, 0xf6, 0x4f, 0x34, 0x0f, 0xe9, 0x63, 0xa5, 0xd5, 0xc5, 0xcc, 0x12, 0xfa, 0xb0, 0x9e, 0xf8, - 0x6f, 0x4e, 0xb8, 0x04, 0xcb, 0xee, 0x6c, 0x45, 0xa5, 0xa3, 0x1c, 0xaa, 0x2d, 0xd5, 0x52, 0xb1, - 0xe9, 0x2c, 0xfd, 0x23, 0x58, 0x89, 0x18, 0x67, 0x3b, 0xb0, 0x01, 0xd3, 0x75, 0x0f, 0x3d, 0xc7, - 0x91, 0xa5, 0xe4, 0x9c, 0xa5, 0x04, 0x24, 0x4f, 0x25, 0x1f, 0xb7, 0xf0, 0x87, 0x24, 0x64, 0x83, - 0x2c, 0x68, 0x03, 0x26, 0x4c, 0x6c, 0x1c, 0xab, 0x75, 0xba, 0xaf, 0x99, 0xbb, 0xab, 0x51, 0xda, - 0xf2, 0x55, 0xca, 0xb7, 0x33, 0x26, 0x39, 0x22, 0x68, 0x1f, 0xb2, 0xc7, 0x7a, 0xab, 0xdb, 0xc6, - 0x32, 0x3e, 0xe9, 0x28, 0x9a, 0xfb, 0x02, 0x32, 0x77, 0xd7, 0x22, 0xd5, 0x1c, 0x10, 0x01, 0xd1, - 0xe1, 0xdf, 0x19, 0x93, 0xce, 0x1d, 0xfb, 0x49, 0xfc, 0x0f, 0x39, 0x98, 0x60, 0xb3, 0xa1, 0xb7, - 0x21, 0x65, 0x9d, 0x76, 0xa8, 0x75, 0xb3, 0x77, 0xaf, 0x0d, 0xb2, 0x2e, 0x5f, 0x3b, 0xed, 0x60, - 0x89, 0x88, 0x08, 0x1f, 0x40, 0xca, 0x7e, 0x42, 0x19, 0x98, 0xd8, 0xaf, 0x3c, 0xac, 0xec, 0x3e, - 0xae, 0x64, 0xc7, 0xd0, 0x22, 0xa0, 0xe2, 0x6e, 0xa5, 0x26, 0xed, 0x96, 0xcb, 0xa2, 0x24, 0x57, - 0x45, 0xe9, 0xa0, 0x54, 0x14, 0xb3, 0x1c, 0x7a, 0x05, 0x56, 0x0f, 0x76, 0xcb, 0xfb, 0x8f, 0x44, - 0xb9, 0x50, 0x2c, 0x8a, 0xd5, 0x6a, 0x69, 0xb3, 0x54, 0x2e, 0xd5, 0x9e, 0xc8, 0xc5, 0xdd, 0x4a, - 0xb5, 0x26, 0x15, 0x4a, 0x95, 0x5a, 0x35, 0x9b, 0xe0, 0xbf, 0xc3, 0xc1, 0xb9, 0xc0, 0x02, 0x50, - 0xc1, 0x67, 0xe1, 0xed, 0x61, 0x17, 0xee, 0xb5, 0xf4, 0x56, 0x98, 0xa5, 0x00, 0xe3, 0xbb, 0x95, - 0x72, 0xa9, 0x62, 0x5b, 0x97, 0x81, 0x89, 0xdd, 0x07, 0x0f, 0xc8, 0x43, 0x62, 0x73, 0x9c, 0x4e, - 0x28, 0xcc, 0xc2, 0xf4, 0x9e, 0xa1, 0x1f, 0x62, 0xc7, 0x7f, 0x0a, 0x30, 0xc3, 0x9e, 0x99, 0xbf, - 0xfc, 0x17, 0xa4, 0x0d, 0xac, 0x34, 0x4e, 0xd9, 0xab, 0xe5, 0xf3, 0x34, 0x26, 0xf3, 0x4e, 0x4c, - 0xe6, 0x37, 0x75, 0xbd, 0x75, 0x60, 0xfb, 0xa7, 0x44, 0x19, 0x85, 0xaf, 0x53, 0x30, 0x57, 0x34, - 0xb0, 0x62, 0x61, 0x6a, 0x2d, 0x53, 0x1d, 0x1a, 0x7b, 0x1b, 0x30, 0x6b, 0xfb, 0x57, 0x5d, 0xb5, - 0x4e, 0x65, 0x43, 0xd1, 0x9a, 0x98, 0xbd, 0xfa, 0x05, 0x67, 0x07, 0x8a, 0x6c, 0x54, 0xb2, 0x07, - 0xa5, 0x99, 0xba, 0xf7, 0x11, 0x95, 0x60, 0x8e, 0xb9, 0x8e, 0xcf, 0xa5, 0x93, 0x7e, 0x97, 0xa6, - 0x56, 0x78, 0x5c, 0x1a, 0x1d, 0xfb, 0x29, 0x2a, 0x36, 0xd1, 0x43, 0x80, 0x8e, 0x62, 0x28, 0x6d, - 0x6c, 0x61, 0xc3, 0xcc, 0xa5, 0xfc, 0xf1, 0x1d, 0xb2, 0x9a, 0xfc, 0x9e, 0xcb, 0x4d, 0xe3, 0xdb, - 0x23, 0x8e, 0xb6, 0xed, 0x80, 0xa8, 0x1b, 0xd8, 0x32, 0x73, 0x69, 0xa2, 0x69, 0x2d, 0x4e, 0x53, - 0x95, 0xb2, 0x12, 0x35, 0x9b, 0xc9, 0x1f, 0x6d, 0x72, 0x92, 0x23, 0x8d, 0x76, 0x61, 0xc1, 0x59, - 0xa0, 0xae, 0x59, 0x58, 0xb3, 0x64, 0x53, 0xef, 0x1a, 0x75, 0x9c, 0x1b, 0x27, 0xbb, 0xb4, 0x14, - 0x58, 0x22, 0xe5, 0xa9, 0x12, 0x16, 0x89, 0x6d, 0x8d, 0x8f, 0x88, 0x9e, 0x02, 0xaf, 0xd4, 0xeb, - 0xd8, 0x34, 0x55, 0xba, 0x17, 0xb2, 0x81, 0x3f, 0xed, 0xaa, 0x06, 0x6e, 0x63, 0xcd, 0x32, 0x73, - 0x13, 0x7e, 0xad, 0x35, 0xbd, 0xa3, 0xb7, 0xf4, 0xe6, 0xa9, 0xd4, 0xe3, 0x91, 0x2e, 0xfa, 0xc4, - 0x3d, 0x23, 0x26, 0xff, 0x0e, 0x9c, 0x0b, 0x6c, 0xca, 0x28, 0x99, 0x8d, 0x5f, 0x87, 0x69, 0xef, - 0x4e, 0x8c, 0x94, 0x15, 0xbf, 0x9f, 0x80, 0xb9, 0x90, 0x3d, 0x40, 0x3b, 0x30, 0x69, 0x6a, 0x4a, - 0xc7, 0x7c, 0xa6, 0x5b, 0xcc, 0x7f, 0x6f, 0xc6, 0x6c, 0x59, 0xbe, 0xca, 0x78, 0xe9, 0xe3, 0xce, - 0x98, 0xe4, 0x4a, 0xa3, 0x4d, 0x18, 0xa7, 0xfb, 0x19, 0xcc, 0x4d, 0x61, 0x7a, 0x28, 0xcd, 0xd5, - 0xc2, 0x24, 0xf9, 0xd7, 0x61, 0xd6, 0x3f, 0x03, 0xba, 0x0c, 0x19, 0x67, 0x06, 0x59, 0x6d, 0xb0, - 0xb5, 0x82, 0x43, 0x2a, 0x35, 0xf8, 0xd7, 0x60, 0xda, 0xab, 0x0c, 0x2d, 0xc1, 0x14, 0x73, 0x08, - 0x97, 0x7d, 0x92, 0x12, 0x4a, 0x0d, 0x37, 0xa6, 0xff, 0x07, 0xe6, 0xfd, 0x7e, 0xc6, 0x42, 0xf9, - 0xba, 0xbb, 0x06, 0xba, 0x17, 0xb3, 0xfe, 0x35, 0x38, 0x76, 0x0a, 0x3f, 0x4f, 0x41, 0x36, 0x18, - 0x34, 0x68, 0x03, 0xd2, 0x87, 0x2d, 0xbd, 0xfe, 0x09, 0x93, 0x7d, 0x25, 0x2a, 0xba, 0xf2, 0x9b, - 0x36, 0x17, 0xa5, 0xee, 0x8c, 0x49, 0x54, 0xc8, 0x96, 0x6e, 0xeb, 0x5d, 0xcd, 0x62, 0xbb, 0x17, - 0x2d, 0xfd, 0xc8, 0xe6, 0xea, 0x49, 0x13, 0x21, 0xb4, 0x05, 0x19, 0xea, 0x76, 0x72, 0x5b, 0x6f, - 0xe0, 0x5c, 0x92, 0xe8, 0xb8, 0x1a, 0xa9, 0xa3, 0x40, 0x78, 0x1f, 0xe9, 0x0d, 0x2c, 0x81, 0xe2, - 0xfe, 0xe6, 0x67, 0x20, 0xe3, 0xb1, 0x8d, 0xdf, 0x86, 0x8c, 0x67, 0x32, 0x74, 0x01, 0x26, 0x8e, - 0x4c, 0xd9, 0x4d, 0xc2, 0x53, 0xd2, 0xf8, 0x91, 0x49, 0xf2, 0xe9, 0x65, 0xc8, 0x10, 0x2b, 0xe4, - 0xa3, 0x96, 0xd2, 0x34, 0x73, 0x89, 0xd5, 0xa4, 0xfd, 0x8e, 0x08, 0xe9, 0x81, 0x4d, 0xe1, 0xff, - 0xc6, 0x01, 0xf4, 0xa6, 0x44, 0x1b, 0x90, 0x22, 0x56, 0xd2, 0x54, 0xbe, 0x36, 0x84, 0x95, 0x79, - 0x62, 0x2a, 0x91, 0x12, 0x7e, 0xc2, 0x41, 0x8a, 0xa8, 0x09, 0x1e, 0x38, 0xd5, 0x52, 0x65, 0xbb, - 0x2c, 0xca, 0x95, 0xdd, 0x2d, 0x51, 0x7e, 0x2c, 0x95, 0x6a, 0xa2, 0x94, 0xe5, 0xd0, 0x12, 0x5c, - 0xf0, 0xd2, 0x25, 0xb1, 0xb0, 0x25, 0x4a, 0xf2, 0x6e, 0xa5, 0xfc, 0x24, 0x9b, 0x40, 0x3c, 0x2c, - 0x3e, 0xda, 0x2f, 0xd7, 0x4a, 0xfd, 0x63, 0x49, 0xb4, 0x0c, 0x39, 0xcf, 0x18, 0xd3, 0xc1, 0xd4, - 0xa6, 0x6c, 0xb5, 0x9e, 0x51, 0xfa, 0x93, 0x0d, 0xa6, 0x37, 0x67, 0xdc, 0x97, 0x41, 0x9c, 0xed, - 0x31, 0xcc, 0xf8, 0x72, 0xb4, 0x5d, 0x4e, 0xb1, 0xa4, 0xd2, 0x90, 0x0f, 0x4f, 0x2d, 0x52, 0x62, - 0x70, 0x6b, 0x49, 0x69, 0xc6, 0xa1, 0x6e, 0xda, 0x44, 0x7b, 0x5b, 0x5b, 0x6a, 0x5b, 0xb5, 0x18, - 0x4f, 0x82, 0xf0, 0x00, 0x21, 0x11, 0x06, 0xe1, 0xcb, 0x04, 0x8c, 0xb3, 0x77, 0x73, 0xcd, 0x73, - 0x4a, 0xf8, 0x54, 0x3a, 0x54, 0xaa, 0xd2, 0x17, 0x1c, 0x09, 0x7f, 0x70, 0xa0, 0x1d, 0x98, 0xf5, - 0xa6, 0xd2, 0x13, 0xa7, 0x88, 0xbb, 0xe2, 0x7f, 0x41, 0xde, 0x78, 0x3e, 0x61, 0xa5, 0xdb, 0xcc, - 0xb1, 0x97, 0x86, 0x36, 0x61, 0x36, 0x90, 0x8d, 0x53, 0x83, 0xb3, 0xf1, 0x4c, 0xdd, 0x97, 0x98, - 0x0a, 0x30, 0xe7, 0x24, 0xd2, 0x16, 0x96, 0x2d, 0x96, 0x68, 0xd9, 0x69, 0x91, 0xed, 0x4b, 0xc0, - 0xa8, 0xc7, 0xec, 0xd0, 0xf8, 0xf7, 0x00, 0xf5, 0xdb, 0x3a, 0x52, 0xd6, 0xec, 0xc2, 0x5c, 0x48, - 0x8a, 0x47, 0x79, 0x98, 0x22, 0xaf, 0xca, 0x54, 0x2d, 0xcc, 0xca, 0xc3, 0x7e, 0x8b, 0x7a, 0x2c, - 0x36, 0x7f, 0xc7, 0xc0, 0x47, 0xd8, 0x30, 0x70, 0x83, 0x84, 0x47, 0x28, 0xbf, 0xcb, 0x22, 0x7c, - 0x97, 0x83, 0x49, 0x87, 0x8e, 0xd6, 0x61, 0xd2, 0xc4, 0x4d, 0x7a, 0xfc, 0xd0, 0xb9, 0x2e, 0x05, - 0x65, 0xf3, 0x55, 0xc6, 0xc0, 0x0a, 0x69, 0x87, 0xdf, 0x2e, 0xa4, 0x7d, 0x43, 0x23, 0x2d, 0xfe, - 0xd7, 0x1c, 0xcc, 0x6d, 0xe1, 0x16, 0x0e, 0x56, 0x29, 0x71, 0x19, 0xd6, 0x7b, 0xb0, 0x27, 0xfc, - 0x07, 0x7b, 0x88, 0xaa, 0x98, 0x83, 0xfd, 0x4c, 0x87, 0xdd, 0x22, 0xcc, 0xfb, 0x67, 0xa3, 0xe9, - 0x5d, 0xf8, 0x7b, 0x12, 0x2e, 0xd9, 0xbe, 0x60, 0xe8, 0xad, 0x16, 0x36, 0xf6, 0xba, 0x87, 0x2d, - 0xd5, 0x7c, 0x36, 0xc2, 0xe2, 0x2e, 0xc0, 0x84, 0xa6, 0x37, 0x3c, 0xc1, 0x33, 0x6e, 0x3f, 0x96, - 0x1a, 0x48, 0x84, 0xf3, 0xc1, 0x32, 0xeb, 0x94, 0x25, 0xe1, 0xe8, 0x22, 0x2b, 0x7b, 0x1c, 0x3c, - 0x41, 0x78, 0x98, 0xb4, 0x0b, 0x44, 0x5d, 0x6b, 0x9d, 0x92, 0x88, 0x99, 0x94, 0xdc, 0x67, 0x24, - 0x05, 0x2b, 0xa6, 0x37, 0xdc, 0x8a, 0x29, 0x76, 0x45, 0x71, 0xc5, 0xd3, 0xc7, 0x7d, 0x11, 0x3f, - 0x4e, 0x54, 0xbf, 0x3d, 0xa4, 0xea, 0x81, 0x99, 0xe0, 0x2c, 0x6f, 0xf1, 0x05, 0x84, 0xef, 0xef, - 0x39, 0xb8, 0x1c, 0xb9, 0x04, 0x76, 0xe4, 0x37, 0xe0, 0x5c, 0x87, 0x0e, 0xb8, 0x9b, 0x40, 0xa3, - 0xec, 0xfe, 0xc0, 0x4d, 0x60, 0x5d, 0x2c, 0xa3, 0xfa, 0xb6, 0x61, 0xb6, 0xe3, 0x23, 0xf2, 0x05, - 0x98, 0x0b, 0x61, 0x1b, 0x69, 0x31, 0x5f, 0x71, 0xb0, 0xda, 0x33, 0x65, 0x5f, 0xeb, 0xbc, 0x38, - 0xf7, 0xad, 0xf5, 0x7c, 0x8b, 0xa6, 0xfc, 0x7b, 0xfd, 0x6b, 0x0f, 0x9f, 0xf0, 0x65, 0x45, 0xf0, - 0x55, 0xb8, 0x12, 0x33, 0x35, 0x0b, 0xe7, 0x2f, 0x53, 0x70, 0xe5, 0x40, 0x69, 0xa9, 0x0d, 0xb7, - 0x90, 0x0b, 0xe9, 0xf7, 0xe3, 0xb7, 0xa4, 0xde, 0x17, 0x01, 0x34, 0x6b, 0x6d, 0xb8, 0x51, 0x3b, - 0x48, 0xff, 0x10, 0xc7, 0xe1, 0x0b, 0x6c, 0xc2, 0x9e, 0x84, 0x34, 0x61, 0x6f, 0x0f, 0x6f, 0x6b, - 0x5c, 0x4b, 0xb6, 0x1f, 0x4c, 0x30, 0x6f, 0x0d, 0xaf, 0x37, 0xc6, 0x0b, 0xce, 0x1c, 0xc5, 0xdf, - 0x64, 0xd7, 0xf4, 0xdb, 0x14, 0x08, 0x71, 0xab, 0x67, 0x39, 0x44, 0x82, 0xa9, 0xba, 0xae, 0x1d, - 0xa9, 0x46, 0x1b, 0x37, 0x58, 0xf5, 0xff, 0xe6, 0x30, 0x9b, 0xc7, 0x12, 0x48, 0xd1, 0x91, 0x95, - 0x7a, 0x6a, 0x50, 0x0e, 0x26, 0xda, 0xd8, 0x34, 0x95, 0xa6, 0x63, 0x96, 0xf3, 0xc8, 0x7f, 0x9e, - 0x84, 0x29, 0x57, 0x04, 0x69, 0x7d, 0x1e, 0x4c, 0xd3, 0xd7, 0xf6, 0xf3, 0x18, 0xf0, 0xfc, 0xce, - 0x9c, 0x78, 0x0e, 0x67, 0x6e, 0xf8, 0x9c, 0x99, 0x86, 0xc3, 0xd6, 0x73, 0x99, 0x1d, 0xe3, 0xd7, - 0xdf, 0xb8, 0x03, 0x0a, 0xff, 0x07, 0xa8, 0xac, 0x9a, 0xac, 0x8b, 0x72, 0xd3, 0x92, 0xdd, 0x34, - 0x29, 0x27, 0x32, 0xd6, 0x2c, 0x43, 0x65, 0xe5, 0x7a, 0x5a, 0x82, 0xb6, 0x72, 0x22, 0x52, 0x8a, - 0x5d, 0xd2, 0x9b, 0x96, 0x62, 0x58, 0xaa, 0xd6, 0x94, 0x2d, 0xfd, 0x13, 0xec, 0x82, 0xae, 0x0e, - 0xb5, 0x66, 0x13, 0x85, 0xcf, 0x12, 0x30, 0xe7, 0x53, 0xcf, 0x7c, 0xf2, 0x3e, 0x4c, 0xf4, 0x74, - 0xfb, 0xca, 0xf8, 0x10, 0xee, 0x3c, 0xdd, 0x36, 0x47, 0x02, 0xad, 0x00, 0x68, 0xf8, 0xc4, 0xf2, - 0xcd, 0x3b, 0x65, 0x53, 0xc8, 0x9c, 0xfc, 0x86, 0xdb, 0x73, 0x5b, 0x8a, 0xd5, 0x35, 0xd1, 0x2d, - 0x40, 0x2c, 0x43, 0xe3, 0x86, 0xcc, 0x8e, 0x18, 0x3a, 0xed, 0x94, 0x94, 0x75, 0x47, 0x2a, 0xe4, - 0xb0, 0x31, 0xf9, 0x4f, 0x21, 0x4d, 0x37, 0x71, 0xc8, 0x6e, 0x1b, 0xbd, 0x07, 0xe3, 0x26, 0x99, - 0x28, 0x88, 0x2c, 0x84, 0xad, 0xc4, 0x6b, 0x98, 0xc4, 0xe4, 0x84, 0xcf, 0x13, 0x80, 0xb6, 0xb1, - 0xe5, 0xb6, 0x61, 0xec, 0x1d, 0x44, 0xf8, 0x32, 0xf7, 0x1c, 0xbe, 0xfc, 0xbe, 0xcf, 0x97, 0x69, - 0x34, 0xdc, 0xf4, 0xa0, 0xdf, 0x81, 0xa9, 0x63, 0x33, 0x71, 0x44, 0xeb, 0x43, 0xeb, 0xc9, 0xe1, - 0x5a, 0x9f, 0x33, 0xba, 0xec, 0x16, 0xcc, 0xf9, 0x6c, 0x66, 0x3e, 0x75, 0x1b, 0x90, 0x72, 0xac, - 0xa8, 0x2d, 0xc5, 0xb6, 0xcb, 0xe9, 0x2c, 0x59, 0xa7, 0x79, 0xde, 0x1d, 0x71, 0xc4, 0x04, 0xc1, - 0x5b, 0xb0, 0x30, 0x7d, 0x41, 0x34, 0xbe, 0xe5, 0x3d, 0xe8, 0xfb, 0x78, 0xd8, 0xbc, 0xdb, 0xa1, - 0x88, 0xfc, 0xd5, 0xfe, 0x22, 0x85, 0xc1, 0xd3, 0x91, 0xe0, 0xfc, 0x2f, 0x92, 0xb0, 0x14, 0xc3, - 0x8d, 0xee, 0x43, 0xd2, 0xe8, 0xd4, 0x99, 0x3b, 0xbe, 0x3a, 0x84, 0xfe, 0xbc, 0xb4, 0x57, 0xdc, - 0x19, 0x93, 0x6c, 0x29, 0xfe, 0x77, 0x09, 0x48, 0x4a, 0x7b, 0x45, 0xf4, 0x9e, 0x0f, 0xa9, 0xbe, - 0x35, 0xa4, 0x16, 0x2f, 0x50, 0xfd, 0x2f, 0x2e, 0x0c, 0xa9, 0xce, 0xc1, 0x7c, 0x51, 0x12, 0x0b, - 0x35, 0x51, 0xde, 0x12, 0xcb, 0x62, 0x4d, 0x94, 0x29, 0x92, 0x9e, 0xe5, 0xd0, 0x32, 0xe4, 0xf6, - 0xf6, 0x37, 0xcb, 0xa5, 0xea, 0x8e, 0xbc, 0x5f, 0x71, 0x7e, 0xb1, 0xd1, 0x04, 0xca, 0xc2, 0x74, - 0xb9, 0x54, 0xad, 0x31, 0x42, 0x35, 0x9b, 0xb4, 0x29, 0xdb, 0x62, 0x4d, 0x2e, 0x16, 0xf6, 0x0a, - 0xc5, 0x52, 0xed, 0x49, 0x36, 0x85, 0x78, 0x58, 0xf4, 0xeb, 0xae, 0x56, 0x0a, 0x7b, 0xd5, 0x9d, - 0xdd, 0x5a, 0x36, 0x8d, 0x10, 0xcc, 0x12, 0x79, 0x87, 0x54, 0xcd, 0x8e, 0xdb, 0x1a, 0x8a, 0xe5, - 0xdd, 0x8a, 0x6b, 0xc3, 0x04, 0x9a, 0x87, 0xac, 0x33, 0xb3, 0x24, 0x16, 0xb6, 0x08, 0x8a, 0x32, - 0x89, 0xce, 0xc3, 0x8c, 0xf8, 0xe1, 0x5e, 0xa1, 0xb2, 0xe5, 0x30, 0x4e, 0xa1, 0x55, 0x58, 0xf6, - 0x9a, 0x23, 0x33, 0x29, 0x71, 0x8b, 0x60, 0x29, 0xd5, 0x2c, 0xb8, 0x28, 0xdd, 0x57, 0x09, 0x58, - 0xa0, 0x30, 0x9d, 0x03, 0x0a, 0x3a, 0x81, 0xbb, 0x06, 0x59, 0x0a, 0x2c, 0xc8, 0xc1, 0xd2, 0x6e, - 0x96, 0xd2, 0x0f, 0x9c, 0x02, 0xcf, 0x81, 0xd4, 0x13, 0x1e, 0x48, 0xbd, 0x14, 0x2c, 0x77, 0x6f, - 0xfa, 0xc1, 0xe7, 0xc0, 0x6c, 0x71, 0x1d, 0xd4, 0xa3, 0x90, 0x7a, 0xec, 0x76, 0xbc, 0xb6, 0xb8, - 0xb3, 0xea, 0x2c, 0xed, 0xd2, 0x19, 0x43, 0xfe, 0x01, 0x2c, 0x06, 0xed, 0x65, 0xd1, 0x77, 0xab, - 0x0f, 0x22, 0x76, 0x73, 0x90, 0xcb, 0xeb, 0x72, 0x08, 0x7f, 0xe2, 0x60, 0xd2, 0x21, 0xdb, 0xe7, - 0x88, 0xa9, 0x7e, 0x0b, 0xfb, 0x20, 0xa9, 0x29, 0x9b, 0xe2, 0x22, 0x5c, 0x5e, 0x70, 0x37, 0x11, - 0x04, 0x77, 0x43, 0xdf, 0x73, 0x32, 0xf4, 0x3d, 0xbf, 0x0b, 0x33, 0x75, 0xdb, 0x7c, 0x55, 0xd7, - 0x64, 0x4b, 0x6d, 0x3b, 0x88, 0x53, 0xff, 0x65, 0x4c, 0xcd, 0xb9, 0x41, 0x95, 0xa6, 0x1d, 0x01, - 0x9b, 0x84, 0x56, 0x61, 0x9a, 0x5c, 0xce, 0xc8, 0x96, 0x2e, 0x77, 0x4d, 0x9c, 0x4b, 0x93, 0xfe, - 0x1b, 0x08, 0xad, 0xa6, 0xef, 0x9b, 0x58, 0xf8, 0x0d, 0x07, 0x0b, 0x14, 0x56, 0x08, 0xba, 0xe3, - 0x20, 0x90, 0xda, 0xeb, 0x71, 0x81, 0xa3, 0x21, 0x54, 0xe1, 0xcb, 0xea, 0xaa, 0x72, 0xb0, 0x18, - 0x9c, 0x8f, 0xb5, 0x52, 0x5f, 0x24, 0x60, 0xde, 0x3e, 0x4d, 0x9d, 0x81, 0x17, 0x5d, 0xa6, 0x8c, - 0xf0, 0x26, 0x03, 0x9b, 0x99, 0xea, 0xdb, 0xcc, 0x9d, 0x60, 0xa3, 0x72, 0xc3, 0x5b, 0x0f, 0x04, - 0x57, 0xf0, 0xb2, 0xf6, 0xf2, 0x97, 0x1c, 0x2c, 0x04, 0xe6, 0x63, 0xf1, 0xf2, 0x4e, 0xb0, 0xf2, - 0xba, 0x1a, 0x61, 0xdf, 0x73, 0xd5, 0x5e, 0xf7, 0x9c, 0xea, 0x69, 0xb4, 0xb0, 0xfc, 0x63, 0x02, - 0x56, 0x7a, 0x27, 0x10, 0xb9, 0x1e, 0x6d, 0x8c, 0x00, 0x1d, 0x9c, 0xed, 0x16, 0xf2, 0x83, 0x60, - 0xc2, 0xbd, 0xdb, 0x7f, 0x28, 0x86, 0x98, 0x14, 0x97, 0x78, 0x43, 0x11, 0xb7, 0xd4, 0xa8, 0x88, - 0xdb, 0x99, 0x3c, 0xe0, 0xdb, 0x5e, 0x30, 0xd1, 0x6f, 0x3e, 0xf3, 0x84, 0x21, 0x51, 0xf9, 0xb7, - 0xe0, 0x02, 0x29, 0x9a, 0xdd, 0xdb, 0x7d, 0xe7, 0xce, 0x91, 0xa6, 0xc4, 0x49, 0x69, 0xc1, 0x1e, - 0x76, 0xaf, 0xb4, 0x19, 0x12, 0xdd, 0x10, 0xbe, 0x4e, 0xc1, 0xa2, 0x5d, 0x54, 0x57, 0x2d, 0xa5, - 0x39, 0x0a, 0x46, 0xfb, 0xbf, 0xfd, 0x90, 0x57, 0xc2, 0xff, 0x5a, 0xc2, 0xb5, 0x0e, 0x83, 0x74, - 0xa1, 0x3c, 0xcc, 0x99, 0x96, 0xd2, 0x24, 0xe9, 0x40, 0x31, 0x9a, 0xd8, 0x92, 0x3b, 0x8a, 0xf5, - 0x8c, 0xc5, 0xfa, 0x79, 0x36, 0x54, 0x23, 0x23, 0x7b, 0x8a, 0xf5, 0xec, 0x05, 0xbd, 0x48, 0xf4, - 0x7e, 0x30, 0x29, 0xbc, 0x36, 0x60, 0x2d, 0x31, 0xbe, 0xf5, 0x61, 0x04, 0x2c, 0xfa, 0xfa, 0x00, - 0x95, 0x83, 0xe1, 0xd0, 0xb3, 0xc3, 0x80, 0xdf, 0x30, 0xa2, 0x7a, 0x11, 0x2e, 0xf4, 0x2d, 0x9e, - 0x1d, 0x21, 0x4d, 0xc8, 0xd9, 0x43, 0xfb, 0x9a, 0x39, 0xa2, 0x3b, 0x46, 0x78, 0x4c, 0x22, 0xc2, - 0x63, 0x84, 0x25, 0xb8, 0x18, 0x32, 0x11, 0xb3, 0xe2, 0x57, 0x69, 0x6a, 0xc6, 0xe8, 0xe0, 0xfe, - 0x47, 0x51, 0x51, 0xf1, 0xa6, 0xf7, 0xb5, 0x87, 0xe2, 0xe0, 0x2f, 0x23, 0x2e, 0x2e, 0x43, 0xc6, - 0xcb, 0xc7, 0x8e, 0x41, 0x6b, 0x40, 0xe0, 0xa4, 0xcf, 0x74, 0xe7, 0x30, 0x1e, 0xb8, 0x73, 0x28, - 0xf7, 0x82, 0x6a, 0xc2, 0x5f, 0xda, 0x46, 0x6e, 0x45, 0x4c, 0x58, 0x3d, 0xed, 0x0b, 0xab, 0x49, - 0xff, 0x45, 0x46, 0xa4, 0xd2, 0xff, 0x80, 0xc0, 0x62, 0x4e, 0x1d, 0x7a, 0xc3, 0x20, 0x3c, 0x05, - 0x9e, 0x7a, 0xfc, 0xe8, 0x98, 0x7f, 0xc0, 0x8d, 0x12, 0x41, 0x37, 0x12, 0x56, 0x60, 0x29, 0x54, - 0x37, 0x9b, 0xfa, 0x7b, 0x1c, 0x35, 0x6c, 0x1b, 0x5b, 0x3d, 0x64, 0xc5, 0x1c, 0x76, 0x6a, 0x36, - 0xe8, 0x9d, 0x9a, 0x92, 0x88, 0x07, 0x8f, 0x18, 0x12, 0xc2, 0x36, 0xdd, 0x86, 0xa0, 0x29, 0xec, - 0xb0, 0xbd, 0x01, 0xe9, 0x2e, 0x81, 0x4b, 0x69, 0xd1, 0x35, 0xe7, 0x8f, 0x81, 0x7d, 0x7b, 0x48, - 0xa2, 0x1c, 0xc2, 0x17, 0x1c, 0x64, 0x3c, 0x64, 0xb4, 0x0c, 0x53, 0x2e, 0x7a, 0xe1, 0x74, 0x29, - 0x2e, 0xc1, 0x7e, 0x69, 0x96, 0x6e, 0x29, 0x2d, 0x76, 0x03, 0x4f, 0x1f, 0xec, 0xc6, 0xb2, 0x6b, - 0x62, 0x5a, 0xc4, 0x26, 0x25, 0xf2, 0x1b, 0xdd, 0x82, 0x54, 0x57, 0x53, 0x2d, 0x12, 0xac, 0xb3, - 0xc1, 0x28, 0x24, 0x53, 0xe5, 0xf7, 0x35, 0xd5, 0x92, 0x08, 0x97, 0x70, 0x13, 0x52, 0xf6, 0x93, - 0xbf, 0xc9, 0x9f, 0x82, 0xf4, 0xe6, 0x93, 0x9a, 0x58, 0xcd, 0x72, 0x08, 0x60, 0xbc, 0x44, 0x5b, - 0xe2, 0x84, 0xb0, 0xec, 0x2e, 0x3d, 0x0c, 0x44, 0xf9, 0x98, 0xbe, 0xc3, 0x28, 0xf8, 0xa4, 0x10, - 0x0a, 0x9f, 0xac, 0xf8, 0x4e, 0xb3, 0x01, 0xc0, 0xc9, 0x3f, 0x38, 0x58, 0x08, 0xe5, 0x43, 0xf7, - 0xbc, 0x90, 0xc9, 0x95, 0x58, 0x9d, 0x5e, 0xb0, 0xe4, 0xc7, 0x1c, 0x05, 0x4b, 0xd6, 0x7d, 0x60, - 0xc9, 0xf5, 0x81, 0xf2, 0x5e, 0x98, 0xe4, 0x20, 0x02, 0x25, 0xa9, 0xd6, 0x0a, 0xdb, 0xa2, 0xbc, - 0x5f, 0xa1, 0x7f, 0x5d, 0x94, 0x64, 0x1e, 0xb2, 0xdb, 0xa2, 0x83, 0x3b, 0xc8, 0xd5, 0x5a, 0xa1, - 0x56, 0xcd, 0x26, 0xfa, 0x11, 0x8a, 0xa4, 0x8b, 0x3f, 0xcc, 0x03, 0x62, 0xdb, 0xea, 0xfd, 0x74, - 0xf6, 0x33, 0x0e, 0xe6, 0x7c, 0x64, 0xb6, 0xcb, 0x9e, 0xdb, 0x35, 0xce, 0x77, 0xbb, 0x76, 0x07, - 0xe6, 0xed, 0x16, 0x8a, 0x3a, 0xbe, 0x29, 0x77, 0xb0, 0x41, 0x30, 0x52, 0xe6, 0x4e, 0xe7, 0xdb, - 0xca, 0x09, 0xc3, 0x30, 0xf7, 0xb0, 0x61, 0x2b, 0x7e, 0x01, 0xf8, 0x9f, 0xf0, 0x83, 0x04, 0x3d, - 0xa8, 0x47, 0x2e, 0xf4, 0x07, 0x06, 0x6d, 0x7f, 0x27, 0x90, 0x1c, 0xa1, 0x13, 0x88, 0x08, 0xf9, - 0xd4, 0x48, 0xd5, 0xe1, 0xc8, 0x87, 0x9c, 0x50, 0xa0, 0x45, 0xc1, 0x19, 0x8a, 0xf4, 0xbb, 0xff, - 0xe4, 0x60, 0xb2, 0xd4, 0xc0, 0x9a, 0x65, 0x3b, 0x7d, 0x05, 0x66, 0x7c, 0x5f, 0x34, 0xa3, 0xe5, - 0x88, 0x0f, 0x9d, 0xc9, 0x8e, 0xf3, 0x2b, 0xb1, 0x9f, 0x41, 0x0b, 0x63, 0xe8, 0xc8, 0xf3, 0x35, - 0xb6, 0x0f, 0x56, 0x7e, 0xa5, 0x4f, 0x32, 0x24, 0xfe, 0xf9, 0x6b, 0x03, 0xb8, 0xdc, 0x79, 0xde, - 0x82, 0x34, 0xf9, 0x76, 0x15, 0xcd, 0xbb, 0xdf, 0xcf, 0x7a, 0x3e, 0x6d, 0xe5, 0x17, 0x02, 0x54, - 0x47, 0xee, 0xee, 0x5f, 0x27, 0x01, 0x7a, 0xbd, 0x0e, 0x7a, 0x08, 0xd3, 0xde, 0xcf, 0xe7, 0xd0, - 0x52, 0xcc, 0xc7, 0x9b, 0xfc, 0x72, 0xf8, 0xa0, 0x6b, 0xd3, 0x43, 0x98, 0xf6, 0x7e, 0xac, 0xd1, - 0x53, 0x16, 0xf2, 0xc1, 0x48, 0x4f, 0x59, 0xe8, 0xf7, 0x1d, 0x63, 0xa8, 0x05, 0x17, 0x22, 0xae, - 0xeb, 0xd1, 0xf5, 0xe1, 0x3e, 0x6a, 0xe0, 0x5f, 0x1d, 0xf2, 0xde, 0x5f, 0x18, 0x43, 0x06, 0x5c, - 0x8c, 0xbc, 0xa5, 0x46, 0x6b, 0xc3, 0xde, 0xa1, 0xf3, 0x37, 0x86, 0xe0, 0x74, 0xe7, 0xec, 0x02, - 0x1f, 0x7d, 0x35, 0x86, 0x6e, 0x0c, 0x7d, 0x67, 0xcb, 0xdf, 0x1c, 0xfe, 0xa6, 0x4d, 0x18, 0x43, - 0x3b, 0x90, 0xf1, 0xdc, 0xb6, 0x20, 0x3e, 0xf4, 0x0a, 0x86, 0x2a, 0x5e, 0x8a, 0xb9, 0x9e, 0xa1, - 0x9a, 0x3c, 0x77, 0x0b, 0x3d, 0x4d, 0xfd, 0x97, 0x24, 0x3d, 0x4d, 0x21, 0x97, 0x11, 0xc1, 0xed, - 0x0f, 0x1c, 0x7e, 0x61, 0xdb, 0x1f, 0x7e, 0x7a, 0x86, 0x6d, 0x7f, 0xc4, 0x49, 0x2a, 0x8c, 0xa1, - 0x0f, 0x60, 0xd6, 0x0f, 0x93, 0xa2, 0x95, 0x58, 0xb8, 0x97, 0xbf, 0x14, 0x35, 0xec, 0x55, 0xe9, - 0x47, 0xe5, 0x7a, 0x2a, 0x43, 0xd1, 0xc1, 0x9e, 0xca, 0x08, 0x30, 0x6f, 0xcc, 0xce, 0x4f, 0x3e, - 0xac, 0xa9, 0x97, 0x9f, 0xc2, 0x20, 0xb2, 0x5e, 0x7e, 0x0a, 0x05, 0xa8, 0x84, 0x31, 0xa4, 0xc2, - 0x62, 0x38, 0xd4, 0x81, 0xae, 0x0d, 0x85, 0xe4, 0xf0, 0xd7, 0x07, 0xb1, 0xb9, 0xa9, 0xe6, 0x2f, - 0x69, 0x48, 0x91, 0x53, 0xb0, 0x06, 0xe7, 0x02, 0xad, 0x26, 0xba, 0x14, 0xdf, 0x80, 0xf3, 0x97, - 0x23, 0xc7, 0xdd, 0x95, 0x3c, 0x85, 0xf3, 0x7d, 0xcd, 0x23, 0x5a, 0xf5, 0xca, 0x85, 0x35, 0xb0, - 0xfc, 0x95, 0x18, 0x8e, 0xa0, 0x6e, 0x7f, 0xda, 0x59, 0x1d, 0xd4, 0xdd, 0xf8, 0x75, 0x47, 0xa5, - 0x9a, 0x8f, 0x69, 0xd1, 0x11, 0x4c, 0x32, 0x82, 0xdf, 0xae, 0xd0, 0xf4, 0x72, 0x35, 0x96, 0xc7, - 0x9d, 0xe1, 0x23, 0xb7, 0xda, 0xf1, 0x54, 0xd7, 0xc8, 0x67, 0x5c, 0x68, 0x13, 0xc0, 0x0b, 0x71, - 0x2c, 0xae, 0xfa, 0xc7, 0x90, 0x0d, 0x1e, 0xc1, 0xc8, 0xf7, 0xbe, 0xc2, 0xdc, 0x66, 0x35, 0x9a, - 0x21, 0xb8, 0x33, 0xc1, 0xf8, 0x0f, 0x5a, 0x15, 0x16, 0xf9, 0x57, 0x63, 0x79, 0xbc, 0x19, 0xcb, - 0x53, 0xf0, 0xf5, 0x32, 0x56, 0x7f, 0x71, 0xd8, 0xcb, 0x58, 0x21, 0x15, 0xa2, 0x30, 0xb6, 0xbe, - 0x01, 0xa0, 0xb4, 0x3a, 0xcf, 0x14, 0x19, 0x6b, 0xdd, 0x36, 0x5a, 0xee, 0xbb, 0x9c, 0x10, 0xb5, - 0x6e, 0x7b, 0xb7, 0x63, 0xa9, 0xba, 0x66, 0xe6, 0x7e, 0x36, 0x49, 0xba, 0xf1, 0x29, 0x22, 0x60, - 0x0f, 0xac, 0x97, 0x21, 0xdb, 0x93, 0x96, 0x49, 0xef, 0x88, 0xae, 0x84, 0xea, 0x20, 0xff, 0x6d, - 0x12, 0x50, 0x34, 0xeb, 0x2a, 0x22, 0xa3, 0xeb, 0xef, 0x00, 0xd4, 0x4d, 0x55, 0xa6, 0xdd, 0x39, - 0x5a, 0xe9, 0xd3, 0xf3, 0x40, 0xc5, 0xad, 0x86, 0xa3, 0xe3, 0xa7, 0xcc, 0x98, 0xba, 0xa9, 0xd2, - 0x26, 0x79, 0xfd, 0x5d, 0xc8, 0x50, 0x63, 0x8e, 0x6c, 0xbe, 0x41, 0xf2, 0xcc, 0x06, 0xba, 0x7a, - 0x32, 0xb2, 0x2e, 0xc2, 0x0c, 0x55, 0xc0, 0xbe, 0x6b, 0x41, 0x97, 0xfb, 0x54, 0x3c, 0xa2, 0x23, - 0x01, 0x25, 0xd3, 0x44, 0x8c, 0x8d, 0xad, 0x6f, 0xc2, 0xb4, 0xa3, 0xc6, 0x7a, 0xa6, 0x37, 0xd0, - 0xa5, 0x10, 0x2d, 0xf6, 0x40, 0x40, 0x49, 0x86, 0x29, 0xb1, 0x87, 0x7a, 0xa6, 0x38, 0xff, 0x71, - 0xd5, 0x6f, 0x0a, 0x6b, 0x46, 0x42, 0x4d, 0x61, 0x63, 0x9b, 0xe9, 0xa7, 0xc9, 0xba, 0xa9, 0x1e, - 0x8e, 0x13, 0xa1, 0x37, 0xfe, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x9a, 0x6c, 0x9e, 0x1e, 0x38, - 0x00, 0x00, + // 3651 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4b, 0x6c, 0x1b, 0xd7, + 0xb5, 0x1a, 0x7e, 0xf4, 0x39, 0x94, 0x64, 0xfa, 0xea, 0x63, 0x7a, 0x24, 0xd9, 0xf2, 0x38, 0x76, + 0x64, 0xc7, 0xa6, 0x13, 0x25, 0x0e, 0x5e, 0x64, 0xe7, 0x43, 0x52, 0xb4, 0xc4, 0x98, 0xa6, 0x94, + 0x21, 0x65, 0xc7, 0x7e, 0x2f, 0x98, 0x8c, 0xc8, 0x2b, 0x79, 0x10, 0x72, 0x86, 0x9e, 0x19, 0xea, + 0x59, 0x6f, 0xf3, 0x1e, 0x5e, 0xd1, 0x45, 0xd1, 0x16, 0xe8, 0x2e, 0xdd, 0xb5, 0x68, 0xbb, 0x2a, + 0x12, 0x64, 0xd3, 0xa2, 0xcb, 0x02, 0x5d, 0x16, 0x68, 0xd1, 0x5d, 0x8b, 0x76, 0x91, 0x7d, 0x90, + 0x02, 0x59, 0x75, 0xd1, 0x55, 0x31, 0xf7, 0xde, 0x19, 0xce, 0x9f, 0xa4, 0x65, 0x23, 0x8b, 0xae, + 0xc4, 0x39, 0xf7, 0x9c, 0x73, 0xcf, 0xbd, 0xf7, 0x9c, 0x73, 0xcf, 0xe7, 0x0a, 0x6e, 0x1e, 0x2a, + 0xe6, 0xe3, 0xde, 0x7e, 0xbe, 0xa9, 0x75, 0x6e, 0x34, 0x35, 0xd5, 0x94, 0x15, 0x15, 0xeb, 0xd7, + 0x0d, 0x53, 0xd3, 0xe5, 0x43, 0x7c, 0x5d, 0x51, 0x4d, 0xac, 0x1f, 0xc8, 0x4d, 0x7c, 0xc3, 0xe8, + 0xe2, 0xe6, 0x8d, 0xa6, 0xa1, 0xe4, 0xbb, 0xba, 0x66, 0x6a, 0x68, 0xdc, 0xfa, 0x79, 0xf4, 0x1a, + 0xbf, 0x7a, 0xa8, 0x69, 0x87, 0x6d, 0x7c, 0x83, 0x40, 0xf7, 0x7b, 0x07, 0x37, 0x5a, 0xd8, 0x68, + 0xea, 0x4a, 0xd7, 0xd4, 0x74, 0x8a, 0xc9, 0x9f, 0xf7, 0x63, 0x98, 0x4a, 0x07, 0x1b, 0xa6, 0xdc, + 0xe9, 0x32, 0x84, 0x73, 0x7e, 0x84, 0xff, 0xd6, 0xe5, 0x6e, 0x17, 0xeb, 0x06, 0x1d, 0x17, 0x16, + 0x61, 0x7e, 0x0b, 0x9b, 0xbb, 0xed, 0xde, 0xa1, 0xa2, 0x56, 0xd4, 0x03, 0x4d, 0xc4, 0x4f, 0x7a, + 0xd8, 0x30, 0x85, 0xbf, 0x70, 0xb0, 0xe0, 0x1b, 0x30, 0xba, 0x9a, 0x6a, 0x60, 0x84, 0x20, 0xa5, + 0xca, 0x1d, 0x9c, 0xe3, 0x56, 0xb9, 0xb5, 0x29, 0x91, 0xfc, 0x46, 0x97, 0x60, 0xf6, 0x08, 0xab, + 0x2d, 0x4d, 0x97, 0x8e, 0xb0, 0x6e, 0x28, 0x9a, 0x9a, 0x4b, 0x90, 0xd1, 0x19, 0x0a, 0xbd, 0x4f, + 0x81, 0x68, 0x0b, 0x26, 0x3b, 0xb2, 0xaa, 0x1c, 0x60, 0xc3, 0xcc, 0x25, 0x57, 0x93, 0x6b, 0x99, + 0xf5, 0x57, 0xf2, 0x74, 0xa9, 0xf9, 0xd0, 0xb9, 0xf2, 0xf7, 0x18, 0x76, 0x59, 0x35, 0xf5, 0x63, + 0xd1, 0x21, 0xe6, 0x6f, 0xc1, 0x8c, 0x67, 0x08, 0x65, 0x21, 0xf9, 0x09, 0x3e, 0x66, 0x32, 0x59, + 0x3f, 0xd1, 0x3c, 0xa4, 0x8f, 0xe4, 0x76, 0x0f, 0x33, 0x49, 0xe8, 0xc7, 0x46, 0xe2, 0x3f, 0x38, + 0xe1, 0x1c, 0x2c, 0x3b, 0xb3, 0x95, 0xe4, 0xae, 0xbc, 0xaf, 0xb4, 0x15, 0x53, 0xc1, 0x86, 0xbd, + 0xf4, 0x8f, 0x60, 0x25, 0x62, 0x9c, 0xed, 0xc0, 0x6d, 0x98, 0x6e, 0xba, 0xe0, 0x39, 0x8e, 0x2c, + 0x25, 0x67, 0x2f, 0xc5, 0x47, 0x79, 0x2c, 0x7a, 0xb0, 0x85, 0x3f, 0x26, 0x21, 0xeb, 0x47, 0x41, + 0xb7, 0x61, 0xc2, 0xc0, 0xfa, 0x91, 0xd2, 0xa4, 0xfb, 0x9a, 0x59, 0x5f, 0x8d, 0xe2, 0x96, 0xaf, + 0x53, 0xbc, 0xed, 0x31, 0xd1, 0x26, 0x41, 0x7b, 0x90, 0x3d, 0xd2, 0xda, 0xbd, 0x0e, 0x96, 0xf0, + 0xd3, 0xae, 0xac, 0x3a, 0x07, 0x90, 0x59, 0x5f, 0x8b, 0x64, 0x73, 0x9f, 0x10, 0x94, 0x6d, 0xfc, + 0xed, 0x31, 0xf1, 0xd4, 0x91, 0x17, 0xc4, 0x7f, 0xca, 0xc1, 0x04, 0x9b, 0x0d, 0xbd, 0x05, 0x29, + 0xf3, 0xb8, 0x4b, 0xa5, 0x9b, 0x5d, 0xbf, 0x34, 0x48, 0xba, 0x7c, 0xe3, 0xb8, 0x8b, 0x45, 0x42, + 0x22, 0x7c, 0x00, 0x29, 0xeb, 0x0b, 0x65, 0x60, 0x62, 0xaf, 0x76, 0xb7, 0xb6, 0xf3, 0xa0, 0x96, + 0x1d, 0x43, 0x8b, 0x80, 0x4a, 0x3b, 0xb5, 0x86, 0xb8, 0x53, 0xad, 0x96, 0x45, 0xa9, 0x5e, 0x16, + 0xef, 0x57, 0x4a, 0xe5, 0x2c, 0x87, 0x5e, 0x82, 0xd5, 0xfb, 0x3b, 0xd5, 0xbd, 0x7b, 0x65, 0xa9, + 0x50, 0x2a, 0x95, 0xeb, 0xf5, 0x4a, 0xb1, 0x52, 0xad, 0x34, 0x1e, 0x4a, 0xa5, 0x9d, 0x5a, 0xbd, + 0x21, 0x16, 0x2a, 0xb5, 0x46, 0x3d, 0x9b, 0xe0, 0xff, 0x9f, 0x83, 0x53, 0xbe, 0x05, 0xa0, 0x82, + 0x47, 0xc2, 0xeb, 0xc3, 0x2e, 0xdc, 0x2d, 0xe9, 0xb5, 0x30, 0x49, 0x01, 0xc6, 0x77, 0x6a, 0xd5, + 0x4a, 0xcd, 0x92, 0x2e, 0x03, 0x13, 0x3b, 0x77, 0xee, 0x90, 0x8f, 0x44, 0x71, 0x9c, 0x4e, 0x28, + 0xcc, 0xc2, 0xf4, 0xae, 0xae, 0xed, 0x63, 0x5b, 0x7f, 0x0a, 0x30, 0xc3, 0xbe, 0x99, 0xbe, 0xbc, + 0x0a, 0x69, 0x1d, 0xcb, 0xad, 0x63, 0x76, 0xb4, 0x7c, 0x9e, 0xda, 0x64, 0xde, 0xb6, 0xc9, 0x7c, + 0x51, 0xd3, 0xda, 0xf7, 0x2d, 0xfd, 0x14, 0x29, 0xa2, 0xf0, 0x4d, 0x0a, 0xe6, 0x4a, 0x3a, 0x96, + 0x4d, 0x4c, 0xa5, 0x65, 0xac, 0x43, 0x6d, 0xef, 0x36, 0xcc, 0x5a, 0xfa, 0xd5, 0x54, 0xcc, 0x63, + 0x49, 0x97, 0xd5, 0x43, 0xcc, 0x8e, 0x7e, 0xc1, 0xde, 0x81, 0x12, 0x1b, 0x15, 0xad, 0x41, 0x71, + 0xa6, 0xe9, 0xfe, 0x44, 0x15, 0x98, 0x63, 0xaa, 0xe3, 0x51, 0xe9, 0xa4, 0x57, 0xa5, 0xa9, 0x14, + 0x2e, 0x95, 0x46, 0x47, 0x5e, 0x88, 0x82, 0x0d, 0x74, 0x17, 0xa0, 0x2b, 0xeb, 0x72, 0x07, 0x9b, + 0x58, 0x37, 0x72, 0x29, 0xaf, 0x7d, 0x87, 0xac, 0x26, 0xbf, 0xeb, 0x60, 0x53, 0xfb, 0x76, 0x91, + 0xa3, 0x2d, 0xcb, 0x20, 0x9a, 0x3a, 0x36, 0x8d, 0x5c, 0x9a, 0x70, 0x5a, 0x8b, 0xe3, 0x54, 0xa7, + 0xa8, 0x84, 0x4d, 0x31, 0xf9, 0xe3, 0x22, 0x27, 0xda, 0xd4, 0x68, 0x07, 0x16, 0xec, 0x05, 0x6a, + 0xaa, 0x89, 0x55, 0x53, 0x32, 0xb4, 0x9e, 0xde, 0xc4, 0xb9, 0x71, 0xb2, 0x4b, 0x4b, 0xbe, 0x25, + 0x52, 0x9c, 0x3a, 0x41, 0x11, 0xd9, 0xd6, 0x78, 0x80, 0xe8, 0x11, 0xf0, 0x72, 0xb3, 0x89, 0x0d, + 0x43, 0xa1, 0x7b, 0x21, 0xe9, 0xf8, 0x49, 0x4f, 0xd1, 0x71, 0x07, 0xab, 0xa6, 0x91, 0x9b, 0xf0, + 0x72, 0x6d, 0x68, 0x5d, 0xad, 0xad, 0x1d, 0x1e, 0x8b, 0x7d, 0x1c, 0xf1, 0xac, 0x87, 0xdc, 0x35, + 0x62, 0xf0, 0x6f, 0xc3, 0x29, 0xdf, 0xa6, 0x8c, 0xe2, 0xd9, 0xf8, 0x0d, 0x98, 0x76, 0xef, 0xc4, + 0x48, 0x5e, 0xf1, 0xfb, 0x09, 0x98, 0x0b, 0xd9, 0x03, 0xb4, 0x0d, 0x93, 0x86, 0x2a, 0x77, 0x8d, + 0xc7, 0x9a, 0xc9, 0xf4, 0xf7, 0x6a, 0xcc, 0x96, 0xe5, 0xeb, 0x0c, 0x97, 0x7e, 0x6e, 0x8f, 0x89, + 0x0e, 0x35, 0x2a, 0xc2, 0x38, 0xdd, 0x4f, 0xbf, 0x6f, 0x0a, 0xe3, 0x43, 0x61, 0x0e, 0x17, 0x46, + 0xc9, 0xbf, 0x06, 0xb3, 0xde, 0x19, 0xd0, 0x79, 0xc8, 0xd8, 0x33, 0x48, 0x4a, 0x8b, 0xad, 0x15, + 0x6c, 0x50, 0xa5, 0xc5, 0xbf, 0x02, 0xd3, 0x6e, 0x66, 0x68, 0x09, 0xa6, 0x98, 0x42, 0x38, 0xe8, + 0x93, 0x14, 0x50, 0x69, 0x39, 0x36, 0xfd, 0x0e, 0xcc, 0x7b, 0xf5, 0x8c, 0x99, 0xf2, 0x65, 0x67, + 0x0d, 0x74, 0x2f, 0x66, 0xbd, 0x6b, 0xb0, 0xe5, 0x14, 0x7e, 0x99, 0x82, 0xac, 0xdf, 0x68, 0xd0, + 0x6d, 0x48, 0xef, 0xb7, 0xb5, 0xe6, 0x27, 0x8c, 0xf6, 0xa5, 0x28, 0xeb, 0xca, 0x17, 0x2d, 0x2c, + 0x0a, 0xdd, 0x1e, 0x13, 0x29, 0x91, 0x45, 0xdd, 0xd1, 0x7a, 0xaa, 0xc9, 0x76, 0x2f, 0x9a, 0xfa, + 0x9e, 0x85, 0xd5, 0xa7, 0x26, 0x44, 0x68, 0x13, 0x32, 0x54, 0xed, 0xa4, 0x8e, 0xd6, 0xc2, 0xb9, + 0x24, 0xe1, 0x71, 0x31, 0x92, 0x47, 0x81, 0xe0, 0xde, 0xd3, 0x5a, 0x58, 0x04, 0xd9, 0xf9, 0xcd, + 0xcf, 0x40, 0xc6, 0x25, 0x1b, 0xbf, 0x05, 0x19, 0xd7, 0x64, 0xe8, 0x0c, 0x4c, 0x1c, 0x18, 0x92, + 0xe3, 0x84, 0xa7, 0xc4, 0xf1, 0x03, 0x83, 0xf8, 0xd3, 0xf3, 0x90, 0x21, 0x52, 0x48, 0x07, 0x6d, + 0xf9, 0xd0, 0xc8, 0x25, 0x56, 0x93, 0xd6, 0x19, 0x11, 0xd0, 0x1d, 0x0b, 0xc2, 0x7f, 0xcd, 0x01, + 0xf4, 0xa7, 0x44, 0xb7, 0x21, 0x45, 0xa4, 0xa4, 0xae, 0x7c, 0x6d, 0x08, 0x29, 0xf3, 0x44, 0x54, + 0x42, 0x25, 0xfc, 0x84, 0x83, 0x14, 0x61, 0xe3, 0xbf, 0x70, 0xea, 0x95, 0xda, 0x56, 0xb5, 0x2c, + 0xd5, 0x76, 0x36, 0xcb, 0xd2, 0x03, 0xb1, 0xd2, 0x28, 0x8b, 0x59, 0x0e, 0x2d, 0xc1, 0x19, 0x37, + 0x5c, 0x2c, 0x17, 0x36, 0xcb, 0xa2, 0xb4, 0x53, 0xab, 0x3e, 0xcc, 0x26, 0x10, 0x0f, 0x8b, 0xf7, + 0xf6, 0xaa, 0x8d, 0x4a, 0x70, 0x2c, 0x89, 0x96, 0x21, 0xe7, 0x1a, 0x63, 0x3c, 0x18, 0xdb, 0x94, + 0xc5, 0xd6, 0x35, 0x4a, 0x7f, 0xb2, 0xc1, 0x74, 0x71, 0xc6, 0x39, 0x0c, 0xa2, 0x6c, 0x0f, 0x60, + 0xc6, 0xe3, 0xa3, 0xad, 0x70, 0x8a, 0x39, 0x95, 0x96, 0xb4, 0x7f, 0x6c, 0x92, 0x10, 0x83, 0x5b, + 0x4b, 0x8a, 0x33, 0x36, 0xb4, 0x68, 0x01, 0xad, 0x6d, 0x6d, 0x2b, 0x1d, 0xc5, 0x64, 0x38, 0x09, + 0x82, 0x03, 0x04, 0x44, 0x10, 0x84, 0x2f, 0x13, 0x30, 0xce, 0xce, 0xe6, 0x92, 0xeb, 0x96, 0xf0, + 0xb0, 0xb4, 0xa1, 0x94, 0xa5, 0xc7, 0x38, 0x12, 0x5e, 0xe3, 0x40, 0xdb, 0x30, 0xeb, 0x76, 0xa5, + 0x4f, 0xed, 0x20, 0xee, 0x82, 0xf7, 0x80, 0xdc, 0xf6, 0xfc, 0x94, 0x85, 0x6e, 0x33, 0x47, 0x6e, + 0x18, 0x2a, 0xc2, 0xac, 0xcf, 0x1b, 0xa7, 0x06, 0x7b, 0xe3, 0x99, 0xa6, 0xc7, 0x31, 0x15, 0x60, + 0xce, 0x76, 0xa4, 0x6d, 0x2c, 0x99, 0xcc, 0xd1, 0xb2, 0xdb, 0x22, 0x1b, 0x70, 0xc0, 0xa8, 0x8f, + 0x6c, 0xc3, 0xf8, 0xf7, 0x00, 0x05, 0x65, 0x1d, 0xc9, 0x6b, 0xf6, 0x60, 0x2e, 0xc4, 0xc5, 0xa3, + 0x3c, 0x4c, 0x91, 0xa3, 0x32, 0x14, 0x13, 0xb3, 0xf0, 0x30, 0x28, 0x51, 0x1f, 0xc5, 0xc2, 0xef, + 0xea, 0xf8, 0x00, 0xeb, 0x3a, 0x6e, 0x11, 0xf3, 0x08, 0xc5, 0x77, 0x50, 0x84, 0xef, 0x70, 0x30, + 0x69, 0xc3, 0xd1, 0x06, 0x4c, 0x1a, 0xf8, 0x90, 0x5e, 0x3f, 0x74, 0xae, 0x73, 0x7e, 0xda, 0x7c, + 0x9d, 0x21, 0xb0, 0x40, 0xda, 0xc6, 0xb7, 0x02, 0x69, 0xcf, 0xd0, 0x48, 0x8b, 0xff, 0x0d, 0x07, + 0x73, 0x9b, 0xb8, 0x8d, 0xfd, 0x51, 0x4a, 0x9c, 0x87, 0x75, 0x5f, 0xec, 0x09, 0xef, 0xc5, 0x1e, + 0xc2, 0x2a, 0xe6, 0x62, 0x3f, 0xd1, 0x65, 0xb7, 0x08, 0xf3, 0xde, 0xd9, 0xa8, 0x7b, 0x17, 0xfe, + 0x9e, 0x84, 0x73, 0x96, 0x2e, 0xe8, 0x5a, 0xbb, 0x8d, 0xf5, 0xdd, 0xde, 0x7e, 0x5b, 0x31, 0x1e, + 0x8f, 0xb0, 0xb8, 0x33, 0x30, 0xa1, 0x6a, 0x2d, 0x97, 0xf1, 0x8c, 0x5b, 0x9f, 0x95, 0x16, 0x2a, + 0xc3, 0x69, 0x7f, 0x98, 0x75, 0xcc, 0x9c, 0x70, 0x74, 0x90, 0x95, 0x3d, 0xf2, 0xdf, 0x20, 0x3c, + 0x4c, 0x5a, 0x01, 0xa2, 0xa6, 0xb6, 0x8f, 0x89, 0xc5, 0x4c, 0x8a, 0xce, 0x37, 0x12, 0xfd, 0x11, + 0xd3, 0xeb, 0x4e, 0xc4, 0x14, 0xbb, 0xa2, 0xb8, 0xe0, 0xe9, 0xe3, 0x80, 0xc5, 0x8f, 0x13, 0xd6, + 0x6f, 0x0d, 0xc9, 0x7a, 0xa0, 0x27, 0x38, 0xc9, 0x29, 0x3e, 0x07, 0xf3, 0xfd, 0x3d, 0x07, 0xe7, + 0x23, 0x97, 0xc0, 0xae, 0xfc, 0x16, 0x9c, 0xea, 0xd2, 0x01, 0x67, 0x13, 0xa8, 0x95, 0xdd, 0x1a, + 0xb8, 0x09, 0x2c, 0x8b, 0x65, 0x50, 0xcf, 0x36, 0xcc, 0x76, 0x3d, 0x40, 0xbe, 0x00, 0x73, 0x21, + 0x68, 0x23, 0x2d, 0xe6, 0x2b, 0x0e, 0x56, 0xfb, 0xa2, 0xec, 0xa9, 0xdd, 0xe7, 0xa7, 0xbe, 0x8d, + 0xbe, 0x6e, 0x51, 0x97, 0x7f, 0x33, 0xb8, 0xf6, 0xf0, 0x09, 0x5f, 0x94, 0x05, 0x5f, 0x84, 0x0b, + 0x31, 0x53, 0x33, 0x73, 0xfe, 0x32, 0x05, 0x17, 0xee, 0xcb, 0x6d, 0xa5, 0xe5, 0x04, 0x72, 0x21, + 0xf9, 0x7e, 0xfc, 0x96, 0x34, 0x03, 0x16, 0x40, 0xbd, 0xd6, 0x6d, 0xc7, 0x6a, 0x07, 0xf1, 0x1f, + 0xe2, 0x3a, 0x7c, 0x8e, 0x49, 0xd8, 0xc3, 0x90, 0x24, 0xec, 0xad, 0xe1, 0x65, 0x8d, 0x4b, 0xc9, + 0xf6, 0xfc, 0x0e, 0xe6, 0xcd, 0xe1, 0xf9, 0xc6, 0x68, 0xc1, 0x89, 0xad, 0xf8, 0xdb, 0xcc, 0x9a, + 0x7e, 0x97, 0x02, 0x21, 0x6e, 0xf5, 0xcc, 0x87, 0x88, 0x30, 0xd5, 0xd4, 0xd4, 0x03, 0x45, 0xef, + 0xe0, 0x16, 0x8b, 0xfe, 0xdf, 0x18, 0x66, 0xf3, 0x98, 0x03, 0x29, 0xd9, 0xb4, 0x62, 0x9f, 0x0d, + 0xca, 0xc1, 0x44, 0x07, 0x1b, 0x86, 0x7c, 0x68, 0x8b, 0x65, 0x7f, 0xf2, 0x9f, 0x27, 0x61, 0xca, + 0x21, 0x41, 0x6a, 0x40, 0x83, 0xa9, 0xfb, 0xda, 0x7a, 0x16, 0x01, 0x9e, 0x5d, 0x99, 0x13, 0xcf, + 0xa0, 0xcc, 0x2d, 0x8f, 0x32, 0x53, 0x73, 0xd8, 0x7c, 0x26, 0xb1, 0x63, 0xf4, 0xfa, 0x5b, 0x57, + 0x40, 0xe1, 0xbf, 0x00, 0x55, 0x15, 0x83, 0x65, 0x51, 0x8e, 0x5b, 0xb2, 0x92, 0x26, 0xf9, 0xa9, + 0x84, 0x55, 0x53, 0x57, 0x58, 0xb8, 0x9e, 0x16, 0xa1, 0x23, 0x3f, 0x2d, 0x53, 0x88, 0x15, 0xd2, + 0x1b, 0xa6, 0xac, 0x9b, 0x8a, 0x7a, 0x28, 0x99, 0xda, 0x27, 0xd8, 0x29, 0xba, 0xda, 0xd0, 0x86, + 0x05, 0x14, 0xbe, 0x4e, 0xc0, 0x9c, 0x87, 0x3d, 0xd3, 0xc9, 0x5b, 0x30, 0xd1, 0xe7, 0xed, 0x09, + 0xe3, 0x43, 0xb0, 0xf3, 0x74, 0xdb, 0x6c, 0x0a, 0xb4, 0x02, 0xa0, 0xe2, 0xa7, 0xa6, 0x67, 0xde, + 0x29, 0x0b, 0x42, 0xe6, 0xe4, 0xbf, 0xcb, 0x39, 0x49, 0xb7, 0x29, 0x9b, 0x3d, 0x03, 0x5d, 0x03, + 0xc4, 0x5c, 0x34, 0x6e, 0x49, 0xec, 0x8e, 0xa1, 0xf3, 0x4e, 0x89, 0x59, 0x67, 0xa4, 0x46, 0x6e, + 0x1b, 0x03, 0x6d, 0x39, 0xf5, 0xcc, 0xa6, 0xa6, 0xb6, 0x14, 0xb3, 0x5f, 0xcf, 0x3c, 0x13, 0x48, + 0x10, 0xe8, 0x70, 0x31, 0xf9, 0xd3, 0x22, 0x67, 0x57, 0x30, 0x1d, 0x28, 0xff, 0x04, 0xd2, 0xf4, + 0x38, 0x86, 0xcc, 0xdb, 0xd1, 0x7b, 0x30, 0x6e, 0x10, 0x89, 0xfd, 0x35, 0x8a, 0xb0, 0x3d, 0x71, + 0xaf, 0x50, 0x64, 0x74, 0xc2, 0x3b, 0xc0, 0xf7, 0x2f, 0xa6, 0x2d, 0x6c, 0x0e, 0x7f, 0xfd, 0x6e, + 0x58, 0x6b, 0x10, 0x3e, 0x4d, 0xc0, 0x52, 0x28, 0x83, 0xd1, 0x2a, 0x10, 0x68, 0xdb, 0xb7, 0x92, + 0x57, 0x83, 0x37, 0x76, 0x80, 0x79, 0xe8, 0x8a, 0xf8, 0xff, 0x3b, 0xd9, 0x61, 0x16, 0x47, 0x3e, + 0xcc, 0xc0, 0x39, 0xd2, 0x9d, 0xf9, 0x3c, 0x01, 0x68, 0x0b, 0x9b, 0x4e, 0xaa, 0xcc, 0xb6, 0x34, + 0xc2, 0xdf, 0x70, 0xcf, 0xe0, 0x6f, 0xde, 0xf7, 0xf8, 0x1b, 0xea, 0xb1, 0xae, 0xba, 0x3a, 0x14, + 0xbe, 0xa9, 0x63, 0x6f, 0xcb, 0x88, 0xf4, 0x94, 0xc6, 0xfc, 0xc3, 0xa5, 0xa7, 0x27, 0x74, 0x2b, + 0x9b, 0x30, 0xe7, 0x91, 0x99, 0x29, 0xd0, 0x75, 0x40, 0xf2, 0x91, 0xac, 0xb4, 0x65, 0x4b, 0x2e, + 0x3b, 0xfb, 0x67, 0xd5, 0x80, 0xd3, 0xce, 0x88, 0x4d, 0x26, 0x08, 0xee, 0xa0, 0x92, 0xf1, 0xf3, + 0x77, 0x4c, 0xda, 0xee, 0x60, 0x2c, 0x80, 0xc3, 0xe6, 0xdd, 0x0a, 0xed, 0x9a, 0x5c, 0x0c, 0xaa, + 0x25, 0x6b, 0x21, 0x44, 0x36, 0x50, 0xfe, 0x96, 0x74, 0x5b, 0x48, 0x00, 0x1b, 0xdd, 0x82, 0xa4, + 0xde, 0x6d, 0x32, 0xf3, 0x78, 0x79, 0x08, 0xfe, 0x79, 0x71, 0xb7, 0xb4, 0x3d, 0x26, 0x5a, 0x54, + 0xfc, 0x3f, 0x12, 0x90, 0x14, 0x77, 0x4b, 0xe8, 0x3d, 0x4f, 0x37, 0xe1, 0xda, 0x90, 0x5c, 0xdc, + 0xcd, 0x84, 0xcf, 0x12, 0x61, 0xdd, 0x84, 0x1c, 0xcc, 0x97, 0xc4, 0x72, 0xa1, 0x51, 0x96, 0x36, + 0xcb, 0xd5, 0x72, 0xa3, 0x2c, 0xd1, 0x6e, 0x47, 0x96, 0x43, 0xcb, 0x90, 0xdb, 0xdd, 0x2b, 0x56, + 0x2b, 0xf5, 0x6d, 0x69, 0xaf, 0x66, 0xff, 0x62, 0xa3, 0x09, 0x94, 0x85, 0xe9, 0x6a, 0xa5, 0xde, + 0x60, 0x80, 0x7a, 0x36, 0x69, 0x41, 0xb6, 0xca, 0x0d, 0xa9, 0x54, 0xd8, 0x2d, 0x94, 0x2a, 0x8d, + 0x87, 0xd9, 0x14, 0xe2, 0x61, 0xd1, 0xcb, 0xbb, 0x5e, 0x2b, 0xec, 0xd6, 0xb7, 0x77, 0x1a, 0xd9, + 0x34, 0x42, 0x30, 0x4b, 0xe8, 0x6d, 0x50, 0x3d, 0x3b, 0x6e, 0x71, 0x28, 0x55, 0x77, 0x6a, 0x8e, + 0x0c, 0x13, 0x68, 0x1e, 0xb2, 0xf6, 0xcc, 0x62, 0xb9, 0xb0, 0x49, 0x2a, 0x5d, 0x93, 0xe8, 0x34, + 0xcc, 0x94, 0x3f, 0xdc, 0x2d, 0xd4, 0x36, 0x6d, 0xc4, 0x29, 0xb4, 0x0a, 0xcb, 0x6e, 0x71, 0x24, + 0x46, 0x55, 0xde, 0x24, 0xf5, 0xae, 0x7a, 0x16, 0xd0, 0x59, 0xc8, 0xb2, 0x46, 0x4e, 0x69, 0xa7, + 0xb6, 0x59, 0x69, 0x54, 0x76, 0x6a, 0xd9, 0x0c, 0x6f, 0x19, 0x32, 0x9a, 0x03, 0xb0, 0x24, 0x67, + 0xcc, 0xa6, 0x09, 0xd0, 0xa9, 0xbc, 0x7e, 0x95, 0x80, 0x05, 0x5a, 0x7a, 0xb5, 0x0b, 0xbd, 0xb6, + 0xa1, 0xaf, 0x41, 0x96, 0x16, 0x8b, 0x24, 0xbf, 0x0b, 0x9d, 0xa5, 0xf0, 0xfb, 0x76, 0xd0, 0x6e, + 0xb7, 0x49, 0x12, 0xae, 0x36, 0x49, 0xc5, 0x9f, 0xc2, 0x5c, 0xf5, 0x36, 0x14, 0x7c, 0xb3, 0xc5, + 0x65, 0xc5, 0xf7, 0x42, 0x62, 0xec, 0xeb, 0xf1, 0xdc, 0xe2, 0xe2, 0x8f, 0x93, 0xa4, 0xc0, 0x27, + 0x74, 0x11, 0x77, 0x60, 0xd1, 0x2f, 0x2f, 0xb3, 0xd6, 0x6b, 0x81, 0xb2, 0xbf, 0xe3, 0xb3, 0x1c, + 0x5c, 0x07, 0x43, 0xf8, 0x33, 0x07, 0x93, 0x36, 0xd8, 0x8a, 0x0d, 0x0c, 0xe5, 0x7f, 0xb0, 0xa7, + 0xcc, 0x38, 0x65, 0x41, 0x9c, 0xaa, 0xa5, 0xbb, 0x60, 0x9f, 0xf0, 0x17, 0xec, 0x43, 0xcf, 0x39, + 0x19, 0x7a, 0xce, 0xef, 0xc2, 0x4c, 0xd3, 0x12, 0x5f, 0xd1, 0x54, 0xc9, 0x54, 0x3a, 0x76, 0x15, + 0x31, 0xd8, 0x60, 0x6b, 0xd8, 0x5d, 0x71, 0x71, 0xda, 0x26, 0xb0, 0x40, 0x68, 0x15, 0xa6, 0x49, + 0xc3, 0x4d, 0x32, 0x35, 0xa9, 0x67, 0xe0, 0x5c, 0x9a, 0xd4, 0x54, 0x80, 0xc0, 0x1a, 0xda, 0x9e, + 0x81, 0x85, 0xdf, 0x72, 0xb0, 0x40, 0x4b, 0x45, 0x7e, 0x75, 0x1c, 0xd4, 0x78, 0x70, 0x6b, 0x9c, + 0xef, 0x2a, 0x09, 0x65, 0xf8, 0xa2, 0x32, 0xe5, 0x1c, 0x2c, 0xfa, 0xe7, 0x63, 0xe9, 0xf1, 0x17, + 0x09, 0x98, 0xb7, 0xe2, 0x1a, 0x7b, 0xe0, 0x79, 0x87, 0x9e, 0x23, 0x9c, 0xa4, 0x6f, 0x33, 0x53, + 0x81, 0xcd, 0xdc, 0xf6, 0x27, 0x9f, 0x57, 0xdc, 0x91, 0x99, 0x7f, 0x05, 0x2f, 0x6a, 0x2f, 0x3f, + 0xe3, 0x60, 0xc1, 0x37, 0x1f, 0xb3, 0x97, 0xb7, 0xfd, 0xd1, 0xf4, 0xc5, 0x08, 0xf9, 0x9e, 0x29, + 0x9e, 0xbe, 0x69, 0xc7, 0xb1, 0xa3, 0x99, 0xe5, 0x9f, 0x12, 0xb0, 0xd2, 0xbf, 0xb1, 0x48, 0xcb, + 0xbb, 0x35, 0x42, 0x39, 0xe8, 0x64, 0x9d, 0xe5, 0x0f, 0xfc, 0x0e, 0x77, 0x3d, 0x78, 0x89, 0x86, + 0x88, 0x14, 0xe7, 0x78, 0x43, 0xab, 0xa8, 0xa9, 0x51, 0xab, 0xa8, 0x27, 0xd2, 0x80, 0xff, 0x75, + 0x17, 0x88, 0xbd, 0xe2, 0x33, 0x4d, 0x18, 0xb2, 0xd3, 0xf2, 0x26, 0x9c, 0x21, 0xa1, 0xb3, 0xf3, + 0x62, 0xc3, 0xee, 0x23, 0x53, 0x97, 0x38, 0x29, 0x2e, 0x58, 0xc3, 0xce, 0x33, 0x05, 0xd6, 0x5d, + 0x68, 0x09, 0xdf, 0xa4, 0x60, 0xd1, 0x0a, 0xad, 0xeb, 0xa6, 0x7c, 0x38, 0x4a, 0xdd, 0xfd, 0x3f, + 0x83, 0x65, 0xcc, 0x84, 0xf7, 0x58, 0xc2, 0xb9, 0x0e, 0x53, 0xbd, 0x44, 0x79, 0x98, 0x33, 0x4c, + 0xf9, 0x90, 0xb8, 0x03, 0x59, 0x3f, 0xc4, 0xa6, 0xd4, 0x95, 0xcd, 0xc7, 0xcc, 0xd6, 0x4f, 0xb3, + 0xa1, 0x06, 0x19, 0xd9, 0x95, 0xcd, 0xc7, 0xcf, 0xe9, 0x20, 0xd1, 0xfb, 0x7e, 0xa7, 0xf0, 0xca, + 0x80, 0xb5, 0xc4, 0xe8, 0xd6, 0x87, 0x11, 0xa5, 0xee, 0xd7, 0x06, 0xb0, 0x1c, 0x5c, 0xe2, 0x3e, + 0x79, 0x69, 0xf7, 0x5b, 0xae, 0x92, 0x9f, 0x85, 0x33, 0x81, 0xc5, 0xb3, 0x2b, 0xe4, 0x10, 0x72, + 0xd6, 0xd0, 0x9e, 0x6a, 0x8c, 0xa8, 0x8e, 0x11, 0x1a, 0x93, 0x88, 0xd0, 0x18, 0x61, 0x09, 0xce, + 0x86, 0x4c, 0xc4, 0xa4, 0xf8, 0x75, 0x9a, 0x8a, 0x31, 0x7a, 0xc3, 0xe6, 0xa3, 0x28, 0xab, 0x78, + 0xc3, 0x7d, 0xec, 0xa1, 0xbd, 0x8d, 0x17, 0x61, 0x17, 0xe7, 0x21, 0xe3, 0xc6, 0x63, 0xd7, 0xa0, + 0x39, 0xc0, 0x70, 0xd2, 0x27, 0xea, 0x23, 0x8d, 0xfb, 0xfa, 0x48, 0xd5, 0xbe, 0x51, 0x4d, 0x78, + 0x43, 0xdb, 0xc8, 0xad, 0x88, 0x31, 0xab, 0x47, 0x01, 0xb3, 0x9a, 0xf4, 0x36, 0xa7, 0x22, 0x99, + 0xfe, 0x1b, 0x18, 0x16, 0x53, 0xea, 0xd0, 0xae, 0x91, 0xf0, 0x08, 0x78, 0xaa, 0xf1, 0xa3, 0xf7, + 0x71, 0x7c, 0x6a, 0x94, 0xf0, 0xab, 0x91, 0xb0, 0x02, 0x4b, 0xa1, 0xbc, 0xd9, 0xd4, 0xdf, 0xe3, + 0xa8, 0x60, 0x4e, 0x81, 0xa8, 0x6e, 0xca, 0xa6, 0x31, 0xec, 0xd4, 0x6c, 0xd0, 0x3d, 0x35, 0x05, + 0x11, 0x0d, 0x1e, 0xd1, 0x24, 0x84, 0x1f, 0x71, 0x74, 0x1f, 0xfc, 0xb2, 0xb0, 0xdb, 0xf6, 0x0a, + 0xa4, 0x7b, 0xa4, 0x06, 0x4e, 0xa3, 0xae, 0x39, 0xaf, 0x11, 0xec, 0x59, 0x43, 0x22, 0xc5, 0x78, + 0x6e, 0x55, 0x45, 0xe1, 0x0b, 0x0e, 0x32, 0x2e, 0xfe, 0x68, 0x19, 0xa6, 0x9c, 0xba, 0x89, 0x9d, + 0xef, 0x38, 0x00, 0xeb, 0xf8, 0x4d, 0xcd, 0x94, 0xdb, 0xec, 0x7d, 0x06, 0xfd, 0xb0, 0x52, 0xd4, + 0x9e, 0x81, 0x69, 0x38, 0x9c, 0x14, 0xc9, 0x6f, 0x74, 0x0d, 0x52, 0x3d, 0x55, 0x31, 0x89, 0xd9, + 0xcf, 0xfa, 0xed, 0x99, 0x4c, 0x95, 0xdf, 0x53, 0x15, 0x53, 0x24, 0x58, 0xc2, 0x55, 0x48, 0x59, + 0x5f, 0xde, 0xf2, 0xc2, 0x14, 0xa4, 0x8b, 0x0f, 0x1b, 0xe5, 0x7a, 0x96, 0x43, 0x00, 0xe3, 0x15, + 0x9a, 0x8c, 0x27, 0x84, 0xaa, 0xfd, 0x5c, 0xd2, 0x59, 0x84, 0xe5, 0x02, 0xe4, 0x7d, 0x55, 0xd3, + 0x3b, 0x72, 0x9b, 0xc8, 0x3c, 0x29, 0x3a, 0xdf, 0xd1, 0xad, 0x05, 0x5a, 0x88, 0x5b, 0x76, 0x4e, + 0x24, 0xac, 0x18, 0xf4, 0x31, 0xd5, 0xad, 0xa8, 0x32, 0x50, 0x21, 0xb4, 0x0c, 0xb4, 0xe2, 0xb9, + 0x65, 0x07, 0x14, 0x80, 0x7e, 0x98, 0x80, 0x85, 0x50, 0x3c, 0x74, 0xd3, 0x5d, 0xfa, 0xb9, 0x10, + 0xcb, 0xd3, 0x5d, 0xf4, 0xf9, 0x15, 0x47, 0x8b, 0x3e, 0x1b, 0x9e, 0xa2, 0xcf, 0xe5, 0x81, 0xf4, + 0xee, 0x72, 0xcf, 0x93, 0x88, 0x6a, 0x4f, 0xbd, 0x51, 0xd8, 0x2a, 0x4b, 0x7b, 0x35, 0xfa, 0xd7, + 0xa9, 0xf6, 0xcc, 0x43, 0xb6, 0x5f, 0x03, 0x91, 0xea, 0x8d, 0x42, 0xa3, 0x9e, 0x4d, 0x04, 0x2b, + 0x2d, 0xc9, 0xd0, 0x3a, 0x4a, 0xca, 0x5b, 0x32, 0x99, 0x07, 0xc4, 0x76, 0xdc, 0xfd, 0x82, 0xfb, + 0x67, 0x1c, 0xcc, 0x79, 0xc0, 0xec, 0x00, 0x5c, 0x4d, 0x5e, 0xce, 0xd3, 0xe4, 0xbd, 0x01, 0xf3, + 0x56, 0xd6, 0x47, 0xb5, 0xdd, 0x90, 0xba, 0x58, 0x27, 0xc5, 0x5d, 0xa6, 0xb7, 0xa7, 0x3b, 0xf2, + 0x53, 0x56, 0x00, 0xdf, 0xc5, 0xba, 0xc5, 0xf8, 0x39, 0x94, 0x38, 0x85, 0x1f, 0x24, 0x68, 0x6c, + 0x31, 0x72, 0x6e, 0x32, 0xd0, 0xcf, 0x04, 0x93, 0x97, 0xe4, 0x08, 0xc9, 0x4b, 0x84, 0x97, 0x4a, + 0x8d, 0x14, 0xd0, 0x8e, 0x7c, 0x2f, 0x0b, 0x05, 0x1a, 0xc7, 0x9c, 0x20, 0xaf, 0x58, 0xff, 0x27, + 0x07, 0x93, 0x95, 0x16, 0x56, 0x4d, 0xcb, 0x1e, 0x6a, 0x30, 0xe3, 0x79, 0x58, 0x8f, 0x96, 0x23, + 0xde, 0xdb, 0x93, 0x1d, 0xe7, 0x57, 0x62, 0x5f, 0xe3, 0x0b, 0x63, 0xe8, 0xc0, 0xf5, 0x4f, 0x01, + 0x9e, 0xca, 0xf9, 0x4b, 0x01, 0xca, 0x10, 0xd7, 0xc0, 0x5f, 0x1a, 0x80, 0xe5, 0xcc, 0xf3, 0x26, + 0xa4, 0xc9, 0x13, 0x6a, 0x34, 0xef, 0x3c, 0xe3, 0x76, 0xbd, 0xb0, 0xe6, 0x17, 0x7c, 0x50, 0x9b, + 0x6e, 0xfd, 0x0f, 0x53, 0x00, 0xfd, 0xf4, 0x0c, 0xdd, 0x85, 0x69, 0xf7, 0x2b, 0x4e, 0xb4, 0x14, + 0xf3, 0x86, 0x98, 0x5f, 0x0e, 0x1f, 0x74, 0x64, 0xba, 0x0b, 0xd3, 0xee, 0x37, 0x43, 0x7d, 0x66, + 0x21, 0xef, 0x96, 0xfa, 0xcc, 0x42, 0x9f, 0x19, 0x8d, 0xa1, 0x36, 0x9c, 0x89, 0x78, 0x35, 0x82, + 0x2e, 0x0f, 0xf7, 0xb6, 0x86, 0x7f, 0x79, 0xc8, 0xe7, 0x27, 0xc2, 0x18, 0xd2, 0xe1, 0x6c, 0xe4, + 0x63, 0x09, 0xb4, 0x36, 0xec, 0x53, 0x0e, 0xfe, 0xca, 0x10, 0x98, 0xce, 0x9c, 0x3d, 0xe0, 0xa3, + 0x3b, 0xb4, 0xe8, 0xca, 0xd0, 0x4f, 0x07, 0xf8, 0xab, 0xc3, 0x37, 0x7c, 0x85, 0x31, 0xb4, 0x0d, + 0x19, 0x57, 0xab, 0x0e, 0xf1, 0xa1, 0xfd, 0x3b, 0xca, 0x78, 0x29, 0xa6, 0xb7, 0x47, 0x39, 0xb9, + 0xda, 0x27, 0x7d, 0x4e, 0xc1, 0x3e, 0x50, 0x9f, 0x53, 0x48, 0xbf, 0xc5, 0xbf, 0xfd, 0xbe, 0x7b, + 0x31, 0x6c, 0xfb, 0xc3, 0x2f, 0xd6, 0xb0, 0xed, 0x8f, 0xb8, 0x64, 0x85, 0x31, 0xf4, 0x01, 0xcc, + 0x7a, 0x2b, 0xbb, 0x68, 0x25, 0xb6, 0x42, 0xcd, 0x9f, 0x8b, 0x1a, 0x76, 0xb3, 0xf4, 0x16, 0x12, + 0xfb, 0x2c, 0x43, 0x0b, 0x9a, 0x7d, 0x96, 0x11, 0xf5, 0xc7, 0x31, 0xcb, 0x3f, 0x79, 0xca, 0x63, + 0x7d, 0xff, 0x14, 0x56, 0xd5, 0xeb, 0xfb, 0xa7, 0xd0, 0x9a, 0x9a, 0x30, 0x86, 0x14, 0x58, 0x0c, + 0xaf, 0xce, 0xa0, 0x4b, 0x43, 0x15, 0x9f, 0xf8, 0xcb, 0x83, 0xd0, 0x9c, 0xa9, 0x9a, 0x30, 0x17, + 0xd2, 0x49, 0x45, 0x42, 0x6c, 0x9b, 0x95, 0x4e, 0x72, 0x71, 0x88, 0x56, 0xac, 0x60, 0xdd, 0xf0, + 0xeb, 0x7f, 0x4d, 0x43, 0x8a, 0x5c, 0xb5, 0x0d, 0x38, 0xe5, 0x4b, 0xc1, 0xd1, 0xb9, 0xf8, 0xc2, + 0x04, 0x7f, 0x3e, 0x72, 0xdc, 0x59, 0xc3, 0x23, 0x38, 0x1d, 0x48, 0xaa, 0xd1, 0xaa, 0x9b, 0x2e, + 0x2c, 0xb1, 0xe7, 0x2f, 0xc4, 0x60, 0xf8, 0x79, 0x7b, 0x7d, 0xdb, 0xea, 0xa0, 0xac, 0xcf, 0xcb, + 0x3b, 0xca, 0x9f, 0x7d, 0x4c, 0x23, 0x1b, 0xbf, 0x27, 0x13, 0xbc, 0x72, 0x85, 0xfa, 0xb0, 0x8b, + 0xb1, 0x38, 0xce, 0x0c, 0x1f, 0x39, 0x21, 0x95, 0x2b, 0xe9, 0x40, 0x1e, 0xe1, 0x42, 0x93, 0x23, + 0x5e, 0x88, 0x43, 0x71, 0xd8, 0x3f, 0x80, 0xac, 0xff, 0x9e, 0x47, 0x9e, 0xf3, 0x0a, 0xd3, 0xcd, + 0xd5, 0x68, 0x04, 0xff, 0xce, 0xf8, 0x9d, 0x8c, 0x5f, 0xaa, 0x30, 0xf7, 0x72, 0x31, 0x16, 0xc7, + 0xed, 0x16, 0x5d, 0x51, 0x65, 0xdf, 0x2d, 0x06, 0x23, 0xd0, 0xbe, 0x5b, 0x0c, 0x09, 0x43, 0x85, + 0xb1, 0x8d, 0xdb, 0x00, 0x72, 0xbb, 0xfb, 0x58, 0x96, 0xb0, 0xda, 0xeb, 0xa0, 0xe5, 0x40, 0xd3, + 0xa6, 0xac, 0xf6, 0x3a, 0x3b, 0x5d, 0x2b, 0x59, 0x31, 0x72, 0xbf, 0x98, 0x24, 0x29, 0xca, 0x14, + 0x21, 0xb0, 0x06, 0x36, 0xaa, 0x90, 0xed, 0x53, 0x4b, 0x24, 0xa7, 0x46, 0x17, 0x42, 0x79, 0x90, + 0xff, 0xac, 0xf2, 0x31, 0x9a, 0x75, 0x18, 0x91, 0xd1, 0x8d, 0xb7, 0x01, 0x9a, 0x86, 0x22, 0xd1, + 0xaa, 0x05, 0x5a, 0x09, 0xf0, 0xb9, 0xa3, 0xe0, 0x76, 0xcb, 0xe6, 0xf1, 0x73, 0x26, 0x4c, 0xd3, + 0x50, 0x68, 0xf1, 0x60, 0xe3, 0x5d, 0xc8, 0x50, 0x61, 0x0e, 0x2c, 0xbc, 0x41, 0xf4, 0x4c, 0x06, + 0xba, 0x7a, 0x32, 0xb2, 0x51, 0x86, 0x19, 0xca, 0x80, 0x25, 0x5a, 0xe8, 0x7c, 0x80, 0xc5, 0x3d, + 0x3a, 0xe2, 0x63, 0x32, 0x4d, 0xc8, 0xd8, 0xd8, 0x46, 0x11, 0xa6, 0x6d, 0x36, 0xe6, 0x63, 0xad, + 0x85, 0xce, 0x85, 0x70, 0xb1, 0x06, 0x7c, 0x4c, 0x32, 0x8c, 0x89, 0x35, 0xd4, 0x17, 0xc5, 0xfe, + 0xef, 0xc2, 0xa0, 0x28, 0x2c, 0x19, 0x0a, 0x15, 0x85, 0x8d, 0x15, 0xd3, 0x8f, 0x92, 0x4d, 0x43, + 0xd9, 0x1f, 0x27, 0x44, 0xaf, 0xff, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x60, 0x93, 0x14, 0xd0, 0x0a, + 0x3b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -5023,6 +5298,7 @@ type ControllerClient interface { DeleteSnapshot(ctx context.Context, in *DeleteSnapshotRequest, opts ...grpc.CallOption) (*DeleteSnapshotResponse, error) ListSnapshots(ctx context.Context, in *ListSnapshotsRequest, opts ...grpc.CallOption) (*ListSnapshotsResponse, error) ControllerExpandVolume(ctx context.Context, in *ControllerExpandVolumeRequest, opts ...grpc.CallOption) (*ControllerExpandVolumeResponse, error) + ControllerGetVolume(ctx context.Context, in *ControllerGetVolumeRequest, opts ...grpc.CallOption) (*ControllerGetVolumeResponse, error) } type controllerClient struct { @@ -5141,6 +5417,15 @@ func (c *controllerClient) ControllerExpandVolume(ctx context.Context, in *Contr return out, nil } +func (c *controllerClient) ControllerGetVolume(ctx context.Context, in *ControllerGetVolumeRequest, opts ...grpc.CallOption) (*ControllerGetVolumeResponse, error) { + out := new(ControllerGetVolumeResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/ControllerGetVolume", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ControllerServer is the server API for Controller service. type ControllerServer interface { CreateVolume(context.Context, *CreateVolumeRequest) (*CreateVolumeResponse, error) @@ -5155,6 +5440,7 @@ type ControllerServer interface { DeleteSnapshot(context.Context, *DeleteSnapshotRequest) (*DeleteSnapshotResponse, error) ListSnapshots(context.Context, *ListSnapshotsRequest) (*ListSnapshotsResponse, error) ControllerExpandVolume(context.Context, *ControllerExpandVolumeRequest) (*ControllerExpandVolumeResponse, error) + ControllerGetVolume(context.Context, *ControllerGetVolumeRequest) (*ControllerGetVolumeResponse, error) } // UnimplementedControllerServer can be embedded to have forward compatible implementations. @@ -5197,6 +5483,9 @@ func (*UnimplementedControllerServer) ListSnapshots(ctx context.Context, req *Li func (*UnimplementedControllerServer) ControllerExpandVolume(ctx context.Context, req *ControllerExpandVolumeRequest) (*ControllerExpandVolumeResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ControllerExpandVolume not implemented") } +func (*UnimplementedControllerServer) ControllerGetVolume(ctx context.Context, req *ControllerGetVolumeRequest) (*ControllerGetVolumeResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ControllerGetVolume not implemented") +} func RegisterControllerServer(s *grpc.Server, srv ControllerServer) { s.RegisterService(&_Controller_serviceDesc, srv) @@ -5418,6 +5707,24 @@ func _Controller_ControllerExpandVolume_Handler(srv interface{}, ctx context.Con return interceptor(ctx, in, info, handler) } +func _Controller_ControllerGetVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ControllerGetVolumeRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).ControllerGetVolume(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/ControllerGetVolume", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).ControllerGetVolume(ctx, req.(*ControllerGetVolumeRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Controller_serviceDesc = grpc.ServiceDesc{ ServiceName: "csi.v1.Controller", HandlerType: (*ControllerServer)(nil), @@ -5470,6 +5777,10 @@ var _Controller_serviceDesc = grpc.ServiceDesc{ MethodName: "ControllerExpandVolume", Handler: _Controller_ControllerExpandVolume_Handler, }, + { + MethodName: "ControllerGetVolume", + Handler: _Controller_ControllerGetVolume_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "github.com/container-storage-interface/spec/csi.proto", diff --git a/spec.md b/spec.md index 79f55c05..10c7dacb 100644 --- a/spec.md +++ b/spec.md @@ -376,6 +376,11 @@ service Controller { rpc ControllerExpandVolume (ControllerExpandVolumeRequest) returns (ControllerExpandVolumeResponse) {} + + rpc ControllerGetVolume (ControllerGetVolumeRequest) + returns (ControllerGetVolumeResponse) { + option (alpha_method) = true; + } } service Node { @@ -1451,6 +1456,12 @@ message ListVolumesResponse { // published_node_ids MAY include nodes not published to or // reported by the SP. The CO MUST be resilient to that. repeated string published_node_ids = 1; + + // Information about the current condition of the volume. + // This field is OPTIONAL. + // This field MUST be specified if the + // VOLUME_CONDITION controller capability is supported. + VolumeCondition volume_condition = 2 [(alpha_field) = true]; } message Entry { @@ -1485,6 +1496,65 @@ The CO MUST implement the specified error recovery behavior when it encounters t |-----------|-----------|-------------|-------------------| | Invalid `starting_token` | 10 ABORTED | Indicates that `starting_token` is not valid. | Caller SHOULD start the `ListVolumes` operation again with an empty `starting_token`. | +#### `ControllerGetVolume` + +**ALPHA FEATURE** + +This optional RPC MAY be called by the CO to fetch current information about a volume. + +A Controller Plugin MUST implement this `ControllerGetVolume` RPC call if it has `GET_VOLUME` capability. + +A Controller Plugin MUST provide a non-empty `volume_condition` field in `ControllerGetVolumeResponse` if it has `VOLUME_CONDITION` capability. + +`ControllerGetVolumeResponse` should contain current information of a volume if it exists. +If the volume does not exist any more, `ControllerGetVolume` should return gRPC error code `NOT_FOUND`. + +```protobuf +message ControllerGetVolumeRequest { + option (alpha_message) = true; + + // The ID of the volume to fetch current volume information for. + // This field is REQUIRED. + string volume_id = 1; +} + +message ControllerGetVolumeResponse { + option (alpha_message) = true; + + message VolumeStatus{ + // A list of all the `node_id` of nodes that this volume is + // controller published on. + // This field is OPTIONAL. + // This field MUST be specified if the PUBLISH_UNPUBLISH_VOLUME + // controller capability is supported. + // published_node_ids MAY include nodes not published to or + // reported by the SP. The CO MUST be resilient to that. + repeated string published_node_ids = 1; + + // Information about the current condition of the volume. + // This field is OPTIONAL. + // This field MUST be specified if the + // VOLUME_CONDITION controller capability is supported. + VolumeCondition volume_condition = 2; + } + + // This field is REQUIRED + Volume volume = 1; + + // This field is REQUIRED. + VolumeStatus status = 2; +} +``` + +##### ControllerGetVolume Errors + +If the plugin is unable to complete the ControllerGetVolume call successfully, it MUST return a non-ok gRPC code in the gRPC status. +If the conditions defined below are encountered, the plugin MUST return the specified gRPC error code. +The CO MUST implement the specified error recovery behavior when it encounters the gRPC error code. + +| Condition | gRPC Code | Description | Recovery Behavior | +|-----------|-----------|-------------|-------------------| +| Volume does not exist | 5 NOT_FOUND | Indicates that a volume corresponding to the specified `volume_id` does not exist. | Caller MUST verify that the `volume_id` is correct and that the volume is accessible and has not been deleted before retrying with exponential back off. | #### `GetCapacity` @@ -1577,6 +1647,24 @@ message ControllerServiceCapability { // Indicates the SP supports the // ListVolumesResponse.entry.published_nodes field LIST_VOLUMES_PUBLISHED_NODES = 10; + + // Indicates that the Controller service can report volume + // conditions. + // An SP MAY implement `VolumeCondition` in only the Controller + // Plugin, only the Node Plugin, or both. + // If `VolumeCondition` is implemented in both the Controller and + // Node Plugins, it SHALL report from different perspectives. + // If for some reason Controller and Node Plugins report + // misaligned volume conditions, CO SHALL assume the worst case + // is the truth. + // Note that, for alpha, `VolumeCondition` is intended be + // informative for humans only, not for automation. + VOLUME_CONDITION = 11 [(alpha_enum_value) = true]; + + // Indicates the SP supports the ControllerGetVolume RPC. + // This enables COs to, for example, fetch per volume + // condition after a volume is provisioned. + GET_VOLUME = 12 [(alpha_enum_value) = true]; } Type type = 1; @@ -2218,7 +2306,7 @@ The CO MUST implement the specified error recovery behavior when it encounters t #### `NodeGetVolumeStats` -A Node plugin MUST implement this RPC call if it has GET_VOLUME_STATS node capability. +A Node plugin MUST implement this RPC call if it has GET_VOLUME_STATS node capability or VOLUME_CONDITION node capability. `NodeGetVolumeStats` RPC call returns the volume capacity statistics available for the volume. If the volume is being used in `BlockVolume` mode then `used` and `available` MAY be omitted from `usage` field of `NodeGetVolumeStatsResponse`. @@ -2251,6 +2339,11 @@ message NodeGetVolumeStatsRequest { message NodeGetVolumeStatsResponse { // This field is OPTIONAL. repeated VolumeUsage usage = 1; + // Information about the current condition of the volume. + // This field is OPTIONAL. + // This field MUST be specified if the VOLUME_CONDITION node + // capability is supported. + VolumeCondition volume_condition = 2 [(alpha_field) = true]; } message VolumeUsage { @@ -2274,6 +2367,20 @@ message VolumeUsage { // Units by which values are measured. This field is REQUIRED. Unit unit = 4; } + +// VolumeCondition represents the current condition of a volume. +message VolumeCondition { + option (alpha_message) = true; + + // Normal volumes are available for use and operating optimally. + // An abnormal volume does not meet these criteria. + // This field is REQUIRED. + bool abnormal = 1; + + // The message describing the condition of the volume. + // This field is REQUIRED. + string message = 2; +} ``` ##### NodeGetVolumeStats Errors @@ -2315,6 +2422,18 @@ message NodeServiceCapability { GET_VOLUME_STATS = 2; // See VolumeExpansion for details. EXPAND_VOLUME = 3; + // Indicates that the Node service can report volume conditions. + // An SP MAY implement `VolumeCondition` in only the Node + // Plugin, only the Controller Plugin, or both. + // If `VolumeCondition` is implemented in both the Node and + // Controller Plugins, it SHALL report from different + // perspectives. + // If for some reason Node and Controller Plugins report + // misaligned volume conditions, CO SHALL assume the worst case + // is the truth. + // Note that, for alpha, `VolumeCondition` is intended to be + // informative for humans only, not for automation. + VOLUME_CONDITION = 4 [(alpha_enum_value) = true]; } Type type = 1;