From c74ce2424310e0c782b3eaeaf167162c3232fc08 Mon Sep 17 00:00:00 2001 From: xing-yang Date: Wed, 12 Feb 2020 20:52:21 +0000 Subject: [PATCH] Changed Severity to Condition --- csi.proto | 26 ++- lib/go/csi/csi.pb.go | 529 ++++++++++++++++++++++--------------------- spec.md | 41 ++-- 3 files changed, 319 insertions(+), 277 deletions(-) diff --git a/csi.proto b/csi.proto index 1dd32003..ac07ad33 100644 --- a/csi.proto +++ b/csi.proto @@ -815,6 +815,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; + + // volume_health shows error conditions reported by the SP. + // This field MUST be specified if the + // LIST_VOLUMES_VOLUME_HEALTH controller capability is supported. + // This field is OPTIONAL. + repeated VolumeHealth volume_health = 2; } message Entry { @@ -847,7 +853,7 @@ message GetVolumeResponse { message VolumeStatus{ // volume_health shows error conditions reported by the SP. // This field MUST be specified if the - // GET_VOLUME_HEALTH controller capability is supported. + // VOLUME_HEALTH controller capability is supported. repeated VolumeHealth volume_health = 1; } @@ -855,7 +861,7 @@ message GetVolumeResponse { Volume volume = 1; // This field is OPTIONAL. This field MUST be specified if the - // GET_VOLUME_HEALTH controller capability is supported. + // VOLUME_HEALTH controller capability is supported. VolumeStatus status = 2; } message GetCapacityRequest { @@ -933,12 +939,16 @@ message ControllerServiceCapability { // ListVolumesResponse.entry.published_nodes field LIST_VOLUMES_PUBLISHED_NODES = 10; + // Indicates the SP supports the + // ListVolumesResponse.entry.volume_health field + LIST_VOLUMES_VOLUME_HEALTH = 11; + // Indicates the SP supports the GetVolume RPC - GET_VOLUME = 11; + GET_VOLUME = 12; // Indicates the SP supports the // GetVolumeResponse.volume_health field - GET_VOLUME_HEALTH = 12; + VOLUME_HEALTH = 13; } Type type = 1; @@ -1292,7 +1302,7 @@ message VolumeUsage { } message VolumeHealth { - enum Severity { + enum Condition { // Volume health condition is unknown; treat it as healthy. UNKNOWN = 0; // Volume is healthy. @@ -1301,14 +1311,14 @@ message VolumeHealth { TEMPORARY_UNHEALTHY = 2; // Volume will fail soon. Move your data off and replace volume or // you may lose your data. - FATAL_EMINENT = 3; + FATAL_IMMINENT = 3; // Volume is unusable. Data loss is likely. FATAL = 4; } - // The severity level of the health condition of the volume. + // The level of the health condition of the volume. // This field is REQUIRED. - Severity severity = 1; + Condition condition = 1; // The error code describing the health condition of the volume. // This is an opaque field to CO. diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index 06a2e6dd..2a224d8d 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -205,11 +205,14 @@ const ( // Indicates the SP supports the // ListVolumesResponse.entry.published_nodes field ControllerServiceCapability_RPC_LIST_VOLUMES_PUBLISHED_NODES ControllerServiceCapability_RPC_Type = 10 + // Indicates the SP supports the + // ListVolumesResponse.entry.volume_health field + ControllerServiceCapability_RPC_LIST_VOLUMES_VOLUME_HEALTH ControllerServiceCapability_RPC_Type = 11 // Indicates the SP supports the GetVolume RPC - ControllerServiceCapability_RPC_GET_VOLUME ControllerServiceCapability_RPC_Type = 11 + ControllerServiceCapability_RPC_GET_VOLUME ControllerServiceCapability_RPC_Type = 12 // Indicates the SP supports the // GetVolumeResponse.volume_health field - ControllerServiceCapability_RPC_GET_VOLUME_HEALTH ControllerServiceCapability_RPC_Type = 12 + ControllerServiceCapability_RPC_VOLUME_HEALTH ControllerServiceCapability_RPC_Type = 13 ) var ControllerServiceCapability_RPC_Type_name = map[int32]string{ @@ -224,8 +227,9 @@ var ControllerServiceCapability_RPC_Type_name = map[int32]string{ 8: "PUBLISH_READONLY", 9: "EXPAND_VOLUME", 10: "LIST_VOLUMES_PUBLISHED_NODES", - 11: "GET_VOLUME", - 12: "GET_VOLUME_HEALTH", + 11: "LIST_VOLUMES_VOLUME_HEALTH", + 12: "GET_VOLUME", + 13: "VOLUME_HEALTH", } var ControllerServiceCapability_RPC_Type_value = map[string]int32{ @@ -240,8 +244,9 @@ var ControllerServiceCapability_RPC_Type_value = map[string]int32{ "PUBLISH_READONLY": 8, "EXPAND_VOLUME": 9, "LIST_VOLUMES_PUBLISHED_NODES": 10, - "GET_VOLUME": 11, - "GET_VOLUME_HEALTH": 12, + "LIST_VOLUMES_VOLUME_HEALTH": 11, + "GET_VOLUME": 12, + "VOLUME_HEALTH": 13, } func (x ControllerServiceCapability_RPC_Type) String() string { @@ -280,43 +285,43 @@ func (VolumeUsage_Unit) EnumDescriptor() ([]byte, []int) { return fileDescriptor_9cdb00adce470e01, []int{51, 0} } -type VolumeHealth_Severity int32 +type VolumeHealth_Condition int32 const ( // Volume health condition is unknown; treat it as healthy. - VolumeHealth_UNKNOWN VolumeHealth_Severity = 0 + VolumeHealth_UNKNOWN VolumeHealth_Condition = 0 // Volume is healthy. - VolumeHealth_HEALTHY VolumeHealth_Severity = 1 + VolumeHealth_HEALTHY VolumeHealth_Condition = 1 // Volume is temporarily unhealthy, but will likely become healthy. - VolumeHealth_TEMPORARY_UNHEALTHY VolumeHealth_Severity = 2 + VolumeHealth_TEMPORARY_UNHEALTHY VolumeHealth_Condition = 2 // Volume will fail soon. Move your data off and replace volume or // you may lose your data. - VolumeHealth_FATAL_EMINENT VolumeHealth_Severity = 3 + VolumeHealth_FATAL_IMMINENT VolumeHealth_Condition = 3 // Volume is unusable. Data loss is likely. - VolumeHealth_FATAL VolumeHealth_Severity = 4 + VolumeHealth_FATAL VolumeHealth_Condition = 4 ) -var VolumeHealth_Severity_name = map[int32]string{ +var VolumeHealth_Condition_name = map[int32]string{ 0: "UNKNOWN", 1: "HEALTHY", 2: "TEMPORARY_UNHEALTHY", - 3: "FATAL_EMINENT", + 3: "FATAL_IMMINENT", 4: "FATAL", } -var VolumeHealth_Severity_value = map[string]int32{ +var VolumeHealth_Condition_value = map[string]int32{ "UNKNOWN": 0, "HEALTHY": 1, "TEMPORARY_UNHEALTHY": 2, - "FATAL_EMINENT": 3, + "FATAL_IMMINENT": 3, "FATAL": 4, } -func (x VolumeHealth_Severity) String() string { - return proto.EnumName(VolumeHealth_Severity_name, int32(x)) +func (x VolumeHealth_Condition) String() string { + return proto.EnumName(VolumeHealth_Condition_name, int32(x)) } -func (VolumeHealth_Severity) EnumDescriptor() ([]byte, []int) { +func (VolumeHealth_Condition) EnumDescriptor() ([]byte, []int) { return fileDescriptor_9cdb00adce470e01, []int{52, 0} } @@ -2440,10 +2445,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"` + // volume_health shows error conditions reported by the SP. + // This field MUST be specified if the + // LIST_VOLUMES_VOLUME_HEALTH controller capability is supported. + // This field is OPTIONAL. + VolumeHealth []*VolumeHealth `protobuf:"bytes,2,rep,name=volume_health,json=volumeHealth,proto3" json:"volume_health,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ListVolumesResponse_VolumeStatus) Reset() { *m = ListVolumesResponse_VolumeStatus{} } @@ -2478,6 +2488,13 @@ func (m *ListVolumesResponse_VolumeStatus) GetPublishedNodeIds() []string { return nil } +func (m *ListVolumesResponse_VolumeStatus) GetVolumeHealth() []*VolumeHealth { + if m != nil { + return m.VolumeHealth + } + return nil +} + type ListVolumesResponse_Entry struct { // This field is REQUIRED Volume *Volume `protobuf:"bytes,1,opt,name=volume,proto3" json:"volume,omitempty"` @@ -2574,7 +2591,7 @@ type GetVolumeResponse struct { // This field is REQUIRED Volume *Volume `protobuf:"bytes,1,opt,name=volume,proto3" json:"volume,omitempty"` // This field is OPTIONAL. This field MUST be specified if the - // GET_VOLUME_HEALTH controller capability is supported. + // VOLUME_HEALTH controller capability is supported. Status *GetVolumeResponse_VolumeStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -2623,7 +2640,7 @@ func (m *GetVolumeResponse) GetStatus() *GetVolumeResponse_VolumeStatus { type GetVolumeResponse_VolumeStatus struct { // volume_health shows error conditions reported by the SP. // This field MUST be specified if the - // GET_VOLUME_HEALTH controller capability is supported. + // VOLUME_HEALTH controller capability is supported. VolumeHealth []*VolumeHealth `protobuf:"bytes,1,rep,name=volume_health,json=volumeHealth,proto3" json:"volume_health,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -4220,9 +4237,9 @@ func (m *VolumeUsage) GetUnit() VolumeUsage_Unit { } type VolumeHealth struct { - // The severity level of the health condition of the volume. + // The level of the health condition of the volume. // This field is REQUIRED. - Severity VolumeHealth_Severity `protobuf:"varint,1,opt,name=severity,proto3,enum=csi.v1.VolumeHealth_Severity" json:"severity,omitempty"` + Condition VolumeHealth_Condition `protobuf:"varint,1,opt,name=condition,proto3,enum=csi.v1.VolumeHealth_Condition" json:"condition,omitempty"` // The error code describing the health condition of the volume. // This is an opaque field to CO. // This field is REQUIRED. @@ -4260,9 +4277,9 @@ func (m *VolumeHealth) XXX_DiscardUnknown() { var xxx_messageInfo_VolumeHealth proto.InternalMessageInfo -func (m *VolumeHealth) GetSeverity() VolumeHealth_Severity { +func (m *VolumeHealth) GetCondition() VolumeHealth_Condition { if m != nil { - return m.Severity + return m.Condition } return VolumeHealth_UNKNOWN } @@ -4722,7 +4739,7 @@ func init() { proto.RegisterEnum("csi.v1.VolumeCapability_AccessMode_Mode", VolumeCapability_AccessMode_Mode_name, VolumeCapability_AccessMode_Mode_value) proto.RegisterEnum("csi.v1.ControllerServiceCapability_RPC_Type", ControllerServiceCapability_RPC_Type_name, ControllerServiceCapability_RPC_Type_value) proto.RegisterEnum("csi.v1.VolumeUsage_Unit", VolumeUsage_Unit_name, VolumeUsage_Unit_value) - proto.RegisterEnum("csi.v1.VolumeHealth_Severity", VolumeHealth_Severity_name, VolumeHealth_Severity_value) + proto.RegisterEnum("csi.v1.VolumeHealth_Condition", VolumeHealth_Condition_name, VolumeHealth_Condition_value) proto.RegisterEnum("csi.v1.NodeServiceCapability_RPC_Type", NodeServiceCapability_RPC_Type_name, NodeServiceCapability_RPC_Type_value) proto.RegisterType((*GetPluginInfoRequest)(nil), "csi.v1.GetPluginInfoRequest") proto.RegisterType((*GetPluginInfoResponse)(nil), "csi.v1.GetPluginInfoResponse") @@ -4833,232 +4850,232 @@ func init() { } var fileDescriptor_9cdb00adce470e01 = []byte{ - // 3585 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0x4d, 0x70, 0xdb, 0x46, - 0x96, 0x26, 0x40, 0x52, 0x22, 0x1f, 0x25, 0x9a, 0x6a, 0xfd, 0xd1, 0x90, 0x64, 0xcb, 0x70, 0xec, - 0xc8, 0x8e, 0x4d, 0x6f, 0x94, 0x38, 0xb5, 0xfe, 0x49, 0x36, 0x14, 0x45, 0x4b, 0x8c, 0x29, 0x4a, - 0x01, 0x29, 0x3b, 0x76, 0x36, 0x85, 0x40, 0x64, 0x8b, 0x46, 0x85, 0x04, 0x18, 0x00, 0xd4, 0x5a, - 0x7b, 0xd9, 0xaa, 0xec, 0x69, 0x6b, 0xb7, 0x6a, 0x8f, 0xbb, 0xb7, 0xa9, 0x4a, 0x6e, 0x53, 0x49, - 0xe5, 0x34, 0x33, 0xc7, 0xa9, 0x9a, 0xc3, 0x1c, 0xe6, 0x30, 0x35, 0x35, 0x97, 0x99, 0x9a, 0x4b, - 0xee, 0xa9, 0x49, 0x55, 0xce, 0x73, 0x9a, 0x02, 0xba, 0x01, 0x02, 0x20, 0x00, 0x92, 0x96, 0x5d, - 0x39, 0xcc, 0x89, 0xc4, 0xeb, 0xd7, 0xaf, 0x5f, 0x77, 0xbf, 0xf7, 0xfa, 0xbd, 0xaf, 0x1b, 0x6e, - 0xb7, 0x65, 0xe3, 0x59, 0xff, 0xa8, 0xd0, 0x54, 0xbb, 0xb7, 0x9a, 0xaa, 0x62, 0x48, 0xb2, 0x82, - 0xb5, 0x9b, 0xba, 0xa1, 0x6a, 0x52, 0x1b, 0xdf, 0x94, 0x15, 0x03, 0x6b, 0xc7, 0x52, 0x13, 0xdf, - 0xd2, 0x7b, 0xb8, 0x79, 0xab, 0xa9, 0xcb, 0x85, 0x9e, 0xa6, 0x1a, 0x2a, 0x9a, 0x32, 0xff, 0x9e, - 0xbc, 0xc9, 0xad, 0xb7, 0x55, 0xb5, 0xdd, 0xc1, 0xb7, 0x2c, 0xea, 0x51, 0xff, 0xf8, 0x56, 0x0b, - 0xeb, 0x4d, 0x4d, 0xee, 0x19, 0xaa, 0x46, 0x38, 0xb9, 0x8b, 0x7e, 0x0e, 0x43, 0xee, 0x62, 0xdd, - 0x90, 0xba, 0x3d, 0xca, 0x70, 0xc1, 0xcf, 0xf0, 0x6f, 0x9a, 0xd4, 0xeb, 0x61, 0x4d, 0x27, 0xed, - 0xfc, 0x12, 0x2c, 0xec, 0x60, 0xe3, 0xa0, 0xd3, 0x6f, 0xcb, 0x4a, 0x45, 0x39, 0x56, 0x05, 0xfc, - 0x79, 0x1f, 0xeb, 0x06, 0xff, 0x67, 0x06, 0x16, 0x7d, 0x0d, 0x7a, 0x4f, 0x55, 0x74, 0x8c, 0x10, - 0x24, 0x14, 0xa9, 0x8b, 0xf3, 0xcc, 0x3a, 0xb3, 0x91, 0x16, 0xac, 0xff, 0xe8, 0x0a, 0x64, 0x4f, - 0xb0, 0xd2, 0x52, 0x35, 0xf1, 0x04, 0x6b, 0xba, 0xac, 0x2a, 0x79, 0xd6, 0x6a, 0x9d, 0x25, 0xd4, - 0x47, 0x84, 0x88, 0x76, 0x20, 0xd5, 0x95, 0x14, 0xf9, 0x18, 0xeb, 0x46, 0x3e, 0xbe, 0x1e, 0xdf, - 0xc8, 0x6c, 0xbe, 0x51, 0x20, 0x53, 0x2d, 0x04, 0x8e, 0x55, 0xd8, 0xa3, 0xdc, 0x65, 0xc5, 0xd0, - 0x4e, 0x05, 0xa7, 0x33, 0x77, 0x0f, 0x66, 0x3d, 0x4d, 0x28, 0x07, 0xf1, 0xcf, 0xf0, 0x29, 0xd5, - 0xc9, 0xfc, 0x8b, 0x16, 0x20, 0x79, 0x22, 0x75, 0xfa, 0x98, 0x6a, 0x42, 0x3e, 0xee, 0xb2, 0xff, - 0xcc, 0xf0, 0x17, 0x60, 0xd5, 0x19, 0xad, 0x24, 0xf5, 0xa4, 0x23, 0xb9, 0x23, 0x1b, 0x32, 0xd6, - 0xed, 0xa9, 0x7f, 0x02, 0x6b, 0x21, 0xed, 0x74, 0x05, 0xee, 0xc3, 0x4c, 0xd3, 0x45, 0xcf, 0x33, - 0xd6, 0x54, 0xf2, 0xf6, 0x54, 0x7c, 0x3d, 0x4f, 0x05, 0x0f, 0x37, 0xff, 0xfb, 0x38, 0xe4, 0xfc, - 0x2c, 0xe8, 0x3e, 0x4c, 0xeb, 0x58, 0x3b, 0x91, 0x9b, 0x64, 0x5d, 0x33, 0x9b, 0xeb, 0x61, 0xd2, - 0x0a, 0x75, 0xc2, 0xb7, 0x1b, 0x13, 0xec, 0x2e, 0xe8, 0x10, 0x72, 0x27, 0x6a, 0xa7, 0xdf, 0xc5, - 0x22, 0x7e, 0xde, 0x93, 0x14, 0x67, 0x03, 0x32, 0x9b, 0x1b, 0xa1, 0x62, 0x1e, 0x59, 0x1d, 0xca, - 0x36, 0xff, 0x6e, 0x4c, 0x38, 0x77, 0xe2, 0x25, 0x71, 0xff, 0xc7, 0xc0, 0x34, 0x1d, 0x0d, 0xdd, - 0x81, 0x84, 0x71, 0xda, 0x23, 0xda, 0x65, 0x37, 0xaf, 0x8c, 0xd2, 0xae, 0xd0, 0x38, 0xed, 0x61, - 0xc1, 0xea, 0xc2, 0x7f, 0x08, 0x09, 0xf3, 0x0b, 0x65, 0x60, 0xfa, 0xb0, 0xf6, 0xb0, 0xb6, 0xff, - 0xb8, 0x96, 0x8b, 0xa1, 0x25, 0x40, 0xa5, 0xfd, 0x5a, 0x43, 0xd8, 0xaf, 0x56, 0xcb, 0x82, 0x58, - 0x2f, 0x0b, 0x8f, 0x2a, 0xa5, 0x72, 0x8e, 0x41, 0xaf, 0xc1, 0xfa, 0xa3, 0xfd, 0xea, 0xe1, 0x5e, - 0x59, 0x2c, 0x96, 0x4a, 0xe5, 0x7a, 0xbd, 0xb2, 0x55, 0xa9, 0x56, 0x1a, 0x4f, 0xc4, 0xd2, 0x7e, - 0xad, 0xde, 0x10, 0x8a, 0x95, 0x5a, 0xa3, 0x9e, 0x63, 0xb9, 0x2f, 0x18, 0x38, 0xe7, 0x9b, 0x00, - 0x2a, 0x7a, 0x34, 0xbc, 0x39, 0xee, 0xc4, 0xdd, 0x9a, 0xde, 0x08, 0xd2, 0x14, 0x60, 0x6a, 0xbf, - 0x56, 0xad, 0xd4, 0x4c, 0xed, 0x32, 0x30, 0xbd, 0xff, 0xe0, 0x81, 0xf5, 0xc1, 0x6e, 0x4d, 0x91, - 0x01, 0xf9, 0x2c, 0xcc, 0x1c, 0x68, 0xea, 0x11, 0xb6, 0xed, 0xa7, 0x08, 0xb3, 0xf4, 0x9b, 0xda, - 0xcb, 0x3f, 0x41, 0x52, 0xc3, 0x52, 0xeb, 0x94, 0x6e, 0x2d, 0x57, 0x20, 0x3e, 0x59, 0xb0, 0x7d, - 0xb2, 0xb0, 0xa5, 0xaa, 0x9d, 0x47, 0xa6, 0x7d, 0x0a, 0x84, 0x91, 0xff, 0x31, 0x01, 0xf3, 0x25, - 0x0d, 0x4b, 0x06, 0x26, 0xda, 0x52, 0xd1, 0x81, 0xbe, 0x77, 0x1f, 0xb2, 0xa6, 0x7d, 0x35, 0x65, - 0xe3, 0x54, 0xd4, 0x24, 0xa5, 0x8d, 0xe9, 0xd6, 0x2f, 0xda, 0x2b, 0x50, 0xa2, 0xad, 0x82, 0xd9, - 0x28, 0xcc, 0x36, 0xdd, 0x9f, 0xa8, 0x02, 0xf3, 0xd4, 0x74, 0x3c, 0x26, 0x1d, 0xf7, 0x9a, 0x34, - 0xd1, 0xc2, 0x65, 0xd2, 0xe8, 0xc4, 0x4b, 0x91, 0xb1, 0x8e, 0x1e, 0x02, 0xf4, 0x24, 0x4d, 0xea, - 0x62, 0x03, 0x6b, 0x7a, 0x3e, 0xe1, 0xf5, 0xef, 0x80, 0xd9, 0x14, 0x0e, 0x1c, 0x6e, 0xe2, 0xdf, - 0xae, 0xee, 0x68, 0xc7, 0x74, 0x88, 0xa6, 0x86, 0x0d, 0x3d, 0x9f, 0xb4, 0x24, 0x6d, 0x44, 0x49, - 0xaa, 0x13, 0x56, 0x4b, 0xcc, 0x56, 0xfc, 0xff, 0xb7, 0x18, 0xc1, 0xee, 0x8d, 0xf6, 0x61, 0xd1, - 0x9e, 0xa0, 0xaa, 0x18, 0x58, 0x31, 0x44, 0x5d, 0xed, 0x6b, 0x4d, 0x9c, 0x9f, 0xb2, 0x56, 0x69, - 0xc5, 0x37, 0x45, 0xc2, 0x53, 0xb7, 0x58, 0x04, 0xba, 0x34, 0x1e, 0x22, 0x7a, 0x0a, 0x9c, 0xd4, - 0x6c, 0x62, 0x5d, 0x97, 0xc9, 0x5a, 0x88, 0x1a, 0xfe, 0xbc, 0x2f, 0x6b, 0xb8, 0x8b, 0x15, 0x43, - 0xcf, 0x4f, 0x7b, 0xa5, 0x36, 0xd4, 0x9e, 0xda, 0x51, 0xdb, 0xa7, 0xc2, 0x80, 0x47, 0x38, 0xef, - 0xe9, 0xee, 0x6a, 0xd1, 0xb9, 0x77, 0xe1, 0x9c, 0x6f, 0x51, 0x26, 0x89, 0x6c, 0xdc, 0x5d, 0x98, - 0x71, 0xaf, 0xc4, 0x44, 0x51, 0xf1, 0xbf, 0x59, 0x98, 0x0f, 0x58, 0x03, 0xb4, 0x0b, 0x29, 0x5d, - 0x91, 0x7a, 0xfa, 0x33, 0xd5, 0xa0, 0xf6, 0x7b, 0x3d, 0x62, 0xc9, 0x0a, 0x75, 0xca, 0x4b, 0x3e, - 0x77, 0x63, 0x82, 0xd3, 0x1b, 0x6d, 0xc1, 0x14, 0x59, 0x4f, 0x7f, 0x6c, 0x0a, 0x92, 0x43, 0x68, - 0x8e, 0x14, 0xda, 0x93, 0x7b, 0x13, 0xb2, 0xde, 0x11, 0xd0, 0x45, 0xc8, 0xd8, 0x23, 0x88, 0x72, - 0x8b, 0xce, 0x15, 0x6c, 0x52, 0xa5, 0xc5, 0xbd, 0x01, 0x33, 0x6e, 0x61, 0x68, 0x05, 0xd2, 0xd4, - 0x20, 0x1c, 0xf6, 0x14, 0x21, 0x54, 0x5a, 0x8e, 0x4f, 0xbf, 0x07, 0x0b, 0x5e, 0x3b, 0xa3, 0xae, - 0x7c, 0xd5, 0x99, 0x03, 0x59, 0x8b, 0xac, 0x77, 0x0e, 0xb6, 0x9e, 0xfc, 0xcf, 0x13, 0x90, 0xf3, - 0x3b, 0x0d, 0xba, 0x0f, 0xc9, 0xa3, 0x8e, 0xda, 0xfc, 0x8c, 0xf6, 0x7d, 0x2d, 0xcc, 0xbb, 0x0a, - 0x5b, 0x26, 0x17, 0xa1, 0xee, 0xc6, 0x04, 0xd2, 0xc9, 0xec, 0xdd, 0x55, 0xfb, 0x8a, 0x41, 0x57, - 0x2f, 0xbc, 0xf7, 0x9e, 0xc9, 0x35, 0xe8, 0x6d, 0x75, 0x42, 0xdb, 0x90, 0x21, 0x66, 0x27, 0x76, - 0xd5, 0x16, 0xce, 0xc7, 0x2d, 0x19, 0x97, 0x43, 0x65, 0x14, 0x2d, 0xde, 0x3d, 0xb5, 0x85, 0x05, - 0x90, 0x9c, 0xff, 0xdc, 0x2c, 0x64, 0x5c, 0xba, 0x71, 0x3b, 0x90, 0x71, 0x0d, 0x86, 0x96, 0x61, - 0xfa, 0x58, 0x17, 0x9d, 0x20, 0x9c, 0x16, 0xa6, 0x8e, 0x75, 0x2b, 0x9e, 0x5e, 0x84, 0x8c, 0xa5, - 0x85, 0x78, 0xdc, 0x91, 0xda, 0x7a, 0x9e, 0x5d, 0x8f, 0x9b, 0x7b, 0x64, 0x91, 0x1e, 0x98, 0x14, - 0xee, 0xaf, 0x0c, 0xc0, 0x60, 0x48, 0x74, 0x1f, 0x12, 0x96, 0x96, 0x24, 0x94, 0x6f, 0x8c, 0xa1, - 0x65, 0xc1, 0x52, 0xd5, 0xea, 0xc5, 0xff, 0x8c, 0x81, 0x84, 0x25, 0xc6, 0x7f, 0xe0, 0xd4, 0x2b, - 0xb5, 0x9d, 0x6a, 0x59, 0xac, 0xed, 0x6f, 0x97, 0xc5, 0xc7, 0x42, 0xa5, 0x51, 0x16, 0x72, 0x0c, - 0x5a, 0x81, 0x65, 0x37, 0x5d, 0x28, 0x17, 0xb7, 0xcb, 0x82, 0xb8, 0x5f, 0xab, 0x3e, 0xc9, 0xb1, - 0x88, 0x83, 0xa5, 0xbd, 0xc3, 0x6a, 0xa3, 0x32, 0xdc, 0x16, 0x47, 0xab, 0x90, 0x77, 0xb5, 0x51, - 0x19, 0x54, 0x6c, 0xc2, 0x14, 0xeb, 0x6a, 0x25, 0x7f, 0x69, 0x63, 0x72, 0x6b, 0xd6, 0xd9, 0x0c, - 0xcb, 0xd8, 0x1e, 0xc3, 0xac, 0x27, 0x46, 0x9b, 0xe9, 0x14, 0x0d, 0x2a, 0x2d, 0xf1, 0xe8, 0xd4, - 0xb0, 0x52, 0x0c, 0x66, 0x23, 0x2e, 0xcc, 0xda, 0xd4, 0x2d, 0x93, 0x68, 0x2e, 0x6b, 0x47, 0xee, - 0xca, 0x06, 0xe5, 0x61, 0x2d, 0x1e, 0xb0, 0x48, 0x16, 0x03, 0xff, 0x1d, 0x0b, 0x53, 0x74, 0x6f, - 0xae, 0xb8, 0x4e, 0x09, 0x8f, 0x48, 0x9b, 0x4a, 0x44, 0x7a, 0x9c, 0x83, 0xf5, 0x3a, 0x07, 0xda, - 0x85, 0xac, 0x3b, 0x94, 0x3e, 0xb7, 0x93, 0xb8, 0x4b, 0xde, 0x0d, 0x72, 0xfb, 0xf3, 0x73, 0x9a, - 0xba, 0xcd, 0x9e, 0xb8, 0x69, 0x68, 0x0b, 0xb2, 0xbe, 0x68, 0x9c, 0x18, 0x1d, 0x8d, 0x67, 0x9b, - 0x9e, 0xc0, 0x54, 0x84, 0x79, 0x3b, 0x90, 0x76, 0xb0, 0x68, 0xd0, 0x40, 0x4b, 0x4f, 0x8b, 0xdc, - 0x50, 0x00, 0x46, 0x03, 0x66, 0x9b, 0xc6, 0xbd, 0x0f, 0x68, 0x58, 0xd7, 0x89, 0xa2, 0x66, 0x1f, - 0xe6, 0x03, 0x42, 0x3c, 0x2a, 0x40, 0xda, 0xda, 0x2a, 0x5d, 0x36, 0x30, 0x4d, 0x0f, 0x87, 0x35, - 0x1a, 0xb0, 0x98, 0xfc, 0x3d, 0x0d, 0x1f, 0x63, 0x4d, 0xc3, 0x2d, 0xcb, 0x3d, 0x02, 0xf9, 0x1d, - 0x16, 0xfe, 0x3f, 0x19, 0x48, 0xd9, 0x74, 0x74, 0x17, 0x52, 0x3a, 0x6e, 0x93, 0xe3, 0x87, 0x8c, - 0x75, 0xc1, 0xdf, 0xb7, 0x50, 0xa7, 0x0c, 0x34, 0x91, 0xb6, 0xf9, 0xcd, 0x44, 0xda, 0xd3, 0x34, - 0xd1, 0xe4, 0x7f, 0xc5, 0xc0, 0xfc, 0x36, 0xee, 0x60, 0x7f, 0x96, 0x12, 0x15, 0x61, 0xdd, 0x07, - 0x3b, 0xeb, 0x3d, 0xd8, 0x03, 0x44, 0x45, 0x1c, 0xec, 0x67, 0x3a, 0xec, 0x96, 0x60, 0xc1, 0x3b, - 0x1a, 0x09, 0xef, 0xfc, 0x0f, 0x71, 0xb8, 0x60, 0xda, 0x82, 0xa6, 0x76, 0x3a, 0x58, 0x3b, 0xe8, - 0x1f, 0x75, 0x64, 0xfd, 0xd9, 0x04, 0x93, 0x5b, 0x86, 0x69, 0x45, 0x6d, 0xb9, 0x9c, 0x67, 0xca, - 0xfc, 0xac, 0xb4, 0x50, 0x19, 0xe6, 0xfc, 0x69, 0xd6, 0x29, 0x0d, 0xc2, 0xe1, 0x49, 0x56, 0xee, - 0xc4, 0x7f, 0x82, 0x70, 0x90, 0x32, 0x13, 0x44, 0x55, 0xe9, 0x9c, 0x5a, 0x1e, 0x93, 0x12, 0x9c, - 0x6f, 0x24, 0xf8, 0x33, 0xa6, 0xb7, 0x9c, 0x8c, 0x29, 0x72, 0x46, 0x51, 0xc9, 0xd3, 0xa7, 0x43, - 0x1e, 0x3f, 0x65, 0x89, 0xbe, 0x33, 0xa6, 0xe8, 0x91, 0x91, 0xe0, 0x2c, 0xbb, 0xf8, 0x12, 0xdc, - 0xf7, 0x77, 0x0c, 0x5c, 0x0c, 0x9d, 0x02, 0x3d, 0xf2, 0x5b, 0x70, 0xae, 0x47, 0x1a, 0x9c, 0x45, - 0x20, 0x5e, 0x76, 0x6f, 0xe4, 0x22, 0xd0, 0x2a, 0x96, 0x52, 0x3d, 0xcb, 0x90, 0xed, 0x79, 0x88, - 0x5c, 0x11, 0xe6, 0x03, 0xd8, 0x26, 0x9a, 0xcc, 0xf7, 0x0c, 0xac, 0x0f, 0x54, 0x39, 0x54, 0x7a, - 0x2f, 0xcf, 0x7c, 0x1b, 0x03, 0xdb, 0x22, 0x21, 0xff, 0xf6, 0xf0, 0xdc, 0x83, 0x07, 0x7c, 0x55, - 0x1e, 0x7c, 0x19, 0x2e, 0x45, 0x0c, 0x4d, 0xdd, 0xf9, 0xbb, 0x04, 0x5c, 0x7a, 0x24, 0x75, 0xe4, - 0x96, 0x93, 0xc8, 0x05, 0xd4, 0xfb, 0xd1, 0x4b, 0xd2, 0x1c, 0xf2, 0x00, 0x12, 0xb5, 0xee, 0x3b, - 0x5e, 0x3b, 0x4a, 0xfe, 0x18, 0xc7, 0xe1, 0x4b, 0x2c, 0xc2, 0x9e, 0x04, 0x14, 0x61, 0x77, 0xc6, - 0xd7, 0x35, 0xaa, 0x24, 0x3b, 0xf4, 0x07, 0x98, 0x77, 0xc6, 0x97, 0x1b, 0x61, 0x05, 0x67, 0xf6, - 0xe2, 0x9f, 0xb2, 0x6a, 0xfa, 0x4d, 0x02, 0xf8, 0xa8, 0xd9, 0xd3, 0x18, 0x22, 0x40, 0xba, 0xa9, - 0x2a, 0xc7, 0xb2, 0xd6, 0xc5, 0x2d, 0x9a, 0xfd, 0xbf, 0x3d, 0xce, 0xe2, 0xd1, 0x00, 0x52, 0xb2, - 0xfb, 0x0a, 0x03, 0x31, 0x28, 0x0f, 0xd3, 0x5d, 0xac, 0xeb, 0x52, 0xdb, 0x56, 0xcb, 0xfe, 0xe4, - 0xbe, 0x89, 0x43, 0xda, 0xe9, 0x82, 0x94, 0x21, 0x0b, 0x26, 0xe1, 0x6b, 0xe7, 0x45, 0x14, 0x78, - 0x71, 0x63, 0x66, 0x5f, 0xc0, 0x98, 0x5b, 0x1e, 0x63, 0x26, 0xee, 0xb0, 0xfd, 0x42, 0x6a, 0x47, - 0xd8, 0xf5, 0x4f, 0x6e, 0x80, 0xfc, 0xbf, 0x02, 0xaa, 0xca, 0x3a, 0xad, 0xa2, 0x9c, 0xb0, 0x64, - 0x16, 0x4d, 0xd2, 0x73, 0x11, 0x2b, 0x86, 0x26, 0xd3, 0x74, 0x3d, 0x29, 0x40, 0x57, 0x7a, 0x5e, - 0x26, 0x14, 0x33, 0xa5, 0xd7, 0x0d, 0x49, 0x33, 0x64, 0xa5, 0x2d, 0x1a, 0xea, 0x67, 0xd8, 0x01, - 0x5d, 0x6d, 0x6a, 0xc3, 0x24, 0xf2, 0x5f, 0xb2, 0x30, 0xef, 0x11, 0x4f, 0x6d, 0xf2, 0x1e, 0x4c, - 0x0f, 0x64, 0x7b, 0xd2, 0xf8, 0x00, 0xee, 0x02, 0x59, 0x36, 0xbb, 0x07, 0x5a, 0x03, 0x50, 0xf0, - 0x73, 0xc3, 0x33, 0x6e, 0xda, 0xa4, 0x58, 0x63, 0x72, 0xf7, 0x9d, 0x9a, 0xdb, 0x90, 0x8c, 0xbe, - 0x8e, 0x6e, 0x00, 0xa2, 0x11, 0x1a, 0xb7, 0x44, 0x7a, 0xc4, 0x90, 0x61, 0xd3, 0x42, 0xce, 0x69, - 0xa9, 0x59, 0x87, 0x8d, 0xce, 0x7d, 0x0e, 0x49, 0xb2, 0x88, 0x63, 0x56, 0xdb, 0xe8, 0x7d, 0x98, - 0xd2, 0xad, 0x81, 0xfc, 0xc8, 0x42, 0xd0, 0x4c, 0xdc, 0x8a, 0x09, 0xb4, 0x1f, 0x7f, 0x0b, 0x72, - 0x3b, 0xd8, 0x18, 0xff, 0xa8, 0xe4, 0x7f, 0xcb, 0xc0, 0x9c, 0xab, 0xc7, 0x64, 0xf0, 0x00, 0x7a, - 0xcf, 0xa7, 0xf0, 0x55, 0x17, 0x0c, 0xee, 0x4b, 0x1e, 0x82, 0xd4, 0xe5, 0x2a, 0xbe, 0xf5, 0xbd, - 0x03, 0xd4, 0x09, 0xc5, 0x67, 0x58, 0xea, 0x18, 0xcf, 0xe8, 0x8e, 0x2e, 0x78, 0x87, 0xdf, 0xb5, - 0xda, 0x84, 0x99, 0x13, 0xd7, 0x17, 0xff, 0x0d, 0x0b, 0x68, 0x07, 0x1b, 0x4e, 0x01, 0x4a, 0x27, - 0x1f, 0xe2, 0xc5, 0xcc, 0x0b, 0x78, 0xf1, 0x07, 0x1e, 0x2f, 0x26, 0x71, 0xe0, 0xba, 0x6b, 0xc2, - 0xbe, 0xa1, 0x23, 0xcf, 0xa0, 0x90, 0xa2, 0x8f, 0x64, 0xd2, 0xe3, 0x15, 0x7d, 0x67, 0x74, 0xd6, - 0x6d, 0x98, 0xf7, 0xe8, 0x4c, 0x77, 0xfe, 0x26, 0x20, 0xe9, 0x44, 0x92, 0x3b, 0x92, 0xa9, 0x97, - 0x5d, 0x53, 0xd3, 0x1a, 0x7b, 0xce, 0x69, 0xb1, 0xbb, 0xf1, 0xbc, 0x3b, 0x55, 0xa3, 0xf2, 0xfc, - 0xf7, 0x10, 0x1d, 0x77, 0x8a, 0x33, 0xc4, 0x43, 0xc7, 0xdd, 0x09, 0xbc, 0x8b, 0xb8, 0x3c, 0x9c, - 0x9e, 0x51, 0x60, 0x3e, 0xf4, 0x5a, 0xe2, 0x8f, 0x71, 0x58, 0x89, 0xe0, 0x46, 0xf7, 0x20, 0xae, - 0xf5, 0x9a, 0xd4, 0xae, 0x5f, 0x1f, 0x43, 0x7e, 0x41, 0x38, 0x28, 0xed, 0xc6, 0x04, 0xb3, 0x17, - 0xf7, 0x03, 0x0b, 0x71, 0xe1, 0xa0, 0x84, 0xde, 0xf7, 0x60, 0xf4, 0x37, 0xc6, 0x94, 0xe2, 0x86, - 0xe8, 0xbf, 0x62, 0x83, 0x30, 0xfa, 0x3c, 0x2c, 0x94, 0x84, 0x72, 0xb1, 0x51, 0x16, 0xb7, 0xcb, - 0xd5, 0x72, 0xa3, 0x2c, 0x92, 0x3b, 0x84, 0x1c, 0x83, 0x56, 0x21, 0x7f, 0x70, 0xb8, 0x55, 0xad, - 0xd4, 0x77, 0xc5, 0xc3, 0x9a, 0xfd, 0x8f, 0xb6, 0xb2, 0x28, 0x07, 0x33, 0xd5, 0x4a, 0xbd, 0x41, - 0x09, 0xf5, 0x5c, 0xdc, 0xa4, 0xec, 0x94, 0x1b, 0x62, 0xa9, 0x78, 0x50, 0x2c, 0x55, 0x1a, 0x4f, - 0x72, 0x09, 0xc4, 0xc1, 0x92, 0x57, 0x76, 0xbd, 0x56, 0x3c, 0xa8, 0xef, 0xee, 0x37, 0x72, 0x49, - 0x84, 0x20, 0x6b, 0xf5, 0xb7, 0x49, 0xf5, 0xdc, 0x94, 0x29, 0xa1, 0x54, 0xdd, 0xaf, 0x39, 0x3a, - 0x4c, 0xa3, 0x05, 0xc8, 0xd9, 0x23, 0x0b, 0xe5, 0xe2, 0xb6, 0x85, 0x1f, 0xa5, 0xd0, 0x1c, 0xcc, - 0x96, 0x3f, 0x3a, 0x28, 0xd6, 0xb6, 0x6d, 0xc6, 0x34, 0x5a, 0x87, 0x55, 0xb7, 0x3a, 0x22, 0xed, - 0x55, 0xde, 0xb6, 0x50, 0xa4, 0x7a, 0x0e, 0x50, 0x16, 0xc0, 0x54, 0x8f, 0xf6, 0xc8, 0xa0, 0x45, - 0x98, 0x1b, 0x7c, 0x8b, 0xbb, 0xe5, 0x62, 0xb5, 0xb1, 0x9b, 0x9b, 0x71, 0x60, 0xcc, 0xef, 0x59, - 0x58, 0x24, 0x38, 0xa6, 0x8d, 0x9a, 0xda, 0xfe, 0xbd, 0x01, 0x39, 0x82, 0xbc, 0x88, 0xfe, 0x18, - 0x97, 0x25, 0xf4, 0x47, 0x76, 0x06, 0x6c, 0xdf, 0x39, 0xb0, 0xae, 0x3b, 0x87, 0x8a, 0xbf, 0x1e, - 0xb8, 0xee, 0x45, 0xe7, 0x7d, 0xa3, 0x45, 0x95, 0x98, 0x7b, 0x01, 0x09, 0xeb, 0xcd, 0x68, 0x69, - 0x51, 0x87, 0xf9, 0x59, 0xea, 0xc9, 0x33, 0x46, 0x86, 0x07, 0xb0, 0xe4, 0xd7, 0x97, 0x3a, 0xe9, - 0x8d, 0x21, 0x0c, 0xdd, 0x09, 0x55, 0x0e, 0xaf, 0xc3, 0xc1, 0xff, 0x89, 0x81, 0x94, 0x4d, 0x36, - 0x0f, 0x5a, 0x5d, 0xfe, 0x77, 0xec, 0xc1, 0xec, 0xd2, 0x26, 0xc5, 0x81, 0x00, 0xdd, 0xe8, 0x37, - 0xeb, 0x47, 0xbf, 0x03, 0xf7, 0x39, 0x1e, 0xb8, 0xcf, 0xff, 0x02, 0xb3, 0x4d, 0x53, 0x7d, 0x59, - 0x55, 0x44, 0x43, 0xee, 0xda, 0x90, 0xdc, 0xf0, 0x6d, 0x55, 0xc3, 0xbe, 0x62, 0x16, 0x66, 0xec, - 0x0e, 0x26, 0x09, 0xad, 0xc3, 0x8c, 0x75, 0x7b, 0x25, 0x1a, 0xaa, 0xd8, 0xd7, 0x71, 0x3e, 0x69, - 0x01, 0x14, 0x60, 0xd1, 0x1a, 0xea, 0xa1, 0x8e, 0xf9, 0x5f, 0x33, 0xb0, 0x48, 0x70, 0x17, 0xbf, - 0x39, 0x8e, 0x42, 0xf1, 0xdd, 0x16, 0xe7, 0x3b, 0x41, 0x02, 0x05, 0xbe, 0xaa, 0xb2, 0x33, 0x0f, - 0x4b, 0xfe, 0xf1, 0x68, 0xad, 0xf9, 0x2d, 0x0b, 0x0b, 0x66, 0xba, 0x61, 0x37, 0xbc, 0xec, 0x3c, - 0x6e, 0x82, 0x9d, 0xf4, 0x2d, 0x66, 0x62, 0x68, 0x31, 0x77, 0xfd, 0x95, 0xdc, 0x35, 0x77, 0xc2, - 0xe4, 0x9f, 0xc1, 0xab, 0x5a, 0xcb, 0xaf, 0x19, 0x58, 0xf4, 0x8d, 0x47, 0xfd, 0xe5, 0x5d, 0x7f, - 0x6a, 0x7a, 0x39, 0x44, 0xbf, 0x17, 0x4a, 0x4e, 0x6f, 0xdb, 0xe9, 0xe5, 0x64, 0x6e, 0xf9, 0x07, - 0x16, 0xd6, 0x06, 0x07, 0x95, 0x75, 0x7f, 0xdc, 0x9a, 0x00, 0x5b, 0x39, 0xdb, 0x35, 0xed, 0x87, - 0xfe, 0x80, 0xbb, 0x39, 0x7c, 0x76, 0x06, 0xa8, 0x14, 0x15, 0x78, 0x03, 0x21, 0xc9, 0xc4, 0xa4, - 0x90, 0xe4, 0x99, 0x2c, 0xe0, 0x3f, 0xdc, 0x68, 0xab, 0x57, 0x7d, 0x6a, 0x09, 0x63, 0x5e, 0x5b, - 0xbc, 0x03, 0xcb, 0x56, 0x55, 0xe1, 0x3c, 0x7f, 0xb0, 0x2f, 0x65, 0x49, 0x48, 0x4c, 0x09, 0x8b, - 0x66, 0xb3, 0x73, 0xe7, 0x4f, 0xa1, 0xfa, 0x16, 0xff, 0x63, 0x02, 0x96, 0xcc, 0xaa, 0xa3, 0x6e, - 0x48, 0xed, 0x49, 0x40, 0xec, 0x8f, 0x87, 0x31, 0x41, 0xd6, 0xbb, 0x2d, 0xc1, 0x52, 0xc7, 0x81, - 0x02, 0x51, 0x01, 0xe6, 0x75, 0x43, 0x6a, 0x5b, 0xe1, 0x40, 0xd2, 0xda, 0xd8, 0x10, 0x7b, 0x92, - 0xf1, 0x8c, 0xfa, 0xfa, 0x1c, 0x6d, 0x6a, 0x58, 0x2d, 0x07, 0x92, 0xf1, 0xec, 0x25, 0x6d, 0x24, - 0xfa, 0xc0, 0x1f, 0x14, 0xde, 0x18, 0x31, 0x97, 0x08, 0xdb, 0xfa, 0x28, 0x04, 0x37, 0x7e, 0x73, - 0x84, 0xc8, 0xd1, 0x78, 0xf1, 0xd9, 0x71, 0xd2, 0x9f, 0x18, 0x72, 0x3e, 0x0f, 0xcb, 0x43, 0x93, - 0xa7, 0x47, 0x48, 0x1b, 0xf2, 0x66, 0xd3, 0xa1, 0xa2, 0x4f, 0x68, 0x8e, 0x21, 0x16, 0xc3, 0x86, - 0x58, 0x0c, 0xbf, 0x02, 0xe7, 0x03, 0x06, 0xa2, 0x5a, 0xfc, 0x22, 0x49, 0xd4, 0x98, 0xfc, 0xf6, - 0xe3, 0x93, 0x30, 0xaf, 0x78, 0xdb, 0xbd, 0xed, 0x81, 0x17, 0x05, 0xaf, 0xc2, 0x2f, 0x2e, 0x42, - 0xc6, 0xcd, 0x47, 0x8f, 0x41, 0x63, 0x84, 0xe3, 0x24, 0xcf, 0x74, 0x29, 0x33, 0xe5, 0xbb, 0x94, - 0xa9, 0x0e, 0x9c, 0x6a, 0xda, 0x9b, 0xda, 0x86, 0x2e, 0x45, 0x84, 0x5b, 0x3d, 0x1d, 0x72, 0xab, - 0x94, 0xf7, 0xa6, 0x27, 0x54, 0xe8, 0x3f, 0x80, 0x63, 0x51, 0xa3, 0x0e, 0xbc, 0x82, 0xe1, 0x9f, - 0x02, 0x47, 0x2c, 0x7e, 0xf2, 0x4b, 0x11, 0x9f, 0x19, 0xb1, 0x7e, 0x33, 0xe2, 0xd7, 0x60, 0x25, - 0x50, 0x36, 0x1d, 0xfa, 0xbf, 0x18, 0xa2, 0x98, 0x03, 0xed, 0xd4, 0x0d, 0xc9, 0xd0, 0xc7, 0x1d, - 0x9a, 0x36, 0xba, 0x87, 0x26, 0x24, 0xcb, 0x82, 0x27, 0x74, 0x09, 0xfe, 0x0b, 0x86, 0xac, 0x83, - 0x5f, 0x17, 0x7a, 0xda, 0x5e, 0x83, 0x64, 0xdf, 0x02, 0x94, 0x49, 0xd6, 0x35, 0xef, 0x75, 0x82, - 0x43, 0xb3, 0x49, 0x20, 0x1c, 0xc3, 0x88, 0x13, 0x3b, 0x36, 0xe2, 0xf4, 0x2d, 0x03, 0x19, 0x97, - 0x44, 0xb4, 0x0a, 0x69, 0x07, 0x20, 0xb1, 0x2b, 0x1c, 0x87, 0x60, 0x6e, 0xb8, 0xa1, 0x1a, 0x52, - 0x87, 0x3e, 0x6f, 0x20, 0x1f, 0x66, 0x51, 0xda, 0xd7, 0x31, 0x49, 0x80, 0xe3, 0x82, 0xf5, 0x1f, - 0xdd, 0x80, 0x44, 0x5f, 0x91, 0x0d, 0xcb, 0xd1, 0xb3, 0x7e, 0x0f, 0xb6, 0x86, 0x2a, 0x1c, 0x2a, - 0xb2, 0x21, 0x58, 0x5c, 0xfc, 0x75, 0x48, 0x98, 0x5f, 0x5e, 0x1c, 0x21, 0x0d, 0xc9, 0xad, 0x27, - 0x8d, 0x72, 0x3d, 0xc7, 0x20, 0x80, 0xa9, 0x0a, 0xa9, 0xba, 0x59, 0xfe, 0x3b, 0xc6, 0xc6, 0xdb, - 0xc8, 0x14, 0xd0, 0x1d, 0x48, 0xe9, 0xf8, 0x04, 0x6b, 0x36, 0xc6, 0x93, 0xdd, 0x5c, 0x0b, 0x9a, - 0x78, 0xa1, 0x4e, 0x99, 0x04, 0x87, 0xdd, 0x4c, 0x4e, 0xb1, 0xa6, 0xa9, 0x9a, 0xd8, 0x54, 0x5b, - 0xb6, 0x15, 0xa7, 0x2d, 0x4a, 0x49, 0x6d, 0x61, 0x37, 0xaa, 0x1f, 0xf7, 0xa0, 0xfa, 0xfc, 0xc7, - 0x90, 0xb2, 0xc5, 0x79, 0x95, 0xce, 0xc0, 0x34, 0x29, 0xfc, 0x9f, 0xe4, 0x18, 0xb4, 0x0c, 0xf3, - 0x8d, 0xf2, 0xde, 0xc1, 0xbe, 0x50, 0x14, 0x9e, 0x88, 0x87, 0x35, 0xbb, 0x81, 0x45, 0x73, 0x30, - 0xfb, 0xa0, 0xd8, 0x28, 0x56, 0xc5, 0xf2, 0x5e, 0xa5, 0x56, 0xae, 0x35, 0x72, 0x71, 0x73, 0xb6, - 0x16, 0x29, 0x97, 0xe0, 0x57, 0x1d, 0xbb, 0x08, 0x42, 0xa2, 0x3e, 0x25, 0x16, 0x1e, 0x86, 0x41, - 0x15, 0x03, 0x31, 0xa8, 0x35, 0xcf, 0x59, 0x3f, 0x02, 0x7d, 0xfa, 0x5f, 0x16, 0x16, 0x03, 0xf9, - 0xd0, 0x6d, 0x37, 0xee, 0x74, 0x29, 0x52, 0xa6, 0x1b, 0x71, 0xfa, 0x25, 0x43, 0x10, 0xa7, 0xbb, - 0x1e, 0xc4, 0xe9, 0xea, 0xc8, 0xfe, 0x6e, 0xac, 0x49, 0x0f, 0x81, 0x9a, 0xea, 0x8d, 0xe2, 0x4e, - 0x59, 0x3c, 0xac, 0x91, 0x5f, 0x07, 0x6a, 0x5a, 0x80, 0x9c, 0x0b, 0x8b, 0xa9, 0x37, 0x8a, 0x8d, - 0x3a, 0x59, 0x77, 0x2f, 0xcc, 0x13, 0x47, 0x2b, 0xb0, 0xec, 0x67, 0xb4, 0xa1, 0x9b, 0x84, 0x03, - 0xdd, 0x2c, 0x00, 0xa2, 0x6b, 0xee, 0x7e, 0x96, 0xfd, 0x25, 0x03, 0xf3, 0x1e, 0x32, 0xdd, 0x02, - 0xd7, 0xcd, 0x2d, 0xe3, 0xb9, 0xb9, 0xbd, 0x05, 0x0b, 0x66, 0xf5, 0x49, 0x1c, 0x50, 0x17, 0x7b, - 0x58, 0xb3, 0xf0, 0x77, 0xea, 0x4d, 0x73, 0x5d, 0xe9, 0x39, 0xc5, 0xc7, 0x0f, 0xb0, 0x66, 0x0a, - 0x7e, 0x09, 0x08, 0x2b, 0xff, 0x3f, 0x2c, 0xc9, 0x71, 0x26, 0xae, 0x91, 0x46, 0xc6, 0xbb, 0xe1, - 0x22, 0x2a, 0x3e, 0x41, 0x11, 0x15, 0x12, 0x2d, 0x13, 0x13, 0x25, 0xd6, 0x13, 0xe7, 0x07, 0x7c, - 0x91, 0xe4, 0x53, 0x67, 0xa8, 0x6f, 0x36, 0xff, 0xc6, 0x40, 0xaa, 0xd2, 0xc2, 0x8a, 0x61, 0x7a, - 0x44, 0x0d, 0x66, 0x3d, 0xaf, 0xe5, 0xd1, 0x6a, 0xc8, 0x23, 0x7a, 0x6b, 0xc5, 0xb9, 0xb5, 0xc8, - 0x27, 0xf6, 0x7c, 0x0c, 0x1d, 0xbb, 0x5e, 0xfa, 0x7b, 0x80, 0xfb, 0xd7, 0x86, 0x7a, 0x06, 0x04, - 0x07, 0xee, 0xca, 0x08, 0x2e, 0x67, 0x9c, 0x77, 0x20, 0x69, 0xbd, 0x8b, 0x46, 0xce, 0x21, 0xe1, - 0x7e, 0x36, 0xcd, 0x2d, 0xfa, 0xa8, 0x76, 0xbf, 0xcd, 0xaf, 0xd3, 0x00, 0x83, 0x32, 0x11, 0x3d, - 0x84, 0x19, 0xf7, 0xd3, 0x4c, 0xb4, 0x12, 0xf1, 0x30, 0x98, 0x5b, 0x0d, 0x6e, 0x74, 0x74, 0x7a, - 0x08, 0x33, 0xee, 0x87, 0x40, 0x03, 0x61, 0x01, 0x8f, 0x91, 0x06, 0xc2, 0x02, 0xdf, 0x0e, 0xc5, - 0x50, 0x07, 0x96, 0x43, 0x9e, 0x82, 0xa0, 0xab, 0xe3, 0x3d, 0x98, 0xe1, 0x5e, 0x1f, 0xf3, 0x4d, - 0x09, 0x1f, 0x43, 0x1a, 0x9c, 0x0f, 0x7d, 0x01, 0x81, 0x36, 0xc6, 0x7d, 0x9f, 0xc1, 0x5d, 0x1b, - 0x83, 0xd3, 0x19, 0xb3, 0x0f, 0x5c, 0xf8, 0xb5, 0x2b, 0xba, 0x36, 0xf6, 0x7b, 0x00, 0xee, 0xfa, - 0xf8, 0xb7, 0xb8, 0x7c, 0x0c, 0xed, 0x42, 0xc6, 0x75, 0x93, 0x87, 0xb8, 0xc0, 0xeb, 0x3d, 0x22, - 0x78, 0x25, 0xe2, 0xea, 0x8f, 0x48, 0x72, 0xdd, 0xde, 0x0c, 0x24, 0x0d, 0x5f, 0x43, 0x0d, 0x24, - 0x05, 0x5c, 0xf7, 0xf8, 0x97, 0xdf, 0x77, 0x32, 0x06, 0x2d, 0x7f, 0xf0, 0xd1, 0x1a, 0xb4, 0xfc, - 0x21, 0xc7, 0x2c, 0x1f, 0x43, 0x1f, 0x42, 0xd6, 0x8b, 0x30, 0xa3, 0xb5, 0x48, 0xa4, 0x9c, 0xbb, - 0x10, 0xd6, 0xec, 0x16, 0xe9, 0x05, 0x34, 0x07, 0x22, 0x03, 0x81, 0xd5, 0x81, 0xc8, 0x10, 0x1c, - 0x34, 0x66, 0xc6, 0x27, 0x0f, 0x4c, 0x37, 0x88, 0x4f, 0x41, 0xe8, 0xe2, 0x20, 0x3e, 0x05, 0x62, - 0x7b, 0x7c, 0x0c, 0xc9, 0xb0, 0x14, 0x8c, 0x12, 0xa1, 0x2b, 0x63, 0x81, 0x60, 0xdc, 0xd5, 0x51, - 0x6c, 0xce, 0x50, 0x5b, 0x90, 0x76, 0x52, 0x63, 0x94, 0x0f, 0xb8, 0x94, 0x25, 0x02, 0xcf, 0x87, - 0x5e, 0xd7, 0xf2, 0xb1, 0xcd, 0xbf, 0x24, 0x21, 0x61, 0x9d, 0xa4, 0x0d, 0x38, 0xe7, 0xab, 0xf4, - 0xd1, 0x85, 0x68, 0xfc, 0x83, 0xbb, 0x18, 0xda, 0xee, 0xa8, 0xf8, 0x14, 0xe6, 0x86, 0x6a, 0x77, - 0xb4, 0xee, 0xee, 0x17, 0x84, 0x1f, 0x70, 0x97, 0x22, 0x38, 0xfc, 0xb2, 0xbd, 0xa1, 0x6b, 0x7d, - 0x54, 0x71, 0xe9, 0x95, 0x1d, 0x16, 0xae, 0x3e, 0x25, 0x89, 0x8b, 0x3f, 0x50, 0xf1, 0x5e, 0xbd, - 0x02, 0x43, 0xd4, 0xe5, 0x48, 0x1e, 0x67, 0x84, 0x4f, 0x9c, 0x8c, 0xc9, 0x55, 0xdb, 0x20, 0x8f, - 0x72, 0x81, 0x35, 0x18, 0xc7, 0x47, 0xb1, 0x38, 0xe2, 0x1f, 0x43, 0xce, 0x7f, 0x8c, 0x23, 0xcf, - 0x7e, 0x05, 0x99, 0xde, 0x7a, 0x38, 0x83, 0x7f, 0x65, 0xfc, 0x31, 0xc4, 0xaf, 0x55, 0x50, 0xf4, - 0xb8, 0x1c, 0xc9, 0xe3, 0x8e, 0x7a, 0xae, 0xa4, 0x71, 0x10, 0xf5, 0x86, 0x13, 0xcc, 0x41, 0xd4, - 0x0b, 0xc8, 0x32, 0xf9, 0xd8, 0xdd, 0x77, 0x01, 0x9a, 0xba, 0x2c, 0x12, 0x40, 0x02, 0xad, 0x0d, - 0xdd, 0x0d, 0x3d, 0x90, 0x71, 0xa7, 0xb5, 0xdf, 0x33, 0x64, 0x55, 0xd1, 0xf3, 0x5f, 0xa5, 0x2c, - 0x34, 0x24, 0xdd, 0xd4, 0x65, 0x82, 0x0b, 0x6c, 0x25, 0x9f, 0xc6, 0x9b, 0xba, 0x7c, 0x34, 0x65, - 0xf1, 0xbf, 0xf5, 0xf7, 0x00, 0x00, 0x00, 0xff, 0xff, 0x23, 0xf5, 0x9a, 0x48, 0x1f, 0x39, 0x00, - 0x00, + // 3600 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5b, 0x4d, 0x6c, 0x1b, 0xc7, + 0xf5, 0xd7, 0xf2, 0x43, 0x12, 0x9f, 0x3e, 0x4c, 0x8f, 0xbe, 0xe8, 0xd5, 0x87, 0xe5, 0x75, 0xec, + 0xc8, 0x8e, 0x4d, 0xff, 0xa3, 0xc4, 0xc1, 0xdf, 0x1f, 0xc9, 0x3f, 0x14, 0x45, 0x4b, 0x8c, 0x29, + 0x4a, 0x59, 0x52, 0x76, 0xec, 0x7f, 0x8d, 0xcd, 0x8a, 0x1c, 0xc9, 0x8b, 0x90, 0xbb, 0xcc, 0xee, + 0x52, 0xb1, 0x7a, 0x29, 0x90, 0x9e, 0x82, 0x16, 0xe8, 0xb1, 0xbd, 0x15, 0x68, 0x6f, 0x45, 0x82, + 0x9c, 0xda, 0x1e, 0x03, 0xf4, 0xd0, 0x43, 0x0f, 0x45, 0x6f, 0x2d, 0x0a, 0x14, 0xb9, 0xf4, 0x14, + 0xb4, 0x45, 0xce, 0x3d, 0x15, 0x3b, 0x33, 0xbb, 0xdc, 0x59, 0xee, 0xf2, 0xc3, 0xb2, 0x91, 0x43, + 0x4f, 0xe2, 0xbe, 0x79, 0xf3, 0xe6, 0xcd, 0xec, 0x7b, 0x6f, 0xde, 0xfb, 0xbd, 0x15, 0xdc, 0x3c, + 0xd2, 0xec, 0xa7, 0xed, 0x83, 0x6c, 0xcd, 0x68, 0xde, 0xa8, 0x19, 0xba, 0xad, 0x6a, 0x3a, 0x36, + 0xaf, 0x5b, 0xb6, 0x61, 0xaa, 0x47, 0xf8, 0xba, 0xa6, 0xdb, 0xd8, 0x3c, 0x54, 0x6b, 0xf8, 0x86, + 0xd5, 0xc2, 0xb5, 0x1b, 0x35, 0x4b, 0xcb, 0xb6, 0x4c, 0xc3, 0x36, 0xd0, 0xa8, 0xf3, 0xf3, 0xf8, + 0x75, 0x71, 0xf5, 0xc8, 0x30, 0x8e, 0x1a, 0xf8, 0x06, 0xa1, 0x1e, 0xb4, 0x0f, 0x6f, 0xd4, 0xb1, + 0x55, 0x33, 0xb5, 0x96, 0x6d, 0x98, 0x94, 0x53, 0x3c, 0x1f, 0xe4, 0xb0, 0xb5, 0x26, 0xb6, 0x6c, + 0xb5, 0xd9, 0x62, 0x0c, 0x2b, 0x41, 0x86, 0x4f, 0x4c, 0xb5, 0xd5, 0xc2, 0xa6, 0x45, 0xc7, 0xa5, + 0x79, 0x98, 0xdd, 0xc2, 0xf6, 0x5e, 0xa3, 0x7d, 0xa4, 0xe9, 0x45, 0xfd, 0xd0, 0x90, 0xf1, 0xc7, + 0x6d, 0x6c, 0xd9, 0xd2, 0x5f, 0x04, 0x98, 0x0b, 0x0c, 0x58, 0x2d, 0x43, 0xb7, 0x30, 0x42, 0x90, + 0xd0, 0xd5, 0x26, 0xce, 0x08, 0xab, 0xc2, 0x5a, 0x4a, 0x26, 0xbf, 0xd1, 0x25, 0x98, 0x3e, 0xc6, + 0x7a, 0xdd, 0x30, 0x95, 0x63, 0x6c, 0x5a, 0x9a, 0xa1, 0x67, 0x62, 0x64, 0x74, 0x8a, 0x52, 0x1f, + 0x50, 0x22, 0xda, 0x82, 0xf1, 0xa6, 0xaa, 0x6b, 0x87, 0xd8, 0xb2, 0x33, 0xf1, 0xd5, 0xf8, 0xda, + 0xc4, 0xfa, 0x6b, 0x59, 0xba, 0xd5, 0x6c, 0xe8, 0x5a, 0xd9, 0x1d, 0xc6, 0x5d, 0xd0, 0x6d, 0xf3, + 0x44, 0xf6, 0x26, 0x8b, 0x77, 0x60, 0x8a, 0x1b, 0x42, 0x69, 0x88, 0x7f, 0x84, 0x4f, 0x98, 0x4e, + 0xce, 0x4f, 0x34, 0x0b, 0xc9, 0x63, 0xb5, 0xd1, 0xc6, 0x4c, 0x13, 0xfa, 0x70, 0x3b, 0xf6, 0xbf, + 0x82, 0xb4, 0x02, 0x4b, 0xde, 0x6a, 0x79, 0xb5, 0xa5, 0x1e, 0x68, 0x0d, 0xcd, 0xd6, 0xb0, 0xe5, + 0x6e, 0xfd, 0x09, 0x2c, 0x47, 0x8c, 0xb3, 0x13, 0xb8, 0x0b, 0x93, 0x35, 0x1f, 0x3d, 0x23, 0x90, + 0xad, 0x64, 0xdc, 0xad, 0x04, 0x66, 0x9e, 0xc8, 0x1c, 0xb7, 0xf4, 0xc7, 0x38, 0xa4, 0x83, 0x2c, + 0xe8, 0x2e, 0x8c, 0x59, 0xd8, 0x3c, 0xd6, 0x6a, 0xf4, 0x5c, 0x27, 0xd6, 0x57, 0xa3, 0xa4, 0x65, + 0x2b, 0x94, 0x6f, 0x7b, 0x44, 0x76, 0xa7, 0xa0, 0x7d, 0x48, 0x1f, 0x1b, 0x8d, 0x76, 0x13, 0x2b, + 0xf8, 0x59, 0x4b, 0xd5, 0xbd, 0x17, 0x30, 0xb1, 0xbe, 0x16, 0x29, 0xe6, 0x01, 0x99, 0x50, 0x70, + 0xf9, 0xb7, 0x47, 0xe4, 0x33, 0xc7, 0x3c, 0x49, 0xfc, 0xa9, 0x00, 0x63, 0x6c, 0x35, 0x74, 0x0b, + 0x12, 0xf6, 0x49, 0x8b, 0x6a, 0x37, 0xbd, 0x7e, 0xa9, 0x9f, 0x76, 0xd9, 0xea, 0x49, 0x0b, 0xcb, + 0x64, 0x8a, 0xf4, 0x3e, 0x24, 0x9c, 0x27, 0x34, 0x01, 0x63, 0xfb, 0xe5, 0xfb, 0xe5, 0xdd, 0x87, + 0xe5, 0xf4, 0x08, 0x9a, 0x07, 0x94, 0xdf, 0x2d, 0x57, 0xe5, 0xdd, 0x52, 0xa9, 0x20, 0x2b, 0x95, + 0x82, 0xfc, 0xa0, 0x98, 0x2f, 0xa4, 0x05, 0xf4, 0x0a, 0xac, 0x3e, 0xd8, 0x2d, 0xed, 0xef, 0x14, + 0x94, 0x5c, 0x3e, 0x5f, 0xa8, 0x54, 0x8a, 0x1b, 0xc5, 0x52, 0xb1, 0xfa, 0x48, 0xc9, 0xef, 0x96, + 0x2b, 0x55, 0x39, 0x57, 0x2c, 0x57, 0x2b, 0xe9, 0x98, 0xf8, 0xa9, 0x00, 0x67, 0x02, 0x1b, 0x40, + 0x39, 0x4e, 0xc3, 0xeb, 0x83, 0x6e, 0xdc, 0xaf, 0xe9, 0xb5, 0x30, 0x4d, 0x01, 0x46, 0x77, 0xcb, + 0xa5, 0x62, 0xd9, 0xd1, 0x6e, 0x02, 0xc6, 0x76, 0xef, 0xdd, 0x23, 0x0f, 0xb1, 0x8d, 0x51, 0xba, + 0xa0, 0x34, 0x0d, 0x93, 0x7b, 0xa6, 0x71, 0x80, 0x5d, 0xfb, 0xc9, 0xc1, 0x14, 0x7b, 0x66, 0xf6, + 0xf2, 0x3f, 0x90, 0x34, 0xb1, 0x5a, 0x3f, 0x61, 0xaf, 0x56, 0xcc, 0x52, 0x9f, 0xcc, 0xba, 0x3e, + 0x99, 0xdd, 0x30, 0x8c, 0xc6, 0x03, 0xc7, 0x3e, 0x65, 0xca, 0x28, 0x7d, 0x9b, 0x80, 0x99, 0xbc, + 0x89, 0x55, 0x1b, 0x53, 0x6d, 0x99, 0xe8, 0x50, 0xdf, 0xbb, 0x0b, 0xd3, 0x8e, 0x7d, 0xd5, 0x34, + 0xfb, 0x44, 0x31, 0x55, 0xfd, 0x08, 0xb3, 0x57, 0x3f, 0xe7, 0x9e, 0x40, 0x9e, 0x8d, 0xca, 0xce, + 0xa0, 0x3c, 0x55, 0xf3, 0x3f, 0xa2, 0x22, 0xcc, 0x30, 0xd3, 0xe1, 0x4c, 0x3a, 0xce, 0x9b, 0x34, + 0xd5, 0xc2, 0x67, 0xd2, 0xe8, 0x98, 0xa7, 0x68, 0xd8, 0x42, 0xf7, 0x01, 0x5a, 0xaa, 0xa9, 0x36, + 0xb1, 0x8d, 0x4d, 0x2b, 0x93, 0xe0, 0xfd, 0x3b, 0x64, 0x37, 0xd9, 0x3d, 0x8f, 0x9b, 0xfa, 0xb7, + 0x6f, 0x3a, 0xda, 0x72, 0x1c, 0xa2, 0x66, 0x62, 0xdb, 0xca, 0x24, 0x89, 0xa4, 0xb5, 0x5e, 0x92, + 0x2a, 0x94, 0x95, 0x88, 0xd9, 0x88, 0xff, 0x6c, 0x43, 0x90, 0xdd, 0xd9, 0x68, 0x17, 0xe6, 0xdc, + 0x0d, 0x1a, 0xba, 0x8d, 0x75, 0x5b, 0xb1, 0x8c, 0xb6, 0x59, 0xc3, 0x99, 0x51, 0x72, 0x4a, 0x8b, + 0x81, 0x2d, 0x52, 0x9e, 0x0a, 0x61, 0x91, 0xd9, 0xd1, 0x70, 0x44, 0xf4, 0x18, 0x44, 0xb5, 0x56, + 0xc3, 0x96, 0xa5, 0xd1, 0xb3, 0x50, 0x4c, 0xfc, 0x71, 0x5b, 0x33, 0x71, 0x13, 0xeb, 0xb6, 0x95, + 0x19, 0xe3, 0xa5, 0x56, 0x8d, 0x96, 0xd1, 0x30, 0x8e, 0x4e, 0xe4, 0x0e, 0x8f, 0x7c, 0x8e, 0x9b, + 0xee, 0x1b, 0xb1, 0xc4, 0xb7, 0xe1, 0x4c, 0xe0, 0x50, 0x86, 0x89, 0x6c, 0xe2, 0x6d, 0x98, 0xf4, + 0x9f, 0xc4, 0x50, 0x51, 0xf1, 0x47, 0x31, 0x98, 0x09, 0x39, 0x03, 0xb4, 0x0d, 0xe3, 0x96, 0xae, + 0xb6, 0xac, 0xa7, 0x86, 0xcd, 0xec, 0xf7, 0x6a, 0x8f, 0x23, 0xcb, 0x56, 0x18, 0x2f, 0x7d, 0xdc, + 0x1e, 0x91, 0xbd, 0xd9, 0x68, 0x03, 0x46, 0xe9, 0x79, 0x06, 0x63, 0x53, 0x98, 0x1c, 0x4a, 0xf3, + 0xa4, 0xb0, 0x99, 0xe2, 0xeb, 0x30, 0xcd, 0xaf, 0x80, 0xce, 0xc3, 0x84, 0xbb, 0x82, 0xa2, 0xd5, + 0xd9, 0x5e, 0xc1, 0x25, 0x15, 0xeb, 0xe2, 0x6b, 0x30, 0xe9, 0x17, 0x86, 0x16, 0x21, 0xc5, 0x0c, + 0xc2, 0x63, 0x1f, 0xa7, 0x84, 0x62, 0xdd, 0xf3, 0xe9, 0x77, 0x60, 0x96, 0xb7, 0x33, 0xe6, 0xca, + 0x97, 0xbd, 0x3d, 0xd0, 0xb3, 0x98, 0xe6, 0xf7, 0xe0, 0xea, 0x29, 0xfd, 0x2a, 0x01, 0xe9, 0xa0, + 0xd3, 0xa0, 0xbb, 0x90, 0x3c, 0x68, 0x18, 0xb5, 0x8f, 0xd8, 0xdc, 0x57, 0xa2, 0xbc, 0x2b, 0xbb, + 0xe1, 0x70, 0x51, 0xea, 0xf6, 0x88, 0x4c, 0x27, 0x39, 0xb3, 0x9b, 0x46, 0x5b, 0xb7, 0xd9, 0xe9, + 0x45, 0xcf, 0xde, 0x71, 0xb8, 0x3a, 0xb3, 0xc9, 0x24, 0xb4, 0x09, 0x13, 0xd4, 0xec, 0x94, 0xa6, + 0x51, 0xc7, 0x99, 0x38, 0x91, 0x71, 0x31, 0x52, 0x46, 0x8e, 0xf0, 0xee, 0x18, 0x75, 0x2c, 0x83, + 0xea, 0xfd, 0x16, 0xa7, 0x60, 0xc2, 0xa7, 0x9b, 0xb8, 0x05, 0x13, 0xbe, 0xc5, 0xd0, 0x02, 0x8c, + 0x1d, 0x5a, 0x8a, 0x17, 0x84, 0x53, 0xf2, 0xe8, 0xa1, 0x45, 0xe2, 0xe9, 0x79, 0x98, 0x20, 0x5a, + 0x28, 0x87, 0x0d, 0xf5, 0xc8, 0xca, 0xc4, 0x56, 0xe3, 0xce, 0x3b, 0x22, 0xa4, 0x7b, 0x0e, 0x45, + 0xfc, 0x87, 0x00, 0xd0, 0x59, 0x12, 0xdd, 0x85, 0x04, 0xd1, 0x92, 0x86, 0xf2, 0xb5, 0x01, 0xb4, + 0xcc, 0x12, 0x55, 0xc9, 0x2c, 0xe9, 0xe7, 0x02, 0x24, 0x88, 0x98, 0xe0, 0x85, 0x53, 0x29, 0x96, + 0xb7, 0x4a, 0x05, 0xa5, 0xbc, 0xbb, 0x59, 0x50, 0x1e, 0xca, 0xc5, 0x6a, 0x41, 0x4e, 0x0b, 0x68, + 0x11, 0x16, 0xfc, 0x74, 0xb9, 0x90, 0xdb, 0x2c, 0xc8, 0xca, 0x6e, 0xb9, 0xf4, 0x28, 0x1d, 0x43, + 0x22, 0xcc, 0xef, 0xec, 0x97, 0xaa, 0xc5, 0xee, 0xb1, 0x38, 0x5a, 0x82, 0x8c, 0x6f, 0x8c, 0xc9, + 0x60, 0x62, 0x13, 0x8e, 0x58, 0xdf, 0x28, 0xfd, 0xc9, 0x06, 0x93, 0x1b, 0x53, 0xde, 0xcb, 0x20, + 0xc6, 0xf6, 0x10, 0xa6, 0xb8, 0x18, 0xed, 0xa4, 0x53, 0x2c, 0xa8, 0xd4, 0x95, 0x83, 0x13, 0x9b, + 0xa4, 0x18, 0xc2, 0x5a, 0x5c, 0x9e, 0x72, 0xa9, 0x1b, 0x0e, 0xd1, 0x39, 0xd6, 0x86, 0xd6, 0xd4, + 0x6c, 0xc6, 0x13, 0x23, 0x3c, 0x40, 0x48, 0x84, 0x41, 0xfa, 0x3a, 0x06, 0xa3, 0xec, 0xdd, 0x5c, + 0xf2, 0xdd, 0x12, 0x9c, 0x48, 0x97, 0x4a, 0x45, 0x72, 0xce, 0x11, 0xe3, 0x9d, 0x03, 0x6d, 0xc3, + 0xb4, 0x3f, 0x94, 0x3e, 0x73, 0x93, 0xb8, 0x0b, 0xfc, 0x0b, 0xf2, 0xfb, 0xf3, 0x33, 0x96, 0xba, + 0x4d, 0x1d, 0xfb, 0x69, 0x68, 0x03, 0xa6, 0x03, 0xd1, 0x38, 0xd1, 0x3f, 0x1a, 0x4f, 0xd5, 0xb8, + 0xc0, 0x94, 0x83, 0x19, 0x37, 0x90, 0x36, 0xb0, 0x62, 0xb3, 0x40, 0xcb, 0x6e, 0x8b, 0x74, 0x57, + 0x00, 0x46, 0x1d, 0x66, 0x97, 0x26, 0xbe, 0x0b, 0xa8, 0x5b, 0xd7, 0xa1, 0xa2, 0x66, 0x1b, 0x66, + 0x42, 0x42, 0x3c, 0xca, 0x42, 0x8a, 0xbc, 0x2a, 0x4b, 0xb3, 0x31, 0x4b, 0x0f, 0xbb, 0x35, 0xea, + 0xb0, 0x38, 0xfc, 0x2d, 0x13, 0x1f, 0x62, 0xd3, 0xc4, 0x75, 0xe2, 0x1e, 0xa1, 0xfc, 0x1e, 0x8b, + 0xf4, 0x43, 0x01, 0xc6, 0x5d, 0x3a, 0xba, 0x0d, 0xe3, 0x16, 0x3e, 0xa2, 0xd7, 0x0f, 0x5d, 0x6b, + 0x25, 0x38, 0x37, 0x5b, 0x61, 0x0c, 0x2c, 0x91, 0x76, 0xf9, 0x9d, 0x44, 0x9a, 0x1b, 0x1a, 0x6a, + 0xf3, 0xbf, 0x15, 0x60, 0x66, 0x13, 0x37, 0x70, 0x30, 0x4b, 0xe9, 0x15, 0x61, 0xfd, 0x17, 0x7b, + 0x8c, 0xbf, 0xd8, 0x43, 0x44, 0xf5, 0xb8, 0xd8, 0x4f, 0x75, 0xd9, 0xcd, 0xc3, 0x2c, 0xbf, 0x1a, + 0x0d, 0xef, 0xd2, 0x3f, 0xe3, 0xb0, 0xe2, 0xd8, 0x82, 0x69, 0x34, 0x1a, 0xd8, 0xdc, 0x6b, 0x1f, + 0x34, 0x34, 0xeb, 0xe9, 0x10, 0x9b, 0x5b, 0x80, 0x31, 0xdd, 0xa8, 0xfb, 0x9c, 0x67, 0xd4, 0x79, + 0x2c, 0xd6, 0x51, 0x01, 0xce, 0x06, 0xd3, 0xac, 0x13, 0x16, 0x84, 0xa3, 0x93, 0xac, 0xf4, 0x71, + 0xf0, 0x06, 0x11, 0x61, 0xdc, 0x49, 0x10, 0x0d, 0xbd, 0x71, 0x42, 0x3c, 0x66, 0x5c, 0xf6, 0x9e, + 0x91, 0x1c, 0xcc, 0x98, 0xde, 0xf0, 0x32, 0xa6, 0x9e, 0x3b, 0xea, 0x95, 0x3c, 0x7d, 0xd8, 0xe5, + 0xf1, 0xa3, 0x44, 0xf4, 0xad, 0x01, 0x45, 0xf7, 0x8d, 0x04, 0xa7, 0x79, 0x8b, 0x2f, 0xc0, 0x7d, + 0xff, 0x20, 0xc0, 0xf9, 0xc8, 0x2d, 0xb0, 0x2b, 0xbf, 0x0e, 0x67, 0x5a, 0x74, 0xc0, 0x3b, 0x04, + 0xea, 0x65, 0x77, 0xfa, 0x1e, 0x02, 0xab, 0x62, 0x19, 0x95, 0x3b, 0x86, 0xe9, 0x16, 0x47, 0x14, + 0x73, 0x30, 0x13, 0xc2, 0x36, 0xd4, 0x66, 0xbe, 0x11, 0x60, 0xb5, 0xa3, 0xca, 0xbe, 0xde, 0x7a, + 0x71, 0xe6, 0x5b, 0xed, 0xd8, 0x16, 0x0d, 0xf9, 0x37, 0xbb, 0xf7, 0x1e, 0xbe, 0xe0, 0xcb, 0xf2, + 0xe0, 0x8b, 0x70, 0xa1, 0xc7, 0xd2, 0xcc, 0x9d, 0xbf, 0x4e, 0xc0, 0x85, 0x07, 0x6a, 0x43, 0xab, + 0x7b, 0x89, 0x5c, 0x48, 0xbd, 0xdf, 0xfb, 0x48, 0x6a, 0x5d, 0x1e, 0x40, 0xa3, 0xd6, 0x5d, 0xcf, + 0x6b, 0xfb, 0xc9, 0x1f, 0xe0, 0x3a, 0x7c, 0x81, 0x45, 0xd8, 0xa3, 0x90, 0x22, 0xec, 0xd6, 0xe0, + 0xba, 0xf6, 0x2a, 0xc9, 0xf6, 0x83, 0x01, 0xe6, 0xad, 0xc1, 0xe5, 0xf6, 0xb0, 0x82, 0x53, 0x7b, + 0xf1, 0x77, 0x59, 0x35, 0xfd, 0x2e, 0x01, 0x52, 0xaf, 0xdd, 0xb3, 0x18, 0x22, 0x43, 0xaa, 0x66, + 0xe8, 0x87, 0x9a, 0xd9, 0xc4, 0x75, 0x96, 0xfd, 0xbf, 0x39, 0xc8, 0xe1, 0xb1, 0x00, 0x92, 0x77, + 0xe7, 0xca, 0x1d, 0x31, 0x28, 0x03, 0x63, 0x4d, 0x6c, 0x59, 0xea, 0x91, 0xab, 0x96, 0xfb, 0x28, + 0x7e, 0x11, 0x87, 0x94, 0x37, 0x05, 0xe9, 0x5d, 0x16, 0x4c, 0xc3, 0xd7, 0xd6, 0xf3, 0x28, 0xf0, + 0xfc, 0xc6, 0x1c, 0x7b, 0x0e, 0x63, 0xae, 0x73, 0xc6, 0x4c, 0xdd, 0x61, 0xf3, 0xb9, 0xd4, 0xee, + 0x61, 0xd7, 0xdf, 0xb9, 0x01, 0x4a, 0xdf, 0x03, 0x54, 0xd2, 0x2c, 0x56, 0x45, 0x79, 0x61, 0xc9, + 0x29, 0x9a, 0xd4, 0x67, 0x0a, 0xd6, 0x6d, 0x53, 0x63, 0xe9, 0x7a, 0x52, 0x86, 0xa6, 0xfa, 0xac, + 0x40, 0x29, 0x4e, 0x4a, 0x6f, 0xd9, 0xaa, 0x69, 0x6b, 0xfa, 0x91, 0x62, 0x1b, 0x1f, 0x61, 0x0f, + 0x74, 0x75, 0xa9, 0x55, 0x87, 0x28, 0xfd, 0x2d, 0x06, 0x33, 0x9c, 0x78, 0x66, 0x93, 0x77, 0x60, + 0xac, 0x23, 0x9b, 0x4b, 0xe3, 0x43, 0xb8, 0xb3, 0xf4, 0xd8, 0xdc, 0x19, 0x68, 0x19, 0x40, 0xc7, + 0xcf, 0x6c, 0x6e, 0xdd, 0x94, 0x43, 0x21, 0x6b, 0x8a, 0x9f, 0x78, 0x35, 0xb7, 0xad, 0xda, 0x6d, + 0x0b, 0x5d, 0x03, 0xc4, 0x22, 0x34, 0xae, 0x2b, 0xec, 0x8a, 0xa1, 0xcb, 0xa6, 0xe4, 0xb4, 0x37, + 0x52, 0x26, 0x97, 0x8d, 0x85, 0x6e, 0x01, 0x33, 0x29, 0xe5, 0x29, 0x56, 0x1b, 0xf6, 0x53, 0x66, + 0x3b, 0xb3, 0xbc, 0xed, 0x6c, 0x93, 0x31, 0x79, 0xf2, 0xd8, 0xf7, 0x24, 0x7e, 0x0c, 0x49, 0x7a, + 0xfe, 0x03, 0x16, 0xea, 0xe8, 0x5d, 0x18, 0xb5, 0x88, 0x8e, 0x41, 0x50, 0x22, 0xec, 0x10, 0xfc, + 0x7b, 0x92, 0xd9, 0x3c, 0xe9, 0x06, 0xa4, 0xb7, 0xb0, 0x3d, 0xf8, 0x2d, 0x2b, 0xfd, 0x5e, 0x80, + 0xb3, 0xbe, 0x19, 0xc3, 0x21, 0x0b, 0xe8, 0x9d, 0x80, 0xc2, 0x97, 0x7d, 0x08, 0x7a, 0x20, 0xef, + 0x08, 0x53, 0x57, 0x2c, 0x06, 0x5e, 0x4d, 0xd7, 0x61, 0x0b, 0x83, 0x1e, 0xb6, 0xf4, 0x45, 0x0c, + 0xd0, 0x16, 0xb6, 0xbd, 0xda, 0x95, 0x6d, 0x3e, 0x22, 0x00, 0x08, 0xcf, 0x11, 0x00, 0xde, 0xe3, + 0x02, 0x00, 0x35, 0x83, 0xab, 0xbe, 0x0d, 0x07, 0x96, 0xee, 0x79, 0x7d, 0x45, 0xd4, 0x8b, 0x34, + 0x09, 0x1f, 0xac, 0x5e, 0x3c, 0xa5, 0x9f, 0x6f, 0xc2, 0x0c, 0xa7, 0x33, 0x7b, 0xf3, 0xd7, 0x01, + 0xa9, 0xc7, 0xaa, 0xd6, 0x50, 0x1d, 0xbd, 0xdc, 0x72, 0x9c, 0x95, 0xe7, 0x67, 0xbd, 0x11, 0x77, + 0x9a, 0x24, 0xf9, 0xb3, 0x3c, 0x26, 0x2f, 0xd8, 0xc2, 0x68, 0xf8, 0xb3, 0xa3, 0x2e, 0x1e, 0xb6, + 0xee, 0x56, 0x68, 0x1b, 0xe3, 0x62, 0x77, 0x66, 0xc7, 0x30, 0xfd, 0xc8, 0x8e, 0xc6, 0xbf, 0xe2, + 0xb0, 0xd8, 0x83, 0x1b, 0xdd, 0x81, 0xb8, 0xd9, 0xaa, 0x31, 0xbb, 0x7e, 0x75, 0x00, 0xf9, 0x59, + 0x79, 0x2f, 0xbf, 0x3d, 0x22, 0x3b, 0xb3, 0xc4, 0xcf, 0xe2, 0x10, 0x97, 0xf7, 0xf2, 0xe8, 0x5d, + 0x0e, 0xde, 0xbf, 0x36, 0xa0, 0x14, 0x3f, 0xba, 0xff, 0x55, 0x2c, 0x0c, 0xde, 0xcf, 0xc0, 0x6c, + 0x5e, 0x2e, 0xe4, 0xaa, 0x05, 0x65, 0xb3, 0x50, 0x2a, 0x54, 0x0b, 0x0a, 0x6d, 0x3f, 0xa4, 0x05, + 0xb4, 0x04, 0x99, 0xbd, 0xfd, 0x8d, 0x52, 0xb1, 0xb2, 0xad, 0xec, 0x97, 0xdd, 0x5f, 0x6c, 0x34, + 0x86, 0xd2, 0x30, 0x59, 0x2a, 0x56, 0xaa, 0x8c, 0x50, 0x49, 0xc7, 0x1d, 0xca, 0x56, 0xa1, 0xaa, + 0xe4, 0x73, 0x7b, 0xb9, 0x7c, 0xb1, 0xfa, 0x28, 0x9d, 0x40, 0x22, 0xcc, 0xf3, 0xb2, 0x2b, 0xe5, + 0xdc, 0x5e, 0x65, 0x7b, 0xb7, 0x9a, 0x4e, 0x22, 0x04, 0xd3, 0x64, 0xbe, 0x4b, 0xaa, 0xa4, 0x47, + 0x1d, 0x09, 0xf9, 0xd2, 0x6e, 0xd9, 0xd3, 0x61, 0x0c, 0xcd, 0x42, 0xda, 0x5d, 0x59, 0x2e, 0xe4, + 0x36, 0x09, 0xf4, 0x34, 0x8e, 0xce, 0xc2, 0x54, 0xe1, 0x83, 0xbd, 0x5c, 0x79, 0xd3, 0x65, 0x4c, + 0xa1, 0x55, 0x58, 0xf2, 0xab, 0xa3, 0xb0, 0x59, 0x85, 0x4d, 0x02, 0x40, 0x55, 0xd2, 0x80, 0x56, + 0x40, 0xe4, 0x38, 0x58, 0x9b, 0x65, 0xbb, 0x90, 0x2b, 0x55, 0xb7, 0xd3, 0x13, 0x68, 0x1a, 0xc0, + 0x51, 0x9f, 0x49, 0x9c, 0x74, 0x16, 0xe1, 0x59, 0xa6, 0x3c, 0x74, 0xf4, 0x9b, 0x18, 0xcc, 0x51, + 0x78, 0xd4, 0x05, 0x63, 0x5d, 0xdf, 0x5f, 0x83, 0x34, 0x05, 0x74, 0x94, 0x60, 0xfc, 0x9b, 0xa6, + 0xf4, 0x07, 0x6e, 0x62, 0xed, 0xb6, 0x32, 0x62, 0xbe, 0x56, 0x46, 0x31, 0x58, 0x66, 0x5c, 0xe5, + 0x41, 0xff, 0xc0, 0x6a, 0xbd, 0x2a, 0xd7, 0x9d, 0x90, 0x3c, 0xf8, 0x7a, 0x6f, 0x69, 0xbd, 0x72, + 0x84, 0xd3, 0x94, 0xa9, 0xa7, 0x8c, 0x1a, 0xf7, 0x60, 0x3e, 0xa8, 0x2f, 0x73, 0xe0, 0x6b, 0x5d, + 0xd0, 0xbc, 0x17, 0xc6, 0x3c, 0x5e, 0x8f, 0x43, 0xfa, 0xb3, 0x00, 0xe3, 0x2e, 0xd9, 0xb9, 0xbf, + 0x2d, 0xed, 0xfb, 0x98, 0x83, 0x02, 0x53, 0x0e, 0xc5, 0x43, 0x16, 0xfd, 0xa0, 0x7a, 0x2c, 0x08, + 0xaa, 0x87, 0xbe, 0xe7, 0x78, 0xe8, 0x7b, 0xfe, 0x3f, 0x98, 0xaa, 0x39, 0xea, 0x6b, 0x86, 0xae, + 0xd8, 0x5a, 0xd3, 0x45, 0xfa, 0xba, 0x9b, 0x60, 0x55, 0xb7, 0x73, 0x2d, 0x4f, 0xba, 0x13, 0x1c, + 0x12, 0x5a, 0x85, 0x49, 0xd2, 0x14, 0x53, 0x6c, 0x43, 0x69, 0x5b, 0x38, 0x93, 0x24, 0xb8, 0x07, + 0x10, 0x5a, 0xd5, 0xd8, 0xb7, 0xb0, 0xf4, 0x95, 0x00, 0x73, 0x14, 0xce, 0x09, 0x9a, 0x63, 0xbf, + 0xe6, 0x80, 0xdf, 0xe2, 0x02, 0xb7, 0x4b, 0xa8, 0xc0, 0x97, 0x55, 0xcd, 0x66, 0x60, 0x3e, 0xb8, + 0x1e, 0x2b, 0x61, 0xbf, 0x8c, 0xc1, 0xac, 0x93, 0x8a, 0xb8, 0x03, 0x2f, 0x3a, 0x3d, 0x1c, 0xe2, + 0x4d, 0x06, 0x0e, 0x33, 0xd1, 0x75, 0x98, 0xdb, 0xc1, 0x02, 0xf1, 0x8a, 0x3f, 0x99, 0x0a, 0xee, + 0xe0, 0x65, 0x9d, 0xe5, 0xe7, 0x02, 0xcc, 0x05, 0xd6, 0x63, 0xfe, 0xf2, 0x76, 0x30, 0xe3, 0xbd, + 0x18, 0xa1, 0xdf, 0x73, 0xe5, 0xbc, 0x37, 0xdd, 0xd4, 0x73, 0x38, 0xb7, 0xfc, 0x53, 0x0c, 0x96, + 0x3b, 0x97, 0x18, 0x69, 0x4b, 0xd7, 0x87, 0x80, 0x6c, 0x4e, 0xd7, 0xfd, 0x7d, 0x3f, 0x18, 0x70, + 0xd7, 0xbb, 0xef, 0xd5, 0x10, 0x95, 0x7a, 0x05, 0xde, 0x50, 0xa4, 0x33, 0x31, 0x2c, 0xd2, 0x79, + 0x2a, 0x0b, 0xf8, 0x81, 0x1f, 0xc4, 0xe5, 0xd5, 0x67, 0x96, 0x30, 0x60, 0x37, 0xe4, 0x2d, 0x58, + 0x20, 0xc5, 0x8a, 0xf7, 0x55, 0x85, 0xdb, 0xeb, 0xa5, 0x21, 0x71, 0x5c, 0x9e, 0x73, 0x86, 0xbd, + 0x4f, 0x09, 0x58, 0x07, 0xa0, 0x2e, 0x7d, 0x9b, 0x80, 0x79, 0xa7, 0x98, 0xa9, 0xd8, 0xea, 0xd1, + 0x30, 0xd8, 0xf8, 0xff, 0x77, 0x43, 0x8d, 0x31, 0xfe, 0xb5, 0x84, 0x4b, 0x1d, 0x04, 0x61, 0x44, + 0x59, 0x98, 0xb1, 0x6c, 0xf5, 0x88, 0x84, 0x03, 0xd5, 0x3c, 0xc2, 0xb6, 0xd2, 0x52, 0xed, 0xa7, + 0xcc, 0xd7, 0xcf, 0xb2, 0xa1, 0x2a, 0x19, 0xd9, 0x53, 0xed, 0xa7, 0x2f, 0xe8, 0x45, 0xa2, 0xf7, + 0x82, 0x41, 0xe1, 0xb5, 0x3e, 0x7b, 0xe9, 0x61, 0x5b, 0x1f, 0x44, 0xc0, 0xd1, 0xaf, 0xf7, 0x11, + 0xd9, 0x1f, 0x86, 0x3e, 0x3d, 0xfc, 0xfa, 0x1d, 0x23, 0xd9, 0xe7, 0x60, 0xa1, 0x6b, 0xf3, 0xec, + 0x0a, 0x39, 0x82, 0x8c, 0x33, 0xb4, 0xaf, 0x5b, 0x43, 0x9a, 0x63, 0x84, 0xc5, 0xc4, 0x22, 0x2c, + 0x46, 0x5a, 0x84, 0x73, 0x21, 0x0b, 0x31, 0x2d, 0x7e, 0x9d, 0xa4, 0x6a, 0x0c, 0xdf, 0x54, 0x79, + 0x12, 0xe5, 0x15, 0x6f, 0xfa, 0x5f, 0x7b, 0x68, 0xff, 0xe1, 0x65, 0xf8, 0xc5, 0x79, 0x98, 0xf0, + 0xf3, 0xb1, 0x6b, 0xd0, 0xee, 0xe3, 0x38, 0xc9, 0x53, 0xf5, 0x7a, 0x46, 0x03, 0xbd, 0x9e, 0x52, + 0xc7, 0xa9, 0xc6, 0xf8, 0xd4, 0x36, 0xf2, 0x28, 0x7a, 0xb8, 0xd5, 0xe3, 0x2e, 0xb7, 0x1a, 0xe7, + 0x1b, 0x48, 0x91, 0x42, 0xff, 0x0b, 0x1c, 0x8b, 0x19, 0x75, 0x68, 0x67, 0x47, 0x7a, 0x0c, 0x22, + 0xb5, 0xf8, 0xe1, 0x7b, 0x2d, 0x01, 0x33, 0x8a, 0x05, 0xcd, 0x48, 0x5a, 0x86, 0xc5, 0x50, 0xd9, + 0x6c, 0xe9, 0xcf, 0x04, 0xaa, 0x98, 0x07, 0xfb, 0x54, 0x6c, 0xd5, 0xb6, 0x06, 0x5d, 0x9a, 0x0d, + 0xfa, 0x97, 0xa6, 0x24, 0x62, 0xc1, 0x43, 0xba, 0x84, 0xf4, 0xa9, 0x40, 0xcf, 0x21, 0xa8, 0x0b, + 0xbb, 0x6d, 0xaf, 0x40, 0xb2, 0x4d, 0x70, 0x6a, 0x9a, 0x75, 0xcd, 0xf0, 0x4e, 0xb0, 0xef, 0x0c, + 0xc9, 0x94, 0xe3, 0x14, 0xd0, 0x9f, 0xf4, 0xa5, 0x00, 0x13, 0x3e, 0x89, 0x68, 0x09, 0x52, 0x1e, + 0x78, 0xe2, 0x56, 0x38, 0x1e, 0xc1, 0x79, 0xe1, 0xb6, 0x61, 0xab, 0x0d, 0xf6, 0xd5, 0x04, 0x7d, + 0x70, 0x8a, 0xd2, 0xb6, 0x85, 0x69, 0x02, 0x1c, 0x97, 0xc9, 0x6f, 0x74, 0x0d, 0x12, 0x6d, 0x5d, + 0xb3, 0x89, 0xa3, 0x4f, 0x07, 0x3d, 0x98, 0x2c, 0x95, 0xdd, 0xd7, 0x35, 0x5b, 0x26, 0x5c, 0xd2, + 0x55, 0x48, 0x38, 0x4f, 0x3c, 0xc6, 0x90, 0x82, 0xe4, 0xc6, 0xa3, 0x6a, 0xa1, 0x92, 0x16, 0x10, + 0xc0, 0x68, 0x91, 0x56, 0xe4, 0x31, 0xe9, 0xef, 0x82, 0x8b, 0xc5, 0xd1, 0x2d, 0xa0, 0xbb, 0xa4, + 0x4d, 0x50, 0xd7, 0x9c, 0xda, 0x87, 0x01, 0x1d, 0x2b, 0x61, 0x3b, 0x77, 0xb2, 0x33, 0xca, 0x25, + 0x77, 0x26, 0x38, 0xf9, 0x29, 0x36, 0x4d, 0xc3, 0x54, 0x6a, 0x46, 0xdd, 0x35, 0xe4, 0x14, 0xa1, + 0xe4, 0x8d, 0x3a, 0xf6, 0xf7, 0x0b, 0xe2, 0x5c, 0xbf, 0x40, 0x7a, 0x42, 0xda, 0x05, 0x4c, 0x0a, + 0xa7, 0xf8, 0x04, 0x8c, 0xd1, 0xe2, 0xff, 0x51, 0x5a, 0x40, 0x0b, 0x30, 0x53, 0x2d, 0xec, 0xec, + 0xed, 0xca, 0x39, 0xf9, 0x91, 0xb2, 0x5f, 0x76, 0x07, 0x62, 0x08, 0xc1, 0xf4, 0xbd, 0x5c, 0x35, + 0x57, 0x52, 0x8a, 0x3b, 0x3b, 0xc5, 0x72, 0xa1, 0x5c, 0x4d, 0xc7, 0x9d, 0x2d, 0x13, 0x5a, 0x3a, + 0x21, 0x2d, 0x79, 0xc6, 0x11, 0x06, 0x55, 0x7d, 0x48, 0xcd, 0x3c, 0x0a, 0xa4, 0xca, 0x85, 0x82, + 0x54, 0xcb, 0xdc, 0x85, 0xdf, 0x07, 0x9e, 0xfa, 0x49, 0x0c, 0xe6, 0x42, 0xf9, 0xd0, 0x4d, 0x3f, + 0x30, 0x75, 0xa1, 0xa7, 0x4c, 0x3f, 0x24, 0xf5, 0x1b, 0x81, 0x42, 0x52, 0xb7, 0x39, 0x48, 0xea, + 0x72, 0xdf, 0xf9, 0x7e, 0x30, 0xca, 0x8a, 0xc0, 0xa2, 0x2a, 0xd5, 0xdc, 0x56, 0x41, 0xd9, 0x2f, + 0xd3, 0xbf, 0x1e, 0x16, 0x35, 0x0b, 0xe9, 0x0e, 0x38, 0xa3, 0x54, 0xaa, 0xb9, 0x6a, 0x25, 0x1d, + 0xeb, 0xc6, 0x81, 0xe2, 0x68, 0x11, 0x16, 0x82, 0x8c, 0x2e, 0x7e, 0x93, 0xf0, 0xf0, 0x9b, 0x59, + 0x40, 0xec, 0xcc, 0xfd, 0x9f, 0x7c, 0xff, 0x42, 0x80, 0x19, 0x8e, 0xcc, 0x5e, 0x81, 0xaf, 0x2b, + 0x2c, 0x70, 0x5d, 0xe1, 0x1b, 0x30, 0xeb, 0x94, 0xa0, 0xd4, 0x0b, 0x2d, 0xa5, 0x85, 0x4d, 0x82, + 0xed, 0x33, 0x97, 0x3a, 0xdb, 0x54, 0x9f, 0x31, 0x00, 0x7d, 0x0f, 0x9b, 0x8e, 0xe0, 0x17, 0x00, + 0xc1, 0x4a, 0x3f, 0x8e, 0xd1, 0x44, 0x67, 0xe8, 0x42, 0xa9, 0x6f, 0xd0, 0xeb, 0xae, 0xa4, 0xe2, + 0x43, 0x54, 0x52, 0x11, 0x21, 0x33, 0x31, 0x54, 0x76, 0x3d, 0x74, 0x92, 0x20, 0xe5, 0x68, 0x52, + 0x75, 0x8a, 0x22, 0x67, 0xfd, 0xdf, 0x02, 0x8c, 0x17, 0xeb, 0x58, 0xb7, 0x1d, 0x8f, 0x28, 0xc3, + 0x14, 0xf7, 0x25, 0x3e, 0x5a, 0x8a, 0xf8, 0x40, 0x9f, 0x9c, 0xb8, 0xb8, 0xdc, 0xf3, 0xf3, 0x7d, + 0x69, 0x04, 0x1d, 0xfa, 0xfe, 0x8b, 0x80, 0x43, 0xf6, 0x5f, 0xe9, 0x9a, 0x19, 0x12, 0x1c, 0xc4, + 0x4b, 0x7d, 0xb8, 0xbc, 0x75, 0xde, 0x82, 0x24, 0xf9, 0xe6, 0x1a, 0x79, 0x37, 0x85, 0xff, 0x93, + 0x6c, 0x71, 0x2e, 0x40, 0x75, 0xe7, 0xad, 0x7f, 0x9e, 0x02, 0xe8, 0xd4, 0x8a, 0xe8, 0x3e, 0x4c, + 0xfa, 0x3f, 0xfb, 0x44, 0x8b, 0x3d, 0x3e, 0x3a, 0x16, 0x97, 0xc2, 0x07, 0x3d, 0x9d, 0xee, 0xc3, + 0xa4, 0xff, 0x23, 0xa3, 0x8e, 0xb0, 0x90, 0x0f, 0x9d, 0x3a, 0xc2, 0x42, 0xbf, 0x4b, 0x1a, 0x41, + 0x0d, 0x58, 0x88, 0xf8, 0xcc, 0x04, 0x5d, 0x1e, 0xec, 0x63, 0x1c, 0xf1, 0xd5, 0x01, 0xbf, 0x57, + 0x91, 0x46, 0x90, 0x09, 0xe7, 0x22, 0xbf, 0xae, 0x40, 0x6b, 0x83, 0x7e, 0xfb, 0x21, 0x5e, 0x19, + 0x80, 0xd3, 0x5b, 0xb3, 0x0d, 0x62, 0x74, 0x4b, 0x17, 0x5d, 0x19, 0xf8, 0x5b, 0x03, 0xf1, 0xea, + 0xe0, 0x1d, 0x62, 0x69, 0x04, 0x6d, 0xc3, 0x84, 0xaf, 0xd5, 0x87, 0xc4, 0xd0, 0xfe, 0x1f, 0x15, + 0xbc, 0xd8, 0xa3, 0x37, 0x48, 0x25, 0xf9, 0xda, 0x3b, 0x1d, 0x49, 0xdd, 0x7d, 0xaa, 0x8e, 0xa4, + 0x90, 0x7e, 0x50, 0xf0, 0xf8, 0x03, 0x37, 0x63, 0xd8, 0xf1, 0x87, 0x5f, 0xad, 0x61, 0xc7, 0x1f, + 0x71, 0xcd, 0x4a, 0x23, 0xe8, 0x7d, 0x98, 0xe6, 0x61, 0x66, 0xb4, 0xdc, 0x13, 0x2e, 0x17, 0x57, + 0xa2, 0x86, 0xfd, 0x22, 0x79, 0x54, 0xb3, 0x23, 0x32, 0x14, 0x5d, 0xed, 0x88, 0x8c, 0x00, 0x43, + 0x47, 0x9c, 0xf8, 0xc4, 0x61, 0x75, 0x9d, 0xf8, 0x14, 0x06, 0x31, 0x76, 0xe2, 0x53, 0x28, 0xc0, + 0x27, 0x8d, 0x20, 0x0d, 0xe6, 0xc3, 0xa1, 0x22, 0x74, 0x69, 0x20, 0x24, 0x4c, 0xbc, 0xdc, 0x8f, + 0xcd, 0x5b, 0x6a, 0x03, 0x52, 0x5e, 0x7e, 0x8c, 0x32, 0x21, 0x5d, 0x5b, 0x2a, 0xf0, 0x5c, 0x64, + 0x3f, 0x57, 0x1a, 0x59, 0xff, 0x6b, 0x12, 0x12, 0xe4, 0x26, 0xad, 0xc2, 0x99, 0x40, 0xb9, 0x8f, + 0x56, 0x7a, 0x83, 0x20, 0xe2, 0xf9, 0xc8, 0x71, 0x4f, 0xc5, 0xc7, 0x70, 0xb6, 0xab, 0x80, 0x47, + 0xab, 0xfe, 0x79, 0x61, 0x20, 0x82, 0x78, 0xa1, 0x07, 0x47, 0x50, 0x36, 0x1f, 0xba, 0x56, 0xfb, + 0x55, 0x98, 0xbc, 0xec, 0xa8, 0x70, 0xf5, 0x21, 0x4d, 0x5c, 0x82, 0x81, 0x4a, 0xe2, 0xf5, 0x0a, + 0x0d, 0x51, 0x17, 0x7b, 0xf2, 0x78, 0x2b, 0x3c, 0xf1, 0x32, 0x26, 0x5f, 0x81, 0x83, 0x38, 0xe5, + 0x42, 0x0b, 0x31, 0x51, 0xea, 0xc5, 0xe2, 0x89, 0x7f, 0x08, 0xe9, 0xe0, 0x35, 0x8e, 0xb8, 0xf7, + 0x15, 0x66, 0x7a, 0xab, 0xd1, 0x0c, 0xc1, 0x93, 0x09, 0xc6, 0x90, 0xa0, 0x56, 0x61, 0xd1, 0xe3, + 0x62, 0x4f, 0x1e, 0x7f, 0xd4, 0xf3, 0x25, 0x8d, 0x9d, 0xa8, 0xd7, 0x9d, 0x60, 0x76, 0xa2, 0x5e, + 0x48, 0x96, 0x29, 0x8d, 0xdc, 0x7e, 0x1b, 0xa0, 0x66, 0x69, 0x0a, 0x45, 0x25, 0xd0, 0x72, 0x57, + 0x83, 0xe8, 0x9e, 0x86, 0x1b, 0xf5, 0xdd, 0x96, 0x53, 0xa5, 0x58, 0x99, 0x5f, 0x8e, 0x13, 0x48, + 0x24, 0x55, 0xb3, 0x34, 0x0a, 0x0e, 0x6c, 0x24, 0x1f, 0xc7, 0x6b, 0x96, 0x76, 0x30, 0x4a, 0xf8, + 0xdf, 0xf8, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa7, 0xea, 0x03, 0xff, 0x7b, 0x39, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/spec.md b/spec.md index 9e91b886..74135bb6 100644 --- a/spec.md +++ b/spec.md @@ -1417,6 +1417,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; + + // volume_health shows error conditions reported by the SP. + // This field MUST be specified if the + // LIST_VOLUMES_VOLUME_HEALTH controller capability is supported. + // This field is OPTIONAL. + repeated VolumeHealth volume_health = 2; } message Entry { @@ -1455,13 +1461,15 @@ The CO MUST implement the specified error recovery behavior when it encounters t A Controller Plugin MUST implement this `GetVolume` RPC call if it has `GET_VOLUME` capability. -A Controller Plugin MUST support the `volume_health` field in the `status` field in `GetVolumeResponse` if it has `GET_VOLUME_HEALTH` capability. +A Controller Plugin SHOULD provide a non-empty `volume_health` field in `GetVolumeResponse` if it has `VOLUME_HEALTH` capability. -`GetVolumeResponse` should contain current information of a volume if it exists. If the volume does not exist any more, `GetVolume` should return gRPC error code `NOT_FOUND`. +`GetVolumeResponse` should contain current information of a volume if it exists. +If the volume does not exist any more, `GetVolume` should return gRPC error code `NOT_FOUND`. The `VolumeHealth` message in `VolumeStatus` field in `GetVolumeResponse` can indicate additional health information for the volume. -Whether the volume is still attached to a node is already handled by `LIST_VOLUMES_PUBLISHED_NODES` controller capability. This capability MAY be used by CO to reconcile - re-attach the volume if the volume is not attached any more. +Whether the volume is still attached to a node is already handled by `LIST_VOLUMES_PUBLISHED_NODES` controller capability. +This capability MAY be used by CO to reconcile - re-attach the volume if the volume is not attached any more. ```protobuf message GetVolumeRequest { @@ -1474,7 +1482,7 @@ message GetVolumeResponse { message VolumeStatus{ // volume_health shows error conditions reported by the SP. // This field MUST be specified if the - // GET_VOLUME_HEALTH controller capability is supported. + // VOLUME_HEALTH controller capability is supported. repeated VolumeHealth volume_health = 1; } @@ -1482,7 +1490,7 @@ message GetVolumeResponse { Volume volume = 1; // This field is OPTIONAL. This field MUST be specified if the - // GET_VOLUME_HEALTH controller capability is supported. + // VOLUME_HEALTH controller capability is supported. VolumeStatus status = 2; } ``` @@ -1493,10 +1501,13 @@ If the plugin is unable to complete the GetVolume call successfully, it MUST ret ##### VolumeHealth from Controller vs Node Plugins -If a SP provides `VolumeHealth` information in both Controller and Node Plugins, information provided SHALL not be duplicate. `VolumeHealth` information from the Controller Plugin SHALL be from the storage system but not specific for one node, while information from the Node Plugin SHALL be specific for that node. - A SP can implement `VolumeHealth` in only the Controller Plugin, only the Node Plugin, or both if possible. +If `VolumeHealth` is implemented in both the Controller and Node Plugins, it SHALL try to avoid confusion by reporting from different perspectives. +For example, `VolumeHealth` information from the Controller Plugin SHALL be from the storage system but not specific for one node, while information from the Node Plugin SHALL be specific for that node. + +Note that for this initial implementation of `VolumeHealth` support, the intended consumer of signal should be informative for humans, not for automated machine response. + #### `GetCapacity` A Controller Plugin MUST implement this RPC call if it has `GET_CAPACITY` controller capability. @@ -1589,12 +1600,16 @@ message ControllerServiceCapability { // ListVolumesResponse.entry.published_nodes field LIST_VOLUMES_PUBLISHED_NODES = 10; + // Indicates the SP supports the + // ListVolumesResponse.entry.volume_health field + LIST_VOLUMES_VOLUME_HEALTH = 11; + // Indicates the SP supports the GetVolume RPC - GET_VOLUME = 11; + GET_VOLUME = 12; // Indicates the SP supports the // GetVolumeResponse.volume_health field - GET_VOLUME_HEALTH = 12; + VOLUME_HEALTH = 13; } Type type = 1; @@ -2293,7 +2308,7 @@ message VolumeUsage { } message VolumeHealth { - enum Severity { + enum Condition { // Volume health condition is unknown; treat it as healthy. UNKNOWN = 0; // Volume is healthy. @@ -2302,14 +2317,14 @@ message VolumeHealth { TEMPORARY_UNHEALTHY = 2; // Volume will fail soon. Move your data off and replace volume or // you may lose your data. - FATAL_EMINENT = 3; + FATAL_IMMINENT = 3; // Volume is unusable. Data loss is likely. FATAL = 4; } - // The severity level of the health condition of the volume. + // The level of the health condition of the volume. // This field is REQUIRED. - Severity severity = 1; + Condition condition = 1; // The error code describing the health condition of the volume. // This is an opaque field to CO.