diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index f7d8d5b448d9..5745a38d1f3a 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -188,6 +188,21 @@ } } }, + "io.argoproj.workflow.v1alpha1.Backoff": { + "type": "object", + "properties": { + "duration": { + "type": "string" + }, + "factor": { + "type": "integer", + "format": "int32" + }, + "maxDuration": { + "type": "string" + } + } + }, "io.argoproj.workflow.v1alpha1.ContinueOn": { "description": "ContinueOn defines if a workflow should continue even if a task or step fails/errors. It can be specified if the workflow should continue when the pod errors, fails or both.", "type": "object", @@ -796,6 +811,10 @@ "description": "RetryStrategy provides controls on how to retry a workflow step", "type": "object", "properties": { + "backoff": { + "description": "Backoff is a backoff strategy", + "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.Backoff" + }, "limit": { "description": "Limit is the maximum number of attempts when retrying a container", "type": "integer", diff --git a/examples/retry-backoff.yaml b/examples/retry-backoff.yaml new file mode 100644 index 000000000000..6e16929dbdf7 --- /dev/null +++ b/examples/retry-backoff.yaml @@ -0,0 +1,20 @@ +# This example demonstrates the use of retry back offs +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: retry-backoff- +spec: + entrypoint: retry-backoff + templates: + - name: retry-backoff + retryStrategy: + limit: 10 + backoff: + duration: 1 # Default unit is seconds. Could also be a Duration, e.g.: "2m", "6h", "1d" + factor: 2 + maxDuration: "1m" # Default unit is seconds. Could also be a Duration, e.g.: "2m", "6h", "1d" + container: + image: python:alpine3.6 + command: ["python", -c] + # fail with a 66% probability + args: ["import random; import sys; exit_code = random.choice([0, 1, 1]); sys.exit(exit_code)"] diff --git a/pkg/apis/workflow/v1alpha1/generated.pb.go b/pkg/apis/workflow/v1alpha1/generated.pb.go index 583cff5e8c7b..d4a2a6bb704a 100644 --- a/pkg/apis/workflow/v1alpha1/generated.pb.go +++ b/pkg/apis/workflow/v1alpha1/generated.pb.go @@ -227,10 +227,38 @@ func (m *ArtifactoryAuth) XXX_DiscardUnknown() { var xxx_messageInfo_ArtifactoryAuth proto.InternalMessageInfo +func (m *Backoff) Reset() { *m = Backoff{} } +func (*Backoff) ProtoMessage() {} +func (*Backoff) Descriptor() ([]byte, []int) { + return fileDescriptor_c23edafa7e7ea072, []int{7} +} +func (m *Backoff) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Backoff) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *Backoff) XXX_Merge(src proto.Message) { + xxx_messageInfo_Backoff.Merge(m, src) +} +func (m *Backoff) XXX_Size() int { + return m.Size() +} +func (m *Backoff) XXX_DiscardUnknown() { + xxx_messageInfo_Backoff.DiscardUnknown(m) +} + +var xxx_messageInfo_Backoff proto.InternalMessageInfo + func (m *ContinueOn) Reset() { *m = ContinueOn{} } func (*ContinueOn) ProtoMessage() {} func (*ContinueOn) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{7} + return fileDescriptor_c23edafa7e7ea072, []int{8} } func (m *ContinueOn) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -258,7 +286,7 @@ var xxx_messageInfo_ContinueOn proto.InternalMessageInfo func (m *DAGTask) Reset() { *m = DAGTask{} } func (*DAGTask) ProtoMessage() {} func (*DAGTask) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{8} + return fileDescriptor_c23edafa7e7ea072, []int{9} } func (m *DAGTask) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -286,7 +314,7 @@ var xxx_messageInfo_DAGTask proto.InternalMessageInfo func (m *DAGTemplate) Reset() { *m = DAGTemplate{} } func (*DAGTemplate) ProtoMessage() {} func (*DAGTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{9} + return fileDescriptor_c23edafa7e7ea072, []int{10} } func (m *DAGTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -314,7 +342,7 @@ var xxx_messageInfo_DAGTemplate proto.InternalMessageInfo func (m *ExecutorConfig) Reset() { *m = ExecutorConfig{} } func (*ExecutorConfig) ProtoMessage() {} func (*ExecutorConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{10} + return fileDescriptor_c23edafa7e7ea072, []int{11} } func (m *ExecutorConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -342,7 +370,7 @@ var xxx_messageInfo_ExecutorConfig proto.InternalMessageInfo func (m *GitArtifact) Reset() { *m = GitArtifact{} } func (*GitArtifact) ProtoMessage() {} func (*GitArtifact) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{11} + return fileDescriptor_c23edafa7e7ea072, []int{12} } func (m *GitArtifact) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -370,7 +398,7 @@ var xxx_messageInfo_GitArtifact proto.InternalMessageInfo func (m *HDFSArtifact) Reset() { *m = HDFSArtifact{} } func (*HDFSArtifact) ProtoMessage() {} func (*HDFSArtifact) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{12} + return fileDescriptor_c23edafa7e7ea072, []int{13} } func (m *HDFSArtifact) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -398,7 +426,7 @@ var xxx_messageInfo_HDFSArtifact proto.InternalMessageInfo func (m *HDFSConfig) Reset() { *m = HDFSConfig{} } func (*HDFSConfig) ProtoMessage() {} func (*HDFSConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{13} + return fileDescriptor_c23edafa7e7ea072, []int{14} } func (m *HDFSConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -426,7 +454,7 @@ var xxx_messageInfo_HDFSConfig proto.InternalMessageInfo func (m *HDFSKrbConfig) Reset() { *m = HDFSKrbConfig{} } func (*HDFSKrbConfig) ProtoMessage() {} func (*HDFSKrbConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{14} + return fileDescriptor_c23edafa7e7ea072, []int{15} } func (m *HDFSKrbConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -454,7 +482,7 @@ var xxx_messageInfo_HDFSKrbConfig proto.InternalMessageInfo func (m *HTTPArtifact) Reset() { *m = HTTPArtifact{} } func (*HTTPArtifact) ProtoMessage() {} func (*HTTPArtifact) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{15} + return fileDescriptor_c23edafa7e7ea072, []int{16} } func (m *HTTPArtifact) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -482,7 +510,7 @@ var xxx_messageInfo_HTTPArtifact proto.InternalMessageInfo func (m *Inputs) Reset() { *m = Inputs{} } func (*Inputs) ProtoMessage() {} func (*Inputs) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{16} + return fileDescriptor_c23edafa7e7ea072, []int{17} } func (m *Inputs) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -510,7 +538,7 @@ var xxx_messageInfo_Inputs proto.InternalMessageInfo func (m *Item) Reset() { *m = Item{} } func (*Item) ProtoMessage() {} func (*Item) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{17} + return fileDescriptor_c23edafa7e7ea072, []int{18} } func (m *Item) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -538,7 +566,7 @@ var xxx_messageInfo_Item proto.InternalMessageInfo func (m *ItemValue) Reset() { *m = ItemValue{} } func (*ItemValue) ProtoMessage() {} func (*ItemValue) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{18} + return fileDescriptor_c23edafa7e7ea072, []int{19} } func (m *ItemValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -566,7 +594,7 @@ var xxx_messageInfo_ItemValue proto.InternalMessageInfo func (m *Metadata) Reset() { *m = Metadata{} } func (*Metadata) ProtoMessage() {} func (*Metadata) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{19} + return fileDescriptor_c23edafa7e7ea072, []int{20} } func (m *Metadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -594,7 +622,7 @@ var xxx_messageInfo_Metadata proto.InternalMessageInfo func (m *NodeStatus) Reset() { *m = NodeStatus{} } func (*NodeStatus) ProtoMessage() {} func (*NodeStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{20} + return fileDescriptor_c23edafa7e7ea072, []int{21} } func (m *NodeStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -622,7 +650,7 @@ var xxx_messageInfo_NodeStatus proto.InternalMessageInfo func (m *NoneStrategy) Reset() { *m = NoneStrategy{} } func (*NoneStrategy) ProtoMessage() {} func (*NoneStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{21} + return fileDescriptor_c23edafa7e7ea072, []int{22} } func (m *NoneStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -650,7 +678,7 @@ var xxx_messageInfo_NoneStrategy proto.InternalMessageInfo func (m *Outputs) Reset() { *m = Outputs{} } func (*Outputs) ProtoMessage() {} func (*Outputs) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{22} + return fileDescriptor_c23edafa7e7ea072, []int{23} } func (m *Outputs) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -678,7 +706,7 @@ var xxx_messageInfo_Outputs proto.InternalMessageInfo func (m *ParallelSteps) Reset() { *m = ParallelSteps{} } func (*ParallelSteps) ProtoMessage() {} func (*ParallelSteps) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{23} + return fileDescriptor_c23edafa7e7ea072, []int{24} } func (m *ParallelSteps) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -706,7 +734,7 @@ var xxx_messageInfo_ParallelSteps proto.InternalMessageInfo func (m *Parameter) Reset() { *m = Parameter{} } func (*Parameter) ProtoMessage() {} func (*Parameter) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{24} + return fileDescriptor_c23edafa7e7ea072, []int{25} } func (m *Parameter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -734,7 +762,7 @@ var xxx_messageInfo_Parameter proto.InternalMessageInfo func (m *PodGC) Reset() { *m = PodGC{} } func (*PodGC) ProtoMessage() {} func (*PodGC) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{25} + return fileDescriptor_c23edafa7e7ea072, []int{26} } func (m *PodGC) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -762,7 +790,7 @@ var xxx_messageInfo_PodGC proto.InternalMessageInfo func (m *RawArtifact) Reset() { *m = RawArtifact{} } func (*RawArtifact) ProtoMessage() {} func (*RawArtifact) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{26} + return fileDescriptor_c23edafa7e7ea072, []int{27} } func (m *RawArtifact) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -790,7 +818,7 @@ var xxx_messageInfo_RawArtifact proto.InternalMessageInfo func (m *ResourceTemplate) Reset() { *m = ResourceTemplate{} } func (*ResourceTemplate) ProtoMessage() {} func (*ResourceTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{27} + return fileDescriptor_c23edafa7e7ea072, []int{28} } func (m *ResourceTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -818,7 +846,7 @@ var xxx_messageInfo_ResourceTemplate proto.InternalMessageInfo func (m *RetryStrategy) Reset() { *m = RetryStrategy{} } func (*RetryStrategy) ProtoMessage() {} func (*RetryStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{28} + return fileDescriptor_c23edafa7e7ea072, []int{29} } func (m *RetryStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -846,7 +874,7 @@ var xxx_messageInfo_RetryStrategy proto.InternalMessageInfo func (m *S3Artifact) Reset() { *m = S3Artifact{} } func (*S3Artifact) ProtoMessage() {} func (*S3Artifact) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{29} + return fileDescriptor_c23edafa7e7ea072, []int{30} } func (m *S3Artifact) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -874,7 +902,7 @@ var xxx_messageInfo_S3Artifact proto.InternalMessageInfo func (m *S3Bucket) Reset() { *m = S3Bucket{} } func (*S3Bucket) ProtoMessage() {} func (*S3Bucket) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{30} + return fileDescriptor_c23edafa7e7ea072, []int{31} } func (m *S3Bucket) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -902,7 +930,7 @@ var xxx_messageInfo_S3Bucket proto.InternalMessageInfo func (m *ScriptTemplate) Reset() { *m = ScriptTemplate{} } func (*ScriptTemplate) ProtoMessage() {} func (*ScriptTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{31} + return fileDescriptor_c23edafa7e7ea072, []int{32} } func (m *ScriptTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -930,7 +958,7 @@ var xxx_messageInfo_ScriptTemplate proto.InternalMessageInfo func (m *Sequence) Reset() { *m = Sequence{} } func (*Sequence) ProtoMessage() {} func (*Sequence) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{32} + return fileDescriptor_c23edafa7e7ea072, []int{33} } func (m *Sequence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -958,7 +986,7 @@ var xxx_messageInfo_Sequence proto.InternalMessageInfo func (m *SuspendTemplate) Reset() { *m = SuspendTemplate{} } func (*SuspendTemplate) ProtoMessage() {} func (*SuspendTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{33} + return fileDescriptor_c23edafa7e7ea072, []int{34} } func (m *SuspendTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -986,7 +1014,7 @@ var xxx_messageInfo_SuspendTemplate proto.InternalMessageInfo func (m *TarStrategy) Reset() { *m = TarStrategy{} } func (*TarStrategy) ProtoMessage() {} func (*TarStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{34} + return fileDescriptor_c23edafa7e7ea072, []int{35} } func (m *TarStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1014,7 +1042,7 @@ var xxx_messageInfo_TarStrategy proto.InternalMessageInfo func (m *Template) Reset() { *m = Template{} } func (*Template) ProtoMessage() {} func (*Template) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{35} + return fileDescriptor_c23edafa7e7ea072, []int{36} } func (m *Template) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1042,7 +1070,7 @@ var xxx_messageInfo_Template proto.InternalMessageInfo func (m *TemplateRef) Reset() { *m = TemplateRef{} } func (*TemplateRef) ProtoMessage() {} func (*TemplateRef) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{36} + return fileDescriptor_c23edafa7e7ea072, []int{37} } func (m *TemplateRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1070,7 +1098,7 @@ var xxx_messageInfo_TemplateRef proto.InternalMessageInfo func (m *UserContainer) Reset() { *m = UserContainer{} } func (*UserContainer) ProtoMessage() {} func (*UserContainer) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{37} + return fileDescriptor_c23edafa7e7ea072, []int{38} } func (m *UserContainer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1098,7 +1126,7 @@ var xxx_messageInfo_UserContainer proto.InternalMessageInfo func (m *ValueFrom) Reset() { *m = ValueFrom{} } func (*ValueFrom) ProtoMessage() {} func (*ValueFrom) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{38} + return fileDescriptor_c23edafa7e7ea072, []int{39} } func (m *ValueFrom) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1126,7 +1154,7 @@ var xxx_messageInfo_ValueFrom proto.InternalMessageInfo func (m *Workflow) Reset() { *m = Workflow{} } func (*Workflow) ProtoMessage() {} func (*Workflow) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{39} + return fileDescriptor_c23edafa7e7ea072, []int{40} } func (m *Workflow) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1154,7 +1182,7 @@ var xxx_messageInfo_Workflow proto.InternalMessageInfo func (m *WorkflowList) Reset() { *m = WorkflowList{} } func (*WorkflowList) ProtoMessage() {} func (*WorkflowList) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{40} + return fileDescriptor_c23edafa7e7ea072, []int{41} } func (m *WorkflowList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1182,7 +1210,7 @@ var xxx_messageInfo_WorkflowList proto.InternalMessageInfo func (m *WorkflowSpec) Reset() { *m = WorkflowSpec{} } func (*WorkflowSpec) ProtoMessage() {} func (*WorkflowSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{41} + return fileDescriptor_c23edafa7e7ea072, []int{42} } func (m *WorkflowSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1210,7 +1238,7 @@ var xxx_messageInfo_WorkflowSpec proto.InternalMessageInfo func (m *WorkflowStatus) Reset() { *m = WorkflowStatus{} } func (*WorkflowStatus) ProtoMessage() {} func (*WorkflowStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{42} + return fileDescriptor_c23edafa7e7ea072, []int{43} } func (m *WorkflowStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1238,7 +1266,7 @@ var xxx_messageInfo_WorkflowStatus proto.InternalMessageInfo func (m *WorkflowStep) Reset() { *m = WorkflowStep{} } func (*WorkflowStep) ProtoMessage() {} func (*WorkflowStep) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{43} + return fileDescriptor_c23edafa7e7ea072, []int{44} } func (m *WorkflowStep) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1266,7 +1294,7 @@ var xxx_messageInfo_WorkflowStep proto.InternalMessageInfo func (m *WorkflowTemplate) Reset() { *m = WorkflowTemplate{} } func (*WorkflowTemplate) ProtoMessage() {} func (*WorkflowTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{44} + return fileDescriptor_c23edafa7e7ea072, []int{45} } func (m *WorkflowTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1294,7 +1322,7 @@ var xxx_messageInfo_WorkflowTemplate proto.InternalMessageInfo func (m *WorkflowTemplateList) Reset() { *m = WorkflowTemplateList{} } func (*WorkflowTemplateList) ProtoMessage() {} func (*WorkflowTemplateList) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{45} + return fileDescriptor_c23edafa7e7ea072, []int{46} } func (m *WorkflowTemplateList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1322,7 +1350,7 @@ var xxx_messageInfo_WorkflowTemplateList proto.InternalMessageInfo func (m *WorkflowTemplateSpec) Reset() { *m = WorkflowTemplateSpec{} } func (*WorkflowTemplateSpec) ProtoMessage() {} func (*WorkflowTemplateSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_c23edafa7e7ea072, []int{46} + return fileDescriptor_c23edafa7e7ea072, []int{47} } func (m *WorkflowTemplateSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1355,6 +1383,7 @@ func init() { proto.RegisterType((*ArtifactRepositoryRef)(nil), "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.ArtifactRepositoryRef") proto.RegisterType((*ArtifactoryArtifact)(nil), "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.ArtifactoryArtifact") proto.RegisterType((*ArtifactoryAuth)(nil), "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.ArtifactoryAuth") + proto.RegisterType((*Backoff)(nil), "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.Backoff") proto.RegisterType((*ContinueOn)(nil), "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.ContinueOn") proto.RegisterType((*DAGTask)(nil), "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.DAGTask") proto.RegisterType((*DAGTemplate)(nil), "github.com.argoproj.argo.pkg.apis.workflow.v1alpha1.DAGTemplate") @@ -1410,301 +1439,306 @@ func init() { } var fileDescriptor_c23edafa7e7ea072 = []byte{ - // 4690 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5c, 0x4d, 0x6c, 0x1c, 0x47, - 0x76, 0xd6, 0x90, 0x9c, 0xe1, 0xcc, 0x1b, 0xfe, 0xa9, 0x24, 0x59, 0x6d, 0x5a, 0xe6, 0x68, 0xdb, - 0xb0, 0xa3, 0x4d, 0xec, 0xe1, 0x5a, 0xda, 0x4d, 0xbc, 0xde, 0xd8, 0x5e, 0x0e, 0x87, 0x94, 0xa8, - 0x1f, 0x8a, 0x79, 0x43, 0xc9, 0xd9, 0x78, 0x91, 0x4d, 0xb3, 0xbb, 0x38, 0xd3, 0xe2, 0x4c, 0x77, - 0xbb, 0xaa, 0x87, 0x34, 0xe1, 0x43, 0x9c, 0x20, 0x41, 0x12, 0x04, 0x0b, 0x24, 0x97, 0x64, 0x91, - 0xbd, 0x04, 0x39, 0x24, 0x97, 0x5c, 0x72, 0x0d, 0x82, 0x0d, 0x10, 0xe4, 0x60, 0xe4, 0x12, 0xdf, - 0xe2, 0x43, 0x40, 0xac, 0x99, 0x4b, 0x82, 0x04, 0x08, 0x90, 0x4b, 0x00, 0x9d, 0x82, 0xaa, 0xae, - 0xae, 0xfe, 0x99, 0xa1, 0x45, 0xcd, 0x50, 0x0a, 0x16, 0xbb, 0x27, 0xb1, 0xdf, 0x7b, 0xf5, 0xbd, - 0xfa, 0x79, 0xf5, 0xea, 0xbd, 0x57, 0x35, 0x82, 0xd5, 0xb6, 0x1b, 0x76, 0xfa, 0x3b, 0x75, 0xdb, - 0xef, 0x2d, 0x5b, 0xac, 0xed, 0x07, 0xcc, 0x7f, 0x24, 0xff, 0x58, 0x0e, 0xf6, 0xda, 0xcb, 0x56, - 0xe0, 0xf2, 0xe5, 0x03, 0x9f, 0xed, 0xed, 0x76, 0xfd, 0x83, 0xe5, 0xfd, 0x37, 0xad, 0x6e, 0xd0, - 0xb1, 0xde, 0x5c, 0x6e, 0x53, 0x8f, 0x32, 0x2b, 0xa4, 0x4e, 0x3d, 0x60, 0x7e, 0xe8, 0x93, 0x1b, - 0x09, 0x48, 0x3d, 0x06, 0x91, 0x7f, 0xd4, 0x83, 0xbd, 0x76, 0x5d, 0x80, 0xd4, 0x63, 0x90, 0x7a, - 0x0c, 0xb2, 0xf8, 0x46, 0x4a, 0x73, 0xdb, 0x17, 0x0a, 0x05, 0xd6, 0x4e, 0x7f, 0x57, 0x7e, 0xc9, - 0x0f, 0xf9, 0x57, 0xa4, 0x63, 0xd1, 0xdc, 0x7b, 0x8b, 0xd7, 0x5d, 0x5f, 0x74, 0x69, 0xd9, 0xf6, - 0x19, 0x5d, 0xde, 0x1f, 0xe8, 0xc7, 0xe2, 0xd7, 0x13, 0x99, 0x9e, 0x65, 0x77, 0x5c, 0x8f, 0xb2, - 0xc3, 0x64, 0x1c, 0x3d, 0x1a, 0x5a, 0xc3, 0x5a, 0x2d, 0x9f, 0xd4, 0x8a, 0xf5, 0xbd, 0xd0, 0xed, - 0xd1, 0x81, 0x06, 0xbf, 0xf8, 0xa4, 0x06, 0xdc, 0xee, 0xd0, 0x9e, 0x95, 0x6f, 0x67, 0xfe, 0x73, - 0x01, 0xe6, 0x57, 0x98, 0xdd, 0x71, 0xf7, 0x69, 0x2b, 0x14, 0x8c, 0xf6, 0x21, 0xf9, 0x00, 0x26, - 0x43, 0x8b, 0x19, 0x85, 0xab, 0x85, 0x6b, 0xd5, 0xeb, 0xdf, 0xae, 0x8f, 0x30, 0x91, 0xf5, 0x6d, - 0x8b, 0xc5, 0x70, 0x8d, 0xe9, 0xe3, 0xa3, 0xda, 0xe4, 0xb6, 0xc5, 0x50, 0xa0, 0x92, 0xef, 0xc1, - 0x94, 0xe7, 0x7b, 0xd4, 0x98, 0x90, 0xe8, 0x2b, 0x23, 0xa1, 0x6f, 0xfa, 0x9e, 0xee, 0x6d, 0xa3, - 0x7c, 0x7c, 0x54, 0x9b, 0x12, 0x14, 0x94, 0xc0, 0xe6, 0x7f, 0x17, 0xa0, 0xb2, 0xc2, 0xda, 0xfd, - 0x1e, 0xf5, 0x42, 0x4e, 0x18, 0x40, 0x60, 0x31, 0xab, 0x47, 0x43, 0xca, 0xb8, 0x51, 0xb8, 0x3a, - 0x79, 0xad, 0x7a, 0xfd, 0xdd, 0x91, 0x94, 0x6e, 0xc5, 0x30, 0x0d, 0xf2, 0xe9, 0x51, 0xed, 0xdc, - 0xf1, 0x51, 0x0d, 0x34, 0x89, 0x63, 0x4a, 0x0b, 0xf1, 0xa0, 0x62, 0xb1, 0xd0, 0xdd, 0xb5, 0xec, - 0x90, 0x1b, 0x13, 0x52, 0xe5, 0x3b, 0x23, 0xa9, 0x5c, 0x51, 0x28, 0x8d, 0xf3, 0x4a, 0x63, 0x25, - 0xa6, 0x70, 0x4c, 0x54, 0x98, 0xff, 0x39, 0x09, 0xe5, 0x98, 0x41, 0xae, 0xc2, 0x94, 0x67, 0xf5, - 0xa8, 0x5c, 0xbd, 0x4a, 0x63, 0x46, 0x35, 0x9c, 0xda, 0xb4, 0x7a, 0x62, 0x82, 0xac, 0x1e, 0x15, - 0x12, 0x81, 0x15, 0x76, 0xe4, 0x0a, 0xa4, 0x24, 0xb6, 0xac, 0xb0, 0x83, 0x92, 0x43, 0xae, 0xc0, - 0x54, 0xcf, 0x77, 0xa8, 0x31, 0x79, 0xb5, 0x70, 0xad, 0x18, 0x4d, 0xf0, 0x3d, 0xdf, 0xa1, 0x28, - 0xa9, 0xa2, 0xfd, 0x2e, 0xf3, 0x7b, 0xc6, 0x54, 0xb6, 0xfd, 0x3a, 0xf3, 0x7b, 0x28, 0x39, 0xe4, - 0x0f, 0x0b, 0xb0, 0x10, 0x77, 0xef, 0xae, 0x6f, 0x5b, 0xa1, 0xeb, 0x7b, 0x46, 0x51, 0x2e, 0xf8, - 0xda, 0x58, 0x13, 0x11, 0x83, 0x35, 0x0c, 0xa5, 0x75, 0x21, 0xcf, 0xc1, 0x01, 0xc5, 0xe4, 0x3a, - 0x40, 0xbb, 0xeb, 0xef, 0x58, 0x5d, 0x31, 0x07, 0x46, 0x49, 0xf6, 0x5a, 0x2f, 0xe1, 0x4d, 0xcd, - 0xc1, 0x94, 0x14, 0xd9, 0x83, 0x69, 0x2b, 0xda, 0x15, 0xc6, 0xb4, 0xec, 0x77, 0x73, 0xc4, 0x7e, - 0x67, 0x76, 0x56, 0xa3, 0x7a, 0x7c, 0x54, 0x9b, 0x56, 0x44, 0x8c, 0x35, 0x90, 0xd7, 0xa1, 0xec, - 0x07, 0xa2, 0xab, 0x56, 0xd7, 0x28, 0x5f, 0x2d, 0x5c, 0x2b, 0x37, 0x16, 0x54, 0xf7, 0xca, 0xf7, - 0x15, 0x1d, 0xb5, 0x84, 0xf9, 0xa7, 0x45, 0x18, 0x18, 0x35, 0x79, 0x13, 0xaa, 0x0a, 0xed, 0xae, - 0xdf, 0xe6, 0x72, 0xf1, 0xcb, 0x8d, 0xf9, 0xe3, 0xa3, 0x5a, 0x75, 0x25, 0x21, 0x63, 0x5a, 0x86, - 0xbc, 0x0f, 0x13, 0xfc, 0x86, 0xda, 0x86, 0xef, 0x8d, 0x34, 0xba, 0xd6, 0x0d, 0x6d, 0xa0, 0xa5, - 0xe3, 0xa3, 0xda, 0x44, 0xeb, 0x06, 0x4e, 0xf0, 0x1b, 0xc2, 0x7d, 0xb4, 0xdd, 0x50, 0x1a, 0xcf, - 0xa8, 0xee, 0xe3, 0xa6, 0x1b, 0x6a, 0x68, 0xe9, 0x3e, 0x6e, 0xba, 0x21, 0x0a, 0x54, 0xe1, 0x3e, - 0x3a, 0x61, 0x18, 0x48, 0xe3, 0x1b, 0xd5, 0x7d, 0xdc, 0xda, 0xde, 0xde, 0xd2, 0xf0, 0xd2, 0xba, - 0x05, 0x05, 0x25, 0x30, 0xf9, 0x58, 0xcc, 0x64, 0xc4, 0xf3, 0xd9, 0xa1, 0xb2, 0xda, 0x5b, 0x63, - 0x59, 0xad, 0xcf, 0x0e, 0xb5, 0x3a, 0xb5, 0x26, 0x9a, 0x81, 0x69, 0x6d, 0x72, 0x74, 0xce, 0x2e, - 0x97, 0x46, 0x3a, 0xf2, 0xe8, 0x9a, 0xeb, 0xad, 0xdc, 0xe8, 0x9a, 0xeb, 0x2d, 0x94, 0xc0, 0x62, - 0x6d, 0x98, 0x75, 0xa0, 0x6c, 0x7a, 0xb4, 0xb5, 0x41, 0xeb, 0x20, 0xbb, 0x36, 0x68, 0x1d, 0xa0, - 0x40, 0x35, 0xdb, 0x70, 0x29, 0xe6, 0x20, 0x0d, 0x7c, 0xee, 0xca, 0x01, 0xd2, 0x5d, 0xb2, 0x0c, - 0x15, 0xdb, 0xf7, 0x76, 0xdd, 0xf6, 0x3d, 0x2b, 0x50, 0x8e, 0x49, 0x7b, 0xb4, 0xd5, 0x98, 0x81, - 0x89, 0x0c, 0x79, 0x19, 0x26, 0xf7, 0xe8, 0xa1, 0xf2, 0x50, 0x55, 0x25, 0x3a, 0x79, 0x87, 0x1e, - 0xa2, 0xa0, 0x9b, 0x3f, 0x2a, 0xc0, 0x85, 0x21, 0x93, 0x2b, 0x9a, 0xf5, 0x59, 0x57, 0x69, 0xd0, - 0xcd, 0x1e, 0xe0, 0x5d, 0x14, 0x74, 0xf2, 0x7b, 0x05, 0x98, 0x4f, 0xcd, 0xf6, 0x4a, 0x5f, 0x39, - 0xc1, 0xd1, 0x77, 0x77, 0x06, 0xab, 0x71, 0x59, 0x69, 0x9c, 0xcf, 0x31, 0x30, 0xaf, 0xd5, 0xfc, - 0x17, 0x79, 0xea, 0x66, 0x68, 0xc4, 0x82, 0xb9, 0x3e, 0xa7, 0x4c, 0xb8, 0xe8, 0x16, 0xb5, 0x19, - 0x0d, 0xd5, 0x01, 0xfc, 0x6a, 0x3d, 0x3a, 0xda, 0x45, 0x2f, 0xea, 0x22, 0xca, 0xa8, 0xef, 0xbf, - 0x59, 0x8f, 0x24, 0xee, 0xd0, 0xc3, 0x16, 0xed, 0x52, 0x81, 0xd1, 0x20, 0xc7, 0x47, 0xb5, 0xb9, - 0x07, 0x19, 0x00, 0xcc, 0x01, 0x0a, 0x15, 0x81, 0xc5, 0xf9, 0x81, 0xcf, 0x1c, 0xa5, 0x62, 0xe2, - 0xa9, 0x55, 0x6c, 0x65, 0x00, 0x30, 0x07, 0x68, 0x7e, 0x07, 0x60, 0xd5, 0xf7, 0x42, 0xd7, 0xeb, - 0xd3, 0xfb, 0x1e, 0x79, 0x05, 0x8a, 0x94, 0x31, 0x9f, 0x29, 0x87, 0x34, 0xab, 0x26, 0xa8, 0xb8, - 0x26, 0x88, 0x18, 0xf1, 0xc8, 0x6b, 0x50, 0xda, 0xb5, 0xdc, 0x2e, 0x75, 0x64, 0x6f, 0xca, 0x8d, - 0x39, 0x25, 0x55, 0x5a, 0x97, 0x54, 0x54, 0x5c, 0xf3, 0xcf, 0x4a, 0x30, 0xdd, 0x5c, 0xb9, 0xb9, - 0x6d, 0xf1, 0xbd, 0x53, 0x9c, 0x72, 0xaf, 0x43, 0x39, 0xa4, 0xbd, 0xa0, 0x6b, 0x85, 0x54, 0xd9, - 0x91, 0x76, 0xaa, 0xdb, 0x8a, 0x8e, 0x5a, 0x82, 0xf8, 0xe2, 0xc8, 0x56, 0x31, 0x83, 0xf2, 0x5c, - 0xef, 0x8e, 0x68, 0x13, 0x0a, 0x25, 0x7d, 0x66, 0x2b, 0x12, 0x26, 0x3a, 0x08, 0x87, 0x6a, 0xac, - 0x1c, 0xe9, 0xae, 0x72, 0x67, 0x23, 0xc6, 0x5a, 0x09, 0x4e, 0xe4, 0x5e, 0x52, 0x04, 0x4c, 0x6b, - 0x21, 0x5f, 0x87, 0x19, 0x87, 0x06, 0xd4, 0x73, 0xa8, 0x67, 0xbb, 0x94, 0x1b, 0xc5, 0xab, 0x93, - 0x62, 0x5e, 0x8e, 0x8f, 0x6a, 0x33, 0xcd, 0x14, 0x1d, 0x33, 0x52, 0xe4, 0x11, 0x54, 0x0e, 0xdc, - 0xb0, 0xb3, 0x11, 0xd2, 0x9e, 0xf0, 0x4c, 0x22, 0x9c, 0xf9, 0xe6, 0x48, 0x1d, 0x15, 0x08, 0xc9, - 0xb4, 0xbc, 0x1f, 0x63, 0x62, 0x02, 0x2f, 0x3c, 0x85, 0xf8, 0x90, 0x81, 0x95, 0xf4, 0x52, 0x95, - 0x6c, 0x03, 0xc9, 0xc0, 0x44, 0x86, 0x70, 0x98, 0x11, 0x1f, 0x2d, 0xfa, 0x61, 0x9f, 0x7a, 0x36, - 0x95, 0xe7, 0xe7, 0xa8, 0xe1, 0x56, 0x0c, 0x12, 0xcd, 0xc8, 0xfb, 0x29, 0x58, 0xcc, 0x28, 0x11, - 0xd6, 0x77, 0xd0, 0xa1, 0x9e, 0x51, 0xc9, 0x5a, 0xdf, 0xfb, 0x1d, 0xea, 0xa1, 0xe4, 0x10, 0x1f, - 0xc0, 0xd6, 0xdb, 0xc0, 0x80, 0x31, 0x0e, 0xd9, 0x64, 0x37, 0x35, 0xe6, 0x44, 0xc0, 0x92, 0x7c, - 0x63, 0x4a, 0x85, 0xf9, 0x0f, 0x05, 0xa8, 0x8a, 0xcd, 0x11, 0x1b, 0xf4, 0x6b, 0x50, 0x0a, 0x2d, - 0xd6, 0x56, 0x5e, 0xa4, 0x92, 0x6c, 0xaa, 0x6d, 0x49, 0x45, 0xc5, 0x25, 0x16, 0x14, 0x43, 0x8b, - 0xef, 0xc5, 0x71, 0xea, 0x2f, 0x8f, 0xd4, 0x47, 0xb5, 0x2b, 0x93, 0xfd, 0x2d, 0xbe, 0x38, 0x46, - 0xc8, 0xe4, 0x1a, 0x94, 0xc5, 0x0e, 0x5e, 0xb7, 0x78, 0x14, 0x14, 0x94, 0x1b, 0x33, 0x62, 0x17, - 0xae, 0x2b, 0x1a, 0x6a, 0xae, 0xf9, 0x5d, 0x98, 0x5b, 0xfb, 0x88, 0xda, 0xfd, 0xd0, 0x67, 0xd1, - 0xb1, 0x40, 0x6e, 0x03, 0xe1, 0x94, 0xed, 0xbb, 0x36, 0x5d, 0xb1, 0x6d, 0xbf, 0xef, 0x85, 0x9b, - 0xc9, 0xae, 0x5f, 0x54, 0xda, 0x48, 0x6b, 0x40, 0x02, 0x87, 0xb4, 0x32, 0xff, 0x7a, 0x0a, 0xaa, - 0xa9, 0xc0, 0x42, 0xac, 0x22, 0xa3, 0x81, 0x9f, 0xf7, 0x21, 0xe2, 0xe8, 0x42, 0xc9, 0x11, 0x3e, - 0x84, 0xd1, 0x7d, 0x97, 0x8b, 0xf0, 0x35, 0xe7, 0x43, 0x50, 0xd1, 0x51, 0x4b, 0x90, 0x1a, 0x14, - 0x1d, 0x1a, 0x84, 0x1d, 0x39, 0xc8, 0xa9, 0x46, 0x45, 0x4c, 0x44, 0x53, 0x10, 0x30, 0xa2, 0x0b, - 0x81, 0x5d, 0x1a, 0xda, 0x1d, 0x63, 0x4a, 0xee, 0x3b, 0x29, 0xb0, 0x2e, 0x08, 0x18, 0xd1, 0x87, - 0x1c, 0x01, 0xc5, 0x67, 0x7f, 0x04, 0x94, 0xce, 0xf8, 0x08, 0x20, 0x01, 0x5c, 0xe0, 0xbc, 0xb3, - 0xc5, 0xdc, 0x7d, 0x2b, 0xa4, 0xb2, 0xb1, 0xd4, 0x33, 0xfd, 0x34, 0x7a, 0x2e, 0x1f, 0x1f, 0xd5, - 0x2e, 0xb4, 0x5a, 0xb7, 0xf2, 0x28, 0x38, 0x0c, 0x9a, 0xb4, 0xe0, 0x92, 0xeb, 0x71, 0x6a, 0xf7, - 0x19, 0xdd, 0x68, 0x7b, 0x3e, 0xa3, 0xb7, 0x7c, 0x2e, 0xe0, 0x54, 0x34, 0xfd, 0xb2, 0x5a, 0xb4, - 0x4b, 0x1b, 0xc3, 0x84, 0x70, 0x78, 0x5b, 0xf3, 0x9f, 0x0a, 0x30, 0x93, 0x8e, 0xa5, 0x08, 0x07, - 0xe8, 0x34, 0xd7, 0x5b, 0x91, 0x65, 0xaa, 0xc3, 0xf9, 0xbd, 0x91, 0x43, 0xb4, 0x08, 0x26, 0x49, - 0x44, 0x12, 0x1a, 0xa6, 0xd4, 0x9c, 0x22, 0x59, 0x7b, 0x05, 0x8a, 0xbb, 0x3e, 0xb3, 0xa9, 0xda, - 0x5b, 0x7a, 0x0f, 0xae, 0x0b, 0x22, 0x46, 0x3c, 0xf3, 0xdf, 0x0b, 0x90, 0xd2, 0x40, 0x7e, 0x13, - 0x66, 0x85, 0x8e, 0x3b, 0x6c, 0x27, 0x33, 0x9a, 0xc6, 0xc8, 0xa3, 0xd1, 0x48, 0x8d, 0x4b, 0x4a, - 0xff, 0x6c, 0x86, 0x8c, 0x59, 0x7d, 0xe4, 0x17, 0xa0, 0x62, 0x39, 0x0e, 0xa3, 0x9c, 0xd3, 0xc8, - 0xf5, 0x54, 0x1a, 0xb3, 0xf2, 0xac, 0x8c, 0x89, 0x98, 0xf0, 0xc5, 0x36, 0x14, 0xc1, 0xab, 0xb0, - 0x6c, 0x39, 0xc8, 0xd4, 0x36, 0x14, 0x4a, 0x04, 0x1d, 0xb5, 0x84, 0xf9, 0xfd, 0x29, 0xc8, 0xea, - 0x26, 0x0e, 0xcc, 0xef, 0xb1, 0x9d, 0xd5, 0x55, 0xcb, 0xee, 0x8c, 0x14, 0x5a, 0x5d, 0x10, 0x31, - 0xdd, 0x9d, 0x2c, 0x02, 0xe6, 0x21, 0x95, 0x96, 0x3b, 0xf4, 0x30, 0xb4, 0x76, 0x46, 0x89, 0xae, - 0x62, 0x2d, 0x69, 0x04, 0xcc, 0x43, 0x92, 0x6f, 0x40, 0x75, 0x8f, 0xed, 0xc4, 0x9b, 0x5c, 0x4d, - 0xc7, 0x05, 0x35, 0x1d, 0xd5, 0x3b, 0x09, 0x0b, 0xd3, 0x72, 0x62, 0x0a, 0xf7, 0xd8, 0x0e, 0x52, - 0xab, 0x1b, 0xe7, 0xed, 0x7a, 0x0a, 0xef, 0x28, 0x3a, 0x6a, 0x09, 0x12, 0x00, 0xd9, 0x8b, 0x67, - 0x4f, 0xc7, 0xe7, 0xca, 0x17, 0x5d, 0x1b, 0x36, 0x1a, 0x2d, 0x94, 0x1e, 0xd0, 0x0b, 0xc2, 0x37, - 0xdf, 0x19, 0xc0, 0xc1, 0x21, 0xd8, 0xe4, 0x3b, 0x70, 0x79, 0x8f, 0xed, 0x28, 0x47, 0xbe, 0xc5, - 0x5c, 0xcf, 0x76, 0x83, 0x4c, 0xc2, 0x5e, 0x53, 0xdd, 0xbd, 0x7c, 0x67, 0xb8, 0x18, 0x9e, 0xd4, - 0xde, 0x7c, 0x03, 0x66, 0xd2, 0x09, 0xdf, 0x13, 0x92, 0x04, 0xf3, 0xbf, 0x0a, 0x50, 0xda, 0xf0, - 0x82, 0xfe, 0x4f, 0x49, 0xed, 0xe8, 0x2f, 0xa6, 0x60, 0x4a, 0x84, 0x5e, 0xe4, 0x1a, 0x4c, 0x85, - 0x87, 0x41, 0x74, 0xb6, 0x4e, 0x36, 0x2e, 0xc6, 0x8e, 0x66, 0xfb, 0x30, 0xa0, 0x8f, 0xd5, 0xbf, - 0x28, 0x25, 0xc8, 0xbb, 0x50, 0xf2, 0xfa, 0xbd, 0x87, 0x56, 0x57, 0x39, 0xa5, 0xd7, 0xe2, 0xd0, - 0x62, 0x53, 0x52, 0x1f, 0x1f, 0xd5, 0x2e, 0x52, 0xcf, 0xf6, 0x1d, 0xd7, 0x6b, 0x2f, 0x3f, 0xe2, - 0xbe, 0x57, 0xdf, 0xec, 0xf7, 0x76, 0x28, 0x43, 0xd5, 0x8a, 0x7c, 0x15, 0xa6, 0x77, 0x7c, 0xbf, - 0x2b, 0x00, 0x22, 0x97, 0x35, 0xaf, 0x00, 0xa6, 0x1b, 0x11, 0x19, 0x63, 0xbe, 0x88, 0x62, 0x78, - 0xc8, 0x84, 0xe4, 0x54, 0x36, 0x8a, 0x69, 0x49, 0x2a, 0x2a, 0x2e, 0xe9, 0x41, 0xa9, 0x67, 0x05, - 0x42, 0xae, 0x28, 0xa7, 0x6c, 0x6d, 0xe4, 0xf8, 0xb4, 0x7e, 0x4f, 0xe2, 0xac, 0x79, 0x21, 0x3b, - 0x4c, 0xd4, 0x45, 0x44, 0x54, 0x4a, 0x88, 0x0b, 0xd3, 0x5d, 0x97, 0x87, 0x42, 0x5f, 0x69, 0x0c, - 0xab, 0x10, 0xfa, 0x1e, 0x5a, 0xdd, 0x3e, 0x4d, 0x66, 0xe0, 0x6e, 0x04, 0x8b, 0x31, 0xfe, 0xe2, - 0x21, 0x54, 0x53, 0x3d, 0x22, 0x0b, 0x51, 0x62, 0x2c, 0x8d, 0x57, 0xe6, 0xc2, 0x64, 0x1b, 0x8a, - 0xfb, 0x02, 0x43, 0x39, 0x9b, 0x31, 0x7b, 0x82, 0x11, 0xd8, 0xdb, 0x13, 0x6f, 0x15, 0xde, 0x2e, - 0xff, 0xe0, 0xcf, 0x6b, 0xe7, 0x3e, 0xf9, 0xd7, 0xab, 0xe7, 0xcc, 0x7f, 0x9c, 0x84, 0x8a, 0x16, - 0xf9, 0xc9, 0xb6, 0x14, 0x96, 0xb3, 0x94, 0xdb, 0xe3, 0xcd, 0xd7, 0xa9, 0xcc, 0x65, 0x25, 0x6b, - 0x2e, 0x33, 0x8d, 0x9f, 0x4b, 0x2d, 0xf5, 0xe3, 0xa3, 0x9a, 0x91, 0x9d, 0x04, 0xb4, 0x0e, 0xee, - 0x51, 0xce, 0xad, 0x36, 0x4d, 0xcc, 0xe0, 0x9b, 0x4f, 0x32, 0x83, 0x8b, 0x69, 0x33, 0xa8, 0x0c, - 0x5f, 0xc6, 0x4f, 0x26, 0xa1, 0x7c, 0x8f, 0x86, 0x96, 0x63, 0x85, 0x16, 0xf9, 0xdd, 0x02, 0x54, - 0x2d, 0xcf, 0xf3, 0x43, 0x59, 0x40, 0x8c, 0xdd, 0xdb, 0xe6, 0x48, 0xd3, 0x11, 0x83, 0xd6, 0x57, - 0x12, 0xc0, 0x68, 0x4a, 0xf4, 0xc9, 0x94, 0xe2, 0x60, 0x5a, 0x2f, 0xf9, 0x10, 0x4a, 0x5d, 0x6b, - 0x87, 0x76, 0x63, 0x6f, 0xb7, 0x31, 0x5e, 0x0f, 0xee, 0x4a, 0xac, 0xdc, 0x7a, 0x44, 0x44, 0x54, - 0x8a, 0x16, 0xdf, 0x85, 0x85, 0x7c, 0x47, 0x9f, 0x66, 0x46, 0xc5, 0x62, 0xa4, 0xd4, 0x3c, 0x4d, - 0x53, 0xf3, 0xef, 0x2a, 0x00, 0x9b, 0xbe, 0x43, 0x5b, 0xa1, 0x15, 0xf6, 0x39, 0x59, 0x84, 0x09, - 0xd7, 0x51, 0x47, 0x11, 0xa8, 0xde, 0x4e, 0x6c, 0x34, 0x71, 0xc2, 0x75, 0x74, 0x89, 0x63, 0xe2, - 0xc4, 0x12, 0xc7, 0x37, 0xa0, 0xea, 0xb8, 0x3c, 0xe8, 0x5a, 0x87, 0x9b, 0x43, 0x62, 0x81, 0x66, - 0xc2, 0xc2, 0xb4, 0x1c, 0x79, 0x5d, 0xed, 0xdf, 0x68, 0xa3, 0x18, 0xb9, 0xfd, 0x5b, 0x16, 0xdd, - 0x4b, 0xed, 0xe1, 0xb7, 0x60, 0x26, 0x2e, 0x21, 0x48, 0x2d, 0x45, 0xd9, 0x2a, 0xde, 0xf5, 0x33, - 0xdb, 0x29, 0x1e, 0x66, 0x24, 0xf3, 0x25, 0x8e, 0xd2, 0x73, 0x29, 0x71, 0x34, 0x61, 0x81, 0x87, - 0x3e, 0xa3, 0x4e, 0x2c, 0xb1, 0xd1, 0x34, 0x48, 0x66, 0xa0, 0x0b, 0xad, 0x1c, 0x1f, 0x07, 0x5a, - 0x90, 0x2d, 0xb8, 0x18, 0x77, 0x22, 0x3d, 0x40, 0xe3, 0x82, 0x44, 0xba, 0xa2, 0x90, 0x2e, 0xbe, - 0x3f, 0x44, 0x06, 0x87, 0xb6, 0x24, 0x5f, 0x83, 0x62, 0xd0, 0xb1, 0x38, 0x55, 0x45, 0x8d, 0x38, - 0x77, 0x2d, 0x6e, 0x09, 0xe2, 0xe3, 0xa3, 0x5a, 0x45, 0x4c, 0xbb, 0xfc, 0xc0, 0x48, 0x90, 0x5c, - 0x07, 0xd8, 0xf1, 0xfb, 0x9e, 0x63, 0xb1, 0xc3, 0x8d, 0xa6, 0xcc, 0x64, 0x52, 0xd7, 0x16, 0x0d, - 0xcd, 0xc1, 0x94, 0x94, 0x70, 0x98, 0xbd, 0xc8, 0x75, 0xa8, 0xda, 0x84, 0x76, 0x98, 0xda, 0xa3, - 0x28, 0x3e, 0xf9, 0x00, 0x2a, 0x3c, 0xb4, 0x58, 0x48, 0x9d, 0x95, 0x50, 0x15, 0x28, 0x7e, 0x3e, - 0x15, 0xda, 0xe9, 0x4b, 0xc4, 0x64, 0x59, 0x7a, 0x34, 0xb4, 0x44, 0xb0, 0xb7, 0xed, 0xf6, 0x68, - 0x12, 0x55, 0xb4, 0x62, 0x10, 0x4c, 0xf0, 0xc8, 0xaf, 0x03, 0xec, 0xba, 0x9e, 0xcb, 0x3b, 0x12, - 0xbd, 0xfa, 0xd4, 0xe8, 0x7a, 0x9c, 0xeb, 0x1a, 0x05, 0x53, 0x88, 0x22, 0xe7, 0x09, 0x7c, 0x67, - 0x63, 0xcb, 0x98, 0x91, 0xa3, 0xd4, 0x39, 0xcf, 0x96, 0x20, 0x62, 0xc4, 0x23, 0xd7, 0xa0, 0xec, - 0x58, 0xb4, 0xe7, 0x7b, 0xd4, 0x31, 0x66, 0x93, 0xba, 0x43, 0x53, 0xd1, 0x50, 0x73, 0xc9, 0xf7, - 0xa0, 0xe4, 0xca, 0x90, 0xcf, 0x98, 0x93, 0x5d, 0xfd, 0xd6, 0x68, 0x87, 0x82, 0x84, 0x68, 0x80, - 0xf0, 0x38, 0xd1, 0xdf, 0xa8, 0x60, 0x89, 0x0d, 0xd3, 0x7e, 0x3f, 0x94, 0x1a, 0xe6, 0xa5, 0x86, - 0xd1, 0xea, 0x2c, 0xf7, 0x23, 0x8c, 0xe8, 0x1a, 0x49, 0x7d, 0x60, 0x8c, 0x2c, 0xc6, 0x6b, 0x77, - 0xdc, 0xae, 0xc3, 0xa8, 0x67, 0x2c, 0xc8, 0x94, 0x4a, 0x8e, 0x77, 0x55, 0xd1, 0x50, 0x73, 0xc9, - 0x2f, 0xc1, 0xac, 0xdf, 0x0f, 0xa5, 0xdd, 0x08, 0xb3, 0xe3, 0xc6, 0x79, 0x29, 0x7e, 0x5e, 0xa4, - 0x6d, 0xf7, 0xd3, 0x0c, 0xcc, 0xca, 0x99, 0x73, 0x30, 0x93, 0xbe, 0x7b, 0x35, 0xff, 0x78, 0x02, - 0xe2, 0x7e, 0xfc, 0x34, 0x44, 0xcb, 0xc4, 0x84, 0x12, 0xa3, 0xbc, 0xdf, 0x0d, 0x95, 0xb3, 0x95, - 0x6b, 0x8d, 0x92, 0x82, 0x8a, 0x63, 0x1e, 0xc0, 0xac, 0xe8, 0x6d, 0xb7, 0x4b, 0xbb, 0xad, 0x90, - 0x06, 0x9c, 0xec, 0x42, 0x91, 0x8b, 0x3f, 0xd4, 0x9c, 0x8c, 0x76, 0xab, 0x13, 0xbb, 0x1a, 0x01, - 0x99, 0xd8, 0xbb, 0x54, 0x80, 0x11, 0xbc, 0xf9, 0x27, 0x13, 0x50, 0xd1, 0xf3, 0x74, 0x8a, 0x0a, - 0xf9, 0xab, 0x30, 0xed, 0xd0, 0x5d, 0x4b, 0x8c, 0x46, 0x5d, 0xb4, 0x08, 0xb3, 0x6a, 0x46, 0x24, - 0x8c, 0x79, 0xa4, 0x16, 0x1f, 0x66, 0xd1, 0x90, 0x65, 0xd5, 0x2a, 0x1d, 0x2b, 0x92, 0x3d, 0xa8, - 0xc8, 0x3f, 0xd6, 0xe3, 0x4b, 0xe1, 0x51, 0xd7, 0xfd, 0x61, 0x8c, 0x12, 0xd5, 0x02, 0xf4, 0x27, - 0x26, 0xf8, 0xb9, 0xcb, 0xdc, 0xe2, 0x69, 0x2e, 0x73, 0xcd, 0x75, 0x10, 0x8e, 0xe1, 0xe6, 0x2a, - 0x79, 0x07, 0xca, 0x5c, 0x99, 0xae, 0x9a, 0x97, 0xaf, 0xc4, 0x59, 0x70, 0x6c, 0xd2, 0x8f, 0x8f, - 0x6a, 0xb3, 0x52, 0x38, 0x26, 0xa0, 0x6e, 0x62, 0x2e, 0x43, 0x35, 0x75, 0xf9, 0x25, 0x66, 0x58, - 0x84, 0x1c, 0xf9, 0x19, 0x6e, 0x5a, 0xa1, 0x85, 0x92, 0x63, 0x3e, 0x9e, 0x80, 0x05, 0xa4, 0xdc, - 0xef, 0x33, 0x9b, 0xa6, 0x2b, 0xb3, 0x96, 0x2d, 0x6f, 0xc4, 0x73, 0x95, 0xd9, 0x15, 0x49, 0x45, - 0xc5, 0x25, 0xdf, 0x82, 0xd9, 0x1e, 0x65, 0x6d, 0xbd, 0xd9, 0xd4, 0x22, 0xe9, 0xfa, 0xca, 0xbd, - 0x34, 0x13, 0xb3, 0xb2, 0x22, 0xdf, 0xef, 0x59, 0x9e, 0xbb, 0x4b, 0x79, 0x98, 0x2f, 0x99, 0xdc, - 0x53, 0x74, 0xd4, 0x12, 0xe4, 0x26, 0x9c, 0xe7, 0x34, 0xbc, 0x7f, 0xe0, 0x51, 0x86, 0x74, 0x97, - 0x32, 0x59, 0x49, 0x9f, 0x92, 0x2e, 0xf3, 0x45, 0xd5, 0xec, 0x7c, 0x2b, 0x2f, 0x80, 0x83, 0x6d, - 0xe4, 0xe9, 0xdb, 0xb7, 0x6d, 0xca, 0xf9, 0xaa, 0xef, 0x39, 0xae, 0xbe, 0xf7, 0x4f, 0x9f, 0xbe, - 0x39, 0x3e, 0x0e, 0xb4, 0x10, 0x28, 0xbb, 0x96, 0xdb, 0xed, 0x33, 0x9a, 0xa0, 0x94, 0xb2, 0x28, - 0xeb, 0x39, 0x3e, 0x0e, 0xb4, 0x30, 0xf7, 0x61, 0x16, 0x69, 0xc8, 0x0e, 0xf5, 0x9c, 0xd4, 0xa0, - 0xd8, 0x75, 0x7b, 0x6e, 0x54, 0xfc, 0x29, 0x46, 0x86, 0x7c, 0x57, 0x10, 0x30, 0xa2, 0x93, 0x26, - 0x54, 0x99, 0x68, 0xb1, 0xe5, 0x77, 0x5d, 0x3b, 0x9e, 0x6f, 0x33, 0x8e, 0xa7, 0x30, 0x61, 0x3d, - 0xce, 0x7e, 0x62, 0xba, 0x99, 0xf9, 0x83, 0x02, 0x40, 0x72, 0x33, 0x4e, 0xf6, 0xa0, 0xcc, 0x6f, - 0x34, 0xfa, 0xf6, 0x9e, 0xae, 0x3a, 0x8d, 0x78, 0x39, 0xa1, 0x40, 0x92, 0x85, 0x8c, 0x29, 0xa8, - 0x15, 0x3c, 0xe9, 0xde, 0xf4, 0x6f, 0x26, 0x41, 0xb7, 0x12, 0x26, 0x42, 0x3d, 0x27, 0xf0, 0x5d, - 0x2f, 0xbe, 0x23, 0xd0, 0xc8, 0x6b, 0x8a, 0x8e, 0x5a, 0x42, 0x58, 0xed, 0x4e, 0x34, 0x88, 0x89, - 0xac, 0xd5, 0xaa, 0x3e, 0x28, 0xae, 0x90, 0x63, 0xb4, 0x2d, 0x56, 0x6c, 0x32, 0x2b, 0x87, 0x92, - 0x8a, 0x8a, 0x2b, 0x0e, 0xab, 0xb8, 0xec, 0xaa, 0x2c, 0x4d, 0x1e, 0x56, 0x71, 0x85, 0x16, 0x35, - 0x97, 0x74, 0x60, 0xde, 0x92, 0x06, 0x92, 0x94, 0x92, 0x9f, 0xaa, 0x2a, 0x9e, 0xdc, 0xca, 0x66, - 0x51, 0x30, 0x0f, 0x2b, 0x34, 0xf1, 0xa4, 0xf9, 0xd3, 0x17, 0xc7, 0xb5, 0xa6, 0x56, 0x16, 0x05, - 0xf3, 0xb0, 0x22, 0x4e, 0x63, 0x7e, 0x97, 0xae, 0xe0, 0xa6, 0x8a, 0x07, 0x75, 0x9c, 0x86, 0x11, - 0x19, 0x63, 0xbe, 0xf9, 0xfb, 0x05, 0x98, 0x6b, 0xd9, 0xcc, 0x0d, 0x42, 0xed, 0x41, 0x36, 0xe5, - 0x75, 0x7a, 0x68, 0x89, 0x08, 0x4a, 0xd9, 0xd4, 0xcb, 0x27, 0x54, 0xe5, 0x22, 0xa1, 0xcc, 0x6d, - 0x7b, 0x44, 0xc2, 0x04, 0x42, 0xe6, 0xce, 0xd2, 0x47, 0xe5, 0xd7, 0xb6, 0x25, 0xa9, 0xa8, 0xb8, - 0xe6, 0x0f, 0x0b, 0x50, 0xd6, 0x77, 0x60, 0xaf, 0x40, 0x51, 0x5e, 0xad, 0x28, 0xdb, 0xd1, 0x47, - 0xd2, 0xaa, 0x20, 0x62, 0xc4, 0x13, 0x42, 0x32, 0x28, 0x54, 0xc0, 0xa9, 0x73, 0xcb, 0x62, 0x21, - 0x46, 0x3c, 0x61, 0xb4, 0xd4, 0x73, 0x94, 0xbd, 0x68, 0xa3, 0x5d, 0xf3, 0x1c, 0x14, 0x74, 0x79, - 0x3d, 0xec, 0xb3, 0x9e, 0x15, 0xe6, 0x33, 0xfb, 0x75, 0x49, 0x45, 0xc5, 0x35, 0xdf, 0x83, 0xf9, - 0x56, 0x9f, 0x07, 0xd4, 0xd3, 0x81, 0xbc, 0x30, 0x71, 0xa7, 0xcf, 0xac, 0x94, 0xb3, 0xd5, 0x26, - 0xde, 0x54, 0x74, 0xd4, 0x12, 0xe6, 0x2c, 0x54, 0x53, 0xcf, 0xd6, 0xcc, 0xff, 0xb9, 0x0c, 0xfa, - 0xa6, 0xf8, 0x67, 0xf7, 0xcd, 0x23, 0x25, 0x63, 0xb6, 0x8e, 0xab, 0x8b, 0xe3, 0xc7, 0xd5, 0x7a, - 0xdd, 0x73, 0xb1, 0x75, 0x3b, 0x89, 0xad, 0x4b, 0x67, 0x10, 0x5b, 0xeb, 0x9d, 0x38, 0x10, 0x5f, - 0xff, 0x41, 0x01, 0x66, 0x3c, 0x91, 0xbb, 0xab, 0xfd, 0x6e, 0x4c, 0xcb, 0x78, 0xee, 0xfe, 0x58, - 0x93, 0x58, 0xdf, 0x4c, 0x21, 0x46, 0x65, 0x0b, 0x9d, 0x5b, 0xa7, 0x59, 0x98, 0x51, 0x4d, 0xd6, - 0xa1, 0x6c, 0xed, 0x8a, 0x84, 0x28, 0x3c, 0x54, 0x57, 0xde, 0x57, 0x86, 0x79, 0x80, 0x15, 0x25, - 0x13, 0x39, 0xd7, 0xf8, 0x0b, 0x75, 0x5b, 0x71, 0x3a, 0xf5, 0x54, 0xe9, 0x44, 0x66, 0x8c, 0xa3, - 0x9e, 0x4e, 0x71, 0xfd, 0x25, 0x15, 0x66, 0x28, 0x0a, 0x6a, 0x05, 0x22, 0x7a, 0x8e, 0x52, 0x2e, - 0x99, 0x6f, 0x96, 0xa3, 0xe8, 0x39, 0x4a, 0xc7, 0x50, 0x71, 0x48, 0x3b, 0x0e, 0x96, 0xab, 0x72, - 0x72, 0x1b, 0x23, 0x27, 0x10, 0x3a, 0xfe, 0x1e, 0x1e, 0x2d, 0x93, 0xdb, 0x69, 0x27, 0x3a, 0x73, - 0x1a, 0x27, 0x3a, 0x7b, 0xa2, 0x03, 0x6d, 0x43, 0x89, 0x4b, 0x17, 0x2d, 0xf3, 0xcc, 0xea, 0xf5, - 0xd5, 0xd1, 0x4e, 0xf8, 0x8c, 0x97, 0x8f, 0x66, 0x27, 0xa2, 0xa1, 0x82, 0x27, 0x3e, 0x94, 0x99, - 0x8a, 0x27, 0x55, 0xaa, 0x3a, 0x5a, 0xa5, 0x3b, 0x1f, 0x94, 0x46, 0xf6, 0x11, 0x53, 0x51, 0x2b, - 0x21, 0x1f, 0xc0, 0xa4, 0x63, 0xb5, 0x55, 0xd2, 0xfa, 0xed, 0x91, 0x1f, 0x07, 0xc4, 0x6a, 0xe4, - 0x7b, 0xb1, 0xe6, 0xca, 0x4d, 0x14, 0xa8, 0x64, 0x0f, 0xa6, 0x79, 0xe4, 0xb1, 0x8d, 0x85, 0x31, - 0x9e, 0x61, 0xe5, 0xbc, 0x7e, 0x94, 0xc6, 0x28, 0x22, 0xc6, 0x1a, 0xc8, 0x1a, 0x4c, 0xef, 0xfb, - 0xdd, 0x7e, 0x4f, 0x65, 0xbb, 0xd5, 0xeb, 0x8b, 0xc3, 0x56, 0xfb, 0xa1, 0x14, 0x49, 0x9c, 0x40, - 0xf4, 0xcd, 0x31, 0x6e, 0x4b, 0x7e, 0xbb, 0x00, 0x73, 0x62, 0xeb, 0x68, 0x3b, 0xe0, 0x06, 0x19, - 0xc3, 0x52, 0x1f, 0x70, 0xca, 0x12, 0x0b, 0x7b, 0x41, 0xa9, 0x9d, 0xdb, 0xc8, 0x68, 0xc0, 0x9c, - 0x46, 0x12, 0x40, 0x99, 0xbb, 0x0e, 0xb5, 0x2d, 0xc6, 0x8d, 0x0b, 0x67, 0xa6, 0x3d, 0x09, 0x2c, - 0x15, 0x36, 0x6a, 0x2d, 0xe4, 0x77, 0xe4, 0xd3, 0x39, 0xf5, 0x78, 0x54, 0x3d, 0xe8, 0xbd, 0x78, - 0x96, 0x0f, 0x7a, 0x2f, 0x44, 0xef, 0xe6, 0x32, 0x1a, 0x30, 0xaf, 0x92, 0xdc, 0x87, 0x4b, 0x22, - 0x3b, 0xda, 0xa7, 0x4d, 0x6a, 0x39, 0x5d, 0xd7, 0xa3, 0x2d, 0x6a, 0xfb, 0x9e, 0xc3, 0x8d, 0x4b, - 0xf2, 0x2e, 0xe2, 0xc5, 0xe3, 0xa3, 0xda, 0xa5, 0x95, 0x61, 0x02, 0x38, 0xbc, 0x1d, 0xf9, 0x18, - 0x66, 0x59, 0x3a, 0x49, 0x30, 0x5e, 0x18, 0xe3, 0x22, 0x3c, 0x93, 0x6e, 0x44, 0xd5, 0x94, 0x0c, - 0x09, 0xb3, 0xba, 0xc8, 0x9b, 0x50, 0x0d, 0x94, 0xa7, 0x72, 0x79, 0xcf, 0xb8, 0x2c, 0xc7, 0x20, - 0x4f, 0xd4, 0xad, 0x84, 0x8c, 0x69, 0x19, 0xf2, 0x00, 0xaa, 0xa1, 0xdf, 0xa5, 0x4c, 0x15, 0xed, - 0x0d, 0xb9, 0xf8, 0x4b, 0xc3, 0x2c, 0x79, 0x5b, 0x8b, 0x25, 0x25, 0xe1, 0x84, 0xc6, 0x31, 0x8d, - 0x23, 0x72, 0x4d, 0x6e, 0x77, 0xa8, 0xd3, 0xef, 0x52, 0x26, 0x13, 0xeb, 0x17, 0xb3, 0xb9, 0x66, - 0x2b, 0xcd, 0xc4, 0xac, 0xac, 0xc8, 0x1e, 0x03, 0xe6, 0xfa, 0xcc, 0x0d, 0x0f, 0x57, 0xbb, 0x16, - 0xe7, 0x12, 0x60, 0x51, 0x02, 0xe8, 0xec, 0x71, 0x2b, 0x2f, 0x80, 0x83, 0x6d, 0x44, 0x4e, 0x10, - 0x13, 0x8d, 0x97, 0x64, 0x8e, 0x26, 0xdd, 0x52, 0xdc, 0x16, 0x35, 0xf7, 0x84, 0x67, 0x41, 0x57, - 0x46, 0x79, 0x16, 0x44, 0x1c, 0xb8, 0x62, 0xf5, 0x43, 0xbf, 0x27, 0x08, 0xd9, 0x26, 0xdb, 0xfe, - 0x1e, 0xf5, 0x8c, 0xab, 0xf2, 0xac, 0xba, 0x7a, 0x7c, 0x54, 0xbb, 0xb2, 0xf2, 0x25, 0x72, 0xf8, - 0xa5, 0x28, 0xa4, 0x07, 0x65, 0xaa, 0x9e, 0x36, 0x19, 0x5f, 0x19, 0xe3, 0x90, 0xc8, 0xbe, 0x8f, - 0x8a, 0x26, 0x28, 0xa6, 0xa1, 0x56, 0x41, 0xb6, 0xa1, 0xda, 0xf1, 0x79, 0xb8, 0xd2, 0x75, 0x2d, - 0x4e, 0xb9, 0xf1, 0xb2, 0xb4, 0x93, 0xa1, 0xe7, 0xdb, 0xad, 0x58, 0x2c, 0x31, 0x93, 0x5b, 0x49, - 0x4b, 0x4c, 0xc3, 0x10, 0x2a, 0x13, 0xa4, 0xbe, 0x5c, 0x35, 0xdf, 0x0b, 0xe9, 0x47, 0xa1, 0xb1, - 0x24, 0xc7, 0xf2, 0xda, 0x30, 0xe4, 0x2d, 0xdf, 0x69, 0x65, 0xa5, 0xa3, 0x5d, 0x9e, 0x23, 0x62, - 0x1e, 0x93, 0xbc, 0x05, 0x33, 0x81, 0xef, 0xb4, 0x02, 0x6a, 0x6f, 0x59, 0xa1, 0xdd, 0x31, 0x6a, - 0xd9, 0x2b, 0x87, 0xad, 0x14, 0x0f, 0x33, 0x92, 0x8b, 0xef, 0xc1, 0xf9, 0x81, 0x78, 0xea, 0xa9, - 0xee, 0x67, 0xfe, 0xb2, 0x00, 0xe9, 0x70, 0xf6, 0xcc, 0xe3, 0xfe, 0x9b, 0x70, 0x5e, 0xfd, 0x20, - 0x47, 0x1c, 0xb6, 0xdd, 0x7e, 0x18, 0x67, 0xca, 0xa9, 0x4a, 0x0b, 0xe6, 0x05, 0x70, 0xb0, 0x8d, - 0xf9, 0x57, 0x05, 0x98, 0xcd, 0xb8, 0xef, 0x33, 0xcf, 0x0a, 0xd7, 0x81, 0xf4, 0x5c, 0xc6, 0x7c, - 0x16, 0x9d, 0x81, 0xf7, 0x84, 0x2d, 0x73, 0xf5, 0x44, 0x57, 0x3e, 0xed, 0xb8, 0x37, 0xc0, 0xc5, - 0x21, 0x2d, 0xcc, 0xbf, 0x2d, 0x40, 0x52, 0xca, 0xd3, 0xef, 0x99, 0x0a, 0x27, 0xbe, 0x67, 0x7a, - 0x1d, 0xca, 0x8f, 0xb8, 0xef, 0x6d, 0x25, 0xaf, 0x9e, 0xf4, 0x84, 0xde, 0x6e, 0xdd, 0xdf, 0x94, - 0x92, 0x5a, 0x42, 0x4a, 0x7f, 0xb8, 0xee, 0x76, 0xc3, 0xc1, 0xb7, 0x41, 0xb7, 0x7f, 0x25, 0xa2, - 0xa3, 0x96, 0x20, 0xcb, 0x50, 0xd1, 0xd5, 0x63, 0x95, 0x4e, 0xea, 0x49, 0xd0, 0xa5, 0x53, 0x4c, - 0x64, 0xcc, 0x1f, 0x4d, 0x40, 0x39, 0x2e, 0xbd, 0x92, 0xdf, 0x48, 0x05, 0xcb, 0xd1, 0x04, 0x7f, - 0xed, 0x74, 0x77, 0x1a, 0xf7, 0x77, 0x1e, 0x51, 0x3b, 0x14, 0x11, 0x71, 0x52, 0xab, 0x4c, 0x68, - 0xa9, 0x08, 0xd9, 0x86, 0x29, 0x1e, 0x50, 0x7b, 0xac, 0x1f, 0x47, 0xe9, 0x4a, 0x71, 0x40, 0xed, - 0x64, 0x82, 0xc5, 0x17, 0x4a, 0x70, 0xb2, 0x07, 0x25, 0x2e, 0xaf, 0x1f, 0x55, 0xe2, 0xb9, 0x3a, - 0x66, 0x41, 0x5a, 0x40, 0xa5, 0xef, 0xdb, 0xc5, 0x37, 0x2a, 0x15, 0xe6, 0x67, 0x05, 0x98, 0x89, - 0x45, 0xef, 0xba, 0x3c, 0x24, 0xdf, 0x1d, 0x98, 0xc4, 0xfa, 0xe9, 0x26, 0x51, 0xb4, 0x96, 0x53, - 0xa8, 0x17, 0x38, 0xa6, 0xa4, 0x26, 0x70, 0x07, 0x8a, 0xae, 0x7c, 0xa7, 0x3c, 0xce, 0x65, 0x40, - 0xdc, 0xdf, 0x24, 0x73, 0x88, 0xde, 0x29, 0x47, 0xd0, 0xe6, 0xdf, 0x5f, 0x48, 0x86, 0x24, 0xa6, - 0x95, 0x78, 0x50, 0x89, 0x37, 0x78, 0x5c, 0xe4, 0x7f, 0x67, 0xac, 0xa4, 0x30, 0x31, 0xca, 0x98, - 0xc2, 0x31, 0x51, 0x41, 0xae, 0x03, 0x50, 0xe1, 0xd9, 0xa2, 0xda, 0xdd, 0x44, 0xb6, 0x06, 0xbe, - 0xa6, 0x39, 0x98, 0x92, 0x7a, 0xfe, 0x05, 0x87, 0xe1, 0x47, 0xf4, 0xd4, 0x33, 0x39, 0xa2, 0xaf, - 0x9c, 0xf9, 0x11, 0xfd, 0xf2, 0xb3, 0x3f, 0xa2, 0x53, 0x09, 0x49, 0x71, 0x8c, 0x84, 0xe4, 0x63, - 0xb8, 0x18, 0xfd, 0xb9, 0xda, 0xb5, 0xdc, 0x9e, 0xb6, 0x17, 0xf5, 0x30, 0xe9, 0xab, 0x43, 0x0f, - 0x66, 0xca, 0xb8, 0xcb, 0x43, 0xea, 0x85, 0x0f, 0x93, 0x96, 0xc9, 0xad, 0xf6, 0xc3, 0x21, 0x70, - 0x38, 0x54, 0x49, 0x3e, 0x82, 0x9d, 0x3e, 0x45, 0x04, 0xfb, 0xc3, 0x02, 0x5c, 0xb2, 0x86, 0xfd, - 0x4a, 0x48, 0xd5, 0x31, 0x6e, 0x8f, 0x95, 0x4f, 0x64, 0x10, 0x55, 0x3e, 0x30, 0x8c, 0x85, 0xc3, - 0xfb, 0x40, 0x5e, 0x4d, 0x52, 0xd2, 0x8a, 0x34, 0xaa, 0xe1, 0xc9, 0xe4, 0xf7, 0xf3, 0xa5, 0x20, - 0x90, 0xb3, 0xdd, 0x1a, 0xdb, 0x61, 0x9f, 0x41, 0x39, 0xa8, 0x3a, 0x46, 0x39, 0x28, 0x97, 0x5e, - 0xcc, 0x9c, 0x51, 0x7a, 0xe1, 0xc1, 0x82, 0xdb, 0xb3, 0xda, 0x74, 0xab, 0xdf, 0xed, 0x46, 0x15, - 0x70, 0x6e, 0xcc, 0x4a, 0xec, 0xa1, 0xaf, 0x49, 0x45, 0xba, 0xd7, 0x8d, 0xce, 0x47, 0x7d, 0xb5, - 0x94, 0x5c, 0xfd, 0x6c, 0xe4, 0x90, 0x70, 0x00, 0x5b, 0x98, 0xa5, 0x08, 0x5b, 0x37, 0x69, 0x28, - 0x66, 0x5b, 0x56, 0x4a, 0xd4, 0xaf, 0x21, 0x6f, 0x25, 0x64, 0x4c, 0xcb, 0x90, 0x3b, 0x50, 0x71, - 0x3c, 0xae, 0x6e, 0x7e, 0xe6, 0xa5, 0x97, 0x7a, 0x43, 0xf8, 0xb6, 0xe6, 0x66, 0x4b, 0xdf, 0xf9, - 0x5c, 0x19, 0xfc, 0xb9, 0x77, 0x5d, 0xf3, 0x31, 0x69, 0x4f, 0xee, 0x49, 0x30, 0xf5, 0xb4, 0x3a, - 0x2a, 0x6d, 0x5c, 0x3d, 0x21, 0x42, 0x6e, 0x6e, 0xc6, 0x2f, 0xc1, 0x67, 0x95, 0x3a, 0xf5, 0x60, - 0x3a, 0x41, 0x20, 0xaf, 0x41, 0xc9, 0xf7, 0xd6, 0x3e, 0x72, 0x43, 0xe3, 0x7c, 0xb6, 0x02, 0x7e, - 0x5f, 0x52, 0x51, 0x71, 0xc9, 0x03, 0xb8, 0x1c, 0x86, 0x5d, 0x95, 0xda, 0xae, 0xec, 0x86, 0x94, - 0xc5, 0xcf, 0x27, 0xe4, 0x13, 0x98, 0x62, 0xe3, 0xa5, 0xe3, 0xa3, 0xda, 0xe5, 0xed, 0xed, 0xbb, - 0xc3, 0x44, 0xf0, 0xa4, 0xb6, 0x27, 0x27, 0xdd, 0x17, 0x46, 0x4c, 0xba, 0xd3, 0x79, 0xde, 0xc5, - 0x2f, 0xcd, 0xf3, 0x06, 0xf2, 0xd2, 0x4b, 0x4f, 0x91, 0x97, 0x7e, 0x20, 0x1f, 0x89, 0xdc, 0x5c, - 0x55, 0x39, 0xfd, 0xdb, 0xa3, 0x95, 0x12, 0x05, 0x42, 0x74, 0x57, 0x28, 0xff, 0xc4, 0x08, 0x93, - 0x6c, 0xc1, 0xc5, 0xc0, 0x77, 0x06, 0xd2, 0x5a, 0x99, 0xc4, 0xa7, 0x5e, 0x08, 0x6d, 0x0d, 0x91, - 0xc1, 0xa1, 0x2d, 0xa5, 0x2f, 0x4d, 0xe8, 0x86, 0x21, 0x27, 0x26, 0xf2, 0xa5, 0x09, 0x19, 0xd3, - 0x32, 0xf9, 0x2c, 0xef, 0xc5, 0x67, 0x96, 0xe5, 0x2d, 0x3e, 0x87, 0x2c, 0xef, 0xa5, 0xe7, 0x97, - 0xe5, 0x7d, 0x5e, 0x86, 0xb9, 0x6c, 0xfc, 0x9a, 0xbc, 0xcf, 0x2a, 0x9c, 0xf6, 0x7d, 0x56, 0xe6, - 0x01, 0xd5, 0xc4, 0x33, 0x7d, 0x40, 0x35, 0x79, 0xe6, 0x0f, 0xa8, 0x52, 0x0f, 0xc5, 0xa6, 0x9e, - 0xf0, 0x50, 0x6c, 0x05, 0xe6, 0x6d, 0xbf, 0x17, 0xc8, 0xdf, 0x62, 0xa8, 0xe7, 0x42, 0xd1, 0x95, - 0xbe, 0xbe, 0xee, 0x5c, 0xcd, 0xb2, 0x31, 0x2f, 0x4f, 0x38, 0x14, 0x3d, 0xd9, 0xb0, 0x34, 0xc6, - 0x23, 0xd3, 0xec, 0x82, 0xc9, 0x83, 0x52, 0xbd, 0xf3, 0xd4, 0x61, 0x7a, 0xa4, 0x3e, 0xd2, 0x25, - 0x02, 0x8d, 0xf9, 0xec, 0xc3, 0x3e, 0x6e, 0x54, 0xa4, 0xfe, 0x5f, 0x3d, 0x0b, 0xfd, 0xd9, 0x57, - 0x84, 0xaa, 0x27, 0xc9, 0x0d, 0x70, 0x96, 0x8b, 0xf9, 0x9e, 0x10, 0x06, 0x2f, 0x04, 0xc3, 0xc2, - 0x30, 0xae, 0x6e, 0x95, 0xbe, 0x2c, 0x18, 0x5c, 0x52, 0x5a, 0x5e, 0x18, 0x1a, 0xc8, 0x71, 0x3c, - 0x01, 0x39, 0xfd, 0x0a, 0xad, 0xfc, 0xac, 0x5e, 0xa1, 0x2d, 0x1e, 0x46, 0x0f, 0x5c, 0x4f, 0x7c, - 0x1b, 0xfb, 0x20, 0xfb, 0x5e, 0xfd, 0xbd, 0x11, 0xff, 0x03, 0x90, 0xf8, 0x09, 0x6d, 0xfa, 0x5d, - 0xee, 0x6f, 0x15, 0xe0, 0xe2, 0xb0, 0x65, 0x19, 0xd2, 0x8b, 0x56, 0xb6, 0x17, 0xe3, 0xa5, 0x6b, - 0x69, 0xd7, 0xf2, 0x1f, 0xc5, 0x54, 0x72, 0x18, 0xd2, 0xe0, 0x67, 0x37, 0xc7, 0x23, 0xdd, 0x1c, - 0x67, 0x7e, 0x73, 0x5c, 0x7c, 0x8e, 0xbf, 0x39, 0x2e, 0x8d, 0xf0, 0x9b, 0xe3, 0xe9, 0xe7, 0xf9, - 0x9b, 0xe3, 0xf2, 0x29, 0x7f, 0x73, 0x5c, 0x79, 0xf6, 0xbf, 0x39, 0xfe, 0xa2, 0x00, 0x0b, 0xf9, - 0x27, 0xd0, 0xcf, 0xa1, 0x48, 0xb6, 0x97, 0x29, 0x92, 0x6d, 0x8c, 0xe5, 0xcc, 0xe3, 0x6e, 0x9f, - 0x54, 0x2c, 0x33, 0x7f, 0x5c, 0x80, 0x81, 0x67, 0xde, 0xcf, 0xa1, 0x8e, 0xf5, 0x28, 0x5b, 0xc7, - 0x5a, 0x3b, 0x93, 0x41, 0x9e, 0x50, 0xcf, 0xfa, 0xdf, 0x21, 0x43, 0xfc, 0x7f, 0xa9, 0x6b, 0x65, - 0x5c, 0xdb, 0xc4, 0xb3, 0x77, 0x6d, 0x8d, 0xfa, 0xa7, 0x5f, 0x2c, 0x9d, 0xfb, 0xec, 0x8b, 0xa5, - 0x73, 0x9f, 0x7f, 0xb1, 0x74, 0xee, 0x93, 0xe3, 0xa5, 0xc2, 0xa7, 0xc7, 0x4b, 0x85, 0xcf, 0x8e, - 0x97, 0x0a, 0x9f, 0x1f, 0x2f, 0x15, 0x7e, 0x7c, 0xbc, 0x54, 0xf8, 0xa3, 0x7f, 0x5b, 0x3a, 0xf7, - 0x6b, 0xe5, 0x18, 0xf7, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xd4, 0x75, 0x36, 0x47, 0x99, 0x4c, - 0x00, 0x00, + // 4779 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7c, 0x4d, 0x6c, 0x1c, 0x57, + 0x72, 0xbf, 0x86, 0xe4, 0x0c, 0x67, 0x6a, 0xf8, 0xa5, 0x27, 0xca, 0x6a, 0x73, 0x65, 0x8e, 0xb6, + 0x17, 0xf6, 0x5f, 0xfb, 0x8f, 0x4d, 0xae, 0xa5, 0xdd, 0xc4, 0xeb, 0x8d, 0xed, 0xe5, 0x70, 0x48, + 0x89, 0x92, 0x48, 0x31, 0x35, 0x94, 0x9c, 0x8d, 0x17, 0xd9, 0x34, 0xbb, 0x1f, 0x67, 0x5a, 0x33, + 0xd3, 0xdd, 0xee, 0xd7, 0x23, 0x9a, 0xf0, 0x21, 0x4e, 0x90, 0x20, 0x09, 0x82, 0x05, 0x92, 0xcb, + 0x66, 0x91, 0xbd, 0x04, 0x39, 0x24, 0x97, 0x5c, 0x72, 0xcd, 0x61, 0x03, 0x04, 0x39, 0x18, 0xb9, + 0xc4, 0xb7, 0xf8, 0x10, 0x10, 0x6b, 0x06, 0x08, 0x12, 0x24, 0x40, 0x80, 0x5c, 0x82, 0xe8, 0x14, + 0xbc, 0x8f, 0x7e, 0xfd, 0x31, 0x43, 0x9b, 0x9a, 0xa1, 0x14, 0x04, 0xbb, 0x27, 0xb1, 0xab, 0xea, + 0xfd, 0xea, 0x7d, 0xd6, 0xab, 0xaa, 0x57, 0x23, 0x58, 0x6f, 0xb9, 0x51, 0xbb, 0xbf, 0xbf, 0x62, + 0xfb, 0xbd, 0x55, 0x2b, 0x6c, 0xf9, 0x41, 0xe8, 0x3f, 0x12, 0x7f, 0xac, 0x06, 0x9d, 0xd6, 0xaa, + 0x15, 0xb8, 0x6c, 0xf5, 0xd0, 0x0f, 0x3b, 0x07, 0x5d, 0xff, 0x70, 0xf5, 0xf1, 0xeb, 0x56, 0x37, + 0x68, 0x5b, 0xaf, 0xaf, 0xb6, 0xa8, 0x47, 0x43, 0x2b, 0xa2, 0xce, 0x4a, 0x10, 0xfa, 0x91, 0x4f, + 0x6e, 0x26, 0x20, 0x2b, 0x31, 0x88, 0xf8, 0x63, 0x25, 0xe8, 0xb4, 0x56, 0x38, 0xc8, 0x4a, 0x0c, + 0xb2, 0x12, 0x83, 0x2c, 0xbd, 0x96, 0xd2, 0xdc, 0xf2, 0xb9, 0x42, 0x8e, 0xb5, 0xdf, 0x3f, 0x10, + 0x5f, 0xe2, 0x43, 0xfc, 0x25, 0x75, 0x2c, 0x99, 0x9d, 0x37, 0xd8, 0x8a, 0xeb, 0xf3, 0x2e, 0xad, + 0xda, 0x7e, 0x48, 0x57, 0x1f, 0x0f, 0xf4, 0x63, 0xe9, 0xeb, 0x89, 0x4c, 0xcf, 0xb2, 0xdb, 0xae, + 0x47, 0xc3, 0xa3, 0x64, 0x1c, 0x3d, 0x1a, 0x59, 0xc3, 0x5a, 0xad, 0x9e, 0xd6, 0x2a, 0xec, 0x7b, + 0x91, 0xdb, 0xa3, 0x03, 0x0d, 0x7e, 0xfe, 0x8b, 0x1a, 0x30, 0xbb, 0x4d, 0x7b, 0x56, 0xbe, 0x9d, + 0xf9, 0xf7, 0x05, 0x98, 0x5f, 0x0b, 0xed, 0xb6, 0xfb, 0x98, 0x36, 0x23, 0xce, 0x68, 0x1d, 0x91, + 0xf7, 0x60, 0x32, 0xb2, 0x42, 0xa3, 0x70, 0xad, 0x70, 0xbd, 0x7a, 0xe3, 0xdb, 0x2b, 0x23, 0x4c, + 0xe4, 0xca, 0x9e, 0x15, 0xc6, 0x70, 0xf5, 0xe9, 0x93, 0xe3, 0xda, 0xe4, 0x9e, 0x15, 0x22, 0x47, + 0x25, 0xdf, 0x83, 0x29, 0xcf, 0xf7, 0xa8, 0x31, 0x21, 0xd0, 0xd7, 0x46, 0x42, 0xdf, 0xf1, 0x3d, + 0xdd, 0xdb, 0x7a, 0xf9, 0xe4, 0xb8, 0x36, 0xc5, 0x29, 0x28, 0x80, 0xcd, 0xff, 0x28, 0x40, 0x65, + 0x2d, 0x6c, 0xf5, 0x7b, 0xd4, 0x8b, 0x18, 0x09, 0x01, 0x02, 0x2b, 0xb4, 0x7a, 0x34, 0xa2, 0x21, + 0x33, 0x0a, 0xd7, 0x26, 0xaf, 0x57, 0x6f, 0xbc, 0x3d, 0x92, 0xd2, 0xdd, 0x18, 0xa6, 0x4e, 0x3e, + 0x3e, 0xae, 0x5d, 0x38, 0x39, 0xae, 0x81, 0x26, 0x31, 0x4c, 0x69, 0x21, 0x1e, 0x54, 0xac, 0x30, + 0x72, 0x0f, 0x2c, 0x3b, 0x62, 0xc6, 0x84, 0x50, 0xf9, 0xd6, 0x48, 0x2a, 0xd7, 0x14, 0x4a, 0xfd, + 0xa2, 0xd2, 0x58, 0x89, 0x29, 0x0c, 0x13, 0x15, 0xe6, 0xbf, 0x4d, 0x42, 0x39, 0x66, 0x90, 0x6b, + 0x30, 0xe5, 0x59, 0x3d, 0x2a, 0x56, 0xaf, 0x52, 0x9f, 0x51, 0x0d, 0xa7, 0x76, 0xac, 0x1e, 0x9f, + 0x20, 0xab, 0x47, 0xb9, 0x44, 0x60, 0x45, 0x6d, 0xb1, 0x02, 0x29, 0x89, 0x5d, 0x2b, 0x6a, 0xa3, + 0xe0, 0x90, 0xab, 0x30, 0xd5, 0xf3, 0x1d, 0x6a, 0x4c, 0x5e, 0x2b, 0x5c, 0x2f, 0xca, 0x09, 0xde, + 0xf6, 0x1d, 0x8a, 0x82, 0xca, 0xdb, 0x1f, 0x84, 0x7e, 0xcf, 0x98, 0xca, 0xb6, 0xdf, 0x0c, 0xfd, + 0x1e, 0x0a, 0x0e, 0xf9, 0xfd, 0x02, 0x2c, 0xc4, 0xdd, 0xbb, 0xe7, 0xdb, 0x56, 0xe4, 0xfa, 0x9e, + 0x51, 0x14, 0x0b, 0xbe, 0x31, 0xd6, 0x44, 0xc4, 0x60, 0x75, 0x43, 0x69, 0x5d, 0xc8, 0x73, 0x70, + 0x40, 0x31, 0xb9, 0x01, 0xd0, 0xea, 0xfa, 0xfb, 0x56, 0x97, 0xcf, 0x81, 0x51, 0x12, 0xbd, 0xd6, + 0x4b, 0x78, 0x4b, 0x73, 0x30, 0x25, 0x45, 0x3a, 0x30, 0x6d, 0xc9, 0x53, 0x61, 0x4c, 0x8b, 0x7e, + 0x37, 0x46, 0xec, 0x77, 0xe6, 0x64, 0xd5, 0xab, 0x27, 0xc7, 0xb5, 0x69, 0x45, 0xc4, 0x58, 0x03, + 0x79, 0x15, 0xca, 0x7e, 0xc0, 0xbb, 0x6a, 0x75, 0x8d, 0xf2, 0xb5, 0xc2, 0xf5, 0x72, 0x7d, 0x41, + 0x75, 0xaf, 0x7c, 0x5f, 0xd1, 0x51, 0x4b, 0x98, 0x7f, 0x54, 0x84, 0x81, 0x51, 0x93, 0xd7, 0xa1, + 0xaa, 0xd0, 0xee, 0xf9, 0x2d, 0x26, 0x16, 0xbf, 0x5c, 0x9f, 0x3f, 0x39, 0xae, 0x55, 0xd7, 0x12, + 0x32, 0xa6, 0x65, 0xc8, 0xbb, 0x30, 0xc1, 0x6e, 0xaa, 0x63, 0xf8, 0xce, 0x48, 0xa3, 0x6b, 0xde, + 0xd4, 0x1b, 0xb4, 0x74, 0x72, 0x5c, 0x9b, 0x68, 0xde, 0xc4, 0x09, 0x76, 0x93, 0x9b, 0x8f, 0x96, + 0x1b, 0x89, 0xcd, 0x33, 0xaa, 0xf9, 0xb8, 0xe5, 0x46, 0x1a, 0x5a, 0x98, 0x8f, 0x5b, 0x6e, 0x84, + 0x1c, 0x95, 0x9b, 0x8f, 0x76, 0x14, 0x05, 0x62, 0xf3, 0x8d, 0x6a, 0x3e, 0x6e, 0xef, 0xed, 0xed, + 0x6a, 0x78, 0xb1, 0xbb, 0x39, 0x05, 0x05, 0x30, 0xf9, 0x90, 0xcf, 0xa4, 0xe4, 0xf9, 0xe1, 0x91, + 0xda, 0xb5, 0xb7, 0xc7, 0xda, 0xb5, 0x7e, 0x78, 0xa4, 0xd5, 0xa9, 0x35, 0xd1, 0x0c, 0x4c, 0x6b, + 0x13, 0xa3, 0x73, 0x0e, 0x98, 0xd8, 0xa4, 0x23, 0x8f, 0xae, 0xb1, 0xd9, 0xcc, 0x8d, 0xae, 0xb1, + 0xd9, 0x44, 0x01, 0xcc, 0xd7, 0x26, 0xb4, 0x0e, 0xd5, 0x9e, 0x1e, 0x6d, 0x6d, 0xd0, 0x3a, 0xcc, + 0xae, 0x0d, 0x5a, 0x87, 0xc8, 0x51, 0xcd, 0x16, 0x5c, 0x8e, 0x39, 0x48, 0x03, 0x9f, 0xb9, 0x62, + 0x80, 0xf4, 0x80, 0xac, 0x42, 0xc5, 0xf6, 0xbd, 0x03, 0xb7, 0xb5, 0x6d, 0x05, 0xca, 0x30, 0x69, + 0x8b, 0xb6, 0x1e, 0x33, 0x30, 0x91, 0x21, 0x2f, 0xc1, 0x64, 0x87, 0x1e, 0x29, 0x0b, 0x55, 0x55, + 0xa2, 0x93, 0x77, 0xe9, 0x11, 0x72, 0xba, 0xf9, 0xe3, 0x02, 0x5c, 0x1a, 0x32, 0xb9, 0xbc, 0x59, + 0x3f, 0xec, 0x2a, 0x0d, 0xba, 0xd9, 0x03, 0xbc, 0x87, 0x9c, 0x4e, 0x7e, 0xa7, 0x00, 0xf3, 0xa9, + 0xd9, 0x5e, 0xeb, 0x2b, 0x23, 0x38, 0xfa, 0xe9, 0xce, 0x60, 0xd5, 0xaf, 0x28, 0x8d, 0xf3, 0x39, + 0x06, 0xe6, 0xb5, 0x9a, 0xff, 0x20, 0x6e, 0xdd, 0x0c, 0x8d, 0x58, 0x30, 0xd7, 0x67, 0x34, 0xe4, + 0x26, 0xba, 0x49, 0xed, 0x90, 0x46, 0xea, 0x02, 0x7e, 0x79, 0x45, 0x5e, 0xed, 0xbc, 0x17, 0x2b, + 0xdc, 0xcb, 0x58, 0x79, 0xfc, 0xfa, 0x8a, 0x94, 0xb8, 0x4b, 0x8f, 0x9a, 0xb4, 0x4b, 0x39, 0x46, + 0x9d, 0x9c, 0x1c, 0xd7, 0xe6, 0x1e, 0x64, 0x00, 0x30, 0x07, 0xc8, 0x55, 0x04, 0x16, 0x63, 0x87, + 0x7e, 0xe8, 0x28, 0x15, 0x13, 0x4f, 0xad, 0x62, 0x37, 0x03, 0x80, 0x39, 0x40, 0xf3, 0x07, 0x05, + 0x98, 0xae, 0x5b, 0x76, 0xc7, 0x3f, 0x38, 0xe0, 0x76, 0xcd, 0xe9, 0x87, 0xd2, 0xfa, 0xcb, 0x35, + 0xd1, 0x76, 0xad, 0xa1, 0xe8, 0xa8, 0x25, 0xc8, 0x2b, 0x50, 0x92, 0xd3, 0x21, 0x3a, 0x55, 0xac, + 0xcf, 0x29, 0xd9, 0xd2, 0xa6, 0xa0, 0xa2, 0xe2, 0x92, 0x6f, 0x40, 0xb5, 0x67, 0x7d, 0x10, 0x03, + 0x08, 0x33, 0x53, 0xa9, 0x5f, 0x52, 0xc2, 0xd5, 0xed, 0x84, 0x85, 0x69, 0x39, 0xf3, 0x3b, 0x00, + 0xeb, 0xbe, 0x17, 0xb9, 0x5e, 0x9f, 0xde, 0xf7, 0xc8, 0x57, 0xa0, 0x48, 0xc3, 0xd0, 0x0f, 0x95, + 0xa5, 0x9c, 0x55, 0xcd, 0x8b, 0x1b, 0x9c, 0x88, 0x92, 0x27, 0x7b, 0xe4, 0x76, 0xa9, 0x23, 0x7a, + 0x54, 0x4e, 0xf7, 0x88, 0x53, 0x51, 0x71, 0xcd, 0x3f, 0x2e, 0xc1, 0x74, 0x63, 0xed, 0xd6, 0x9e, + 0xc5, 0x3a, 0x67, 0xb8, 0x7e, 0x5f, 0x85, 0x72, 0x44, 0x7b, 0x41, 0xd7, 0x8a, 0xa8, 0xda, 0xe0, + 0x7a, 0x56, 0xf6, 0x14, 0x1d, 0xb5, 0x04, 0xf1, 0xb9, 0x2f, 0xa1, 0x9c, 0x19, 0x65, 0x52, 0xdf, + 0x1e, 0x71, 0xb3, 0x2a, 0x94, 0xb4, 0x33, 0xa1, 0x48, 0x98, 0xe8, 0x20, 0x0c, 0xaa, 0xb1, 0x72, + 0xa4, 0x07, 0xca, 0xce, 0x8e, 0xe8, 0x04, 0x26, 0x38, 0xd2, 0xee, 0xa5, 0x08, 0x98, 0xd6, 0x42, + 0xbe, 0x0e, 0x33, 0x0e, 0x0d, 0xa8, 0xe7, 0x50, 0xcf, 0x76, 0x29, 0x33, 0x8a, 0xd7, 0x26, 0xf9, + 0xbc, 0x9c, 0x1c, 0xd7, 0x66, 0x1a, 0x29, 0x3a, 0x66, 0xa4, 0xc8, 0x23, 0xa8, 0x1c, 0xba, 0x51, + 0x7b, 0x2b, 0xa2, 0x3d, 0x6e, 0x32, 0xb9, 0x9f, 0xf5, 0xcd, 0x91, 0x3a, 0xca, 0x11, 0x92, 0x69, + 0x79, 0x37, 0xc6, 0xc4, 0x04, 0x9e, 0x9b, 0x30, 0xfe, 0x21, 0x3c, 0x3e, 0x61, 0x3e, 0x2b, 0xd9, + 0x06, 0x82, 0x81, 0x89, 0x0c, 0x61, 0x30, 0xc3, 0x3f, 0x9a, 0xf4, 0xfd, 0x3e, 0xf5, 0x6c, 0x2a, + 0x2e, 0xf6, 0x51, 0xfd, 0xc0, 0x18, 0x44, 0xce, 0xc8, 0xbb, 0x29, 0x58, 0xcc, 0x28, 0xe1, 0xbb, + 0xef, 0xb0, 0x4d, 0x3d, 0xa3, 0x92, 0xdd, 0x7d, 0xef, 0xb6, 0xa9, 0x87, 0x82, 0x43, 0x7c, 0x00, + 0x5b, 0x1f, 0x03, 0x03, 0xc6, 0xb8, 0xfd, 0x93, 0xd3, 0x54, 0x9f, 0xe3, 0x9e, 0x54, 0xf2, 0x8d, + 0x29, 0x15, 0xe6, 0xdf, 0x14, 0xa0, 0xca, 0x0f, 0x47, 0xbc, 0xa1, 0x5f, 0x81, 0x52, 0x64, 0x85, + 0x2d, 0x65, 0xde, 0x2a, 0xc9, 0xa1, 0xda, 0x13, 0x54, 0x54, 0x5c, 0x62, 0x41, 0x31, 0xb2, 0x58, + 0x27, 0x76, 0xa0, 0x7f, 0x71, 0xa4, 0x3e, 0xaa, 0x53, 0x99, 0x9c, 0x6f, 0xfe, 0xc5, 0x50, 0x22, + 0x93, 0xeb, 0x50, 0xe6, 0x27, 0x78, 0xd3, 0x62, 0xd2, 0x5b, 0x29, 0xd7, 0x67, 0xf8, 0x29, 0xdc, + 0x54, 0x34, 0xd4, 0x5c, 0xf3, 0xbb, 0x30, 0xb7, 0xf1, 0x01, 0xb5, 0xfb, 0x91, 0x1f, 0xca, 0xfb, + 0x8a, 0xdc, 0x01, 0xc2, 0x68, 0xf8, 0xd8, 0xb5, 0xe9, 0x9a, 0x6d, 0xfb, 0x7d, 0x2f, 0xda, 0x49, + 0x4e, 0xfd, 0x92, 0xd2, 0x46, 0x9a, 0x03, 0x12, 0x38, 0xa4, 0x95, 0xf9, 0x17, 0x53, 0x50, 0x4d, + 0x79, 0x3c, 0x7c, 0x15, 0x43, 0x1a, 0xf8, 0x79, 0x1b, 0xc2, 0xef, 0x54, 0x14, 0x1c, 0x6e, 0x43, + 0x42, 0xfa, 0xd8, 0x65, 0xdc, 0x00, 0xe6, 0x6c, 0x08, 0x2a, 0x3a, 0x6a, 0x09, 0x52, 0x83, 0xa2, + 0x43, 0x83, 0xa8, 0x2d, 0x06, 0x39, 0x55, 0xaf, 0xf0, 0x89, 0x68, 0x70, 0x02, 0x4a, 0x3a, 0x17, + 0x38, 0xa0, 0x91, 0xdd, 0x36, 0xa6, 0xc4, 0xb9, 0x13, 0x02, 0x9b, 0x9c, 0x80, 0x92, 0x3e, 0xe4, + 0x6e, 0x2a, 0x3e, 0xfb, 0xbb, 0xa9, 0x74, 0xce, 0x77, 0x13, 0x09, 0xe0, 0x12, 0x63, 0xed, 0xdd, + 0xd0, 0x7d, 0x6c, 0x45, 0x54, 0x34, 0x16, 0x7a, 0xa6, 0x9f, 0x46, 0xcf, 0x95, 0x93, 0xe3, 0xda, + 0xa5, 0x66, 0xf3, 0x76, 0x1e, 0x05, 0x87, 0x41, 0x93, 0x26, 0x5c, 0x76, 0x3d, 0x46, 0xed, 0x7e, + 0x48, 0xb7, 0x5a, 0x9e, 0x1f, 0xd2, 0xdb, 0x3e, 0xe3, 0x70, 0xca, 0xcd, 0x7f, 0x49, 0x2d, 0xda, + 0xe5, 0xad, 0x61, 0x42, 0x38, 0xbc, 0xad, 0xf9, 0x77, 0x05, 0x98, 0x49, 0x3b, 0x79, 0x84, 0x01, + 0xb4, 0x1b, 0x9b, 0x4d, 0xb9, 0x33, 0x95, 0xd7, 0xf0, 0xce, 0xc8, 0xbe, 0xa3, 0x84, 0x49, 0x22, + 0xa4, 0x84, 0x86, 0x29, 0x35, 0x67, 0x88, 0x22, 0xbf, 0x02, 0xc5, 0x03, 0x3f, 0xb4, 0xa9, 0x3a, + 0x5b, 0xfa, 0x0c, 0x6e, 0x72, 0x22, 0x4a, 0x9e, 0xf9, 0x2f, 0x05, 0x48, 0x69, 0x20, 0xbf, 0x0e, + 0xb3, 0x5c, 0xc7, 0xdd, 0x70, 0x3f, 0x33, 0x9a, 0xfa, 0xc8, 0xa3, 0xd1, 0x48, 0xf5, 0xcb, 0x4a, + 0xff, 0x6c, 0x86, 0x8c, 0x59, 0x7d, 0xe4, 0xe7, 0xa0, 0x62, 0x39, 0x4e, 0x48, 0x19, 0xa3, 0xd2, + 0xf4, 0x54, 0xea, 0xb3, 0xe2, 0xae, 0x8c, 0x89, 0x98, 0xf0, 0xf9, 0x31, 0xe4, 0x5e, 0x35, 0xdf, + 0xd9, 0xca, 0x0f, 0xd1, 0xc7, 0x90, 0x2b, 0xe1, 0x74, 0xd4, 0x12, 0xe6, 0xf7, 0xa7, 0x20, 0xab, + 0x9b, 0x38, 0x30, 0xdf, 0x09, 0xf7, 0xd7, 0xd7, 0x2d, 0xbb, 0x3d, 0x92, 0xcf, 0x77, 0x89, 0x3b, + 0x9b, 0x77, 0xb3, 0x08, 0x98, 0x87, 0x54, 0x5a, 0xee, 0xd2, 0xa3, 0xc8, 0xda, 0x1f, 0xc5, 0xed, + 0x8b, 0xb5, 0xa4, 0x11, 0x30, 0x0f, 0xc9, 0xdd, 0xb2, 0x4e, 0xb8, 0x1f, 0x1f, 0xf2, 0xbc, 0x5b, + 0x76, 0x37, 0x61, 0x61, 0x5a, 0x8e, 0x4f, 0x61, 0x27, 0xdc, 0x47, 0x6a, 0x75, 0xe3, 0x84, 0x82, + 0x9e, 0xc2, 0xbb, 0x8a, 0x8e, 0x5a, 0x82, 0x04, 0x40, 0x3a, 0xf1, 0xec, 0xe9, 0xc0, 0x41, 0xd9, + 0xa2, 0xeb, 0xc3, 0x46, 0xa3, 0x85, 0xd2, 0x03, 0x7a, 0x81, 0xdb, 0xe6, 0xbb, 0x03, 0x38, 0x38, + 0x04, 0x9b, 0x7c, 0x07, 0xae, 0x74, 0xc2, 0x7d, 0x65, 0xc8, 0x77, 0x43, 0xd7, 0xb3, 0xdd, 0x20, + 0x93, 0x49, 0xa8, 0xa9, 0xee, 0x5e, 0xb9, 0x3b, 0x5c, 0x0c, 0x4f, 0x6b, 0x6f, 0xbe, 0x06, 0x33, + 0xe9, 0x48, 0xf4, 0x0b, 0xa2, 0x17, 0xf3, 0xdf, 0x0b, 0x50, 0xda, 0xf2, 0x82, 0xfe, 0x4f, 0x49, + 0x52, 0xeb, 0x4f, 0xa7, 0x60, 0x8a, 0xbb, 0x5e, 0xe4, 0x3a, 0x4c, 0x45, 0x47, 0x81, 0xbc, 0x5b, + 0x27, 0xeb, 0x8b, 0xb1, 0xa1, 0xd9, 0x3b, 0x0a, 0xe8, 0x13, 0xf5, 0x2f, 0x0a, 0x09, 0xf2, 0x36, + 0x94, 0xbc, 0x7e, 0xef, 0xa1, 0xd5, 0x55, 0x46, 0xe9, 0x95, 0xd8, 0xb5, 0xd8, 0x11, 0xd4, 0x27, + 0xc7, 0xb5, 0x45, 0xea, 0xd9, 0xbe, 0xe3, 0x7a, 0xad, 0xd5, 0x47, 0xcc, 0xf7, 0x56, 0x76, 0xfa, + 0xbd, 0x7d, 0x1a, 0xa2, 0x6a, 0x45, 0xbe, 0x0a, 0xd3, 0xfb, 0xbe, 0xdf, 0xe5, 0x00, 0xd2, 0x64, + 0xcd, 0x2b, 0x80, 0xe9, 0xba, 0x24, 0x63, 0xcc, 0xe7, 0x5e, 0x0c, 0x8b, 0x42, 0x2e, 0x39, 0x95, + 0xf5, 0x62, 0x9a, 0x82, 0x8a, 0x8a, 0x4b, 0x7a, 0x50, 0xea, 0x59, 0x01, 0x97, 0x2b, 0x8a, 0x29, + 0xdb, 0x18, 0xd9, 0x3f, 0x5d, 0xd9, 0x16, 0x38, 0x1b, 0x5e, 0x14, 0x1e, 0x25, 0xea, 0x24, 0x11, + 0x95, 0x12, 0xe2, 0xc2, 0x74, 0xd7, 0x65, 0x11, 0xd7, 0x57, 0x1a, 0x63, 0x57, 0x70, 0x7d, 0x0f, + 0xad, 0x6e, 0x9f, 0x26, 0x33, 0x70, 0x4f, 0xc2, 0x62, 0x8c, 0xbf, 0x74, 0x04, 0xd5, 0x54, 0x8f, + 0xc8, 0x82, 0x8c, 0xd8, 0xc5, 0xe6, 0x15, 0x41, 0x3a, 0xd9, 0x83, 0xe2, 0x63, 0x8e, 0xa1, 0x8c, + 0xcd, 0x98, 0x3d, 0x41, 0x09, 0xf6, 0xe6, 0xc4, 0x1b, 0x85, 0x37, 0xcb, 0x3f, 0xfc, 0x93, 0xda, + 0x85, 0x8f, 0xfe, 0xf1, 0xda, 0x05, 0xf3, 0x6f, 0x27, 0xa1, 0xa2, 0x45, 0xfe, 0x6f, 0xef, 0x94, + 0x30, 0xb7, 0x53, 0xee, 0x8c, 0x37, 0x5f, 0x67, 0xda, 0x2e, 0x6b, 0xd9, 0xed, 0x32, 0x53, 0xff, + 0x7f, 0xa9, 0xa5, 0x7e, 0x72, 0x5c, 0x33, 0xb2, 0x93, 0x80, 0xd6, 0xe1, 0x36, 0x65, 0xcc, 0x6a, + 0xd1, 0x64, 0x1b, 0x7c, 0xf3, 0x8b, 0xb6, 0xc1, 0x62, 0x7a, 0x1b, 0x54, 0x86, 0x2f, 0xe3, 0x47, + 0x93, 0x50, 0xde, 0xa6, 0x91, 0xe5, 0x58, 0x91, 0x45, 0x7e, 0xbb, 0x00, 0x55, 0xcb, 0xf3, 0xfc, + 0x48, 0xc4, 0xed, 0xb1, 0x79, 0xdb, 0x19, 0x69, 0x3a, 0x62, 0xd0, 0x95, 0xb5, 0x04, 0x50, 0x4e, + 0x89, 0xbe, 0x99, 0x52, 0x1c, 0x4c, 0xeb, 0x25, 0xef, 0x43, 0xa9, 0x6b, 0xed, 0xd3, 0x6e, 0x6c, + 0xed, 0xb6, 0xc6, 0xeb, 0xc1, 0x3d, 0x81, 0x95, 0x5b, 0x0f, 0x49, 0x44, 0xa5, 0x68, 0xe9, 0x6d, + 0x58, 0xc8, 0x77, 0xf4, 0x69, 0x66, 0x94, 0x2f, 0x46, 0x4a, 0xcd, 0xd3, 0x34, 0x35, 0xff, 0xbb, + 0x02, 0xb0, 0xe3, 0x3b, 0xb4, 0x19, 0x59, 0x51, 0x9f, 0x91, 0x25, 0x98, 0x70, 0x1d, 0x75, 0x15, + 0x81, 0xea, 0xed, 0xc4, 0x56, 0x03, 0x27, 0x5c, 0x47, 0xa7, 0x38, 0x26, 0x4e, 0x4d, 0x71, 0x7c, + 0x03, 0xaa, 0x8e, 0xcb, 0x82, 0xae, 0x75, 0xb4, 0x33, 0xc4, 0x17, 0x68, 0x24, 0x2c, 0x4c, 0xcb, + 0x91, 0x57, 0xd5, 0xf9, 0x95, 0x07, 0xc5, 0xc8, 0x9d, 0xdf, 0x32, 0xef, 0x5e, 0xea, 0x0c, 0xbf, + 0x01, 0x33, 0x71, 0x0a, 0x41, 0x68, 0x29, 0x8a, 0x56, 0xf1, 0xa9, 0x9f, 0xd9, 0x4b, 0xf1, 0x30, + 0x23, 0x99, 0x4f, 0x71, 0x94, 0x9e, 0x4b, 0x8a, 0xa3, 0x01, 0x0b, 0x2c, 0xf2, 0x43, 0xea, 0xc4, + 0x12, 0x5b, 0x0d, 0x83, 0x64, 0x06, 0xba, 0xd0, 0xcc, 0xf1, 0x71, 0xa0, 0x05, 0xd9, 0x85, 0xc5, + 0xb8, 0x13, 0xe9, 0x01, 0x1a, 0x97, 0x04, 0xd2, 0x55, 0x85, 0xb4, 0xf8, 0xee, 0x10, 0x19, 0x1c, + 0xda, 0x92, 0x7c, 0x0b, 0x66, 0xe3, 0x6e, 0x36, 0x6d, 0x3f, 0xa0, 0xc6, 0xa2, 0x80, 0xd2, 0xde, + 0xf2, 0x5e, 0x9a, 0x89, 0x59, 0x59, 0xf2, 0x35, 0x28, 0x06, 0x6d, 0x8b, 0x51, 0x95, 0x11, 0x89, + 0x03, 0xdf, 0xe2, 0x2e, 0x27, 0x3e, 0x39, 0xae, 0x55, 0xf8, 0x9a, 0x89, 0x0f, 0x94, 0x82, 0xe4, + 0x06, 0xc0, 0xbe, 0xdf, 0xf7, 0x1c, 0x2b, 0x3c, 0xda, 0x6a, 0x88, 0x30, 0x28, 0xf5, 0x18, 0x53, + 0xd7, 0x1c, 0x4c, 0x49, 0x71, 0x6b, 0xdb, 0x93, 0x76, 0x47, 0x25, 0x36, 0xb4, 0xb5, 0xd5, 0xe6, + 0x48, 0xf1, 0xc9, 0x7b, 0x50, 0x61, 0x91, 0x15, 0x46, 0xd4, 0x59, 0x8b, 0x54, 0x76, 0xe3, 0xff, + 0xa7, 0xfc, 0x42, 0xfd, 0x34, 0x9a, 0xac, 0x69, 0x8f, 0x46, 0x16, 0xf7, 0x14, 0xf7, 0xdc, 0x1e, + 0x4d, 0x5c, 0x92, 0x66, 0x0c, 0x82, 0x09, 0x1e, 0xf9, 0x55, 0x80, 0x03, 0xd7, 0x73, 0x59, 0x5b, + 0xa0, 0x57, 0x9f, 0x1a, 0x5d, 0x8f, 0x73, 0x53, 0xa3, 0x60, 0x0a, 0x91, 0x07, 0x4c, 0x81, 0xef, + 0x6c, 0xed, 0x1a, 0x33, 0x62, 0x94, 0x3a, 0x60, 0xda, 0xe5, 0x44, 0x94, 0x3c, 0x72, 0x1d, 0xca, + 0x8e, 0x45, 0x7b, 0xbe, 0x47, 0x1d, 0x63, 0x36, 0x49, 0x5a, 0x34, 0x14, 0x0d, 0x35, 0x97, 0x7c, + 0x0f, 0x4a, 0xae, 0xf0, 0x17, 0x8d, 0x39, 0xd1, 0xd5, 0x6f, 0x8d, 0x76, 0xa3, 0x08, 0x88, 0x3a, + 0x70, 0x73, 0x25, 0xff, 0x46, 0x05, 0x4b, 0x6c, 0x98, 0xf6, 0xfb, 0x91, 0xd0, 0x30, 0x2f, 0x34, + 0x8c, 0x96, 0xa4, 0xb9, 0x2f, 0x31, 0xe4, 0xe3, 0x98, 0xfa, 0xc0, 0x18, 0x99, 0x8f, 0xd7, 0x6e, + 0xbb, 0x5d, 0x27, 0xa4, 0x9e, 0xb1, 0x20, 0xe2, 0x31, 0x31, 0xde, 0x75, 0x45, 0x43, 0xcd, 0x25, + 0xbf, 0x00, 0xb3, 0x7e, 0x3f, 0x12, 0xfb, 0x86, 0x6f, 0x3b, 0x66, 0x5c, 0x14, 0xe2, 0x17, 0xf9, + 0x2e, 0xbe, 0x9f, 0x66, 0x60, 0x56, 0xce, 0x9c, 0x83, 0x99, 0xf4, 0x8b, 0xb2, 0xf9, 0x87, 0x13, + 0x10, 0xf7, 0xe3, 0xa7, 0xc1, 0xd5, 0x26, 0x26, 0x94, 0x42, 0xca, 0xfa, 0xdd, 0x48, 0x59, 0x6a, + 0xb1, 0xd6, 0x28, 0x28, 0xa8, 0x38, 0xe6, 0x21, 0xcc, 0xf2, 0xde, 0x76, 0xbb, 0xb4, 0xdb, 0x8c, + 0x68, 0xc0, 0xc8, 0x01, 0x14, 0x19, 0xff, 0x43, 0xcd, 0xc9, 0x68, 0x6f, 0x55, 0xb1, 0x9d, 0xe2, + 0x90, 0xc9, 0x7e, 0x17, 0x0a, 0x50, 0xc2, 0x9b, 0x3f, 0x98, 0x80, 0x8a, 0x9e, 0xa7, 0x33, 0xa4, + 0xd7, 0x5f, 0x86, 0x69, 0x87, 0x1e, 0x58, 0x7c, 0x34, 0xea, 0xf9, 0x88, 0x6f, 0xab, 0x86, 0x24, + 0x61, 0xcc, 0x23, 0xb5, 0xf8, 0x26, 0x94, 0x43, 0x16, 0x29, 0xaf, 0xb4, 0xa3, 0x49, 0x3a, 0x50, + 0x11, 0x7f, 0x6c, 0xc6, 0x4f, 0xdd, 0xa3, 0xae, 0xfb, 0xc3, 0x18, 0x45, 0x26, 0x12, 0xf4, 0x27, + 0x26, 0xf8, 0xb9, 0x27, 0xea, 0xe2, 0x59, 0x9e, 0xa8, 0xcd, 0x4d, 0xe0, 0x86, 0xe1, 0xd6, 0x3a, + 0x79, 0x0b, 0xca, 0x4c, 0x6d, 0x5d, 0x35, 0x2f, 0x5f, 0x8e, 0x43, 0xe8, 0x78, 0x4b, 0x3f, 0x39, + 0xae, 0xcd, 0x0a, 0xe1, 0x98, 0x80, 0xba, 0x89, 0xb9, 0x0a, 0xd5, 0xd4, 0x93, 0x1e, 0x9f, 0x61, + 0xee, 0xaf, 0xe4, 0x67, 0xb8, 0x61, 0x45, 0x16, 0x0a, 0x8e, 0xf9, 0x64, 0x02, 0x16, 0x90, 0x32, + 0xbf, 0x1f, 0xda, 0x34, 0x9d, 0xd6, 0xb5, 0xec, 0xd4, 0x4b, 0x8f, 0x76, 0x71, 0xd6, 0x04, 0x15, + 0x15, 0x97, 0x5f, 0x37, 0x3d, 0x1a, 0xb6, 0xf4, 0x61, 0x53, 0x8b, 0xa4, 0xaf, 0x9b, 0xed, 0x34, + 0x13, 0xb3, 0xb2, 0xe4, 0x55, 0x28, 0xf7, 0x2c, 0xcf, 0x3d, 0xa0, 0x2c, 0xca, 0xe7, 0x5b, 0xb6, + 0x15, 0x1d, 0xb5, 0x04, 0xb9, 0x05, 0x17, 0x19, 0x8d, 0xee, 0x1f, 0x7a, 0x34, 0x44, 0x7a, 0x40, + 0x43, 0x91, 0x86, 0x9f, 0x12, 0x26, 0xf3, 0x45, 0xd5, 0xec, 0x62, 0x33, 0x2f, 0x80, 0x83, 0x6d, + 0xc4, 0xd5, 0xdd, 0xb7, 0x6d, 0xca, 0xd8, 0xba, 0xef, 0x39, 0xae, 0xae, 0x66, 0x48, 0x5f, 0xdd, + 0x39, 0x3e, 0x0e, 0xb4, 0xe0, 0x28, 0x07, 0x96, 0xdb, 0xed, 0x87, 0x34, 0x41, 0x29, 0x65, 0x51, + 0x36, 0x73, 0x7c, 0x1c, 0x68, 0x61, 0xfe, 0x73, 0x01, 0x66, 0x91, 0x46, 0xe1, 0x91, 0x9e, 0x94, + 0x1a, 0x14, 0xbb, 0x6e, 0xcf, 0x95, 0xa9, 0xa3, 0xa2, 0xdc, 0xc9, 0xf7, 0x38, 0x01, 0x25, 0x9d, + 0x34, 0xa0, 0x1a, 0xf2, 0x16, 0xbb, 0x7e, 0xd7, 0xb5, 0xe3, 0x09, 0x37, 0x63, 0x6f, 0x0c, 0x13, + 0xd6, 0x93, 0xec, 0x27, 0xa6, 0x9b, 0x11, 0x0f, 0xa6, 0xf7, 0xe5, 0xbb, 0x9e, 0x7a, 0x86, 0x1a, + 0xcd, 0xd8, 0xab, 0xb7, 0x41, 0x91, 0x83, 0x89, 0x1f, 0x0a, 0x9f, 0x24, 0x7f, 0x62, 0xac, 0xc4, + 0xfc, 0x61, 0x01, 0x20, 0x29, 0x30, 0x20, 0x1d, 0x28, 0xb3, 0x9b, 0xf5, 0xbe, 0xdd, 0xd1, 0x39, + 0xb2, 0x11, 0x9f, 0x52, 0x14, 0x48, 0xb2, 0x73, 0x62, 0x0a, 0x6a, 0x05, 0x5f, 0xf4, 0xfc, 0xfc, + 0x97, 0x93, 0xa0, 0x5b, 0xf1, 0x3d, 0x49, 0x3d, 0x27, 0xf0, 0x5d, 0x2f, 0xca, 0x3f, 0x72, 0x6e, + 0x28, 0x3a, 0x6a, 0x09, 0x7e, 0x4c, 0xf6, 0xe5, 0x20, 0x26, 0xb2, 0xc7, 0x44, 0xf5, 0x41, 0x71, + 0xb9, 0x5c, 0x48, 0x5b, 0xc9, 0xfb, 0xa6, 0x96, 0x43, 0x41, 0x45, 0xc5, 0xe5, 0xb7, 0x63, 0x9c, + 0x24, 0x56, 0x5b, 0x5b, 0xdc, 0x8e, 0x71, 0x3e, 0x19, 0x35, 0x97, 0xb4, 0x61, 0xde, 0x12, 0x3b, + 0x32, 0x49, 0x7c, 0x3f, 0x55, 0x0e, 0x3f, 0x79, 0xdc, 0xce, 0xa2, 0x60, 0x1e, 0x96, 0x6b, 0x62, + 0x49, 0xf3, 0xa7, 0x4f, 0xe5, 0x6b, 0x4d, 0xcd, 0x2c, 0x0a, 0xe6, 0x61, 0xb9, 0x63, 0x18, 0xfa, + 0x5d, 0xba, 0x86, 0x3b, 0xca, 0x01, 0xd5, 0x8e, 0x21, 0x4a, 0x32, 0xc6, 0x7c, 0xf3, 0x77, 0x0b, + 0x30, 0xd7, 0xb4, 0x43, 0x37, 0x88, 0xb4, 0xc9, 0xda, 0x11, 0x55, 0x09, 0x91, 0xc5, 0x5d, 0x36, + 0xb5, 0xa7, 0x5e, 0x3a, 0x25, 0x87, 0x28, 0x85, 0x32, 0x45, 0x0b, 0x92, 0x84, 0x09, 0x84, 0x88, + 0xf4, 0x85, 0x51, 0xcc, 0xaf, 0x6d, 0x53, 0x50, 0x51, 0x71, 0xcd, 0x1f, 0x15, 0xa0, 0xac, 0x5f, + 0xec, 0xbe, 0x02, 0x45, 0xf1, 0x10, 0xa4, 0xf6, 0x8e, 0xbe, 0x03, 0xd7, 0x39, 0x11, 0x25, 0x8f, + 0x0b, 0x09, 0x2f, 0x54, 0x01, 0xa7, 0x2e, 0x4a, 0x2b, 0x8c, 0x50, 0xf2, 0xf8, 0xa6, 0xa5, 0x9e, + 0xa3, 0xf6, 0x8b, 0xde, 0xb4, 0x1b, 0x9e, 0x83, 0x9c, 0x2e, 0x1e, 0xb3, 0xfd, 0xb0, 0x67, 0x45, + 0xf9, 0x3c, 0xc4, 0xa6, 0xa0, 0xa2, 0xe2, 0x9a, 0xef, 0xc0, 0x7c, 0xb3, 0xcf, 0x02, 0xea, 0xe9, + 0xb0, 0xe3, 0xe9, 0xde, 0xf1, 0xcd, 0x59, 0xa8, 0xa6, 0xaa, 0xff, 0xcc, 0xff, 0xbc, 0x02, 0xfa, + 0x5d, 0xfb, 0x67, 0xaf, 0xe3, 0x23, 0x85, 0x8e, 0xb6, 0x76, 0xe4, 0x8b, 0xe3, 0x3b, 0xf2, 0x7a, + 0xdd, 0x73, 0xce, 0x7c, 0x2b, 0x71, 0xe6, 0x4b, 0xe7, 0xe0, 0xcc, 0xeb, 0x93, 0x38, 0xe0, 0xd0, + 0xff, 0x5e, 0x01, 0x66, 0x3c, 0xdf, 0xa1, 0xf1, 0x79, 0x37, 0xa6, 0x85, 0x03, 0x79, 0x7f, 0xac, + 0x49, 0x5c, 0xd9, 0x49, 0x21, 0xca, 0x24, 0x8b, 0xce, 0x04, 0xa4, 0x59, 0x98, 0x51, 0x4d, 0x36, + 0xa1, 0x6c, 0x1d, 0xf0, 0x08, 0x2c, 0x3a, 0x52, 0x0f, 0xf4, 0x57, 0x87, 0x59, 0x80, 0x35, 0x25, + 0x23, 0x8d, 0x6b, 0xfc, 0x85, 0xba, 0x2d, 0xbf, 0x9d, 0x7a, 0x2a, 0xd1, 0x23, 0x42, 0xd4, 0x51, + 0x6f, 0xa7, 0x38, 0x5b, 0x94, 0xf2, 0x6b, 0x14, 0x05, 0xb5, 0x02, 0xee, 0xae, 0xcb, 0x18, 0x4f, + 0x04, 0xb8, 0x65, 0xe9, 0xae, 0xcb, 0xf8, 0x0f, 0x15, 0x87, 0xb4, 0x62, 0xef, 0xbc, 0x2a, 0x26, + 0xb7, 0x3e, 0x72, 0xc4, 0xa2, 0x1d, 0xfe, 0xe1, 0xee, 0x39, 0xb9, 0x93, 0x36, 0xa2, 0x33, 0x67, + 0x31, 0xa2, 0xb3, 0xa7, 0x1a, 0xd0, 0x16, 0x94, 0x98, 0x30, 0xd1, 0x22, 0xb0, 0xad, 0xde, 0x58, + 0x1f, 0xed, 0x86, 0xcf, 0x58, 0x79, 0x39, 0x3b, 0x92, 0x86, 0x0a, 0x9e, 0xf8, 0x50, 0x0e, 0x95, + 0x03, 0xab, 0x62, 0xe3, 0xd1, 0xf2, 0xf2, 0x79, 0x2f, 0x58, 0xee, 0x8f, 0x98, 0x8a, 0x5a, 0x09, + 0x79, 0x0f, 0x26, 0x1d, 0xab, 0xa5, 0xa2, 0xe4, 0x6f, 0x8f, 0x5c, 0xca, 0x10, 0xab, 0x11, 0x65, + 0x77, 0x8d, 0xb5, 0x5b, 0xc8, 0x51, 0x49, 0x07, 0xa6, 0x99, 0xb4, 0xd8, 0xc6, 0xc2, 0x18, 0xd5, + 0x6c, 0x39, 0xab, 0x2f, 0xe3, 0x26, 0x45, 0xc4, 0x58, 0x03, 0xd9, 0x80, 0xe9, 0xc7, 0x7e, 0xb7, + 0xdf, 0x53, 0xe1, 0x75, 0xf5, 0xc6, 0xd2, 0xb0, 0xd5, 0x7e, 0x28, 0x44, 0x12, 0x23, 0x20, 0xbf, + 0x19, 0xc6, 0x6d, 0xc9, 0x6f, 0x16, 0x60, 0x8e, 0x1f, 0x1d, 0xbd, 0x0f, 0x98, 0x41, 0xc6, 0xd8, + 0xa9, 0x0f, 0x18, 0x0d, 0x93, 0x1d, 0xf6, 0x82, 0x52, 0x3b, 0xb7, 0x95, 0xd1, 0x80, 0x39, 0x8d, + 0x24, 0x80, 0x32, 0x73, 0x1d, 0x6a, 0x5b, 0x21, 0x33, 0x2e, 0x9d, 0x9b, 0xf6, 0xc4, 0xb1, 0x54, + 0xd8, 0xa8, 0xb5, 0x90, 0xdf, 0x12, 0x15, 0x88, 0xaa, 0x06, 0x57, 0xd5, 0x45, 0x2f, 0x9e, 0x67, + 0x5d, 0xf4, 0x25, 0x59, 0x7e, 0x98, 0xd1, 0x80, 0x79, 0x95, 0xe4, 0x3e, 0x5c, 0xe6, 0xe1, 0xd8, + 0x63, 0xda, 0xa0, 0x96, 0xd3, 0x75, 0x3d, 0xda, 0xa4, 0xb6, 0xef, 0x39, 0xcc, 0xb8, 0x2c, 0x5e, + 0x4e, 0x5e, 0x3c, 0x39, 0xae, 0x5d, 0x5e, 0x1b, 0x26, 0x80, 0xc3, 0xdb, 0x91, 0x0f, 0x61, 0x36, + 0x4c, 0x07, 0x25, 0xc6, 0x0b, 0x63, 0x3c, 0xdb, 0x67, 0xc2, 0x1b, 0x99, 0xbe, 0xc9, 0x90, 0x30, + 0xab, 0x8b, 0xbc, 0x0e, 0xd5, 0x40, 0x59, 0x2a, 0x97, 0xf5, 0x8c, 0x2b, 0x62, 0x0c, 0xe2, 0x46, + 0xdd, 0x4d, 0xc8, 0x98, 0x96, 0x21, 0x0f, 0xa0, 0x1a, 0xf9, 0x5d, 0x1a, 0xaa, 0x27, 0x06, 0x43, + 0x2c, 0xfe, 0xf2, 0xb0, 0x9d, 0xbc, 0xa7, 0xc5, 0x92, 0x04, 0x76, 0x42, 0x63, 0x98, 0xc6, 0xe1, + 0xc1, 0x2d, 0xb3, 0xdb, 0xd4, 0xe9, 0x77, 0x69, 0x28, 0x22, 0xf9, 0x17, 0xb3, 0xc1, 0x6d, 0x33, + 0xcd, 0xc4, 0xac, 0x2c, 0x0f, 0x57, 0x83, 0xd0, 0xf5, 0x43, 0x37, 0x3a, 0x5a, 0xef, 0x5a, 0x8c, + 0x09, 0x80, 0x25, 0x01, 0xa0, 0xc3, 0xd5, 0xdd, 0xbc, 0x00, 0x0e, 0xb6, 0xe1, 0x31, 0x41, 0x4c, + 0x34, 0xbe, 0x24, 0x62, 0x42, 0x61, 0x96, 0xe2, 0xb6, 0xa8, 0xb9, 0xa7, 0x14, 0x31, 0x5d, 0x1d, + 0xa5, 0x88, 0x89, 0x38, 0x70, 0xd5, 0xea, 0x47, 0x7e, 0x8f, 0x13, 0xb2, 0x4d, 0xf6, 0xfc, 0x0e, + 0xf5, 0x8c, 0x6b, 0xe2, 0xae, 0xba, 0x76, 0x72, 0x5c, 0xbb, 0xba, 0xf6, 0x39, 0x72, 0xf8, 0xb9, + 0x28, 0xa4, 0x07, 0x65, 0xaa, 0x0a, 0xb1, 0x8c, 0x2f, 0x8f, 0x71, 0x49, 0x64, 0xab, 0xb9, 0xe4, + 0x04, 0xc5, 0x34, 0xd4, 0x2a, 0xc8, 0x1e, 0x54, 0xdb, 0x3e, 0x8b, 0xd6, 0xba, 0xae, 0xc5, 0x28, + 0x33, 0x5e, 0x12, 0xfb, 0x64, 0xe8, 0xfd, 0x76, 0x3b, 0x16, 0x4b, 0xb6, 0xc9, 0xed, 0xa4, 0x25, + 0xa6, 0x61, 0x08, 0x15, 0x01, 0x52, 0x5f, 0xac, 0x9a, 0xef, 0x45, 0xf4, 0x83, 0xc8, 0x58, 0x16, + 0x63, 0x79, 0x65, 0x18, 0xf2, 0xae, 0xef, 0x34, 0xb3, 0xd2, 0xf2, 0x94, 0xe7, 0x88, 0x98, 0xc7, + 0x24, 0x6f, 0xc0, 0x4c, 0xe0, 0x3b, 0xcd, 0x80, 0xda, 0xbb, 0x56, 0x64, 0xb7, 0x8d, 0x5a, 0xf6, + 0x81, 0x64, 0x37, 0xc5, 0xc3, 0x8c, 0xe4, 0xd2, 0x3b, 0x70, 0x71, 0xc0, 0x9f, 0x7a, 0xaa, 0xd7, + 0xa4, 0x3f, 0x2b, 0x40, 0xda, 0x9d, 0x3d, 0x77, 0xbf, 0xff, 0x16, 0x5c, 0x54, 0xbf, 0x6b, 0xe2, + 0x97, 0x6d, 0xb7, 0xaf, 0x2b, 0x81, 0x53, 0xa9, 0x1d, 0xcc, 0x0b, 0xe0, 0x60, 0x1b, 0xf3, 0xcf, + 0x0b, 0x30, 0x9b, 0x31, 0xdf, 0xe7, 0x1e, 0x15, 0x6e, 0x02, 0xe9, 0xb9, 0x61, 0xe8, 0x87, 0xf2, + 0x0e, 0xdc, 0xe6, 0x7b, 0x99, 0xa9, 0x82, 0x62, 0x51, 0x88, 0xb2, 0x3d, 0xc0, 0xc5, 0x21, 0x2d, + 0xcc, 0xbf, 0x2a, 0x40, 0x92, 0x3b, 0xd4, 0xd5, 0x57, 0x85, 0x53, 0xab, 0xaf, 0x5e, 0x85, 0xf2, + 0x23, 0xe6, 0x7b, 0xbb, 0x49, 0x8d, 0x96, 0x9e, 0xd0, 0x3b, 0xcd, 0xfb, 0x3b, 0x42, 0x52, 0x4b, + 0x08, 0xe9, 0xf7, 0x37, 0xdd, 0x6e, 0x34, 0x58, 0xc9, 0x74, 0xe7, 0x97, 0x24, 0x1d, 0xb5, 0x04, + 0x59, 0x85, 0x8a, 0x4e, 0x57, 0xab, 0x70, 0x52, 0x4f, 0x82, 0xce, 0xd5, 0x62, 0x22, 0x63, 0xfe, + 0x78, 0x02, 0xca, 0x71, 0xae, 0x97, 0xfc, 0x5a, 0xca, 0x59, 0x96, 0x13, 0xfc, 0xb5, 0xb3, 0x3d, + 0xa2, 0xdc, 0xdf, 0x7f, 0x44, 0xed, 0x88, 0x7b, 0xc4, 0x49, 0x72, 0x34, 0xa1, 0xa5, 0x3c, 0x64, + 0x1b, 0xa6, 0x58, 0x40, 0xed, 0xb1, 0x7e, 0x63, 0xa6, 0x53, 0xd3, 0x01, 0xb5, 0x93, 0x09, 0xe6, + 0x5f, 0x28, 0xc0, 0x49, 0x07, 0x4a, 0x4c, 0x3c, 0x96, 0xaa, 0xc0, 0x73, 0x7d, 0xcc, 0x0c, 0x38, + 0x87, 0x4a, 0x57, 0x07, 0xf0, 0x6f, 0x54, 0x2a, 0xcc, 0x4f, 0x0a, 0x30, 0x13, 0x8b, 0xde, 0x73, + 0x59, 0x44, 0xbe, 0x3b, 0x30, 0x89, 0x2b, 0x67, 0x9b, 0x44, 0xde, 0x5a, 0x4c, 0xa1, 0x5e, 0xe0, + 0x98, 0x92, 0x9a, 0xc0, 0x7d, 0x28, 0xba, 0xa2, 0xaa, 0x7a, 0x9c, 0xd7, 0x87, 0xb8, 0xbf, 0x49, + 0xe4, 0x20, 0xab, 0xaa, 0x25, 0xb4, 0xf9, 0xd7, 0x97, 0x92, 0x21, 0xf1, 0x69, 0x25, 0x1e, 0x54, + 0xe2, 0x03, 0x1e, 0xbf, 0x2a, 0xbc, 0x35, 0x56, 0x50, 0x98, 0x6c, 0xca, 0x98, 0xc2, 0x30, 0x51, + 0x41, 0x6e, 0x00, 0x50, 0x6e, 0xd9, 0x64, 0xee, 0x6e, 0x22, 0x9b, 0x74, 0xdf, 0xd0, 0x1c, 0x4c, + 0x49, 0x3d, 0xff, 0x84, 0xc3, 0xf0, 0x2b, 0x7a, 0xea, 0x99, 0x5c, 0xd1, 0x57, 0xcf, 0xfd, 0x8a, + 0x7e, 0xe9, 0xd9, 0x5f, 0xd1, 0xa9, 0x80, 0xa4, 0x38, 0x46, 0x40, 0xf2, 0x21, 0x2c, 0xca, 0x3f, + 0xd7, 0xbb, 0x96, 0xdb, 0xd3, 0xfb, 0x45, 0x95, 0x51, 0x7d, 0x75, 0xe8, 0xc5, 0x4c, 0x43, 0xe6, + 0xb2, 0x88, 0x7a, 0xd1, 0xc3, 0xa4, 0x65, 0xf2, 0x06, 0xff, 0x70, 0x08, 0x1c, 0x0e, 0x55, 0x92, + 0xf7, 0x60, 0xa7, 0xcf, 0xe0, 0xc1, 0xfe, 0xa8, 0x00, 0x97, 0xad, 0x61, 0x3f, 0xb6, 0x52, 0x79, + 0x8c, 0x3b, 0x63, 0xc5, 0x13, 0x19, 0x44, 0x15, 0x0f, 0x0c, 0x63, 0xe1, 0xf0, 0x3e, 0x90, 0x97, + 0x93, 0x90, 0xb4, 0x22, 0x36, 0xd5, 0xf0, 0x60, 0xf2, 0xfb, 0xf9, 0x54, 0x10, 0x88, 0xd9, 0x6e, + 0x8e, 0x6d, 0xb0, 0xcf, 0x21, 0x1d, 0x54, 0x1d, 0x23, 0x1d, 0x94, 0x0b, 0x2f, 0x66, 0xce, 0x29, + 0xbc, 0xf0, 0x60, 0xc1, 0xed, 0x59, 0x2d, 0xba, 0xdb, 0xef, 0x76, 0x65, 0x06, 0x9c, 0x19, 0xb3, + 0x02, 0x7b, 0x68, 0xed, 0x2b, 0x0f, 0xf7, 0xba, 0xf2, 0x7e, 0xd4, 0x6f, 0x59, 0xc9, 0x5b, 0xd3, + 0x56, 0x0e, 0x09, 0x07, 0xb0, 0xf9, 0xb6, 0xe4, 0x6e, 0xeb, 0x0e, 0x8d, 0xf8, 0x6c, 0x8b, 0x4c, + 0x89, 0xfa, 0x51, 0xe9, 0xed, 0x84, 0x8c, 0x69, 0x19, 0x72, 0x17, 0x2a, 0x8e, 0xc7, 0xd4, 0x4b, + 0xd3, 0xbc, 0xb0, 0x52, 0xaf, 0x71, 0xdb, 0xd6, 0xd8, 0x69, 0xea, 0x37, 0xa6, 0xab, 0x83, 0xbf, + 0x9a, 0x5f, 0xd1, 0x7c, 0x4c, 0xda, 0x93, 0x6d, 0x01, 0xa6, 0x0a, 0xc1, 0x65, 0x6a, 0xe3, 0xda, + 0x29, 0x1e, 0x72, 0x63, 0x27, 0xae, 0x5b, 0x9f, 0x55, 0xea, 0x54, 0x79, 0x77, 0x82, 0x40, 0x5e, + 0x81, 0x92, 0xef, 0x6d, 0x7c, 0xe0, 0x46, 0xc6, 0xc5, 0x6c, 0x06, 0xfc, 0xbe, 0xa0, 0xa2, 0xe2, + 0x92, 0x07, 0x70, 0x25, 0x8a, 0xba, 0x2a, 0xb4, 0x5d, 0x3b, 0x88, 0x68, 0x18, 0xd7, 0x6b, 0x88, + 0x82, 0x9d, 0x62, 0xfd, 0x4b, 0x27, 0xc7, 0xb5, 0x2b, 0x7b, 0x7b, 0xf7, 0x86, 0x89, 0xe0, 0x69, + 0x6d, 0x4f, 0x0f, 0xba, 0x2f, 0x8d, 0x18, 0x74, 0xa7, 0xe3, 0xbc, 0xc5, 0xcf, 0x8d, 0xf3, 0x06, + 0xe2, 0xd2, 0xcb, 0x4f, 0x11, 0x97, 0xbe, 0x27, 0xaa, 0x52, 0x6e, 0xad, 0xab, 0x98, 0xfe, 0xcd, + 0xd1, 0x52, 0x89, 0x1c, 0x41, 0xbe, 0x4d, 0x8a, 0x3f, 0x51, 0x62, 0x92, 0x5d, 0x58, 0x0c, 0x7c, + 0x67, 0x20, 0xac, 0x15, 0x41, 0x7c, 0xaa, 0x9e, 0x69, 0x77, 0x88, 0x0c, 0x0e, 0x6d, 0x29, 0x6c, + 0x69, 0x42, 0x37, 0x0c, 0x31, 0x31, 0xd2, 0x96, 0x26, 0x64, 0x4c, 0xcb, 0xe4, 0xa3, 0xbc, 0x17, + 0x9f, 0x59, 0x94, 0xb7, 0xf4, 0x1c, 0xa2, 0xbc, 0x2f, 0x3d, 0xbf, 0x28, 0xef, 0xd3, 0x32, 0xcc, + 0x65, 0xfd, 0xd7, 0xa4, 0x20, 0xac, 0x70, 0xd6, 0x82, 0xb0, 0x4c, 0xc5, 0xd6, 0xc4, 0x33, 0xad, + 0xd8, 0x9a, 0x3c, 0xf7, 0x8a, 0xad, 0x54, 0x65, 0xda, 0xd4, 0x17, 0x54, 0xa6, 0xad, 0xc1, 0xbc, + 0xed, 0xf7, 0x02, 0xf1, 0xcb, 0x11, 0x55, 0x9f, 0x24, 0x6b, 0x08, 0xf4, 0x73, 0xe7, 0x7a, 0x96, + 0x8d, 0x79, 0x79, 0xc2, 0xa0, 0xe8, 0x89, 0x86, 0xa5, 0x31, 0x4a, 0x62, 0xb3, 0x0b, 0x26, 0x2e, + 0x4a, 0x55, 0x95, 0xaa, 0xdd, 0x74, 0xa9, 0x5e, 0xea, 0xe2, 0x8e, 0xc6, 0x7c, 0xb6, 0x0c, 0x91, + 0x19, 0x15, 0xa1, 0xff, 0x97, 0xcf, 0x43, 0x7f, 0xb6, 0xe6, 0x51, 0xf5, 0x24, 0x79, 0x01, 0xce, + 0x72, 0x31, 0xdf, 0x13, 0x12, 0xc2, 0x0b, 0xc1, 0x30, 0x37, 0x8c, 0xa9, 0x57, 0xa5, 0xcf, 0x73, + 0x06, 0x97, 0x95, 0x96, 0x17, 0x86, 0x3a, 0x72, 0x0c, 0x4f, 0x41, 0x4e, 0x97, 0xbd, 0x95, 0x9f, + 0x55, 0xd9, 0xdb, 0xd2, 0x91, 0x2c, 0xc7, 0x3d, 0xb5, 0x92, 0xf7, 0x41, 0xb6, 0xba, 0xfe, 0x9d, + 0x11, 0xff, 0x1f, 0x95, 0xb8, 0xe0, 0x37, 0x5d, 0x45, 0xfc, 0x1b, 0x05, 0x58, 0x1c, 0xb6, 0x2c, + 0x43, 0x7a, 0xd1, 0xcc, 0xf6, 0x62, 0xbc, 0x70, 0x2d, 0x6d, 0x5a, 0xfe, 0xb5, 0x98, 0x0a, 0x0e, + 0x23, 0x1a, 0xfc, 0xec, 0xe5, 0x78, 0xa4, 0x97, 0xe3, 0xcc, 0x2f, 0xa4, 0x8b, 0xcf, 0xf1, 0x17, + 0xd2, 0xa5, 0x11, 0x7e, 0x21, 0x3d, 0xfd, 0x3c, 0x7f, 0x21, 0x5d, 0x3e, 0xe3, 0x2f, 0xa4, 0x2b, + 0xcf, 0xfe, 0x17, 0xd2, 0x9f, 0x15, 0x60, 0x21, 0x5f, 0xb0, 0xfd, 0x1c, 0x92, 0x64, 0x9d, 0x4c, + 0x92, 0x6c, 0x6b, 0x2c, 0x63, 0xae, 0x8b, 0xc4, 0x4f, 0x49, 0x96, 0x99, 0x3f, 0x29, 0xc0, 0x40, + 0x51, 0xfa, 0x73, 0xc8, 0x63, 0x3d, 0xca, 0xe6, 0xb1, 0x36, 0xce, 0x65, 0x90, 0xa7, 0xe4, 0xb3, + 0xfe, 0x6b, 0xc8, 0x10, 0xff, 0x57, 0xf2, 0x5a, 0x19, 0xd3, 0x36, 0xf1, 0xec, 0x4d, 0x5b, 0x7d, + 0xe5, 0xe3, 0xcf, 0x96, 0x2f, 0x7c, 0xf2, 0xd9, 0xf2, 0x85, 0x4f, 0x3f, 0x5b, 0xbe, 0xf0, 0xd1, + 0xc9, 0x72, 0xe1, 0xe3, 0x93, 0xe5, 0xc2, 0x27, 0x27, 0xcb, 0x85, 0x4f, 0x4f, 0x96, 0x0b, 0x3f, + 0x39, 0x59, 0x2e, 0xfc, 0xc1, 0x3f, 0x2d, 0x5f, 0xf8, 0x95, 0x72, 0x8c, 0xfb, 0x3f, 0x01, 0x00, + 0x00, 0xff, 0xff, 0x79, 0x64, 0x09, 0xb8, 0xe0, 0x4d, 0x00, 0x00, } func (m *ArchiveStrategy) Marshal() (dAtA []byte, err error) { @@ -2106,6 +2140,42 @@ func (m *ArtifactoryAuth) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *Backoff) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Backoff) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Backoff) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i -= len(m.MaxDuration) + copy(dAtA[i:], m.MaxDuration) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.MaxDuration))) + i-- + dAtA[i] = 0x1a + i = encodeVarintGenerated(dAtA, i, uint64(m.Factor)) + i-- + dAtA[i] = 0x10 + i -= len(m.Duration) + copy(dAtA[i:], m.Duration) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.Duration))) + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func (m *ContinueOn) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -3395,6 +3465,18 @@ func (m *RetryStrategy) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Backoff != nil { + { + size, err := m.Backoff.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } i -= len(m.RetryPolicy) copy(dAtA[i:], m.RetryPolicy) i = encodeVarintGenerated(dAtA, i, uint64(len(m.RetryPolicy))) @@ -5152,6 +5234,20 @@ func (m *ArtifactoryAuth) Size() (n int) { return n } +func (m *Backoff) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Duration) + n += 1 + l + sovGenerated(uint64(l)) + n += 1 + sovGenerated(uint64(m.Factor)) + l = len(m.MaxDuration) + n += 1 + l + sovGenerated(uint64(l)) + return n +} + func (m *ContinueOn) Size() (n int) { if m == nil { return 0 @@ -5639,6 +5735,10 @@ func (m *RetryStrategy) Size() (n int) { } l = len(m.RetryPolicy) n += 1 + l + sovGenerated(uint64(l)) + if m.Backoff != nil { + l = m.Backoff.Size() + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -6292,6 +6392,18 @@ func (this *ArtifactoryAuth) String() string { }, "") return s } +func (this *Backoff) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&Backoff{`, + `Duration:` + fmt.Sprintf("%v", this.Duration) + `,`, + `Factor:` + fmt.Sprintf("%v", this.Factor) + `,`, + `MaxDuration:` + fmt.Sprintf("%v", this.MaxDuration) + `,`, + `}`, + }, "") + return s +} func (this *ContinueOn) String() string { if this == nil { return "nil" @@ -6603,6 +6715,7 @@ func (this *RetryStrategy) String() string { s := strings.Join([]string{`&RetryStrategy{`, `Limit:` + valueToStringGenerated(this.Limit) + `,`, `RetryPolicy:` + fmt.Sprintf("%v", this.RetryPolicy) + `,`, + `Backoff:` + strings.Replace(this.Backoff.String(), "Backoff", "Backoff", 1) + `,`, `}`, }, "") return s @@ -8204,6 +8317,142 @@ func (m *ArtifactoryAuth) Unmarshal(dAtA []byte) error { } return nil } +func (m *Backoff) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Backoff: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Backoff: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Duration", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Duration = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Factor", wireType) + } + m.Factor = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Factor |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MaxDuration", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.MaxDuration = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ContinueOn) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -12592,6 +12841,42 @@ func (m *RetryStrategy) Unmarshal(dAtA []byte) error { } m.RetryPolicy = RetryPolicy(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Backoff", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Backoff == nil { + m.Backoff = &Backoff{} + } + if err := m.Backoff.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/workflow/v1alpha1/generated.proto b/pkg/apis/workflow/v1alpha1/generated.proto index 7a840a90ab7f..5c96ef7bad4a 100644 --- a/pkg/apis/workflow/v1alpha1/generated.proto +++ b/pkg/apis/workflow/v1alpha1/generated.proto @@ -112,6 +112,14 @@ message ArtifactoryAuth { optional k8s.io.api.core.v1.SecretKeySelector passwordSecret = 2; } +message Backoff { + optional string duration = 1; + + optional int32 factor = 2; + + optional string maxDuration = 3; +} + // ContinueOn defines if a workflow should continue even if a task or step fails/errors. // It can be specified if the workflow should continue when the pod errors, fails or both. message ContinueOn { @@ -492,6 +500,9 @@ message RetryStrategy { // RetryPolicy is a policy of NodePhase statuses that will be retried optional string retryPolicy = 2; + + // Backoff is a backoff strategy + optional Backoff backoff = 3; } // S3Artifact is the location of an S3 artifact diff --git a/pkg/apis/workflow/v1alpha1/openapi_generated.go b/pkg/apis/workflow/v1alpha1/openapi_generated.go index 21e78a8cf688..ef0cd880f2dd 100644 --- a/pkg/apis/workflow/v1alpha1/openapi_generated.go +++ b/pkg/apis/workflow/v1alpha1/openapi_generated.go @@ -20,6 +20,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.ArtifactRepositoryRef": schema_pkg_apis_workflow_v1alpha1_ArtifactRepositoryRef(ref), "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.ArtifactoryArtifact": schema_pkg_apis_workflow_v1alpha1_ArtifactoryArtifact(ref), "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.ArtifactoryAuth": schema_pkg_apis_workflow_v1alpha1_ArtifactoryAuth(ref), + "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.Backoff": schema_pkg_apis_workflow_v1alpha1_Backoff(ref), "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.ContinueOn": schema_pkg_apis_workflow_v1alpha1_ContinueOn(ref), "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.DAGTask": schema_pkg_apis_workflow_v1alpha1_DAGTask(ref), "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.DAGTemplate": schema_pkg_apis_workflow_v1alpha1_DAGTemplate(ref), @@ -392,6 +393,36 @@ func schema_pkg_apis_workflow_v1alpha1_ArtifactoryAuth(ref common.ReferenceCallb } } +func schema_pkg_apis_workflow_v1alpha1_Backoff(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "duration": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "factor": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int32", + }, + }, + "maxDuration": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + } +} + func schema_pkg_apis_workflow_v1alpha1_ContinueOn(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ @@ -1498,9 +1529,17 @@ func schema_pkg_apis_workflow_v1alpha1_RetryStrategy(ref common.ReferenceCallbac Format: "", }, }, + "backoff": { + SchemaProps: spec.SchemaProps{ + Description: "Backoff is a backoff strategy", + Ref: ref("github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.Backoff"), + }, + }, }, }, }, + Dependencies: []string{ + "github.com/argoproj/argo/pkg/apis/workflow/v1alpha1.Backoff"}, } } diff --git a/pkg/apis/workflow/v1alpha1/workflow_types.go b/pkg/apis/workflow/v1alpha1/workflow_types.go index 2857ea7ff96e..2ed139001c88 100644 --- a/pkg/apis/workflow/v1alpha1/workflow_types.go +++ b/pkg/apis/workflow/v1alpha1/workflow_types.go @@ -4,10 +4,9 @@ import ( "encoding/json" "fmt" "hash/fnv" - apiv1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - schema "k8s.io/apimachinery/pkg/runtime/schema" + "k8s.io/apimachinery/pkg/runtime/schema" ) // TemplateType is the type of a template @@ -737,6 +736,12 @@ const ( RetryPolicyOnError RetryPolicy = "OnError" ) +type Backoff struct { + Duration string `json:"duration,omitempty" protobuf:"varint,1,opt,name=duration"` + Factor int32 `json:"factor,omitempty" protobuf:"varint,2,opt,name=factor"` + MaxDuration string `json:"maxDuration,omitempty" protobuf:"varint,3,opt,name=maxDuration"` +} + // RetryStrategy provides controls on how to retry a workflow step type RetryStrategy struct { // Limit is the maximum number of attempts when retrying a container @@ -744,6 +749,9 @@ type RetryStrategy struct { // RetryPolicy is a policy of NodePhase statuses that will be retried RetryPolicy RetryPolicy `json:"retryPolicy,omitempty" protobuf:"bytes,2,opt,name=retryPolicy,casttype=RetryPolicy"` + + // Backoff is a backoff strategy + Backoff *Backoff `json:"backoff,omitempty" protobuf:"bytes,3,opt,name=backoff,casttype=Backoff"` } // NodeStatus contains status information about an individual node in the workflow diff --git a/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go index f162e2a09aec..63ea1b56ca8b 100644 --- a/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/workflow/v1alpha1/zz_generated.deepcopy.go @@ -204,6 +204,22 @@ func (in *ArtifactoryAuth) DeepCopy() *ArtifactoryAuth { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Backoff) DeepCopyInto(out *Backoff) { + *out = *in + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Backoff. +func (in *Backoff) DeepCopy() *Backoff { + if in == nil { + return nil + } + out := new(Backoff) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ContinueOn) DeepCopyInto(out *ContinueOn) { *out = *in @@ -748,6 +764,11 @@ func (in *RetryStrategy) DeepCopyInto(out *RetryStrategy) { *out = new(int32) **out = **in } + if in.Backoff != nil { + in, out := &in.Backoff, &out.Backoff + *out = new(Backoff) + **out = **in + } return } diff --git a/workflow/controller/operator.go b/workflow/controller/operator.go index dea76af30fb1..4e4e9017356a 100644 --- a/workflow/controller/operator.go +++ b/workflow/controller/operator.go @@ -3,6 +3,8 @@ package controller import ( "encoding/json" "fmt" + "github.com/argoproj/pkg/humanize" + "math" "reflect" "regexp" "runtime/debug" @@ -502,17 +504,59 @@ func (woc *wfOperationCtx) requeue(afterDuration time.Duration) { } // processNodeRetries updates the retry node state based on the child node state and the retry strategy and returns the node. -func (woc *wfOperationCtx) processNodeRetries(node *wfv1.NodeStatus, retryStrategy wfv1.RetryStrategy) (*wfv1.NodeStatus, error) { +func (woc *wfOperationCtx) processNodeRetries(node *wfv1.NodeStatus, retryStrategy wfv1.RetryStrategy) (*wfv1.NodeStatus, bool, error) { if node.Completed() { - return node, nil + return node, true, nil } lastChildNode, err := woc.getLastChildNode(node) if err != nil { - return nil, fmt.Errorf("Failed to find last child of node " + node.Name) + return nil, false, fmt.Errorf("Failed to find last child of node " + node.Name) } if lastChildNode == nil { - return node, nil + return node, true, nil + } + + if retryStrategy.Backoff != nil { + // Process max duration limit + if retryStrategy.Backoff.MaxDuration != "" && len(node.Children) > 0 { + maxDuration, err := parseStringToDuration(retryStrategy.Backoff.MaxDuration) + if err != nil { + return nil, false, err + } + firstChildNode, err := woc.getFirstChildNode(node) + if err != nil { + return nil, false, fmt.Errorf("Failed to find first child of node " + node.Name) + } + if time.Now().After(firstChildNode.FinishedAt.Add(maxDuration)) { + woc.log.Infoln("Max duration limit exceeded. Failing...") + return woc.markNodePhase(node.Name, lastChildNode.Phase, "Max duration limit exceeded"), true, nil + } + } + + // Max duration limit hasn't been exceeded, process back off + if retryStrategy.Backoff.Duration == "" { + return nil, false, fmt.Errorf("no base duration specified for retryStrategy") + } + baseDuration, err := parseStringToDuration(retryStrategy.Backoff.Duration) + if err != nil { + return nil, false, err + } + + timeToWait := baseDuration + if retryStrategy.Backoff.Factor > 0 { + // Formula: timeToWait = duration * factor^retry_number + timeToWait = baseDuration * time.Duration(math.Pow(float64(retryStrategy.Backoff.Factor), float64(len(node.Children)))) + } + waitingDeadline := lastChildNode.FinishedAt.Add(timeToWait) + + // See if we have waited past the deadline + if time.Now().Before(waitingDeadline) { + retryMessage := fmt.Sprintf("Retrying in %s", humanize.Duration(time.Until(waitingDeadline))) + return woc.markNodePhase(node.Name, node.Phase, retryMessage), false, nil + } else { + node = woc.markNodePhase(node.Name, node.Phase, "") + } } var retryOnFailed bool @@ -528,37 +572,37 @@ func (woc *wfOperationCtx) processNodeRetries(node *wfv1.NodeStatus, retryStrate retryOnFailed = true retryOnError = false default: - return nil, fmt.Errorf("%s is not a valid RetryPolicy", retryStrategy.RetryPolicy) - } - - if (lastChildNode.Phase == wfv1.NodeFailed && !retryOnFailed) || (lastChildNode.Phase == wfv1.NodeError && !retryOnError) { - woc.log.Infof("Node not set to be retried after status: %s", lastChildNode.Phase) - return woc.markNodePhase(node.Name, lastChildNode.Phase, lastChildNode.Message), nil + return nil, false, fmt.Errorf("%s is not a valid RetryPolicy", retryStrategy.RetryPolicy) } if !lastChildNode.Completed() { // last child node is still running. - return node, nil + return node, true, nil } if lastChildNode.Successful() { node.Outputs = lastChildNode.Outputs.DeepCopy() woc.wf.Status.Nodes[node.ID] = *node - return woc.markNodePhase(node.Name, wfv1.NodeSucceeded), nil + return woc.markNodePhase(node.Name, wfv1.NodeSucceeded), true, nil + } + + if (lastChildNode.Phase == wfv1.NodeFailed && !retryOnFailed) || (lastChildNode.Phase == wfv1.NodeError && !retryOnError) { + woc.log.Infof("Node not set to be retried after status: %s", lastChildNode.Phase) + return woc.markNodePhase(node.Name, lastChildNode.Phase, lastChildNode.Message), true, nil } if !lastChildNode.CanRetry() { woc.log.Infof("Node cannot be retried. Marking it failed") - return woc.markNodePhase(node.Name, lastChildNode.Phase, lastChildNode.Message), nil + return woc.markNodePhase(node.Name, lastChildNode.Phase, lastChildNode.Message), true, nil } if retryStrategy.Limit != nil && int32(len(node.Children)) > *retryStrategy.Limit { woc.log.Infoln("No more retries left. Failing...") - return woc.markNodePhase(node.Name, lastChildNode.Phase, "No more retries left"), nil + return woc.markNodePhase(node.Name, lastChildNode.Phase, "No more retries left"), true, nil } woc.log.Infof("%d child nodes of %s failed. Trying again...", len(node.Children), node.Name) - return node, nil + return node, true, nil } // podReconciliation is the process by which a workflow will examine all its related @@ -1109,6 +1153,20 @@ func (woc *wfOperationCtx) getLastChildNode(node *wfv1.NodeStatus) (*wfv1.NodeSt return &lastChildNode, nil } +func (woc *wfOperationCtx) getFirstChildNode(node *wfv1.NodeStatus) (*wfv1.NodeStatus, error) { + if len(node.Children) <= 0 { + return nil, nil + } + + firstChildNodeName := node.Children[0] + firstChildNode, ok := woc.wf.Status.Nodes[firstChildNodeName] + if !ok { + return nil, fmt.Errorf("Failed to find node " + firstChildNodeName) + } + + return &firstChildNode, nil +} + // executeTemplate executes the template with the given arguments and returns the created NodeStatus // for the created node (if created). Nodes may not be created if parallelism or deadline exceeded. // nodeName is the name to be used as the name of the node, and boundaryID indicates which template @@ -1172,9 +1230,12 @@ func (woc *wfOperationCtx) executeTemplate(nodeName string, orgTmpl wfv1.Templat woc.log.Debugf("Inject a retry node for node %s", retryNodeName) retryParentNode = woc.initializeExecutableNode(retryNodeName, wfv1.NodeTypeRetry, newTmplCtx, processedTmpl, orgTmpl, boundaryID, wfv1.NodeRunning) } - processedRetryParentNode, err := woc.processNodeRetries(retryParentNode, *processedTmpl.RetryStrategy) + processedRetryParentNode, continueExecution, err := woc.processNodeRetries(retryParentNode, *processedTmpl.RetryStrategy) if err != nil { return woc.markNodeError(retryNodeName, err), err + } else if !continueExecution { + // We are still waiting for a retry delay to finish + return retryParentNode, nil } retryParentNode = processedRetryParentNode // The retry node might have completed by now. @@ -1836,14 +1897,9 @@ func (woc *wfOperationCtx) executeSuspend(nodeName string, tmpl *wfv1.Template, if tmpl.Suspend.Duration != "" { node := woc.getNodeByName(nodeName) - var suspendDuration time.Duration - // If no units are attached, treat as seconds - if val, err := strconv.Atoi(tmpl.Suspend.Duration); err == nil { - suspendDuration = time.Duration(val) * time.Second - } else if duration, err := time.ParseDuration(tmpl.Suspend.Duration); err == nil { - suspendDuration = duration - } else { - return fmt.Errorf("unable to parse %s as a duration", tmpl.Suspend.Duration) + suspendDuration, err := parseStringToDuration(tmpl.Suspend.Duration) + if err != nil { + return err } suspendDeadline := node.StartedAt.Add(suspendDuration) requeueTime = &suspendDeadline @@ -1872,6 +1928,19 @@ func (woc *wfOperationCtx) executeSuspend(nodeName string, tmpl *wfv1.Template, return nil } +func parseStringToDuration(durationString string) (time.Duration, error) { + var suspendDuration time.Duration + // If no units are attached, treat as seconds + if val, err := strconv.Atoi(durationString); err == nil { + suspendDuration = time.Duration(val) * time.Second + } else if duration, err := time.ParseDuration(durationString); err == nil { + suspendDuration = duration + } else { + return 0, fmt.Errorf("unable to parse %s as a duration", durationString) + } + return suspendDuration, nil +} + func processItem(fstTmpl *fasttemplate.Template, name string, index int, item wfv1.Item, obj interface{}) (string, error) { replaceMap := make(map[string]string) var newName string diff --git a/workflow/controller/operator_test.go b/workflow/controller/operator_test.go index 86235437dda5..096da01cb6d1 100644 --- a/workflow/controller/operator_test.go +++ b/workflow/controller/operator_test.go @@ -153,13 +153,13 @@ func TestProcessNodesWithRetries(t *testing.T) { // Last child is still running. processNodesWithRetries() should return false since // there should be no retries at this point. - n, err = woc.processNodeRetries(n, retries) + n, _, err = woc.processNodeRetries(n, retries) assert.NoError(t, err) assert.Equal(t, n.Phase, wfv1.NodeRunning) // Mark lastChild as successful. woc.markNodePhase(lastChild.Name, wfv1.NodeSucceeded) - n, err = woc.processNodeRetries(n, retries) + n, _, err = woc.processNodeRetries(n, retries) assert.NoError(t, err) // The parent node also gets marked as Succeeded. assert.Equal(t, n.Phase, wfv1.NodeSucceeded) @@ -167,7 +167,7 @@ func TestProcessNodesWithRetries(t *testing.T) { // Mark the parent node as running again and the lastChild as failed. woc.markNodePhase(n.Name, wfv1.NodeRunning) woc.markNodePhase(lastChild.Name, wfv1.NodeFailed) - _, err = woc.processNodeRetries(n, retries) + _, _, err = woc.processNodeRetries(n, retries) assert.NoError(t, err) n = woc.getNodeByName(nodeName) assert.Equal(t, n.Phase, wfv1.NodeRunning) @@ -177,7 +177,7 @@ func TestProcessNodesWithRetries(t *testing.T) { woc.initializeNode(childNode, wfv1.NodeTypePod, &wfv1.Template{}, "", wfv1.NodeFailed) woc.addChildNode(nodeName, childNode) n = woc.getNodeByName(nodeName) - n, err = woc.processNodeRetries(n, retries) + n, _, err = woc.processNodeRetries(n, retries) assert.NoError(t, err) assert.Equal(t, n.Phase, wfv1.NodeFailed) } @@ -226,13 +226,13 @@ func TestProcessNodesWithRetriesOnErrors(t *testing.T) { // Last child is still running. processNodesWithRetries() should return false since // there should be no retries at this point. - n, err = woc.processNodeRetries(n, retries) + n, _, err = woc.processNodeRetries(n, retries) assert.Nil(t, err) assert.Equal(t, n.Phase, wfv1.NodeRunning) // Mark lastChild as successful. woc.markNodePhase(lastChild.Name, wfv1.NodeSucceeded) - n, err = woc.processNodeRetries(n, retries) + n, _, err = woc.processNodeRetries(n, retries) assert.Nil(t, err) // The parent node also gets marked as Succeeded. assert.Equal(t, n.Phase, wfv1.NodeSucceeded) @@ -249,7 +249,7 @@ func TestProcessNodesWithRetriesOnErrors(t *testing.T) { woc.initializeNode(childNode, wfv1.NodeTypePod, &wfv1.Template{}, "", wfv1.NodeError) woc.addChildNode(nodeName, childNode) n = woc.getNodeByName(nodeName) - n, err = woc.processNodeRetries(n, retries) + n, _, err = woc.processNodeRetries(n, retries) assert.Nil(t, err) assert.Equal(t, n.Phase, wfv1.NodeError) } @@ -298,13 +298,13 @@ func TestProcessNodesNoRetryWithError(t *testing.T) { // Last child is still running. processNodesWithRetries() should return false since // there should be no retries at this point. - n, err = woc.processNodeRetries(n, retries) + n, _, err = woc.processNodeRetries(n, retries) assert.Nil(t, err) assert.Equal(t, n.Phase, wfv1.NodeRunning) // Mark lastChild as successful. woc.markNodePhase(lastChild.Name, wfv1.NodeSucceeded) - n, err = woc.processNodeRetries(n, retries) + n, _, err = woc.processNodeRetries(n, retries) assert.Nil(t, err) // The parent node also gets marked as Succeeded. assert.Equal(t, n.Phase, wfv1.NodeSucceeded)