diff --git a/gauge-proto b/gauge-proto index 4c95653..bf40d22 160000 --- a/gauge-proto +++ b/gauge-proto @@ -1 +1 @@ -Subproject commit 4c95653c0e4be136d718c668c8c9b502f806e0bd +Subproject commit bf40d2227f66c3dbc8d4840fcfa32db3396c1187 diff --git a/gauge_messages/messages.pb.go b/gauge_messages/messages.pb.go index 60c8267..9ca4806 100644 --- a/gauge_messages/messages.pb.go +++ b/gauge_messages/messages.pb.go @@ -205,7 +205,7 @@ func (x Message_MessageType) String() string { } func (Message_MessageType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_4dc296cbfe5ffcd5, []int{44, 0} + return fileDescriptor_4dc296cbfe5ffcd5, []int{45, 0} } /// Default request. Tells the runner to shutdown. @@ -289,6 +289,7 @@ type ExecutionStartingRequest struct { /// Holds the suite result in execution starting. /// Some fields will not be populated before execution. SuiteResult *ProtoSuiteResult `protobuf:"bytes,2,opt,name=suiteResult,proto3" json:"suiteResult,omitempty"` + Stream int32 `protobuf:"varint,3,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -333,12 +334,20 @@ func (m *ExecutionStartingRequest) GetSuiteResult() *ProtoSuiteResult { return nil } +func (m *ExecutionStartingRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Sent at end of Suite Execution. Tells the runner to execute `after_suite` hook. type ExecutionEndingRequest struct { /// Holds the current suite execution info. CurrentExecutionInfo *ExecutionInfo `protobuf:"bytes,1,opt,name=currentExecutionInfo,proto3" json:"currentExecutionInfo,omitempty"` /// Holds the suite result in execution ending. SuiteResult *ProtoSuiteResult `protobuf:"bytes,2,opt,name=suiteResult,proto3" json:"suiteResult,omitempty"` + Stream int32 `protobuf:"varint,3,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -383,6 +392,13 @@ func (m *ExecutionEndingRequest) GetSuiteResult() *ProtoSuiteResult { return nil } +func (m *ExecutionEndingRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Sent at start of Spec Execution. Tells the runner to execute `before_spec` hook. type SpecExecutionStartingRequest struct { /// Holds the current spec execution info. @@ -390,6 +406,7 @@ type SpecExecutionStartingRequest struct { /// Holds the specs result in spec execution starting. /// Some fields will not be populated before execution. SpecResult *ProtoSpecResult `protobuf:"bytes,2,opt,name=specResult,proto3" json:"specResult,omitempty"` + Stream int32 `protobuf:"varint,3,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -434,12 +451,20 @@ func (m *SpecExecutionStartingRequest) GetSpecResult() *ProtoSpecResult { return nil } +func (m *SpecExecutionStartingRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Sent at end of Spec Execution. Tells the runner to execute `after_spec` hook. type SpecExecutionEndingRequest struct { /// Holds the current spec execution info. CurrentExecutionInfo *ExecutionInfo `protobuf:"bytes,1,opt,name=currentExecutionInfo,proto3" json:"currentExecutionInfo,omitempty"` /// Holds the specs result in spec execution ending. SpecResult *ProtoSpecResult `protobuf:"bytes,2,opt,name=specResult,proto3" json:"specResult,omitempty"` + Stream int32 `protobuf:"varint,3,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -484,6 +509,13 @@ func (m *SpecExecutionEndingRequest) GetSpecResult() *ProtoSpecResult { return nil } +func (m *SpecExecutionEndingRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Sent at start of Scenario Execution. Tells the runner to execute `before_scenario` hook. type ScenarioExecutionStartingRequest struct { /// Holds the current sceanrio execution info. @@ -491,6 +523,7 @@ type ScenarioExecutionStartingRequest struct { /// Holds the scenarion result in scenarion execution starting. /// Some fields will not be populated before execution. ScenarioResult *ProtoScenarioResult `protobuf:"bytes,2,opt,name=scenarioResult,proto3" json:"scenarioResult,omitempty"` + Stream int32 `protobuf:"varint,3,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -535,11 +568,19 @@ func (m *ScenarioExecutionStartingRequest) GetScenarioResult() *ProtoScenarioRes return nil } +func (m *ScenarioExecutionStartingRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Sent at end of Scenario Execution. Tells the runner to execute `after_scenario` hook. type ScenarioExecutionEndingRequest struct { /// Holds the current scenario execution info. CurrentExecutionInfo *ExecutionInfo `protobuf:"bytes,1,opt,name=currentExecutionInfo,proto3" json:"currentExecutionInfo,omitempty"` ScenarioResult *ProtoScenarioResult `protobuf:"bytes,2,opt,name=scenarioResult,proto3" json:"scenarioResult,omitempty"` + Stream int32 `protobuf:"varint,3,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -584,6 +625,13 @@ func (m *ScenarioExecutionEndingRequest) GetScenarioResult() *ProtoScenarioResul return nil } +func (m *ScenarioExecutionEndingRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Sent at start of Step Execution. Tells the runner to execute `before_step` hook. type StepExecutionStartingRequest struct { /// Holds the current step execution info. @@ -591,6 +639,7 @@ type StepExecutionStartingRequest struct { /// Holds step result in step execution starting. /// Some fields will not be populated before execution. StepResult *ProtoStepResult `protobuf:"bytes,2,opt,name=stepResult,proto3" json:"stepResult,omitempty"` + Stream int32 `protobuf:"varint,3,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -635,12 +684,20 @@ func (m *StepExecutionStartingRequest) GetStepResult() *ProtoStepResult { return nil } +func (m *StepExecutionStartingRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Sent at end of Step Execution. Tells the runner to execute `after_step` hook. type StepExecutionEndingRequest struct { /// Holds the current step execution info. CurrentExecutionInfo *ExecutionInfo `protobuf:"bytes,1,opt,name=currentExecutionInfo,proto3" json:"currentExecutionInfo,omitempty"` /// Holds step result in step execution ending. StepResult *ProtoStepResult `protobuf:"bytes,2,opt,name=stepResult,proto3" json:"stepResult,omitempty"` + Stream int32 `protobuf:"varint,3,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -685,6 +742,13 @@ func (m *StepExecutionEndingRequest) GetStepResult() *ProtoStepResult { return nil } +func (m *StepExecutionEndingRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Contains command line arguments which passed by user during execution. type ExecutionArg struct { /// Holds the flag name passed from command line. @@ -1047,6 +1111,7 @@ type ExecuteStepRequest struct { ScenarioFailing bool `protobuf:"varint,3,opt,name=scenarioFailing,proto3" json:"scenarioFailing,omitempty"` /// Collection of parameters applicable to the current Step. Parameters []*Parameter `protobuf:"bytes,4,rep,name=parameters,proto3" json:"parameters,omitempty"` + Stream int32 `protobuf:"varint,5,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1105,6 +1170,13 @@ func (m *ExecuteStepRequest) GetParameters() []*Parameter { return nil } +func (m *ExecuteStepRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Request sent ot the runner to check if given Step is valid. /// The runner should check if there is an implementation defined for the given Step Text. type StepValidateRequest struct { @@ -1387,6 +1459,7 @@ func (m *StepNamesResponse) GetSteps() []string { /// Request runner to initialize Scenario DataStore /// Scenario Datastore is reset after every Scenario execution. type ScenarioDataStoreInitRequest struct { + Stream int32 `protobuf:"varint,1,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1417,9 +1490,17 @@ func (m *ScenarioDataStoreInitRequest) XXX_DiscardUnknown() { var xxx_messageInfo_ScenarioDataStoreInitRequest proto.InternalMessageInfo +func (m *ScenarioDataStoreInitRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Request runner to initialize Spec DataStore /// Spec Datastore is reset after every Spec execution. type SpecDataStoreInitRequest struct { + Stream int32 `protobuf:"varint,1,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1450,9 +1531,17 @@ func (m *SpecDataStoreInitRequest) XXX_DiscardUnknown() { var xxx_messageInfo_SpecDataStoreInitRequest proto.InternalMessageInfo +func (m *SpecDataStoreInitRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Request runner to initialize Suite DataStore /// Suite Datastore is reset after every Suite execution. type SuiteDataStoreInitRequest struct { + Stream int32 `protobuf:"varint,1,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1483,6 +1572,13 @@ func (m *SuiteDataStoreInitRequest) XXX_DiscardUnknown() { var xxx_messageInfo_SuiteDataStoreInitRequest proto.InternalMessageInfo +func (m *SuiteDataStoreInitRequest) GetStream() int32 { + if m != nil { + return m.Stream + } + return 0 +} + /// Holds the new and old positions of a parameter. /// Used when refactoring a Step. type ParameterPosition struct { @@ -1778,7 +1874,9 @@ type StepNameResponse struct { /// File name in which the step implementation exists FileName string `protobuf:"bytes,4,opt,name=fileName,proto3" json:"fileName,omitempty"` /// Range of step - Span *Span `protobuf:"bytes,5,opt,name=span,proto3" json:"span,omitempty"` + Span *Span `protobuf:"bytes,5,opt,name=span,proto3" json:"span,omitempty"` + /// Flag indicating if the given Step defined in some external library and the source code can not be accessed. + IsExternal bool `protobuf:"varint,6,opt,name=isExternal,proto3" json:"isExternal,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1844,6 +1942,13 @@ func (m *StepNameResponse) GetSpan() *Span { return nil } +func (m *StepNameResponse) GetIsExternal() bool { + if m != nil { + return m.IsExternal + } + return false +} + /// Response when a unsupported message request is sent. type UnsupportedMessageResponse struct { Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` @@ -2432,6 +2537,95 @@ func (m *KeepAlive) GetPluginId() string { return "" } +type SpecDetails struct { + /// Holds a collection of Spec details. + Details []*SpecDetails_SpecDetail `protobuf:"bytes,1,rep,name=details,proto3" json:"details,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SpecDetails) Reset() { *m = SpecDetails{} } +func (m *SpecDetails) String() string { return proto.CompactTextString(m) } +func (*SpecDetails) ProtoMessage() {} +func (*SpecDetails) Descriptor() ([]byte, []int) { + return fileDescriptor_4dc296cbfe5ffcd5, []int{43} +} + +func (m *SpecDetails) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SpecDetails.Unmarshal(m, b) +} +func (m *SpecDetails) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SpecDetails.Marshal(b, m, deterministic) +} +func (m *SpecDetails) XXX_Merge(src proto.Message) { + xxx_messageInfo_SpecDetails.Merge(m, src) +} +func (m *SpecDetails) XXX_Size() int { + return xxx_messageInfo_SpecDetails.Size(m) +} +func (m *SpecDetails) XXX_DiscardUnknown() { + xxx_messageInfo_SpecDetails.DiscardUnknown(m) +} + +var xxx_messageInfo_SpecDetails proto.InternalMessageInfo + +func (m *SpecDetails) GetDetails() []*SpecDetails_SpecDetail { + if m != nil { + return m.Details + } + return nil +} + +type SpecDetails_SpecDetail struct { + /// Holds a collection of Specs that are defined in the project. + Spec *ProtoSpec `protobuf:"bytes,1,opt,name=spec,proto3" json:"spec,omitempty"` + /// Holds a collection of parse errors present in the above spec. + ParseErrors []*Error `protobuf:"bytes,2,rep,name=parseErrors,proto3" json:"parseErrors,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SpecDetails_SpecDetail) Reset() { *m = SpecDetails_SpecDetail{} } +func (m *SpecDetails_SpecDetail) String() string { return proto.CompactTextString(m) } +func (*SpecDetails_SpecDetail) ProtoMessage() {} +func (*SpecDetails_SpecDetail) Descriptor() ([]byte, []int) { + return fileDescriptor_4dc296cbfe5ffcd5, []int{43, 0} +} + +func (m *SpecDetails_SpecDetail) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SpecDetails_SpecDetail.Unmarshal(m, b) +} +func (m *SpecDetails_SpecDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SpecDetails_SpecDetail.Marshal(b, m, deterministic) +} +func (m *SpecDetails_SpecDetail) XXX_Merge(src proto.Message) { + xxx_messageInfo_SpecDetails_SpecDetail.Merge(m, src) +} +func (m *SpecDetails_SpecDetail) XXX_Size() int { + return xxx_messageInfo_SpecDetails_SpecDetail.Size(m) +} +func (m *SpecDetails_SpecDetail) XXX_DiscardUnknown() { + xxx_messageInfo_SpecDetails_SpecDetail.DiscardUnknown(m) +} + +var xxx_messageInfo_SpecDetails_SpecDetail proto.InternalMessageInfo + +func (m *SpecDetails_SpecDetail) GetSpec() *ProtoSpec { + if m != nil { + return m.Spec + } + return nil +} + +func (m *SpecDetails_SpecDetail) GetParseErrors() []*Error { + if m != nil { + return m.ParseErrors + } + return nil +} + // Empty is a blank response, to be used when there is no return expected. type Empty struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -2443,7 +2637,7 @@ func (m *Empty) Reset() { *m = Empty{} } func (m *Empty) String() string { return proto.CompactTextString(m) } func (*Empty) ProtoMessage() {} func (*Empty) Descriptor() ([]byte, []int) { - return fileDescriptor_4dc296cbfe5ffcd5, []int{43} + return fileDescriptor_4dc296cbfe5ffcd5, []int{44} } func (m *Empty) XXX_Unmarshal(b []byte) error { @@ -2551,7 +2745,7 @@ func (m *Message) Reset() { *m = Message{} } func (m *Message) String() string { return proto.CompactTextString(m) } func (*Message) ProtoMessage() {} func (*Message) Descriptor() ([]byte, []int) { - return fileDescriptor_4dc296cbfe5ffcd5, []int{44} + return fileDescriptor_4dc296cbfe5ffcd5, []int{45} } func (m *Message) XXX_Unmarshal(b []byte) error { @@ -2879,6 +3073,8 @@ func init() { proto.RegisterType((*TextDiff)(nil), "gauge.messages.TextDiff") proto.RegisterType((*FileDiff)(nil), "gauge.messages.FileDiff") proto.RegisterType((*KeepAlive)(nil), "gauge.messages.KeepAlive") + proto.RegisterType((*SpecDetails)(nil), "gauge.messages.SpecDetails") + proto.RegisterType((*SpecDetails_SpecDetail)(nil), "gauge.messages.SpecDetails.SpecDetail") proto.RegisterType((*Empty)(nil), "gauge.messages.Empty") proto.RegisterType((*Message)(nil), "gauge.messages.Message") } @@ -2886,163 +3082,170 @@ func init() { func init() { proto.RegisterFile("messages.proto", fileDescriptor_4dc296cbfe5ffcd5) } var fileDescriptor_4dc296cbfe5ffcd5 = []byte{ - // 2516 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x3a, 0xdd, 0x6f, 0x1c, 0x49, - 0xf1, 0x37, 0xeb, 0xaf, 0xdd, 0x5a, 0x7f, 0xb4, 0xdb, 0x5f, 0x6d, 0xc7, 0x76, 0xec, 0x39, 0x27, - 0xe7, 0xfc, 0x7e, 0x60, 0x90, 0x39, 0x02, 0x9c, 0x40, 0xc8, 0xb1, 0x37, 0xb9, 0x55, 0x1c, 0x7b, - 0xaf, 0xed, 0x84, 0xd3, 0x21, 0x5d, 0x34, 0xd9, 0x6d, 0xaf, 0x27, 0xd9, 0x9d, 0x59, 0xa6, 0x67, - 0x93, 0x3b, 0x09, 0x89, 0x37, 0x84, 0xc4, 0x33, 0xcf, 0x48, 0x27, 0xf1, 0x82, 0x84, 0xf8, 0x78, - 0xe0, 0x19, 0xf1, 0xc6, 0x5f, 0xc1, 0x3f, 0x81, 0x78, 0x46, 0xdd, 0xd3, 0x3d, 0x3b, 0x1f, 0x3d, - 0xb3, 0x86, 0xe3, 0x22, 0x9e, 0xbc, 0x5d, 0x5d, 0x5f, 0x5d, 0x55, 0x5d, 0x5d, 0x55, 0x63, 0x98, - 0xef, 0x33, 0xce, 0x9d, 0x2e, 0xe3, 0x07, 0x83, 0xc0, 0x0f, 0x7d, 0x3c, 0xdf, 0x75, 0x86, 0x5d, - 0x76, 0xa0, 0xa1, 0x1b, 0xc0, 0x07, 0xac, 0x1d, 0xed, 0xd9, 0xcb, 0x80, 0x1f, 0xbb, 0xbd, 0x5e, - 0x2b, 0xf0, 0xdb, 0x8c, 0x73, 0xca, 0x7e, 0x32, 0x64, 0x3c, 0xb4, 0x5d, 0x58, 0x6b, 0x7c, 0xc6, - 0xda, 0xc3, 0xd0, 0xf5, 0xbd, 0x8b, 0xd0, 0x09, 0x87, 0x9c, 0x32, 0x3e, 0xf0, 0x3d, 0xce, 0xf0, - 0x19, 0x2c, 0x30, 0xbd, 0x45, 0x19, 0x1f, 0xf6, 0x42, 0x62, 0xed, 0x58, 0xfb, 0xf5, 0xc3, 0xbd, - 0x83, 0xb4, 0x98, 0x83, 0x96, 0x10, 0xd0, 0x48, 0xe3, 0xd2, 0x2c, 0xb1, 0xfd, 0x47, 0x0b, 0x48, - 0x52, 0x56, 0x10, 0xba, 0x5e, 0x57, 0xe9, 0x81, 0x3f, 0x82, 0xe5, 0xf6, 0x30, 0x08, 0x98, 0x17, - 0xc6, 0x28, 0x4d, 0xef, 0xca, 0x57, 0x12, 0xb7, 0xb2, 0x12, 0x53, 0x48, 0xd4, 0x48, 0x8a, 0x1f, - 0x40, 0x9d, 0x0f, 0xdd, 0x90, 0x29, 0xdd, 0x2b, 0x92, 0xd3, 0x8e, 0x51, 0xf7, 0x8b, 0x11, 0x1e, - 0x4d, 0x12, 0xd9, 0xbf, 0xb7, 0x60, 0x35, 0xe6, 0xda, 0xf0, 0x3a, 0xff, 0xfb, 0x1a, 0xff, 0xc9, - 0x82, 0xcd, 0x8b, 0x01, 0x6b, 0xbf, 0x4d, 0x4b, 0xff, 0x10, 0x64, 0xa0, 0xa5, 0xd4, 0xbe, 0x6d, - 0x56, 0x3b, 0x46, 0xa3, 0x09, 0x12, 0xfb, 0x0f, 0x16, 0x6c, 0xa4, 0x94, 0xfe, 0xca, 0x4d, 0xfd, - 0xa5, 0x55, 0xfe, 0xab, 0x05, 0x3b, 0x17, 0x6d, 0xe6, 0x39, 0x81, 0xeb, 0xbf, 0x4d, 0x5b, 0x3f, - 0x86, 0x79, 0xae, 0xc4, 0xa6, 0x94, 0x7f, 0xd7, 0xac, 0x7c, 0x0a, 0x95, 0x66, 0x48, 0xed, 0xbf, - 0x58, 0xb0, 0x9d, 0x3b, 0xc4, 0x57, 0x6e, 0xfb, 0xff, 0xea, 0x11, 0x64, 0xbc, 0x87, 0x6c, 0xf0, - 0xb6, 0xe3, 0x3d, 0x64, 0x83, 0x9b, 0x04, 0x4f, 0x8c, 0x46, 0x13, 0x24, 0x51, 0xbc, 0x27, 0x95, - 0x7e, 0x2b, 0xf1, 0xfe, 0xa5, 0x54, 0xfe, 0x10, 0x66, 0x63, 0x8e, 0x47, 0x41, 0x17, 0x6f, 0x40, - 0xf5, 0xaa, 0xe7, 0x74, 0xcf, 0x9c, 0x3e, 0x93, 0x7a, 0xd5, 0x68, 0xbc, 0xc6, 0x9b, 0x50, 0x13, - 0xbf, 0x9f, 0x39, 0xbd, 0x21, 0x23, 0x95, 0x9d, 0x89, 0xfd, 0x1a, 0x1d, 0x01, 0xec, 0xdf, 0x4d, - 0xc0, 0x5c, 0x5a, 0xb9, 0x0f, 0xa0, 0xae, 0x94, 0x16, 0x97, 0x4d, 0x1d, 0x93, 0x64, 0xb5, 0x13, - 0x7b, 0xf2, 0x84, 0x49, 0x64, 0xfc, 0x10, 0x16, 0xf4, 0x52, 0x05, 0x86, 0x3a, 0xdd, 0x66, 0x8e, - 0x5e, 0xed, 0x4b, 0x1e, 0x59, 0xa2, 0xa4, 0x0e, 0x21, 0x1b, 0x90, 0x89, 0x02, 0x1d, 0x42, 0x36, - 0x48, 0xeb, 0x10, 0xb2, 0x01, 0xde, 0x16, 0xc6, 0x75, 0xda, 0xaf, 0xc2, 0xc0, 0x69, 0x33, 0x32, - 0x29, 0xad, 0x91, 0x80, 0xe0, 0x1d, 0xa8, 0x0f, 0x02, 0xff, 0x25, 0x6b, 0x87, 0xd2, 0x5c, 0x53, - 0x12, 0x21, 0x09, 0xc2, 0x0f, 0x12, 0x26, 0x39, 0x0a, 0xba, 0x9c, 0x4c, 0xef, 0x4c, 0x98, 0xce, - 0x90, 0x44, 0xa2, 0x69, 0x12, 0xfc, 0x01, 0x10, 0x6f, 0xd8, 0x7f, 0xc1, 0x82, 0xf3, 0xab, 0xc4, - 0x65, 0x08, 0x98, 0xd3, 0xe7, 0x64, 0x66, 0xc7, 0xda, 0x9f, 0xa2, 0x85, 0xfb, 0xc2, 0x9b, 0xc1, - 0xd0, 0xf3, 0x58, 0xd0, 0xec, 0x90, 0xaa, 0xc4, 0x8d, 0xd7, 0xf6, 0x4b, 0xa8, 0x6a, 0xd3, 0x63, - 0x0c, 0x93, 0xde, 0xc8, 0xe3, 0xf2, 0xb7, 0x8c, 0x04, 0xb7, 0xc7, 0xe4, 0xd1, 0x2a, 0x2a, 0x12, - 0xd4, 0x5a, 0xec, 0xb9, 0xfc, 0xa1, 0xe3, 0xf6, 0x58, 0x47, 0x9a, 0xb4, 0x4a, 0xe3, 0xb5, 0xe0, - 0x15, 0x3a, 0x5d, 0x4e, 0x26, 0x65, 0x80, 0xc8, 0xdf, 0x36, 0x85, 0xd9, 0xa4, 0x9b, 0x8a, 0xe4, - 0xc5, 0x3c, 0x2b, 0x05, 0x3c, 0x27, 0x12, 0x3c, 0xbf, 0xb0, 0xa0, 0xaa, 0xfd, 0x86, 0xef, 0xc3, - 0xa4, 0x08, 0x6a, 0x15, 0x63, 0xb6, 0xd9, 0xbe, 0x2c, 0xba, 0x03, 0xf2, 0x32, 0x52, 0x89, 0x5f, - 0x2a, 0x54, 0xbb, 0xff, 0x52, 0xba, 0x7f, 0x22, 0xe1, 0x7e, 0x09, 0xc1, 0x36, 0xcc, 0xb2, 0x20, - 0xf0, 0x83, 0x27, 0x91, 0x14, 0x15, 0x20, 0x29, 0x98, 0xfd, 0x37, 0x0b, 0x70, 0x5e, 0x38, 0xbe, - 0x0b, 0xf3, 0x4e, 0x3b, 0x1c, 0x3a, 0x3d, 0x01, 0xbc, 0x64, 0x9f, 0x85, 0xca, 0x12, 0x19, 0xa8, - 0xc0, 0x1b, 0x38, 0x01, 0x67, 0x9d, 0x18, 0x2f, 0xf2, 0x44, 0x06, 0x8a, 0xf7, 0x61, 0x41, 0xe7, - 0x4f, 0xa1, 0xbc, 0xeb, 0x75, 0x95, 0x5b, 0xb2, 0x60, 0xfc, 0x3d, 0x80, 0x81, 0x13, 0x38, 0x7d, - 0x16, 0xb2, 0x20, 0xf2, 0x51, 0xfd, 0x70, 0x3d, 0x97, 0x30, 0x34, 0x06, 0x4d, 0x20, 0xdb, 0xbf, - 0xb6, 0x60, 0x49, 0x48, 0x7c, 0xe6, 0xf4, 0xdc, 0x8e, 0x23, 0x2a, 0x93, 0xe8, 0x30, 0x1b, 0x50, - 0xe5, 0xe9, 0x63, 0xc4, 0x6b, 0x7c, 0x00, 0x58, 0x07, 0x67, 0x6b, 0x24, 0xb6, 0x22, 0x43, 0xd1, - 0xb0, 0x83, 0xbf, 0x0f, 0x35, 0x1e, 0x89, 0x18, 0x32, 0x75, 0x59, 0xb7, 0x0b, 0xd3, 0x99, 0xc4, - 0xa2, 0x23, 0x02, 0xfb, 0x57, 0x15, 0x58, 0x4e, 0x6b, 0xa8, 0x6a, 0x5e, 0x02, 0x33, 0x2e, 0x97, - 0x50, 0xa9, 0x61, 0x95, 0xea, 0x65, 0xce, 0x89, 0x95, 0xbc, 0x13, 0xf1, 0x29, 0xd4, 0xe4, 0xfa, - 0xf2, 0xf3, 0x41, 0xa4, 0xd4, 0xfc, 0xe1, 0x81, 0x29, 0x83, 0x64, 0xc5, 0x1e, 0x34, 0x34, 0x15, - 0x1d, 0x31, 0x90, 0x61, 0x35, 0xec, 0x76, 0x19, 0x17, 0x17, 0x35, 0xce, 0x2a, 0x31, 0xc4, 0xfe, - 0x08, 0x6a, 0x31, 0x1d, 0xde, 0x85, 0xad, 0x8b, 0xcb, 0x46, 0xeb, 0x79, 0xf3, 0x49, 0xeb, 0xb4, - 0xf1, 0xa4, 0x71, 0x76, 0x79, 0x74, 0xd9, 0x3c, 0x3f, 0x7b, 0x7e, 0x76, 0x7e, 0xf9, 0xfc, 0xe1, - 0xf9, 0xd3, 0xb3, 0x13, 0xf4, 0x8e, 0x40, 0x39, 0x79, 0xda, 0x3a, 0x6d, 0x1e, 0x1f, 0x5d, 0x36, - 0x9e, 0x1b, 0x90, 0x91, 0x65, 0x7f, 0x02, 0xcb, 0xb2, 0xb0, 0xcc, 0xd4, 0xf2, 0xd9, 0xc2, 0xd4, - 0xfa, 0x4f, 0x0a, 0xd3, 0xa7, 0x40, 0x4c, 0xbc, 0x9b, 0x21, 0xeb, 0x8b, 0x60, 0x0b, 0xe2, 0x95, - 0x62, 0xbf, 0x6e, 0x64, 0x2f, 0x10, 0x68, 0x02, 0xd9, 0xc6, 0x80, 0x84, 0x49, 0x45, 0xb6, 0x89, - 0x9b, 0x9a, 0x7b, 0xb0, 0x98, 0x80, 0x29, 0xd7, 0x2e, 0xc3, 0x94, 0x08, 0x00, 0x4e, 0x2c, 0x99, - 0x1b, 0xa2, 0x85, 0xbd, 0x0d, 0x9b, 0x3a, 0xe1, 0x9c, 0x38, 0xa1, 0x73, 0x11, 0xfa, 0x01, 0x6b, - 0x7a, 0x6e, 0xa8, 0x59, 0x6d, 0x00, 0x11, 0xc9, 0xcf, 0xb8, 0x77, 0x0b, 0xd6, 0xe5, 0x89, 0x8c, - 0x9b, 0x3f, 0x82, 0xc5, 0x38, 0x5c, 0x5b, 0x3e, 0x77, 0xc5, 0x89, 0xc5, 0x43, 0xe0, 0xf7, 0x3a, - 0x7a, 0x29, 0x0f, 0x3a, 0x45, 0x93, 0x20, 0x81, 0xe1, 0xb1, 0x37, 0x31, 0x46, 0x74, 0x01, 0x92, - 0x20, 0xfb, 0xe7, 0x15, 0x58, 0xa0, 0xec, 0xca, 0x69, 0x87, 0x7e, 0xa0, 0x6f, 0xd6, 0x03, 0x98, - 0xf5, 0x7b, 0x9d, 0x38, 0xd4, 0x95, 0x05, 0xc7, 0x5d, 0x88, 0x14, 0x8d, 0xe0, 0xe1, 0xb1, 0x37, - 0x23, 0x1e, 0x95, 0x9b, 0xf1, 0x48, 0xd2, 0xe0, 0xa6, 0x4c, 0x43, 0x4e, 0x5f, 0x2b, 0x1b, 0x25, - 0xe2, 0xfa, 0xe1, 0x6e, 0x61, 0xe2, 0xd0, 0x98, 0x34, 0x43, 0x28, 0x0c, 0xc1, 0x9d, 0xd7, 0xec, - 0xf8, 0xda, 0xf1, 0xba, 0x8c, 0xcb, 0xf0, 0xaf, 0xd2, 0x24, 0xc8, 0xfe, 0x19, 0xd4, 0x1f, 0xba, - 0x3d, 0xbd, 0x4c, 0x3d, 0x43, 0x56, 0xe6, 0x19, 0xda, 0x83, 0xba, 0xf8, 0x7d, 0xec, 0x7b, 0x21, - 0xf3, 0x54, 0x6e, 0x7c, 0x50, 0x21, 0x16, 0x4d, 0x82, 0xf1, 0x01, 0x4c, 0x75, 0xdc, 0xab, 0x2b, - 0xad, 0x74, 0xee, 0xf1, 0x17, 0x89, 0xea, 0xc4, 0xbd, 0xba, 0xa2, 0x11, 0x9a, 0xfd, 0x1b, 0x0b, - 0xd0, 0xc8, 0x13, 0xa3, 0x0c, 0xc2, 0x87, 0x6d, 0xd1, 0x62, 0xeb, 0x0c, 0xa2, 0x96, 0x22, 0x00, - 0xe5, 0xe5, 0x56, 0xa9, 0x23, 0x5a, 0x88, 0xbc, 0x22, 0x74, 0xe0, 0xd1, 0x31, 0x3a, 0xea, 0xe5, - 0x4a, 0xc1, 0xf0, 0x0f, 0x94, 0xfa, 0xb1, 0x2d, 0x84, 0x7a, 0xb7, 0xb2, 0xea, 0x25, 0x8c, 0x41, - 0x93, 0xf8, 0xf6, 0x37, 0x60, 0x41, 0x5f, 0x07, 0x1d, 0x30, 0x9b, 0xc9, 0xf4, 0x19, 0x59, 0x2b, - 0x91, 0x1e, 0xff, 0x6c, 0x8d, 0x2e, 0x55, 0x7c, 0xb0, 0x3d, 0x98, 0x73, 0xb9, 0x80, 0xb6, 0x02, - 0xc6, 0x85, 0x15, 0xa3, 0xe3, 0xa5, 0x81, 0x3a, 0xc7, 0xab, 0x62, 0x60, 0x42, 0xe7, 0x78, 0x5d, - 0x0c, 0x5c, 0x3b, 0xfc, 0xa8, 0xe7, 0x3a, 0x5c, 0x17, 0x03, 0x7a, 0x9d, 0xf2, 0xde, 0x64, 0xc6, - 0x7b, 0xfb, 0x30, 0xc9, 0x07, 0x8e, 0x27, 0xeb, 0xa6, 0xfa, 0xe1, 0x72, 0xbe, 0x2e, 0x74, 0x3c, - 0x2a, 0x31, 0xec, 0xfb, 0xb0, 0xf1, 0xd4, 0xe3, 0xc3, 0xc1, 0xc0, 0x0f, 0x42, 0xd6, 0x51, 0x69, - 0x39, 0xe9, 0x1a, 0x45, 0xa4, 0x8e, 0xac, 0x97, 0xf6, 0x3f, 0x2d, 0x40, 0xc7, 0x4e, 0xfb, 0x9a, - 0x09, 0x1b, 0x6a, 0x1b, 0x11, 0x98, 0x69, 0xab, 0x80, 0x51, 0xe8, 0x6a, 0xa9, 0x95, 0x6d, 0x39, - 0xe1, 0x75, 0xb2, 0xe2, 0x11, 0xeb, 0xa8, 0x50, 0x38, 0xee, 0xf9, 0x3c, 0x59, 0xf1, 0x44, 0x6b, - 0x7c, 0x0c, 0xd3, 0x5c, 0xce, 0x58, 0xe4, 0x11, 0xe7, 0x0f, 0xff, 0x3f, 0x7b, 0x94, 0xac, 0x0e, - 0xd2, 0xa7, 0x6a, 0x2c, 0xa3, 0x48, 0xed, 0xc7, 0x00, 0x23, 0x28, 0xae, 0xc3, 0xcc, 0xf1, 0x87, - 0x47, 0x67, 0x8f, 0x1a, 0x22, 0xc3, 0x03, 0x4c, 0x1f, 0x9f, 0x9e, 0x5f, 0x34, 0x4e, 0x90, 0x25, - 0x37, 0x68, 0xe3, 0xe8, 0xb2, 0x71, 0x82, 0x2a, 0x62, 0x71, 0xd2, 0x38, 0x6d, 0x88, 0xc5, 0x84, - 0xc0, 0x3a, 0x6f, 0x35, 0xce, 0x1a, 0x27, 0x68, 0xd2, 0x3e, 0x8c, 0xde, 0xc1, 0xf8, 0xda, 0x25, - 0x9e, 0xea, 0xf8, 0x84, 0x56, 0xfa, 0x84, 0xf6, 0xdf, 0x2d, 0x58, 0xc9, 0x10, 0x29, 0x03, 0x7f, - 0x0c, 0x73, 0x3c, 0xb9, 0x21, 0x53, 0x6d, 0xfd, 0xf0, 0xd0, 0xf4, 0x06, 0xe6, 0xa8, 0x53, 0x50, - 0x9a, 0x66, 0x64, 0xbe, 0x3b, 0x1b, 0xcf, 0x60, 0x36, 0x49, 0x54, 0x1e, 0xd5, 0x71, 0x18, 0x55, - 0xc6, 0x86, 0xd1, 0x5d, 0xd8, 0x6b, 0xf6, 0x07, 0x3d, 0xd6, 0x67, 0x5e, 0xe8, 0x08, 0xce, 0xc2, - 0xe0, 0x8f, 0x7a, 0xfe, 0x8b, 0x96, 0x13, 0x86, 0x2c, 0xf0, 0x74, 0x8e, 0x7f, 0x0c, 0x77, 0xc6, - 0xe0, 0x29, 0xc3, 0xd8, 0x30, 0xdb, 0x1d, 0x81, 0xf5, 0x13, 0x94, 0x82, 0xd9, 0xb7, 0x61, 0x2b, - 0xcf, 0xec, 0xd4, 0xe5, 0xf1, 0x8b, 0xf2, 0x09, 0x6c, 0x17, 0x21, 0x28, 0x31, 0xdf, 0x85, 0x35, - 0x37, 0x87, 0x21, 0x7c, 0xa6, 0x25, 0x16, 0x6d, 0xdb, 0x7d, 0xd8, 0xba, 0x08, 0x87, 0x2f, 0xd2, - 0xfc, 0x8f, 0xfd, 0x4e, 0x7c, 0x19, 0xee, 0xc3, 0xaa, 0x99, 0x56, 0xd9, 0xb9, 0x60, 0x57, 0x38, - 0xae, 0xed, 0x77, 0x18, 0x57, 0xc9, 0x20, 0x5a, 0xd8, 0x67, 0x50, 0xd5, 0xc9, 0x34, 0x76, 0x8b, - 0x35, 0xce, 0x2d, 0xc9, 0x0b, 0x59, 0x49, 0x5d, 0x48, 0xfb, 0x53, 0xa8, 0x0a, 0x89, 0x92, 0x5f, - 0x49, 0xe8, 0xe2, 0xfb, 0x50, 0x0b, 0x95, 0xdc, 0x48, 0xa3, 0xb2, 0x2c, 0x3f, 0x42, 0xb5, 0xdf, - 0x83, 0xda, 0x63, 0xc6, 0x06, 0x47, 0x3d, 0xf7, 0xb5, 0x4c, 0x63, 0x83, 0xde, 0xb0, 0xeb, 0x7a, - 0xcd, 0x8e, 0x16, 0xa0, 0xd7, 0xf6, 0x0c, 0x4c, 0x35, 0xfa, 0x83, 0xf0, 0x73, 0xfb, 0x1f, 0x36, - 0xcc, 0xe8, 0xb2, 0xb0, 0x01, 0x75, 0xc5, 0x5d, 0x16, 0x86, 0x96, 0xbc, 0xfb, 0xb9, 0x61, 0x87, - 0xc2, 0xd6, 0x7f, 0x65, 0x35, 0x98, 0xa4, 0x13, 0xd1, 0xad, 0x96, 0xcd, 0xa8, 0x07, 0x99, 0xa0, - 0x23, 0x00, 0xee, 0x00, 0x61, 0x05, 0x23, 0x10, 0x55, 0x1f, 0xef, 0x17, 0x36, 0x93, 0x19, 0x7c, - 0x5a, 0xc8, 0x09, 0x0f, 0x60, 0x93, 0x97, 0x0c, 0x17, 0x65, 0x5e, 0xab, 0x1f, 0x7e, 0xcd, 0xd4, - 0xba, 0x17, 0x4a, 0x2b, 0xe5, 0x88, 0x5f, 0xc2, 0x06, 0x2f, 0x9c, 0x0c, 0xaa, 0x27, 0xe1, 0xff, - 0x4a, 0xe5, 0xa5, 0x28, 0x68, 0x09, 0x37, 0xfc, 0x53, 0xd8, 0xe1, 0x63, 0x46, 0x7a, 0x64, 0x5a, - 0x4a, 0xfc, 0x66, 0xd1, 0x70, 0xa1, 0xf0, 0x94, 0x63, 0x39, 0xe3, 0xd7, 0xb0, 0xcd, 0x4b, 0x67, - 0x71, 0xb2, 0x8b, 0xaf, 0x1b, 0x5a, 0x8a, 0x52, 0x2a, 0x3a, 0x86, 0xab, 0xf4, 0x69, 0xc9, 0x00, - 0x4d, 0xce, 0x03, 0x4c, 0x3e, 0x2d, 0xa1, 0xa1, 0xa5, 0x1c, 0xa5, 0x4f, 0x0b, 0xa7, 0x5f, 0xa4, - 0x56, 0xe0, 0xd3, 0x42, 0x0a, 0x5a, 0xc2, 0x0d, 0x53, 0xc0, 0x2c, 0xd7, 0x57, 0x13, 0xb8, 0x71, - 0xfb, 0x6f, 0xa0, 0xc6, 0x9f, 0xc2, 0x2a, 0x33, 0xeb, 0x5e, 0x97, 0x7c, 0xef, 0x16, 0xde, 0xb4, - 0xb4, 0xde, 0x05, 0x5c, 0xf0, 0x53, 0x58, 0xe2, 0xf9, 0xfe, 0x99, 0xcc, 0x9a, 0xa7, 0xa4, 0x86, - 0x56, 0x9b, 0x9a, 0xe8, 0xf1, 0xc7, 0xb0, 0xcc, 0x0d, 0xdd, 0x27, 0x99, 0x33, 0x7f, 0xd5, 0x31, - 0x75, 0xaa, 0xd4, 0xc8, 0x01, 0x3b, 0xb0, 0xc6, 0xcc, 0x5f, 0x91, 0xc8, 0xbc, 0x64, 0xfe, 0x5e, - 0x59, 0xee, 0x49, 0xa0, 0xd3, 0x22, 0x3e, 0xf8, 0x14, 0x10, 0xcf, 0xf4, 0x79, 0x64, 0xc1, 0xdc, - 0x87, 0x66, 0xfb, 0x41, 0x9a, 0xa3, 0xc4, 0xe7, 0xb0, 0xc8, 0xb3, 0x1d, 0x22, 0x41, 0x92, 0xdd, - 0x6e, 0x09, 0x3b, 0xa5, 0x64, 0x9e, 0x56, 0xda, 0xd6, 0xd0, 0xdd, 0x92, 0xc5, 0x02, 0xdb, 0x1a, - 0x70, 0xa9, 0x91, 0x83, 0x08, 0xe0, 0x57, 0xb9, 0xef, 0x76, 0x04, 0x9b, 0x03, 0x38, 0xff, 0x85, - 0x8f, 0x1a, 0xa8, 0xe5, 0x95, 0x2f, 0xe9, 0x7a, 0xc9, 0x52, 0xc1, 0x95, 0x2f, 0xa1, 0xa1, 0xa5, - 0x1c, 0xc5, 0xf3, 0xc4, 0x0b, 0xfa, 0x68, 0xb2, 0x6c, 0x7e, 0x9e, 0x8a, 0xfa, 0x6e, 0x5a, 0xc8, - 0x09, 0x77, 0x61, 0x9d, 0x17, 0x75, 0xe4, 0x64, 0x45, 0x8a, 0xb9, 0x67, 0x74, 0x85, 0x51, 0x4e, - 0x31, 0x2f, 0xdc, 0x84, 0x05, 0x9e, 0x6e, 0xa9, 0xc8, 0xaa, 0x79, 0xa6, 0x9e, 0xe9, 0xbc, 0x68, - 0x96, 0x2e, 0x19, 0xd8, 0x71, 0x24, 0xae, 0x95, 0x07, 0x76, 0x1c, 0x88, 0x39, 0x4a, 0xa1, 0x58, - 0x90, 0x1e, 0x0e, 0x10, 0x62, 0x56, 0x2c, 0x33, 0x43, 0xa0, 0x59, 0x3a, 0xa1, 0x58, 0x90, 0xe9, - 0x6e, 0xc9, 0xba, 0x59, 0xb1, 0x6c, 0x17, 0x4c, 0x73, 0x94, 0x22, 0xe7, 0x0f, 0x0b, 0x5b, 0x33, - 0xb2, 0x61, 0xce, 0xf9, 0xc5, 0xcd, 0x1c, 0x2d, 0xe1, 0x26, 0x34, 0x6f, 0x67, 0x3a, 0x29, 0x72, - 0xcb, 0xac, 0x79, 0xb6, 0xe3, 0xa2, 0x39, 0x4a, 0x9d, 0x36, 0xb3, 0x3d, 0x12, 0xd9, 0x2c, 0x4e, - 0x9b, 0x59, 0x5c, 0x6a, 0xe4, 0x80, 0x7f, 0x0c, 0x2b, 0xdc, 0xd4, 0x0a, 0x91, 0x2d, 0xc9, 0xfa, - 0xce, 0x8d, 0xfa, 0x26, 0x6a, 0xe6, 0x81, 0x39, 0x6c, 0xb9, 0x65, 0xfd, 0x04, 0xd9, 0x96, 0x42, - 0xbe, 0x9e, 0x15, 0x52, 0xda, 0x84, 0xd0, 0x72, 0x9e, 0xa2, 0x86, 0x71, 0x4b, 0x7b, 0x14, 0x72, - 0xdb, 0x5c, 0xc3, 0x94, 0x77, 0x36, 0x74, 0x0c, 0x57, 0x71, 0x58, 0x5e, 0xd6, 0xbf, 0x90, 0x1d, - 0xf3, 0x61, 0x4b, 0x9b, 0x1e, 0x5a, 0xce, 0x13, 0xbf, 0x1f, 0x75, 0x1a, 0xa2, 0x45, 0x20, 0xbb, - 0xe6, 0xef, 0x45, 0xba, 0x2b, 0xa1, 0x31, 0x26, 0xfe, 0x85, 0x05, 0x7b, 0xee, 0x0d, 0xba, 0x4b, - 0x62, 0x4b, 0x96, 0xef, 0x8f, 0xb7, 0x54, 0x9e, 0x96, 0xde, 0x48, 0x02, 0xfe, 0xa5, 0x05, 0x77, - 0xdc, 0x9b, 0x34, 0xb0, 0xe4, 0x5d, 0xa9, 0xcb, 0xb7, 0xff, 0x4d, 0x5d, 0x94, 0xf3, 0x6e, 0x26, - 0x43, 0x3e, 0x11, 0x05, 0x03, 0x62, 0xb2, 0x57, 0xf0, 0x44, 0x14, 0xe0, 0xd3, 0x42, 0x4e, 0xf8, - 0x3b, 0x50, 0x7b, 0xa5, 0x5b, 0x39, 0x72, 0xc7, 0x3c, 0x69, 0x8e, 0x7b, 0x3d, 0x3a, 0xc2, 0xb5, - 0xbf, 0x98, 0x81, 0x7a, 0xa2, 0x37, 0xc3, 0x2b, 0xb0, 0x98, 0x2b, 0x70, 0xd1, 0x3b, 0x78, 0x1d, - 0x56, 0x8c, 0xdd, 0x0e, 0xb2, 0xf0, 0x1a, 0x2c, 0x19, 0x1a, 0x13, 0x54, 0xc1, 0x5b, 0xb0, 0x5e, - 0xd8, 0x3f, 0xa0, 0x09, 0x7c, 0x0b, 0xd6, 0x0a, 0x4a, 0x7c, 0x34, 0x29, 0xe5, 0x99, 0x6a, 0x6d, - 0x34, 0x25, 0xe5, 0xe5, 0x0b, 0x63, 0x34, 0x8d, 0x17, 0xa0, 0x9e, 0xa8, 0x74, 0xd1, 0x0c, 0x5e, - 0x82, 0x85, 0x2c, 0x56, 0x55, 0x93, 0x67, 0xaa, 0x48, 0x54, 0xc3, 0xc4, 0xfc, 0xf1, 0x04, 0x81, - 0xd0, 0xb4, 0xa0, 0xb0, 0x43, 0x75, 0xbc, 0x9c, 0x9f, 0xd4, 0xa3, 0x59, 0x61, 0xc6, 0x5c, 0x81, - 0x85, 0xe6, 0xf0, 0xaa, 0xe9, 0xbf, 0x95, 0xd0, 0xbc, 0x94, 0x6d, 0x70, 0x2d, 0x5a, 0x90, 0x86, - 0x30, 0x55, 0x20, 0x08, 0x49, 0x19, 0xd9, 0x92, 0x01, 0x2d, 0x0a, 0x19, 0xf9, 0xc7, 0x1f, 0x61, - 0x61, 0x8d, 0xcc, 0xab, 0x8d, 0x96, 0x92, 0xda, 0xc7, 0x6a, 0x2e, 0x0b, 0xd4, 0xcc, 0x3b, 0x8a, - 0x56, 0x04, 0x6a, 0xf6, 0x41, 0x44, 0xab, 0x78, 0xbb, 0x6c, 0x36, 0x89, 0xd6, 0x04, 0x55, 0xf6, - 0x31, 0x42, 0x44, 0xdb, 0x3a, 0xfb, 0x74, 0xa0, 0x75, 0xed, 0xf8, 0x5c, 0xe2, 0x47, 0x1b, 0x78, - 0x77, 0xcc, 0x28, 0x09, 0xdd, 0xc2, 0xf6, 0xb8, 0x61, 0x12, 0xda, 0x94, 0xdf, 0x94, 0xca, 0x12, - 0x20, 0xda, 0xc2, 0xb3, 0xa3, 0xc1, 0x0b, 0xda, 0xc6, 0xfb, 0x37, 0x9b, 0x9b, 0xa1, 0xdb, 0xf8, - 0xde, 0x0d, 0x27, 0x67, 0x68, 0x07, 0x6f, 0x16, 0x7f, 0x37, 0x42, 0xbb, 0x78, 0x2e, 0x31, 0x99, - 0x41, 0xf6, 0x83, 0x7b, 0xb0, 0xda, 0xf6, 0xfb, 0x07, 0xe1, 0xb5, 0x3f, 0xec, 0x5e, 0x87, 0x6f, - 0xfc, 0xe0, 0x15, 0x8f, 0x2e, 0xf7, 0x6f, 0x2b, 0xf3, 0x8f, 0xe4, 0x25, 0x57, 0x86, 0xe7, 0x2f, - 0xa6, 0xe5, 0xbf, 0xc5, 0x7d, 0xeb, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x55, 0x31, 0x24, 0xe0, - 0x44, 0x27, 0x00, 0x00, + // 2625 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x1a, 0x5d, 0x6f, 0x1c, 0x49, + 0xf1, 0x66, 0xfd, 0x5d, 0xeb, 0x8f, 0x71, 0xfb, 0xab, 0xed, 0xd8, 0x8e, 0x3d, 0xe7, 0xe4, 0x1c, + 0xe0, 0x0c, 0xda, 0x3b, 0x72, 0x70, 0x02, 0x81, 0x63, 0x6f, 0xee, 0x56, 0x71, 0xec, 0xbd, 0xb6, + 0x13, 0x4e, 0x87, 0x74, 0xd1, 0x64, 0xb7, 0xbd, 0x9e, 0x64, 0x77, 0x66, 0x99, 0x9e, 0x4d, 0x72, + 0x12, 0x12, 0x6f, 0x08, 0x89, 0x67, 0x9e, 0x91, 0x4e, 0xe2, 0x05, 0x89, 0x9f, 0x81, 0xf8, 0xf8, + 0x01, 0x08, 0xf1, 0x82, 0xf8, 0x0f, 0x88, 0x67, 0xd4, 0x3d, 0xdd, 0xb3, 0x3d, 0x33, 0x3d, 0xb3, + 0x0e, 0x52, 0x22, 0xf1, 0xe4, 0xed, 0xee, 0xfa, 0xae, 0xea, 0xea, 0xaa, 0x1a, 0xc3, 0x7c, 0x8f, + 0x32, 0xe6, 0x76, 0x28, 0x3b, 0xe8, 0x87, 0x41, 0x14, 0xa0, 0xf9, 0x8e, 0x3b, 0xe8, 0xd0, 0x03, + 0xb5, 0xbb, 0x01, 0xac, 0x4f, 0x5b, 0xf1, 0x99, 0xb3, 0x0c, 0xe8, 0x81, 0xd7, 0xed, 0x36, 0xc3, + 0xa0, 0x45, 0x19, 0x23, 0xf4, 0x67, 0x03, 0xca, 0x22, 0xc7, 0x83, 0xb5, 0xfa, 0x2b, 0xda, 0x1a, + 0x44, 0x5e, 0xe0, 0x9f, 0x47, 0x6e, 0x34, 0x60, 0x84, 0xb2, 0x7e, 0xe0, 0x33, 0x8a, 0x4e, 0x61, + 0x81, 0xaa, 0x23, 0x42, 0xd9, 0xa0, 0x1b, 0x61, 0x6b, 0xc7, 0xda, 0xaf, 0xd6, 0xf6, 0x0e, 0xd2, + 0x6c, 0x0e, 0x9a, 0x9c, 0x41, 0x3d, 0x0d, 0x4b, 0xb2, 0xc8, 0xce, 0x5f, 0x2c, 0xc0, 0x3a, 0xaf, + 0x30, 0xf2, 0xfc, 0x8e, 0x94, 0x03, 0x7d, 0x06, 0xcb, 0xad, 0x41, 0x18, 0x52, 0x3f, 0x4a, 0x40, + 0x1a, 0xfe, 0x65, 0x20, 0x39, 0x6e, 0x65, 0x39, 0xa6, 0x80, 0x88, 0x11, 0x15, 0xdd, 0x83, 0x2a, + 0x1b, 0x78, 0x11, 0x95, 0xb2, 0x57, 0x04, 0xa5, 0x1d, 0xa3, 0xec, 0xe7, 0x43, 0x38, 0xa2, 0x23, + 0xa1, 0x55, 0x98, 0x64, 0x51, 0x48, 0xdd, 0x1e, 0x1e, 0xdb, 0xb1, 0xf6, 0x27, 0x88, 0x5c, 0x39, + 0x7f, 0xb2, 0x60, 0x35, 0xe1, 0x56, 0xf7, 0xdb, 0xff, 0xbf, 0x9a, 0xfc, 0xd5, 0x82, 0xcd, 0xf3, + 0x3e, 0x6d, 0xbd, 0x4d, 0xcf, 0xfc, 0x08, 0x44, 0x60, 0xa6, 0xd4, 0xb9, 0x69, 0x56, 0x27, 0x01, + 0x23, 0x1a, 0x4a, 0xa1, 0x32, 0x7f, 0xb6, 0x60, 0x23, 0xa5, 0xcc, 0x1b, 0x77, 0xcd, 0x1b, 0x53, + 0xe5, 0x1f, 0x16, 0xec, 0x9c, 0xb7, 0xa8, 0xef, 0x86, 0x5e, 0xf0, 0x36, 0x7d, 0xf3, 0x00, 0xe6, + 0x99, 0x64, 0x9b, 0x52, 0xea, 0x5d, 0xb3, 0x52, 0x29, 0x50, 0x92, 0x41, 0x2d, 0x54, 0xee, 0xef, + 0x16, 0x6c, 0xe7, 0x94, 0x7b, 0xe3, 0xbe, 0x7a, 0x2b, 0xaa, 0x89, 0xfb, 0x14, 0xd1, 0xfe, 0xdb, + 0xbe, 0x4f, 0x11, 0xed, 0x5f, 0x27, 0x08, 0x13, 0x30, 0xa2, 0xa1, 0x94, 0xdf, 0x27, 0x5d, 0x99, + 0xb7, 0x72, 0x9f, 0xde, 0x88, 0x2a, 0x9f, 0xc2, 0x6c, 0xc2, 0xe9, 0x30, 0xec, 0xa0, 0x0d, 0x98, + 0xbe, 0xec, 0xba, 0x9d, 0x53, 0xb7, 0x47, 0x85, 0xbc, 0x33, 0x24, 0x59, 0xa3, 0x4d, 0x98, 0xe1, + 0xbf, 0x1f, 0xbb, 0xdd, 0x01, 0xc5, 0x95, 0x9d, 0xb1, 0xfd, 0x19, 0x32, 0xdc, 0x70, 0xfe, 0x30, + 0x06, 0x73, 0x69, 0xa1, 0x3f, 0x86, 0xaa, 0x54, 0x86, 0x5f, 0x72, 0xa9, 0x3e, 0xce, 0x4a, 0xcd, + 0xcf, 0x84, 0xe6, 0x3a, 0x30, 0xba, 0x0f, 0x0b, 0x6a, 0x29, 0x03, 0x4c, 0x6a, 0xbd, 0x99, 0xc3, + 0x97, 0xe7, 0x82, 0x46, 0x16, 0x49, 0x97, 0x21, 0xa2, 0x7d, 0xa1, 0xbc, 0x49, 0x86, 0x88, 0xf6, + 0xd3, 0x32, 0x44, 0xb4, 0x8f, 0xb6, 0xb9, 0xd1, 0xdd, 0xd6, 0xf3, 0x28, 0x74, 0x5b, 0x14, 0x8f, + 0x0b, 0x6b, 0x68, 0x3b, 0x68, 0x07, 0xaa, 0xfd, 0x30, 0x78, 0x46, 0x5b, 0x91, 0x30, 0xd7, 0x84, + 0x00, 0xd0, 0xb7, 0xd0, 0x3d, 0xcd, 0x24, 0x87, 0x61, 0x87, 0xe1, 0xc9, 0x9d, 0x31, 0x93, 0x0e, + 0x3a, 0x10, 0x49, 0xa3, 0xa0, 0x8f, 0x01, 0xfb, 0x83, 0xde, 0x53, 0x1a, 0x9e, 0x5d, 0x6a, 0x97, + 0x87, 0x3b, 0x8f, 0xe1, 0x29, 0xe1, 0xcb, 0xc2, 0x73, 0xee, 0xcd, 0x70, 0xe0, 0xfb, 0x34, 0x6c, + 0xb4, 0xf1, 0xb4, 0x80, 0x4d, 0xd6, 0xce, 0x33, 0x98, 0x56, 0xa6, 0x47, 0x08, 0xc6, 0xfd, 0xa1, + 0xc7, 0xc5, 0x6f, 0x11, 0x09, 0x5e, 0x97, 0x0a, 0xd5, 0x2a, 0x32, 0x12, 0xe4, 0x9a, 0x9f, 0x79, + 0xec, 0xbe, 0xeb, 0x75, 0x69, 0x5b, 0x98, 0x74, 0x9a, 0x24, 0x6b, 0x4e, 0x2b, 0x72, 0x3b, 0x0c, + 0x8f, 0x8b, 0x00, 0x11, 0xbf, 0x1d, 0x02, 0xb3, 0xba, 0x9b, 0x8a, 0xf8, 0x25, 0x34, 0x2b, 0x05, + 0x34, 0xc7, 0x34, 0x9a, 0x5f, 0x5b, 0x30, 0xad, 0xfc, 0x86, 0xee, 0xc2, 0x38, 0x0f, 0x76, 0x19, + 0x63, 0x8e, 0xd9, 0xbe, 0x34, 0xbe, 0x1b, 0xe2, 0x92, 0x12, 0x01, 0x5f, 0xca, 0x54, 0xb9, 0xff, + 0x42, 0xb8, 0x7f, 0x4c, 0x73, 0xbf, 0xd8, 0x41, 0x0e, 0xcc, 0xd2, 0x30, 0x0c, 0xc2, 0x87, 0x31, + 0x17, 0x19, 0x20, 0xa9, 0x3d, 0xe7, 0x5f, 0x16, 0xa0, 0x3c, 0x73, 0x74, 0x1b, 0xe6, 0xdd, 0x56, + 0x34, 0x70, 0xbb, 0x7c, 0xf3, 0x82, 0xbe, 0x8a, 0xa4, 0x25, 0x32, 0xbb, 0x1c, 0xae, 0xef, 0x86, + 0x8c, 0xb6, 0x13, 0xb8, 0xd8, 0x13, 0x99, 0x5d, 0xb4, 0x0f, 0x0b, 0x2a, 0x0f, 0x73, 0xe1, 0x3d, + 0xbf, 0x23, 0xdd, 0x92, 0xdd, 0x46, 0xdf, 0x07, 0xe8, 0xbb, 0xa1, 0xdb, 0xa3, 0x11, 0x0d, 0x63, + 0x1f, 0x55, 0x6b, 0xeb, 0xb9, 0x44, 0xa2, 0x20, 0x88, 0x06, 0xac, 0xa5, 0x90, 0x89, 0x54, 0x0a, + 0xf9, 0xad, 0x05, 0x4b, 0x5c, 0x92, 0xc7, 0x6e, 0xd7, 0x6b, 0xbb, 0xbc, 0xb2, 0x8a, 0x95, 0xdc, + 0x80, 0x69, 0x96, 0x56, 0x2f, 0x59, 0xa3, 0x03, 0x40, 0x2a, 0x68, 0x9b, 0x43, 0x71, 0x2a, 0x82, + 0xae, 0xe1, 0x04, 0xfd, 0x00, 0x66, 0x58, 0xcc, 0x62, 0x40, 0xe5, 0x25, 0xde, 0x2e, 0x4c, 0x7f, + 0x02, 0x8a, 0x0c, 0x11, 0x9c, 0xdf, 0x54, 0x60, 0x39, 0x2d, 0xa1, 0xac, 0xe5, 0x31, 0x4c, 0x79, + 0x4c, 0xec, 0x0a, 0x09, 0xa7, 0x89, 0x5a, 0xe6, 0x9c, 0x5b, 0xc9, 0x3b, 0x17, 0x9d, 0xc0, 0x8c, + 0x58, 0x5f, 0x7c, 0xd5, 0x8f, 0x85, 0x9a, 0xaf, 0x1d, 0x98, 0x32, 0x4b, 0x96, 0xed, 0x41, 0x5d, + 0x61, 0x91, 0x21, 0x01, 0x11, 0x6e, 0x83, 0x4e, 0x87, 0x32, 0x7e, 0x81, 0x93, 0x6c, 0x93, 0xec, + 0x38, 0x9f, 0xc1, 0x4c, 0x82, 0x87, 0x76, 0x61, 0xeb, 0xfc, 0xa2, 0xde, 0x7c, 0xd2, 0x78, 0xd8, + 0x3c, 0xa9, 0x3f, 0xac, 0x9f, 0x5e, 0x1c, 0x5e, 0x34, 0xce, 0x4e, 0x9f, 0x9c, 0x9e, 0x5d, 0x3c, + 0xb9, 0x7f, 0xf6, 0xe8, 0xf4, 0xd8, 0x7e, 0x87, 0x83, 0x1c, 0x3f, 0x6a, 0x9e, 0x34, 0x8e, 0x0e, + 0x2f, 0xea, 0x4f, 0x0c, 0xc0, 0xb6, 0xe5, 0x7c, 0x01, 0xcb, 0xa2, 0x30, 0xce, 0xf4, 0x28, 0xd9, + 0xc2, 0xda, 0xfa, 0x1f, 0x0a, 0x6b, 0xe7, 0x11, 0x60, 0x13, 0xed, 0x46, 0x44, 0x7b, 0x3c, 0x08, + 0xc3, 0x64, 0x25, 0xc9, 0xaf, 0x1b, 0xc9, 0x73, 0x00, 0xa2, 0x01, 0x3b, 0x08, 0x6c, 0x6e, 0x52, + 0x9e, 0x85, 0x92, 0x66, 0xed, 0x0e, 0x2c, 0x6a, 0x7b, 0xd2, 0xb5, 0xcb, 0x30, 0xc1, 0x03, 0x80, + 0x61, 0x4b, 0xe4, 0x8c, 0x78, 0xe1, 0xdc, 0x85, 0x4d, 0x95, 0x88, 0x8e, 0xdd, 0xc8, 0x3d, 0x8f, + 0x82, 0x90, 0x36, 0x7c, 0x2f, 0x52, 0x31, 0x3b, 0x8c, 0x71, 0x2b, 0x15, 0xe3, 0x35, 0xc0, 0x3c, + 0x59, 0xbe, 0x16, 0xce, 0x07, 0xb0, 0x2e, 0x2c, 0xf0, 0x5a, 0x48, 0x3f, 0x81, 0xc5, 0x24, 0xec, + 0x9b, 0x01, 0xf3, 0xb8, 0xe5, 0xf8, 0x43, 0x13, 0x74, 0xdb, 0x6a, 0x29, 0x31, 0xf4, 0x2d, 0x0e, + 0xe1, 0xd3, 0x97, 0x09, 0x44, 0x7c, 0x91, 0xf4, 0x2d, 0xe7, 0x97, 0x15, 0x58, 0x20, 0xf4, 0xd2, + 0x6d, 0x45, 0x41, 0xa8, 0x84, 0xb8, 0x07, 0xb3, 0x41, 0xb7, 0x9d, 0x5c, 0x19, 0xe9, 0x89, 0x51, + 0x17, 0x2b, 0x85, 0xc3, 0x69, 0xf8, 0xf4, 0xe5, 0x90, 0x46, 0xe5, 0x7a, 0x34, 0x74, 0x1c, 0xd4, + 0x10, 0x69, 0xce, 0xed, 0x29, 0x61, 0xe3, 0x44, 0x5f, 0xad, 0xed, 0x16, 0x26, 0x26, 0x05, 0x49, + 0x32, 0x88, 0xdc, 0x10, 0xcc, 0x7d, 0x41, 0x8f, 0xae, 0x5c, 0xbf, 0x43, 0x99, 0xb8, 0x46, 0xd3, + 0x44, 0xdf, 0x72, 0x7e, 0x01, 0xd5, 0xfb, 0x5e, 0x57, 0x2d, 0x53, 0xcf, 0x9c, 0x95, 0x79, 0xe6, + 0xf6, 0xa0, 0xca, 0x7f, 0x1f, 0x05, 0x7e, 0x44, 0x7d, 0x99, 0x7b, 0xef, 0x55, 0xb0, 0x45, 0xf4, + 0x6d, 0x74, 0x00, 0x13, 0x6d, 0xef, 0xf2, 0x52, 0x09, 0x9d, 0x2b, 0x2e, 0x78, 0xc2, 0x3b, 0xf6, + 0x2e, 0x2f, 0x49, 0x0c, 0xe6, 0xfc, 0xce, 0x02, 0x7b, 0xe8, 0x89, 0x61, 0x26, 0x62, 0x83, 0x56, + 0x8b, 0x32, 0xa6, 0x32, 0x91, 0x5c, 0xf2, 0x40, 0x16, 0x49, 0x42, 0xa6, 0xa0, 0x78, 0xc1, 0xf3, + 0x13, 0x97, 0x81, 0xc5, 0x6a, 0xb4, 0xe5, 0xcb, 0x98, 0xda, 0x43, 0x3f, 0x94, 0xe2, 0x27, 0xb6, + 0xe0, 0xe2, 0xdd, 0xc8, 0x8a, 0xa7, 0x19, 0x83, 0xe8, 0xf0, 0xce, 0xb7, 0x61, 0x41, 0x5d, 0x2b, + 0x15, 0x30, 0x9b, 0x7a, 0x1a, 0x8e, 0xad, 0xa5, 0xa5, 0xd9, 0xbf, 0x59, 0xc3, 0xcb, 0x99, 0x28, + 0xb6, 0x07, 0x73, 0x1e, 0xe3, 0xbb, 0xcd, 0x90, 0x32, 0x6e, 0xc5, 0x58, 0xbd, 0xf4, 0xa6, 0x7a, + 0x2b, 0x64, 0xb1, 0x31, 0xa6, 0xde, 0x0a, 0x55, 0x6c, 0x5c, 0xb9, 0xec, 0xb0, 0xeb, 0xb9, 0x4c, + 0x15, 0x1b, 0x6a, 0x9d, 0xf2, 0xde, 0x78, 0xc6, 0x7b, 0xfb, 0x30, 0xce, 0xfa, 0xae, 0x2f, 0x5e, + 0xab, 0x6a, 0x6d, 0x39, 0x5f, 0x77, 0xba, 0x3e, 0x11, 0x10, 0x3c, 0xf5, 0x7a, 0xac, 0xfe, 0x2a, + 0xa2, 0xa1, 0xef, 0x76, 0xf1, 0xa4, 0xe0, 0xa1, 0xed, 0x38, 0x77, 0x61, 0xe3, 0x91, 0xcf, 0x06, + 0xfd, 0x7e, 0x10, 0x46, 0xb4, 0x2d, 0xd3, 0xbf, 0xee, 0x3a, 0x49, 0x54, 0x9a, 0x44, 0x2d, 0x9d, + 0xff, 0x58, 0x60, 0x1f, 0xb9, 0xad, 0x2b, 0xca, 0x6d, 0xac, 0x6c, 0x88, 0x61, 0xaa, 0x25, 0x03, + 0x4a, 0x82, 0xcb, 0xa5, 0x52, 0xa6, 0xe9, 0x46, 0x57, 0x7a, 0xc5, 0xc5, 0xd7, 0x71, 0xa1, 0x72, + 0xd4, 0x0d, 0x98, 0x5e, 0x71, 0xc5, 0x6b, 0x74, 0xc4, 0x73, 0x89, 0x1b, 0x0d, 0xe2, 0x70, 0x9f, + 0xaf, 0x7d, 0x33, 0xab, 0x6a, 0x56, 0x06, 0xe1, 0x73, 0x39, 0xd6, 0x92, 0xa8, 0xce, 0x03, 0x80, + 0xe1, 0x2e, 0xaa, 0xc2, 0xd4, 0xd1, 0xa7, 0x87, 0xa7, 0x9f, 0xd4, 0xf9, 0x4b, 0x02, 0x30, 0x79, + 0x74, 0x72, 0x76, 0x5e, 0x3f, 0xb6, 0x2d, 0x71, 0x40, 0xea, 0x87, 0x17, 0xf5, 0x63, 0xbb, 0xc2, + 0x17, 0xc7, 0xf5, 0x93, 0x3a, 0x5f, 0x8c, 0x71, 0xa8, 0xb3, 0x66, 0xfd, 0xb4, 0x7e, 0x6c, 0x8f, + 0x3b, 0xb5, 0xf8, 0xbd, 0x4d, 0xae, 0xa5, 0x56, 0x12, 0x24, 0x1a, 0x5a, 0x69, 0x0d, 0x9d, 0x7f, + 0x5a, 0xb0, 0x92, 0x41, 0x92, 0x06, 0xfe, 0x1c, 0xe6, 0x98, 0x7e, 0x20, 0x52, 0x7a, 0xb5, 0x56, + 0x33, 0xbd, 0xb5, 0x39, 0xec, 0xd4, 0x2e, 0x49, 0x13, 0x32, 0xdf, 0xad, 0x8d, 0xc7, 0x30, 0xab, + 0x23, 0x95, 0x47, 0x7d, 0x12, 0x66, 0x95, 0x51, 0x61, 0xe6, 0xdc, 0x86, 0xbd, 0x46, 0xaf, 0xdf, + 0xa5, 0x3d, 0xea, 0x47, 0x2e, 0xa7, 0xcc, 0x0d, 0xfe, 0x49, 0x37, 0x78, 0xda, 0x74, 0x23, 0x1e, + 0x69, 0xea, 0x3d, 0x7b, 0x00, 0xb7, 0x46, 0xc0, 0x49, 0xc3, 0x38, 0x30, 0xdb, 0x19, 0x6e, 0xab, + 0xa7, 0x2e, 0xb5, 0xe7, 0xdc, 0x84, 0xad, 0x3c, 0xb1, 0x13, 0x8f, 0xa9, 0x97, 0xc8, 0xf9, 0x02, + 0xb6, 0x8b, 0x00, 0x24, 0x9b, 0xef, 0xc1, 0x9a, 0x97, 0x83, 0xe0, 0x3e, 0x53, 0x1c, 0x8b, 0x8e, + 0x9d, 0x1e, 0x6c, 0x9d, 0x47, 0x83, 0xa7, 0x69, 0xfa, 0x47, 0x41, 0x3b, 0xb9, 0x0c, 0x77, 0x61, + 0xd5, 0x8c, 0x2b, 0xed, 0x5c, 0x70, 0xca, 0x1d, 0xd7, 0x0a, 0xda, 0x94, 0xc9, 0x64, 0x11, 0x2f, + 0x9c, 0x53, 0x98, 0x56, 0xc9, 0x36, 0x71, 0x8b, 0x35, 0xf2, 0xf6, 0x6b, 0x17, 0xb2, 0x92, 0xba, + 0x90, 0xce, 0x97, 0x30, 0xcd, 0x39, 0x0a, 0x7a, 0x25, 0xa1, 0x8b, 0xee, 0xc2, 0x4c, 0x24, 0xf9, + 0xc6, 0x12, 0x95, 0xbd, 0x02, 0x43, 0x50, 0xe7, 0x3d, 0x98, 0x79, 0x40, 0x69, 0xff, 0xb0, 0xeb, + 0xbd, 0x10, 0x69, 0xae, 0xdf, 0x1d, 0x74, 0x3c, 0xbf, 0xd1, 0x56, 0x0c, 0xd4, 0xda, 0xf9, 0xa3, + 0x05, 0x55, 0x51, 0x7f, 0xd0, 0xc8, 0xf5, 0xba, 0x0c, 0xfd, 0x18, 0xa6, 0xda, 0xf1, 0x4f, 0x79, + 0x17, 0x6e, 0x9b, 0xba, 0x6a, 0x09, 0xad, 0xfd, 0x26, 0x0a, 0x6d, 0x23, 0x02, 0x18, 0x6e, 0xa3, + 0xf7, 0xb9, 0xb1, 0x92, 0x16, 0x7d, 0xbd, 0x78, 0x50, 0x27, 0xc0, 0xd0, 0x47, 0x50, 0x15, 0x0d, + 0x88, 0xa8, 0x47, 0x95, 0xc6, 0x2b, 0xb9, 0xa6, 0x8b, 0x9f, 0x12, 0x1d, 0xd2, 0x99, 0x82, 0x89, + 0x7a, 0xaf, 0x1f, 0x7d, 0xe5, 0xfc, 0xdb, 0x81, 0x29, 0x55, 0x46, 0xd7, 0xa1, 0x2a, 0x71, 0x44, + 0x21, 0x6d, 0x89, 0x1c, 0x96, 0x1b, 0x3e, 0x49, 0x68, 0xf5, 0x57, 0x54, 0xcf, 0x3a, 0x1e, 0xbf, + 0xa5, 0x72, 0xd9, 0x88, 0x7b, 0xb9, 0x31, 0x32, 0xdc, 0x40, 0x6d, 0xc0, 0xb4, 0x60, 0xf4, 0x24, + 0xfb, 0x89, 0xfd, 0xc2, 0xa6, 0x3c, 0x03, 0x4f, 0x0a, 0x29, 0xa1, 0x3e, 0x6c, 0xb2, 0x92, 0xa1, + 0xb1, 0xc8, 0xcf, 0xd5, 0xda, 0xb7, 0x4c, 0xce, 0x2a, 0xe4, 0x56, 0x4a, 0x11, 0x3d, 0x83, 0x0d, + 0x56, 0x38, 0xd9, 0x95, 0x4f, 0xdf, 0x37, 0x4a, 0xf9, 0xa5, 0x30, 0x48, 0x09, 0x35, 0xf4, 0x73, + 0xd8, 0x61, 0x23, 0x46, 0xaf, 0xe2, 0xf1, 0xac, 0xd6, 0xbe, 0x53, 0x34, 0xa4, 0x29, 0xd4, 0x72, + 0x24, 0x65, 0xf4, 0x02, 0xb6, 0x59, 0xe9, 0x6c, 0x54, 0x4c, 0x43, 0xaa, 0x86, 0x16, 0xac, 0x14, + 0x8b, 0x8c, 0xa0, 0x2a, 0x7c, 0x5a, 0x32, 0xb8, 0x14, 0x73, 0x15, 0x93, 0x4f, 0x4b, 0x70, 0x48, + 0x29, 0x45, 0xe1, 0xd3, 0xc2, 0xe9, 0x22, 0x9e, 0x29, 0xf0, 0x69, 0x21, 0x06, 0x29, 0xa1, 0x86, + 0x08, 0x20, 0x9a, 0x9b, 0x4f, 0x60, 0xb8, 0xf6, 0x18, 0xc5, 0x80, 0x8d, 0xbe, 0x84, 0x55, 0x6a, + 0x96, 0xbd, 0x2a, 0xe8, 0xde, 0x2e, 0xbc, 0x69, 0x69, 0xb9, 0x0b, 0xa8, 0xa0, 0x47, 0xb0, 0xc4, + 0xf2, 0xf3, 0x06, 0x3c, 0x6b, 0x9e, 0x5a, 0x1b, 0x46, 0x13, 0xc4, 0x84, 0x8f, 0x3e, 0x87, 0x65, + 0x66, 0xe8, 0xd6, 0xf1, 0x9c, 0xf9, 0xeb, 0x9e, 0xa9, 0xb3, 0x27, 0x46, 0x0a, 0xc8, 0x85, 0x35, + 0x6a, 0xfe, 0x9a, 0x88, 0xe7, 0x05, 0xf1, 0xf7, 0xca, 0x72, 0x8f, 0x06, 0x4e, 0x8a, 0xe8, 0xa0, + 0x13, 0xb0, 0x59, 0xa6, 0x2f, 0xc6, 0x0b, 0xe6, 0xbe, 0x3d, 0xdb, 0x3f, 0x93, 0x1c, 0x26, 0x3a, + 0x83, 0x45, 0x96, 0xed, 0xa8, 0xb1, 0x2d, 0xc8, 0xed, 0x96, 0x90, 0x93, 0x42, 0xe6, 0x71, 0x85, + 0x6d, 0x0d, 0xd3, 0x00, 0xbc, 0x58, 0x60, 0x5b, 0x03, 0x2c, 0x31, 0x52, 0xe0, 0x01, 0xfc, 0x3c, + 0xf7, 0xfd, 0x16, 0x23, 0x73, 0x00, 0xe7, 0xbf, 0xf4, 0x12, 0x03, 0xb6, 0xb8, 0xf2, 0x25, 0x53, + 0x02, 0xbc, 0x54, 0x70, 0xe5, 0x4b, 0x70, 0x48, 0x29, 0x45, 0xfe, 0x3c, 0xb1, 0x82, 0xf9, 0x02, + 0x5e, 0x36, 0x3f, 0x4f, 0x45, 0xf3, 0x08, 0x52, 0x48, 0x09, 0x75, 0x60, 0x9d, 0x15, 0x4d, 0x24, + 0xf0, 0x8a, 0x60, 0x73, 0xc7, 0xe8, 0x0a, 0x23, 0x9f, 0x62, 0x5a, 0xa8, 0x01, 0x0b, 0x2c, 0xdd, + 0x3a, 0xe2, 0x55, 0xf3, 0x37, 0x8b, 0x4c, 0x87, 0x49, 0xb2, 0x78, 0x7a, 0x60, 0x27, 0x91, 0xb8, + 0x56, 0x1e, 0xd8, 0x49, 0x20, 0xe6, 0x30, 0xb9, 0x60, 0x61, 0x7a, 0x08, 0x82, 0xb1, 0x59, 0xb0, + 0xcc, 0xac, 0x84, 0x64, 0xf1, 0xb8, 0x60, 0x61, 0xa6, 0x8b, 0xc7, 0xeb, 0x66, 0xc1, 0xb2, 0xdd, + 0x3e, 0xc9, 0x61, 0xf2, 0x9c, 0x3f, 0x28, 0x6c, 0x31, 0xf1, 0x86, 0x39, 0xe7, 0x17, 0x37, 0xa5, + 0xa4, 0x84, 0x1a, 0x97, 0xbc, 0x95, 0xe9, 0x08, 0xf1, 0x0d, 0xb3, 0xe4, 0xd9, 0xce, 0x91, 0xe4, + 0x30, 0x55, 0xda, 0xcc, 0xf6, 0x7a, 0x78, 0xb3, 0x38, 0x6d, 0x66, 0x61, 0x89, 0x91, 0x02, 0xfa, + 0x29, 0xac, 0x30, 0x53, 0x4b, 0x87, 0xb7, 0x04, 0xe9, 0x5b, 0xd7, 0xea, 0xff, 0x88, 0x99, 0x06, + 0x62, 0xb0, 0xe5, 0x95, 0xf5, 0x45, 0x78, 0x5b, 0x30, 0x79, 0x3f, 0xcb, 0xa4, 0xb4, 0x99, 0x22, + 0xe5, 0x34, 0x79, 0x0d, 0xe3, 0x95, 0xf6, 0x5a, 0xf8, 0xa6, 0xb9, 0x86, 0x29, 0xef, 0xd0, 0xc8, + 0x08, 0xaa, 0x5c, 0x59, 0x56, 0xd6, 0x87, 0xe1, 0x1d, 0xb3, 0xb2, 0xa5, 0xcd, 0x1b, 0x29, 0xa7, + 0x89, 0x3e, 0x8c, 0x3b, 0x26, 0xde, 0xea, 0xe0, 0x5d, 0xf3, 0x77, 0x37, 0xd5, 0x5d, 0x91, 0x04, + 0x12, 0xfd, 0xca, 0x82, 0x3d, 0xef, 0x1a, 0x5d, 0x32, 0x76, 0x04, 0xc9, 0x0f, 0x47, 0x5b, 0x2a, + 0x8f, 0x4b, 0xae, 0xc5, 0x01, 0xfd, 0xda, 0x82, 0x5b, 0xde, 0x75, 0x1a, 0x71, 0xfc, 0xae, 0x90, + 0xe5, 0xbb, 0xaf, 0x29, 0x8b, 0x74, 0xde, 0xf5, 0x78, 0x88, 0x27, 0xa2, 0x60, 0xa0, 0x8e, 0xf7, + 0x0a, 0x9e, 0x88, 0x02, 0x78, 0x52, 0x48, 0x09, 0x7d, 0x04, 0x33, 0xcf, 0x55, 0x4b, 0x8a, 0x6f, + 0x99, 0xdb, 0xc1, 0xa4, 0x67, 0x25, 0x43, 0x58, 0xe7, 0xeb, 0x29, 0xa8, 0x6a, 0xbd, 0x19, 0x5a, + 0x81, 0xc5, 0x5c, 0x81, 0x6b, 0xbf, 0x83, 0xd6, 0x61, 0xc5, 0xd8, 0xed, 0xd8, 0x16, 0x5a, 0x83, + 0x25, 0x43, 0x63, 0x62, 0x57, 0xd0, 0x16, 0xac, 0x17, 0xf6, 0x0f, 0xf6, 0x18, 0xba, 0x01, 0x6b, + 0x05, 0x25, 0xbe, 0x3d, 0x2e, 0xf8, 0x99, 0x6a, 0x6d, 0x7b, 0x42, 0xf0, 0xcb, 0x17, 0xc6, 0xf6, + 0x24, 0x5a, 0x80, 0xaa, 0x56, 0xe9, 0xda, 0x53, 0x68, 0x09, 0x16, 0xb2, 0x50, 0xd3, 0x0a, 0x3d, + 0x53, 0x45, 0xda, 0x33, 0x08, 0x9b, 0x3f, 0x36, 0xd9, 0xc0, 0x25, 0x2d, 0x28, 0xec, 0xec, 0x2a, + 0x5a, 0xce, 0x7f, 0xd9, 0xb0, 0x67, 0xb9, 0x19, 0x73, 0x05, 0x96, 0x3d, 0x87, 0x56, 0x4d, 0xff, + 0xb5, 0x66, 0xcf, 0x0b, 0xde, 0x06, 0xd7, 0xda, 0x0b, 0xc2, 0x10, 0xa6, 0x0a, 0xc4, 0xb6, 0x05, + 0x8f, 0x6c, 0xc9, 0x60, 0x2f, 0x72, 0x1e, 0xf9, 0xc7, 0xdf, 0x46, 0xdc, 0x1a, 0x99, 0x57, 0xdb, + 0x5e, 0xd2, 0xa5, 0x4f, 0xc4, 0x5c, 0xe6, 0xa0, 0x99, 0x77, 0xd4, 0x5e, 0xe1, 0xa0, 0xd9, 0x07, + 0xd1, 0x5e, 0x45, 0xdb, 0x65, 0x33, 0x56, 0x7b, 0x8d, 0x63, 0x65, 0x1f, 0x23, 0x1b, 0x2b, 0x5b, + 0x67, 0x9f, 0x0e, 0x7b, 0x5d, 0x39, 0x3e, 0x97, 0xf8, 0xed, 0x0d, 0xb4, 0x3b, 0x62, 0x24, 0x66, + 0xdf, 0x40, 0xce, 0xa8, 0xa1, 0x98, 0xbd, 0x29, 0xbe, 0xc1, 0x95, 0x25, 0x40, 0x7b, 0x0b, 0xcd, + 0x0e, 0x07, 0x48, 0xf6, 0x36, 0xda, 0xbf, 0xde, 0xfc, 0xcf, 0xbe, 0x89, 0xee, 0x5c, 0x73, 0x02, + 0x68, 0xef, 0xa0, 0xcd, 0xe2, 0xef, 0x6c, 0xf6, 0x2e, 0x9a, 0xd3, 0x26, 0x4c, 0xb6, 0x73, 0xef, + 0x0e, 0xac, 0xb6, 0x82, 0xde, 0x41, 0x74, 0x15, 0x0c, 0x3a, 0x57, 0xd1, 0xcb, 0x20, 0x7c, 0xce, + 0xe2, 0xcb, 0xfd, 0xfb, 0xca, 0xfc, 0x27, 0xe2, 0x92, 0x4b, 0xc3, 0xb3, 0xa7, 0x93, 0xe2, 0xdf, + 0x23, 0x3f, 0xf8, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x14, 0x25, 0x70, 0xa0, 0x4c, 0x29, 0x00, + 0x00, } diff --git a/gauge_messages/services.pb.go b/gauge_messages/services.pb.go index 16e193f..c4a6b29 100644 --- a/gauge_messages/services.pb.go +++ b/gauge_messages/services.pb.go @@ -25,50 +25,53 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("services.proto", fileDescriptor_8e16ccb8c5307b32) } var fileDescriptor_8e16ccb8c5307b32 = []byte{ - // 688 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xdb, 0x6e, 0xd3, 0x40, - 0x10, 0x95, 0x10, 0x2a, 0x30, 0x2d, 0x69, 0x59, 0xd4, 0x0b, 0xad, 0x50, 0xcb, 0x1d, 0x2a, 0xb0, - 0x50, 0x11, 0x1f, 0x00, 0xbd, 0x44, 0x15, 0xb4, 0x8a, 0x62, 0xa9, 0xa2, 0x95, 0x00, 0x6d, 0xdc, - 0x49, 0xb2, 0xad, 0xe3, 0x35, 0xbb, 0x63, 0xa0, 0x7c, 0x12, 0x2f, 0x3c, 0xf1, 0x7f, 0xc8, 0xf1, - 0x25, 0x89, 0xed, 0x75, 0x6a, 0xd3, 0xb7, 0x68, 0x67, 0xe6, 0x9c, 0x39, 0xbb, 0xb3, 0x7b, 0x62, - 0x68, 0x68, 0x54, 0xdf, 0x85, 0x83, 0xda, 0xf2, 0x95, 0x24, 0xc9, 0x1a, 0x3d, 0x1e, 0xf4, 0xd0, - 0x1a, 0xa0, 0xd6, 0xbc, 0x87, 0x7a, 0xb5, 0x91, 0xfc, 0x8a, 0xe2, 0x5b, 0x7f, 0x17, 0x60, 0xa6, - 0x1d, 0x78, 0x1e, 0x2a, 0x76, 0x0c, 0x73, 0x47, 0xdc, 0x15, 0xa7, 0x9c, 0xd0, 0x26, 0xf4, 0xd9, - 0x23, 0x6b, 0xb2, 0xd6, 0x0a, 0x57, 0x93, 0x8c, 0x36, 0x7e, 0x0b, 0x50, 0xd3, 0xea, 0xe3, 0xf2, - 0x24, 0xed, 0x4b, 0x4f, 0x23, 0x3b, 0x81, 0x95, 0x7d, 0x4f, 0x90, 0xe0, 0xae, 0xf8, 0x85, 0x76, - 0x20, 0x08, 0x77, 0x38, 0x71, 0x9b, 0xa4, 0x42, 0xb6, 0x98, 0x45, 0xd8, 0x1d, 0xf8, 0x74, 0xb1, - 0xfa, 0x2c, 0xb7, 0xfc, 0x13, 0x9d, 0x80, 0x84, 0xf4, 0x6c, 0xe2, 0x14, 0xe8, 0x14, 0xdb, 0x81, - 0x86, 0x4d, 0x5c, 0x51, 0x1a, 0x67, 0xcf, 0xcb, 0x4a, 0x15, 0x09, 0xaf, 0x97, 0x74, 0x7f, 0x69, - 0x92, 0x63, 0x58, 0x1e, 0x13, 0xe0, 0xa3, 0x73, 0x75, 0xfd, 0x9f, 0x03, 0x1b, 0xb6, 0x15, 0xa2, - 0x8e, 0x34, 0xbc, 0xcc, 0xed, 0xeb, 0x78, 0xb8, 0xb6, 0x8e, 0xcf, 0xb0, 0x36, 0xa6, 0xc3, 0x41, - 0x8f, 0x2b, 0x21, 0xaf, 0x4e, 0x8b, 0x86, 0xa5, 0x48, 0x4b, 0x8c, 0x3c, 0xd2, 0xf3, 0x3a, 0xa7, - 0x27, 0x9b, 0x52, 0x5b, 0x53, 0xba, 0x81, 0x84, 0x7e, 0xd9, 0x06, 0x8e, 0x87, 0x6b, 0x93, 0x9d, - 0xc0, 0x6c, 0x14, 0x8a, 0xee, 0xc8, 0xc3, 0xe2, 0xba, 0x61, 0xb0, 0x32, 0xf6, 0x19, 0xdc, 0xdd, - 0x13, 0x9e, 0xd0, 0xfd, 0x49, 0x25, 0x9b, 0xa5, 0x4a, 0x76, 0xbd, 0xd3, 0x3a, 0x3a, 0x14, 0x2c, - 0xc7, 0x5c, 0xb9, 0xa3, 0xb2, 0xa6, 0x1e, 0x55, 0x4d, 0xce, 0x91, 0xbe, 0x89, 0x51, 0xdf, 0x2c, - 0x1d, 0xf5, 0x9a, 0x5c, 0x1d, 0x98, 0x8f, 0xb8, 0x46, 0x3c, 0x4f, 0x8d, 0xb5, 0x35, 0x39, 0x76, - 0xe0, 0xd6, 0x36, 0x77, 0xfa, 0xb8, 0x27, 0x5c, 0x64, 0x1b, 0xd9, 0xaa, 0x34, 0x94, 0xe0, 0x16, - 0x5f, 0x2e, 0xd6, 0x82, 0xd9, 0x26, 0x0e, 0x87, 0xf7, 0x90, 0x0f, 0x90, 0xad, 0x17, 0x9d, 0x76, - 0x18, 0x49, 0x60, 0x36, 0xcc, 0x09, 0x71, 0x5f, 0x5f, 0x61, 0xbe, 0x89, 0xd4, 0x74, 0x65, 0xa7, - 0xc5, 0x89, 0x50, 0x79, 0xda, 0x74, 0xb1, 0xdf, 0x66, 0x97, 0xf7, 0x07, 0xbe, 0x8b, 0x03, 0xf4, - 0x88, 0x87, 0x7a, 0xc3, 0xee, 0xc7, 0x60, 0x52, 0x02, 0x1b, 0xe6, 0xc6, 0x5a, 0xd6, 0xcc, 0xd8, - 0x92, 0x4e, 0x9a, 0x7e, 0x50, 0x92, 0x91, 0x76, 0xbd, 0x10, 0x83, 0xb6, 0xa4, 0x16, 0x21, 0xbd, - 0x66, 0x85, 0xee, 0x92, 0x86, 0x13, 0xf0, 0x27, 0x53, 0xb2, 0x52, 0x82, 0xa5, 0x26, 0x52, 0x5e, - 0xa1, 0x71, 0x77, 0xac, 0xe9, 0xbb, 0xf3, 0x51, 0x68, 0x4a, 0x09, 0x3e, 0xc1, 0xed, 0x34, 0xc3, - 0xa6, 0xa0, 0xc3, 0x5e, 0xe5, 0x1b, 0x0b, 0x3a, 0x93, 0x20, 0xdb, 0xf2, 0x34, 0x3d, 0xd9, 0x95, - 0x6c, 0x7a, 0xc8, 0xb0, 0x23, 0xba, 0x5d, 0x76, 0x00, 0x37, 0xdb, 0xd8, 0xe5, 0x0e, 0x49, 0x95, - 0x1f, 0x90, 0x24, 0x62, 0x1c, 0x90, 0x51, 0x42, 0xdc, 0xe8, 0x3b, 0xb8, 0xfe, 0x41, 0xb8, 0x6e, - 0xfe, 0xf5, 0x0a, 0x57, 0x5b, 0x4a, 0x3a, 0xa8, 0x75, 0xf9, 0xd4, 0x6e, 0xfd, 0xb9, 0x11, 0xb6, - 0xe4, 0x4b, 0x45, 0xa8, 0xd8, 0x09, 0x2c, 0x1f, 0x4a, 0x12, 0xdd, 0x8b, 0xdc, 0xfb, 0x5a, 0xc1, - 0x8b, 0x0d, 0xd7, 0xa3, 0x03, 0x6b, 0x11, 0x76, 0xa1, 0x01, 0x56, 0xf4, 0x49, 0x03, 0xc7, 0x19, - 0xac, 0xc7, 0x1c, 0x26, 0x53, 0xaa, 0xe1, 0x5f, 0x53, 0xf5, 0x14, 0xf9, 0x51, 0x45, 0xdb, 0x32, - 0x70, 0x7c, 0x81, 0x7b, 0x05, 0x1c, 0xd1, 0x2b, 0x57, 0xc9, 0x4e, 0x0c, 0xf8, 0x5d, 0xb8, 0x6f, - 0xd8, 0xaf, 0x98, 0xa3, 0xaa, 0x85, 0x4c, 0xd5, 0x91, 0x77, 0x84, 0x4a, 0xb6, 0x61, 0xc0, 0x3f, - 0x82, 0xc5, 0xcc, 0xdc, 0xc6, 0xd8, 0x97, 0xb5, 0x0a, 0xe3, 0x93, 0x7e, 0x27, 0xee, 0x3b, 0xfc, - 0xab, 0xdb, 0x46, 0x1d, 0xb8, 0x54, 0xf0, 0x96, 0x85, 0xc1, 0x14, 0x38, 0xca, 0x32, 0x21, 0xfe, - 0xff, 0x8d, 0x7d, 0xff, 0x02, 0x96, 0x1c, 0x39, 0xb0, 0xa8, 0x2f, 0x83, 0x5e, 0x9f, 0x7e, 0x48, - 0x75, 0xae, 0xa3, 0xc4, 0xdf, 0xd7, 0x1a, 0xcd, 0x61, 0xc1, 0x41, 0x5c, 0xd0, 0x99, 0x19, 0x7e, - 0x1b, 0xbc, 0xf9, 0x17, 0x00, 0x00, 0xff, 0xff, 0x51, 0x45, 0x6d, 0x2e, 0x4d, 0x0c, 0x00, 0x00, + // 731 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xeb, 0x4e, 0x13, 0x41, + 0x14, 0x8e, 0xc6, 0xa0, 0x1e, 0xb0, 0xe0, 0x18, 0x2e, 0x42, 0x0c, 0x78, 0x17, 0xa2, 0x8d, 0xc1, + 0xf8, 0x00, 0x42, 0xa1, 0x21, 0x0a, 0x69, 0xda, 0x84, 0x28, 0x3f, 0x34, 0xd3, 0xe5, 0xb4, 0x1d, + 0xd8, 0xee, 0xac, 0x33, 0x67, 0x55, 0x7c, 0x0d, 0xdf, 0xc2, 0x3f, 0x3e, 0x9c, 0x2f, 0x60, 0xa6, + 0x7b, 0xe9, 0x65, 0x77, 0xb6, 0xee, 0xa2, 0xff, 0x9a, 0x39, 0xe7, 0x7c, 0xdf, 0xf9, 0xe6, 0x72, + 0xbe, 0x2d, 0x54, 0x34, 0xaa, 0x2f, 0xc2, 0x41, 0x5d, 0xf5, 0x95, 0x24, 0xc9, 0x2a, 0x5d, 0x1e, + 0x74, 0xb1, 0xda, 0x47, 0xad, 0x79, 0x17, 0xf5, 0x6a, 0x25, 0xfe, 0x15, 0xc6, 0xb7, 0x7f, 0x2f, + 0xc0, 0x4c, 0x33, 0xf0, 0x3c, 0x54, 0xec, 0x03, 0xcc, 0x1d, 0x73, 0x57, 0x9c, 0x72, 0xc2, 0x16, + 0xa1, 0xcf, 0x1e, 0x56, 0xc7, 0x6b, 0xab, 0x66, 0x35, 0xce, 0x68, 0xe2, 0xe7, 0x00, 0x35, 0xad, + 0x3e, 0xca, 0x4f, 0xd2, 0xbe, 0xf4, 0x34, 0x32, 0x0f, 0x56, 0x0e, 0x3c, 0x41, 0x82, 0xbb, 0xe2, + 0x3b, 0xb6, 0x02, 0x41, 0x58, 0xe3, 0xc4, 0x5b, 0x24, 0x15, 0xb2, 0xcd, 0x14, 0xc2, 0x58, 0xdc, + 0xd4, 0xc5, 0x64, 0x4f, 0x27, 0x53, 0xf7, 0xbe, 0xa1, 0x13, 0x90, 0x90, 0x5e, 0x8b, 0x38, 0x05, + 0x3a, 0xe1, 0x73, 0xa0, 0xd2, 0x22, 0xae, 0x28, 0x89, 0xb3, 0x67, 0x79, 0xa5, 0x8a, 0x84, 0xd7, + 0x2d, 0x4c, 0xe2, 0xc2, 0xf2, 0x88, 0x28, 0x1f, 0x9d, 0xa1, 0xa6, 0x14, 0xdb, 0x58, 0xb8, 0x94, + 0xa4, 0x73, 0x60, 0x83, 0x4e, 0x0d, 0xd2, 0x50, 0xd6, 0xf3, 0x2c, 0xa2, 0xcb, 0x4b, 0x23, 0x58, + 0x1b, 0x91, 0xe6, 0xa0, 0xc7, 0x95, 0x90, 0x43, 0x79, 0x69, 0xd6, 0xc9, 0x94, 0x52, 0x12, 0x35, + 0x2c, 0x85, 0x12, 0x23, 0xb4, 0xa1, 0xcc, 0x97, 0x36, 0xc2, 0xcb, 0x4b, 0x4d, 0xf6, 0x95, 0xd0, + 0xcf, 0xdb, 0xd7, 0xd1, 0x70, 0x69, 0xb2, 0x13, 0x98, 0x0d, 0x43, 0xe1, 0x0b, 0x7b, 0x90, 0x5d, + 0x37, 0x08, 0x16, 0xc6, 0x3e, 0x83, 0x3b, 0xfb, 0xc2, 0x13, 0xba, 0x37, 0xae, 0x64, 0x2b, 0x57, + 0xc9, 0x9e, 0x77, 0x5a, 0x46, 0x87, 0x82, 0xe5, 0x88, 0x2b, 0x75, 0x54, 0xd5, 0xa9, 0x47, 0x55, + 0x92, 0x73, 0xa8, 0x6f, 0xec, 0x05, 0x6c, 0xe5, 0xbe, 0x80, 0x92, 0x5c, 0x6d, 0x98, 0x0f, 0xb9, + 0x86, 0x3c, 0x4f, 0xac, 0xb5, 0x25, 0x39, 0x6a, 0x70, 0x73, 0x97, 0x3b, 0x3d, 0xdc, 0x17, 0x2e, + 0xb2, 0x8d, 0xc9, 0xaa, 0x24, 0x14, 0xe3, 0x2e, 0xa6, 0x70, 0xfb, 0x3e, 0x5d, 0xb0, 0x06, 0xcc, + 0xd6, 0x71, 0x70, 0x79, 0x8f, 0x78, 0x1f, 0xd9, 0x7a, 0xd6, 0x69, 0x9b, 0x48, 0x0c, 0xb3, 0x61, + 0x4f, 0x88, 0xfa, 0xfa, 0x04, 0xf3, 0x75, 0xa4, 0xba, 0x2b, 0xdb, 0x0d, 0x4e, 0x84, 0xca, 0xd3, + 0x2c, 0x9b, 0x7b, 0xf5, 0xf5, 0xe4, 0xf2, 0x41, 0xdf, 0x77, 0xb1, 0x8f, 0x1e, 0x71, 0xa3, 0xd7, + 0x74, 0x3f, 0x02, 0x93, 0x10, 0xb4, 0x60, 0x6e, 0xa4, 0x65, 0xcd, 0xac, 0x2d, 0xe9, 0xb8, 0xe9, + 0xfb, 0x39, 0x19, 0x49, 0xd7, 0x0b, 0x11, 0x68, 0x43, 0x6a, 0x61, 0xe8, 0x35, 0xcb, 0xf4, 0xa6, + 0x24, 0x1c, 0x83, 0x3f, 0x9e, 0x92, 0x95, 0x10, 0x2c, 0xd5, 0x91, 0xd2, 0x0a, 0xad, 0xbb, 0x53, + 0x9d, 0xbe, 0x3b, 0xef, 0x84, 0xa6, 0x84, 0xe0, 0x3d, 0xdc, 0x4a, 0x32, 0x5a, 0x14, 0xb4, 0xd9, + 0x8b, 0x74, 0x63, 0x41, 0x7b, 0x1c, 0x64, 0x57, 0x9e, 0x26, 0x27, 0xbb, 0x32, 0x99, 0x6e, 0x18, + 0x6a, 0xa2, 0xd3, 0x61, 0x87, 0x70, 0xa3, 0x89, 0x1d, 0xee, 0x90, 0x54, 0xe9, 0x0b, 0x12, 0x47, + 0xac, 0x17, 0x64, 0x98, 0x10, 0x35, 0xfa, 0x06, 0xae, 0xbd, 0x15, 0xae, 0x9b, 0x9e, 0x5e, 0x66, + 0xb5, 0xa1, 0xa4, 0x83, 0x5a, 0xe7, 0xdf, 0xda, 0xed, 0x5f, 0xd7, 0x4d, 0x4b, 0xbe, 0x54, 0x84, + 0x8a, 0x9d, 0xc0, 0xf2, 0x91, 0x24, 0xd1, 0xb9, 0x48, 0xcd, 0xd7, 0x02, 0xae, 0x6d, 0x79, 0x1e, + 0x6d, 0x58, 0x0b, 0xb1, 0x33, 0x7d, 0xb1, 0xa0, 0x7d, 0x5a, 0x38, 0xce, 0x60, 0x3d, 0xe2, 0xb0, + 0x99, 0x52, 0x09, 0xff, 0x9a, 0xaa, 0x27, 0xcb, 0x8f, 0x0a, 0xda, 0x96, 0x85, 0xe3, 0x23, 0xdc, + 0xcd, 0xe0, 0x08, 0xa7, 0x5c, 0x21, 0x3b, 0xb1, 0xe0, 0x77, 0xe0, 0x9e, 0x65, 0xbf, 0x22, 0x8e, + 0xa2, 0x16, 0x32, 0x55, 0x47, 0xda, 0x11, 0x0a, 0xd9, 0x86, 0x05, 0xff, 0x18, 0x16, 0x27, 0xee, + 0x6d, 0x84, 0xfd, 0xb7, 0x56, 0x61, 0x1d, 0xe9, 0xb7, 0xa3, 0xbe, 0xcd, 0x87, 0x70, 0x13, 0x75, + 0xe0, 0x52, 0xc6, 0x2c, 0x33, 0xc1, 0x04, 0x38, 0xcc, 0xb2, 0x21, 0xfe, 0x83, 0x17, 0xfb, 0xe3, + 0x0a, 0x40, 0x4d, 0x3a, 0x81, 0x19, 0x3d, 0xa8, 0xd8, 0x8e, 0x99, 0xe1, 0x1e, 0x2a, 0x4e, 0x58, + 0x93, 0x8e, 0x66, 0x6b, 0x99, 0x1f, 0xbc, 0x48, 0x5c, 0xb8, 0xfa, 0xff, 0x75, 0xb5, 0xb3, 0x09, + 0x4b, 0x8e, 0xec, 0x57, 0xa9, 0x27, 0x83, 0x6e, 0x8f, 0xbe, 0x4a, 0x75, 0xae, 0xc3, 0xc4, 0x9f, + 0x57, 0x2b, 0xf5, 0x41, 0xc1, 0x61, 0x54, 0xd0, 0x9e, 0x19, 0xfc, 0xdf, 0x79, 0xf5, 0x27, 0x00, + 0x00, 0xff, 0xff, 0x70, 0x6d, 0xf5, 0xc5, 0x21, 0x0d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -90,7 +93,7 @@ type RunnerClient interface { // SuiteDataStoreInit is a RPC to initialize the suite level data store. // // Accepts a Empty message and returns a ExecutionStatusResponse message - InitializeSuiteDataStore(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) + InitializeSuiteDataStore(ctx context.Context, in *SuiteDataStoreInitRequest, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) // ExecutionStarting is a RPC to tell runner to execute Suite level hooks. // // Accepts a ExecutionStartingRequest message and returns a ExecutionStatusResponse message @@ -98,7 +101,7 @@ type RunnerClient interface { // SpecDataStoreInit is a RPC to initialize the spec level data store. // // Accepts a Empty message and returns a ExecutionStatusResponse message - InitializeSpecDataStore(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) + InitializeSpecDataStore(ctx context.Context, in *SpecDataStoreInitRequest, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) // SpecExecutionStarting is a RPC to tell runner to execute spec level hooks. // // Accepts a SpecExecutionStartingRequest message and returns a ExecutionStatusResponse message @@ -106,7 +109,7 @@ type RunnerClient interface { // ScenarioDataStoreInit is a RPC to initialize the scenario level data store. // // Accepts a Empty message and returns a ExecutionStatusResponse message - InitializeScenarioDataStore(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) + InitializeScenarioDataStore(ctx context.Context, in *ScenarioDataStoreInitRequest, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) // ScenarioExecutionStarting is a RPC to tell runner to execute scenario level hooks. // // Accepts a ScenarioExecutionStartingRequest message and returns a ExecutionStatusResponse message @@ -190,7 +193,7 @@ func (c *runnerClient) ValidateStep(ctx context.Context, in *StepValidateRequest return out, nil } -func (c *runnerClient) InitializeSuiteDataStore(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) { +func (c *runnerClient) InitializeSuiteDataStore(ctx context.Context, in *SuiteDataStoreInitRequest, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) { out := new(ExecutionStatusResponse) err := c.cc.Invoke(ctx, "/gauge.messages.Runner/InitializeSuiteDataStore", in, out, opts...) if err != nil { @@ -208,7 +211,7 @@ func (c *runnerClient) StartExecution(ctx context.Context, in *ExecutionStarting return out, nil } -func (c *runnerClient) InitializeSpecDataStore(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) { +func (c *runnerClient) InitializeSpecDataStore(ctx context.Context, in *SpecDataStoreInitRequest, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) { out := new(ExecutionStatusResponse) err := c.cc.Invoke(ctx, "/gauge.messages.Runner/InitializeSpecDataStore", in, out, opts...) if err != nil { @@ -226,7 +229,7 @@ func (c *runnerClient) StartSpecExecution(ctx context.Context, in *SpecExecution return out, nil } -func (c *runnerClient) InitializeScenarioDataStore(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) { +func (c *runnerClient) InitializeScenarioDataStore(ctx context.Context, in *ScenarioDataStoreInitRequest, opts ...grpc.CallOption) (*ExecutionStatusResponse, error) { out := new(ExecutionStatusResponse) err := c.cc.Invoke(ctx, "/gauge.messages.Runner/InitializeScenarioDataStore", in, out, opts...) if err != nil { @@ -388,7 +391,7 @@ type RunnerServer interface { // SuiteDataStoreInit is a RPC to initialize the suite level data store. // // Accepts a Empty message and returns a ExecutionStatusResponse message - InitializeSuiteDataStore(context.Context, *Empty) (*ExecutionStatusResponse, error) + InitializeSuiteDataStore(context.Context, *SuiteDataStoreInitRequest) (*ExecutionStatusResponse, error) // ExecutionStarting is a RPC to tell runner to execute Suite level hooks. // // Accepts a ExecutionStartingRequest message and returns a ExecutionStatusResponse message @@ -396,7 +399,7 @@ type RunnerServer interface { // SpecDataStoreInit is a RPC to initialize the spec level data store. // // Accepts a Empty message and returns a ExecutionStatusResponse message - InitializeSpecDataStore(context.Context, *Empty) (*ExecutionStatusResponse, error) + InitializeSpecDataStore(context.Context, *SpecDataStoreInitRequest) (*ExecutionStatusResponse, error) // SpecExecutionStarting is a RPC to tell runner to execute spec level hooks. // // Accepts a SpecExecutionStartingRequest message and returns a ExecutionStatusResponse message @@ -404,7 +407,7 @@ type RunnerServer interface { // ScenarioDataStoreInit is a RPC to initialize the scenario level data store. // // Accepts a Empty message and returns a ExecutionStatusResponse message - InitializeScenarioDataStore(context.Context, *Empty) (*ExecutionStatusResponse, error) + InitializeScenarioDataStore(context.Context, *ScenarioDataStoreInitRequest) (*ExecutionStatusResponse, error) // ScenarioExecutionStarting is a RPC to tell runner to execute scenario level hooks. // // Accepts a ScenarioExecutionStartingRequest message and returns a ExecutionStatusResponse message @@ -494,7 +497,7 @@ func _Runner_ValidateStep_Handler(srv interface{}, ctx context.Context, dec func } func _Runner_InitializeSuiteDataStore_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(Empty) + in := new(SuiteDataStoreInitRequest) if err := dec(in); err != nil { return nil, err } @@ -506,7 +509,7 @@ func _Runner_InitializeSuiteDataStore_Handler(srv interface{}, ctx context.Conte FullMethod: "/gauge.messages.Runner/InitializeSuiteDataStore", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(RunnerServer).InitializeSuiteDataStore(ctx, req.(*Empty)) + return srv.(RunnerServer).InitializeSuiteDataStore(ctx, req.(*SuiteDataStoreInitRequest)) } return interceptor(ctx, in, info, handler) } @@ -530,7 +533,7 @@ func _Runner_StartExecution_Handler(srv interface{}, ctx context.Context, dec fu } func _Runner_InitializeSpecDataStore_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(Empty) + in := new(SpecDataStoreInitRequest) if err := dec(in); err != nil { return nil, err } @@ -542,7 +545,7 @@ func _Runner_InitializeSpecDataStore_Handler(srv interface{}, ctx context.Contex FullMethod: "/gauge.messages.Runner/InitializeSpecDataStore", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(RunnerServer).InitializeSpecDataStore(ctx, req.(*Empty)) + return srv.(RunnerServer).InitializeSpecDataStore(ctx, req.(*SpecDataStoreInitRequest)) } return interceptor(ctx, in, info, handler) } @@ -566,7 +569,7 @@ func _Runner_StartSpecExecution_Handler(srv interface{}, ctx context.Context, de } func _Runner_InitializeScenarioDataStore_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(Empty) + in := new(ScenarioDataStoreInitRequest) if err := dec(in); err != nil { return nil, err } @@ -578,7 +581,7 @@ func _Runner_InitializeScenarioDataStore_Handler(srv interface{}, ctx context.Co FullMethod: "/gauge.messages.Runner/InitializeScenarioDataStore", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(RunnerServer).InitializeScenarioDataStore(ctx, req.(*Empty)) + return srv.(RunnerServer).InitializeScenarioDataStore(ctx, req.(*ScenarioDataStoreInitRequest)) } return interceptor(ctx, in, info, handler) } @@ -1388,3 +1391,112 @@ var _Reporter_serviceDesc = grpc.ServiceDesc{ Streams: []grpc.StreamDesc{}, Metadata: "services.proto", } + +// DocumenterClient is the client API for Documenter service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type DocumenterClient interface { + // GenerateDocs is a RPC tell plugin to generate docs from the spec details. + // + // Accepts a SpecDetails message and returns a Empty message. + GenerateDocs(ctx context.Context, in *SpecDetails, opts ...grpc.CallOption) (*Empty, error) + // Kill is a RPC tell plugin to stop grpc server and kill the plugin process. + // + // Accepts a KillProcessRequest message and returns a Empty message. + Kill(ctx context.Context, in *KillProcessRequest, opts ...grpc.CallOption) (*Empty, error) +} + +type documenterClient struct { + cc *grpc.ClientConn +} + +func NewDocumenterClient(cc *grpc.ClientConn) DocumenterClient { + return &documenterClient{cc} +} + +func (c *documenterClient) GenerateDocs(ctx context.Context, in *SpecDetails, opts ...grpc.CallOption) (*Empty, error) { + out := new(Empty) + err := c.cc.Invoke(ctx, "/gauge.messages.Documenter/GenerateDocs", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *documenterClient) Kill(ctx context.Context, in *KillProcessRequest, opts ...grpc.CallOption) (*Empty, error) { + out := new(Empty) + err := c.cc.Invoke(ctx, "/gauge.messages.Documenter/Kill", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// DocumenterServer is the server API for Documenter service. +type DocumenterServer interface { + // GenerateDocs is a RPC tell plugin to generate docs from the spec details. + // + // Accepts a SpecDetails message and returns a Empty message. + GenerateDocs(context.Context, *SpecDetails) (*Empty, error) + // Kill is a RPC tell plugin to stop grpc server and kill the plugin process. + // + // Accepts a KillProcessRequest message and returns a Empty message. + Kill(context.Context, *KillProcessRequest) (*Empty, error) +} + +func RegisterDocumenterServer(s *grpc.Server, srv DocumenterServer) { + s.RegisterService(&_Documenter_serviceDesc, srv) +} + +func _Documenter_GenerateDocs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(SpecDetails) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(DocumenterServer).GenerateDocs(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/gauge.messages.Documenter/GenerateDocs", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(DocumenterServer).GenerateDocs(ctx, req.(*SpecDetails)) + } + return interceptor(ctx, in, info, handler) +} + +func _Documenter_Kill_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(KillProcessRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(DocumenterServer).Kill(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/gauge.messages.Documenter/Kill", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(DocumenterServer).Kill(ctx, req.(*KillProcessRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _Documenter_serviceDesc = grpc.ServiceDesc{ + ServiceName: "gauge.messages.Documenter", + HandlerType: (*DocumenterServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "GenerateDocs", + Handler: _Documenter_GenerateDocs_Handler, + }, + { + MethodName: "Kill", + Handler: _Documenter_Kill_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "services.proto", +} diff --git a/gauge_messages/spec.pb.go b/gauge_messages/spec.pb.go index 4a5b871..66e9409 100644 --- a/gauge_messages/spec.pb.go +++ b/gauge_messages/spec.pb.go @@ -545,9 +545,11 @@ type ProtoScenario struct { PreHookScreenshotFiles []string `protobuf:"bytes,21,rep,name=preHookScreenshotFiles,proto3" json:"preHookScreenshotFiles,omitempty"` /// Screenshots captured on post hook exec time to be available on reports PostHookScreenshotFiles []string `protobuf:"bytes,22,rep,name=postHookScreenshotFiles,proto3" json:"postHookScreenshotFiles,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + /// Number of retires + RetriesCount int64 `protobuf:"varint,23,opt,name=retriesCount,proto3" json:"retriesCount,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ProtoScenario) Reset() { *m = ProtoScenario{} } @@ -735,6 +737,13 @@ func (m *ProtoScenario) GetPostHookScreenshotFiles() []string { return nil } +func (m *ProtoScenario) GetRetriesCount() int64 { + if m != nil { + return m.RetriesCount + } + return 0 +} + /// A proto object representing a Span of content type Span struct { Start int64 `protobuf:"varint,1,opt,name=start,proto3" json:"start,omitempty"` @@ -2330,142 +2339,143 @@ func init() { func init() { proto.RegisterFile("spec.proto", fileDescriptor_423806180556987f) } var fileDescriptor_423806180556987f = []byte{ - // 2183 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0x5b, 0x6f, 0xe3, 0xc6, - 0x15, 0x5e, 0x8a, 0x94, 0x25, 0x1d, 0x5d, 0x4c, 0x8f, 0xbd, 0x0e, 0xbb, 0xd8, 0x66, 0x05, 0xc2, - 0x41, 0xd4, 0xc5, 0xc6, 0xdd, 0x3a, 0xe9, 0xa6, 0x45, 0x81, 0x16, 0x8e, 0x25, 0x67, 0xd5, 0x6e, - 0xbc, 0xc6, 0x48, 0x5d, 0x14, 0x79, 0x49, 0xb9, 0xf4, 0xd8, 0x66, 0x2c, 0x91, 0x02, 0x49, 0xed, - 0x3a, 0xf9, 0x01, 0x45, 0x9f, 0x0a, 0x34, 0x7f, 0xa2, 0x40, 0x81, 0xbe, 0xf6, 0xb9, 0x4f, 0x7d, - 0xe9, 0x7f, 0x68, 0xd1, 0xd7, 0xfe, 0x82, 0x3e, 0x16, 0x73, 0x66, 0x86, 0x37, 0x51, 0xb2, 0x6c, - 0x14, 0x48, 0xde, 0x38, 0xe7, 0x32, 0xb7, 0x73, 0xfb, 0xce, 0x10, 0x20, 0x9a, 0x31, 0x77, 0x7f, - 0x16, 0x06, 0x71, 0x40, 0x3a, 0x17, 0xce, 0xfc, 0x82, 0xed, 0x4f, 0x59, 0x14, 0x39, 0x17, 0x2c, - 0xb2, 0xff, 0x5b, 0x85, 0xc6, 0x29, 0xe7, 0x8c, 0x66, 0xcc, 0x25, 0x5d, 0x68, 0x72, 0xd9, 0xe7, - 0xcc, 0x39, 0xf3, 0xfc, 0x0b, 0x4b, 0xeb, 0x6a, 0xbd, 0x06, 0xcd, 0x92, 0xc8, 0x0f, 0xa1, 0xea, - 0xc5, 0x6c, 0x1a, 0x59, 0x95, 0xae, 0xde, 0x6b, 0x1e, 0x7c, 0x6f, 0x3f, 0x3f, 0xdf, 0x3e, 0xce, - 0x35, 0x8c, 0xd9, 0x94, 0x0a, 0x39, 0xb2, 0x07, 0x6d, 0x2f, 0x1a, 0x3b, 0xaf, 0x27, 0xac, 0x1f, - 0x7a, 0x6f, 0x98, 0x6f, 0xe9, 0x5d, 0xad, 0x57, 0xa7, 0x79, 0x22, 0xf9, 0x25, 0x6c, 0xce, 0x42, - 0xf6, 0x3c, 0x08, 0xae, 0x8e, 0x1d, 0x6f, 0x32, 0x0f, 0x59, 0x64, 0x19, 0xb8, 0x40, 0xb7, 0x74, - 0x81, 0x8c, 0x20, 0x2d, 0x2a, 0x92, 0x17, 0x60, 0xce, 0x82, 0x28, 0xce, 0x4d, 0x56, 0x5d, 0x73, - 0xb2, 0x05, 0x4d, 0xf2, 0x00, 0xea, 0xe7, 0xde, 0x84, 0x9d, 0x38, 0x53, 0x66, 0x6d, 0xe0, 0x7d, - 0x24, 0x63, 0x42, 0xc0, 0x88, 0x9d, 0x8b, 0xc8, 0xaa, 0x75, 0xf5, 0x5e, 0x83, 0xe2, 0x37, 0xe9, - 0x25, 0x27, 0xf9, 0x4c, 0xae, 0x62, 0xd5, 0x91, 0x5d, 0x24, 0x93, 0xc7, 0xe9, 0x3e, 0x13, 0xd1, - 0x06, 0x8a, 0x2e, 0xd0, 0xc9, 0x63, 0xe8, 0xe4, 0xd5, 0x2d, 0xe0, 0x92, 0x9f, 0x54, 0x2c, 0x8d, - 0x16, 0x38, 0xe4, 0x09, 0x6c, 0x16, 0xf4, 0xad, 0x66, 0x22, 0x5c, 0x64, 0x91, 0x03, 0x20, 0x52, - 0x7f, 0xe4, 0x86, 0x8c, 0xf9, 0xd1, 0x65, 0x10, 0x47, 0x56, 0xab, 0xab, 0xf7, 0x5a, 0xa8, 0x50, - 0xc2, 0x25, 0x1f, 0xc1, 0xb6, 0x9a, 0x26, 0xab, 0xd4, 0x4e, 0x94, 0xca, 0xd8, 0xe4, 0x21, 0x34, - 0xb8, 0x4b, 0x1c, 0x05, 0x73, 0x3f, 0xb6, 0x3a, 0x5d, 0xad, 0xa7, 0xd3, 0x94, 0x40, 0x9e, 0xc1, - 0xee, 0xc2, 0x4a, 0xc7, 0xde, 0x84, 0x45, 0xd6, 0x26, 0xde, 0xc9, 0x12, 0x2e, 0xf9, 0x09, 0xbc, - 0xb3, 0xb8, 0x98, 0x50, 0x34, 0x51, 0x71, 0x19, 0xdb, 0xfe, 0x8f, 0x21, 0x5d, 0x9f, 0xbb, 0x2b, - 0xf9, 0x39, 0xd4, 0xf9, 0x66, 0xc6, 0x5f, 0xcd, 0x18, 0xfa, 0x7d, 0xe7, 0xc0, 0x5e, 0xea, 0xdb, - 0xfb, 0x43, 0x29, 0x49, 0x13, 0x1d, 0xf2, 0x01, 0x18, 0x51, 0xcc, 0x66, 0x56, 0xa5, 0xab, 0x2d, - 0x8d, 0x8b, 0x51, 0xcc, 0x66, 0x14, 0xc5, 0xc8, 0x33, 0xa8, 0xb9, 0x81, 0xef, 0xb2, 0x59, 0x8c, - 0x01, 0xd1, 0x3c, 0x78, 0x58, 0xaa, 0x71, 0x24, 0x64, 0xa8, 0x12, 0x26, 0x3f, 0x85, 0x7a, 0xe4, - 0x32, 0xdf, 0x09, 0xbd, 0xc0, 0x32, 0x50, 0xf1, 0xfb, 0xe5, 0x4b, 0x49, 0x21, 0x9a, 0x88, 0x93, - 0xcf, 0x61, 0x3b, 0x4e, 0x43, 0x4e, 0x09, 0x58, 0x55, 0x9c, 0xa5, 0x57, 0x3a, 0xcb, 0x78, 0x51, - 0x9e, 0x96, 0x4d, 0x22, 0x8e, 0x33, 0x9d, 0x32, 0x3f, 0xc6, 0x20, 0x59, 0x7e, 0x1c, 0x94, 0xa1, - 0x4a, 0x98, 0x3c, 0x85, 0x2a, 0x4e, 0x67, 0xd5, 0x50, 0xeb, 0xc1, 0xf2, 0x5d, 0x50, 0x21, 0xc8, - 0xef, 0x19, 0x63, 0xae, 0xbe, 0xe2, 0x9e, 0xc7, 0xce, 0x45, 0x24, 0xc3, 0x31, 0x1b, 0xbe, 0x8d, - 0x7c, 0xf8, 0xda, 0x5f, 0x42, 0x5d, 0x19, 0x92, 0xd4, 0xc1, 0xe0, 0xd6, 0x31, 0xef, 0x91, 0x26, - 0xd4, 0xe4, 0x36, 0x4d, 0x4d, 0x0c, 0xf0, 0xe6, 0xcd, 0x0a, 0x69, 0x41, 0x5d, 0x1d, 0xd8, 0xd4, - 0xc9, 0x3b, 0xb0, 0x5d, 0x72, 0x3d, 0xa6, 0x41, 0x1a, 0x50, 0x45, 0x86, 0x59, 0xe5, 0xb3, 0xf2, - 0xbd, 0x98, 0x1b, 0xf6, 0x5f, 0xea, 0xd0, 0xce, 0x19, 0x86, 0x27, 0x0a, 0x65, 0x9a, 0x7c, 0xbe, - 0x2d, 0x92, 0xc9, 0x03, 0xd8, 0x38, 0x77, 0xbc, 0x09, 0x3b, 0x43, 0xe7, 0xaa, 0x63, 0x84, 0x49, - 0x0a, 0xf9, 0x31, 0xd4, 0xdd, 0xc0, 0x8f, 0xd9, 0x75, 0x1c, 0x59, 0xfa, 0x4d, 0x29, 0x39, 0x11, - 0x25, 0xbf, 0x80, 0xb6, 0x5a, 0x65, 0x88, 0xe9, 0xdc, 0xb8, 0x49, 0x37, 0x2f, 0x4f, 0x9e, 0x27, - 0x09, 0x49, 0x66, 0x4a, 0xe9, 0x47, 0x37, 0xa7, 0xd8, 0x82, 0x1e, 0xa6, 0xfe, 0x7c, 0xd2, 0x95, - 0x2e, 0xb4, 0x4e, 0xea, 0xcf, 0x2b, 0x96, 0x26, 0xe4, 0x3d, 0x68, 0xb3, 0x6b, 0xe6, 0xce, 0x63, - 0x2f, 0xf0, 0xc7, 0xde, 0x94, 0xa1, 0xe7, 0xe8, 0x34, 0x4f, 0x24, 0x0f, 0xa1, 0x16, 0x5d, 0x79, - 0xb3, 0x19, 0x3b, 0x43, 0x37, 0x11, 0x97, 0xac, 0x48, 0xe4, 0x5d, 0x00, 0xfe, 0x39, 0x08, 0xc3, - 0x20, 0x8c, 0x44, 0xea, 0xa5, 0x19, 0x0a, 0xe9, 0x40, 0x65, 0xd8, 0xb7, 0x9a, 0x68, 0xbe, 0xca, - 0xb0, 0xcf, 0xaf, 0x37, 0x66, 0x4e, 0xd8, 0x0f, 0xde, 0xfa, 0xdc, 0xab, 0x44, 0x3e, 0x5d, 0x7d, - 0xbd, 0x39, 0x79, 0xd2, 0x03, 0x23, 0x9a, 0x39, 0xbe, 0xd5, 0xc6, 0x9b, 0xd8, 0x29, 0xea, 0x8d, - 0x66, 0x8e, 0x4f, 0x51, 0x82, 0x0c, 0x61, 0x33, 0x39, 0xc9, 0x28, 0x76, 0xe2, 0x79, 0x84, 0xb9, - 0xb5, 0x73, 0xf0, 0xa8, 0xa8, 0x34, 0xc8, 0x8b, 0xd1, 0xa2, 0x5e, 0x59, 0xe9, 0xda, 0x5c, 0xbf, - 0x74, 0x99, 0x6b, 0x97, 0xae, 0xad, 0xdb, 0x94, 0x2e, 0x72, 0xdb, 0xd2, 0xb5, 0x7d, 0x97, 0xd2, - 0xb5, 0xb3, 0xba, 0x74, 0x2d, 0x2f, 0x4e, 0xf7, 0xef, 0x5a, 0x9c, 0x76, 0x57, 0x17, 0xa7, 0x73, - 0x30, 0xb8, 0x91, 0xc9, 0x0e, 0x54, 0xa3, 0xd8, 0x09, 0x63, 0xcc, 0x0d, 0x3a, 0x15, 0x03, 0x62, - 0x82, 0xce, 0x7c, 0x91, 0x0e, 0x74, 0xca, 0x3f, 0x79, 0x71, 0x45, 0xd6, 0xd1, 0xa5, 0x13, 0x62, - 0x45, 0xd1, 0x69, 0x4a, 0x20, 0x16, 0xd4, 0x98, 0x7f, 0x86, 0x3c, 0x03, 0x79, 0x6a, 0x68, 0xff, - 0x49, 0x07, 0x6b, 0x59, 0xaa, 0xcf, 0x15, 0x1b, 0xed, 0x76, 0xc5, 0x66, 0x0f, 0xda, 0x98, 0xaf, - 0x69, 0xf0, 0x76, 0xe8, 0x9f, 0xb1, 0x6b, 0xdc, 0x6b, 0x95, 0xe6, 0x89, 0xe4, 0x23, 0xb8, 0xaf, - 0x34, 0xc6, 0x39, 0x69, 0x1d, 0xa5, 0xcb, 0x99, 0xe4, 0x09, 0x6c, 0x79, 0x11, 0xc7, 0xab, 0x59, - 0x58, 0x69, 0x20, 0xac, 0x5c, 0x64, 0xf0, 0x35, 0xbc, 0x68, 0x94, 0x9d, 0x48, 0x6a, 0x54, 0x51, - 0xa3, 0x9c, 0x49, 0x9e, 0xc3, 0x96, 0x5a, 0xbc, 0xef, 0xc4, 0x0e, 0xb2, 0x64, 0x5e, 0x5a, 0x55, - 0xa4, 0x16, 0x95, 0xc8, 0x31, 0x98, 0xc5, 0x63, 0xac, 0x51, 0xed, 0x16, 0x74, 0xec, 0x3f, 0x2a, - 0xb8, 0xc2, 0x33, 0x04, 0xcf, 0x48, 0x8e, 0x1b, 0xcf, 0x9d, 0xc9, 0x98, 0x5d, 0xc7, 0xb2, 0x70, - 0x64, 0x28, 0x9c, 0x3f, 0x73, 0xc2, 0x88, 0x9d, 0x21, 0xbf, 0x22, 0xf8, 0x29, 0x85, 0x3c, 0x83, - 0xc6, 0x79, 0xe8, 0x5c, 0xf0, 0x32, 0xa7, 0x0a, 0x87, 0x55, 0xdc, 0xce, 0xb1, 0x14, 0xa0, 0xa9, - 0x28, 0x07, 0x11, 0x1c, 0xbf, 0x24, 0xb9, 0x84, 0xb2, 0x68, 0x3e, 0x89, 0x25, 0x14, 0xe9, 0x2d, - 0x45, 0x3d, 0x05, 0x79, 0x5a, 0x36, 0x49, 0x59, 0xfe, 0xa9, 0xae, 0x9f, 0x7f, 0x36, 0x96, 0xe4, - 0x9f, 0xf2, 0x2c, 0x51, 0xbb, 0x4b, 0x96, 0xa8, 0xdf, 0x35, 0x4b, 0x34, 0xee, 0x9a, 0x25, 0x60, - 0x75, 0x96, 0xf8, 0xa7, 0x06, 0xad, 0x2c, 0x4e, 0x24, 0x3f, 0x83, 0xa6, 0x44, 0x8a, 0xfc, 0xd6, - 0x65, 0xd0, 0xae, 0x00, 0xa3, 0x59, 0x69, 0xde, 0xdb, 0x45, 0x58, 0xad, 0x6e, 0xee, 0xed, 0x50, - 0x8e, 0xfc, 0x16, 0x76, 0xa5, 0x7e, 0xd1, 0x1f, 0xf4, 0x5b, 0xfa, 0xc3, 0x92, 0x79, 0xec, 0x47, - 0xd2, 0xe7, 0x39, 0x8a, 0x4a, 0xaa, 0xbb, 0x96, 0x56, 0x77, 0xfb, 0x1f, 0x1a, 0xd4, 0x95, 0x9f, - 0x92, 0x21, 0xb4, 0x94, 0xa7, 0x66, 0x70, 0xfc, 0x7b, 0xcb, 0xfc, 0x3a, 0xf9, 0x40, 0x28, 0x9f, - 0x53, 0xc5, 0xb5, 0xd2, 0xc8, 0xc1, 0x6f, 0xf2, 0x31, 0x34, 0x66, 0x4e, 0xe8, 0x4c, 0x59, 0xcc, - 0x42, 0x79, 0xc2, 0xc5, 0x3b, 0x52, 0x02, 0x34, 0x95, 0xb5, 0xdf, 0x87, 0x56, 0x76, 0x29, 0x84, - 0x85, 0xec, 0x3a, 0x36, 0xef, 0x91, 0x36, 0x34, 0x12, 0x0d, 0x53, 0xb3, 0xbf, 0xa9, 0x64, 0xc6, - 0xe4, 0x33, 0x68, 0x27, 0x73, 0x64, 0xce, 0xf3, 0xfe, 0xd2, 0x35, 0xd3, 0x2f, 0x3c, 0x51, 0x5e, - 0x9b, 0x97, 0x92, 0x37, 0xce, 0x64, 0xce, 0xe4, 0x99, 0xc4, 0x80, 0x1f, 0xd4, 0xe7, 0xe0, 0x58, - 0x17, 0x07, 0xe5, 0xdf, 0x29, 0x2a, 0x37, 0xd6, 0x44, 0xe5, 0xf6, 0xe7, 0xd0, 0xce, 0xad, 0x4d, - 0x00, 0x36, 0x38, 0xaa, 0xf0, 0x5c, 0x81, 0xa8, 0xfb, 0x5f, 0xf9, 0xce, 0xd4, 0x73, 0x4d, 0x8d, - 0x10, 0xe8, 0xf0, 0x0c, 0xed, 0x39, 0x93, 0x2f, 0x46, 0x71, 0xe8, 0xf9, 0x17, 0x66, 0x85, 0x6c, - 0x41, 0x5b, 0xd1, 0x04, 0x72, 0xd6, 0x53, 0x10, 0x6d, 0xd8, 0x76, 0xe2, 0xe3, 0xa2, 0x67, 0x50, - 0xa6, 0xd1, 0x52, 0xd3, 0xd8, 0xd7, 0x00, 0xe9, 0xa6, 0xc8, 0xc7, 0x50, 0xbb, 0x64, 0xce, 0x19, - 0x0b, 0xa3, 0x95, 0x65, 0x4b, 0xa5, 0x56, 0xaa, 0xa4, 0xc9, 0x8f, 0xc0, 0x08, 0x83, 0xb7, 0x2a, - 0x00, 0x6e, 0xd0, 0x42, 0x51, 0xfb, 0x3d, 0x89, 0xeb, 0x15, 0x99, 0x5f, 0xb3, 0xcb, 0x26, 0x13, - 0xe5, 0xa6, 0x62, 0x60, 0xff, 0xad, 0x22, 0xeb, 0x6c, 0x89, 0xf7, 0x93, 0x93, 0x0c, 0x86, 0x93, - 0x01, 0x24, 0xf6, 0xbd, 0x57, 0xba, 0x83, 0x62, 0xf0, 0x14, 0x95, 0x4b, 0xc0, 0x79, 0xe5, 0xff, - 0x07, 0xce, 0xf5, 0xbb, 0x82, 0x73, 0x2b, 0x85, 0xd8, 0xa2, 0x58, 0x27, 0xf0, 0x7a, 0x0f, 0xda, - 0xf2, 0x93, 0x32, 0x27, 0x0a, 0x44, 0x69, 0x6e, 0xd0, 0x3c, 0xd1, 0xfe, 0xab, 0x01, 0x3b, 0x65, - 0xe7, 0x27, 0xbb, 0x49, 0x7f, 0xa4, 0xe1, 0xbc, 0xaa, 0x37, 0x7a, 0x0c, 0x66, 0xc8, 0xdc, 0xe0, - 0x0d, 0x0b, 0xb9, 0x6d, 0x10, 0xaa, 0x8b, 0x0e, 0x8a, 0x2e, 0xd0, 0x89, 0x0d, 0x2d, 0xc6, 0x3f, - 0x14, 0xec, 0x14, 0xe1, 0x90, 0xa3, 0x61, 0x17, 0x10, 0x3b, 0xee, 0xd5, 0x38, 0x74, 0x5c, 0x11, - 0x1b, 0xbc, 0x0b, 0x48, 0x28, 0xc4, 0x06, 0x88, 0x30, 0x41, 0x8f, 0x2e, 0x83, 0x18, 0xcf, 0x20, - 0x8a, 0x45, 0x86, 0xba, 0xd8, 0x8d, 0x6c, 0x94, 0x75, 0x23, 0x16, 0xd4, 0xe4, 0xc5, 0xca, 0x56, - 0x46, 0x0d, 0xc9, 0x0b, 0x68, 0xe0, 0x9e, 0x30, 0x1f, 0xd4, 0x31, 0x1f, 0xec, 0xaf, 0xe3, 0x24, - 0xfb, 0x03, 0xa5, 0x45, 0xd3, 0x09, 0xc8, 0x53, 0xd8, 0x3a, 0x17, 0xd6, 0x49, 0x2b, 0x0b, 0xf6, - 0x3f, 0x62, 0xe3, 0x8b, 0x4c, 0xb2, 0x07, 0xcd, 0x28, 0x53, 0x11, 0x21, 0xa9, 0x88, 0x59, 0x32, - 0xc7, 0x5c, 0x0b, 0xaa, 0xbc, 0x62, 0xc9, 0x16, 0xa9, 0x9c, 0x29, 0x3a, 0xe2, 0x7c, 0xfd, 0x6b, - 0x89, 0xfa, 0x5f, 0x20, 0xdb, 0x4f, 0xa0, 0x91, 0x9c, 0x87, 0xe7, 0xd0, 0xc3, 0xd1, 0x68, 0x40, - 0xc7, 0xc3, 0x97, 0x27, 0xe6, 0x3d, 0x62, 0x42, 0xeb, 0xd5, 0x80, 0x0e, 0x8f, 0x87, 0x47, 0x87, - 0x48, 0xd1, 0xec, 0xdf, 0x57, 0xc0, 0x2c, 0xba, 0x67, 0xc1, 0x98, 0x5a, 0x89, 0x31, 0xf3, 0x0e, - 0x51, 0x29, 0x71, 0x88, 0xbc, 0xc1, 0xf5, 0x65, 0x06, 0xcf, 0x03, 0x61, 0xa3, 0x0c, 0x08, 0x97, - 0x1a, 0xa2, 0xba, 0xca, 0x10, 0x4b, 0xaf, 0x78, 0x63, 0xc5, 0x15, 0xdb, 0xff, 0xaa, 0xc9, 0xab, - 0x18, 0xcd, 0xbd, 0x98, 0xc9, 0xf8, 0x39, 0x14, 0xaf, 0xbe, 0x62, 0x24, 0xf2, 0x56, 0x73, 0xb1, - 0x7d, 0x4c, 0x5e, 0x89, 0x65, 0xd6, 0xc9, 0xea, 0x7c, 0x47, 0x33, 0x4e, 0x9a, 0x18, 0x8c, 0x62, - 0x62, 0xe0, 0x9b, 0x8f, 0x8e, 0x71, 0x28, 0x1e, 0x24, 0xab, 0x68, 0x96, 0x05, 0xfa, 0x9a, 0x01, - 0xdb, 0x85, 0x66, 0x34, 0x77, 0x5d, 0x16, 0x45, 0xd4, 0x89, 0xc5, 0x6b, 0x56, 0x85, 0x66, 0x49, - 0x5c, 0x82, 0xf9, 0x6f, 0xbc, 0x30, 0xf0, 0xf1, 0x95, 0xac, 0x2e, 0x9e, 0xd6, 0x33, 0xa4, 0x04, - 0xde, 0x34, 0x64, 0x5d, 0xe3, 0x90, 0xa7, 0x0b, 0xcd, 0x59, 0x18, 0x7c, 0xc9, 0xdc, 0x18, 0x5f, - 0xb0, 0x40, 0x68, 0x65, 0x48, 0xbc, 0xf1, 0x8b, 0xbd, 0x29, 0x8b, 0x62, 0x67, 0x3a, 0x93, 0xe1, - 0x95, 0x12, 0x78, 0xab, 0x84, 0x27, 0x1a, 0x89, 0x4c, 0x2a, 0x8e, 0xda, 0xc2, 0xa3, 0x2e, 0x32, - 0xca, 0x00, 0x78, 0x7b, 0x7d, 0x00, 0xde, 0x59, 0xfb, 0x01, 0x60, 0xf3, 0x36, 0x0f, 0x00, 0xe6, - 0x6d, 0x1f, 0x00, 0xb6, 0xee, 0x02, 0xed, 0xc9, 0x6a, 0x68, 0x6f, 0x41, 0xcd, 0xbd, 0x9c, 0xfb, - 0x57, 0xec, 0xcc, 0xda, 0x16, 0xb5, 0x4b, 0x0e, 0xf9, 0xfd, 0xe3, 0xe7, 0xc8, 0xfb, 0x9a, 0x59, - 0x3b, 0xa2, 0xf1, 0x4e, 0x08, 0xdf, 0xc2, 0xc3, 0xc1, 0xbf, 0x75, 0xd8, 0x2c, 0x84, 0x2a, 0x02, - 0x57, 0x45, 0x5a, 0xdd, 0x13, 0x70, 0x9d, 0x54, 0x16, 0x0b, 0xb3, 0xec, 0x43, 0x85, 0xeb, 0xc8, - 0x2e, 0x3e, 0x47, 0x24, 0x4f, 0x61, 0x5b, 0x11, 0xb2, 0x11, 0x25, 0x7a, 0xf8, 0x32, 0xd6, 0xd2, - 0xc0, 0x7c, 0x0a, 0xdb, 0xe2, 0x2b, 0x69, 0x9f, 0x29, 0x87, 0x63, 0xbc, 0x0b, 0xac, 0xd2, 0x32, - 0xd6, 0xfa, 0xf5, 0x54, 0x41, 0x8f, 0x5a, 0x1e, 0x7a, 0x1c, 0xc0, 0x8e, 0xda, 0x60, 0x2e, 0x46, - 0xea, 0xb8, 0xf9, 0x52, 0x1e, 0xea, 0x88, 0x71, 0x7e, 0x9b, 0x0d, 0xdc, 0x66, 0x29, 0x8f, 0x7c, - 0x00, 0x1b, 0x2c, 0x7d, 0x3d, 0x6c, 0x1e, 0xdc, 0x5f, 0x78, 0x9d, 0xe3, 0x5c, 0x2a, 0x85, 0x56, - 0x47, 0xb5, 0xfd, 0x8d, 0x06, 0xdb, 0xf9, 0x87, 0x97, 0xbc, 0x9d, 0x79, 0x8f, 0xb6, 0xd2, 0xce, - 0xd8, 0xc4, 0xa5, 0xb2, 0x8b, 0xb7, 0x58, 0x29, 0x7f, 0x23, 0xcd, 0x6c, 0x4a, 0x2f, 0x6e, 0xea, - 0x0f, 0x9a, 0x72, 0x3c, 0xde, 0x58, 0x7e, 0x07, 0x36, 0xf4, 0x77, 0x0d, 0xaa, 0x02, 0xdc, 0x7d, - 0x08, 0x46, 0x9c, 0xf6, 0x4f, 0x8f, 0x4a, 0xaf, 0x3e, 0x03, 0x90, 0x50, 0x58, 0xfd, 0x39, 0xc0, - 0xe6, 0xa8, 0x92, 0xfe, 0x39, 0xc0, 0x06, 0xe9, 0x5d, 0x80, 0x89, 0xe7, 0xb3, 0x93, 0xf9, 0xf4, - 0xb5, 0x6c, 0x05, 0xab, 0x34, 0x43, 0xc9, 0xe2, 0x37, 0x01, 0x13, 0xd5, 0xd0, 0x3e, 0xc8, 0x22, - 0x97, 0x4d, 0x68, 0x9e, 0x1e, 0xd2, 0xd1, 0xe0, 0x8b, 0x01, 0xa5, 0x2f, 0xa9, 0x79, 0x8f, 0xec, - 0x80, 0xf9, 0xea, 0xf0, 0xc5, 0xb0, 0x8f, 0xc8, 0x45, 0x52, 0x35, 0xfb, 0x77, 0x1a, 0x74, 0x92, - 0x9b, 0x7d, 0x85, 0x5d, 0x1b, 0x3e, 0xf7, 0xc9, 0x81, 0x04, 0x2f, 0x29, 0x01, 0xb3, 0x8e, 0xea, - 0xc6, 0xbc, 0xaf, 0xd9, 0x59, 0xa2, 0x27, 0x0f, 0xb2, 0x84, 0x2b, 0x1f, 0x8d, 0x04, 0x47, 0xbc, - 0x0a, 0x89, 0x47, 0x23, 0x49, 0x79, 0xfc, 0x29, 0x6c, 0x16, 0x1e, 0x91, 0xf9, 0x11, 0x4e, 0x5e, - 0x8e, 0x07, 0xbf, 0x19, 0x1c, 0xfd, 0x7a, 0x3c, 0xe8, 0x9b, 0xf7, 0x78, 0xe3, 0x77, 0xca, 0xe1, - 0x58, 0xdf, 0xd4, 0xf8, 0xf7, 0xf1, 0xe1, 0xf0, 0xc5, 0xa0, 0x6f, 0x56, 0x78, 0x13, 0x38, 0xfa, - 0xd5, 0xf0, 0xf4, 0x74, 0xd0, 0x37, 0xf5, 0x4f, 0x7e, 0x00, 0xbb, 0x6e, 0x30, 0xdd, 0x8f, 0x2f, - 0x83, 0xf9, 0xc5, 0x65, 0xfc, 0x36, 0x08, 0xaf, 0x22, 0x61, 0x94, 0x3f, 0x57, 0x3a, 0x9f, 0xa2, - 0x71, 0x54, 0xf5, 0x78, 0xbd, 0x81, 0x4e, 0xf1, 0xe1, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x09, - 0x39, 0xbb, 0x2c, 0xc5, 0x1e, 0x00, 0x00, + // 2201 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0xdd, 0x6e, 0x1b, 0xc7, + 0xf5, 0xf7, 0x72, 0x97, 0x22, 0x79, 0xf8, 0xa1, 0xd5, 0x48, 0x96, 0xf7, 0x6f, 0xf8, 0x1f, 0x13, + 0x0b, 0x05, 0x61, 0x0d, 0x47, 0x75, 0x95, 0xd4, 0x69, 0x51, 0xa0, 0x85, 0x22, 0x52, 0x31, 0x5b, + 0x47, 0x16, 0x86, 0xac, 0x51, 0xe4, 0x26, 0x5d, 0xaf, 0x46, 0xd2, 0x46, 0xe4, 0x2e, 0xb1, 0x3b, + 0xb4, 0x95, 0x3c, 0x40, 0xd1, 0xab, 0x02, 0xcd, 0x4b, 0x14, 0xe8, 0x03, 0xf4, 0xba, 0x57, 0xbd, + 0xe9, 0x55, 0x5f, 0xa0, 0x45, 0x6f, 0xfb, 0x04, 0xbd, 0x2c, 0xe6, 0xcc, 0xec, 0x27, 0x97, 0x14, + 0x25, 0x14, 0x45, 0xee, 0x76, 0xce, 0xc7, 0x7c, 0x9c, 0x39, 0x1f, 0xbf, 0x33, 0x0b, 0x10, 0xcd, + 0x98, 0xbb, 0x3f, 0x0b, 0x03, 0x1e, 0x90, 0xce, 0x85, 0x33, 0xbf, 0x60, 0xfb, 0x53, 0x16, 0x45, + 0xce, 0x05, 0x8b, 0xec, 0x7f, 0x57, 0xa1, 0x71, 0x2a, 0x38, 0xa3, 0x19, 0x73, 0x49, 0x17, 0x9a, + 0x42, 0xf6, 0x05, 0x73, 0xce, 0x3c, 0xff, 0xc2, 0xd2, 0xba, 0x5a, 0xaf, 0x41, 0xb3, 0x24, 0xf2, + 0x7d, 0xa8, 0x7a, 0x9c, 0x4d, 0x23, 0xab, 0xd2, 0xd5, 0x7b, 0xcd, 0x83, 0xff, 0xdb, 0xcf, 0xcf, + 0xb7, 0x8f, 0x73, 0x0d, 0x39, 0x9b, 0x52, 0x29, 0x47, 0xf6, 0xa0, 0xed, 0x45, 0x63, 0xe7, 0xcd, + 0x84, 0xf5, 0x43, 0xef, 0x2d, 0xf3, 0x2d, 0xbd, 0xab, 0xf5, 0xea, 0x34, 0x4f, 0x24, 0x3f, 0x87, + 0xcd, 0x59, 0xc8, 0x5e, 0x04, 0xc1, 0xd5, 0xb1, 0xe3, 0x4d, 0xe6, 0x21, 0x8b, 0x2c, 0x03, 0x17, + 0xe8, 0x96, 0x2e, 0x90, 0x11, 0xa4, 0x45, 0x45, 0xf2, 0x12, 0xcc, 0x59, 0x10, 0xf1, 0xdc, 0x64, + 0xd5, 0x35, 0x27, 0x5b, 0xd0, 0x24, 0x0f, 0xa1, 0x7e, 0xee, 0x4d, 0xd8, 0x89, 0x33, 0x65, 0xd6, + 0x06, 0xda, 0x23, 0x19, 0x13, 0x02, 0x06, 0x77, 0x2e, 0x22, 0xab, 0xd6, 0xd5, 0x7b, 0x0d, 0x8a, + 0xdf, 0xa4, 0x97, 0x9c, 0xe4, 0x73, 0xb5, 0x8a, 0x55, 0x47, 0x76, 0x91, 0x4c, 0x9e, 0xa4, 0xfb, + 0x4c, 0x44, 0x1b, 0x28, 0xba, 0x40, 0x27, 0x4f, 0xa0, 0x93, 0x57, 0xb7, 0x40, 0x48, 0x7e, 0x5a, + 0xb1, 0x34, 0x5a, 0xe0, 0x90, 0xa7, 0xb0, 0x59, 0xd0, 0xb7, 0x9a, 0x89, 0x70, 0x91, 0x45, 0x0e, + 0x80, 0x28, 0xfd, 0x91, 0x1b, 0x32, 0xe6, 0x47, 0x97, 0x01, 0x8f, 0xac, 0x56, 0x57, 0xef, 0xb5, + 0x50, 0xa1, 0x84, 0x4b, 0x3e, 0x86, 0xed, 0x78, 0x9a, 0xac, 0x52, 0x3b, 0x51, 0x2a, 0x63, 0x93, + 0x47, 0xd0, 0x10, 0x2e, 0x71, 0x14, 0xcc, 0x7d, 0x6e, 0x75, 0xba, 0x5a, 0x4f, 0xa7, 0x29, 0x81, + 0x3c, 0x87, 0xdd, 0x85, 0x95, 0x8e, 0xbd, 0x09, 0x8b, 0xac, 0x4d, 0xb4, 0xc9, 0x12, 0x2e, 0xf9, + 0x11, 0x3c, 0x58, 0x5c, 0x4c, 0x2a, 0x9a, 0xa8, 0xb8, 0x8c, 0x6d, 0xff, 0xcb, 0x50, 0xae, 0x2f, + 0xdc, 0x95, 0xfc, 0x14, 0xea, 0x62, 0x33, 0xe3, 0xaf, 0x67, 0x0c, 0xfd, 0xbe, 0x73, 0x60, 0x2f, + 0xf5, 0xed, 0xfd, 0xa1, 0x92, 0xa4, 0x89, 0x0e, 0xf9, 0x10, 0x8c, 0x88, 0xb3, 0x99, 0x55, 0xe9, + 0x6a, 0x4b, 0xe3, 0x62, 0xc4, 0xd9, 0x8c, 0xa2, 0x18, 0x79, 0x0e, 0x35, 0x37, 0xf0, 0x5d, 0x36, + 0xe3, 0x18, 0x10, 0xcd, 0x83, 0x47, 0xa5, 0x1a, 0x47, 0x52, 0x86, 0xc6, 0xc2, 0xe4, 0xc7, 0x50, + 0x8f, 0x5c, 0xe6, 0x3b, 0xa1, 0x17, 0x58, 0x06, 0x2a, 0xfe, 0x7f, 0xf9, 0x52, 0x4a, 0x88, 0x26, + 0xe2, 0xe4, 0x0b, 0xd8, 0xe6, 0x69, 0xc8, 0xc5, 0x02, 0x56, 0x15, 0x67, 0xe9, 0x95, 0xce, 0x32, + 0x5e, 0x94, 0xa7, 0x65, 0x93, 0xc8, 0xe3, 0x4c, 0xa7, 0xcc, 0xe7, 0x18, 0x24, 0xcb, 0x8f, 0x83, + 0x32, 0x34, 0x16, 0x26, 0xcf, 0xa0, 0x8a, 0xd3, 0x59, 0x35, 0xd4, 0x7a, 0xb8, 0x7c, 0x17, 0x54, + 0x0a, 0x0a, 0x3b, 0x63, 0xcc, 0xd5, 0x57, 0xd8, 0x79, 0xec, 0x5c, 0x44, 0x2a, 0x1c, 0xb3, 0xe1, + 0xdb, 0xc8, 0x87, 0xaf, 0xfd, 0x15, 0xd4, 0xe3, 0x8b, 0x24, 0x75, 0x30, 0xc4, 0xed, 0x98, 0xf7, + 0x48, 0x13, 0x6a, 0x6a, 0x9b, 0xa6, 0x26, 0x07, 0x68, 0x79, 0xb3, 0x42, 0x5a, 0x50, 0x8f, 0x0f, + 0x6c, 0xea, 0xe4, 0x01, 0x6c, 0x97, 0x98, 0xc7, 0x34, 0x48, 0x03, 0xaa, 0xc8, 0x30, 0xab, 0x62, + 0x56, 0xb1, 0x17, 0x73, 0xc3, 0xfe, 0x5b, 0x1d, 0xda, 0xb9, 0x8b, 0x11, 0x89, 0x22, 0xbe, 0x9a, + 0x7c, 0xbe, 0x2d, 0x92, 0xc9, 0x43, 0xd8, 0x38, 0x77, 0xbc, 0x09, 0x3b, 0x43, 0xe7, 0xaa, 0x63, + 0x84, 0x29, 0x0a, 0xf9, 0x21, 0xd4, 0xdd, 0xc0, 0xe7, 0xec, 0x9a, 0x47, 0x96, 0x7e, 0x53, 0x4a, + 0x4e, 0x44, 0xc9, 0xcf, 0xa0, 0x1d, 0xaf, 0x32, 0xc4, 0x74, 0x6e, 0xdc, 0xa4, 0x9b, 0x97, 0x27, + 0x2f, 0x92, 0x84, 0xa4, 0x32, 0xa5, 0xf2, 0xa3, 0x9b, 0x53, 0x6c, 0x41, 0x0f, 0x53, 0x7f, 0x3e, + 0xe9, 0x2a, 0x17, 0x5a, 0x27, 0xf5, 0xe7, 0x15, 0x4b, 0x13, 0xf2, 0x1e, 0xb4, 0xd9, 0x35, 0x73, + 0xe7, 0xdc, 0x0b, 0xfc, 0xb1, 0x37, 0x65, 0xe8, 0x39, 0x3a, 0xcd, 0x13, 0xc9, 0x23, 0xa8, 0x45, + 0x57, 0xde, 0x6c, 0xc6, 0xce, 0xd0, 0x4d, 0xa4, 0x91, 0x63, 0x12, 0x79, 0x0f, 0x40, 0x7c, 0x0e, + 0xc2, 0x30, 0x08, 0x23, 0x99, 0x7a, 0x69, 0x86, 0x42, 0x3a, 0x50, 0x19, 0xf6, 0xad, 0x26, 0x5e, + 0x5f, 0x65, 0xd8, 0x17, 0xe6, 0xe5, 0xcc, 0x09, 0xfb, 0xc1, 0x3b, 0x5f, 0x78, 0x95, 0xcc, 0xa7, + 0xab, 0xcd, 0x9b, 0x93, 0x27, 0x3d, 0x30, 0xa2, 0x99, 0xe3, 0x5b, 0x6d, 0xb4, 0xc4, 0x4e, 0x51, + 0x6f, 0x34, 0x73, 0x7c, 0x8a, 0x12, 0x64, 0x08, 0x9b, 0xc9, 0x49, 0x46, 0xdc, 0xe1, 0xf3, 0x08, + 0x73, 0x6b, 0xe7, 0xe0, 0x71, 0x51, 0x69, 0x90, 0x17, 0xa3, 0x45, 0xbd, 0xb2, 0xd2, 0xb5, 0xb9, + 0x7e, 0xe9, 0x32, 0xd7, 0x2e, 0x5d, 0x5b, 0xb7, 0x29, 0x5d, 0xe4, 0xb6, 0xa5, 0x6b, 0xfb, 0x2e, + 0xa5, 0x6b, 0x67, 0x75, 0xe9, 0x5a, 0x5e, 0x9c, 0xee, 0xdf, 0xb5, 0x38, 0xed, 0xae, 0x2c, 0x4e, + 0xc4, 0x86, 0x56, 0xc8, 0x78, 0xe8, 0xb1, 0x48, 0xd6, 0xcb, 0x07, 0xe8, 0xb4, 0x39, 0x9a, 0x7d, + 0x0e, 0x86, 0x70, 0x04, 0xb2, 0x03, 0xd5, 0x88, 0x3b, 0x21, 0xc7, 0xfc, 0xa1, 0x53, 0x39, 0x20, + 0x26, 0xe8, 0xcc, 0x97, 0x29, 0x43, 0xa7, 0xe2, 0x53, 0x14, 0x60, 0x64, 0x1d, 0x5d, 0x3a, 0x21, + 0x56, 0x1d, 0x9d, 0xa6, 0x04, 0x62, 0x41, 0x8d, 0xf9, 0x67, 0xc8, 0x33, 0x90, 0x17, 0x0f, 0xed, + 0x3f, 0xe8, 0x60, 0x2d, 0x2b, 0x07, 0xb9, 0x82, 0xa4, 0xdd, 0xae, 0x20, 0xed, 0x41, 0x1b, 0x73, + 0x3a, 0x0d, 0xde, 0x0d, 0xfd, 0x33, 0x76, 0x8d, 0x7b, 0xad, 0xd2, 0x3c, 0x91, 0x7c, 0x0c, 0xf7, + 0x63, 0x8d, 0x71, 0x4e, 0x5a, 0x47, 0xe9, 0x72, 0x26, 0x79, 0x0a, 0x5b, 0x5e, 0x24, 0x30, 0x6d, + 0x16, 0x7a, 0x1a, 0x08, 0x3d, 0x17, 0x19, 0x62, 0x0d, 0x2f, 0x1a, 0x65, 0x27, 0x52, 0x1a, 0x55, + 0xd4, 0x28, 0x67, 0x92, 0x17, 0xb0, 0x15, 0x2f, 0xde, 0x77, 0xb8, 0x83, 0x2c, 0x95, 0xbb, 0x56, + 0x15, 0xb2, 0x45, 0x25, 0x72, 0x0c, 0x66, 0xf1, 0x18, 0x6b, 0x54, 0xc4, 0x05, 0x1d, 0xfb, 0xf7, + 0x31, 0xa4, 0x11, 0x59, 0x44, 0x64, 0x2d, 0xc7, 0xe5, 0x73, 0x67, 0x32, 0x66, 0xd7, 0x5c, 0x15, + 0x97, 0x0c, 0x45, 0xf0, 0x67, 0x4e, 0x18, 0xb1, 0x33, 0xe4, 0x57, 0x24, 0x3f, 0xa5, 0x90, 0xe7, + 0xd0, 0x38, 0x0f, 0x9d, 0x0b, 0x51, 0x0a, 0xe3, 0xe2, 0x62, 0x15, 0xb7, 0x73, 0xac, 0x04, 0x68, + 0x2a, 0x2a, 0x80, 0x86, 0xc0, 0x38, 0x49, 0xbe, 0xa1, 0x2c, 0x9a, 0x4f, 0xb8, 0x82, 0x2b, 0xbd, + 0xa5, 0xc8, 0xa8, 0x20, 0x4f, 0xcb, 0x26, 0x29, 0xcb, 0x51, 0xd5, 0xf5, 0x73, 0xd4, 0xc6, 0x92, + 0x1c, 0x55, 0x9e, 0x49, 0x6a, 0x77, 0xc9, 0x24, 0xf5, 0xbb, 0x66, 0x92, 0xc6, 0x5d, 0x33, 0x09, + 0xac, 0x86, 0xb9, 0x7f, 0xd7, 0xa0, 0x95, 0xc5, 0x92, 0xe4, 0x27, 0xd0, 0x54, 0x68, 0x52, 0x58, + 0x5d, 0x05, 0xed, 0x0a, 0xc0, 0x9a, 0x95, 0x16, 0xfd, 0x5f, 0x84, 0x15, 0xed, 0xe6, 0xfe, 0x0f, + 0xe5, 0xc8, 0xaf, 0x61, 0x57, 0xe9, 0x17, 0xfd, 0x41, 0xbf, 0xa5, 0x3f, 0x2c, 0x99, 0xc7, 0x7e, + 0xac, 0x7c, 0x5e, 0x20, 0xad, 0x04, 0x01, 0x68, 0x29, 0x02, 0xb0, 0xff, 0xaa, 0x41, 0x3d, 0xf6, + 0x53, 0x32, 0x84, 0x56, 0xec, 0xa9, 0x19, 0xac, 0xff, 0xfe, 0x32, 0xbf, 0x4e, 0x3e, 0x10, 0xee, + 0xe7, 0x54, 0x71, 0xad, 0x34, 0x72, 0xf0, 0x9b, 0x7c, 0x02, 0x8d, 0x99, 0x13, 0x3a, 0x53, 0xc6, + 0x59, 0xa8, 0x4e, 0xb8, 0x68, 0xa3, 0x58, 0x80, 0xa6, 0xb2, 0xf6, 0x07, 0xd0, 0xca, 0x2e, 0x85, + 0xd0, 0x91, 0x5d, 0x73, 0xf3, 0x1e, 0x69, 0x43, 0x23, 0xd1, 0x30, 0x35, 0xfb, 0xdb, 0x4a, 0x66, + 0x4c, 0x3e, 0x87, 0x76, 0x32, 0x47, 0xe6, 0x3c, 0x1f, 0x2c, 0x5d, 0x33, 0xfd, 0xc2, 0x13, 0xe5, + 0xb5, 0x45, 0x29, 0x79, 0xeb, 0x4c, 0xe6, 0x4c, 0x9d, 0x49, 0x0e, 0xc4, 0x41, 0x7d, 0x01, 0xa0, + 0x75, 0x79, 0x50, 0xf1, 0x9d, 0x22, 0x77, 0x63, 0x4d, 0xe4, 0x6e, 0x7f, 0x01, 0xed, 0xdc, 0xda, + 0x04, 0x60, 0x43, 0x20, 0x0f, 0xcf, 0x95, 0xa8, 0xbb, 0xff, 0xb5, 0xef, 0x4c, 0x3d, 0xd7, 0xd4, + 0x08, 0x81, 0x8e, 0xc8, 0xd0, 0x9e, 0x33, 0xf9, 0x72, 0xc4, 0x43, 0xcf, 0xbf, 0x30, 0x2b, 0x64, + 0x0b, 0xda, 0x31, 0x4d, 0xa2, 0x6b, 0x3d, 0x05, 0xda, 0x86, 0x6d, 0x27, 0x3e, 0x2e, 0xfb, 0x8a, + 0xf8, 0x6a, 0xb4, 0xf4, 0x6a, 0xec, 0x6b, 0x80, 0x74, 0x53, 0xe4, 0x13, 0xa8, 0x5d, 0x32, 0xe7, + 0x8c, 0x85, 0xd1, 0xca, 0xb2, 0x15, 0xa7, 0x56, 0x1a, 0x4b, 0x93, 0x1f, 0x80, 0x11, 0x06, 0xef, + 0xe2, 0x00, 0xb8, 0x41, 0x0b, 0x45, 0xed, 0xf7, 0x15, 0xf6, 0x8f, 0xc9, 0xc2, 0xcc, 0x2e, 0x9b, + 0x4c, 0x62, 0x37, 0x95, 0x03, 0xfb, 0xcf, 0x15, 0x55, 0x67, 0x4b, 0xbc, 0x9f, 0x9c, 0x64, 0x70, + 0x9e, 0x0a, 0x20, 0xb9, 0xef, 0xbd, 0xd2, 0x1d, 0x14, 0x83, 0xa7, 0xa8, 0x5c, 0x02, 0xe0, 0x2b, + 0xff, 0x3d, 0x00, 0xaf, 0xdf, 0x15, 0xc0, 0x5b, 0x29, 0x0c, 0x97, 0xc5, 0x3a, 0x81, 0xe0, 0x7b, + 0xd0, 0x56, 0x9f, 0x94, 0x39, 0x51, 0x20, 0x4b, 0x73, 0x83, 0xe6, 0x89, 0xf6, 0x9f, 0x0c, 0xd8, + 0x29, 0x3b, 0x3f, 0xd9, 0x4d, 0x7a, 0x28, 0x0d, 0xe7, 0x8d, 0xfb, 0xa7, 0x27, 0x60, 0x86, 0xcc, + 0x0d, 0xde, 0xb2, 0x50, 0xdc, 0x0d, 0xc2, 0x79, 0xd9, 0x65, 0xd1, 0x05, 0xba, 0xc0, 0x64, 0x4c, + 0x7c, 0xc4, 0xd0, 0x54, 0x86, 0x43, 0x8e, 0x86, 0x9d, 0x02, 0x77, 0xdc, 0xab, 0x71, 0xe8, 0xb8, + 0x32, 0x36, 0x44, 0xa7, 0x90, 0x50, 0x88, 0x0d, 0x10, 0x61, 0x82, 0x1e, 0x5d, 0x06, 0x1c, 0xcf, + 0x20, 0x8b, 0x45, 0x86, 0xba, 0xd8, 0xb1, 0x6c, 0x94, 0x75, 0x2c, 0x16, 0xd4, 0x94, 0x61, 0x55, + 0xbb, 0x13, 0x0f, 0xc9, 0x4b, 0x68, 0xe0, 0x9e, 0x30, 0x1f, 0xd4, 0x31, 0x1f, 0xec, 0xaf, 0xe3, + 0x24, 0xfb, 0x83, 0x58, 0x8b, 0xa6, 0x13, 0x90, 0x67, 0xb0, 0x75, 0x2e, 0x6f, 0x27, 0xad, 0x2c, + 0xd8, 0x23, 0xc9, 0x8d, 0x2f, 0x32, 0xc9, 0x1e, 0x34, 0xa3, 0x4c, 0x45, 0x84, 0xa4, 0x22, 0x66, + 0xc9, 0x02, 0x73, 0x2d, 0xa8, 0x8a, 0x8a, 0xa5, 0xda, 0xa8, 0x72, 0xa6, 0xec, 0x9a, 0xf3, 0xf5, + 0xaf, 0x25, 0xeb, 0x7f, 0x81, 0x6c, 0x3f, 0x85, 0x46, 0x72, 0x1e, 0x91, 0x43, 0x0f, 0x47, 0xa3, + 0x01, 0x1d, 0x0f, 0x5f, 0x9d, 0x98, 0xf7, 0x88, 0x09, 0xad, 0xd7, 0x03, 0x3a, 0x3c, 0x1e, 0x1e, + 0x1d, 0x22, 0x45, 0xb3, 0x7f, 0x5b, 0x01, 0xb3, 0xe8, 0x9e, 0x85, 0xcb, 0xd4, 0x4a, 0x2e, 0x33, + 0xef, 0x10, 0x95, 0x12, 0x87, 0xc8, 0x5f, 0xb8, 0xbe, 0xec, 0xc2, 0xf3, 0x40, 0xd8, 0x28, 0x03, + 0xc2, 0xa5, 0x17, 0x51, 0x5d, 0x75, 0x11, 0x4b, 0x4d, 0xbc, 0xb1, 0xc2, 0xc4, 0xf6, 0x3f, 0x6a, + 0xca, 0x14, 0xa3, 0xb9, 0xc7, 0x99, 0x8a, 0x9f, 0x43, 0xf9, 0x32, 0x2c, 0x47, 0x32, 0x6f, 0x35, + 0x17, 0x5b, 0xcc, 0xe4, 0x25, 0x59, 0x65, 0x9d, 0xac, 0xce, 0x77, 0x34, 0xe3, 0xa4, 0x89, 0xc1, + 0x28, 0x26, 0x06, 0xb1, 0xf9, 0xe8, 0x18, 0x87, 0xb2, 0x09, 0xab, 0xe2, 0xb5, 0x2c, 0xd0, 0xd7, + 0x0c, 0xd8, 0x2e, 0x34, 0xa3, 0xb9, 0xeb, 0xb2, 0x28, 0xa2, 0x0e, 0x97, 0x2f, 0x5e, 0x15, 0x9a, + 0x25, 0x09, 0x09, 0xe6, 0xbf, 0xf5, 0xc2, 0xc0, 0xc7, 0x97, 0xb4, 0xba, 0x7c, 0x7e, 0xcf, 0x90, + 0x12, 0x78, 0xd3, 0x50, 0x75, 0x4d, 0x40, 0x9e, 0x2e, 0x34, 0x67, 0x61, 0xf0, 0x15, 0x73, 0x39, + 0xbe, 0x72, 0x81, 0xd4, 0xca, 0x90, 0x44, 0xe3, 0xc7, 0xbd, 0x29, 0x8b, 0xb8, 0x33, 0x9d, 0xa9, + 0xf0, 0x4a, 0x09, 0xa2, 0x55, 0xc2, 0x13, 0x8d, 0x64, 0x26, 0x95, 0x47, 0x6d, 0xe1, 0x51, 0x17, + 0x19, 0x65, 0x00, 0xbc, 0xbd, 0x3e, 0x00, 0xef, 0xac, 0xfd, 0x48, 0xb0, 0x79, 0x9b, 0x47, 0x02, + 0xf3, 0xb6, 0x8f, 0x04, 0x5b, 0x77, 0x81, 0xf6, 0x64, 0x35, 0xb4, 0xb7, 0xa0, 0xe6, 0x5e, 0xce, + 0xfd, 0x2b, 0x76, 0x66, 0x6d, 0xcb, 0xda, 0xa5, 0x86, 0xc2, 0xfe, 0xf8, 0x39, 0xf2, 0xbe, 0x61, + 0xd6, 0x8e, 0x6c, 0xbc, 0x13, 0xc2, 0xff, 0xfe, 0x71, 0xc1, 0xfe, 0xa7, 0x0e, 0x9b, 0x85, 0x50, + 0x45, 0xe0, 0x1a, 0x93, 0x56, 0xf7, 0x04, 0x42, 0x27, 0x95, 0xc5, 0xc2, 0xac, 0xfa, 0x50, 0xe9, + 0x3a, 0xaa, 0x8b, 0xcf, 0x11, 0xc9, 0x33, 0xd8, 0x8e, 0x09, 0xd9, 0x88, 0x92, 0x3d, 0x7c, 0x19, + 0x6b, 0x69, 0x60, 0x3e, 0x83, 0x6d, 0xf9, 0x95, 0xb4, 0xcf, 0x54, 0xc0, 0x31, 0xd1, 0x05, 0x56, + 0x69, 0x19, 0x6b, 0xfd, 0x7a, 0x1a, 0x43, 0x8f, 0x5a, 0x1e, 0x7a, 0x1c, 0xc0, 0x4e, 0xbc, 0xc1, + 0x5c, 0x8c, 0xd4, 0x71, 0xf3, 0xa5, 0x3c, 0xd4, 0x91, 0xe3, 0xfc, 0x36, 0x1b, 0xb8, 0xcd, 0x52, + 0x1e, 0xf9, 0x10, 0x36, 0x58, 0xfa, 0xc2, 0xd8, 0x3c, 0xb8, 0xbf, 0xf0, 0x82, 0x27, 0xb8, 0x54, + 0x09, 0xad, 0x8e, 0x6a, 0xfb, 0x5b, 0x0d, 0xb6, 0xf3, 0x0f, 0x2f, 0xf9, 0x7b, 0x16, 0x3d, 0xda, + 0xca, 0x7b, 0xc6, 0x26, 0x2e, 0x95, 0x5d, 0xb4, 0x62, 0xa5, 0xfc, 0x1d, 0x35, 0xb3, 0x29, 0xbd, + 0xb8, 0xa9, 0xdf, 0x69, 0xb1, 0xe3, 0x89, 0xc6, 0xf2, 0x3b, 0xb0, 0xa1, 0xbf, 0x68, 0x50, 0x95, + 0xe0, 0xee, 0x23, 0x30, 0x78, 0xda, 0x3f, 0x3d, 0x2e, 0x35, 0x7d, 0x06, 0x20, 0xa1, 0x70, 0xfc, + 0x77, 0x01, 0x9b, 0xa3, 0x4a, 0xfa, 0x77, 0x01, 0x1b, 0xa4, 0xf7, 0x00, 0x26, 0x9e, 0xcf, 0x4e, + 0xe6, 0xd3, 0x37, 0xaa, 0x15, 0xac, 0xd2, 0x0c, 0x25, 0x8b, 0xdf, 0x24, 0x4c, 0x8c, 0x87, 0xf6, + 0x41, 0x16, 0xb9, 0x6c, 0x42, 0xf3, 0xf4, 0x90, 0x8e, 0x06, 0x5f, 0x0e, 0x28, 0x7d, 0x45, 0xcd, + 0x7b, 0x64, 0x07, 0xcc, 0xd7, 0x87, 0x2f, 0x87, 0x7d, 0x44, 0x2e, 0x8a, 0xaa, 0xd9, 0xbf, 0xd1, + 0xa0, 0x93, 0x58, 0xf6, 0x35, 0x76, 0x6d, 0xf8, 0xdc, 0xa7, 0x06, 0x0a, 0xbc, 0xa4, 0x04, 0xcc, + 0x3a, 0x71, 0x37, 0xe6, 0x7d, 0xc3, 0xce, 0x12, 0x3d, 0x75, 0x90, 0x25, 0x5c, 0xf5, 0x68, 0x24, + 0x39, 0xf2, 0x55, 0x48, 0x3e, 0x1a, 0x29, 0xca, 0x93, 0xcf, 0x60, 0xb3, 0xf0, 0xd0, 0x2c, 0x8e, + 0x70, 0xf2, 0x6a, 0x3c, 0xf8, 0xd5, 0xe0, 0xe8, 0x97, 0xe3, 0x41, 0xdf, 0xbc, 0x27, 0x1a, 0xbf, + 0x53, 0x01, 0xc7, 0xfa, 0xa6, 0x26, 0xbe, 0x8f, 0x0f, 0x87, 0x2f, 0x07, 0x7d, 0xb3, 0x22, 0x9a, + 0xc0, 0xd1, 0x2f, 0x86, 0xa7, 0xa7, 0x83, 0xbe, 0xa9, 0x7f, 0xfa, 0x3d, 0xd8, 0x75, 0x83, 0xe9, + 0x3e, 0xbf, 0x0c, 0xe6, 0x17, 0x97, 0xfc, 0x5d, 0x10, 0x5e, 0x45, 0xf2, 0x52, 0xfe, 0x58, 0xe9, + 0x7c, 0x86, 0x97, 0x13, 0x57, 0x8f, 0x37, 0x1b, 0xe8, 0x14, 0x1f, 0xfd, 0x27, 0x00, 0x00, 0xff, + 0xff, 0x0b, 0xa0, 0x9a, 0xe0, 0xe9, 0x1e, 0x00, 0x00, } diff --git a/generator/generate.go b/generator/generate.go index 3808eff..9e82f95 100644 --- a/generator/generate.go +++ b/generator/generate.go @@ -171,6 +171,7 @@ type scenario struct { PostHookScreenshotFiles []string `json:"PostHookScreenshotFiles"` PreHookScreenshots []string `json:"PreHookScreenshots"` PostHookScreenshots []string `json:"PostHookScreenshots"` + RetriesCount int `json:"RetriesCount"` } type step struct { diff --git a/generator/transform.go b/generator/transform.go index bc777b1..6e99466 100644 --- a/generator/transform.go +++ b/generator/transform.go @@ -463,6 +463,7 @@ func toScenario(scn *gm.ProtoScenario, tableRowIndex int) *scenario { TableRowIndex: tableRowIndex, PreHookMessages: scn.GetPreHookMessages(), PostHookMessages: scn.GetPostHookMessages(), + RetriesCount: int(scn.RetriesCount), } for _, s := range scn.GetPreHookScreenshotFiles() { scenario.PreHookScreenshotFiles = append(scenario.PreHookScreenshotFiles, s) diff --git a/generator/transform_test.go b/generator/transform_test.go index 297ba6f..807272a 100644 --- a/generator/transform_test.go +++ b/generator/transform_test.go @@ -352,6 +352,7 @@ var scn = &gm.ProtoScenario{ }, PreHookMessages: []string{"Before Scenario Message"}, PostHookMessages: []string{"After Scenario Message"}, + RetriesCount: 4, } var scnWithHookFailure = &gm.ProtoScenario{ @@ -1072,6 +1073,7 @@ func TestToScenario(t *testing.T) { }, }, TableRowIndex: -1, + RetriesCount: 4, } got := toScenario(scn, -1) diff --git a/themes/default/assets/css/style.css b/themes/default/assets/css/style.css index aba2d04..020b686 100644 --- a/themes/default/assets/css/style.css +++ b/themes/default/assets/css/style.css @@ -665,6 +665,11 @@ header.top .project { margin: 0 0 10px 0; } +.scenario-retry-count { + padding: 5px; + background-color: yellow +} + .step { list-style-type: none; margin: 0; diff --git a/themes/default/views/partials.tmpl b/themes/default/views/partials.tmpl index 7513359..8fa7c1a 100644 --- a/themes/default/views/partials.tmpl +++ b/themes/default/views/partials.tmpl @@ -442,6 +442,9 @@ {{define "scenarioHeaderStartDiv"}}

{{.Heading | escapeHTML }}

+ {{ if gt .RetriesCount 1}} + Retried {{ .RetriesCount }} times + {{end}} {{.ExecutionTime}} {{end}} @@ -883,4 +886,4 @@ {{template "bodyFooterTag"}} {{template "htmlPageEndWithJS" $overview}} -{{end}} \ No newline at end of file +{{end}}