From 460f0f13d8077deb6e5c0e0576642eff4b779e83 Mon Sep 17 00:00:00 2001 From: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> Date: Mon, 29 Jan 2024 14:55:09 -0800 Subject: [PATCH 01/13] Dynamic log links (#4774) --- flyteplugins/go/tasks/logs/config.go | 3 +- flyteplugins/go/tasks/logs/logconfig_flags.go | 2 - .../go/tasks/logs/logconfig_flags_test.go | 28 --- flyteplugins/go/tasks/logs/logging_utils.go | 63 ++--- .../go/tasks/logs/logging_utils_test.go | 175 ++++++++++++-- .../pluginmachinery/core/phase_enumer.go | 7 +- .../tasks/pluginmachinery/tasklog/plugin.go | 56 ++--- .../tasks/pluginmachinery/tasklog/template.go | 123 +++++----- .../pluginmachinery/tasklog/template_test.go | 223 +++++------------- .../tasklog/templatescheme_enumer.go | 85 ------- .../webapi/mocks/sync_plugin.go | 88 +++++++ .../tasks/plugins/array/core/phase_enumer.go | 7 +- .../plugins/array/k8s/management_test.go | 1 + .../plugins/array/k8s/subtask_exec_context.go | 30 ++- .../array/k8s/subtask_exec_context_test.go | 12 +- .../go/tasks/plugins/k8s/dask/dask_test.go | 1 + .../common/common_operator_test.go | 7 +- .../plugins/k8s/kfoperators/mpi/mpi_test.go | 1 + .../k8s/kfoperators/pytorch/pytorch_test.go | 1 + .../kfoperators/tensorflow/tensorflow_test.go | 1 + .../go/tasks/plugins/k8s/pod/plugin.go | 2 +- .../go/tasks/plugins/k8s/pod/sidecar_test.go | 1 + flyteplugins/go/tasks/plugins/k8s/ray/ray.go | 14 +- .../go/tasks/plugins/k8s/ray/ray_test.go | 2 - .../go/tasks/plugins/k8s/spark/spark_test.go | 1 + 25 files changed, 472 insertions(+), 462 deletions(-) delete mode 100644 flyteplugins/go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go create mode 100644 flyteplugins/go/tasks/pluginmachinery/webapi/mocks/sync_plugin.go diff --git a/flyteplugins/go/tasks/logs/config.go b/flyteplugins/go/tasks/logs/config.go index b802844a4a..c8eb293035 100644 --- a/flyteplugins/go/tasks/logs/config.go +++ b/flyteplugins/go/tasks/logs/config.go @@ -28,8 +28,7 @@ type LogConfig struct { StackdriverLogResourceName string `json:"stackdriver-logresourcename" pflag:",Name of the logresource in stackdriver"` StackDriverTemplateURI tasklog.TemplateURI `json:"stackdriver-template-uri" pflag:",Template Uri to use when building stackdriver log links"` - IsFlyinEnabled bool `json:"flyin-enabled" pflag:",Enable Log-links to flyin logs"` - FlyinTemplateURI tasklog.TemplateURI `json:"flyin-template-uri" pflag:",Template Uri to use when building flyin log links"` + DynamicLogLinks map[string]tasklog.TemplateLogPlugin `json:"dynamic-log-links" pflag:"-,Map of dynamic log links"` Templates []tasklog.TemplateLogPlugin `json:"templates" pflag:"-,"` } diff --git a/flyteplugins/go/tasks/logs/logconfig_flags.go b/flyteplugins/go/tasks/logs/logconfig_flags.go index de8ba022dc..00c08a8a58 100755 --- a/flyteplugins/go/tasks/logs/logconfig_flags.go +++ b/flyteplugins/go/tasks/logs/logconfig_flags.go @@ -61,7 +61,5 @@ func (cfg LogConfig) GetPFlagSet(prefix string) *pflag.FlagSet { cmdFlags.String(fmt.Sprintf("%v%v", prefix, "gcp-project"), DefaultConfig.GCPProjectName, "Name of the project in GCP") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "stackdriver-logresourcename"), DefaultConfig.StackdriverLogResourceName, "Name of the logresource in stackdriver") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "stackdriver-template-uri"), DefaultConfig.StackDriverTemplateURI, "Template Uri to use when building stackdriver log links") - cmdFlags.Bool(fmt.Sprintf("%v%v", prefix, "flyin-enabled"), DefaultConfig.IsFlyinEnabled, "Enable Log-links to flyin logs") - cmdFlags.String(fmt.Sprintf("%v%v", prefix, "flyin-template-uri"), DefaultConfig.FlyinTemplateURI, "Template Uri to use when building flyin log links") return cmdFlags } diff --git a/flyteplugins/go/tasks/logs/logconfig_flags_test.go b/flyteplugins/go/tasks/logs/logconfig_flags_test.go index dfbee43c69..8bb775df1f 100755 --- a/flyteplugins/go/tasks/logs/logconfig_flags_test.go +++ b/flyteplugins/go/tasks/logs/logconfig_flags_test.go @@ -253,32 +253,4 @@ func TestLogConfig_SetFlags(t *testing.T) { } }) }) - t.Run("Test_flyin-enabled", func(t *testing.T) { - - t.Run("Override", func(t *testing.T) { - testValue := "1" - - cmdFlags.Set("flyin-enabled", testValue) - if vBool, err := cmdFlags.GetBool("flyin-enabled"); err == nil { - testDecodeJson_LogConfig(t, fmt.Sprintf("%v", vBool), &actual.IsFlyinEnabled) - - } else { - assert.FailNow(t, err.Error()) - } - }) - }) - t.Run("Test_flyin-template-uri", func(t *testing.T) { - - t.Run("Override", func(t *testing.T) { - testValue := "1" - - cmdFlags.Set("flyin-template-uri", testValue) - if vString, err := cmdFlags.GetString("flyin-template-uri"); err == nil { - testDecodeJson_LogConfig(t, fmt.Sprintf("%v", vString), &actual.FlyinTemplateURI) - - } else { - assert.FailNow(t, err.Error()) - } - }) - }) } diff --git a/flyteplugins/go/tasks/logs/logging_utils.go b/flyteplugins/go/tasks/logs/logging_utils.go index 20f3522e27..04d23f4ec8 100644 --- a/flyteplugins/go/tasks/logs/logging_utils.go +++ b/flyteplugins/go/tasks/logs/logging_utils.go @@ -14,7 +14,7 @@ import ( ) // Internal -func GetLogsForContainerInPod(ctx context.Context, logPlugin tasklog.Plugin, taskExecID pluginsCore.TaskExecutionID, pod *v1.Pod, index uint32, nameSuffix string, extraLogTemplateVarsByScheme *tasklog.TemplateVarsByScheme, taskTemplate *core.TaskTemplate) ([]*core.TaskLog, error) { +func GetLogsForContainerInPod(ctx context.Context, logPlugin tasklog.Plugin, taskExecID pluginsCore.TaskExecutionID, pod *v1.Pod, index uint32, nameSuffix string, extraLogTemplateVars []tasklog.TemplateVar, taskTemplate *core.TaskTemplate) ([]*core.TaskLog, error) { if logPlugin == nil { return nil, nil } @@ -39,19 +39,19 @@ func GetLogsForContainerInPod(ctx context.Context, logPlugin tasklog.Plugin, tas logs, err := logPlugin.GetTaskLogs( tasklog.Input{ - PodName: pod.Name, - PodUID: string(pod.GetUID()), - Namespace: pod.Namespace, - ContainerName: pod.Spec.Containers[index].Name, - ContainerID: pod.Status.ContainerStatuses[index].ContainerID, - LogName: nameSuffix, - PodRFC3339StartTime: time.Unix(startTime, 0).Format(time.RFC3339), - PodRFC3339FinishTime: time.Unix(finishTime, 0).Format(time.RFC3339), - PodUnixStartTime: startTime, - PodUnixFinishTime: finishTime, - TaskExecutionID: taskExecID, - ExtraTemplateVarsByScheme: extraLogTemplateVarsByScheme, - TaskTemplate: taskTemplate, + PodName: pod.Name, + PodUID: string(pod.GetUID()), + Namespace: pod.Namespace, + ContainerName: pod.Spec.Containers[index].Name, + ContainerID: pod.Status.ContainerStatuses[index].ContainerID, + LogName: nameSuffix, + PodRFC3339StartTime: time.Unix(startTime, 0).Format(time.RFC3339), + PodRFC3339FinishTime: time.Unix(finishTime, 0).Format(time.RFC3339), + PodUnixStartTime: startTime, + PodUnixFinishTime: finishTime, + TaskExecutionID: taskExecID, + ExtraTemplateVars: extraLogTemplateVars, + TaskTemplate: taskTemplate, }, ) @@ -63,13 +63,14 @@ func GetLogsForContainerInPod(ctx context.Context, logPlugin tasklog.Plugin, tas } type templateLogPluginCollection struct { - plugins []tasklog.TemplateLogPlugin + plugins []tasklog.TemplateLogPlugin + dynamicPlugins []tasklog.TemplateLogPlugin } func (t templateLogPluginCollection) GetTaskLogs(input tasklog.Input) (tasklog.Output, error) { var taskLogs []*core.TaskLog - for _, plugin := range t.plugins { + for _, plugin := range append(t.plugins, t.dynamicPlugins...) { o, err := plugin.GetTaskLogs(input) if err != nil { return tasklog.Output{}, err @@ -84,39 +85,43 @@ func (t templateLogPluginCollection) GetTaskLogs(input tasklog.Input) (tasklog.O func InitializeLogPlugins(cfg *LogConfig) (tasklog.Plugin, error) { // Use a list to maintain order. var plugins []tasklog.TemplateLogPlugin + var dynamicPlugins []tasklog.TemplateLogPlugin if cfg.IsKubernetesEnabled { if len(cfg.KubernetesTemplateURI) > 0 { - plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Kubernetes Logs", Scheme: tasklog.TemplateSchemePod, TemplateURIs: []tasklog.TemplateURI{cfg.KubernetesTemplateURI}, MessageFormat: core.TaskLog_JSON}) + plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Kubernetes Logs", TemplateURIs: []tasklog.TemplateURI{cfg.KubernetesTemplateURI}, MessageFormat: core.TaskLog_JSON}) } else { - plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Kubernetes Logs", Scheme: tasklog.TemplateSchemePod, TemplateURIs: []tasklog.TemplateURI{fmt.Sprintf("%s/#!/log/{{ .namespace }}/{{ .podName }}/pod?namespace={{ .namespace }}", cfg.KubernetesURL)}, MessageFormat: core.TaskLog_JSON}) + plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Kubernetes Logs", TemplateURIs: []tasklog.TemplateURI{fmt.Sprintf("%s/#!/log/{{ .namespace }}/{{ .podName }}/pod?namespace={{ .namespace }}", cfg.KubernetesURL)}, MessageFormat: core.TaskLog_JSON}) } } if cfg.IsCloudwatchEnabled { if len(cfg.CloudwatchTemplateURI) > 0 { - plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Cloudwatch Logs", Scheme: tasklog.TemplateSchemePod, TemplateURIs: []tasklog.TemplateURI{cfg.CloudwatchTemplateURI}, MessageFormat: core.TaskLog_JSON}) + plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Cloudwatch Logs", TemplateURIs: []tasklog.TemplateURI{cfg.CloudwatchTemplateURI}, MessageFormat: core.TaskLog_JSON}) } else { - plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Cloudwatch Logs", Scheme: tasklog.TemplateSchemePod, TemplateURIs: []tasklog.TemplateURI{fmt.Sprintf("https://console.aws.amazon.com/cloudwatch/home?region=%s#logEventViewer:group=%s;stream=var.log.containers.{{ .podName }}_{{ .namespace }}_{{ .containerName }}-{{ .containerId }}.log", cfg.CloudwatchRegion, cfg.CloudwatchLogGroup)}, MessageFormat: core.TaskLog_JSON}) + plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Cloudwatch Logs", TemplateURIs: []tasklog.TemplateURI{fmt.Sprintf("https://console.aws.amazon.com/cloudwatch/home?region=%s#logEventViewer:group=%s;stream=var.log.containers.{{ .podName }}_{{ .namespace }}_{{ .containerName }}-{{ .containerId }}.log", cfg.CloudwatchRegion, cfg.CloudwatchLogGroup)}, MessageFormat: core.TaskLog_JSON}) } } if cfg.IsStackDriverEnabled { if len(cfg.StackDriverTemplateURI) > 0 { - plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Stackdriver Logs", Scheme: tasklog.TemplateSchemePod, TemplateURIs: []tasklog.TemplateURI{cfg.StackDriverTemplateURI}, MessageFormat: core.TaskLog_JSON}) + plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Stackdriver Logs", TemplateURIs: []tasklog.TemplateURI{cfg.StackDriverTemplateURI}, MessageFormat: core.TaskLog_JSON}) } else { - plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Stackdriver Logs", Scheme: tasklog.TemplateSchemePod, TemplateURIs: []tasklog.TemplateURI{fmt.Sprintf("https://console.cloud.google.com/logs/viewer?project=%s&angularJsUrl=%%2Flogs%%2Fviewer%%3Fproject%%3D%s&resource=%s&advancedFilter=resource.labels.pod_name%%3D{{ .podName }}", cfg.GCPProjectName, cfg.GCPProjectName, cfg.StackdriverLogResourceName)}, MessageFormat: core.TaskLog_JSON}) + plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Stackdriver Logs", TemplateURIs: []tasklog.TemplateURI{fmt.Sprintf("https://console.cloud.google.com/logs/viewer?project=%s&angularJsUrl=%%2Flogs%%2Fviewer%%3Fproject%%3D%s&resource=%s&advancedFilter=resource.labels.pod_name%%3D{{ .podName }}", cfg.GCPProjectName, cfg.GCPProjectName, cfg.StackdriverLogResourceName)}, MessageFormat: core.TaskLog_JSON}) } } - if cfg.IsFlyinEnabled { - if len(cfg.FlyinTemplateURI) > 0 { - plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Flyin Logs", Scheme: tasklog.TemplateSchemeFlyin, TemplateURIs: []tasklog.TemplateURI{cfg.FlyinTemplateURI}, MessageFormat: core.TaskLog_JSON}) - } else { - plugins = append(plugins, tasklog.TemplateLogPlugin{DisplayName: "Flyin Logs", Scheme: tasklog.TemplateSchemeFlyin, TemplateURIs: []tasklog.TemplateURI{fmt.Sprintf("https://flyin.%s/logs/{{ .namespace }}/{{ .podName }}/{{ .containerName }}/{{ .containerId }}", cfg.GCPProjectName)}, MessageFormat: core.TaskLog_JSON}) - } + for logLinkType, dynamicLogLink := range cfg.DynamicLogLinks { + dynamicPlugins = append( + dynamicPlugins, + tasklog.TemplateLogPlugin{ + Name: logLinkType, + DisplayName: dynamicLogLink.DisplayName, + DynamicTemplateURIs: dynamicLogLink.TemplateURIs, + MessageFormat: core.TaskLog_JSON, + }) } plugins = append(plugins, cfg.Templates...) - return templateLogPluginCollection{plugins: plugins}, nil + return templateLogPluginCollection{plugins: plugins, dynamicPlugins: dynamicPlugins}, nil } diff --git a/flyteplugins/go/tasks/logs/logging_utils_test.go b/flyteplugins/go/tasks/logs/logging_utils_test.go index 46eb682201..946d069d50 100644 --- a/flyteplugins/go/tasks/logs/logging_utils_test.go +++ b/flyteplugins/go/tasks/logs/logging_utils_test.go @@ -334,7 +334,6 @@ func TestGetLogsForContainerInPod_Templates(t *testing.T) { "https://flyte.corp.net/console/projects/{{ .executionProject }}/domains/{{ .executionDomain }}/executions/{{ .executionName }}/nodeId/{{ .nodeID }}/taskId/{{ .taskID }}/attempt/{{ .taskRetryAttempt }}/view/logs", }, MessageFormat: core.TaskLog_JSON, - Scheme: tasklog.TemplateSchemeTaskExecution, }, }, }, nil, []*core.TaskLog{ @@ -351,30 +350,164 @@ func TestGetLogsForContainerInPod_Templates(t *testing.T) { }) } -func TestGetLogsForContainerInPod_Flyin(t *testing.T) { - assertTestSucceeded(t, - &LogConfig{ - IsKubernetesEnabled: true, - KubernetesTemplateURI: "https://k8s.com", - IsFlyinEnabled: true, - FlyinTemplateURI: "https://flyin.mydomain.com:{{ .port }}/{{ .namespace }}/{{ .podName }}/{{ .containerName }}/{{ .containerId }}", +func TestGetLogsForContainerInPod_Flyteinteractive(t *testing.T) { + tests := []struct { + name string + config *LogConfig + template *core.TaskTemplate + expectedTaskLogs []*core.TaskLog + }{ + { + "Flyteinteractive enabled but no task template", + &LogConfig{ + DynamicLogLinks: map[string]tasklog.TemplateLogPlugin{ + "vscode": tasklog.TemplateLogPlugin{ + DisplayName: "vscode link", + TemplateURIs: []tasklog.TemplateURI{ + "https://flyteinteractive.mydomain.com:{{ .taskConfig.port }}/{{ .namespace }}/{{ .podName }}/{{ .containerName }}/{{ .containerId }}", + }, + }, + }, + }, + nil, + nil, }, - &core.TaskTemplate{ - Config: map[string]string{ - "link_type": "vscode", - "port": "65535", + { + "Flyteinteractive enabled but config not found in task template", + &LogConfig{ + DynamicLogLinks: map[string]tasklog.TemplateLogPlugin{ + "vscode": tasklog.TemplateLogPlugin{ + DisplayName: "vscode link", + TemplateURIs: []tasklog.TemplateURI{ + "https://flyteinteractive.mydomain.com:{{ .taskConfig.port }}/{{ .namespace }}/{{ .podName }}/{{ .containerName }}/{{ .containerId }}", + }, + }, + }, }, + &core.TaskTemplate{}, + nil, }, - []*core.TaskLog{ - { - Uri: "https://k8s.com", - MessageFormat: core.TaskLog_JSON, - Name: "Kubernetes Logs my-Suffix", + { + "Flyteinteractive disabled but config present in TaskTemplate", + &LogConfig{}, + &core.TaskTemplate{ + Config: map[string]string{ + "link_type": "vscode", + "port": "65535", + }, }, - { - Uri: "https://flyin.mydomain.com:65535/my-namespace/my-pod/ContainerName/ContainerID", - MessageFormat: core.TaskLog_JSON, - Name: "Flyin Logs my-Suffix", + nil, + }, + { + "Flyteinteractive - multiple dynamic options", + &LogConfig{ + DynamicLogLinks: map[string]tasklog.TemplateLogPlugin{ + "vscode": tasklog.TemplateLogPlugin{ + DisplayName: "vscode link", + TemplateURIs: []tasklog.TemplateURI{ + "https://abc.com:{{ .taskConfig.port }}/{{ .taskConfig.route }}", + }, + }, + }, + }, + &core.TaskTemplate{ + Config: map[string]string{ + "link_type": "vscode", + "port": "65535", + "route": "a-route", + }, + }, + []*core.TaskLog{ + { + Uri: "https://abc.com:65535/a-route", + MessageFormat: core.TaskLog_JSON, + Name: "vscode link my-Suffix", + }, + }, + }, + { + "Flyteinteractive - multiple uses of the template (invalid use of ports in a URI)", + &LogConfig{ + DynamicLogLinks: map[string]tasklog.TemplateLogPlugin{ + "vscode": tasklog.TemplateLogPlugin{ + DisplayName: "vscode link", + TemplateURIs: []tasklog.TemplateURI{ + "https://abc.com:{{ .taskConfig.port }}:{{ .taskConfig.port}}", + }, + }, + }, + }, + &core.TaskTemplate{ + Config: map[string]string{ + "link_type": "vscode", + "port": "65535", + }, + }, + []*core.TaskLog{ + { + Uri: "https://abc.com:65535:65535", + MessageFormat: core.TaskLog_JSON, + Name: "vscode link my-Suffix", + }, + }, + }, + { + "Flyteinteractive disabled and K8s enabled and flyteinteractive config present in TaskTemplate", + &LogConfig{ + IsKubernetesEnabled: true, + KubernetesTemplateURI: "https://k8s.com/{{ .namespace }}/{{ .podName }}/{{ .containerName }}/{{ .containerId }}", + }, + &core.TaskTemplate{ + Config: map[string]string{ + "link_type": "vscode", + "port": "65535", + }, + }, + []*core.TaskLog{ + { + Uri: "https://k8s.com/my-namespace/my-pod/ContainerName/ContainerID", + MessageFormat: core.TaskLog_JSON, + Name: "Kubernetes Logs my-Suffix", + }, + }, + }, + { + "Flyteinteractive and K8s enabled", + &LogConfig{ + IsKubernetesEnabled: true, + KubernetesTemplateURI: "https://k8s.com/{{ .namespace }}/{{ .podName }}/{{ .containerName }}/{{ .containerId }}", + DynamicLogLinks: map[string]tasklog.TemplateLogPlugin{ + "vscode": tasklog.TemplateLogPlugin{ + DisplayName: "vscode link", + TemplateURIs: []tasklog.TemplateURI{ + "https://flyteinteractive.mydomain.com:{{ .taskConfig.port }}/{{ .namespace }}/{{ .podName }}/{{ .containerName }}/{{ .containerId }}", + }, + }, + }, }, + &core.TaskTemplate{ + Config: map[string]string{ + "link_type": "vscode", + "port": "65535", + }, + }, + []*core.TaskLog{ + { + Uri: "https://k8s.com/my-namespace/my-pod/ContainerName/ContainerID", + MessageFormat: core.TaskLog_JSON, + Name: "Kubernetes Logs my-Suffix", + }, + { + Uri: "https://flyteinteractive.mydomain.com:65535/my-namespace/my-pod/ContainerName/ContainerID", + MessageFormat: core.TaskLog_JSON, + Name: "vscode link my-Suffix", + }, + }, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + assertTestSucceeded(t, tt.config, tt.template, tt.expectedTaskLogs) }) + } } diff --git a/flyteplugins/go/tasks/pluginmachinery/core/phase_enumer.go b/flyteplugins/go/tasks/pluginmachinery/core/phase_enumer.go index bd26c4d560..caa4d86250 100644 --- a/flyteplugins/go/tasks/pluginmachinery/core/phase_enumer.go +++ b/flyteplugins/go/tasks/pluginmachinery/core/phase_enumer.go @@ -6,9 +6,9 @@ import ( "fmt" ) -const _PhaseName = "PhaseUndefinedPhaseNotReadyPhaseWaitingForResourcesPhaseQueuedPhaseInitializingPhaseRunningPhaseSuccessPhaseRetryableFailurePhasePermanentFailurePhaseWaitingForCache" +const _PhaseName = "PhaseUndefinedPhaseNotReadyPhaseWaitingForResourcesPhaseQueuedPhaseInitializingPhaseRunningPhaseSuccessPhaseRetryableFailurePhasePermanentFailurePhaseWaitingForCachePhaseAborted" -var _PhaseIndex = [...]uint8{0, 14, 27, 51, 62, 79, 91, 103, 124, 145, 165} +var _PhaseIndex = [...]uint8{0, 14, 27, 51, 62, 79, 91, 103, 124, 145, 165, 177} func (i Phase) String() string { if i < 0 || i >= Phase(len(_PhaseIndex)-1) { @@ -17,7 +17,7 @@ func (i Phase) String() string { return _PhaseName[_PhaseIndex[i]:_PhaseIndex[i+1]] } -var _PhaseValues = []Phase{0, 1, 2, 3, 4, 5, 6, 7, 8, 9} +var _PhaseValues = []Phase{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} var _PhaseNameToValueMap = map[string]Phase{ _PhaseName[0:14]: 0, @@ -30,6 +30,7 @@ var _PhaseNameToValueMap = map[string]Phase{ _PhaseName[103:124]: 7, _PhaseName[124:145]: 8, _PhaseName[145:165]: 9, + _PhaseName[165:177]: 10, } // PhaseString retrieves an enum value from the enum constants string name. diff --git a/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go b/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go index da2357a6d9..1caf8a2bac 100644 --- a/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go +++ b/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go @@ -7,16 +7,6 @@ import ( pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core" ) -//go:generate enumer --type=TemplateScheme --trimprefix=TemplateScheme -json -yaml - -type TemplateScheme int - -const ( - TemplateSchemePod TemplateScheme = iota - TemplateSchemeTaskExecution - TemplateSchemeFlyin -) - // TemplateURI is a URI that accepts templates. See: go/tasks/pluginmachinery/tasklog/template.go for available templates. type TemplateURI = string @@ -25,32 +15,23 @@ type TemplateVar struct { Value string } -type TemplateVars []TemplateVar - -type TemplateVarsByScheme struct { - Common TemplateVars - Pod TemplateVars - TaskExecution TemplateVars - Flyin TemplateVars -} - // Input contains all available information about task's execution that a log plugin can use to construct task's // log links. type Input struct { - HostName string - PodName string - Namespace string - ContainerName string - ContainerID string - LogName string - PodRFC3339StartTime string - PodRFC3339FinishTime string - PodUnixStartTime int64 - PodUnixFinishTime int64 - PodUID string - TaskExecutionID pluginsCore.TaskExecutionID - ExtraTemplateVarsByScheme *TemplateVarsByScheme - TaskTemplate *core.TaskTemplate + HostName string + PodName string + Namespace string + ContainerName string + ContainerID string + LogName string + PodRFC3339StartTime string + PodRFC3339FinishTime string + PodUnixStartTime int64 + PodUnixFinishTime int64 + PodUID string + TaskExecutionID pluginsCore.TaskExecutionID + ExtraTemplateVars []TemplateVar + TaskTemplate *core.TaskTemplate } // Output contains all task logs a plugin generates for a given Input. @@ -65,8 +46,9 @@ type Plugin interface { } type TemplateLogPlugin struct { - DisplayName string `json:"displayName" pflag:",Display name for the generated log when displayed in the console."` - TemplateURIs []TemplateURI `json:"templateUris" pflag:",URI Templates for generating task log links."` - MessageFormat core.TaskLog_MessageFormat `json:"messageFormat" pflag:",Log Message Format."` - Scheme TemplateScheme `json:"scheme" pflag:",Templating scheme to use. Supported values are Pod and TaskExecution."` + Name string `json:"name" pflag:",Name of the plugin."` + DisplayName string `json:"displayName" pflag:",Display name for the generated log when displayed in the console."` + TemplateURIs []TemplateURI `json:"templateUris" pflag:",URI Templates for generating task log links."` + DynamicTemplateURIs []TemplateURI `json:"dynamictemplateUris" pflag:",URI Templates for generating dynamic task log links."` + MessageFormat core.TaskLog_MessageFormat `json:"messageFormat" pflag:",Log Message Format."` } diff --git a/flyteplugins/go/tasks/pluginmachinery/tasklog/template.go b/flyteplugins/go/tasks/pluginmachinery/tasklog/template.go index 3b319f291e..e5481ecfbd 100644 --- a/flyteplugins/go/tasks/pluginmachinery/tasklog/template.go +++ b/flyteplugins/go/tasks/pluginmachinery/tasklog/template.go @@ -13,6 +13,12 @@ func MustCreateRegex(varName string) *regexp.Regexp { return regexp.MustCompile(fmt.Sprintf(`(?i){{\s*[\.$]%s\s*}}`, varName)) } +var taskConfigVarRegex = regexp.MustCompile(`(?i){{\s*.taskConfig[\.$]([a-zA-Z_]+)\s*}}`) + +func MustCreateDynamicLogRegex(varName string) *regexp.Regexp { + return regexp.MustCompile(fmt.Sprintf(`(?i){{\s*.taskConfig[\.$]%s\s*}}`, varName)) +} + type templateRegexes struct { LogName *regexp.Regexp PodName *regexp.Regexp @@ -35,7 +41,6 @@ type templateRegexes struct { ExecutionProject *regexp.Regexp ExecutionDomain *regexp.Regexp GeneratedName *regexp.Regexp - Port *regexp.Regexp } func initDefaultRegexes() templateRegexes { @@ -61,13 +66,12 @@ func initDefaultRegexes() templateRegexes { MustCreateRegex("executionProject"), MustCreateRegex("executionDomain"), MustCreateRegex("generatedName"), - MustCreateRegex("port"), } } var defaultRegexes = initDefaultRegexes() -func replaceAll(template string, vars TemplateVars) string { +func replaceAll(template string, vars []TemplateVar) string { for _, v := range vars { if len(v.Value) > 0 { template = v.Regex.ReplaceAllLiteralString(template, v.Value) @@ -76,48 +80,33 @@ func replaceAll(template string, vars TemplateVars) string { return template } -func (input Input) templateVarsForScheme(scheme TemplateScheme) TemplateVars { - vars := TemplateVars{ - {defaultRegexes.LogName, input.LogName}, +func (input Input) templateVars() []TemplateVar { + vars := []TemplateVar{ + TemplateVar{defaultRegexes.LogName, input.LogName}, } - gotExtraTemplateVars := input.ExtraTemplateVarsByScheme != nil + gotExtraTemplateVars := input.ExtraTemplateVars != nil if gotExtraTemplateVars { - vars = append(vars, input.ExtraTemplateVarsByScheme.Common...) + vars = append(vars, input.ExtraTemplateVars...) } - switch scheme { - case TemplateSchemeFlyin: - port := input.TaskTemplate.GetConfig()["port"] - if port == "" { - port = "8080" - } - vars = append( - vars, - TemplateVar{defaultRegexes.Port, port}, - ) - fallthrough - case TemplateSchemePod: - // Container IDs are prefixed with docker://, cri-o://, etc. which is stripped by fluentd before pushing to a log - // stream. Therefore, we must also strip the prefix. - containerID := input.ContainerID - stripDelimiter := "://" - if split := strings.Split(input.ContainerID, stripDelimiter); len(split) > 1 { - containerID = split[1] - } - vars = append( - vars, - TemplateVar{defaultRegexes.PodName, input.PodName}, - TemplateVar{defaultRegexes.PodUID, input.PodUID}, - TemplateVar{defaultRegexes.Namespace, input.Namespace}, - TemplateVar{defaultRegexes.ContainerName, input.ContainerName}, - TemplateVar{defaultRegexes.ContainerID, containerID}, - TemplateVar{defaultRegexes.Hostname, input.HostName}, - ) - if gotExtraTemplateVars { - vars = append(vars, input.ExtraTemplateVarsByScheme.Pod...) - } - case TemplateSchemeTaskExecution: + // Container IDs are prefixed with docker://, cri-o://, etc. which is stripped by fluentd before pushing to a log + // stream. Therefore, we must also strip the prefix. + containerID := input.ContainerID + stripDelimiter := "://" + if split := strings.Split(input.ContainerID, stripDelimiter); len(split) > 1 { + containerID = split[1] + } + vars = append( + vars, + TemplateVar{defaultRegexes.PodName, input.PodName}, + TemplateVar{defaultRegexes.PodUID, input.PodUID}, + TemplateVar{defaultRegexes.Namespace, input.Namespace}, + TemplateVar{defaultRegexes.ContainerName, input.ContainerName}, + TemplateVar{defaultRegexes.ContainerID, containerID}, + TemplateVar{defaultRegexes.Hostname, input.HostName}, + ) + if input.TaskExecutionID != nil { taskExecutionIdentifier := input.TaskExecutionID.GetID() vars = append( vars, @@ -172,9 +161,6 @@ func (input Input) templateVarsForScheme(scheme TemplateScheme) TemplateVars { }, ) } - if gotExtraTemplateVars { - vars = append(vars, input.ExtraTemplateVarsByScheme.TaskExecution...) - } } vars = append( @@ -194,25 +180,25 @@ func (input Input) templateVarsForScheme(scheme TemplateScheme) TemplateVars { return vars } +func getDynamicLogLinkTypes(taskTemplate *core.TaskTemplate) []string { + if taskTemplate == nil { + return nil + } + config := taskTemplate.GetConfig() + if config == nil { + return nil + } + linkType := config["link_type"] + if linkType == "" { + return nil + } + return strings.Split(linkType, ",") +} + func (p TemplateLogPlugin) GetTaskLogs(input Input) (Output, error) { - templateVars := input.templateVarsForScheme(p.Scheme) + templateVars := input.templateVars() taskLogs := make([]*core.TaskLog, 0, len(p.TemplateURIs)) - - // Grab metadata from task template and check if key "link_type" is set to "vscode". - // If so, add a vscode link to the task logs. - isFlyin := false - if input.TaskTemplate != nil && input.TaskTemplate.GetConfig() != nil { - config := input.TaskTemplate.GetConfig() - if config != nil && config["link_type"] == "vscode" { - isFlyin = true - } - } for _, templateURI := range p.TemplateURIs { - // Skip Flyin logs if plugin is enabled but no metadata is defined in input's task template. - // This is to prevent Flyin logs from being generated for tasks that don't have a Flyin metadata section. - if p.DisplayName == "Flyin Logs" && !isFlyin { - continue - } taskLogs = append(taskLogs, &core.TaskLog{ Uri: replaceAll(templateURI, templateVars), Name: p.DisplayName + input.LogName, @@ -220,5 +206,24 @@ func (p TemplateLogPlugin) GetTaskLogs(input Input) (Output, error) { }) } + for _, dynamicLogLinkType := range getDynamicLogLinkTypes(input.TaskTemplate) { + for _, dynamicTemplateURI := range p.DynamicTemplateURIs { + if p.Name == dynamicLogLinkType { + for _, match := range taskConfigVarRegex.FindAllStringSubmatch(dynamicTemplateURI, -1) { + if len(match) > 1 { + if value, found := input.TaskTemplate.GetConfig()[match[1]]; found { + templateVars = append(templateVars, TemplateVar{MustCreateDynamicLogRegex(match[1]), value}) + } + } + } + taskLogs = append(taskLogs, &core.TaskLog{ + Uri: replaceAll(dynamicTemplateURI, templateVars), + Name: p.DisplayName + input.LogName, + MessageFormat: p.MessageFormat, + }) + } + } + } + return Output{TaskLogs: taskLogs}, nil } diff --git a/flyteplugins/go/tasks/pluginmachinery/tasklog/template_test.go b/flyteplugins/go/tasks/pluginmachinery/tasklog/template_test.go index eedc2e622c..42226bd7c0 100644 --- a/flyteplugins/go/tasks/pluginmachinery/tasklog/template_test.go +++ b/flyteplugins/go/tasks/pluginmachinery/tasklog/template_test.go @@ -43,19 +43,23 @@ func dummyTaskExecID() pluginCore.TaskExecutionID { return tID } -func Test_Input_templateVarsForScheme(t *testing.T) { +func Test_Input_templateVars(t *testing.T) { testRegexes := struct { - Foo *regexp.Regexp - Bar *regexp.Regexp - Baz *regexp.Regexp - Ham *regexp.Regexp - Spam *regexp.Regexp + Foo *regexp.Regexp + Bar *regexp.Regexp + Baz *regexp.Regexp + Ham *regexp.Regexp + Spam *regexp.Regexp + LinkType *regexp.Regexp + Port *regexp.Regexp }{ MustCreateRegex("foo"), MustCreateRegex("bar"), MustCreateRegex("baz"), MustCreateRegex("ham"), MustCreateRegex("spam"), + MustCreateDynamicLogRegex("link_type"), + MustCreateDynamicLogRegex("port"), } podBase := Input{ HostName: "my-host", @@ -78,40 +82,20 @@ func Test_Input_templateVarsForScheme(t *testing.T) { PodUnixStartTime: 123, PodUnixFinishTime: 12345, } - flyinBase := Input{ - HostName: "my-host", - PodName: "my-pod", - PodUID: "my-pod-uid", - Namespace: "my-namespace", - ContainerName: "my-container", - ContainerID: "docker://containerID", - LogName: "main_logs", - PodRFC3339StartTime: "1970-01-01T01:02:03+01:00", - PodRFC3339FinishTime: "1970-01-01T04:25:45+01:00", - PodUnixStartTime: 123, - PodUnixFinishTime: 12345, - TaskTemplate: &core.TaskTemplate{ - Config: map[string]string{ - "port": "1234", - }, - }, - } tests := []struct { name string - scheme TemplateScheme baseVars Input - extraVars *TemplateVarsByScheme - exact TemplateVars - contains TemplateVars - notContains TemplateVars + extraVars []TemplateVar + exact []TemplateVar + contains []TemplateVar + notContains []TemplateVar }{ { "pod happy path", - TemplateSchemePod, podBase, nil, - TemplateVars{ + []TemplateVar{ {defaultRegexes.LogName, "main_logs"}, {defaultRegexes.PodName, "my-pod"}, {defaultRegexes.PodUID, "my-pod-uid"}, @@ -129,49 +113,32 @@ func Test_Input_templateVarsForScheme(t *testing.T) { }, { "pod with extra vars", - TemplateSchemePod, podBase, - &TemplateVarsByScheme{ - Common: TemplateVars{ - {testRegexes.Foo, "foo"}, - }, - Pod: TemplateVars{ - {testRegexes.Bar, "bar"}, - {testRegexes.Baz, "baz"}, - }, - }, - nil, - TemplateVars{ + []TemplateVar{ {testRegexes.Foo, "foo"}, {testRegexes.Bar, "bar"}, {testRegexes.Baz, "baz"}, }, nil, - }, - { - "pod with unused extra vars", - TemplateSchemePod, - podBase, - &TemplateVarsByScheme{ - TaskExecution: TemplateVars{ - {testRegexes.Bar, "bar"}, - {testRegexes.Baz, "baz"}, - }, - }, - nil, - nil, - TemplateVars{ + []TemplateVar{ + {testRegexes.Foo, "foo"}, {testRegexes.Bar, "bar"}, {testRegexes.Baz, "baz"}, }, + nil, }, { "task execution happy path", - TemplateSchemeTaskExecution, taskExecutionBase, nil, - TemplateVars{ + []TemplateVar{ {defaultRegexes.LogName, "main_logs"}, + {defaultRegexes.PodName, ""}, + {defaultRegexes.PodUID, ""}, + {defaultRegexes.Namespace, ""}, + {defaultRegexes.ContainerName, ""}, + {defaultRegexes.ContainerID, ""}, + {defaultRegexes.Hostname, ""}, {defaultRegexes.NodeID, "n0-0-n0"}, {defaultRegexes.GeneratedName, "generated-name"}, {defaultRegexes.TaskRetryAttempt, "1"}, @@ -192,92 +159,36 @@ func Test_Input_templateVarsForScheme(t *testing.T) { }, { "task execution with extra vars", - TemplateSchemeTaskExecution, taskExecutionBase, - &TemplateVarsByScheme{ - Common: TemplateVars{ - {testRegexes.Foo, "foo"}, - }, - TaskExecution: TemplateVars{ - {testRegexes.Bar, "bar"}, - {testRegexes.Baz, "baz"}, - }, - }, - nil, - TemplateVars{ + []TemplateVar{ {testRegexes.Foo, "foo"}, {testRegexes.Bar, "bar"}, {testRegexes.Baz, "baz"}, }, nil, - }, - { - "task execution with unused extra vars", - TemplateSchemeTaskExecution, - taskExecutionBase, - &TemplateVarsByScheme{ - Pod: TemplateVars{ - {testRegexes.Bar, "bar"}, - {testRegexes.Baz, "baz"}, - }, - }, - nil, - nil, - TemplateVars{ + []TemplateVar{ + {testRegexes.Foo, "foo"}, {testRegexes.Bar, "bar"}, {testRegexes.Baz, "baz"}, }, - }, - { - "flyin happy path", - TemplateSchemeFlyin, - flyinBase, - nil, - nil, - TemplateVars{ - {defaultRegexes.Port, "1234"}, - }, - nil, - }, - { - "flyin and pod happy path", - TemplateSchemeFlyin, - flyinBase, - nil, - TemplateVars{ - {defaultRegexes.LogName, "main_logs"}, - {defaultRegexes.Port, "1234"}, - {defaultRegexes.PodName, "my-pod"}, - {defaultRegexes.PodUID, "my-pod-uid"}, - {defaultRegexes.Namespace, "my-namespace"}, - {defaultRegexes.ContainerName, "my-container"}, - {defaultRegexes.ContainerID, "containerID"}, - {defaultRegexes.Hostname, "my-host"}, - {defaultRegexes.PodRFC3339StartTime, "1970-01-01T01:02:03+01:00"}, - {defaultRegexes.PodRFC3339FinishTime, "1970-01-01T04:25:45+01:00"}, - {defaultRegexes.PodUnixStartTime, "123"}, - {defaultRegexes.PodUnixFinishTime, "12345"}, - }, - nil, nil, }, { "pod with port not affected", - TemplateSchemePod, podBase, nil, nil, nil, - TemplateVars{ - {defaultRegexes.Port, "1234"}, + []TemplateVar{ + {testRegexes.Port, "1234"}, }, }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { base := tt.baseVars - base.ExtraTemplateVarsByScheme = tt.extraVars - got := base.templateVarsForScheme(tt.scheme) + base.ExtraTemplateVars = tt.extraVars + got := base.templateVars() if tt.exact != nil { assert.Equal(t, got, tt.exact) } @@ -476,7 +387,6 @@ func TestTemplateLogPlugin(t *testing.T) { { "task-with-task-execution-identifier", TemplateLogPlugin{ - Scheme: TemplateSchemeTaskExecution, TemplateURIs: []TemplateURI{"https://flyte.corp.net/console/projects/{{ .executionProject }}/domains/{{ .executionDomain }}/executions/{{ .executionName }}/nodeId/{{ .nodeID }}/taskId/{{ .taskID }}/attempt/{{ .taskRetryAttempt }}/view/logs"}, MessageFormat: core.TaskLog_JSON, }, @@ -508,7 +418,6 @@ func TestTemplateLogPlugin(t *testing.T) { { "mapped-task-with-task-execution-identifier", TemplateLogPlugin{ - Scheme: TemplateSchemeTaskExecution, TemplateURIs: []TemplateURI{"https://flyte.corp.net/console/projects/{{ .executionProject }}/domains/{{ .executionDomain }}/executions/{{ .executionName }}/nodeId/{{ .nodeID }}/taskId/{{ .taskID }}/attempt/{{ .subtaskParentRetryAttempt }}/mappedIndex/{{ .subtaskExecutionIndex }}/mappedAttempt/{{ .subtaskRetryAttempt }}/view/logs"}, MessageFormat: core.TaskLog_JSON, }, @@ -525,12 +434,10 @@ func TestTemplateLogPlugin(t *testing.T) { PodUnixStartTime: 123, PodUnixFinishTime: 12345, TaskExecutionID: dummyTaskExecID(), - ExtraTemplateVarsByScheme: &TemplateVarsByScheme{ - TaskExecution: TemplateVars{ - {MustCreateRegex("subtaskExecutionIndex"), "1"}, - {MustCreateRegex("subtaskRetryAttempt"), "1"}, - {MustCreateRegex("subtaskParentRetryAttempt"), "0"}, - }, + ExtraTemplateVars: []TemplateVar{ + {MustCreateRegex("subtaskExecutionIndex"), "1"}, + {MustCreateRegex("subtaskRetryAttempt"), "1"}, + {MustCreateRegex("subtaskParentRetryAttempt"), "0"}, }, }, }, @@ -545,11 +452,11 @@ func TestTemplateLogPlugin(t *testing.T) { }, }, { - "flyin", + "flyteinteractive", TemplateLogPlugin{ - Scheme: TemplateSchemeFlyin, - TemplateURIs: []TemplateURI{"vscode://flyin:{{ .port }}/{{ .podName }}"}, - MessageFormat: core.TaskLog_JSON, + Name: "vscode", + DynamicTemplateURIs: []TemplateURI{"vscode://flyteinteractive:{{ .taskConfig.port }}/{{ .podName }}"}, + MessageFormat: core.TaskLog_JSON, }, args{ input: Input{ @@ -565,54 +472,54 @@ func TestTemplateLogPlugin(t *testing.T) { Output{ TaskLogs: []*core.TaskLog{ { - Uri: "vscode://flyin:1234/my-pod-name", + Uri: "vscode://flyteinteractive:1234/my-pod-name", MessageFormat: core.TaskLog_JSON, }, }, }, }, { - "flyin - default port", + "flyteinteractive - no link_type in task template", TemplateLogPlugin{ - Scheme: TemplateSchemeFlyin, - TemplateURIs: []TemplateURI{"vscode://flyin:{{ .port }}/{{ .podName }}"}, - MessageFormat: core.TaskLog_JSON, + Name: "vscode", + DynamicTemplateURIs: []TemplateURI{"vscode://flyteinteractive:{{ .taskConfig.port }}/{{ .podName }}"}, + MessageFormat: core.TaskLog_JSON, + DisplayName: "Flyteinteractive Logs", }, args{ input: Input{ PodName: "my-pod-name", - TaskTemplate: &core.TaskTemplate{ - Config: map[string]string{ - "link_type": "vscode", - }, - }, }, }, Output{ - TaskLogs: []*core.TaskLog{ - { - Uri: "vscode://flyin:8080/my-pod-name", - MessageFormat: core.TaskLog_JSON, - }, - }, + TaskLogs: []*core.TaskLog{}, }, }, { - "flyin - no link_type in task template", + "kubernetes", TemplateLogPlugin{ - Scheme: TemplateSchemeFlyin, - TemplateURIs: []TemplateURI{"vscode://flyin:{{ .port }}/{{ .podName }}"}, + TemplateURIs: []TemplateURI{"https://dashboard.k8s.net/#!/log/{{.namespace}}/{{.podName}}/pod?namespace={{.namespace}}"}, MessageFormat: core.TaskLog_JSON, - DisplayName: "Flyin Logs", }, args{ input: Input{ - PodName: "my-pod-name", + PodName: "flyteexamples-development-task-name", + PodUID: "pod-uid", + Namespace: "flyteexamples-development", + ContainerName: "ignore", + ContainerID: "ignore", + LogName: "main_logs", + PodRFC3339StartTime: "1970-01-01T01:02:03+01:00", + PodRFC3339FinishTime: "1970-01-01T04:25:45+01:00", + PodUnixStartTime: 123, + PodUnixFinishTime: 12345, }, }, - Output{ - TaskLogs: []*core.TaskLog{}, - }, + Output{TaskLogs: []*core.TaskLog{{ + Uri: "https://dashboard.k8s.net/#!/log/flyteexamples-development/flyteexamples-development-task-name/pod?namespace=flyteexamples-development", + MessageFormat: core.TaskLog_JSON, + Name: "main_logs", + }}}, }, } for _, tt := range tests { diff --git a/flyteplugins/go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go b/flyteplugins/go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go deleted file mode 100644 index c1f4d668c0..0000000000 --- a/flyteplugins/go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go +++ /dev/null @@ -1,85 +0,0 @@ -// Code generated by "enumer --type=TemplateScheme --trimprefix=TemplateScheme -json -yaml"; DO NOT EDIT. - -package tasklog - -import ( - "encoding/json" - "fmt" -) - -const _TemplateSchemeName = "PodTaskExecutionFlyin" - -var _TemplateSchemeIndex = [...]uint8{0, 3, 16, 21} - -func (i TemplateScheme) String() string { - if i < 0 || i >= TemplateScheme(len(_TemplateSchemeIndex)-1) { - return fmt.Sprintf("TemplateScheme(%d)", i) - } - return _TemplateSchemeName[_TemplateSchemeIndex[i]:_TemplateSchemeIndex[i+1]] -} - -var _TemplateSchemeValues = []TemplateScheme{0, 1, 2} - -var _TemplateSchemeNameToValueMap = map[string]TemplateScheme{ - _TemplateSchemeName[0:3]: 0, - _TemplateSchemeName[3:16]: 1, - _TemplateSchemeName[16:21]: 2, -} - -// TemplateSchemeString retrieves an enum value from the enum constants string name. -// Throws an error if the param is not part of the enum. -func TemplateSchemeString(s string) (TemplateScheme, error) { - if val, ok := _TemplateSchemeNameToValueMap[s]; ok { - return val, nil - } - return 0, fmt.Errorf("%s does not belong to TemplateScheme values", s) -} - -// TemplateSchemeValues returns all values of the enum -func TemplateSchemeValues() []TemplateScheme { - return _TemplateSchemeValues -} - -// IsATemplateScheme returns "true" if the value is listed in the enum definition. "false" otherwise -func (i TemplateScheme) IsATemplateScheme() bool { - for _, v := range _TemplateSchemeValues { - if i == v { - return true - } - } - return false -} - -// MarshalJSON implements the json.Marshaler interface for TemplateScheme -func (i TemplateScheme) MarshalJSON() ([]byte, error) { - return json.Marshal(i.String()) -} - -// UnmarshalJSON implements the json.Unmarshaler interface for TemplateScheme -func (i *TemplateScheme) UnmarshalJSON(data []byte) error { - var s string - if err := json.Unmarshal(data, &s); err != nil { - return fmt.Errorf("TemplateScheme should be a string, got %s", data) - } - - var err error - *i, err = TemplateSchemeString(s) - return err -} - -// MarshalYAML implements a YAML Marshaler for TemplateScheme -func (i TemplateScheme) MarshalYAML() (interface{}, error) { - return i.String(), nil -} - -// UnmarshalYAML implements a YAML Unmarshaler for TemplateScheme -func (i *TemplateScheme) UnmarshalYAML(unmarshal func(interface{}) error) error { - var s string - if err := unmarshal(&s); err != nil { - return err - } - - var err error - *i, err = TemplateSchemeString(s) - return err -} diff --git a/flyteplugins/go/tasks/pluginmachinery/webapi/mocks/sync_plugin.go b/flyteplugins/go/tasks/pluginmachinery/webapi/mocks/sync_plugin.go new file mode 100644 index 0000000000..cfe5d38090 --- /dev/null +++ b/flyteplugins/go/tasks/pluginmachinery/webapi/mocks/sync_plugin.go @@ -0,0 +1,88 @@ +// Code generated by mockery v1.0.1. DO NOT EDIT. + +package mocks + +import ( + context "context" + + core "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core" + mock "github.com/stretchr/testify/mock" + + webapi "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/webapi" +) + +// SyncPlugin is an autogenerated mock type for the SyncPlugin type +type SyncPlugin struct { + mock.Mock +} + +type SyncPlugin_Do struct { + *mock.Call +} + +func (_m SyncPlugin_Do) Return(phase core.PhaseInfo, err error) *SyncPlugin_Do { + return &SyncPlugin_Do{Call: _m.Call.Return(phase, err)} +} + +func (_m *SyncPlugin) OnDo(ctx context.Context, tCtx webapi.TaskExecutionContext) *SyncPlugin_Do { + c_call := _m.On("Do", ctx, tCtx) + return &SyncPlugin_Do{Call: c_call} +} + +func (_m *SyncPlugin) OnDoMatch(matchers ...interface{}) *SyncPlugin_Do { + c_call := _m.On("Do", matchers...) + return &SyncPlugin_Do{Call: c_call} +} + +// Do provides a mock function with given fields: ctx, tCtx +func (_m *SyncPlugin) Do(ctx context.Context, tCtx webapi.TaskExecutionContext) (core.PhaseInfo, error) { + ret := _m.Called(ctx, tCtx) + + var r0 core.PhaseInfo + if rf, ok := ret.Get(0).(func(context.Context, webapi.TaskExecutionContext) core.PhaseInfo); ok { + r0 = rf(ctx, tCtx) + } else { + r0 = ret.Get(0).(core.PhaseInfo) + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, webapi.TaskExecutionContext) error); ok { + r1 = rf(ctx, tCtx) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + +type SyncPlugin_GetConfig struct { + *mock.Call +} + +func (_m SyncPlugin_GetConfig) Return(_a0 webapi.PluginConfig) *SyncPlugin_GetConfig { + return &SyncPlugin_GetConfig{Call: _m.Call.Return(_a0)} +} + +func (_m *SyncPlugin) OnGetConfig() *SyncPlugin_GetConfig { + c_call := _m.On("GetConfig") + return &SyncPlugin_GetConfig{Call: c_call} +} + +func (_m *SyncPlugin) OnGetConfigMatch(matchers ...interface{}) *SyncPlugin_GetConfig { + c_call := _m.On("GetConfig", matchers...) + return &SyncPlugin_GetConfig{Call: c_call} +} + +// GetConfig provides a mock function with given fields: +func (_m *SyncPlugin) GetConfig() webapi.PluginConfig { + ret := _m.Called() + + var r0 webapi.PluginConfig + if rf, ok := ret.Get(0).(func() webapi.PluginConfig); ok { + r0 = rf() + } else { + r0 = ret.Get(0).(webapi.PluginConfig) + } + + return r0 +} diff --git a/flyteplugins/go/tasks/plugins/array/core/phase_enumer.go b/flyteplugins/go/tasks/plugins/array/core/phase_enumer.go index c659c7bcfe..a5cc4569bc 100644 --- a/flyteplugins/go/tasks/plugins/array/core/phase_enumer.go +++ b/flyteplugins/go/tasks/plugins/array/core/phase_enumer.go @@ -6,9 +6,9 @@ import ( "fmt" ) -const _PhaseName = "PhaseStartPhasePreLaunchPhaseLaunchPhaseWaitingForResourcesPhaseCheckingSubTaskExecutionsPhaseAssembleFinalOutputPhaseWriteToDiscoveryPhaseWriteToDiscoveryThenFailPhaseSuccessPhaseAssembleFinalErrorPhaseRetryableFailurePhasePermanentFailure" +const _PhaseName = "PhaseStartPhasePreLaunchPhaseLaunchPhaseWaitingForResourcesPhaseCheckingSubTaskExecutionsPhaseAssembleFinalOutputPhaseWriteToDiscoveryPhaseWriteToDiscoveryThenFailPhaseSuccessPhaseAssembleFinalErrorPhaseRetryableFailurePhasePermanentFailurePhaseAbortSubTasks" -var _PhaseIndex = [...]uint8{0, 10, 24, 35, 59, 89, 113, 134, 163, 175, 198, 219, 240} +var _PhaseIndex = [...]uint16{0, 10, 24, 35, 59, 89, 113, 134, 163, 175, 198, 219, 240, 258} func (i Phase) String() string { if i >= Phase(len(_PhaseIndex)-1) { @@ -17,7 +17,7 @@ func (i Phase) String() string { return _PhaseName[_PhaseIndex[i]:_PhaseIndex[i+1]] } -var _PhaseValues = []Phase{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11} +var _PhaseValues = []Phase{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12} var _PhaseNameToValueMap = map[string]Phase{ _PhaseName[0:10]: 0, @@ -32,6 +32,7 @@ var _PhaseNameToValueMap = map[string]Phase{ _PhaseName[175:198]: 9, _PhaseName[198:219]: 10, _PhaseName[219:240]: 11, + _PhaseName[240:258]: 12, } // PhaseString retrieves an enum value from the enum constants string name. diff --git a/flyteplugins/go/tasks/plugins/array/k8s/management_test.go b/flyteplugins/go/tasks/plugins/array/k8s/management_test.go index ab26028b09..9404bdfb72 100644 --- a/flyteplugins/go/tasks/plugins/array/k8s/management_test.go +++ b/flyteplugins/go/tasks/plugins/array/k8s/management_test.go @@ -67,6 +67,7 @@ func getMockTaskExecutionContext(ctx context.Context, parallelism int) *mocks.Ta tID := &mocks.TaskExecutionID{} tID.OnGetGeneratedName().Return("notfound") + tID.On("GetUniqueNodeID").Return("an-unique-id") tID.OnGetID().Return(core2.TaskExecutionIdentifier{ TaskId: &core2.Identifier{ ResourceType: core2.ResourceType_TASK, diff --git a/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go b/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go index 8ac4d6edc0..77b3ac6501 100644 --- a/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go +++ b/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go @@ -187,22 +187,20 @@ var logTemplateRegexes = struct { tasklog.MustCreateRegex("subtaskParentRetryAttempt"), } -func (s SubTaskExecutionID) TemplateVarsByScheme() *tasklog.TemplateVarsByScheme { - return &tasklog.TemplateVarsByScheme{ - TaskExecution: tasklog.TemplateVars{ - {Regex: logTemplateRegexes.ParentName, Value: s.parentName}, - { - Regex: logTemplateRegexes.ExecutionIndex, - Value: strconv.FormatUint(uint64(s.executionIndex), 10), - }, - { - Regex: logTemplateRegexes.RetryAttempt, - Value: strconv.FormatUint(s.subtaskRetryAttempt, 10), - }, - { - Regex: logTemplateRegexes.ParentRetryAttempt, - Value: strconv.FormatUint(uint64(s.taskRetryAttempt), 10), - }, +func (s SubTaskExecutionID) TemplateVarsByScheme() []tasklog.TemplateVar { + return []tasklog.TemplateVar{ + {Regex: logTemplateRegexes.ParentName, Value: s.parentName}, + { + Regex: logTemplateRegexes.ExecutionIndex, + Value: strconv.FormatUint(uint64(s.executionIndex), 10), + }, + { + Regex: logTemplateRegexes.RetryAttempt, + Value: strconv.FormatUint(s.subtaskRetryAttempt, 10), + }, + { + Regex: logTemplateRegexes.ParentRetryAttempt, + Value: strconv.FormatUint(uint64(s.taskRetryAttempt), 10), }, } } diff --git a/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context_test.go b/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context_test.go index c3e213e403..103980fab0 100644 --- a/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context_test.go +++ b/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context_test.go @@ -36,13 +36,11 @@ func TestSubTaskExecutionContext(t *testing.T) { assert.Equal(t, storage.DataReference("/prefix/"), stCtx.OutputWriter().GetOutputPrefixPath()) assert.Equal(t, storage.DataReference("/raw_prefix/5/1"), stCtx.OutputWriter().GetRawOutputPrefix()) assert.Equal(t, - &tasklog.TemplateVarsByScheme{ - TaskExecution: tasklog.TemplateVars{ - {Regex: logTemplateRegexes.ParentName, Value: "notfound"}, - {Regex: logTemplateRegexes.ExecutionIndex, Value: "0"}, - {Regex: logTemplateRegexes.RetryAttempt, Value: "1"}, - {Regex: logTemplateRegexes.ParentRetryAttempt, Value: "0"}, - }, + []tasklog.TemplateVar{ + {Regex: logTemplateRegexes.ParentName, Value: "notfound"}, + {Regex: logTemplateRegexes.ExecutionIndex, Value: "0"}, + {Regex: logTemplateRegexes.RetryAttempt, Value: "1"}, + {Regex: logTemplateRegexes.ParentRetryAttempt, Value: "0"}, }, stCtx.TaskExecutionMetadata().GetTaskExecutionID().(SubTaskExecutionID).TemplateVarsByScheme(), ) diff --git a/flyteplugins/go/tasks/plugins/k8s/dask/dask_test.go b/flyteplugins/go/tasks/plugins/k8s/dask/dask_test.go index 576740af93..e7d43a2256 100644 --- a/flyteplugins/go/tasks/plugins/k8s/dask/dask_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/dask/dask_test.go @@ -179,6 +179,7 @@ func dummyDaskTaskContext(taskTemplate *core.TaskTemplate, resources *v1.Resourc }, }) tID.On("GetGeneratedName").Return(testTaskID) + tID.On("GetUniqueNodeID").Return("an-unique-id") taskExecutionMetadata := &mocks.TaskExecutionMetadata{} taskExecutionMetadata.OnGetTaskExecutionID().Return(tID) diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go index bf7d537416..d0e154835c 100644 --- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go @@ -211,8 +211,9 @@ func TestGetLogsTemplateUri(t *testing.T) { taskCtx := dummyTaskContext() pytorchJobObjectMeta := meta_v1.ObjectMeta{ - Name: "test", - Namespace: "pytorch-namespace", + Name: "test", + Namespace: "pytorch-" + + "namespace", CreationTimestamp: meta_v1.Time{ Time: time.Date(2022, time.January, 1, 12, 0, 0, 0, time.UTC), }, @@ -317,6 +318,8 @@ func dummyTaskContext() pluginsCore.TaskExecutionContext { }, RetryAttempt: 0, }) + tID.OnGetGeneratedName().Return("some-acceptable-name") + tID.On("GetUniqueNodeID").Return("an-unique-id") taskExecutionMetadata := &mocks.TaskExecutionMetadata{} taskExecutionMetadata.OnGetTaskExecutionID().Return(tID) diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go index d009c7c887..29fe47a446 100644 --- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go @@ -148,6 +148,7 @@ func dummyMPITaskContext(taskTemplate *core.TaskTemplate, resources *corev1.Reso }, }) tID.OnGetGeneratedName().Return("some-acceptable-name") + tID.On("GetUniqueNodeID").Return("an-unique-id") overrides := &mocks.TaskOverrides{} overrides.OnGetResources().Return(resources) diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go index e0606b1020..0700644578 100644 --- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go @@ -154,6 +154,7 @@ func dummyPytorchTaskContext(taskTemplate *core.TaskTemplate, resources *corev1. }, }) tID.OnGetGeneratedName().Return("some-acceptable-name") + tID.On("GetUniqueNodeID").Return("an-unique-id") overrides := &mocks.TaskOverrides{} overrides.OnGetResources().Return(resources) diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go index c3252183fc..2402bd4c5a 100644 --- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go @@ -149,6 +149,7 @@ func dummyTensorFlowTaskContext(taskTemplate *core.TaskTemplate, resources *core }, }) tID.OnGetGeneratedName().Return("some-acceptable-name") + tID.On("GetUniqueNodeID").Return("an-unique-id") overrides := &mocks.TaskOverrides{} overrides.OnGetResources().Return(resources) diff --git a/flyteplugins/go/tasks/plugins/k8s/pod/plugin.go b/flyteplugins/go/tasks/plugins/k8s/pod/plugin.go index eae0ac98b7..f72d4eb1d7 100644 --- a/flyteplugins/go/tasks/plugins/k8s/pod/plugin.go +++ b/flyteplugins/go/tasks/plugins/k8s/pod/plugin.go @@ -146,7 +146,7 @@ func (p plugin) GetTaskPhase(ctx context.Context, pluginContext k8s.PluginContex return p.GetTaskPhaseWithLogs(ctx, pluginContext, r, logPlugin, " (User)", nil) } -func (plugin) GetTaskPhaseWithLogs(ctx context.Context, pluginContext k8s.PluginContext, r client.Object, logPlugin tasklog.Plugin, logSuffix string, extraLogTemplateVarsByScheme *tasklog.TemplateVarsByScheme) (pluginsCore.PhaseInfo, error) { +func (plugin) GetTaskPhaseWithLogs(ctx context.Context, pluginContext k8s.PluginContext, r client.Object, logPlugin tasklog.Plugin, logSuffix string, extraLogTemplateVarsByScheme []tasklog.TemplateVar) (pluginsCore.PhaseInfo, error) { pluginState := k8s.PluginState{} _, err := pluginContext.PluginStateReader().Get(&pluginState) if err != nil { diff --git a/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go b/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go index 0c728780d9..4977695a1a 100644 --- a/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go @@ -84,6 +84,7 @@ func dummySidecarTaskMetadata(resources *v1.ResourceRequirements, extendedResour }, }) tID.On("GetGeneratedName").Return("my_project:my_domain:my_name") + tID.On("GetUniqueNodeID").Return("an-unique-id") taskMetadata.On("GetTaskExecutionID").Return(tID) to := &pluginsCoreMock.TaskOverrides{} diff --git a/flyteplugins/go/tasks/plugins/k8s/ray/ray.go b/flyteplugins/go/tasks/plugins/k8s/ray/ray.go index f6abb58c93..3f8d678ef5 100644 --- a/flyteplugins/go/tasks/plugins/k8s/ray/ray.go +++ b/flyteplugins/go/tasks/plugins/k8s/ray/ray.go @@ -457,13 +457,13 @@ func getEventInfoForRayJob(logConfig logs.LogConfig, pluginContext k8s.PluginCon taskExecID := pluginContext.TaskExecutionMetadata().GetTaskExecutionID() input := tasklog.Input{ - Namespace: rayJob.Namespace, - TaskExecutionID: taskExecID, - ExtraTemplateVarsByScheme: &tasklog.TemplateVarsByScheme{}, + Namespace: rayJob.Namespace, + TaskExecutionID: taskExecID, + ExtraTemplateVars: []tasklog.TemplateVar{}, } if rayJob.Status.JobId != "" { - input.ExtraTemplateVarsByScheme.Common = append( - input.ExtraTemplateVarsByScheme.Common, + input.ExtraTemplateVars = append( + input.ExtraTemplateVars, tasklog.TemplateVar{ Regex: logTemplateRegexes.RayJobID, Value: rayJob.Status.JobId, @@ -471,8 +471,8 @@ func getEventInfoForRayJob(logConfig logs.LogConfig, pluginContext k8s.PluginCon ) } if rayJob.Status.RayClusterName != "" { - input.ExtraTemplateVarsByScheme.Common = append( - input.ExtraTemplateVarsByScheme.Common, + input.ExtraTemplateVars = append( + input.ExtraTemplateVars, tasklog.TemplateVar{ Regex: logTemplateRegexes.RayClusterName, Value: rayJob.Status.RayClusterName, diff --git a/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go b/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go index b171ae9aa8..beab938768 100644 --- a/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go @@ -738,7 +738,6 @@ func TestGetEventInfo_LogTemplates(t *testing.T) { TemplateURIs: []tasklog.TemplateURI{ "http://test/projects/{{ .executionProject }}/domains/{{ .executionDomain }}/executions/{{ .executionName }}/nodeId/{{ .nodeID }}/taskId/{{ .taskID }}/attempt/{{ .taskRetryAttempt }}", }, - Scheme: tasklog.TemplateSchemeTaskExecution, }, expectedTaskLogs: []*core.TaskLog{ { @@ -823,7 +822,6 @@ func TestGetEventInfo_DashboardURL(t *testing.T) { dashboardURLTemplate: tasklog.TemplateLogPlugin{ DisplayName: "Ray Dashboard", TemplateURIs: []tasklog.TemplateURI{"http://test/{{.generatedName}}"}, - Scheme: tasklog.TemplateSchemeTaskExecution, }, expectedTaskLogs: []*core.TaskLog{ { diff --git a/flyteplugins/go/tasks/plugins/k8s/spark/spark_test.go b/flyteplugins/go/tasks/plugins/k8s/spark/spark_test.go index b07ab0ef33..264f9514e9 100644 --- a/flyteplugins/go/tasks/plugins/k8s/spark/spark_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/spark/spark_test.go @@ -379,6 +379,7 @@ func dummySparkTaskContext(taskTemplate *core.TaskTemplate, interruptible bool) }, }) tID.On("GetGeneratedName").Return("some-acceptable-name") + tID.On("GetUniqueNodeID").Return("an-unique-id") overrides := &mocks.TaskOverrides{} overrides.On("GetResources").Return(&corev1.ResourceRequirements{}) From 00d0a816c66141b9d9066ec4c779caa16c688467 Mon Sep 17 00:00:00 2001 From: Future-Outlier Date: Tue, 30 Jan 2024 14:32:47 +0800 Subject: [PATCH 02/13] Remove storage as a task resource option (#4658) * init Signed-off-by: Future Outlier * better test for ephermeral storage Signed-off-by: Future Outlier * remove resource field suggested by katrina Signed-off-by: Future-Outlier --------- Signed-off-by: Future Outlier Signed-off-by: Future-Outlier Co-authored-by: Future Outlier --- .../pkg/manager/impl/execution_manager.go | 17 ----- flyteadmin/pkg/manager/impl/util/resources.go | 4 - .../pkg/manager/impl/util/resources_test.go | 10 --- .../interfaces/task_resource_configuration.go | 1 - .../workflowengine/impl/prepare_execution.go | 6 -- .../impl/prepare_execution_test.go | 2 - flyteplugins/go/tasks/config_load_test.go | 9 --- .../flytek8s/container_helper.go | 2 - .../flytek8s/container_helper_test.go | 4 - .../flytek8s/k8s_resource_adds_test.go | 74 +++++++++---------- .../flytek8s/pod_helper_test.go | 56 +++++++------- .../tasks/pluginmachinery/flytek8s/utils.go | 4 - .../pluginmachinery/flytek8s/utils_test.go | 2 - .../go/tasks/plugins/hive/test_helpers.go | 3 +- .../tasks/plugins/k8s/pod/container_test.go | 8 +- .../go/tasks/plugins/k8s/pod/sidecar_test.go | 18 ++--- .../go/tasks/plugins/presto/helpers_test.go | 4 +- .../controller/nodes/task/taskexec_context.go | 2 - .../nodes/task/taskexec_context_test.go | 4 - 19 files changed, 80 insertions(+), 150 deletions(-) diff --git a/flyteadmin/pkg/manager/impl/execution_manager.go b/flyteadmin/pkg/manager/impl/execution_manager.go index b61dd93788..16a36f895f 100644 --- a/flyteadmin/pkg/manager/impl/execution_manager.go +++ b/flyteadmin/pkg/manager/impl/execution_manager.go @@ -249,23 +249,6 @@ func (m *ExecutionManager) setCompiledTaskDefaults(ctx context.Context, task *co }) } - // Only assign storage when it is either requested or limited in the task definition, or a platform - // default exists. - if !taskResourceRequirements.Defaults.Storage.IsZero() || - !taskResourceRequirements.Limits.Storage.IsZero() || - !platformTaskResources.Defaults.Storage.IsZero() { - storageResource := flytek8s.AdjustOrDefaultResource(taskResourceRequirements.Defaults.Storage, taskResourceRequirements.Limits.Storage, - platformTaskResources.Defaults.Storage, platformTaskResources.Limits.Storage) - finalizedResourceRequests = append(finalizedResourceRequests, &core.Resources_ResourceEntry{ - Name: core.Resources_STORAGE, - Value: storageResource.Request.String(), - }) - finalizedResourceLimits = append(finalizedResourceLimits, &core.Resources_ResourceEntry{ - Name: core.Resources_STORAGE, - Value: storageResource.Limit.String(), - }) - } - // Only assign gpu when it is either requested or limited in the task definition, or a platform default exists. if !taskResourceRequirements.Defaults.GPU.IsZero() || !taskResourceRequirements.Limits.GPU.IsZero() || diff --git a/flyteadmin/pkg/manager/impl/util/resources.go b/flyteadmin/pkg/manager/impl/util/resources.go index 8001b907dd..79aadb61b2 100644 --- a/flyteadmin/pkg/manager/impl/util/resources.go +++ b/flyteadmin/pkg/manager/impl/util/resources.go @@ -66,10 +66,6 @@ func fromAdminProtoTaskResourceSpec(ctx context.Context, spec *admin.TaskResourc result.Memory = parseQuantityNoError(ctx, "project", "memory", spec.Memory) } - if len(spec.Storage) > 0 { - result.Storage = parseQuantityNoError(ctx, "project", "storage", spec.Storage) - } - if len(spec.EphemeralStorage) > 0 { result.EphemeralStorage = parseQuantityNoError(ctx, "project", "ephemeral storage", spec.EphemeralStorage) } diff --git a/flyteadmin/pkg/manager/impl/util/resources_test.go b/flyteadmin/pkg/manager/impl/util/resources_test.go index af5c15f87d..c163b44e0c 100644 --- a/flyteadmin/pkg/manager/impl/util/resources_test.go +++ b/flyteadmin/pkg/manager/impl/util/resources_test.go @@ -31,14 +31,12 @@ func TestGetTaskResources(t *testing.T) { GPU: resource.MustParse("8"), Memory: resource.MustParse("200Gi"), EphemeralStorage: resource.MustParse("500Mi"), - Storage: resource.MustParse("400Mi"), } taskConfig.Limits = runtimeInterfaces.TaskResourceSet{ CPU: resource.MustParse("300m"), GPU: resource.MustParse("8"), Memory: resource.MustParse("500Gi"), EphemeralStorage: resource.MustParse("501Mi"), - Storage: resource.MustParse("450Mi"), } t.Run("use runtime application values", func(t *testing.T) { @@ -61,14 +59,12 @@ func TestGetTaskResources(t *testing.T) { GPU: resource.MustParse("8"), Memory: resource.MustParse("200Gi"), EphemeralStorage: resource.MustParse("500Mi"), - Storage: resource.MustParse("400Mi"), }, Limits: runtimeInterfaces.TaskResourceSet{ CPU: resource.MustParse("300m"), GPU: resource.MustParse("8"), Memory: resource.MustParse("500Gi"), EphemeralStorage: resource.MustParse("501Mi"), - Storage: resource.MustParse("450Mi"), }, }) }) @@ -91,14 +87,12 @@ func TestGetTaskResources(t *testing.T) { Gpu: "18", Memory: "1200Gi", EphemeralStorage: "1500Mi", - Storage: "1400Mi", }, Limits: &admin.TaskResourceSpec{ Cpu: "300m", Gpu: "8", Memory: "500Gi", EphemeralStorage: "501Mi", - Storage: "450Mi", }, }, }, @@ -112,14 +106,12 @@ func TestGetTaskResources(t *testing.T) { GPU: resource.MustParse("18"), Memory: resource.MustParse("1200Gi"), EphemeralStorage: resource.MustParse("1500Mi"), - Storage: resource.MustParse("1400Mi"), }, Limits: runtimeInterfaces.TaskResourceSet{ CPU: resource.MustParse("300m"), GPU: resource.MustParse("8"), Memory: resource.MustParse("500Gi"), EphemeralStorage: resource.MustParse("501Mi"), - Storage: resource.MustParse("450Mi"), }, }) }) @@ -129,14 +121,12 @@ func TestFromAdminProtoTaskResourceSpec(t *testing.T) { taskResourceSet := fromAdminProtoTaskResourceSpec(context.TODO(), &admin.TaskResourceSpec{ Cpu: "1", Memory: "100", - Storage: "200", EphemeralStorage: "300", Gpu: "2", }) assert.EqualValues(t, runtimeInterfaces.TaskResourceSet{ CPU: resource.MustParse("1"), Memory: resource.MustParse("100"), - Storage: resource.MustParse("200"), EphemeralStorage: resource.MustParse("300"), GPU: resource.MustParse("2"), }, taskResourceSet) diff --git a/flyteadmin/pkg/runtime/interfaces/task_resource_configuration.go b/flyteadmin/pkg/runtime/interfaces/task_resource_configuration.go index 8c55651693..cbe8130376 100644 --- a/flyteadmin/pkg/runtime/interfaces/task_resource_configuration.go +++ b/flyteadmin/pkg/runtime/interfaces/task_resource_configuration.go @@ -6,7 +6,6 @@ type TaskResourceSet struct { CPU resource.Quantity `json:"cpu"` GPU resource.Quantity `json:"gpu"` Memory resource.Quantity `json:"memory"` - Storage resource.Quantity `json:"storage"` EphemeralStorage resource.Quantity `json:"ephemeralStorage"` } diff --git a/flyteadmin/pkg/workflowengine/impl/prepare_execution.go b/flyteadmin/pkg/workflowengine/impl/prepare_execution.go index 27574c28a4..91642599a6 100644 --- a/flyteadmin/pkg/workflowengine/impl/prepare_execution.go +++ b/flyteadmin/pkg/workflowengine/impl/prepare_execution.go @@ -85,9 +85,6 @@ func addExecutionOverrides(taskPluginOverrides []*admin.PluginOverride, if !taskResources.Defaults.EphemeralStorage.IsZero() { requests.EphemeralStorage = taskResources.Defaults.EphemeralStorage } - if !taskResources.Defaults.Storage.IsZero() { - requests.Storage = taskResources.Defaults.Storage - } if !taskResources.Defaults.GPU.IsZero() { requests.GPU = taskResources.Defaults.GPU } @@ -102,9 +99,6 @@ func addExecutionOverrides(taskPluginOverrides []*admin.PluginOverride, if !taskResources.Limits.EphemeralStorage.IsZero() { limits.EphemeralStorage = taskResources.Limits.EphemeralStorage } - if !taskResources.Limits.Storage.IsZero() { - limits.Storage = taskResources.Limits.Storage - } if !taskResources.Limits.GPU.IsZero() { limits.GPU = taskResources.Limits.GPU } diff --git a/flyteadmin/pkg/workflowengine/impl/prepare_execution_test.go b/flyteadmin/pkg/workflowengine/impl/prepare_execution_test.go index 7b1c0f725b..be659208b2 100644 --- a/flyteadmin/pkg/workflowengine/impl/prepare_execution_test.go +++ b/flyteadmin/pkg/workflowengine/impl/prepare_execution_test.go @@ -131,7 +131,6 @@ func TestAddExecutionOverrides(t *testing.T) { Limits: runtimeInterfaces.TaskResourceSet{ CPU: resource.MustParse("2"), Memory: resource.MustParse("200Gi"), - Storage: resource.MustParse("5Gi"), EphemeralStorage: resource.MustParse("1Gi"), GPU: resource.MustParse("1"), }, @@ -144,7 +143,6 @@ func TestAddExecutionOverrides(t *testing.T) { assert.EqualValues(t, v1alpha1.TaskResourceSpec{ CPU: resource.MustParse("2"), Memory: resource.MustParse("200Gi"), - Storage: resource.MustParse("5Gi"), EphemeralStorage: resource.MustParse("1Gi"), GPU: resource.MustParse("1"), }, workflow.ExecutionConfig.TaskResources.Limits) diff --git a/flyteplugins/go/tasks/config_load_test.go b/flyteplugins/go/tasks/config_load_test.go index 6e02277742..9d27afb26a 100644 --- a/flyteplugins/go/tasks/config_load_test.go +++ b/flyteplugins/go/tasks/config_load_test.go @@ -44,7 +44,6 @@ func TestLoadConfig(t *testing.T) { }, k8sConfig.DefaultEnvVars) assert.NotNil(t, k8sConfig.ResourceTolerations) assert.Contains(t, k8sConfig.ResourceTolerations, v1.ResourceName("nvidia.com/gpu")) - assert.Contains(t, k8sConfig.ResourceTolerations, v1.ResourceStorage) tolGPU := v1.Toleration{ Key: "flyte/gpu", Value: "dedicated", @@ -52,15 +51,7 @@ func TestLoadConfig(t *testing.T) { Effect: v1.TaintEffectNoSchedule, } - tolStorage := v1.Toleration{ - Key: "storage", - Value: "special", - Operator: v1.TolerationOpEqual, - Effect: v1.TaintEffectPreferNoSchedule, - } - assert.Equal(t, []v1.Toleration{tolGPU}, k8sConfig.ResourceTolerations[v1.ResourceName("nvidia.com/gpu")]) - assert.Equal(t, []v1.Toleration{tolStorage}, k8sConfig.ResourceTolerations[v1.ResourceStorage]) expectedCPU := resource.MustParse("1000m") assert.True(t, expectedCPU.Equal(k8sConfig.DefaultCPURequest)) expectedMemory := resource.MustParse("1024Mi") diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper.go index b2ed99fbdb..cffc57a77d 100644 --- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper.go +++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper.go @@ -160,8 +160,6 @@ func ApplyResourceOverrides(resources, platformResources v1.ResourceRequirements // TODO: Make configurable. 1/15/2019 Flyte Cluster doesn't support setting storage requests/limits. // https://github.com/kubernetes/enhancements/issues/362 - delete(resources.Requests, v1.ResourceStorage) - delete(resources.Limits, v1.ResourceStorage) gpuResourceName := config.GetK8sPluginConfig().GpuResourceName shouldAdjustGPU := false diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper_test.go index 4515d6311c..f07db9417d 100644 --- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper_test.go +++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper_test.go @@ -211,13 +211,11 @@ func TestApplyResourceOverrides_RemoveStorage(t *testing.T) { requestedResourceQuantity := resource.MustParse("1") overrides := ApplyResourceOverrides(v1.ResourceRequirements{ Requests: v1.ResourceList{ - v1.ResourceStorage: requestedResourceQuantity, v1.ResourceMemory: requestedResourceQuantity, v1.ResourceCPU: requestedResourceQuantity, v1.ResourceEphemeralStorage: requestedResourceQuantity, }, Limits: v1.ResourceList{ - v1.ResourceStorage: requestedResourceQuantity, v1.ResourceMemory: requestedResourceQuantity, v1.ResourceEphemeralStorage: requestedResourceQuantity, }, @@ -261,7 +259,6 @@ func TestMergeResources_EmptyIn(t *testing.T) { v1.ResourceEphemeralStorage: requestedResourceQuantity, }, Limits: v1.ResourceList{ - v1.ResourceStorage: requestedResourceQuantity, v1.ResourceMemory: requestedResourceQuantity, v1.ResourceEphemeralStorage: requestedResourceQuantity, }, @@ -280,7 +277,6 @@ func TestMergeResources_EmptyOut(t *testing.T) { v1.ResourceEphemeralStorage: requestedResourceQuantity, }, Limits: v1.ResourceList{ - v1.ResourceStorage: requestedResourceQuantity, v1.ResourceMemory: requestedResourceQuantity, v1.ResourceEphemeralStorage: requestedResourceQuantity, }, diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go index 60a3833397..aec1f573a6 100644 --- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go +++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go @@ -33,8 +33,8 @@ func TestGetTolerationsForResources(t *testing.T) { Effect: v12.TaintEffectNoSchedule, } - tolStorage := v12.Toleration{ - Key: "storage", + tolEphemeralStorage := v12.Toleration{ + Key: "ephemeral-storage", Value: "dedicated", Operator: v12.TolerationOpExists, Effect: v12.TaintEffectNoSchedule, @@ -55,8 +55,8 @@ func TestGetTolerationsForResources(t *testing.T) { args{ v12.ResourceRequirements{ Limits: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, }, @@ -69,8 +69,8 @@ func TestGetTolerationsForResources(t *testing.T) { args{ v12.ResourceRequirements{ Requests: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, }, @@ -83,12 +83,12 @@ func TestGetTolerationsForResources(t *testing.T) { args{ v12.ResourceRequirements{ Limits: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), }, Requests: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, }, @@ -101,84 +101,84 @@ func TestGetTolerationsForResources(t *testing.T) { args{ v12.ResourceRequirements{ Limits: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, }, map[v12.ResourceName][]v12.Toleration{ - v12.ResourceStorage: {tolStorage}, - ResourceNvidiaGPU: {tolGPU}, + v12.ResourceEphemeralStorage: {tolEphemeralStorage}, + ResourceNvidiaGPU: {tolGPU}, }, nil, - []v12.Toleration{tolStorage}, + []v12.Toleration{tolEphemeralStorage}, }, { "tolerations-req", args{ v12.ResourceRequirements{ Requests: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, }, map[v12.ResourceName][]v12.Toleration{ - v12.ResourceStorage: {tolStorage}, - ResourceNvidiaGPU: {tolGPU}, + v12.ResourceEphemeralStorage: {tolEphemeralStorage}, + ResourceNvidiaGPU: {tolGPU}, }, nil, - []v12.Toleration{tolStorage}, + []v12.Toleration{tolEphemeralStorage}, }, { "tolerations-both", args{ v12.ResourceRequirements{ Limits: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), }, Requests: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, }, map[v12.ResourceName][]v12.Toleration{ - v12.ResourceStorage: {tolStorage}, - ResourceNvidiaGPU: {tolGPU}, + v12.ResourceEphemeralStorage: {tolEphemeralStorage}, + ResourceNvidiaGPU: {tolGPU}, }, nil, - []v12.Toleration{tolStorage}, + []v12.Toleration{tolEphemeralStorage}, }, { "no-tolerations-both", args{ v12.ResourceRequirements{ Limits: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), - ResourceNvidiaGPU: resource.MustParse("1"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), + ResourceNvidiaGPU: resource.MustParse("1"), }, Requests: v12.ResourceList{ - v12.ResourceCPU: resource.MustParse("1024m"), - v12.ResourceStorage: resource.MustParse("100M"), + v12.ResourceCPU: resource.MustParse("1024m"), + v12.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, }, map[v12.ResourceName][]v12.Toleration{ - v12.ResourceStorage: {tolStorage}, - ResourceNvidiaGPU: {tolGPU}, + v12.ResourceEphemeralStorage: {tolEphemeralStorage}, + ResourceNvidiaGPU: {tolGPU}, }, nil, - []v12.Toleration{tolStorage, tolGPU}, + []v12.Toleration{tolEphemeralStorage, tolGPU}, }, { "default-tolerations", args{}, nil, - []v12.Toleration{tolStorage}, - []v12.Toleration{tolStorage}, + []v12.Toleration{tolEphemeralStorage}, + []v12.Toleration{tolEphemeralStorage}, }, } for _, tt := range tests { diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go index b5a51323d2..5efee46c7d 100644 --- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go +++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go @@ -693,12 +693,12 @@ func TestApplyGPUNodeSelectors(t *testing.T) { func updatePod(t *testing.T) { taskExecutionMetadata := dummyTaskExecutionMetadata(&v1.ResourceRequirements{ Limits: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), }, Requests: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, nil) @@ -809,13 +809,13 @@ func toK8sPodInterruptible(t *testing.T) { x := dummyExecContext(dummyTaskTemplate(), &v1.ResourceRequirements{ Limits: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), - ResourceNvidiaGPU: resource.MustParse("1"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), + ResourceNvidiaGPU: resource.MustParse("1"), }, Requests: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, nil) @@ -853,8 +853,8 @@ func TestToK8sPod(t *testing.T) { Effect: v1.TaintEffectNoSchedule, } - tolStorage := v1.Toleration{ - Key: "storage", + tolEphemeralStorage := v1.Toleration{ + Key: "ephemeral-storage", Value: "dedicated", Operator: v1.TolerationOpExists, Effect: v1.TaintEffectNoSchedule, @@ -862,8 +862,8 @@ func TestToK8sPod(t *testing.T) { assert.NoError(t, config.SetK8sPluginConfig(&config.K8sPluginConfig{ ResourceTolerations: map[v1.ResourceName][]v1.Toleration{ - v1.ResourceStorage: {tolStorage}, - ResourceNvidiaGPU: {tolGPU}, + v1.ResourceEphemeralStorage: {tolEphemeralStorage}, + ResourceNvidiaGPU: {tolGPU}, }, DefaultCPURequest: resource.MustParse("1024m"), DefaultMemoryRequest: resource.MustParse("1024Mi"), @@ -876,48 +876,48 @@ func TestToK8sPod(t *testing.T) { t.Run("WithGPU", func(t *testing.T) { x := dummyExecContext(dummyTaskTemplate(), &v1.ResourceRequirements{ Limits: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), - ResourceNvidiaGPU: resource.MustParse("1"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), + ResourceNvidiaGPU: resource.MustParse("1"), }, Requests: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, nil) p, _, _, err := ToK8sPodSpec(ctx, x) assert.NoError(t, err) - assert.Equal(t, len(p.Tolerations), 1) + assert.Equal(t, len(p.Tolerations), 2) }) t.Run("NoGPU", func(t *testing.T) { x := dummyExecContext(dummyTaskTemplate(), &v1.ResourceRequirements{ Limits: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), }, Requests: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, nil) p, _, _, err := ToK8sPodSpec(ctx, x) assert.NoError(t, err) - assert.Equal(t, len(p.Tolerations), 0) + assert.Equal(t, len(p.Tolerations), 1) assert.Equal(t, "some-acceptable-name", p.Containers[0].Name) }) t.Run("Default toleration, selector, scheduler", func(t *testing.T) { x := dummyExecContext(dummyTaskTemplate(), &v1.ResourceRequirements{ Limits: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), }, Requests: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), }, }, nil) diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils.go index fe626764a2..ef7807aadd 100644 --- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils.go +++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils.go @@ -36,10 +36,6 @@ func ToK8sResourceList(resources []*core.Resources_ResourceEntry) (v1.ResourceLi if !v.IsZero() { k8sResources[v1.ResourceMemory] = v } - case core.Resources_STORAGE: - if !v.IsZero() { - k8sResources[v1.ResourceStorage] = v - } case core.Resources_GPU: if !v.IsZero() { k8sResources[ResourceNvidiaGPU] = v diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils_test.go index 8c75f00a90..07e519cc80 100644 --- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils_test.go +++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils_test.go @@ -33,7 +33,6 @@ func TestToK8sResourceList(t *testing.T) { {Name: core.Resources_CPU, Value: "250m"}, {Name: core.Resources_GPU, Value: "1"}, {Name: core.Resources_MEMORY, Value: "1024Mi"}, - {Name: core.Resources_STORAGE, Value: "1024Mi"}, {Name: core.Resources_EPHEMERAL_STORAGE, Value: "1024Mi"}, }) @@ -43,7 +42,6 @@ func TestToK8sResourceList(t *testing.T) { assert.Equal(t, resource.MustParse("250m"), r[v1.ResourceCPU]) assert.Equal(t, resource.MustParse("1"), r[ResourceNvidiaGPU]) assert.Equal(t, resource.MustParse("1024Mi"), r[v1.ResourceMemory]) - assert.Equal(t, resource.MustParse("1024Mi"), r[v1.ResourceStorage]) assert.Equal(t, resource.MustParse("1024Mi"), r[v1.ResourceEphemeralStorage]) } { diff --git a/flyteplugins/go/tasks/plugins/hive/test_helpers.go b/flyteplugins/go/tasks/plugins/hive/test_helpers.go index f8fe8d4148..b494c15870 100644 --- a/flyteplugins/go/tasks/plugins/hive/test_helpers.go +++ b/flyteplugins/go/tasks/plugins/hive/test_helpers.go @@ -66,8 +66,7 @@ func GetSingleHiveQueryTaskTemplate() idlCore.TaskTemplate { var resourceRequirements = &v1.ResourceRequirements{ Limits: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), }, } diff --git a/flyteplugins/go/tasks/plugins/k8s/pod/container_test.go b/flyteplugins/go/tasks/plugins/k8s/pod/container_test.go index 9a70f906b9..e69f764549 100644 --- a/flyteplugins/go/tasks/plugins/k8s/pod/container_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/pod/container_test.go @@ -24,8 +24,7 @@ import ( var containerResourceRequirements = &v1.ResourceRequirements{ Limits: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), }, } @@ -206,9 +205,8 @@ func TestContainerTaskExecutor_BuildResource(t *testing.T) { assert.NotEmpty(t, j.Spec.Containers) assert.Equal(t, containerResourceRequirements.Limits[v1.ResourceCPU], j.Spec.Containers[0].Resources.Limits[v1.ResourceCPU]) - // TODO: Once configurable, test when setting storage is supported on the cluster vs not. - storageRes := j.Spec.Containers[0].Resources.Limits[v1.ResourceStorage] - assert.Equal(t, int64(0), (&storageRes).Value()) + ephemeralStorageRes := j.Spec.Containers[0].Resources.Limits[v1.ResourceEphemeralStorage] + assert.Equal(t, int64(0), (&ephemeralStorageRes).Value()) assert.Equal(t, command, j.Spec.Containers[0].Command) assert.Equal(t, []string{"test-data-reference"}, j.Spec.Containers[0].Args) diff --git a/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go b/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go index 4977695a1a..a9848f3276 100644 --- a/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go @@ -231,15 +231,15 @@ func TestBuildSidecarResource_TaskType2(t *testing.T) { Effect: v1.TaintEffectNoSchedule, } - tolStorage := v1.Toleration{ - Key: "storage", + tolEphemeralStorage := v1.Toleration{ + Key: "ephemeral-storage", Value: "dedicated", Operator: v1.TolerationOpExists, Effect: v1.TaintEffectNoSchedule, } assert.NoError(t, config.SetK8sPluginConfig(&config.K8sPluginConfig{ ResourceTolerations: map[v1.ResourceName][]v1.Toleration{ - v1.ResourceStorage: {tolStorage}, + v1.ResourceStorage: {tolEphemeralStorage}, ResourceNvidiaGPU: {tolGPU}, }, DefaultCPURequest: resource.MustParse("1024m"), @@ -341,15 +341,15 @@ func TestBuildSidecarResource_TaskType1(t *testing.T) { Effect: v1.TaintEffectNoSchedule, } - tolStorage := v1.Toleration{ - Key: "storage", + tolEphemeralStorage := v1.Toleration{ + Key: "ephemeral-storage", Value: "dedicated", Operator: v1.TolerationOpExists, Effect: v1.TaintEffectNoSchedule, } assert.NoError(t, config.SetK8sPluginConfig(&config.K8sPluginConfig{ ResourceTolerations: map[v1.ResourceName][]v1.Toleration{ - v1.ResourceStorage: {tolStorage}, + v1.ResourceStorage: {tolEphemeralStorage}, ResourceNvidiaGPU: {tolGPU}, }, DefaultCPURequest: resource.MustParse("1024m"), @@ -458,15 +458,15 @@ func TestBuildSidecarResource(t *testing.T) { Effect: v1.TaintEffectNoSchedule, } - tolStorage := v1.Toleration{ - Key: "storage", + tolEphemeralStorage := v1.Toleration{ + Key: "ephemeral-storage", Value: "dedicated", Operator: v1.TolerationOpExists, Effect: v1.TaintEffectNoSchedule, } assert.NoError(t, config.SetK8sPluginConfig(&config.K8sPluginConfig{ ResourceTolerations: map[v1.ResourceName][]v1.Toleration{ - v1.ResourceStorage: {tolStorage}, + v1.ResourceStorage: {tolEphemeralStorage}, ResourceNvidiaGPU: {tolGPU}, }, DefaultCPURequest: resource.MustParse("1024m"), diff --git a/flyteplugins/go/tasks/plugins/presto/helpers_test.go b/flyteplugins/go/tasks/plugins/presto/helpers_test.go index 60fc1cc050..fb421b444f 100644 --- a/flyteplugins/go/tasks/plugins/presto/helpers_test.go +++ b/flyteplugins/go/tasks/plugins/presto/helpers_test.go @@ -42,8 +42,8 @@ func GetPrestoQueryTaskTemplate() idlCore.TaskTemplate { var resourceRequirements = &v1.ResourceRequirements{ Limits: v1.ResourceList{ - v1.ResourceCPU: resource.MustParse("1024m"), - v1.ResourceStorage: resource.MustParse("100M"), + v1.ResourceCPU: resource.MustParse("1024m"), + v1.ResourceEphemeralStorage: resource.MustParse("100M"), }, } diff --git a/flytepropeller/pkg/controller/nodes/task/taskexec_context.go b/flytepropeller/pkg/controller/nodes/task/taskexec_context.go index 4a6f9750a2..25b936a8e4 100644 --- a/flytepropeller/pkg/controller/nodes/task/taskexec_context.go +++ b/flytepropeller/pkg/controller/nodes/task/taskexec_context.go @@ -197,14 +197,12 @@ func convertTaskResourcesToRequirements(taskResources v1alpha1.TaskResources) *v v1.ResourceCPU: taskResources.Requests.CPU, v1.ResourceMemory: taskResources.Requests.Memory, v1.ResourceEphemeralStorage: taskResources.Requests.EphemeralStorage, - v1.ResourceStorage: taskResources.Requests.Storage, utils.ResourceNvidiaGPU: taskResources.Requests.GPU, }, Limits: v1.ResourceList{ v1.ResourceCPU: taskResources.Limits.CPU, v1.ResourceMemory: taskResources.Limits.Memory, v1.ResourceEphemeralStorage: taskResources.Limits.EphemeralStorage, - v1.ResourceStorage: taskResources.Limits.Storage, utils.ResourceNvidiaGPU: taskResources.Limits.GPU, }, } diff --git a/flytepropeller/pkg/controller/nodes/task/taskexec_context_test.go b/flytepropeller/pkg/controller/nodes/task/taskexec_context_test.go index b0106e8ff9..84245cea8f 100644 --- a/flytepropeller/pkg/controller/nodes/task/taskexec_context_test.go +++ b/flytepropeller/pkg/controller/nodes/task/taskexec_context_test.go @@ -381,14 +381,12 @@ func TestConvertTaskResourcesToRequirements(t *testing.T) { CPU: resource.MustParse("1"), Memory: resource.MustParse("2"), EphemeralStorage: resource.MustParse("3"), - Storage: resource.MustParse("4"), GPU: resource.MustParse("5"), }, Limits: v1alpha1.TaskResourceSpec{ CPU: resource.MustParse("10"), Memory: resource.MustParse("20"), EphemeralStorage: resource.MustParse("30"), - Storage: resource.MustParse("40"), GPU: resource.MustParse("50"), }, }) @@ -397,14 +395,12 @@ func TestConvertTaskResourcesToRequirements(t *testing.T) { corev1.ResourceCPU: resource.MustParse("1"), corev1.ResourceMemory: resource.MustParse("2"), corev1.ResourceEphemeralStorage: resource.MustParse("3"), - corev1.ResourceStorage: resource.MustParse("4"), utils.ResourceNvidiaGPU: resource.MustParse("5"), }, Limits: corev1.ResourceList{ corev1.ResourceCPU: resource.MustParse("10"), corev1.ResourceMemory: resource.MustParse("20"), corev1.ResourceEphemeralStorage: resource.MustParse("30"), - corev1.ResourceStorage: resource.MustParse("40"), utils.ResourceNvidiaGPU: resource.MustParse("50"), }, }, resourceRequirements) From ffd3ab2e4784733a446a3440eab066852819f5fe Mon Sep 17 00:00:00 2001 From: Michael Tinsley Date: Tue, 30 Jan 2024 11:19:38 +0000 Subject: [PATCH 03/13] feat: add apache 2.0 license to python flyteidl (#4786) --- flyteidl/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/flyteidl/setup.py b/flyteidl/setup.py index b82355362e..2f439ad360 100644 --- a/flyteidl/setup.py +++ b/flyteidl/setup.py @@ -41,4 +41,5 @@ extras_require={ ':python_version=="2.7"': ['typing>=3.6'], # allow typehinting PY2 }, + license='Apache-2.0', ) From f8a131721ff43722faf42e8893ec1febf80b72a8 Mon Sep 17 00:00:00 2001 From: Dan Rammer Date: Tue, 30 Jan 2024 09:17:53 -0600 Subject: [PATCH 04/13] Reduce maptask transitions between WaitingForResources and CheckingSubtaskExecutions (#4790) * treating PhaseWaitingForResources and PhaseCheckingSubTskExecutions as the same Signed-off-by: Daniel Rammer * using PhaseCheckingSubTaskExecutions only Signed-off-by: Daniel Rammer * fixed unit test Signed-off-by: Daniel Rammer --------- Signed-off-by: Daniel Rammer --- flyteplugins/go/tasks/plugins/array/k8s/executor.go | 6 +++--- flyteplugins/go/tasks/plugins/array/k8s/management.go | 4 ++-- flyteplugins/go/tasks/plugins/array/k8s/management_test.go | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flyteplugins/go/tasks/plugins/array/k8s/executor.go b/flyteplugins/go/tasks/plugins/array/k8s/executor.go index f664392fd9..3232584674 100644 --- a/flyteplugins/go/tasks/plugins/array/k8s/executor.go +++ b/flyteplugins/go/tasks/plugins/array/k8s/executor.go @@ -103,9 +103,6 @@ func (e Executor) Handle(ctx context.Context, tCtx core.TaskExecutionContext) (c case arrayCore.PhasePreLaunch: nextState = pluginState.SetPhase(arrayCore.PhaseLaunch, version+1).SetReason("Nothing to do in PreLaunch phase.") - case arrayCore.PhaseWaitingForResources: - fallthrough - case arrayCore.PhaseLaunch: // In order to maintain backwards compatibility with the state transitions // in the aws batch plugin. Forward to PhaseCheckingSubTasksExecutions where the launching @@ -113,6 +110,9 @@ func (e Executor) Handle(ctx context.Context, tCtx core.TaskExecutionContext) (c nextState = pluginState.SetPhase(arrayCore.PhaseCheckingSubTaskExecutions, version+1).SetReason("Nothing to do in Launch phase.") err = nil + case arrayCore.PhaseWaitingForResources: + fallthrough + case arrayCore.PhaseCheckingSubTaskExecutions: nextState, externalResources, err = LaunchAndCheckSubTasksState(ctx, tCtx, e.kubeClient, pluginConfig, tCtx.DataStore(), tCtx.OutputWriter().GetOutputPrefixPath(), tCtx.OutputWriter().GetRawOutputPrefix(), pluginState) diff --git a/flyteplugins/go/tasks/plugins/array/k8s/management.go b/flyteplugins/go/tasks/plugins/array/k8s/management.go index d6abaaf74b..12eea118cc 100644 --- a/flyteplugins/go/tasks/plugins/array/k8s/management.go +++ b/flyteplugins/go/tasks/plugins/array/k8s/management.go @@ -306,7 +306,7 @@ func LaunchAndCheckSubTasksState(ctx context.Context, tCtx core.TaskExecutionCon } _, version := currentState.GetPhase() - if phase == arrayCore.PhaseCheckingSubTaskExecutions { + if phase == arrayCore.PhaseCheckingSubTaskExecutions || phase == arrayCore.PhaseWaitingForResources { newSubTaskPhaseHash, err := newState.GetArrayStatus().HashCode() if err != nil { return currentState, externalResources, err @@ -316,7 +316,7 @@ func LaunchAndCheckSubTasksState(ctx context.Context, tCtx core.TaskExecutionCon version++ } - newState = newState.SetPhase(phase, version).SetReason("Task is still running") + newState = newState.SetPhase(arrayCore.PhaseCheckingSubTaskExecutions, version).SetReason("Task is still running") } else { newState = newState.SetPhase(phase, version+1) } diff --git a/flyteplugins/go/tasks/plugins/array/k8s/management_test.go b/flyteplugins/go/tasks/plugins/array/k8s/management_test.go index 9404bdfb72..2bd1d5eefe 100644 --- a/flyteplugins/go/tasks/plugins/array/k8s/management_test.go +++ b/flyteplugins/go/tasks/plugins/array/k8s/management_test.go @@ -300,7 +300,7 @@ func TestCheckSubTasksState(t *testing.T) { // validate results assert.Nil(t, err) p, _ := newState.GetPhase() - assert.Equal(t, arrayCore.PhaseWaitingForResources.String(), p.String()) + assert.Equal(t, arrayCore.PhaseCheckingSubTaskExecutions.String(), p.String()) resourceManager.AssertNumberOfCalls(t, "AllocateResource", subtaskCount) for _, subtaskPhaseIndex := range newState.GetArrayStatus().Detailed.GetItems() { assert.Equal(t, core.PhaseWaitingForResources, core.Phases[subtaskPhaseIndex]) From 7a7f6ffe3e14280dc6bc184cfbcf9099c6dc2a0f Mon Sep 17 00:00:00 2001 From: Dan Rammer Date: Tue, 30 Jan 2024 09:18:06 -0600 Subject: [PATCH 05/13] ttl comparison should allow 23 (#4791) Signed-off-by: Daniel Rammer --- flytepropeller/pkg/controller/garbage_collector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytepropeller/pkg/controller/garbage_collector.go b/flytepropeller/pkg/controller/garbage_collector.go index 373da8a155..e02e1beca2 100644 --- a/flytepropeller/pkg/controller/garbage_collector.go +++ b/flytepropeller/pkg/controller/garbage_collector.go @@ -169,7 +169,7 @@ func (g *GarbageCollector) StartGC(ctx context.Context) error { func NewGarbageCollector(cfg *config.Config, scope promutils.Scope, clk clock.WithTicker, namespaceClient corev1.NamespaceInterface, wfClient v1alpha1.FlyteworkflowV1alpha1Interface) (*GarbageCollector, error) { ttl := 23 - if cfg.MaxTTLInHours < 23 { + if cfg.MaxTTLInHours <= 23 { ttl = cfg.MaxTTLInHours } else { logger.Warningf(context.TODO(), "defaulting max ttl for workflows to 23 hours, since configured duration is larger than 23 [%d]", cfg.MaxTTLInHours) From 144ccd91ed8b38326d60540407721ba9faff3bd5 Mon Sep 17 00:00:00 2001 From: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> Date: Tue, 30 Jan 2024 11:54:18 -0800 Subject: [PATCH 06/13] Bring Scheme back for backwards compatibility (#4789) * Bring Scheme back for backwards compatibility Signed-off-by: Eduardo Apolinario * Rename deprecated field to `DeprecatedScheme` Signed-off-by: Eduardo Apolinario --------- Signed-off-by: Eduardo Apolinario Co-authored-by: Eduardo Apolinario --- .../tasks/pluginmachinery/tasklog/plugin.go | 15 +++- .../tasklog/templatescheme_enumer.go | 84 +++++++++++++++++++ .../go/tasks/plugins/k8s/ray/config.go | 2 +- 3 files changed, 98 insertions(+), 3 deletions(-) create mode 100644 flyteplugins/go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go diff --git a/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go b/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go index 1caf8a2bac..fa47fa4729 100644 --- a/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go +++ b/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go @@ -7,6 +7,15 @@ import ( pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core" ) +//go:generate enumer --type=TemplateScheme --trimprefix=TemplateScheme -json -yaml + +type TemplateScheme int + +const ( + TemplateSchemePod TemplateScheme = iota + TemplateSchemeTaskExecution +) + // TemplateURI is a URI that accepts templates. See: go/tasks/pluginmachinery/tasklog/template.go for available templates. type TemplateURI = string @@ -49,6 +58,8 @@ type TemplateLogPlugin struct { Name string `json:"name" pflag:",Name of the plugin."` DisplayName string `json:"displayName" pflag:",Display name for the generated log when displayed in the console."` TemplateURIs []TemplateURI `json:"templateUris" pflag:",URI Templates for generating task log links."` - DynamicTemplateURIs []TemplateURI `json:"dynamictemplateUris" pflag:",URI Templates for generating dynamic task log links."` - MessageFormat core.TaskLog_MessageFormat `json:"messageFormat" pflag:",Log Message Format."` + DynamicTemplateURIs []TemplateURI `json:"dynamicTemplateUris" pflag:",URI Templates for generating dynamic task log links."` + MessageFormat core.TaskLog_MessageFormat `json:"messageFormat" pflag:"-,Log Message Format."` + // Deprecated: Please, do not use + DeprecatedScheme TemplateScheme `json:"scheme" pflag:",Templating scheme to use. Supported values are Pod and TaskExecution."` } diff --git a/flyteplugins/go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go b/flyteplugins/go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go new file mode 100644 index 0000000000..70f15faf01 --- /dev/null +++ b/flyteplugins/go/tasks/pluginmachinery/tasklog/templatescheme_enumer.go @@ -0,0 +1,84 @@ +// Code generated by "enumer --type=TemplateScheme --trimprefix=TemplateScheme -json -yaml"; DO NOT EDIT. + +package tasklog + +import ( + "encoding/json" + "fmt" +) + +const _TemplateSchemeName = "PodTaskExecution" + +var _TemplateSchemeIndex = [...]uint8{0, 3, 16} + +func (i TemplateScheme) String() string { + if i < 0 || i >= TemplateScheme(len(_TemplateSchemeIndex)-1) { + return fmt.Sprintf("TemplateScheme(%d)", i) + } + return _TemplateSchemeName[_TemplateSchemeIndex[i]:_TemplateSchemeIndex[i+1]] +} + +var _TemplateSchemeValues = []TemplateScheme{0, 1} + +var _TemplateSchemeNameToValueMap = map[string]TemplateScheme{ + _TemplateSchemeName[0:3]: 0, + _TemplateSchemeName[3:16]: 1, +} + +// TemplateSchemeString retrieves an enum value from the enum constants string name. +// Throws an error if the param is not part of the enum. +func TemplateSchemeString(s string) (TemplateScheme, error) { + if val, ok := _TemplateSchemeNameToValueMap[s]; ok { + return val, nil + } + return 0, fmt.Errorf("%s does not belong to TemplateScheme values", s) +} + +// TemplateSchemeValues returns all values of the enum +func TemplateSchemeValues() []TemplateScheme { + return _TemplateSchemeValues +} + +// IsATemplateScheme returns "true" if the value is listed in the enum definition. "false" otherwise +func (i TemplateScheme) IsATemplateScheme() bool { + for _, v := range _TemplateSchemeValues { + if i == v { + return true + } + } + return false +} + +// MarshalJSON implements the json.Marshaler interface for TemplateScheme +func (i TemplateScheme) MarshalJSON() ([]byte, error) { + return json.Marshal(i.String()) +} + +// UnmarshalJSON implements the json.Unmarshaler interface for TemplateScheme +func (i *TemplateScheme) UnmarshalJSON(data []byte) error { + var s string + if err := json.Unmarshal(data, &s); err != nil { + return fmt.Errorf("TemplateScheme should be a string, got %s", data) + } + + var err error + *i, err = TemplateSchemeString(s) + return err +} + +// MarshalYAML implements a YAML Marshaler for TemplateScheme +func (i TemplateScheme) MarshalYAML() (interface{}, error) { + return i.String(), nil +} + +// UnmarshalYAML implements a YAML Unmarshaler for TemplateScheme +func (i *TemplateScheme) UnmarshalYAML(unmarshal func(interface{}) error) error { + var s string + if err := unmarshal(&s); err != nil { + return err + } + + var err error + *i, err = TemplateSchemeString(s) + return err +} diff --git a/flyteplugins/go/tasks/plugins/k8s/ray/config.go b/flyteplugins/go/tasks/plugins/k8s/ray/config.go index 8601264edf..67ea4d2aeb 100644 --- a/flyteplugins/go/tasks/plugins/k8s/ray/config.go +++ b/flyteplugins/go/tasks/plugins/k8s/ray/config.go @@ -82,7 +82,7 @@ type Config struct { RemoteClusterConfig pluginmachinery.ClusterConfig `json:"remoteClusterConfig" pflag:"Configuration of remote K8s cluster for ray jobs"` Logs logs.LogConfig `json:"logs" pflag:"-,Log configuration for ray jobs"` LogsSidecar *v1.Container `json:"logsSidecar" pflag:"-,Sidecar to inject into head pods for capturing ray job logs"` - DashboardURLTemplate *tasklog.TemplateLogPlugin `json:"dashboardURLTemplate" pflag:",Template for URL of Ray dashboard running on a head node."` + DashboardURLTemplate *tasklog.TemplateLogPlugin `json:"dashboardURLTemplate" pflag:"-,Template for URL of Ray dashboard running on a head node."` Defaults DefaultConfig `json:"defaults" pflag:"-,Default configuration for ray jobs"` EnableUsageStats bool `json:"enableUsageStats" pflag:",Enable usage stats for ray jobs. These stats are submitted to usage-stats.ray.io per https://docs.ray.io/en/latest/cluster/usage-stats.html"` } From 264c5b7c5c08ad20890dab7f5dc379a3cec2e541 Mon Sep 17 00:00:00 2001 From: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> Date: Tue, 30 Jan 2024 12:00:35 -0800 Subject: [PATCH 07/13] Pass secret to invocation of go_generate gh workflow (#4630) * Pass secret to invocation of go_generate gh workflow Signed-off-by: Eduardo Apolinario * Make generate Signed-off-by: Eduardo Apolinario --------- Signed-off-by: Eduardo Apolinario Co-authored-by: Eduardo Apolinario --- .github/workflows/flyteidl-checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/flyteidl-checks.yml b/.github/workflows/flyteidl-checks.yml index 7e95f2e35c..1811126d91 100644 --- a/.github/workflows/flyteidl-checks.yml +++ b/.github/workflows/flyteidl-checks.yml @@ -50,3 +50,5 @@ jobs: with: component: flyteidl go-version: ${{ needs.unpack-envvars.outputs.go-version }} + secrets: + FLYTE_BOT_PAT: ${{ secrets.FLYTE_BOT_PAT }} From a2dbe49126d8a6d60d5de21e1dbab0aec91bae23 Mon Sep 17 00:00:00 2001 From: Paul Dittamo <37558497+pvditt@users.noreply.github.com> Date: Tue, 30 Jan 2024 12:38:20 -0800 Subject: [PATCH 08/13] handle potential uncaught OOMKilled terminations (#4793) Signed-off-by: Paul Dittamo --- .../pluginmachinery/flytek8s/pod_helper.go | 11 ++++++++--- .../flytek8s/pod_helper_test.go | 19 ++++++++++++++++++- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper.go index 2a17751c62..69111dc030 100644 --- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper.go +++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper.go @@ -759,7 +759,7 @@ func DemystifySuccess(status v1.PodStatus, info pluginsCore.TaskInfo) (pluginsCo for _, status := range append( append(status.InitContainerStatuses, status.ContainerStatuses...), status.EphemeralContainerStatuses...) { if status.State.Terminated != nil && strings.Contains(status.State.Terminated.Reason, OOMKilled) { - return pluginsCore.PhaseInfoRetryableFailure("OOMKilled", + return pluginsCore.PhaseInfoRetryableFailure(OOMKilled, "Pod reported success despite being OOMKilled", &info), nil } } @@ -777,9 +777,14 @@ func DeterminePrimaryContainerPhase(primaryContainerName string, statuses []v1.C } if s.State.Terminated != nil { - if s.State.Terminated.ExitCode != 0 { + if s.State.Terminated.ExitCode != 0 || strings.Contains(s.State.Terminated.Reason, OOMKilled) { + message := fmt.Sprintf("\r\n[%v] terminated with exit code (%v). Reason [%v]. Message: \n%v.", + s.Name, + s.State.Terminated.ExitCode, + s.State.Terminated.Reason, + s.State.Terminated.Message) return pluginsCore.PhaseInfoRetryableFailure( - s.State.Terminated.Reason, s.State.Terminated.Message, info) + s.State.Terminated.Reason, message, info) } return pluginsCore.PhaseInfoSuccess(info) } diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go index 5efee46c7d..b12813b387 100644 --- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go +++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go @@ -1728,7 +1728,7 @@ func TestDeterminePrimaryContainerPhase(t *testing.T) { }, info) assert.Equal(t, pluginsCore.PhaseRetryableFailure, phaseInfo.Phase()) assert.Equal(t, "foo", phaseInfo.Err().Code) - assert.Equal(t, "foo failed", phaseInfo.Err().Message) + assert.Equal(t, "\r\n[primary] terminated with exit code (1). Reason [foo]. Message: \nfoo failed.", phaseInfo.Err().Message) }) t.Run("primary container succeeded", func(t *testing.T) { phaseInfo := DeterminePrimaryContainerPhase(primaryContainerName, []v1.ContainerStatus{ @@ -1751,6 +1751,23 @@ func TestDeterminePrimaryContainerPhase(t *testing.T) { assert.Equal(t, PrimaryContainerNotFound, phaseInfo.Err().Code) assert.Equal(t, "Primary container [primary] not found in pod's container statuses", phaseInfo.Err().Message) }) + t.Run("primary container failed with OOMKilled", func(t *testing.T) { + phaseInfo := DeterminePrimaryContainerPhase(primaryContainerName, []v1.ContainerStatus{ + secondaryContainer, { + Name: primaryContainerName, + State: v1.ContainerState{ + Terminated: &v1.ContainerStateTerminated{ + ExitCode: 0, + Reason: OOMKilled, + Message: "foo failed", + }, + }, + }, + }, info) + assert.Equal(t, pluginsCore.PhaseRetryableFailure, phaseInfo.Phase()) + assert.Equal(t, OOMKilled, phaseInfo.Err().Code) + assert.Equal(t, "\r\n[primary] terminated with exit code (0). Reason [OOMKilled]. Message: \nfoo failed.", phaseInfo.Err().Message) + }) } func TestGetPodTemplate(t *testing.T) { From bce5d8c1cca1ab57cbde4bbe8c303cd65d84fc24 Mon Sep 17 00:00:00 2001 From: Katrina Rogan Date: Tue, 30 Jan 2024 13:51:07 -0800 Subject: [PATCH 09/13] Update additional bindings for org in path to be consistent (#4795) --- .../gen/pb-cpp/flyteidl/service/admin.pb.cc | 28 +- .../gen/pb-go/flyteidl/service/admin.pb.go | 347 +++++++++--------- .../gen/pb-go/flyteidl/service/admin.pb.gw.go | 124 +++---- .../pb-go/flyteidl/service/admin.swagger.json | 230 ++++++------ .../flyteidl/service/flyteadmin/README.md | 16 +- .../service/flyteadmin/api/swagger.yaml | 220 +++++------ .../service/flyteadmin/api_admin_service.go | 46 +-- .../gen/pb-go/flyteidl/service/openapi.go | 2 +- .../gen/pb-java/flyteidl/service/Admin.java | 28 +- .../pb_python/flyteidl/service/admin_pb2.py | 16 +- .../flyteidl/service/flyteadmin/README.md | 16 +- .../flyteadmin/api/admin_service_api.py | 166 ++++----- flyteidl/protos/flyteidl/service/admin.proto | 16 +- 13 files changed, 628 insertions(+), 627 deletions(-) diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc index b395530a7f..cb35496b69 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc @@ -226,9 +226,9 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "task_execution_id.task_id.domain}/{task_" "execution_id.task_id.name}/{task_executi" "on_id.task_id.version}/{task_execution_i" - "d.retry_attempt}Z\347\003\022\344\003/api/v1/children/t" - "ask_executions/org/{task_execution_id.no" - "de_execution_id.execution_id.org}/{task_" + "d.retry_attempt}Z\347\003\022\344\003/api/v1/children/o" + "rg/{task_execution_id.node_execution_id." + "execution_id.org}/task_executions/{task_" "execution_id.node_execution_id.execution" "_id.project}/{task_execution_id.node_exe" "cution_id.execution_id.domain}/{task_exe" @@ -245,8 +245,8 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "1/data/node_executions/{id.execution_id." "project}/{id.execution_id.domain}/{id.ex" "ecution_id.name}/{id.node_id}Z\220\001\022\215\001/api/" - "v1/data/node_executions/org/{id.executio" - "n_id.org}/{id.execution_id.project}/{id." + "v1/data/org/{id.execution_id.org}/node_e" + "xecutions/{id.execution_id.project}/{id." "execution_id.domain}/{id.execution_id.na" "me}/{id.node_id}\022\250\001\n\017RegisterProject\022&.f" "lyteidl.admin.ProjectRegisterRequest\032\'.f" @@ -317,8 +317,8 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "de_id}/{id.task_id.project}/{id.task_id." "domain}/{id.task_id.name}/{id.task_id.ve" "rsion}/{id.retry_attempt}Z\315\002\022\312\002/api/v1/d" - "ata/task_executions/org/{id.node_executi" - "on_id.execution_id.org}/{id.node_executi" + "ata/org/{id.node_execution_id.execution_" + "id.org}/task_executions/{id.node_executi" "on_id.execution_id.project}/{id.node_exe" "cution_id.execution_id.domain}/{id.node_" "execution_id.execution_id.name}/{id.node" @@ -396,21 +396,21 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "admin.NamedEntityListRequest\032\037.flyteidl." "admin.NamedEntityList\"\211\001\202\323\344\223\002\202\001\0229/api/v1" "/named_entities/{resource_type}/{project" - "}/{domain}ZE\022C/api/v1/named_entities/{re" - "source_type}/org/{org}/{project}/{domain" + "}/{domain}ZE\022C/api/v1/named_entities/org" + "/{org}/{resource_type}/{project}/{domain" "}\022\203\002\n\016GetNamedEntity\022%.flyteidl.admin.Na" "medEntityGetRequest\032\033.flyteidl.admin.Nam" "edEntity\"\254\001\202\323\344\223\002\245\001\022I/api/v1/named_entiti" "es/{resource_type}/{id.project}/{id.doma" "in}/{id.name}ZX\022V/api/v1/named_entities/" - "{resource_type}/org/{id.org}/{id.project" + "org/{id.org}/{resource_type}/{id.project" "}/{id.domain}/{id.name}\022\235\002\n\021UpdateNamedE" "ntity\022(.flyteidl.admin.NamedEntityUpdate" "Request\032).flyteidl.admin.NamedEntityUpda" "teResponse\"\262\001\202\323\344\223\002\253\001\032I/api/v1/named_enti" "ties/{resource_type}/{id.project}/{id.do" "main}/{id.name}:\001*Z[\032V/api/v1/named_enti" - "ties/{resource_type}/org/{id.org}/{id.pr" + "ties/org/{id.org}/{resource_type}/{id.pr" "oject}/{id.domain}/{id.name}:\001*\022l\n\nGetVe" "rsion\022!.flyteidl.admin.GetVersionRequest" "\032\".flyteidl.admin.GetVersionResponse\"\027\202\323" @@ -428,12 +428,12 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "ityList\"\327\002\202\323\344\223\002\320\002\022O/api/v1/description_e" "ntities/{resource_type}/{id.project}/{id" ".domain}/{id.name}Z^\022\\/api/v1/descriptio" - "n_entities/{resource_type}/org/{id.org}/" + "n_entities/org/{id.org}/{resource_type}/" "{id.project}/{id.domain}/{id.name}ZG\022E/a" "pi/v1/description_entities/{resource_typ" "e}/{id.project}/{id.domain}ZT\022R/api/v1/d" - "escription_entities/{resource_type}/org/" - "{id.org}/{id.project}/{id.domain}\022\225\002\n\023Ge" + "escription_entities/org/{id.org}/{resour" + "ce_type}/{id.project}/{id.domain}\022\225\002\n\023Ge" "tExecutionMetrics\0222.flyteidl.admin.Workf" "lowExecutionGetMetricsRequest\0323.flyteidl" ".admin.WorkflowExecutionGetMetricsRespon" diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go index a00d043f14..cd824e0f8f 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go @@ -29,184 +29,185 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("flyteidl/service/admin.proto", fileDescriptor_5cfa31da1d67295d) } var fileDescriptor_5cfa31da1d67295d = []byte{ - // 2832 bytes of a gzipped FileDescriptorProto + // 2842 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5b, 0x6b, 0x8c, 0x15, 0x57, - 0x1d, 0xcf, 0x99, 0xa5, 0xa2, 0xa7, 0x3c, 0x96, 0x7f, 0x41, 0x60, 0x78, 0x95, 0xa1, 0xb0, 0xcb, + 0x1d, 0xcf, 0x99, 0x6d, 0x45, 0xa7, 0x3c, 0x96, 0x7f, 0x41, 0x60, 0x78, 0x95, 0xa1, 0xb0, 0xcb, 0x05, 0xf6, 0x6e, 0x79, 0xb4, 0xb2, 0xda, 0x96, 0x2d, 0x0b, 0xb7, 0x50, 0x5e, 0x2e, 0xb4, 0xda, 0x5b, 0xe3, 0xcd, 0xec, 0xbd, 0x87, 0x65, 0xe0, 0xde, 0x3b, 0xd7, 0x99, 0xd9, 0x6d, 0x37, 0x64, 0xab, 0x29, 0x15, 0xb1, 0x06, 0x30, 0x41, 0x30, 0x8d, 0x2d, 0x31, 0x8d, 0x8d, 0xf5, 0x11, 0x3f, 0x98, 0x68, 0x34, 0xd1, 0xc4, 0x0f, 0x92, 0x34, 0x6d, 0x4c, 0xda, 0xd4, 0x6a, 0xa3, 0xfd, 0x64, - 0x48, 0x68, 0xa2, 0x51, 0xab, 0x1f, 0xac, 0x5f, 0x8c, 0x99, 0xf3, 0x98, 0xf7, 0x99, 0xc7, 0x65, - 0x21, 0x24, 0xe5, 0xdb, 0xee, 0x3d, 0xff, 0x73, 0xce, 0xef, 0xf7, 0xfb, 0x3f, 0xce, 0x39, 0x33, - 0x67, 0xf0, 0xf2, 0xa3, 0xcd, 0x29, 0x87, 0x18, 0x8d, 0x66, 0xd9, 0x26, 0xd6, 0xa4, 0x51, 0x27, - 0x65, 0xbd, 0xd1, 0x32, 0xda, 0x03, 0x1d, 0xcb, 0x74, 0x4c, 0xe8, 0x15, 0xad, 0x03, 0xbc, 0x55, - 0x5d, 0x3e, 0x6e, 0x9a, 0xe3, 0x4d, 0x52, 0xd6, 0x3b, 0x46, 0x59, 0x6f, 0xb7, 0x4d, 0x47, 0x77, - 0x0c, 0xb3, 0x6d, 0x33, 0x7b, 0xd5, 0x1f, 0x8d, 0x8e, 0x52, 0xee, 0x58, 0xe6, 0x71, 0x52, 0x77, - 0x78, 0xeb, 0x40, 0x72, 0x6b, 0xad, 0x61, 0xb6, 0x74, 0xa3, 0x5d, 0xd3, 0x1d, 0xc7, 0x32, 0xc6, - 0x26, 0x1c, 0x22, 0x46, 0xeb, 0x93, 0xd8, 0xc7, 0x0c, 0x97, 0x46, 0x0c, 0x1d, 0xdd, 0x3e, 0xc1, - 0x9b, 0x56, 0x44, 0x9a, 0x9e, 0x32, 0xad, 0x13, 0x47, 0x9b, 0xe6, 0x53, 0xbc, 0xb9, 0x5f, 0xd2, - 0x1c, 0x9f, 0xe3, 0xee, 0x88, 0x65, 0x53, 0x9f, 0x68, 0xd7, 0x8f, 0xd5, 0x3a, 0x4d, 0x9d, 0x8b, - 0xa5, 0xaa, 0x11, 0x0b, 0x32, 0x49, 0xda, 0x82, 0xfa, 0xca, 0x68, 0xdb, 0xd3, 0xa4, 0x3e, 0xe1, - 0x2a, 0x27, 0xa1, 0xda, 0xd2, 0x9d, 0xfa, 0x31, 0x7d, 0xac, 0x49, 0x6a, 0x16, 0xb1, 0xcd, 0x09, - 0xab, 0x4e, 0xb8, 0xe1, 0x9a, 0x88, 0x61, 0xdb, 0x6c, 0x90, 0x5a, 0x74, 0xb4, 0x35, 0x09, 0x7a, - 0xc4, 0x8c, 0xa2, 0xbe, 0x9a, 0x24, 0x96, 0xed, 0xb7, 0x2e, 0x8b, 0xb4, 0xd6, 0xcd, 0x56, 0x4b, - 0x8a, 0xb6, 0x41, 0xec, 0xba, 0x65, 0x74, 0xdc, 0xc1, 0x6b, 0xa4, 0xed, 0x18, 0xce, 0x14, 0x33, - 0xdc, 0xfc, 0x8b, 0x29, 0x3c, 0x67, 0xd8, 0x35, 0x39, 0xcc, 0xc2, 0x07, 0xce, 0x21, 0x8c, 0x77, - 0x5a, 0x44, 0x77, 0xc8, 0x11, 0xdd, 0x3e, 0x01, 0xab, 0xbd, 0x90, 0x18, 0x60, 0x61, 0xe7, 0xfe, - 0xca, 0xda, 0x47, 0xc9, 0x97, 0x26, 0x88, 0xed, 0xa8, 0x5a, 0x9a, 0x89, 0xdd, 0x31, 0xdb, 0x36, - 0xd1, 0xb6, 0x3f, 0xfb, 0xf6, 0xd5, 0x0b, 0xca, 0x16, 0x6d, 0x2e, 0x0d, 0xcb, 0xc9, 0x7b, 0x29, - 0x61, 0x7b, 0x08, 0x95, 0xaa, 0xab, 0x34, 0x35, 0xf4, 0x5b, 0xd9, 0xb4, 0xc6, 0xcb, 0x27, 0x8d, - 0xc6, 0x80, 0x69, 0x8d, 0x4f, 0x0f, 0xa1, 0x12, 0xbc, 0x8b, 0xf0, 0xec, 0x0a, 0x71, 0x28, 0x9a, - 0xbb, 0xa3, 0x53, 0x1d, 0x1c, 0x73, 0xe3, 0xad, 0x42, 0x1c, 0x01, 0x66, 0x61, 0x12, 0x18, 0xed, - 0x5b, 0x88, 0xce, 0x7f, 0x16, 0xc1, 0x03, 0xe1, 0xc9, 0xdc, 0x89, 0x78, 0xd0, 0x4e, 0xd3, 0x7f, - 0x58, 0xa4, 0xb3, 0xbf, 0xdb, 0x7a, 0x8b, 0xb0, 0xbf, 0xb8, 0xf2, 0xd3, 0xd5, 0x7d, 0xb0, 0x57, - 0x8e, 0xb6, 0xe8, 0x68, 0x70, 0x05, 0xe1, 0x3b, 0xf7, 0x19, 0x36, 0xe5, 0xb6, 0xa7, 0x61, 0xc3, - 0x60, 0x14, 0xfc, 0x01, 0xbd, 0x45, 0x1a, 0xbb, 0xa8, 0xbf, 0xf6, 0x34, 0x5c, 0xbf, 0x1d, 0x35, - 0x88, 0xe5, 0xf6, 0x10, 0x74, 0xd7, 0xe7, 0xee, 0xa1, 0x3d, 0x41, 0x25, 0x38, 0x0c, 0x6b, 0x82, - 0x04, 0x6a, 0x46, 0xc3, 0x2e, 0x9f, 0xf4, 0x31, 0x73, 0xc0, 0xd5, 0x8d, 0x50, 0x4a, 0xe0, 0xc9, - 0x48, 0xc6, 0xac, 0xe1, 0x55, 0x05, 0x7f, 0x42, 0xf0, 0xb0, 0x61, 0x4d, 0x14, 0xd3, 0x28, 0x4f, - 0x90, 0x20, 0xf0, 0x25, 0x49, 0x7e, 0xa2, 0x38, 0xff, 0xcc, 0x7c, 0xf5, 0x7b, 0x04, 0x83, 0x45, - 0x7d, 0x55, 0x7d, 0x28, 0xea, 0xdf, 0x82, 0xee, 0xa9, 0xf6, 0xc3, 0xba, 0x7c, 0x93, 0x56, 0xb7, - 0xc1, 0x96, 0x2e, 0xa6, 0x82, 0x97, 0x11, 0x9e, 0xc7, 0x72, 0xe3, 0x73, 0xbc, 0x90, 0xc1, 0xda, - 0xa8, 0x14, 0xa2, 0x25, 0x9c, 0x66, 0xeb, 0xb2, 0xcc, 0x78, 0xaa, 0x0d, 0x53, 0xf9, 0x3e, 0xad, - 0x2d, 0x10, 0xf0, 0x44, 0xc5, 0xa4, 0xe9, 0xb6, 0x46, 0x5b, 0x19, 0xfb, 0x3d, 0x96, 0x72, 0xef, - 0x23, 0x7c, 0x67, 0x85, 0x38, 0x1e, 0xc2, 0xec, 0xb4, 0x5b, 0x22, 0x03, 0xa7, 0xbd, 0xc8, 0xdc, - 0x79, 0x11, 0xc1, 0x70, 0x7c, 0xe2, 0xa2, 0xe9, 0x77, 0x08, 0x0e, 0xa4, 0xa3, 0x2f, 0x9c, 0x82, - 0x6f, 0x21, 0x3c, 0xdf, 0x0d, 0x3b, 0x81, 0xf7, 0x86, 0xa7, 0xa1, 0x4e, 0xe5, 0x78, 0x12, 0xfa, - 0xa2, 0x44, 0x64, 0xa9, 0x38, 0x08, 0x03, 0x12, 0xce, 0xb2, 0x74, 0xfc, 0x8d, 0x82, 0xe7, 0x06, - 0x39, 0xe5, 0x4c, 0xc9, 0xe5, 0x32, 0x1f, 0x52, 0xdc, 0x7f, 0x65, 0x7e, 0xbc, 0x8a, 0x60, 0x6b, - 0x37, 0x7e, 0xac, 0xee, 0x4c, 0xf2, 0x7f, 0xd1, 0xf4, 0x0c, 0x94, 0xa5, 0xec, 0xc9, 0xab, 0xdb, - 0xe1, 0xfe, 0x2e, 0xa7, 0x84, 0x9f, 0x20, 0xdc, 0xcb, 0xf2, 0x6a, 0x1f, 0xdd, 0x45, 0x1c, 0x6a, - 0xea, 0x6d, 0xe8, 0x8b, 0x0a, 0xe4, 0xb7, 0x85, 0x53, 0xb5, 0x3f, 0xdb, 0x90, 0x27, 0x6b, 0x85, - 0x8a, 0x3a, 0xac, 0x2d, 0x14, 0x40, 0x03, 0x9b, 0x16, 0x9a, 0xaf, 0xeb, 0xb4, 0xd5, 0x49, 0x4d, - 0xb1, 0x94, 0xfd, 0x17, 0xc2, 0x73, 0x2b, 0xc4, 0x09, 0xa0, 0xcd, 0x4e, 0x5a, 0x55, 0x0e, 0x53, - 0x7b, 0x99, 0xb9, 0xfb, 0x3b, 0x08, 0x46, 0x12, 0xe7, 0x2f, 0x9a, 0xb9, 0x87, 0xe1, 0xb3, 0x99, - 0x3c, 0x0a, 0x27, 0xef, 0xbf, 0x11, 0xbe, 0xab, 0x42, 0x9c, 0xe1, 0xba, 0x63, 0x4c, 0xa6, 0x3a, - 0x2a, 0x6a, 0x91, 0x47, 0x81, 0x4b, 0x4c, 0x81, 0xf3, 0x08, 0x1e, 0x14, 0xc8, 0x75, 0x3a, 0x4c, - 0xad, 0xa0, 0x10, 0xd5, 0xfd, 0xf0, 0x68, 0xda, 0x08, 0x05, 0x25, 0x70, 0x37, 0x44, 0x8b, 0xdc, - 0x94, 0x8c, 0x92, 0xb2, 0x61, 0x43, 0x16, 0xef, 0x60, 0xba, 0xaf, 0x94, 0x73, 0xa7, 0x09, 0x6f, - 0x51, 0xfa, 0x4d, 0xbf, 0xfa, 0x24, 0xb2, 0x8f, 0xd7, 0xab, 0x21, 0xf8, 0x54, 0x26, 0x5b, 0x59, - 0xe5, 0x7a, 0x0f, 0xe1, 0x05, 0xee, 0xe4, 0x3e, 0x94, 0x1b, 0x5e, 0x8f, 0x8f, 0x53, 0x9a, 0x0d, - 0xbf, 0xb0, 0x04, 0xd0, 0xca, 0x4a, 0xf2, 0x7d, 0x7e, 0x0d, 0x8c, 0x5a, 0xa7, 0xd2, 0x7b, 0x53, - 0x61, 0x8b, 0x4d, 0xd0, 0x67, 0xb9, 0x4a, 0x73, 0x96, 0xaf, 0xfe, 0xc3, 0x62, 0xf5, 0x9f, 0xc8, - 0xaf, 0x78, 0x45, 0x83, 0x74, 0xb7, 0x24, 0xd1, 0x8b, 0x96, 0xe8, 0x32, 0x6c, 0x2a, 0x04, 0xa1, - 0xfa, 0x19, 0x18, 0xea, 0x7e, 0x62, 0x38, 0xab, 0xe0, 0xde, 0xc7, 0x3a, 0x8d, 0xdc, 0x85, 0x9a, - 0xd9, 0xe6, 0x28, 0xd4, 0xc2, 0x90, 0x17, 0xea, 0x57, 0x98, 0xc2, 0x97, 0x91, 0x3a, 0x23, 0xf5, - 0xd0, 0x2d, 0xed, 0x87, 0xd5, 0x1b, 0x50, 0x12, 0xbf, 0x87, 0xf0, 0x7c, 0xb6, 0xc6, 0xec, 0x12, - 0xa7, 0x49, 0x88, 0xed, 0x1c, 0xbd, 0xa6, 0xf0, 0xb2, 0xd5, 0x97, 0x69, 0xc7, 0xc5, 0xd8, 0x41, - 0xb5, 0x18, 0xd2, 0x40, 0xe0, 0xf7, 0x4e, 0xae, 0x74, 0xcd, 0x5a, 0xad, 0x2e, 0x8f, 0x37, 0xf8, - 0x99, 0xe1, 0x2e, 0x57, 0xbf, 0x46, 0x78, 0xc1, 0x28, 0x61, 0xb4, 0x7d, 0xa0, 0xfd, 0x52, 0x00, - 0xc2, 0xb6, 0x30, 0xd4, 0xc7, 0x28, 0xd4, 0x83, 0xda, 0xb2, 0x04, 0x44, 0x16, 0x1f, 0xd4, 0xc5, - 0xbc, 0x49, 0xeb, 0x97, 0x61, 0x16, 0xae, 0x08, 0x98, 0xc3, 0x2f, 0x11, 0xee, 0x1d, 0x25, 0x75, - 0x73, 0x92, 0x58, 0x3e, 0xfc, 0xbe, 0x14, 0xf8, 0xd4, 0xb4, 0x30, 0xfa, 0xc3, 0x14, 0xfd, 0x7e, - 0xff, 0x88, 0x1c, 0x42, 0x4f, 0xc7, 0x74, 0xc1, 0x6f, 0xd4, 0xfa, 0xb2, 0xc1, 0x0b, 0x6b, 0xb7, - 0xc8, 0xce, 0xa9, 0x10, 0xc7, 0xc7, 0xbd, 0x41, 0xb6, 0xf1, 0xf3, 0x4c, 0x02, 0x9b, 0x86, 0xa5, - 0x52, 0xec, 0xda, 0x29, 0x96, 0x23, 0xd3, 0xb0, 0x2d, 0x01, 0x4d, 0x8e, 0xd2, 0x31, 0x02, 0x0f, - 0x67, 0xd1, 0xc8, 0xb1, 0x3c, 0xfe, 0x03, 0xe1, 0xf9, 0x2c, 0x79, 0xf3, 0x64, 0x40, 0xb8, 0x1e, - 0xf4, 0x65, 0xda, 0x71, 0xc7, 0x3c, 0xcf, 0xa8, 0x9e, 0x42, 0x6a, 0x77, 0x5c, 0x5d, 0xaf, 0x55, - 0xd4, 0x19, 0xa0, 0xeb, 0x3a, 0xf4, 0xb4, 0x82, 0x7b, 0x83, 0x0e, 0x1d, 0xd1, 0x1d, 0x1d, 0xca, - 0x79, 0x9c, 0xea, 0x5a, 0x0a, 0xee, 0x83, 0xf9, 0x3b, 0x70, 0x11, 0xce, 0x31, 0x11, 0xbe, 0x86, - 0xfc, 0x0a, 0xde, 0xd0, 0x1d, 0xbd, 0xa0, 0xd7, 0xf7, 0x40, 0x45, 0xd6, 0xbb, 0xa8, 0xeb, 0xaf, - 0x20, 0x3c, 0xcf, 0x5d, 0x0f, 0x3d, 0xc4, 0x39, 0x97, 0xd7, 0x15, 0x52, 0xb7, 0xd3, 0xd5, 0xd5, - 0xa4, 0x34, 0x0d, 0xd8, 0x50, 0xc0, 0xd5, 0xc1, 0x6d, 0x50, 0x51, 0x46, 0xf0, 0x21, 0xc2, 0x70, - 0x84, 0x58, 0x2d, 0xa3, 0x1d, 0x8a, 0xe2, 0xf5, 0x52, 0x98, 0x9e, 0xb1, 0x60, 0x54, 0xca, 0x63, - 0x1a, 0x8d, 0xe5, 0xd2, 0x75, 0xc4, 0x72, 0x69, 0x86, 0x62, 0xf9, 0x2f, 0x2c, 0x96, 0x0f, 0x98, - 0x0d, 0x92, 0x52, 0x58, 0x43, 0xcd, 0x81, 0xe2, 0xb4, 0x22, 0xd5, 0x50, 0xfb, 0xaa, 0x42, 0x99, - 0xfe, 0x0f, 0x41, 0x5b, 0xa0, 0x0d, 0x3f, 0x9d, 0x65, 0x74, 0xbd, 0x7f, 0x6b, 0x51, 0xc8, 0xa1, - 0x96, 0x20, 0xfe, 0x50, 0x83, 0xbf, 0x2c, 0xd3, 0xd1, 0x8d, 0xc6, 0x74, 0xf5, 0x1b, 0x08, 0xce, - 0x20, 0xd9, 0x9c, 0x42, 0xa6, 0xd0, 0x20, 0x9e, 0x66, 0x33, 0x8f, 0x06, 0x2e, 0xf7, 0xe0, 0x4f, - 0xba, 0xc9, 0x3c, 0xd5, 0xd6, 0x5b, 0x46, 0xdd, 0xd5, 0xc8, 0x7b, 0xd4, 0xb3, 0x29, 0xaa, 0x60, - 0xb2, 0x9d, 0x10, 0x3c, 0xb6, 0x74, 0x24, 0xda, 0xf2, 0x40, 0xfb, 0x3e, 0x93, 0xff, 0xbb, 0x0a, - 0x7c, 0xf9, 0xe6, 0xca, 0x5f, 0x6e, 0x30, 0x54, 0x35, 0xf1, 0x18, 0xa0, 0xfa, 0x22, 0x82, 0x17, - 0x6e, 0x19, 0x7f, 0xc4, 0xe0, 0xc1, 0x7f, 0x15, 0x0c, 0x6e, 0xe9, 0x09, 0x85, 0xaf, 0x1d, 0xdf, - 0x1f, 0x85, 0xda, 0x83, 0x15, 0x6d, 0x75, 0xa6, 0xa5, 0x76, 0x91, 0x79, 0xe3, 0x9c, 0x02, 0xb6, - 0xd4, 0x1b, 0xde, 0xb3, 0x29, 0x09, 0xe9, 0xe4, 0x76, 0x8f, 0x7a, 0x72, 0x33, 0x2b, 0xfb, 0x97, - 0x10, 0x5c, 0x48, 0xf7, 0x40, 0x72, 0x6f, 0xe6, 0x87, 0x1b, 0x07, 0x0c, 0xce, 0x7f, 0x1c, 0x2f, - 0x8d, 0x6b, 0xbf, 0xdb, 0xb4, 0xe8, 0x1b, 0x88, 0x72, 0xaa, 0xb0, 0xdc, 0xaa, 0xa0, 0x27, 0x5e, - 0x9a, 0x4d, 0x3d, 0x71, 0x69, 0x36, 0xfc, 0xa0, 0x47, 0x28, 0x52, 0x3f, 0x66, 0x34, 0x1b, 0x16, - 0x89, 0xbe, 0x19, 0xb2, 0xcb, 0x27, 0xc3, 0x3f, 0xd4, 0x44, 0x1c, 0x85, 0x7e, 0x91, 0xa8, 0x52, - 0xb8, 0xab, 0x27, 0x58, 0xe1, 0x9e, 0x3c, 0xca, 0xf3, 0xf4, 0xf3, 0xd2, 0x20, 0xc1, 0x9a, 0xbf, - 0xa3, 0x48, 0xe5, 0x20, 0x6c, 0x52, 0xc0, 0x0a, 0x13, 0x29, 0x2a, 0x61, 0x20, 0xce, 0x51, 0x49, - 0x36, 0x16, 0x71, 0xac, 0xa9, 0x9a, 0xee, 0x38, 0xa4, 0xd5, 0x71, 0xa6, 0xab, 0xd7, 0x7a, 0xe0, - 0x6a, 0xb6, 0xbb, 0x68, 0x24, 0x17, 0x56, 0x8f, 0x05, 0xf9, 0x6d, 0x4f, 0xdf, 0x12, 0x9e, 0x86, - 0x53, 0x3d, 0x78, 0x61, 0x74, 0x4f, 0x42, 0xf7, 0xd8, 0x1b, 0xb2, 0xf6, 0x25, 0xc1, 0xfd, 0xf5, - 0xc6, 0x7c, 0xc6, 0x7c, 0xad, 0x3c, 0xcf, 0xaa, 0xf3, 0x99, 0x40, 0x75, 0xa6, 0xbb, 0xe3, 0x9b, - 0xb4, 0x5f, 0xf9, 0x26, 0x82, 0xb3, 0x28, 0x75, 0xe2, 0x9b, 0xbe, 0x69, 0x79, 0x15, 0xe1, 0xf9, - 0xa3, 0x64, 0xdc, 0xb0, 0x1d, 0x62, 0x1d, 0x62, 0x23, 0xc6, 0xcf, 0x75, 0xbc, 0x41, 0xd8, 0x49, - 0xcf, 0x75, 0x31, 0x3b, 0x2e, 0xfb, 0x08, 0x55, 0xfd, 0x41, 0xad, 0x57, 0x70, 0xe7, 0xd8, 0xe9, - 0x73, 0x8d, 0x3e, 0x4d, 0x8b, 0xfe, 0xcc, 0x64, 0x10, 0x97, 0x28, 0xc4, 0xd3, 0x8d, 0x6f, 0x23, - 0x3c, 0x97, 0x1d, 0x18, 0x05, 0xd0, 0xc5, 0x12, 0x00, 0xea, 0x5a, 0x49, 0x43, 0xe4, 0xbc, 0xb9, - 0x9b, 0xe2, 0xda, 0xa1, 0x2e, 0x8a, 0x01, 0x38, 0x69, 0x34, 0xe8, 0x0e, 0xfc, 0x1e, 0x75, 0x55, - 0x32, 0x38, 0xe1, 0x13, 0x8a, 0xec, 0x39, 0x84, 0xe7, 0xb8, 0x6b, 0x0e, 0x9f, 0xc5, 0x06, 0x4d, - 0x32, 0x7f, 0xea, 0xbb, 0x5a, 0xd1, 0x5b, 0xbb, 0x8f, 0xc2, 0x1a, 0x84, 0x98, 0x5c, 0xd5, 0xe5, - 0xa0, 0xca, 0xe1, 0xc0, 0x3b, 0x08, 0xdf, 0x15, 0x7e, 0x0b, 0xba, 0x6b, 0x92, 0xb4, 0x9d, 0xf8, - 0xee, 0x33, 0x76, 0x06, 0xa5, 0x76, 0x02, 0xd8, 0x40, 0x5e, 0x73, 0xae, 0x62, 0x8d, 0xc2, 0x7d, - 0x42, 0x5b, 0xe2, 0x9d, 0x55, 0xdc, 0x66, 0x3b, 0xfc, 0x86, 0x74, 0x48, 0xdb, 0x16, 0x69, 0xa6, - 0xb8, 0xd9, 0x5d, 0x91, 0x78, 0xb4, 0x07, 0xfb, 0xc2, 0x6f, 0xbd, 0xa7, 0x6f, 0x34, 0xb9, 0x29, - 0xa7, 0xf5, 0xa9, 0x79, 0x1f, 0xe2, 0x53, 0xca, 0x63, 0xca, 0xb9, 0x54, 0x29, 0x97, 0x23, 0xfe, - 0x9b, 0x23, 0x0e, 0xd6, 0xcd, 0x17, 0xca, 0x63, 0xbb, 0xb6, 0x55, 0xce, 0x23, 0x31, 0x71, 0x45, - 0x57, 0xf8, 0x93, 0x47, 0xc3, 0xdd, 0xcd, 0x48, 0x68, 0xd0, 0xa6, 0x7c, 0x34, 0x92, 0x4c, 0x39, - 0x8d, 0x0e, 0xa5, 0x71, 0x3c, 0x46, 0xc3, 0xbb, 0x1f, 0x72, 0x50, 0xdb, 0x2b, 0xa7, 0xd1, 0xd1, - 0x2d, 0xd2, 0x76, 0x6a, 0x79, 0x56, 0x53, 0x31, 0x20, 0xbc, 0x71, 0x07, 0x3d, 0x61, 0x86, 0x30, - 0xc5, 0x4f, 0x98, 0xa1, 0xe6, 0xb4, 0x13, 0x66, 0xc8, 0x50, 0xfb, 0xfb, 0x2c, 0xca, 0xe7, 0xda, - 0x2c, 0x78, 0x41, 0x09, 0xdd, 0xb3, 0x88, 0x94, 0xec, 0xdc, 0x0b, 0x79, 0x81, 0x95, 0x3b, 0xf7, - 0x52, 0x9d, 0xb1, 0x36, 0x27, 0x2e, 0xc6, 0x49, 0xab, 0x6f, 0x7c, 0xb9, 0x4d, 0x5c, 0x5f, 0xe3, - 0x5b, 0xa7, 0xd7, 0x14, 0xb8, 0x22, 0x95, 0x47, 0x2c, 0x2c, 0xb9, 0xb6, 0x48, 0x1f, 0x75, 0x29, - 0xe1, 0x83, 0x1e, 0x76, 0x52, 0x0c, 0x85, 0x61, 0xc2, 0x49, 0x31, 0xd4, 0x9e, 0x7a, 0x3e, 0x89, - 0x59, 0x6a, 0x67, 0x7b, 0x68, 0x50, 0x9f, 0xee, 0x81, 0x1f, 0x22, 0x69, 0x50, 0xe7, 0x76, 0x43, - 0x5e, 0x1f, 0xe4, 0x73, 0x80, 0x5c, 0xfd, 0xea, 0x1f, 0x10, 0xbc, 0x8d, 0x52, 0xa3, 0x2c, 0x57, - 0x88, 0xdd, 0x72, 0xc4, 0xe0, 0x6f, 0x77, 0xd0, 0xfd, 0x68, 0xc8, 0x51, 0xc9, 0xfb, 0xd1, 0x68, - 0x15, 0x4b, 0xdd, 0x8f, 0x26, 0x1b, 0xf3, 0x3a, 0xfd, 0x21, 0x2b, 0x6c, 0x1f, 0xcc, 0x82, 0xcb, - 0x4a, 0x68, 0x5f, 0x78, 0xbb, 0xba, 0x45, 0xab, 0xdb, 0xef, 0x14, 0x78, 0x3d, 0x5d, 0xa3, 0xdb, - 0x25, 0xae, 0x48, 0x89, 0x7b, 0x43, 0xc1, 0x2b, 0x42, 0xbb, 0xe9, 0x11, 0x3a, 0xe4, 0xb0, 0x77, - 0xff, 0x17, 0xb6, 0x4a, 0x36, 0xa8, 0x51, 0xc3, 0xf0, 0xcb, 0x9e, 0x6d, 0x05, 0x7b, 0xf1, 0x4c, - 0xf8, 0x15, 0x7b, 0x5c, 0xfe, 0x33, 0xa4, 0xee, 0x8d, 0xec, 0x70, 0xe3, 0xd7, 0xa4, 0xcb, 0x27, - 0xc3, 0xb7, 0x94, 0xb9, 0x3c, 0x81, 0x1f, 0xb9, 0x3c, 0xee, 0x4e, 0xa7, 0xa1, 0xd6, 0xb2, 0x07, - 0xa4, 0xa1, 0x13, 0xe8, 0xcf, 0x62, 0x24, 0xff, 0x2c, 0x70, 0x4a, 0xc1, 0x6a, 0x85, 0x38, 0x32, - 0x29, 0xef, 0xcd, 0x29, 0x4a, 0x60, 0x4b, 0xb4, 0xb9, 0x48, 0x17, 0x2e, 0xe2, 0x33, 0x54, 0xc3, - 0xa7, 0xfd, 0x7b, 0x14, 0x29, 0x12, 0xc6, 0xef, 0x5f, 0xec, 0xf0, 0xaf, 0xe4, 0x64, 0x28, 0x25, - 0xbb, 0x89, 0x71, 0x41, 0xc1, 0x2b, 0x46, 0x48, 0x93, 0x5c, 0x7f, 0x4c, 0xb1, 0x51, 0x8a, 0xc6, - 0x94, 0xe8, 0xc5, 0xe5, 0x78, 0x8e, 0xc5, 0xd4, 0x33, 0xa5, 0xae, 0xf4, 0x70, 0x83, 0x67, 0x67, - 0xe9, 0x3a, 0x25, 0x71, 0x63, 0xe3, 0x79, 0x05, 0x2f, 0x0e, 0x65, 0x5a, 0x40, 0x8f, 0x01, 0x09, - 0x33, 0x59, 0x76, 0x95, 0x73, 0xdb, 0x73, 0x0d, 0xce, 0x32, 0x0d, 0x4e, 0x23, 0xb5, 0x1c, 0x65, - 0x92, 0x91, 0x50, 0x2e, 0xff, 0x43, 0xea, 0xa3, 0x33, 0x98, 0x3c, 0xfc, 0xde, 0xf9, 0x42, 0x3f, - 0x51, 0x02, 0x4a, 0x6c, 0xc8, 0x64, 0x16, 0x48, 0x8e, 0x8d, 0xf9, 0x8c, 0xb9, 0x06, 0x84, 0x4a, - 0x50, 0x83, 0x7b, 0xd2, 0x14, 0x10, 0x20, 0xab, 0xf7, 0xfb, 0x2f, 0xda, 0x0b, 0xf9, 0x1c, 0xae, - 0x21, 0xbc, 0x38, 0x14, 0xfd, 0x85, 0xfc, 0x1c, 0x8e, 0xf8, 0x72, 0x6e, 0x7b, 0xce, 0xf1, 0x04, - 0xe5, 0x48, 0x4a, 0xb9, 0x38, 0xd2, 0x03, 0x79, 0xa9, 0x3b, 0x9a, 0xf4, 0xae, 0x83, 0x82, 0x97, - 0xb0, 0x38, 0x13, 0x8f, 0x06, 0x02, 0x54, 0xa5, 0xaf, 0xc8, 0x65, 0x31, 0x3d, 0x98, 0xbf, 0x03, - 0x27, 0xfb, 0x1e, 0x0b, 0xea, 0x77, 0x90, 0x5a, 0x8d, 0xdd, 0xf7, 0xed, 0x62, 0x99, 0x08, 0xfd, - 0x26, 0x06, 0xa2, 0x22, 0x39, 0xaa, 0x99, 0x36, 0xc1, 0x75, 0x2d, 0x1b, 0xd2, 0x59, 0xe1, 0x2b, - 0x0a, 0x5e, 0x14, 0xb8, 0x28, 0x1e, 0xd0, 0x76, 0x63, 0xb6, 0x54, 0x81, 0x2c, 0xd9, 0x94, 0xd3, - 0x9a, 0xab, 0xfa, 0x75, 0xa6, 0xea, 0xb3, 0x08, 0xb6, 0xa7, 0xaa, 0x1a, 0x2b, 0x72, 0xfe, 0x9b, - 0x9f, 0xe9, 0xea, 0x2e, 0xd8, 0x99, 0xa9, 0x98, 0xa4, 0x56, 0x06, 0x86, 0x81, 0xf3, 0x0a, 0x5e, - 0xc2, 0x22, 0xbc, 0xbb, 0x08, 0x0b, 0x67, 0xd3, 0x60, 0xfe, 0x0e, 0xe2, 0x41, 0x31, 0xd3, 0xe2, - 0x0c, 0x2a, 0x75, 0xaf, 0x85, 0x1b, 0x40, 0x8f, 0x94, 0x66, 0x42, 0x0e, 0x37, 0x28, 0x5e, 0x47, - 0x78, 0xb1, 0x7b, 0x6e, 0xdc, 0x2f, 0xbe, 0x90, 0x4a, 0xab, 0x2e, 0x12, 0x43, 0x69, 0x75, 0x91, - 0xda, 0x73, 0x39, 0x0e, 0x50, 0x35, 0x1e, 0x01, 0xef, 0x06, 0x9a, 0xff, 0x9d, 0x96, 0xcf, 0x26, - 0xf8, 0x99, 0x47, 0x52, 0x7b, 0xe0, 0x49, 0xe5, 0xfb, 0xfc, 0x46, 0xaa, 0x7f, 0x81, 0xd4, 0x20, - 0x76, 0xfc, 0xb9, 0x73, 0xe0, 0x7e, 0x69, 0xf0, 0x70, 0xbd, 0x2a, 0xc3, 0x2e, 0x29, 0x92, 0xdd, - 0xcd, 0x71, 0x83, 0x7d, 0xa4, 0x65, 0xb8, 0x8e, 0x13, 0x9f, 0x97, 0xd5, 0x9c, 0xa9, 0x0e, 0x49, - 0x92, 0x3f, 0x18, 0xc9, 0x19, 0x9d, 0x53, 0xf7, 0x44, 0xa7, 0x14, 0x3c, 0xaf, 0x42, 0x02, 0x4c, - 0xa7, 0xe2, 0x9f, 0xa6, 0x04, 0x1a, 0x03, 0xe9, 0xbb, 0x2c, 0xc5, 0x4c, 0xfb, 0x31, 0xa3, 0xf8, - 0x0a, 0x82, 0x3d, 0x79, 0x29, 0x66, 0x5f, 0x1a, 0xfa, 0x3c, 0x3c, 0x5e, 0x84, 0x72, 0x81, 0x3b, - 0x44, 0x2f, 0x29, 0x78, 0x01, 0x2b, 0xe2, 0x41, 0x21, 0xfa, 0x53, 0x18, 0x86, 0xd7, 0x88, 0xf5, - 0x39, 0x2c, 0x79, 0xac, 0xfe, 0x94, 0x29, 0xf3, 0x23, 0xa4, 0xce, 0x9c, 0x32, 0x6e, 0x2a, 0x3f, - 0xa9, 0xde, 0x20, 0x71, 0xdc, 0xec, 0x6e, 0x62, 0x5c, 0x21, 0xce, 0xe3, 0xec, 0xbc, 0x16, 0xff, - 0x3c, 0xd0, 0x6f, 0x93, 0x7e, 0x1e, 0x18, 0x34, 0xe1, 0x4a, 0x2c, 0xa6, 0x42, 0x2c, 0x80, 0xf9, - 0x02, 0x37, 0x3f, 0x0f, 0xc2, 0xcf, 0x15, 0xba, 0x09, 0x1b, 0xf1, 0x3f, 0x5f, 0xe4, 0x0e, 0xc9, - 0xfe, 0xba, 0x21, 0x06, 0x2d, 0x36, 0x88, 0xf6, 0x2e, 0x73, 0xc0, 0x5b, 0x08, 0xbc, 0x93, 0x57, - 0xec, 0x43, 0x49, 0x2a, 0x1b, 0x3d, 0x94, 0x16, 0xf4, 0x44, 0xf8, 0xfb, 0x87, 0x36, 0x34, 0x53, - 0xa7, 0x88, 0x79, 0xe2, 0xfa, 0xe6, 0x83, 0xd7, 0x7a, 0x58, 0x11, 0x8e, 0x92, 0x36, 0x92, 0xd6, - 0xe6, 0x98, 0x32, 0xc1, 0x1a, 0xb6, 0x36, 0x97, 0xb5, 0xf6, 0x47, 0xf6, 0xc2, 0xf2, 0x4d, 0x05, - 0x0e, 0xa6, 0x6b, 0x59, 0x3c, 0xd9, 0xbf, 0x08, 0x5f, 0x28, 0x34, 0x64, 0xd1, 0x2b, 0xeb, 0x15, - 0xd8, 0x35, 0x23, 0x90, 0xab, 0x47, 0x60, 0x74, 0xe6, 0x81, 0xc2, 0x45, 0x85, 0x7e, 0xe5, 0xe2, - 0x3d, 0x9a, 0xdb, 0x4f, 0x1c, 0xcb, 0xa8, 0xdb, 0xb0, 0x39, 0xcf, 0x85, 0x4d, 0x6e, 0x2c, 0x9c, - 0xb9, 0xa5, 0x50, 0x1f, 0x9e, 0x9d, 0x09, 0x5f, 0xcf, 0xb6, 0x98, 0x49, 0xc1, 0xab, 0x9e, 0x81, - 0xaf, 0x67, 0x13, 0x06, 0x28, 0xe8, 0xb6, 0x87, 0x1f, 0xaa, 0x3e, 0x30, 0x6e, 0x38, 0xc7, 0x26, - 0xc6, 0x06, 0xea, 0x66, 0xab, 0x4c, 0x79, 0xb9, 0x43, 0xd0, 0x3f, 0xca, 0xde, 0xf7, 0xcf, 0xe3, - 0xa4, 0x5d, 0xee, 0x8c, 0x6d, 0x1a, 0x37, 0xcb, 0xd1, 0xef, 0xe8, 0xc7, 0x3e, 0x46, 0x3f, 0x81, - 0xde, 0xf2, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x94, 0xbe, 0x0b, 0x03, 0x62, 0x3f, 0x00, 0x00, + 0x48, 0x68, 0xa2, 0x51, 0xab, 0x1f, 0xac, 0x5f, 0x8c, 0x99, 0xf3, 0x98, 0x39, 0xf3, 0x38, 0xf3, + 0xb8, 0xec, 0x12, 0x92, 0xf6, 0xdb, 0xee, 0x3d, 0xff, 0x39, 0xe7, 0xf7, 0xfb, 0xfd, 0x1f, 0xe7, + 0x9c, 0x99, 0x73, 0xd4, 0x15, 0xc7, 0x9a, 0x53, 0x2e, 0x36, 0x1b, 0xcd, 0xb2, 0x83, 0xed, 0x49, + 0xb3, 0x8e, 0xcb, 0x46, 0xa3, 0x65, 0xb6, 0x07, 0x3a, 0xb6, 0xe5, 0x5a, 0xd0, 0xcb, 0x5b, 0x07, + 0x58, 0xab, 0xb6, 0x62, 0xdc, 0xb2, 0xc6, 0x9b, 0xb8, 0x6c, 0x74, 0xcc, 0xb2, 0xd1, 0x6e, 0x5b, + 0xae, 0xe1, 0x9a, 0x56, 0xdb, 0xa1, 0xf6, 0x5a, 0xd0, 0x1b, 0xe9, 0xa5, 0xdc, 0xb1, 0xad, 0x13, + 0xb8, 0xee, 0xb2, 0xd6, 0x81, 0xe4, 0xd6, 0x5a, 0xc3, 0x6a, 0x19, 0x66, 0xbb, 0x66, 0xb8, 0xae, + 0x6d, 0x8e, 0x4d, 0xb8, 0x98, 0xf7, 0xd6, 0x27, 0xb1, 0x8f, 0x19, 0x2e, 0x8b, 0x18, 0xba, 0x86, + 0x73, 0x92, 0x35, 0xad, 0x8c, 0x34, 0x3d, 0x69, 0xd9, 0x27, 0x8f, 0x35, 0xad, 0x27, 0x59, 0x73, + 0xbf, 0xa4, 0x39, 0x3e, 0xc6, 0x5d, 0x11, 0xcb, 0xa6, 0x31, 0xd1, 0xae, 0x1f, 0xaf, 0x75, 0x9a, + 0x06, 0x13, 0x4b, 0xd3, 0x22, 0x16, 0x78, 0x12, 0xb7, 0x39, 0xf5, 0x55, 0xd1, 0xb6, 0xa7, 0x70, + 0x7d, 0xc2, 0x53, 0x4e, 0x42, 0xb5, 0x65, 0xb8, 0xf5, 0xe3, 0xc6, 0x58, 0x13, 0xd7, 0x6c, 0xec, + 0x58, 0x13, 0x76, 0x1d, 0x33, 0xc3, 0xb5, 0x11, 0xc3, 0xb6, 0xd5, 0xc0, 0xb5, 0x68, 0x6f, 0x6b, + 0x13, 0xf4, 0x88, 0x19, 0x45, 0x7d, 0x35, 0x89, 0x6d, 0x27, 0x68, 0x5d, 0x1e, 0x69, 0xad, 0x5b, + 0xad, 0x96, 0x14, 0x6d, 0x03, 0x3b, 0x75, 0xdb, 0xec, 0x78, 0x9d, 0xd7, 0x70, 0xdb, 0x35, 0xdd, + 0x29, 0x6a, 0xb8, 0xe5, 0x17, 0x53, 0xea, 0xdc, 0x61, 0xcf, 0xe4, 0x08, 0x0d, 0x1f, 0x38, 0x8f, + 0x54, 0x75, 0x97, 0x8d, 0x0d, 0x17, 0x1f, 0x35, 0x9c, 0x93, 0xb0, 0xc6, 0x0f, 0x89, 0x01, 0x1a, + 0x76, 0xde, 0xaf, 0xb4, 0x7d, 0x14, 0x7f, 0x69, 0x02, 0x3b, 0xae, 0xa6, 0xa7, 0x99, 0x38, 0x1d, + 0xab, 0xed, 0x60, 0x7d, 0xc7, 0x33, 0x6f, 0x5d, 0xbb, 0xa8, 0x6c, 0xd5, 0xe7, 0x91, 0xb0, 0x9c, + 0xbc, 0x87, 0x10, 0x76, 0x86, 0x50, 0xa9, 0xba, 0x5a, 0xd7, 0x42, 0xbf, 0x95, 0x2d, 0x7b, 0xbc, + 0x7c, 0xca, 0x6c, 0x0c, 0x58, 0xf6, 0xf8, 0xf4, 0x10, 0x2a, 0xc1, 0x3b, 0x48, 0x9d, 0x53, 0xc1, + 0x2e, 0x41, 0x73, 0x57, 0x74, 0xa8, 0x43, 0x63, 0x5e, 0xbc, 0x55, 0xb0, 0xcb, 0xc1, 0x2c, 0x4a, + 0x02, 0xa3, 0x7f, 0x0b, 0x91, 0xf1, 0xcf, 0x21, 0xb8, 0x3f, 0x3c, 0x98, 0x37, 0x10, 0x0b, 0xda, + 0x69, 0xf2, 0x0f, 0x8d, 0x74, 0xfa, 0x77, 0xdb, 0x68, 0x61, 0xfa, 0x17, 0x53, 0x7e, 0xba, 0xba, + 0x1f, 0xf6, 0xc9, 0xd1, 0x16, 0xed, 0x0d, 0xae, 0x22, 0xf5, 0x8e, 0xfd, 0xa6, 0x43, 0xb8, 0xed, + 0x6d, 0x38, 0x30, 0x18, 0x05, 0x7f, 0xd0, 0x68, 0xe1, 0xc6, 0x6e, 0xe2, 0xaf, 0xbd, 0x0d, 0xcf, + 0x6f, 0xc7, 0x4c, 0x6c, 0x7b, 0x4f, 0x70, 0xba, 0x1b, 0x72, 0x3f, 0xa1, 0x3f, 0x4e, 0x24, 0x38, + 0x02, 0x6b, 0x45, 0x02, 0x35, 0xb3, 0xe1, 0x94, 0x4f, 0x05, 0x98, 0x19, 0xe0, 0xea, 0x26, 0x28, + 0x25, 0xf0, 0xa4, 0x24, 0x63, 0xd6, 0xf0, 0x8a, 0xa2, 0x7e, 0x82, 0xf3, 0x70, 0x60, 0x6d, 0x14, + 0xd3, 0x28, 0x4b, 0x10, 0x11, 0xf8, 0xd2, 0x24, 0x3f, 0x11, 0x9c, 0x7f, 0xa6, 0xbe, 0xfa, 0x3d, + 0x82, 0xc1, 0xa2, 0xbe, 0xaa, 0x3e, 0x18, 0xf5, 0x6f, 0x41, 0xf7, 0x54, 0xfb, 0x61, 0x7d, 0xbe, + 0x41, 0xab, 0xdb, 0x61, 0x6b, 0x17, 0x43, 0xc1, 0x4b, 0x48, 0x9d, 0x4f, 0x73, 0xe3, 0x73, 0xac, + 0x90, 0xc1, 0xba, 0xa8, 0x14, 0xbc, 0x25, 0x9c, 0x66, 0xeb, 0xb3, 0xcc, 0x58, 0xaa, 0x0d, 0x13, + 0xf9, 0x3e, 0xad, 0x2f, 0xe4, 0xf0, 0x78, 0xc5, 0x24, 0xe9, 0xb6, 0x56, 0x5f, 0x15, 0xfb, 0x3d, + 0x96, 0x72, 0xef, 0x21, 0xf5, 0x8e, 0x0a, 0x76, 0x7d, 0x84, 0xd9, 0x69, 0xb7, 0x54, 0x06, 0x4e, + 0x7f, 0x81, 0xba, 0xf3, 0x12, 0x82, 0xe1, 0xf8, 0xc0, 0x45, 0xd3, 0xef, 0x30, 0x1c, 0x4c, 0x47, + 0x5f, 0x38, 0x05, 0xdf, 0x44, 0xea, 0x02, 0x2f, 0xec, 0x38, 0xde, 0x59, 0x4f, 0x43, 0x83, 0xc8, + 0xf1, 0x04, 0xf4, 0x45, 0x89, 0xc8, 0x52, 0x71, 0x10, 0x06, 0x24, 0x9c, 0x65, 0xe9, 0xf8, 0x1b, + 0x45, 0x9d, 0x27, 0x72, 0xca, 0x99, 0x92, 0x2b, 0x64, 0x3e, 0x24, 0xb8, 0xff, 0x4a, 0xfd, 0x78, + 0x0d, 0xc1, 0xb6, 0x6e, 0xfc, 0x58, 0xdd, 0x95, 0xe4, 0xff, 0xa2, 0xe9, 0x29, 0x94, 0xa5, 0xec, + 0xc1, 0xab, 0x3b, 0xe0, 0xbe, 0x2e, 0x87, 0x84, 0x9f, 0x20, 0xb5, 0x97, 0xe6, 0xd5, 0x7e, 0xb2, + 0x8a, 0x38, 0xdc, 0x34, 0xda, 0xd0, 0x17, 0x15, 0x28, 0x68, 0x0b, 0xa7, 0x6a, 0x7f, 0xb6, 0x21, + 0x4b, 0xd6, 0x0a, 0x11, 0x75, 0x58, 0x5f, 0xc4, 0x81, 0x0a, 0x8b, 0x16, 0x92, 0xaf, 0xeb, 0xf5, + 0x35, 0x49, 0x4d, 0xb1, 0x94, 0xfd, 0x17, 0x52, 0xe7, 0x55, 0xb0, 0x2b, 0xa0, 0xcd, 0x4e, 0x5a, + 0x4d, 0x0e, 0x53, 0x7f, 0x89, 0xba, 0xfb, 0x3b, 0x08, 0x46, 0x12, 0xc7, 0x2f, 0x9a, 0xb9, 0x47, + 0xe0, 0xb3, 0x99, 0x3c, 0x0a, 0x27, 0xef, 0xbf, 0x91, 0x7a, 0x67, 0x05, 0xbb, 0xc3, 0x75, 0xd7, + 0x9c, 0x4c, 0x75, 0x54, 0xd4, 0x22, 0x8f, 0x02, 0x97, 0xa9, 0x02, 0x17, 0x10, 0x3c, 0xc0, 0x91, + 0x1b, 0xa4, 0x9b, 0x5a, 0x41, 0x21, 0xaa, 0x07, 0xe0, 0x91, 0xb4, 0x1e, 0x0a, 0x4a, 0xe0, 0x2d, + 0x88, 0x16, 0x7b, 0x29, 0x19, 0x25, 0xe5, 0xc0, 0xc6, 0x2c, 0xde, 0x62, 0xba, 0xaf, 0x92, 0x73, + 0x27, 0x09, 0x6f, 0x13, 0xfa, 0xcd, 0xa0, 0xfa, 0x24, 0xb2, 0x8f, 0xd7, 0xab, 0x21, 0xf8, 0x54, + 0x26, 0x5b, 0x59, 0xe5, 0x7a, 0x17, 0xa9, 0x0b, 0xbd, 0xc1, 0x03, 0x28, 0xb3, 0x5e, 0x8f, 0x4f, + 0x10, 0x9a, 0x8d, 0xa0, 0xb0, 0x08, 0x68, 0x65, 0x25, 0xf9, 0xde, 0xa0, 0x06, 0x46, 0xad, 0x53, + 0xe9, 0xbd, 0xa1, 0xd0, 0xc9, 0x46, 0xf4, 0x59, 0xae, 0xd2, 0x9c, 0xe5, 0xab, 0xff, 0xd0, 0x58, + 0xfd, 0x27, 0x0a, 0x2a, 0x5e, 0xd1, 0x20, 0xdd, 0x23, 0x49, 0xf4, 0xa2, 0x25, 0xba, 0x0c, 0x9b, + 0x0b, 0x41, 0xa8, 0x7e, 0x06, 0x86, 0xba, 0x1f, 0x18, 0xce, 0x29, 0x6a, 0xef, 0xa3, 0x9d, 0x46, + 0xee, 0x42, 0x4d, 0x6d, 0x73, 0x14, 0x6a, 0x6e, 0xc8, 0x0a, 0xf5, 0xcb, 0x54, 0xe1, 0x2b, 0x48, + 0x9b, 0x91, 0x7a, 0xe8, 0x95, 0xf6, 0x23, 0xda, 0x2c, 0x94, 0xc4, 0xef, 0x21, 0x75, 0x01, 0x9d, + 0x63, 0x76, 0xf3, 0xdd, 0x24, 0xc4, 0x56, 0x8e, 0x7e, 0x53, 0x78, 0xda, 0xea, 0xcb, 0xb4, 0x63, + 0x62, 0xec, 0x24, 0x5a, 0x0c, 0xe9, 0xc0, 0xf1, 0xfb, 0x3b, 0x57, 0x32, 0x67, 0xad, 0xd1, 0x56, + 0xc4, 0x1b, 0x82, 0xcc, 0xf0, 0xa6, 0xab, 0x5f, 0x23, 0x75, 0xe1, 0x28, 0xa6, 0xb4, 0x03, 0xa0, + 0xfd, 0x52, 0x00, 0xdc, 0xb6, 0x30, 0xd4, 0x47, 0x09, 0xd4, 0x43, 0xfa, 0xf2, 0x04, 0x44, 0x36, + 0xeb, 0xd4, 0xc3, 0xbc, 0x59, 0xef, 0x97, 0x61, 0xe6, 0xae, 0x10, 0xcc, 0xe1, 0x97, 0x48, 0xed, + 0x1d, 0xc5, 0x75, 0x6b, 0x12, 0xdb, 0x01, 0xfc, 0xbe, 0x14, 0xf8, 0xc4, 0xb4, 0x30, 0xfa, 0x23, + 0x04, 0xfd, 0x81, 0x60, 0x8b, 0x1c, 0x42, 0x4f, 0xfa, 0xf4, 0xc0, 0x6f, 0xd2, 0xfb, 0xb2, 0xc1, + 0x73, 0x6b, 0xaf, 0xc8, 0xce, 0xad, 0x60, 0x37, 0xc0, 0xbd, 0x51, 0xb6, 0xf0, 0xf3, 0x4d, 0x84, + 0x45, 0xc3, 0x32, 0x29, 0x76, 0xfd, 0x34, 0xcd, 0x91, 0x69, 0xd8, 0x9e, 0x80, 0x26, 0x47, 0xe9, + 0x18, 0x81, 0x87, 0xb2, 0x68, 0xe4, 0x98, 0x1e, 0xff, 0x81, 0xd4, 0x05, 0x34, 0x79, 0xf3, 0x64, + 0x40, 0xb8, 0x1e, 0xf4, 0x65, 0xda, 0x31, 0xc7, 0x3c, 0x47, 0xa9, 0x9e, 0x46, 0x5a, 0x77, 0x5c, + 0x3d, 0xaf, 0x55, 0xb4, 0x19, 0xa0, 0xeb, 0x39, 0xf4, 0x8c, 0xa2, 0xf6, 0x8a, 0x0e, 0x1d, 0x31, + 0x5c, 0x03, 0xca, 0x79, 0x9c, 0xea, 0x59, 0x72, 0xee, 0x83, 0xf9, 0x1f, 0x60, 0x22, 0x9c, 0xa7, + 0x22, 0x7c, 0x0d, 0x05, 0x15, 0xbc, 0x61, 0xb8, 0x46, 0x41, 0xaf, 0xef, 0x85, 0x8a, 0xec, 0xe9, + 0xa2, 0xae, 0xbf, 0x8a, 0xd4, 0xf9, 0xde, 0x7c, 0xe8, 0x23, 0xce, 0x39, 0xbd, 0xae, 0x94, 0xba, + 0x9d, 0xcc, 0xae, 0x16, 0xa1, 0x69, 0xc2, 0xc6, 0x02, 0xae, 0x16, 0x97, 0x41, 0x45, 0x19, 0xc1, + 0x07, 0x48, 0x85, 0xa3, 0xd8, 0x6e, 0x99, 0xed, 0x50, 0x14, 0x6f, 0x90, 0xc2, 0xf4, 0x8d, 0x39, + 0xa3, 0x52, 0x1e, 0xd3, 0x68, 0x2c, 0x97, 0x6e, 0x20, 0x96, 0x4b, 0x33, 0x14, 0xcb, 0x7f, 0xa1, + 0xb1, 0x7c, 0xd0, 0x6a, 0xe0, 0x94, 0xc2, 0x1a, 0x6a, 0x16, 0x8a, 0xd3, 0xca, 0x54, 0x43, 0xfd, + 0xab, 0x0a, 0x61, 0xfa, 0x3f, 0x04, 0x6d, 0x8e, 0x36, 0xfc, 0x76, 0x96, 0xd2, 0xf5, 0xff, 0xad, + 0x45, 0x21, 0x87, 0x5a, 0x44, 0xfc, 0xa1, 0x86, 0x60, 0x5a, 0x26, 0xbd, 0x9b, 0x8d, 0xe9, 0xea, + 0x37, 0x10, 0x9c, 0x45, 0xb2, 0x31, 0xb9, 0x4c, 0xa1, 0x4e, 0x7c, 0xcd, 0x66, 0x1e, 0x0d, 0x5c, + 0xe9, 0x51, 0x3f, 0xe9, 0x25, 0xf3, 0x54, 0xdb, 0x68, 0x99, 0x75, 0x4f, 0x23, 0xff, 0x55, 0xcf, + 0xe6, 0xa8, 0x82, 0xc9, 0x76, 0x5c, 0xf0, 0xd8, 0xd4, 0x91, 0x68, 0xcb, 0x02, 0xed, 0xfb, 0x54, + 0xfe, 0xef, 0x2a, 0xf0, 0xe5, 0x9b, 0x2b, 0x7f, 0xb9, 0x41, 0x51, 0xd5, 0xf8, 0x6b, 0x80, 0xea, + 0x0b, 0x08, 0x9e, 0xbf, 0x65, 0xfc, 0x11, 0x83, 0x07, 0xff, 0x55, 0x54, 0xf0, 0x4a, 0x4f, 0x28, + 0x7c, 0x9d, 0xf8, 0xfa, 0x28, 0xd4, 0x2e, 0x56, 0xb4, 0x35, 0x99, 0x96, 0xfa, 0x25, 0xea, 0x8d, + 0xf3, 0x0a, 0x38, 0x52, 0x6f, 0xf8, 0xef, 0xa6, 0x24, 0xa4, 0x93, 0xdb, 0x7d, 0xea, 0xc9, 0xcd, + 0xb4, 0xec, 0x5f, 0x46, 0x70, 0x31, 0xdd, 0x03, 0xc9, 0x4f, 0x53, 0x3f, 0xcc, 0x1e, 0x30, 0xb8, + 0xf0, 0x71, 0x75, 0x59, 0x5c, 0xfb, 0x3d, 0x96, 0x4d, 0xbe, 0x40, 0x94, 0x53, 0x85, 0x65, 0x56, + 0x05, 0x3d, 0xf1, 0xe2, 0x1c, 0xe2, 0x89, 0xcb, 0x73, 0xe0, 0x07, 0x3d, 0x5c, 0x91, 0xfa, 0x71, + 0xb3, 0xd9, 0xb0, 0x71, 0xf4, 0xcb, 0x90, 0x53, 0x3e, 0x15, 0xfe, 0xa1, 0xc6, 0xe3, 0x28, 0xf4, + 0x8b, 0x44, 0x95, 0xc2, 0x8f, 0xfa, 0x82, 0x15, 0x7e, 0x92, 0x45, 0x79, 0x9e, 0xe7, 0xfc, 0x34, + 0x48, 0xb0, 0x66, 0xdf, 0x28, 0x52, 0x39, 0x70, 0x9b, 0x14, 0xb0, 0xdc, 0x44, 0x8a, 0x8a, 0x1b, + 0xf0, 0x7d, 0x54, 0x92, 0x8d, 0x8d, 0x5d, 0x7b, 0xaa, 0x66, 0xb8, 0x2e, 0x6e, 0x75, 0xdc, 0xe9, + 0xea, 0xf5, 0x1e, 0xb8, 0x16, 0x77, 0x17, 0x89, 0xdc, 0xc2, 0x6a, 0x91, 0xa0, 0xfe, 0xc8, 0xd3, + 0xb7, 0xa6, 0xa7, 0xe1, 0x74, 0x8f, 0xba, 0x28, 0xba, 0x26, 0x21, 0x6b, 0xec, 0x8d, 0x59, 0xeb, + 0x12, 0x71, 0x7d, 0xbd, 0x29, 0x9f, 0x31, 0x9b, 0x2b, 0x2f, 0xd0, 0xea, 0x7c, 0x56, 0xa8, 0xce, + 0x64, 0x75, 0x7c, 0x93, 0xd6, 0x2b, 0xdf, 0x44, 0x70, 0x0e, 0x85, 0x06, 0x96, 0x4f, 0x8a, 0x37, + 0x07, 0x12, 0xbc, 0x82, 0xd4, 0x05, 0xa3, 0x78, 0xdc, 0x74, 0x5c, 0x6c, 0x1f, 0xa6, 0x3d, 0xc6, + 0xf7, 0x75, 0xac, 0x81, 0xdb, 0x49, 0xf7, 0x75, 0x31, 0x3b, 0x26, 0xfb, 0x08, 0x51, 0xfd, 0x01, + 0xbd, 0x97, 0x73, 0x67, 0xd8, 0xc9, 0x7b, 0x8d, 0x3e, 0x5d, 0x8f, 0xfe, 0x4c, 0x65, 0xe1, 0x87, + 0x28, 0xf8, 0xdb, 0x8d, 0x6f, 0x23, 0x75, 0x1e, 0xdd, 0x30, 0x72, 0xa0, 0x4b, 0x24, 0x00, 0xb4, + 0x75, 0x92, 0x86, 0xc8, 0x7e, 0x73, 0x0f, 0xc1, 0xb5, 0x53, 0x5b, 0x1c, 0x03, 0x70, 0xca, 0x6c, + 0x90, 0x15, 0xf8, 0xdd, 0xda, 0xea, 0x64, 0x70, 0x7c, 0xe1, 0x42, 0x90, 0x3d, 0x8b, 0xd4, 0xb9, + 0xde, 0x9c, 0xc3, 0x46, 0x71, 0x40, 0x97, 0x8c, 0x9f, 0xfa, 0xad, 0x96, 0x3f, 0xad, 0xdf, 0x4b, + 0x60, 0x0d, 0x42, 0x4c, 0xae, 0xea, 0x0a, 0xd0, 0xe4, 0x70, 0xe0, 0x6d, 0xa4, 0xde, 0x19, 0xfe, + 0x0a, 0xba, 0x7b, 0x12, 0xb7, 0xdd, 0xf8, 0xea, 0x33, 0xb6, 0x07, 0x25, 0x76, 0x1c, 0xd8, 0x40, + 0x5e, 0x73, 0xa6, 0x62, 0x8d, 0xc0, 0x7d, 0x5c, 0x5f, 0xea, 0xef, 0x55, 0xbc, 0x66, 0x27, 0xfc, + 0x85, 0x74, 0x48, 0xdf, 0x1e, 0x69, 0x26, 0xb8, 0xe9, 0x59, 0x91, 0x78, 0xf4, 0x8b, 0xcf, 0xc2, + 0x6f, 0xfd, 0xb7, 0x6f, 0x24, 0xb9, 0x09, 0xa7, 0x0d, 0xa9, 0x79, 0x1f, 0xe2, 0x53, 0xca, 0x63, + 0xca, 0xb8, 0x54, 0x09, 0x97, 0xa3, 0xc1, 0x97, 0x23, 0x06, 0xd6, 0xcb, 0x17, 0xc2, 0x63, 0x87, + 0xbe, 0x4d, 0xce, 0x43, 0x9a, 0xc8, 0x84, 0xc6, 0x9f, 0x7c, 0x1a, 0xde, 0x6a, 0x46, 0x42, 0x83, + 0x34, 0xe5, 0xa3, 0x91, 0x64, 0xca, 0x68, 0x74, 0x08, 0x8d, 0x13, 0x31, 0x1a, 0xfe, 0xf9, 0x90, + 0x43, 0xfa, 0x3e, 0x39, 0x8d, 0x8e, 0x61, 0xe3, 0xb6, 0x5b, 0xcb, 0x3b, 0xbb, 0x12, 0x72, 0xaf, + 0xdf, 0x4e, 0x76, 0x98, 0x21, 0x4c, 0xf1, 0x1d, 0x66, 0xa8, 0x39, 0x6d, 0x87, 0x19, 0x32, 0xd4, + 0xff, 0x7e, 0x1b, 0xe1, 0x73, 0xfd, 0x36, 0x78, 0x5e, 0x09, 0x9d, 0xb3, 0x88, 0xd4, 0xc7, 0xdc, + 0x13, 0x79, 0x81, 0x99, 0x3b, 0xf7, 0x54, 0x9d, 0x31, 0x37, 0x27, 0x4e, 0xc6, 0x49, 0xb3, 0x6f, + 0x7c, 0xba, 0x4d, 0x9c, 0x5f, 0xe3, 0x4b, 0xa7, 0x57, 0x15, 0xb8, 0x2a, 0x95, 0x87, 0x4f, 0x34, + 0x79, 0x9c, 0xfa, 0xa1, 0x97, 0x12, 0xde, 0xef, 0xa1, 0x3b, 0xc5, 0x50, 0x18, 0x26, 0xec, 0x14, + 0x43, 0xed, 0xa9, 0xfb, 0x93, 0x98, 0xa5, 0x7e, 0xae, 0x87, 0x04, 0xf5, 0x99, 0x1e, 0xf8, 0x21, + 0x92, 0x06, 0x75, 0x6e, 0x37, 0xe4, 0xf5, 0x41, 0x3e, 0x07, 0xc8, 0xd5, 0xaf, 0xfe, 0x01, 0xc1, + 0x5b, 0x28, 0x35, 0xca, 0x72, 0x85, 0xd8, 0x2d, 0x47, 0x0c, 0xfe, 0x76, 0x3b, 0x59, 0x8f, 0x86, + 0x1c, 0x95, 0xbc, 0x1e, 0x8d, 0x56, 0xb1, 0xd4, 0xf5, 0x68, 0xb2, 0x31, 0xab, 0xd3, 0x1f, 0xd0, + 0xc2, 0xf6, 0xfe, 0x6d, 0x70, 0x45, 0x09, 0xad, 0x0b, 0x3f, 0xaa, 0x6e, 0xd1, 0xea, 0xf6, 0x3b, + 0x05, 0x5e, 0x53, 0x12, 0xd7, 0xce, 0x5d, 0xed, 0x02, 0x3f, 0xf4, 0x25, 0xee, 0x75, 0x45, 0x5d, + 0x19, 0x5a, 0x4d, 0x8f, 0x90, 0x2e, 0x87, 0xfd, 0xf3, 0xbf, 0xb0, 0x4d, 0xb2, 0x40, 0x8d, 0x1a, + 0x86, 0x3f, 0xf6, 0x6c, 0x2f, 0xf8, 0x14, 0xcb, 0x84, 0x5f, 0xd1, 0xd7, 0xe5, 0x3f, 0x43, 0xda, + 0xbe, 0xc8, 0x0a, 0x37, 0x7e, 0x4c, 0xba, 0x7c, 0x2a, 0x7c, 0x4a, 0x99, 0xc9, 0x23, 0xfc, 0xc8, + 0xe4, 0xf1, 0x56, 0x3a, 0x0d, 0xad, 0x96, 0xdd, 0x21, 0x09, 0x25, 0xe1, 0x79, 0x5a, 0xa3, 0xf2, + 0x8f, 0x02, 0xa7, 0x15, 0x55, 0xab, 0x60, 0x57, 0x26, 0xe5, 0x3d, 0x39, 0x45, 0x11, 0x96, 0x44, + 0x5b, 0x8a, 0x3c, 0xc2, 0x44, 0x7c, 0x9a, 0x68, 0xf8, 0x54, 0x70, 0x8e, 0x22, 0x45, 0xc2, 0xf8, + 0xf9, 0x8b, 0x9d, 0xc1, 0x91, 0x9c, 0x0c, 0xa5, 0x64, 0x27, 0x31, 0x2e, 0x2a, 0xea, 0xca, 0x11, + 0xdc, 0xc4, 0x37, 0x1e, 0x53, 0xb4, 0x97, 0xa2, 0x31, 0xc5, 0x9f, 0x62, 0x72, 0x3c, 0x4b, 0x63, + 0xea, 0xe9, 0x52, 0x57, 0x7a, 0x78, 0xc1, 0xb3, 0xab, 0x74, 0x83, 0x92, 0x78, 0xb1, 0xf1, 0x9c, + 0xa2, 0x2e, 0x09, 0x65, 0x9a, 0xa0, 0xc7, 0x80, 0x84, 0x99, 0x2c, 0xbb, 0xca, 0xb9, 0xed, 0x99, + 0x06, 0xe7, 0xa8, 0x06, 0x67, 0x90, 0x56, 0x8e, 0x32, 0xc9, 0x48, 0x28, 0x8f, 0xff, 0x61, 0xed, + 0x91, 0x19, 0x4c, 0x1e, 0x76, 0xee, 0x7c, 0x51, 0x90, 0x28, 0x82, 0x12, 0x1b, 0x33, 0x99, 0x09, + 0xc9, 0xb1, 0x29, 0x9f, 0x31, 0xd3, 0x00, 0x13, 0x09, 0x6a, 0x70, 0x77, 0x9a, 0x02, 0x1c, 0x64, + 0xf5, 0xbe, 0xe0, 0x43, 0x7b, 0x21, 0x9f, 0xc3, 0x75, 0xa4, 0x2e, 0x09, 0x45, 0x7f, 0x21, 0x3f, + 0x87, 0x23, 0xbe, 0x9c, 0xdb, 0x9e, 0x71, 0x3c, 0x49, 0x38, 0xe2, 0x52, 0x2e, 0x8e, 0x64, 0x43, + 0x5e, 0xea, 0x8e, 0x26, 0x39, 0xeb, 0xa0, 0xa8, 0x4b, 0x69, 0x9c, 0xf1, 0x57, 0x03, 0x02, 0x55, + 0xe9, 0x27, 0x72, 0x59, 0x4c, 0x0f, 0xe6, 0x7f, 0x80, 0x91, 0x7d, 0x97, 0x06, 0xf5, 0xdb, 0x48, + 0xab, 0xc6, 0xce, 0xfb, 0x76, 0x31, 0x4d, 0x84, 0x7e, 0xe3, 0x1d, 0x11, 0x91, 0x5c, 0xcd, 0x4a, + 0x1b, 0xe0, 0x86, 0xa6, 0x0d, 0xe9, 0xa8, 0xf0, 0x15, 0x45, 0x5d, 0x2c, 0x1c, 0x14, 0x17, 0xb4, + 0xdd, 0x94, 0x2d, 0x95, 0x90, 0x25, 0x9b, 0x73, 0x5a, 0x33, 0x55, 0xbf, 0x4e, 0x55, 0x7d, 0x06, + 0xc1, 0x8e, 0x54, 0x55, 0x63, 0x45, 0x2e, 0xf8, 0xf2, 0x33, 0x5d, 0xdd, 0x0d, 0xbb, 0x32, 0x15, + 0x93, 0xd4, 0x4a, 0xa1, 0x1b, 0xb8, 0xa0, 0xa8, 0x4b, 0x69, 0x84, 0x77, 0x17, 0x61, 0xe1, 0x6c, + 0x1a, 0xcc, 0xff, 0x00, 0x7f, 0x51, 0x4c, 0xb5, 0x38, 0x8b, 0x4a, 0xdd, 0x6b, 0xe1, 0x05, 0xd0, + 0xc3, 0xa5, 0x99, 0x90, 0xc3, 0x0b, 0x8a, 0xd7, 0x90, 0xba, 0xc4, 0xdb, 0x37, 0x1e, 0xe0, 0x37, + 0xa4, 0xd2, 0xaa, 0x8b, 0xc4, 0x50, 0x5a, 0x5d, 0xa4, 0xf6, 0x4c, 0x8e, 0x83, 0x44, 0x8d, 0x87, + 0xc1, 0x3f, 0x81, 0x16, 0xdc, 0xd3, 0x0a, 0xd8, 0x88, 0xd7, 0x3c, 0x92, 0xda, 0x85, 0x37, 0x95, + 0xef, 0xb1, 0x13, 0xa9, 0xc1, 0x01, 0x52, 0x13, 0x3b, 0xf1, 0xf7, 0xce, 0xc2, 0xf9, 0x52, 0x71, + 0x73, 0xbd, 0x3a, 0xc3, 0x2e, 0x29, 0x92, 0xbd, 0xc5, 0x71, 0x83, 0x5e, 0xd2, 0x32, 0x3d, 0xc7, + 0xf1, 0xeb, 0x65, 0x35, 0x77, 0xaa, 0x83, 0x93, 0xe4, 0x17, 0x23, 0x39, 0xf2, 0xb0, 0xe0, 0xb5, + 0xcc, 0x6e, 0xbc, 0x95, 0xe1, 0xfc, 0x0a, 0x16, 0x98, 0x4e, 0xc5, 0xaf, 0xa6, 0x08, 0x8d, 0x42, + 0xfa, 0x2e, 0x4f, 0x31, 0xd3, 0x7f, 0x4c, 0x29, 0xbe, 0x8c, 0x60, 0x6f, 0x5e, 0x8a, 0xd9, 0x87, + 0x86, 0x3e, 0x0f, 0x8f, 0xa5, 0x51, 0xf6, 0x37, 0xef, 0x85, 0x7b, 0x86, 0x17, 0x15, 0x75, 0x21, + 0x2d, 0xe2, 0xa2, 0x10, 0xfd, 0x29, 0x0c, 0xc3, 0x73, 0xc4, 0x86, 0x1c, 0x96, 0x2c, 0x56, 0x7f, + 0x4a, 0x95, 0xf9, 0x11, 0xd2, 0x66, 0x4e, 0x19, 0x2f, 0x95, 0x9f, 0xd0, 0x66, 0x49, 0x1c, 0x2f, + 0xbb, 0x9b, 0xaa, 0x5a, 0xc1, 0xee, 0x63, 0x74, 0xbf, 0x16, 0xbf, 0x1e, 0x18, 0xb4, 0x49, 0xaf, + 0x07, 0x8a, 0x26, 0x4c, 0x89, 0x25, 0x44, 0x88, 0x85, 0xb0, 0x80, 0xe3, 0x66, 0xfb, 0x41, 0xf8, + 0xb9, 0x42, 0x16, 0x61, 0x23, 0xc1, 0xf5, 0x45, 0xe6, 0x90, 0xec, 0xdb, 0x0d, 0x31, 0x68, 0xb1, + 0x4e, 0xf4, 0x77, 0xa8, 0x03, 0xde, 0x44, 0xe0, 0xef, 0xbc, 0x62, 0x17, 0x25, 0x89, 0x1b, 0xc8, + 0xa6, 0xb4, 0xa0, 0x58, 0xe1, 0xfb, 0x0f, 0x6d, 0x68, 0xa6, 0x0e, 0x11, 0x3b, 0x2a, 0x75, 0x63, + 0xe3, 0xc1, 0xab, 0x3d, 0xb4, 0x08, 0x47, 0x49, 0x9b, 0x49, 0x73, 0x73, 0x4c, 0x19, 0xb1, 0x86, + 0xad, 0xcb, 0x65, 0xad, 0xff, 0x91, 0x7e, 0xb0, 0x7c, 0x43, 0x81, 0x43, 0xe9, 0x5a, 0x16, 0x4f, + 0xf6, 0x2f, 0xc2, 0x17, 0x0a, 0x68, 0x57, 0xbc, 0xff, 0x0a, 0xec, 0x9e, 0x11, 0xc8, 0xd5, 0xa3, + 0x30, 0x3a, 0xf3, 0x40, 0xe1, 0x92, 0x42, 0x6e, 0xb9, 0xf8, 0xaf, 0xe6, 0x0e, 0x60, 0xd7, 0x36, + 0xeb, 0x0e, 0x6c, 0xc9, 0x73, 0x60, 0x93, 0x19, 0x73, 0x67, 0x6e, 0x2d, 0xf4, 0x0c, 0xcb, 0xce, + 0x84, 0xdb, 0xb3, 0x2d, 0x6a, 0x52, 0xf0, 0xa8, 0xa7, 0x70, 0x7b, 0x36, 0xa1, 0x83, 0x82, 0xa7, + 0x05, 0x1f, 0x7a, 0xb0, 0x7a, 0xff, 0xb8, 0xe9, 0x1e, 0x9f, 0x18, 0x1b, 0xa8, 0x5b, 0xad, 0x32, + 0xe1, 0xe5, 0x75, 0x41, 0xfe, 0x28, 0xfb, 0xf7, 0x9f, 0xc7, 0x71, 0xbb, 0xdc, 0x19, 0xdb, 0x3c, + 0x6e, 0x95, 0xa3, 0xf7, 0xe8, 0xc7, 0x3e, 0x46, 0xae, 0x40, 0x6f, 0xfd, 0x7f, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xf3, 0x38, 0xe9, 0xaa, 0x62, 0x3f, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go index e0d3d0c8c8..f012ef0cd6 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go @@ -5805,7 +5805,7 @@ func request_AdminService_ListNamedEntities_0(ctx context.Context, marshaler run } var ( - filter_AdminService_ListNamedEntities_1 = &utilities.DoubleArray{Encoding: map[string]int{"resource_type": 0, "org": 1, "project": 2, "domain": 3}, Base: []int{1, 1, 2, 3, 4, 0, 0, 0, 0}, Check: []int{0, 1, 1, 1, 1, 2, 3, 4, 5}} + filter_AdminService_ListNamedEntities_1 = &utilities.DoubleArray{Encoding: map[string]int{"org": 0, "resource_type": 1, "project": 2, "domain": 3}, Base: []int{1, 1, 2, 3, 4, 0, 0, 0, 0}, Check: []int{0, 1, 1, 1, 1, 2, 3, 4, 5}} ) func request_AdminService_ListNamedEntities_1(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { @@ -5820,30 +5820,30 @@ func request_AdminService_ListNamedEntities_1(ctx context.Context, marshaler run _ = err ) - val, ok = pathParams["resource_type"] + val, ok = pathParams["org"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "org") } - e, err = runtime.Enum(val, core.ResourceType_value) + protoReq.Org, err = runtime.String(val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "org", err) } - protoReq.ResourceType = core.ResourceType(e) - - val, ok = pathParams["org"] + val, ok = pathParams["resource_type"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "org") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") } - protoReq.Org, err = runtime.String(val) + e, err = runtime.Enum(val, core.ResourceType_value) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "org", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) } + protoReq.ResourceType = core.ResourceType(e) + val, ok = pathParams["project"] if !ok { return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project") @@ -5953,7 +5953,7 @@ func request_AdminService_GetNamedEntity_0(ctx context.Context, marshaler runtim } var ( - filter_AdminService_GetNamedEntity_1 = &utilities.DoubleArray{Encoding: map[string]int{"resource_type": 0, "id": 1, "org": 2, "project": 3, "domain": 4, "name": 5}, Base: []int{1, 1, 1, 2, 3, 4, 5, 0, 0, 0, 0, 0}, Check: []int{0, 1, 1, 3, 3, 3, 3, 2, 4, 5, 6, 7}} + filter_AdminService_GetNamedEntity_1 = &utilities.DoubleArray{Encoding: map[string]int{"id": 0, "org": 1, "resource_type": 2, "project": 3, "domain": 4, "name": 5}, Base: []int{1, 1, 1, 5, 2, 3, 4, 0, 0, 0, 0, 0}, Check: []int{0, 1, 2, 1, 2, 2, 2, 3, 5, 6, 7, 4}} ) func request_AdminService_GetNamedEntity_1(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { @@ -5968,30 +5968,30 @@ func request_AdminService_GetNamedEntity_1(ctx context.Context, marshaler runtim _ = err ) - val, ok = pathParams["resource_type"] + val, ok = pathParams["id.org"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.org") } - e, err = runtime.Enum(val, core.ResourceType_value) + err = runtime.PopulateFieldFromPath(&protoReq, "id.org", val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.org", err) } - protoReq.ResourceType = core.ResourceType(e) - - val, ok = pathParams["id.org"] + val, ok = pathParams["resource_type"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.org") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") } - err = runtime.PopulateFieldFromPath(&protoReq, "id.org", val) + e, err = runtime.Enum(val, core.ResourceType_value) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.org", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) } + protoReq.ResourceType = core.ResourceType(e) + val, ok = pathParams["id.project"] if !ok { return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.project") @@ -6128,30 +6128,30 @@ func request_AdminService_UpdateNamedEntity_1(ctx context.Context, marshaler run _ = err ) - val, ok = pathParams["resource_type"] + val, ok = pathParams["id.org"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.org") } - e, err = runtime.Enum(val, core.ResourceType_value) + err = runtime.PopulateFieldFromPath(&protoReq, "id.org", val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.org", err) } - protoReq.ResourceType = core.ResourceType(e) - - val, ok = pathParams["id.org"] + val, ok = pathParams["resource_type"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.org") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") } - err = runtime.PopulateFieldFromPath(&protoReq, "id.org", val) + e, err = runtime.Enum(val, core.ResourceType_value) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.org", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) } + protoReq.ResourceType = core.ResourceType(e) + val, ok = pathParams["id.project"] if !ok { return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.project") @@ -6455,7 +6455,7 @@ func request_AdminService_ListDescriptionEntities_0(ctx context.Context, marshal } var ( - filter_AdminService_ListDescriptionEntities_1 = &utilities.DoubleArray{Encoding: map[string]int{"resource_type": 0, "id": 1, "org": 2, "project": 3, "domain": 4, "name": 5}, Base: []int{1, 1, 1, 2, 3, 4, 5, 0, 0, 0, 0, 0}, Check: []int{0, 1, 1, 3, 3, 3, 3, 2, 4, 5, 6, 7}} + filter_AdminService_ListDescriptionEntities_1 = &utilities.DoubleArray{Encoding: map[string]int{"id": 0, "org": 1, "resource_type": 2, "project": 3, "domain": 4, "name": 5}, Base: []int{1, 1, 1, 5, 2, 3, 4, 0, 0, 0, 0, 0}, Check: []int{0, 1, 2, 1, 2, 2, 2, 3, 5, 6, 7, 4}} ) func request_AdminService_ListDescriptionEntities_1(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { @@ -6470,30 +6470,30 @@ func request_AdminService_ListDescriptionEntities_1(ctx context.Context, marshal _ = err ) - val, ok = pathParams["resource_type"] + val, ok = pathParams["id.org"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.org") } - e, err = runtime.Enum(val, core.ResourceType_value) + err = runtime.PopulateFieldFromPath(&protoReq, "id.org", val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.org", err) } - protoReq.ResourceType = core.ResourceType(e) - - val, ok = pathParams["id.org"] + val, ok = pathParams["resource_type"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.org") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") } - err = runtime.PopulateFieldFromPath(&protoReq, "id.org", val) + e, err = runtime.Enum(val, core.ResourceType_value) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.org", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) } + protoReq.ResourceType = core.ResourceType(e) + val, ok = pathParams["id.project"] if !ok { return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.project") @@ -6603,7 +6603,7 @@ func request_AdminService_ListDescriptionEntities_2(ctx context.Context, marshal } var ( - filter_AdminService_ListDescriptionEntities_3 = &utilities.DoubleArray{Encoding: map[string]int{"resource_type": 0, "id": 1, "org": 2, "project": 3, "domain": 4}, Base: []int{1, 1, 1, 2, 3, 4, 0, 0, 0, 0}, Check: []int{0, 1, 1, 3, 3, 3, 2, 4, 5, 6}} + filter_AdminService_ListDescriptionEntities_3 = &utilities.DoubleArray{Encoding: map[string]int{"id": 0, "org": 1, "resource_type": 2, "project": 3, "domain": 4}, Base: []int{1, 1, 1, 4, 2, 3, 0, 0, 0, 0}, Check: []int{0, 1, 2, 1, 2, 2, 3, 5, 6, 4}} ) func request_AdminService_ListDescriptionEntities_3(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { @@ -6618,30 +6618,30 @@ func request_AdminService_ListDescriptionEntities_3(ctx context.Context, marshal _ = err ) - val, ok = pathParams["resource_type"] + val, ok = pathParams["id.org"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.org") } - e, err = runtime.Enum(val, core.ResourceType_value) + err = runtime.PopulateFieldFromPath(&protoReq, "id.org", val) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.org", err) } - protoReq.ResourceType = core.ResourceType(e) - - val, ok = pathParams["id.org"] + val, ok = pathParams["resource_type"] if !ok { - return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.org") + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource_type") } - err = runtime.PopulateFieldFromPath(&protoReq, "id.org", val) + e, err = runtime.Enum(val, core.ResourceType_value) if err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id.org", err) + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource_type", err) } + protoReq.ResourceType = core.ResourceType(e) + val, ok = pathParams["id.project"] if !ok { return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id.project") @@ -9267,11 +9267,11 @@ var ( pattern_AdminService_ListNodeExecutionsForTask_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8, 1, 0, 4, 1, 5, 9, 1, 0, 4, 1, 5, 10, 1, 0, 4, 1, 5, 11, 1, 0, 4, 1, 5, 12}, []string{"api", "v1", "children", "task_executions", "task_execution_id.node_execution_id.execution_id.project", "task_execution_id.node_execution_id.execution_id.domain", "task_execution_id.node_execution_id.execution_id.name", "task_execution_id.node_execution_id.node_id", "task_execution_id.task_id.project", "task_execution_id.task_id.domain", "task_execution_id.task_id.name", "task_execution_id.task_id.version", "task_execution_id.retry_attempt"}, "")) - pattern_AdminService_ListNodeExecutionsForTask_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8, 1, 0, 4, 1, 5, 9, 1, 0, 4, 1, 5, 10, 1, 0, 4, 1, 5, 11, 1, 0, 4, 1, 5, 12, 1, 0, 4, 1, 5, 13, 1, 0, 4, 1, 5, 14}, []string{"api", "v1", "children", "task_executions", "org", "task_execution_id.node_execution_id.execution_id.org", "task_execution_id.node_execution_id.execution_id.project", "task_execution_id.node_execution_id.execution_id.domain", "task_execution_id.node_execution_id.execution_id.name", "task_execution_id.node_execution_id.node_id", "task_execution_id.task_id.project", "task_execution_id.task_id.domain", "task_execution_id.task_id.name", "task_execution_id.task_id.version", "task_execution_id.retry_attempt"}, "")) + pattern_AdminService_ListNodeExecutionsForTask_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8, 1, 0, 4, 1, 5, 9, 1, 0, 4, 1, 5, 10, 1, 0, 4, 1, 5, 11, 1, 0, 4, 1, 5, 12, 1, 0, 4, 1, 5, 13, 1, 0, 4, 1, 5, 14}, []string{"api", "v1", "children", "org", "task_execution_id.node_execution_id.execution_id.org", "task_executions", "task_execution_id.node_execution_id.execution_id.project", "task_execution_id.node_execution_id.execution_id.domain", "task_execution_id.node_execution_id.execution_id.name", "task_execution_id.node_execution_id.node_id", "task_execution_id.task_id.project", "task_execution_id.task_id.domain", "task_execution_id.task_id.name", "task_execution_id.task_id.version", "task_execution_id.retry_attempt"}, "")) pattern_AdminService_GetNodeExecutionData_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"api", "v1", "data", "node_executions", "id.execution_id.project", "id.execution_id.domain", "id.execution_id.name", "id.node_id"}, "")) - pattern_AdminService_GetNodeExecutionData_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8, 1, 0, 4, 1, 5, 9}, []string{"api", "v1", "data", "node_executions", "org", "id.execution_id.org", "id.execution_id.project", "id.execution_id.domain", "id.execution_id.name", "id.node_id"}, "")) + pattern_AdminService_GetNodeExecutionData_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8, 1, 0, 4, 1, 5, 9}, []string{"api", "v1", "data", "org", "id.execution_id.org", "node_executions", "id.execution_id.project", "id.execution_id.domain", "id.execution_id.name", "id.node_id"}, "")) pattern_AdminService_RegisterProject_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"api", "v1", "projects"}, "")) @@ -9307,7 +9307,7 @@ var ( pattern_AdminService_GetTaskExecutionData_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8, 1, 0, 4, 1, 5, 9, 1, 0, 4, 1, 5, 10, 1, 0, 4, 1, 5, 11, 1, 0, 4, 1, 5, 12}, []string{"api", "v1", "data", "task_executions", "id.node_execution_id.execution_id.project", "id.node_execution_id.execution_id.domain", "id.node_execution_id.execution_id.name", "id.node_execution_id.node_id", "id.task_id.project", "id.task_id.domain", "id.task_id.name", "id.task_id.version", "id.retry_attempt"}, "")) - pattern_AdminService_GetTaskExecutionData_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8, 1, 0, 4, 1, 5, 9, 1, 0, 4, 1, 5, 10, 1, 0, 4, 1, 5, 11, 1, 0, 4, 1, 5, 12, 1, 0, 4, 1, 5, 13, 1, 0, 4, 1, 5, 14}, []string{"api", "v1", "data", "task_executions", "org", "id.node_execution_id.execution_id.org", "id.node_execution_id.execution_id.project", "id.node_execution_id.execution_id.domain", "id.node_execution_id.execution_id.name", "id.node_execution_id.node_id", "id.task_id.project", "id.task_id.domain", "id.task_id.name", "id.task_id.version", "id.retry_attempt"}, "")) + pattern_AdminService_GetTaskExecutionData_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8, 1, 0, 4, 1, 5, 9, 1, 0, 4, 1, 5, 10, 1, 0, 4, 1, 5, 11, 1, 0, 4, 1, 5, 12, 1, 0, 4, 1, 5, 13, 1, 0, 4, 1, 5, 14}, []string{"api", "v1", "data", "org", "id.node_execution_id.execution_id.org", "task_executions", "id.node_execution_id.execution_id.project", "id.node_execution_id.execution_id.domain", "id.node_execution_id.execution_id.name", "id.node_execution_id.node_id", "id.task_id.project", "id.task_id.domain", "id.task_id.name", "id.task_id.version", "id.retry_attempt"}, "")) pattern_AdminService_UpdateProjectDomainAttributes_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"api", "v1", "project_domain_attributes", "attributes.project", "attributes.domain"}, "")) @@ -9351,15 +9351,15 @@ var ( pattern_AdminService_ListNamedEntities_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"api", "v1", "named_entities", "resource_type", "project", "domain"}, "")) - pattern_AdminService_ListNamedEntities_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"api", "v1", "named_entities", "resource_type", "org", "project", "domain"}, "")) + pattern_AdminService_ListNamedEntities_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"api", "v1", "named_entities", "org", "resource_type", "project", "domain"}, "")) pattern_AdminService_GetNamedEntity_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"api", "v1", "named_entities", "resource_type", "id.project", "id.domain", "id.name"}, "")) - pattern_AdminService_GetNamedEntity_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8}, []string{"api", "v1", "named_entities", "resource_type", "org", "id.org", "id.project", "id.domain", "id.name"}, "")) + pattern_AdminService_GetNamedEntity_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8}, []string{"api", "v1", "named_entities", "org", "id.org", "resource_type", "id.project", "id.domain", "id.name"}, "")) pattern_AdminService_UpdateNamedEntity_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"api", "v1", "named_entities", "resource_type", "id.project", "id.domain", "id.name"}, "")) - pattern_AdminService_UpdateNamedEntity_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8}, []string{"api", "v1", "named_entities", "resource_type", "org", "id.org", "id.project", "id.domain", "id.name"}, "")) + pattern_AdminService_UpdateNamedEntity_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8}, []string{"api", "v1", "named_entities", "org", "id.org", "resource_type", "id.project", "id.domain", "id.name"}, "")) pattern_AdminService_GetVersion_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"api", "v1", "version"}, "")) @@ -9369,11 +9369,11 @@ var ( pattern_AdminService_ListDescriptionEntities_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"api", "v1", "description_entities", "resource_type", "id.project", "id.domain", "id.name"}, "")) - pattern_AdminService_ListDescriptionEntities_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8}, []string{"api", "v1", "description_entities", "resource_type", "org", "id.org", "id.project", "id.domain", "id.name"}, "")) + pattern_AdminService_ListDescriptionEntities_1 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7, 1, 0, 4, 1, 5, 8}, []string{"api", "v1", "description_entities", "org", "id.org", "resource_type", "id.project", "id.domain", "id.name"}, "")) pattern_AdminService_ListDescriptionEntities_2 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"api", "v1", "description_entities", "resource_type", "id.project", "id.domain"}, "")) - pattern_AdminService_ListDescriptionEntities_3 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"api", "v1", "description_entities", "resource_type", "org", "id.org", "id.project", "id.domain"}, "")) + pattern_AdminService_ListDescriptionEntities_3 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6, 1, 0, 4, 1, 5, 7}, []string{"api", "v1", "description_entities", "org", "id.org", "resource_type", "id.project", "id.domain"}, "")) pattern_AdminService_GetExecutionMetrics_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5, 1, 0, 4, 1, 5, 6}, []string{"api", "v1", "metrics", "executions", "id.project", "id.domain", "id.name"}, "")) diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json index 49b07c1895..c1af15f895 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json @@ -257,7 +257,7 @@ ] } }, - "/api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}": { + "/api/v1/children/org/{task_execution_id.node_execution_id.execution_id.org}/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}": { "get": { "summary": "Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution` launched by the reference :ref:`ref_flyteidl.admin.TaskExecution`.", "operationId": "ListNodeExecutionsForTask2", @@ -653,10 +653,10 @@ ] } }, - "/api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}": { + "/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}": { "get": { "summary": "Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`.", - "operationId": "GetNodeExecutionData2", + "operationId": "GetNodeExecutionData", "responses": { "200": { "description": "A successful response.", @@ -666,13 +666,6 @@ } }, "parameters": [ - { - "name": "id.execution_id.org", - "description": "Optional, org key applied to the resource.", - "in": "path", - "required": true, - "type": "string" - }, { "name": "id.execution_id.project", "description": "Name of the project the resource belongs to.", @@ -699,6 +692,13 @@ "in": "path", "required": true, "type": "string" + }, + { + "name": "id.execution_id.org", + "description": "Optional, org key applied to the resource.", + "in": "query", + "required": false, + "type": "string" } ], "tags": [ @@ -706,10 +706,10 @@ ] } }, - "/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}": { + "/api/v1/data/org/{id.execution_id.org}/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}": { "get": { "summary": "Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`.", - "operationId": "GetNodeExecutionData", + "operationId": "GetNodeExecutionData2", "responses": { "200": { "description": "A successful response.", @@ -719,6 +719,13 @@ } }, "parameters": [ + { + "name": "id.execution_id.org", + "description": "Optional, org key applied to the resource.", + "in": "path", + "required": true, + "type": "string" + }, { "name": "id.execution_id.project", "description": "Name of the project the resource belongs to.", @@ -745,13 +752,6 @@ "in": "path", "required": true, "type": "string" - }, - { - "name": "id.execution_id.org", - "description": "Optional, org key applied to the resource.", - "in": "query", - "required": false, - "type": "string" } ], "tags": [ @@ -759,7 +759,7 @@ ] } }, - "/api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}": { + "/api/v1/data/org/{id.node_execution_id.execution_id.org}/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}": { "get": { "summary": "Fetches input and output data for a :ref:`ref_flyteidl.admin.TaskExecution`.", "operationId": "GetTaskExecutionData2", @@ -1047,21 +1047,28 @@ ] } }, - "/api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}": { + "/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}": { "get": { - "summary": "Fetch a :ref:`ref_flyteidl.admin.DescriptionEntity` object.", - "operationId": "GetDescriptionEntity", + "summary": "Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions.", + "operationId": "ListDescriptionEntities4", "responses": { "200": { "description": "A successful response.", "schema": { - "$ref": "#/definitions/adminDescriptionEntity" + "$ref": "#/definitions/adminDescriptionEntityList" } } }, "parameters": [ { - "name": "id.resource_type", + "name": "id.org", + "description": "Optional, org key applied to the resource.", + "in": "path", + "required": true, + "type": "string" + }, + { + "name": "resource_type", "description": "Identifies the specific type of resource that this identifier corresponds to.", "in": "path", "required": true, @@ -1090,24 +1097,51 @@ }, { "name": "id.name", - "description": "User provided value for the resource.", - "in": "path", - "required": true, + "description": "User provided value for the resource.\nThe combination of project + domain + name uniquely identifies the resource.\n+optional - in certain contexts - like 'List API', 'Launch plans'.", + "in": "query", + "required": false, "type": "string" }, { - "name": "id.version", - "description": "Specific version of the resource.", - "in": "path", - "required": true, + "name": "limit", + "description": "Indicates the number of resources to be returned.\n+required.", + "in": "query", + "required": false, + "type": "integer", + "format": "int64" + }, + { + "name": "token", + "description": "In the case of multiple pages of results, the server-provided token can be used to fetch the next page\nin a query.\n+optional.", + "in": "query", + "required": false, "type": "string" }, { - "name": "id.org", - "description": "Optional, org key applied to the resource.", + "name": "filters", + "description": "Indicates a list of filters passed as string.\nMore info on constructing filters : \u003cLink\u003e\n+optional.", + "in": "query", + "required": false, + "type": "string" + }, + { + "name": "sort_by.key", + "description": "Indicates an attribute to sort the response values.\n+required.", "in": "query", "required": false, "type": "string" + }, + { + "name": "sort_by.direction", + "description": "Indicates the direction to apply sort key for response values.\n+optional.\n\n - DESCENDING: By default, fields are sorted in descending order.", + "in": "query", + "required": false, + "type": "string", + "enum": [ + "DESCENDING", + "ASCENDING" + ], + "default": "DESCENDING" } ], "tags": [ @@ -1115,10 +1149,10 @@ ] } }, - "/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}": { + "/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}": { "get": { "summary": "Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions.", - "operationId": "ListDescriptionEntities4", + "operationId": "ListDescriptionEntities2", "responses": { "200": { "description": "A successful response.", @@ -1128,6 +1162,13 @@ } }, "parameters": [ + { + "name": "id.org", + "description": "Optional, org key applied to the resource.", + "in": "path", + "required": true, + "type": "string" + }, { "name": "resource_type", "description": "Identifies the specific type of resource that this identifier corresponds to.", @@ -1142,13 +1183,6 @@ "DATASET" ] }, - { - "name": "id.org", - "description": "Optional, org key applied to the resource.", - "in": "path", - "required": true, - "type": "string" - }, { "name": "id.project", "description": "Name of the project the resource belongs to.", @@ -1165,9 +1199,9 @@ }, { "name": "id.name", - "description": "User provided value for the resource.\nThe combination of project + domain + name uniquely identifies the resource.\n+optional - in certain contexts - like 'List API', 'Launch plans'.", - "in": "query", - "required": false, + "description": "User provided value for the resource.\nThe combination of project + domain + name uniquely identifies the resource.\n+optional - in certain contexts - like 'List API', 'Launch plans'", + "in": "path", + "required": true, "type": "string" }, { @@ -1217,21 +1251,21 @@ ] } }, - "/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}": { + "/api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}": { "get": { - "summary": "Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions.", - "operationId": "ListDescriptionEntities2", + "summary": "Fetch a :ref:`ref_flyteidl.admin.DescriptionEntity` object.", + "operationId": "GetDescriptionEntity", "responses": { "200": { "description": "A successful response.", "schema": { - "$ref": "#/definitions/adminDescriptionEntityList" + "$ref": "#/definitions/adminDescriptionEntity" } } }, "parameters": [ { - "name": "resource_type", + "name": "id.resource_type", "description": "Identifies the specific type of resource that this identifier corresponds to.", "in": "path", "required": true, @@ -1244,13 +1278,6 @@ "DATASET" ] }, - { - "name": "id.org", - "description": "Optional, org key applied to the resource.", - "in": "path", - "required": true, - "type": "string" - }, { "name": "id.project", "description": "Name of the project the resource belongs to.", @@ -1267,51 +1294,24 @@ }, { "name": "id.name", - "description": "User provided value for the resource.\nThe combination of project + domain + name uniquely identifies the resource.\n+optional - in certain contexts - like 'List API', 'Launch plans'", + "description": "User provided value for the resource.", "in": "path", "required": true, "type": "string" }, { - "name": "limit", - "description": "Indicates the number of resources to be returned.\n+required.", - "in": "query", - "required": false, - "type": "integer", - "format": "int64" - }, - { - "name": "token", - "description": "In the case of multiple pages of results, the server-provided token can be used to fetch the next page\nin a query.\n+optional.", - "in": "query", - "required": false, - "type": "string" - }, - { - "name": "filters", - "description": "Indicates a list of filters passed as string.\nMore info on constructing filters : \u003cLink\u003e\n+optional.", - "in": "query", - "required": false, + "name": "id.version", + "description": "Specific version of the resource.", + "in": "path", + "required": true, "type": "string" }, { - "name": "sort_by.key", - "description": "Indicates an attribute to sort the response values.\n+required.", + "name": "id.org", + "description": "Optional, org key applied to the resource.", "in": "query", "required": false, "type": "string" - }, - { - "name": "sort_by.direction", - "description": "Indicates the direction to apply sort key for response values.\n+optional.\n\n - DESCENDING: By default, fields are sorted in descending order.", - "in": "query", - "required": false, - "type": "string", - "enum": [ - "DESCENDING", - "ASCENDING" - ], - "default": "DESCENDING" } ], "tags": [ @@ -3373,7 +3373,7 @@ ] } }, - "/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}": { + "/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}": { "get": { "summary": "Returns a :ref:`ref_flyteidl.admin.NamedEntity` object.", "operationId": "GetNamedEntity2", @@ -3386,6 +3386,13 @@ } }, "parameters": [ + { + "name": "id.org", + "description": "Optional, org key applied to the resource.", + "in": "path", + "required": true, + "type": "string" + }, { "name": "resource_type", "description": "Resource type of the metadata to get. One of Task, Workflow or LaunchPlan.\n+required", @@ -3400,13 +3407,6 @@ "DATASET" ] }, - { - "name": "id.org", - "description": "Optional, org key applied to the resource.", - "in": "path", - "required": true, - "type": "string" - }, { "name": "id.project", "description": "Name of the project the resource belongs to.", @@ -3445,6 +3445,13 @@ } }, "parameters": [ + { + "name": "id.org", + "description": "Optional, org key applied to the resource.", + "in": "path", + "required": true, + "type": "string" + }, { "name": "resource_type", "description": "Resource type of the metadata to update\n+required", @@ -3459,13 +3466,6 @@ "DATASET" ] }, - { - "name": "id.org", - "description": "Optional, org key applied to the resource.", - "in": "path", - "required": true, - "type": "string" - }, { "name": "id.project", "description": "Name of the project the resource belongs to.", @@ -3501,7 +3501,7 @@ ] } }, - "/api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain}": { + "/api/v1/named_entities/org/{org}/{resource_type}/{project}/{domain}": { "get": { "summary": "Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects.", "operationId": "ListNamedEntities2", @@ -3514,6 +3514,13 @@ } }, "parameters": [ + { + "name": "org", + "description": "Optional, org key applied to the resource.", + "in": "path", + "required": true, + "type": "string" + }, { "name": "resource_type", "description": "Resource type of the metadata to query. One of Task, Workflow or LaunchPlan.\n+required", @@ -3528,13 +3535,6 @@ "DATASET" ] }, - { - "name": "org", - "description": "Optional, org key applied to the resource.", - "in": "path", - "required": true, - "type": "string" - }, { "name": "project", "description": "Name of the project that contains the identifiers.\n+required", diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md index c8a1e82d02..9ce6fd8121 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md @@ -56,11 +56,11 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**GetLaunchPlan**](docs/AdminServiceApi.md#getlaunchplan) | **Get** /api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.LaunchPlan` definition. *AdminServiceApi* | [**GetLaunchPlan2**](docs/AdminServiceApi.md#getlaunchplan2) | **Get** /api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.LaunchPlan` definition. *AdminServiceApi* | [**GetNamedEntity**](docs/AdminServiceApi.md#getnamedentity) | **Get** /api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name} | Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. -*AdminServiceApi* | [**GetNamedEntity2**](docs/AdminServiceApi.md#getnamedentity2) | **Get** /api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name} | Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. +*AdminServiceApi* | [**GetNamedEntity2**](docs/AdminServiceApi.md#getnamedentity2) | **Get** /api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name} | Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. *AdminServiceApi* | [**GetNodeExecution**](docs/AdminServiceApi.md#getnodeexecution) | **Get** /api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches a :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**GetNodeExecution2**](docs/AdminServiceApi.md#getnodeexecution2) | **Get** /api/v1/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches a :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**GetNodeExecutionData**](docs/AdminServiceApi.md#getnodeexecutiondata) | **Get** /api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`. -*AdminServiceApi* | [**GetNodeExecutionData2**](docs/AdminServiceApi.md#getnodeexecutiondata2) | **Get** /api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`. +*AdminServiceApi* | [**GetNodeExecutionData2**](docs/AdminServiceApi.md#getnodeexecutiondata2) | **Get** /api/v1/data/org/{id.execution_id.org}/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**GetProjectAttributes**](docs/AdminServiceApi.md#getprojectattributes) | **Get** /api/v1/project_attributes/{project} | Fetches custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. *AdminServiceApi* | [**GetProjectAttributes2**](docs/AdminServiceApi.md#getprojectattributes2) | **Get** /api/v1/project_domain_attributes/org/{org}/{project} | Fetches custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. *AdminServiceApi* | [**GetProjectDomainAttributes**](docs/AdminServiceApi.md#getprojectdomainattributes) | **Get** /api/v1/project_domain_attributes/{project}/{domain} | Fetches custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. @@ -70,7 +70,7 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**GetTaskExecution**](docs/AdminServiceApi.md#gettaskexecution) | **Get** /api/v1/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches a :ref:`ref_flyteidl.admin.TaskExecution`. *AdminServiceApi* | [**GetTaskExecution2**](docs/AdminServiceApi.md#gettaskexecution2) | **Get** /api/v1/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches a :ref:`ref_flyteidl.admin.TaskExecution`. *AdminServiceApi* | [**GetTaskExecutionData**](docs/AdminServiceApi.md#gettaskexecutiondata) | **Get** /api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches input and output data for a :ref:`ref_flyteidl.admin.TaskExecution`. -*AdminServiceApi* | [**GetTaskExecutionData2**](docs/AdminServiceApi.md#gettaskexecutiondata2) | **Get** /api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches input and output data for a :ref:`ref_flyteidl.admin.TaskExecution`. +*AdminServiceApi* | [**GetTaskExecutionData2**](docs/AdminServiceApi.md#gettaskexecutiondata2) | **Get** /api/v1/data/org/{id.node_execution_id.execution_id.org}/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches input and output data for a :ref:`ref_flyteidl.admin.TaskExecution`. *AdminServiceApi* | [**GetVersion**](docs/AdminServiceApi.md#getversion) | **Get** /api/v1/version | *AdminServiceApi* | [**GetWorkflow**](docs/AdminServiceApi.md#getworkflow) | **Get** /api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.Workflow` definition. *AdminServiceApi* | [**GetWorkflow2**](docs/AdminServiceApi.md#getworkflow2) | **Get** /api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.Workflow` definition. @@ -79,9 +79,9 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**ListActiveLaunchPlans**](docs/AdminServiceApi.md#listactivelaunchplans) | **Get** /api/v1/active_launch_plans/{project}/{domain} | List active versions of :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**ListActiveLaunchPlans2**](docs/AdminServiceApi.md#listactivelaunchplans2) | **Get** /api/v1/active_launch_plans/org/{org}/{project}/{domain} | List active versions of :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**ListDescriptionEntities**](docs/AdminServiceApi.md#listdescriptionentities) | **Get** /api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. -*AdminServiceApi* | [**ListDescriptionEntities2**](docs/AdminServiceApi.md#listdescriptionentities2) | **Get** /api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. +*AdminServiceApi* | [**ListDescriptionEntities2**](docs/AdminServiceApi.md#listdescriptionentities2) | **Get** /api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. *AdminServiceApi* | [**ListDescriptionEntities3**](docs/AdminServiceApi.md#listdescriptionentities3) | **Get** /api/v1/description_entities/{resource_type}/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. -*AdminServiceApi* | [**ListDescriptionEntities4**](docs/AdminServiceApi.md#listdescriptionentities4) | **Get** /api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. +*AdminServiceApi* | [**ListDescriptionEntities4**](docs/AdminServiceApi.md#listdescriptionentities4) | **Get** /api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. *AdminServiceApi* | [**ListExecutions**](docs/AdminServiceApi.md#listexecutions) | **Get** /api/v1/executions/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.Execution`. *AdminServiceApi* | [**ListExecutions2**](docs/AdminServiceApi.md#listexecutions2) | **Get** /api/v1/executions/org/{id.org}/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.Execution`. *AdminServiceApi* | [**ListLaunchPlanIds**](docs/AdminServiceApi.md#listlaunchplanids) | **Get** /api/v1/launch_plan_ids/{project}/{domain} | Fetch a list of :ref:`ref_flyteidl.admin.NamedEntityIdentifier` of launch plan objects. @@ -93,11 +93,11 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**ListMatchableAttributes**](docs/AdminServiceApi.md#listmatchableattributes) | **Get** /api/v1/matchable_attributes | Lists custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a specific resource type. *AdminServiceApi* | [**ListMatchableAttributes2**](docs/AdminServiceApi.md#listmatchableattributes2) | **Get** /api/v1/matchable_attributes/org/{org} | Lists custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a specific resource type. *AdminServiceApi* | [**ListNamedEntities**](docs/AdminServiceApi.md#listnamedentities) | **Get** /api/v1/named_entities/{resource_type}/{project}/{domain} | Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. -*AdminServiceApi* | [**ListNamedEntities2**](docs/AdminServiceApi.md#listnamedentities2) | **Get** /api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain} | Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. +*AdminServiceApi* | [**ListNamedEntities2**](docs/AdminServiceApi.md#listnamedentities2) | **Get** /api/v1/named_entities/org/{org}/{resource_type}/{project}/{domain} | Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. *AdminServiceApi* | [**ListNodeExecutions**](docs/AdminServiceApi.md#listnodeexecutions) | **Get** /api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**ListNodeExecutions2**](docs/AdminServiceApi.md#listnodeexecutions2) | **Get** /api/v1/node_executions/org/{workflow_execution_id.org}/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**ListNodeExecutionsForTask**](docs/AdminServiceApi.md#listnodeexecutionsfortask) | **Get** /api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution` launched by the reference :ref:`ref_flyteidl.admin.TaskExecution`. -*AdminServiceApi* | [**ListNodeExecutionsForTask2**](docs/AdminServiceApi.md#listnodeexecutionsfortask2) | **Get** /api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution` launched by the reference :ref:`ref_flyteidl.admin.TaskExecution`. +*AdminServiceApi* | [**ListNodeExecutionsForTask2**](docs/AdminServiceApi.md#listnodeexecutionsfortask2) | **Get** /api/v1/children/org/{task_execution_id.node_execution_id.execution_id.org}/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution` launched by the reference :ref:`ref_flyteidl.admin.TaskExecution`. *AdminServiceApi* | [**ListProjects**](docs/AdminServiceApi.md#listprojects) | **Get** /api/v1/projects | Fetches a list of :ref:`ref_flyteidl.admin.Project` *AdminServiceApi* | [**ListProjects2**](docs/AdminServiceApi.md#listprojects2) | **Get** /api/v1/projects/org/{org} | Fetches a list of :ref:`ref_flyteidl.admin.Project` *AdminServiceApi* | [**ListTaskExecutions**](docs/AdminServiceApi.md#listtaskexecutions) | **Get** /api/v1/task_executions/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id} | Fetches a list of :ref:`ref_flyteidl.admin.TaskExecution`. @@ -127,7 +127,7 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**UpdateLaunchPlan**](docs/AdminServiceApi.md#updatelaunchplan) | **Put** /api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version} | Updates the status of a registered :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**UpdateLaunchPlan2**](docs/AdminServiceApi.md#updatelaunchplan2) | **Put** /api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version} | Updates the status of a registered :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**UpdateNamedEntity**](docs/AdminServiceApi.md#updatenamedentity) | **Put** /api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name} | Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. -*AdminServiceApi* | [**UpdateNamedEntity2**](docs/AdminServiceApi.md#updatenamedentity2) | **Put** /api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name} | Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. +*AdminServiceApi* | [**UpdateNamedEntity2**](docs/AdminServiceApi.md#updatenamedentity2) | **Put** /api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name} | Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. *AdminServiceApi* | [**UpdateProject**](docs/AdminServiceApi.md#updateproject) | **Put** /api/v1/projects/{id} | Updates an existing :ref:`ref_flyteidl.admin.Project` flyteidl.admin.Project should be passed but the domains property should be empty; it will be ignored in the handler as domains cannot be updated via this API. *AdminServiceApi* | [**UpdateProject2**](docs/AdminServiceApi.md#updateproject2) | **Put** /api/v1/projects/org/{org}/{id} | Updates an existing :ref:`ref_flyteidl.admin.Project` flyteidl.admin.Project should be passed but the domains property should be empty; it will be ignored in the handler as domains cannot be updated via this API. *AdminServiceApi* | [**UpdateProjectAttributes**](docs/AdminServiceApi.md#updateprojectattributes) | **Put** /api/v1/project_attributes/{attributes.project} | Creates or updates custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` at the project level diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index 21a422f35f..b37018248b 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -225,7 +225,7 @@ paths: description: "A successful response." schema: $ref: "#/definitions/adminLaunchPlanList" - ? /api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt} + ? /api/v1/children/org/{task_execution_id.node_execution_id.execution_id.org}/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt} : get: tags: - "AdminService" @@ -591,19 +591,13 @@ paths: description: "A successful response." schema: $ref: "#/definitions/adminWorkflowExecutionGetDataResponse" - ? /api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} - : get: + /api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}: + get: tags: - "AdminService" summary: "Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`." - operationId: "GetNodeExecutionData2" + operationId: "GetNodeExecutionData" parameters: - - name: "id.execution_id.org" - in: "path" - description: "Optional, org key applied to the resource." - required: true - type: "string" - x-exportParamName: "IdExecutionIdOrg" - name: "id.execution_id.project" in: "path" description: "Name of the project the resource belongs to." @@ -628,18 +622,31 @@ paths: required: true type: "string" x-exportParamName: "IdNodeId" + - name: "id.execution_id.org" + in: "query" + description: "Optional, org key applied to the resource." + required: false + type: "string" + x-exportParamName: "IdExecutionIdOrg" + x-optionalDataType: "String" responses: 200: description: "A successful response." schema: $ref: "#/definitions/adminNodeExecutionGetDataResponse" - /api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}: - get: + ? /api/v1/data/org/{id.execution_id.org}/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} + : get: tags: - "AdminService" summary: "Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`." - operationId: "GetNodeExecutionData" + operationId: "GetNodeExecutionData2" parameters: + - name: "id.execution_id.org" + in: "path" + description: "Optional, org key applied to the resource." + required: true + type: "string" + x-exportParamName: "IdExecutionIdOrg" - name: "id.execution_id.project" in: "path" description: "Name of the project the resource belongs to." @@ -664,19 +671,12 @@ paths: required: true type: "string" x-exportParamName: "IdNodeId" - - name: "id.execution_id.org" - in: "query" - description: "Optional, org key applied to the resource." - required: false - type: "string" - x-exportParamName: "IdExecutionIdOrg" - x-optionalDataType: "String" responses: 200: description: "A successful response." schema: $ref: "#/definitions/adminNodeExecutionGetDataResponse" - ? /api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} + ? /api/v1/data/org/{id.node_execution_id.execution_id.org}/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} : get: tags: - "AdminService" @@ -933,70 +933,19 @@ paths: description: "A successful response." schema: $ref: "#/definitions/adminDescriptionEntity" - /api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}: + /api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}: get: tags: - "AdminService" - summary: "Fetch a :ref:`ref_flyteidl.admin.DescriptionEntity` object." - operationId: "GetDescriptionEntity" + summary: "Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions." + operationId: "ListDescriptionEntities4" parameters: - - name: "id.resource_type" - in: "path" - description: "Identifies the specific type of resource that this identifier\ - \ corresponds to." - required: true - type: "string" - enum: - - "UNSPECIFIED" - - "TASK" - - "WORKFLOW" - - "LAUNCH_PLAN" - - "DATASET" - x-exportParamName: "IdResourceType" - - name: "id.project" - in: "path" - description: "Name of the project the resource belongs to." - required: true - type: "string" - x-exportParamName: "IdProject" - - name: "id.domain" - in: "path" - description: "Name of the domain the resource belongs to.\nA domain can be\ - \ considered as a subset within a specific project." - required: true - type: "string" - x-exportParamName: "IdDomain" - - name: "id.name" - in: "path" - description: "User provided value for the resource." - required: true - type: "string" - x-exportParamName: "IdName" - - name: "id.version" - in: "path" - description: "Specific version of the resource." - required: true - type: "string" - x-exportParamName: "IdVersion" - name: "id.org" - in: "query" + in: "path" description: "Optional, org key applied to the resource." - required: false + required: true type: "string" x-exportParamName: "IdOrg" - x-optionalDataType: "String" - responses: - 200: - description: "A successful response." - schema: - $ref: "#/definitions/adminDescriptionEntity" - /api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}: - get: - tags: - - "AdminService" - summary: "Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions." - operationId: "ListDescriptionEntities4" - parameters: - name: "resource_type" in: "path" description: "Identifies the specific type of resource that this identifier\ @@ -1010,12 +959,6 @@ paths: - "LAUNCH_PLAN" - "DATASET" x-exportParamName: "ResourceType" - - name: "id.org" - in: "path" - description: "Optional, org key applied to the resource." - required: true - type: "string" - x-exportParamName: "IdOrg" - name: "id.project" in: "path" description: "Name of the project the resource belongs to." @@ -1087,13 +1030,19 @@ paths: description: "A successful response." schema: $ref: "#/definitions/adminDescriptionEntityList" - /api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}: + /api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}: get: tags: - "AdminService" summary: "Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions." operationId: "ListDescriptionEntities2" parameters: + - name: "id.org" + in: "path" + description: "Optional, org key applied to the resource." + required: true + type: "string" + x-exportParamName: "IdOrg" - name: "resource_type" in: "path" description: "Identifies the specific type of resource that this identifier\ @@ -1107,12 +1056,6 @@ paths: - "LAUNCH_PLAN" - "DATASET" x-exportParamName: "ResourceType" - - name: "id.org" - in: "path" - description: "Optional, org key applied to the resource." - required: true - type: "string" - x-exportParamName: "IdOrg" - name: "id.project" in: "path" description: "Name of the project the resource belongs to." @@ -1183,6 +1126,63 @@ paths: description: "A successful response." schema: $ref: "#/definitions/adminDescriptionEntityList" + /api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}: + get: + tags: + - "AdminService" + summary: "Fetch a :ref:`ref_flyteidl.admin.DescriptionEntity` object." + operationId: "GetDescriptionEntity" + parameters: + - name: "id.resource_type" + in: "path" + description: "Identifies the specific type of resource that this identifier\ + \ corresponds to." + required: true + type: "string" + enum: + - "UNSPECIFIED" + - "TASK" + - "WORKFLOW" + - "LAUNCH_PLAN" + - "DATASET" + x-exportParamName: "IdResourceType" + - name: "id.project" + in: "path" + description: "Name of the project the resource belongs to." + required: true + type: "string" + x-exportParamName: "IdProject" + - name: "id.domain" + in: "path" + description: "Name of the domain the resource belongs to.\nA domain can be\ + \ considered as a subset within a specific project." + required: true + type: "string" + x-exportParamName: "IdDomain" + - name: "id.name" + in: "path" + description: "User provided value for the resource." + required: true + type: "string" + x-exportParamName: "IdName" + - name: "id.version" + in: "path" + description: "Specific version of the resource." + required: true + type: "string" + x-exportParamName: "IdVersion" + - name: "id.org" + in: "query" + description: "Optional, org key applied to the resource." + required: false + type: "string" + x-exportParamName: "IdOrg" + x-optionalDataType: "String" + responses: + 200: + description: "A successful response." + schema: + $ref: "#/definitions/adminDescriptionEntity" /api/v1/description_entities/{resource_type}/{id.project}/{id.domain}: get: tags: @@ -2970,13 +2970,19 @@ paths: description: "A successful response." schema: $ref: "#/definitions/adminWorkflowExecutionGetMetricsResponse" - /api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}: + /api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}: get: tags: - "AdminService" summary: "Returns a :ref:`ref_flyteidl.admin.NamedEntity` object." operationId: "GetNamedEntity2" parameters: + - name: "id.org" + in: "path" + description: "Optional, org key applied to the resource." + required: true + type: "string" + x-exportParamName: "IdOrg" - name: "resource_type" in: "path" description: "Resource type of the metadata to get. One of Task, Workflow\ @@ -2990,12 +2996,6 @@ paths: - "LAUNCH_PLAN" - "DATASET" x-exportParamName: "ResourceType" - - name: "id.org" - in: "path" - description: "Optional, org key applied to the resource." - required: true - type: "string" - x-exportParamName: "IdOrg" - name: "id.project" in: "path" description: "Name of the project the resource belongs to." @@ -3028,6 +3028,12 @@ paths: summary: "Updates a :ref:`ref_flyteidl.admin.NamedEntity` object." operationId: "UpdateNamedEntity2" parameters: + - name: "id.org" + in: "path" + description: "Optional, org key applied to the resource." + required: true + type: "string" + x-exportParamName: "IdOrg" - name: "resource_type" in: "path" description: "Resource type of the metadata to update\n+required" @@ -3040,12 +3046,6 @@ paths: - "LAUNCH_PLAN" - "DATASET" x-exportParamName: "ResourceType" - - name: "id.org" - in: "path" - description: "Optional, org key applied to the resource." - required: true - type: "string" - x-exportParamName: "IdOrg" - name: "id.project" in: "path" description: "Name of the project the resource belongs to." @@ -3078,13 +3078,19 @@ paths: description: "A successful response." schema: $ref: "#/definitions/adminNamedEntityUpdateResponse" - /api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain}: + /api/v1/named_entities/org/{org}/{resource_type}/{project}/{domain}: get: tags: - "AdminService" summary: "Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects." operationId: "ListNamedEntities2" parameters: + - name: "org" + in: "path" + description: "Optional, org key applied to the resource." + required: true + type: "string" + x-exportParamName: "Org" - name: "resource_type" in: "path" description: "Resource type of the metadata to query. One of Task, Workflow\ @@ -3098,12 +3104,6 @@ paths: - "LAUNCH_PLAN" - "DATASET" x-exportParamName: "ResourceType" - - name: "org" - in: "path" - description: "Optional, org key applied to the resource." - required: true - type: "string" - x-exportParamName: "Org" - name: "project" in: "path" description: "Name of the project that contains the identifiers.\n+required" diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go index 048ca4aa04..bbb276b6aa 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go @@ -3375,15 +3375,15 @@ func (a *AdminServiceApiService) GetNamedEntity(ctx context.Context, resourceTyp /* AdminServiceApiService Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param resourceType Resource type of the metadata to get. One of Task, Workflow or LaunchPlan. +required * @param idOrg Optional, org key applied to the resource. + * @param resourceType Resource type of the metadata to get. One of Task, Workflow or LaunchPlan. +required * @param idProject Name of the project the resource belongs to. * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. * @param idName User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' @return AdminNamedEntity */ -func (a *AdminServiceApiService) GetNamedEntity2(ctx context.Context, resourceType string, idOrg string, idProject string, idDomain string, idName string) (AdminNamedEntity, *http.Response, error) { +func (a *AdminServiceApiService) GetNamedEntity2(ctx context.Context, idOrg string, resourceType string, idProject string, idDomain string, idName string) (AdminNamedEntity, *http.Response, error) { var ( localVarHttpMethod = strings.ToUpper("Get") localVarPostBody interface{} @@ -3393,9 +3393,9 @@ func (a *AdminServiceApiService) GetNamedEntity2(ctx context.Context, resourceTy ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}" - localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) + localVarPath := a.client.cfg.BasePath + "/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}" localVarPath = strings.Replace(localVarPath, "{"+"id.org"+"}", fmt.Sprintf("%v", idOrg), -1) + localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.project"+"}", fmt.Sprintf("%v", idProject), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.domain"+"}", fmt.Sprintf("%v", idDomain), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.name"+"}", fmt.Sprintf("%v", idName), -1) @@ -3793,7 +3793,7 @@ func (a *AdminServiceApiService) GetNodeExecutionData2(ctx context.Context, idEx ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}" + localVarPath := a.client.cfg.BasePath + "/api/v1/data/org/{id.execution_id.org}/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}" localVarPath = strings.Replace(localVarPath, "{"+"id.execution_id.org"+"}", fmt.Sprintf("%v", idExecutionIdOrg), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.execution_id.project"+"}", fmt.Sprintf("%v", idExecutionIdProject), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.execution_id.domain"+"}", fmt.Sprintf("%v", idExecutionIdDomain), -1) @@ -4897,7 +4897,7 @@ func (a *AdminServiceApiService) GetTaskExecutionData2(ctx context.Context, idNo ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}" + localVarPath := a.client.cfg.BasePath + "/api/v1/data/org/{id.node_execution_id.execution_id.org}/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}" localVarPath = strings.Replace(localVarPath, "{"+"id.node_execution_id.execution_id.org"+"}", fmt.Sprintf("%v", idNodeExecutionIdExecutionIdOrg), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.node_execution_id.execution_id.project"+"}", fmt.Sprintf("%v", idNodeExecutionIdExecutionIdProject), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.node_execution_id.execution_id.domain"+"}", fmt.Sprintf("%v", idNodeExecutionIdExecutionIdDomain), -1) @@ -5864,8 +5864,8 @@ func (a *AdminServiceApiService) ListDescriptionEntities(ctx context.Context, re /* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param resourceType Identifies the specific type of resource that this identifier corresponds to. * @param idOrg Optional, org key applied to the resource. + * @param resourceType Identifies the specific type of resource that this identifier corresponds to. * @param idProject Name of the project the resource belongs to. * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. * @param idName User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' @@ -5887,7 +5887,7 @@ type ListDescriptionEntities2Opts struct { SortByDirection optional.String } -func (a *AdminServiceApiService) ListDescriptionEntities2(ctx context.Context, resourceType string, idOrg string, idProject string, idDomain string, idName string, localVarOptionals *ListDescriptionEntities2Opts) (AdminDescriptionEntityList, *http.Response, error) { +func (a *AdminServiceApiService) ListDescriptionEntities2(ctx context.Context, idOrg string, resourceType string, idProject string, idDomain string, idName string, localVarOptionals *ListDescriptionEntities2Opts) (AdminDescriptionEntityList, *http.Response, error) { var ( localVarHttpMethod = strings.ToUpper("Get") localVarPostBody interface{} @@ -5897,9 +5897,9 @@ func (a *AdminServiceApiService) ListDescriptionEntities2(ctx context.Context, r ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}" - localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) + localVarPath := a.client.cfg.BasePath + "/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}" localVarPath = strings.Replace(localVarPath, "{"+"id.org"+"}", fmt.Sprintf("%v", idOrg), -1) + localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.project"+"}", fmt.Sprintf("%v", idProject), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.domain"+"}", fmt.Sprintf("%v", idDomain), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.name"+"}", fmt.Sprintf("%v", idName), -1) @@ -6122,8 +6122,8 @@ func (a *AdminServiceApiService) ListDescriptionEntities3(ctx context.Context, r /* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param resourceType Identifies the specific type of resource that this identifier corresponds to. * @param idOrg Optional, org key applied to the resource. + * @param resourceType Identifies the specific type of resource that this identifier corresponds to. * @param idProject Name of the project the resource belongs to. * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. * @param optional nil or *ListDescriptionEntities4Opts - Optional Parameters: @@ -6146,7 +6146,7 @@ type ListDescriptionEntities4Opts struct { SortByDirection optional.String } -func (a *AdminServiceApiService) ListDescriptionEntities4(ctx context.Context, resourceType string, idOrg string, idProject string, idDomain string, localVarOptionals *ListDescriptionEntities4Opts) (AdminDescriptionEntityList, *http.Response, error) { +func (a *AdminServiceApiService) ListDescriptionEntities4(ctx context.Context, idOrg string, resourceType string, idProject string, idDomain string, localVarOptionals *ListDescriptionEntities4Opts) (AdminDescriptionEntityList, *http.Response, error) { var ( localVarHttpMethod = strings.ToUpper("Get") localVarPostBody interface{} @@ -6156,9 +6156,9 @@ func (a *AdminServiceApiService) ListDescriptionEntities4(ctx context.Context, r ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}" - localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) + localVarPath := a.client.cfg.BasePath + "/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}" localVarPath = strings.Replace(localVarPath, "{"+"id.org"+"}", fmt.Sprintf("%v", idOrg), -1) + localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.project"+"}", fmt.Sprintf("%v", idProject), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.domain"+"}", fmt.Sprintf("%v", idDomain), -1) @@ -7589,8 +7589,8 @@ func (a *AdminServiceApiService) ListNamedEntities(ctx context.Context, resource /* AdminServiceApiService Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param resourceType Resource type of the metadata to query. One of Task, Workflow or LaunchPlan. +required * @param org Optional, org key applied to the resource. + * @param resourceType Resource type of the metadata to query. One of Task, Workflow or LaunchPlan. +required * @param project Name of the project that contains the identifiers. +required * @param domain Name of the domain the identifiers belongs to within the project. * @param optional nil or *ListNamedEntities2Opts - Optional Parameters: @@ -7611,7 +7611,7 @@ type ListNamedEntities2Opts struct { Filters optional.String } -func (a *AdminServiceApiService) ListNamedEntities2(ctx context.Context, resourceType string, org string, project string, domain string, localVarOptionals *ListNamedEntities2Opts) (AdminNamedEntityList, *http.Response, error) { +func (a *AdminServiceApiService) ListNamedEntities2(ctx context.Context, org string, resourceType string, project string, domain string, localVarOptionals *ListNamedEntities2Opts) (AdminNamedEntityList, *http.Response, error) { var ( localVarHttpMethod = strings.ToUpper("Get") localVarPostBody interface{} @@ -7621,9 +7621,9 @@ func (a *AdminServiceApiService) ListNamedEntities2(ctx context.Context, resourc ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain}" - localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) + localVarPath := a.client.cfg.BasePath + "/api/v1/named_entities/org/{org}/{resource_type}/{project}/{domain}" localVarPath = strings.Replace(localVarPath, "{"+"org"+"}", fmt.Sprintf("%v", org), -1) + localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) localVarPath = strings.Replace(localVarPath, "{"+"project"+"}", fmt.Sprintf("%v", project), -1) localVarPath = strings.Replace(localVarPath, "{"+"domain"+"}", fmt.Sprintf("%v", domain), -1) @@ -8165,7 +8165,7 @@ func (a *AdminServiceApiService) ListNodeExecutionsForTask2(ctx context.Context, ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}" + localVarPath := a.client.cfg.BasePath + "/api/v1/children/org/{task_execution_id.node_execution_id.execution_id.org}/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}" localVarPath = strings.Replace(localVarPath, "{"+"task_execution_id.node_execution_id.execution_id.org"+"}", fmt.Sprintf("%v", taskExecutionIdNodeExecutionIdExecutionIdOrg), -1) localVarPath = strings.Replace(localVarPath, "{"+"task_execution_id.node_execution_id.execution_id.project"+"}", fmt.Sprintf("%v", taskExecutionIdNodeExecutionIdExecutionIdProject), -1) localVarPath = strings.Replace(localVarPath, "{"+"task_execution_id.node_execution_id.execution_id.domain"+"}", fmt.Sprintf("%v", taskExecutionIdNodeExecutionIdExecutionIdDomain), -1) @@ -11487,8 +11487,8 @@ func (a *AdminServiceApiService) UpdateNamedEntity(ctx context.Context, resource /* AdminServiceApiService Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param resourceType Resource type of the metadata to update +required * @param idOrg Optional, org key applied to the resource. + * @param resourceType Resource type of the metadata to update +required * @param idProject Name of the project the resource belongs to. * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. * @param idName User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' @@ -11496,7 +11496,7 @@ AdminServiceApiService Updates a :ref:`ref_flyteidl.admin.NamedEntity` @return AdminNamedEntityUpdateResponse */ -func (a *AdminServiceApiService) UpdateNamedEntity2(ctx context.Context, resourceType string, idOrg string, idProject string, idDomain string, idName string, body AdminNamedEntityUpdateRequest) (AdminNamedEntityUpdateResponse, *http.Response, error) { +func (a *AdminServiceApiService) UpdateNamedEntity2(ctx context.Context, idOrg string, resourceType string, idProject string, idDomain string, idName string, body AdminNamedEntityUpdateRequest) (AdminNamedEntityUpdateResponse, *http.Response, error) { var ( localVarHttpMethod = strings.ToUpper("Put") localVarPostBody interface{} @@ -11506,9 +11506,9 @@ func (a *AdminServiceApiService) UpdateNamedEntity2(ctx context.Context, resourc ) // create path and map variables - localVarPath := a.client.cfg.BasePath + "/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}" - localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) + localVarPath := a.client.cfg.BasePath + "/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}" localVarPath = strings.Replace(localVarPath, "{"+"id.org"+"}", fmt.Sprintf("%v", idOrg), -1) + localVarPath = strings.Replace(localVarPath, "{"+"resource_type"+"}", fmt.Sprintf("%v", resourceType), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.project"+"}", fmt.Sprintf("%v", idProject), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.domain"+"}", fmt.Sprintf("%v", idDomain), -1) localVarPath = strings.Replace(localVarPath, "{"+"id.name"+"}", fmt.Sprintf("%v", idName), -1) diff --git a/flyteidl/gen/pb-go/flyteidl/service/openapi.go b/flyteidl/gen/pb-go/flyteidl/service/openapi.go index 224f5b0225..b7b2aef4e0 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/openapi.go +++ b/flyteidl/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xfd\x73\xe3\xb8\x95\x2f\x8c\xff\xbe\x7f\x05\xaa\xf7\x5b\xd5\x99\xc4\x76\x4f\x32\xb9\xfb\x4d\x79\xeb\xd6\xf3\x68\x6c\x75\x8f\xee\xb8\x6d\x8f\x2d\xcf\x64\xea\x7a\x4b\x03\x91\x90\x84\x98\x02\x34\x00\x68\xb7\x92\xca\xff\xfe\x14\x0e\x00\x12\xa4\x48\x89\x7a\x35\xe5\xc6\x6c\xd5\xc6\x2d\x92\x78\x39\x00\x0e\xce\xeb\xe7\xfc\xeb\x3f\x10\x7a\x27\x5f\xf0\x78\x4c\xc4\xbb\x73\xf4\xee\x2f\x67\xdf\xbe\x3b\xd1\xbf\x51\x36\xe2\xef\xce\x91\x7e\x8e\xd0\x3b\x45\x55\x42\xf4\xf3\x51\x32\x57\x84\xc6\xc9\x07\x49\xc4\x33\x8d\xc8\x07\x1c\x4f\x29\x3b\x9b\x09\xae\x38\x7c\x88\xd0\xbb\x67\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\x7a\xf7\x1f\x08\xfd\x1b\x9a\x97\xd1\x84\x4c\x89\x7c\x77\x8e\xfe\xaf\xf9\x68\xa2\xd4\xcc\x35\xa0\xff\x96\xfa\xdd\xff\x81\x77\x23\xce\x64\x5a\x78\x19\xcf\x66\x09\x8d\xb0\xa2\x9c\x7d\xf8\x87\xe4\x2c\x7f\x77\x26\x78\x9c\x46\x0d\xdf\xc5\x6a\x22\xf3\x39\x7e\xc0\x33\xfa\xe1\xf9\xcf\x1f\x70\xa4\xe8\x33\x19\x24\x38\x65\xd1\x64\x30\x4b\x30\x93\x1f\xb8\x18\x7f\xf8\x17\x8d\xcf\xb8\x18\xff\x1b\xfe\x98\x09\xfe\x0f\x12\x29\xf3\x8f\x98\x4f\x31\x65\xe6\x6f\x86\xa7\xe4\xdf\x59\xa3\x08\xbd\x1b\x13\xe5\xfd\x53\x4f\x3d\x9d\x4e\xb1\x98\x6b\xf2\x7c\x24\x2a\x9a\x20\x35\x21\xc8\x74\x8a\x1c\xbd\xf8\x08\x61\x74\x2e\xc8\xe8\xfc\x37\x41\x46\x03\x47\xf5\x33\x43\xed\x2b\x18\xda\x6d\x82\xd9\x6f\x67\x96\x66\xd0\x32\x9f\x11\x01\x13\xed\xc5\xba\xf5\x4f\x44\x75\xa0\xd9\xfc\xfd\xbf\xf8\xaf\x0b\x22\x67\x9c\x49\x22\x0b\xe3\x43\xe8\xdd\x5f\xbe\xfd\xb6\xf4\x13\x42\xef\x62\x22\x23\x41\x67\xca\xae\x6c\x07\xc9\x34\x8a\x88\x94\xa3\x34\x41\xae\x25\x7f\x34\x66\xae\x7a\x99\xf1\x42\x63\x08\xbd\xfb\xff\x09\x32\xd2\xed\xfc\xe7\x87\x98\x8c\x28\xa3\xba\x5d\x69\x76\x53\x3e\xdc\x77\x85\xaf\xfe\xfd\x1f\x55\x7f\xff\xdb\x9b\xd1\x0c\x0b\x3c\x25\x8a\x88\x7c\xfd\xcd\x7f\xa5\xb9\xe8\x45\xd2\x9d\x9b\x15\x2d\x0f\xba\x34\xd3\x1b\xf8\x0b\x27\x27\x88\x8b\x31\x7a\x22\x73\x04\x5b\x8a\xc4\x48\x71\x58\x3b\x41\x24\x4f\x45\xb4\x38\x7b\x0a\xdf\xeb\x6d\x56\x7e\x22\xc8\xef\x29\x15\x44\x2f\x93\x12\x29\x29\x3d\x55\xf3\x19\x0c\x4f\x2a\x41\xd9\xd8\x27\xc2\xbf\x4f\x1a\x4d\xca\xee\xce\x15\x13\xbb\xc6\x53\xa2\x77\x9a\x9e\x83\xfd\xa2\x30\x1f\x34\x24\x09\x67\x63\x89\x14\x6f\xcf\xd4\xcc\x59\x5b\x63\x66\xe6\x83\xda\x89\x3d\xb2\x8e\x7b\x25\xc2\x0c\x0d\x09\xd2\xec\x86\xc6\x44\x90\x18\x61\x89\x30\x92\xe9\x50\x12\x85\x5e\xa8\x9a\x50\xa6\xff\x3d\x23\x11\x1d\xd1\xc8\xd1\xac\x3d\xb4\x81\x3f\x97\x53\xe6\x41\x12\xa1\x07\xfe\x4c\x63\x12\xa3\x67\x9c\xa4\x04\x8d\xb8\x28\xee\xe3\x47\xd6\x9f\x68\x3a\x4c\x87\x94\x01\x3f\xd1\xb4\x74\x3b\xe4\x4f\x8e\x5c\x7f\x42\xba\x3f\x94\x32\xfa\x7b\x4a\x92\x39\xa2\x31\x61\x8a\x8e\x28\x91\xe5\xd6\xfe\xc4\xed\x11\x42\xa7\x48\xd3\x99\x08\x05\xf4\xe6\x4c\x91\x2f\x4a\xa2\x53\x94\xd0\x27\x82\xde\x5f\x51\xa9\x50\xe7\xb6\xf7\xfe\x04\xbd\x37\x4c\x00\x01\xfb\x7d\x7f\x00\x0a\x67\x7f\xff\x8f\xc7\x4f\x14\x1e\x97\x39\xc9\xbb\x8e\x66\x51\xf7\xe6\xf6\xcb\x5b\xf8\x9f\xff\xf0\xdb\xb1\xeb\xb5\xfa\x4a\x31\xf7\x49\x7e\x99\xd8\x9b\xa4\xe9\xfd\x01\x04\x2b\x5e\x1d\x52\xaf\xd5\xb6\x37\x87\x6e\xb7\x7c\x75\xc8\x23\xbb\x3b\xf4\x1c\xf6\x7d\x7f\xbc\xbd\xcb\x63\x9b\x9b\x03\x2b\x38\xd2\x98\x32\xc3\x01\x32\x86\x20\xa4\x66\x02\x6e\xd8\x2d\x99\xe9\x36\x17\x89\x37\x33\xef\x2e\x71\x57\x84\x47\x95\x16\xce\x3b\xa1\x53\xba\x6a\x7d\x7b\x2c\xd6\x22\xb3\xe5\xe4\x2c\x9d\x0e\x89\xd0\x64\x70\x9b\x15\x66\x3b\xd4\x9b\x57\xa5\x82\x91\xb8\xc1\x34\x7f\x4f\x89\x98\x2f\x99\xe7\x08\x27\xb2\x6e\xa2\x94\x29\xa2\xf5\x93\xd2\xe3\x11\x17\x53\xac\xec\x0b\xff\xf5\xd7\x75\x09\xa1\xf8\x13\x59\xb5\xfe\x3d\xb3\x9a\x11\x96\xb0\x0d\xa6\x69\xa2\xe8\x2c\x21\x68\x86\xc7\x44\x5a\x8a\xa4\x89\x92\x27\xf0\x9a\xd6\x89\x88\x38\xcd\xae\x57\xe8\xc1\x89\x15\xa9\x34\x87\x7e\x94\xc9\xfc\x8c\x7c\x51\xd0\xd2\x23\x03\xc1\x02\x48\xe4\x5f\x97\x7b\x20\xe5\x66\x7b\x46\x72\xa1\x06\xc3\xf9\xd9\x13\x59\xe8\xb7\x76\xe7\x60\x86\xb0\x52\x82\x0e\x53\x45\xf4\xbc\x75\x1b\x8e\xe3\x01\xc3\x37\xd2\x47\x13\xd6\xf0\x7a\x13\x8e\xa9\x20\x11\xcc\x6d\x9d\x03\x93\x7d\xa5\xe7\xad\xf9\xfd\xdc\xcc\x5e\xb3\x7f\x2d\x6c\x55\x50\x20\x5b\xf2\x47\xf6\xc8\xd0\x29\xba\xec\xde\x5f\x74\xaf\x2f\x7b\xd7\x9f\xce\xd1\xf7\x73\x14\x93\x11\x4e\x13\x75\x82\x46\x94\x24\xb1\x44\x58\x10\x68\x92\xc4\x5a\xa0\xd2\x83\x21\x2c\xa6\x6c\x8c\xb8\x88\x89\xd8\x1f\x19\x4b\x4f\x09\x4b\xa7\xa5\x9b\x12\x7e\xcf\x47\x5f\xfa\x42\xcb\x4f\xd9\xa3\xc2\x93\xff\x59\x20\x30\xcc\x58\xf7\xed\xb5\xf6\xaa\x12\xdb\x11\xeb\xfd\xc7\x25\xba\x1d\x40\xed\x0f\x1a\x72\xd0\x90\xab\x29\x13\x34\xe4\xad\x28\xbc\x7f\x95\x68\xc7\xd2\xc0\xe1\xaf\x91\xe3\x50\xf7\x8f\xeb\xca\x38\x84\xb6\x1f\x74\xe3\xa0\x1b\x07\xdd\x38\xe8\xc6\x45\x52\x05\xdd\x38\xe8\xc6\xad\xd3\x8d\x1b\x2c\x63\x10\xd4\x7c\x41\x2d\x9a\xd0\x24\x16\x84\x7d\x50\x58\x3e\x0d\xc8\x17\x12\xa5\x46\xce\x00\x37\x4d\xf1\xc7\x81\x56\x24\x78\x4c\x8a\xbf\x14\xfe\x61\xfc\x3a\x6b\x7f\x96\x4b\x86\x6b\x7f\x9a\xd9\x22\xd6\xfe\x12\x2c\x17\xcd\xbe\x83\x5f\x68\x5c\xf9\x36\xfc\xb2\x62\x0e\xee\x9d\x25\x83\x75\xaf\xd4\x8e\xca\xbd\x60\x05\xe0\xca\x77\x04\x51\x62\x3e\xc0\x4a\x91\xe9\x4c\xad\x69\x95\xc1\x28\xd1\x62\xf6\x32\xb1\xfa\x9a\xc7\xa4\xeb\xfa\xfb\x0d\x19\xe9\x9e\xc4\x68\x38\xb7\xc7\x62\x44\x04\x61\x11\xa9\x6f\xa1\x8f\xe5\x53\xde\xc2\x2a\xd9\xbc\xd0\x9f\xfc\xc8\x85\xfe\xfc\x28\xdc\x71\x85\x91\x1f\x42\x46\xdf\xe4\xa4\xbe\x31\x17\xde\xa6\x5c\xe7\xcd\xd9\xc2\x36\xe4\xa1\xc1\x72\xb6\x3d\x25\x9b\xda\xd9\xb8\x40\x72\x2e\x15\x99\xae\xb4\xb8\x1d\x0f\x21\xec\x25\xd9\xd6\x01\x97\xee\xe9\xaf\xe0\xd4\x17\xa5\x8e\x70\xbc\xd7\x20\xd9\xae\xec\xe5\x6d\x9f\xa7\x0b\x59\x5e\x3e\xd5\x7b\xb7\x7c\x9e\xbb\xee\x28\xa6\x59\x90\x87\x77\x3d\xc8\x3d\x59\xa0\x6a\xd7\xca\x51\x7b\x00\x03\x58\x61\x7b\x28\x7a\x5c\xb2\xf3\xa7\x3f\xf5\x8d\x76\xc6\x42\xab\x26\x54\x7a\xf6\x4b\x14\x71\x61\xc4\xe1\xd8\x9e\x77\x63\x7e\xe8\xf4\x3b\xf7\xdd\xfe\x39\xea\xa0\x18\x2b\xac\x0f\xb8\x20\x33\x41\x24\x61\x0a\x4c\x3b\xfa\x7b\x35\x47\x53\x1e\x93\xc4\x18\x21\x3e\x6a\xe9\x1f\x5d\x62\x85\x2f\xb0\xc2\x09\x1f\x9f\xa1\x0e\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\xbb\x6d\x45\x62\xd7\x04\x66\xb1\x63\x2d\x18\x45\x7c\x3a\xa3\x49\xe6\x6d\xca\xec\x6d\x94\xc5\xf4\x99\xc6\x29\x4e\x10\x1f\x6a\xae\x22\xcf\x1e\x59\xf7\x99\x30\x95\xe2\x24\x99\x23\x9c\x24\xc8\x76\xeb\x5e\x40\x72\xc2\xd3\x24\xd6\xed\xba\x51\x4a\x3a\xa5\x09\x16\x5a\xa6\x35\xa3\xbd\xb1\x6d\xa1\xfe\x84\x64\x63\x85\x71\x69\x6a\x4e\xf1\x13\x91\x88\x2a\x34\xe3\x52\xd2\x61\x92\x9f\xf9\x87\x1e\x82\x71\x5f\x5c\xf5\xc0\xc4\x13\x29\xc4\x0d\x0f\x75\x9d\x5b\x93\x9e\xeb\x71\x8a\x19\x23\xd0\x31\x57\x13\x22\x6c\xf7\xf6\xe5\xd7\xb6\xd6\x3c\x5c\xdf\xdf\x76\x2f\x7a\x1f\x7b\xdd\xcb\x45\x73\x4d\xbf\x73\xff\xe3\xe2\xaf\xbf\xdc\xdc\xfd\xf8\xf1\xea\xe6\x97\xc5\x27\x57\x9d\x87\xeb\x8b\x1f\x06\xb7\x57\x9d\xeb\xc5\x87\x76\x5b\x35\xb6\xfc\xf8\x23\xdb\xd9\xd9\x3a\x3a\xa3\x50\x30\xea\xaf\xb1\xec\xbb\x36\xea\x9f\xbc\x5d\xab\xfe\x88\x26\x60\x74\x68\x6c\xd1\xcf\xac\x46\xf6\x4b\x34\xc3\x52\x1a\x39\xd0\x8c\xe0\xec\x91\x7d\xe6\x42\xb3\xeb\x11\xd7\x1c\x51\xcb\x8a\x4a\xa4\x91\xa2\x6c\x9c\x7d\x74\x8e\x1e\xd3\x6f\xbf\xfd\x2e\xba\xa2\xec\x09\xfe\x22\x6d\x24\x4e\x70\x79\x04\x97\x47\xeb\x5c\x1e\xff\x51\xf1\xe9\xfe\xdd\x03\xc1\xc6\x1f\x6c\xfc\xfb\xb3\xf1\x07\x13\xbf\x37\x86\x60\xdf\xde\x96\x10\xc1\x00\x16\xec\xdb\xdb\x13\x22\xd8\xb7\x5b\x3a\xe3\x70\xbc\x83\x7d\x3b\xd8\xb7\x83\x7d\x3b\xd8\xb7\x83\x7d\x3b\xd8\xb7\xbf\x1a\xfb\x76\x0b\x43\x9e\x82\x91\x3f\x18\xf9\x83\x91\x3f\x18\xf9\x83\x91\x3f\x18\xf9\x8f\xc7\xc8\xaf\xa5\xdd\x0f\xe5\xd0\xff\x3d\x81\xfe\x69\xe1\x92\xcd\x52\x05\xa2\x24\x4f\x95\xfe\x53\xf7\x0f\x7b\x65\x09\x04\x40\x33\x83\xf2\x27\xa2\xb2\x17\xb5\x68\x7b\x14\xb1\xe2\xbf\x70\xf1\x34\x4a\xf8\x4b\x36\xf2\x4f\x44\xe9\xc1\xdf\xd9\x5e\x02\x18\x60\x00\x03\x44\x01\xea\x60\xd7\x50\x07\xad\x32\x51\x1f\x94\xbf\x1f\x35\x4b\x0f\x1c\x3d\x30\xbf\xc0\xfc\xea\x68\x73\x94\xcc\xaf\xd9\xd4\x8e\xce\x7a\xb3\x7f\x9e\x5e\xb4\x77\xe5\x82\x7b\x45\x4a\x6e\x7d\x34\x4e\x6d\xb0\x4d\x4d\x2c\x8d\x17\x2a\x73\x90\x6b\xa2\x18\x90\xb2\xe2\xaa\x28\xbc\x7c\x34\x1a\x40\x61\xd4\x87\xbf\x2b\xde\x78\x5e\xe8\xd7\x12\x16\x13\xa2\x5e\x36\x24\xd4\x1b\xbe\x34\x0f\x17\xb3\x72\xf8\xdb\xee\xab\xbd\xd3\xc2\x95\x66\xff\x0b\x0c\x3f\x30\xfc\xc0\xf0\x5f\x89\xe1\x6f\x40\xf7\xa0\xc2\x2d\x5c\x6a\x95\xb0\x4b\x4d\x71\x96\xd6\x49\xba\x58\x23\xcb\xa2\x71\x5a\xc5\x8a\x3c\x8a\xca\xc4\x89\xaa\x4c\x89\xc5\xd4\x88\xca\x5c\x88\xed\x92\x1f\x36\xbd\xab\x9b\xa7\x33\x7c\x22\xaa\xf0\xf2\xd1\xe8\x9f\x85\x51\x1f\xfe\xb2\x7e\xf5\xb0\x9d\xd7\xe2\xd3\x5f\x5f\xea\x46\xc8\xd5\xd8\x23\xe9\xde\xba\x58\xd3\xde\x6c\x8c\xaf\x20\xfd\x22\xe4\x5b\xac\x45\xa3\xb7\x95\x60\xf1\x56\x33\x2a\x8e\x33\x85\x22\xe4\x4c\x84\x9c\x89\x9d\xaa\xbc\xa5\xa7\x5f\x55\xce\xc4\x31\x27\x49\x1c\xde\x3c\x11\x4c\x0e\xed\x37\x39\x04\x8b\x83\xfd\x2f\x68\xdf\x6b\xcf\x3c\x88\xf6\x41\xfb\x6e\x32\xf3\xa0\x7d\x07\xed\xbb\x85\x47\x34\x68\xdf\x41\xfb\x0e\xda\x77\xd0\xbe\x83\xf6\x8d\x82\xf6\xed\x35\xf4\x5a\xa9\xb5\x6d\x70\x6e\x1e\x95\xcd\x21\x9f\xfa\xc0\x1d\xf0\xc5\x74\xd4\x02\xdb\x6d\x92\xa1\x0a\x7f\x39\xa5\x7e\x5d\xc4\xc4\x5a\x2d\xfd\x32\x1f\x6c\x17\x98\xe4\x6f\x96\x55\xac\x50\xd8\x17\xbe\x3b\x8a\x18\x81\x85\x51\x87\xb4\xd4\x4d\x45\x9e\x57\x12\x1a\xf6\x44\x81\x23\xb9\xbe\xd6\x5f\xa8\x37\xac\x4b\x06\x1d\x72\xfb\x14\xba\xa3\xd1\x1d\x8f\x47\x67\x3c\xbc\x6c\xf1\x16\xc5\x89\x20\x4d\x78\x63\x08\x17\x6f\xb8\x78\xc3\xc5\x1b\x2e\xde\x70\xf1\x86\x0c\x7c\xfb\xfe\x5e\xe5\x89\x92\x30\xd1\x08\x4a\x6b\xe7\x35\x1c\x2a\x44\x09\xef\x06\x5e\x55\x91\xa1\xfc\x35\x25\xf2\xaf\x47\x29\x53\x1c\xa2\x28\x43\x10\x2a\x8e\x44\xa8\x78\x93\xb6\xa4\x20\x29\x05\x49\xa9\x9a\x32\x8d\x24\xa5\x47\xd6\x9f\x68\x3a\x4c\x87\x94\x65\xde\x3c\xb7\x43\xfe\xe4\xc8\xf5\x27\xa4\xfb\x43\x29\xa3\xbf\xa7\x24\x99\xe7\x3c\x49\x96\x5b\xcb\x90\x3d\xd1\x29\xd2\x74\x26\x42\x01\xbd\x39\x53\xe4\x8b\x92\xe8\x14\x25\xf4\x89\xa0\xf7\x9a\x31\xa3\xce\x6d\xef\xfd\x09\x7a\x7f\x05\x05\x86\xd0\x2c\xc1\x4c\xbe\x6f\x8d\xe3\x26\xc0\x2a\xef\x0b\x56\x39\xa0\x2a\x07\x54\xe5\xa6\x04\x0a\xa8\xca\x01\x55\xf9\x78\x51\x95\x77\xa6\x1f\x6e\x88\xcb\xf9\x2a\x9a\xe2\x71\xfa\xb2\x83\xa6\x88\x82\xa6\x18\x34\xc5\xa0\x29\x06\x4d\xf1\x48\x34\xc5\x76\x50\x38\xa8\x89\x41\x4d\x0c\x6a\xe2\x0e\x89\x13\xd4\xc4\xa0\x26\x06\x35\x71\x41\x4d\x3c\x5e\xcf\xe1\x77\x41\x1f\x0c\xfa\xa0\xff\xfb\xf1\xe9\x83\x41\x75\x0a\xaa\x53\x35\x65\x8e\x53\x75\x6a\x8d\xec\x73\x8c\x21\x45\x41\x29\x6c\x4e\x88\xa0\x14\x36\x26\x55\x50\x0a\x97\x10\x27\x28\x85\x41\x29\x0c\x4a\x61\x63\xa5\xf0\x98\xdc\x85\x41\x3b\x0c\xda\xa1\xff\x7b\xd0\x0e\x83\x76\x18\xb4\xc3\xe0\x58\x0b\xaa\x61\x50\x0d\x83\x6a\x18\x54\xc3\x55\xc4\x09\xaa\x61\x50\x0d\xbf\x2e\xd5\x90\x3c\x13\xa6\x24\x14\x43\xf4\x15\xa5\x77\x33\x2e\xeb\x15\x3c\x9f\x3b\x54\x28\x77\xd0\x66\xb1\x28\x21\xa0\xb6\xfd\x86\x26\x58\x22\x1e\x45\xa9\x28\x9d\x81\xb2\x7a\x77\x21\x08\x56\x04\x5a\xd0\x1f\x1e\x83\x5a\xb7\x38\xdd\x43\x01\x10\x0f\x79\xbc\xb0\xdb\xcd\x41\xa8\x7a\xb2\x5c\xcc\xda\xd9\xd4\x7f\x4f\x49\x33\xad\x76\x8f\x9b\x1a\xa2\xa1\xcd\x66\x5c\xac\x76\xf6\x62\x8b\xea\xef\x78\xd7\x2f\xd4\xea\xdf\x68\xe7\x67\xad\xe8\x8f\x8f\x22\x06\xba\x7a\xde\x87\x3a\x02\xd5\x8b\xfc\xc6\xc2\x6e\x5f\xfd\x9c\xd7\xad\x71\xcb\xce\x7a\x65\x71\xc3\x76\x5f\x70\x47\x71\xc4\x5f\xef\x86\xab\x5d\xd7\x70\xc2\xbf\xba\x9b\x7c\x86\x05\x61\x6a\xd0\xa4\xa0\xa9\xc2\xf2\x69\xc7\x67\xbe\x50\x68\x62\xa3\x33\x0f\x2d\x1c\xcd\x99\x5f\x9c\xef\x61\xcf\x7c\xe3\xd5\x0e\x9c\x60\xb7\x9c\xa0\x6a\xe1\xdb\xc0\x09\xda\x7d\xa6\xc3\x91\x86\xff\xc2\xa6\x5e\x6f\x53\x1f\x8f\x2e\x7a\x0c\x1b\xfc\x75\x55\xd1\x57\xdf\xe4\xed\xd4\xd2\xb2\x9a\x6f\x8d\xb7\x78\x5f\xd0\xf1\x98\x08\x63\x69\x8e\xf4\x56\xb4\xee\xcc\x25\xa0\xa7\x79\x95\xb3\x95\xdb\x3a\x7b\xf5\x18\xb6\x74\x36\x58\x33\xf6\xaf\x66\x2f\x2f\xcc\xbb\x25\x9b\xb8\x08\xb4\x20\x48\xc4\x9f\x89\x68\xbc\xb3\xef\x08\x6c\x67\x60\xde\x33\x41\x9e\x29\x4f\x65\x32\x3f\x15\x29\x43\xee\x26\x40\x59\x5f\x26\xca\xe6\x85\x26\x09\xe2\x2c\x99\x23\xa9\xb0\x50\xee\x31\x1b\xa3\x91\xe0\x53\x38\x22\x09\x96\x0a\x3d\x31\xfe\xc2\xd0\x08\xd3\x24\x15\x04\xcd\x38\x65\xea\xec\x91\xf5\x18\xba\x33\x63\x84\xaa\x28\x27\x28\x95\xfa\x60\x45\x98\x31\xae\x50\x34\xc1\x6c\x4c\x10\x66\x73\x5b\x5e\x30\xdf\x26\x88\x0b\x94\xce\x62\xac\x08\x74\x51\x82\x94\xcc\xc6\x08\x61\x07\x54\x22\x2a\x11\xf9\xa2\x04\x99\x92\x64\xae\xfb\xd0\x07\x41\x71\x64\xe9\x63\x86\x6a\x8b\x95\x11\x21\xb8\x90\x50\x4f\x65\x38\xff\x27\x66\x8a\x32\x82\xc0\x13\x22\x4d\x48\xc1\x29\xba\xe2\x12\xfc\xb2\x3f\xfe\x4d\xa2\x28\x49\xa5\x22\xe2\x04\x0d\xd3\xb1\x44\x94\xa1\x59\x82\xd5\x88\x8b\xa9\x1e\x21\x65\x52\xe1\x21\x4d\xa8\x9a\x9f\xa0\x29\x8e\x26\xa6\x2d\xa0\x81\x3c\x79\x64\x31\x7f\x61\x52\x09\x82\xb3\xde\xdd\x43\xf4\x07\xff\x99\xd9\x0d\xf2\x9b\x13\x28\xaa\x46\xa7\xb3\x64\xee\x0f\x3f\x5f\x7e\xb3\x26\xba\x11\x12\xa3\x21\x89\x70\x2a\x6d\x64\x94\x12\x73\x44\xbe\x4c\x70\x2a\x61\xed\xf4\xf4\x6c\x45\x9a\x88\x4f\x67\x09\x51\x04\xd1\x11\x52\x42\x6b\x1e\x78\x8c\xa9\x26\xdd\x3d\x21\x0d\x38\x9a\x5d\x40\x7b\x04\x7e\x03\xff\xda\x94\x0b\x82\x62\xa2\x30\x4d\x96\x46\xcb\xd9\x6f\xb3\xb6\x8e\x42\xf5\x7c\x25\x9e\x17\xd4\xc9\xbd\x32\xf2\xe2\x36\x6e\x1f\x27\x4f\x20\x78\x69\x07\x42\x0a\xb3\x51\x55\x11\x4e\xb6\x94\x57\xee\xec\xa0\xc2\xf1\x0d\xc7\xb7\x3c\x92\xc3\x1f\x5f\xb3\x17\x5b\x7a\x7e\x0f\x96\xd8\xdc\xac\x9c\xf2\x15\x95\x2a\x7b\xf3\x38\xb0\xac\xb2\xe1\x1e\x22\x2a\xfd\x4d\x1e\xd6\x10\xc4\x1d\x82\xb8\x6b\x29\x73\x9c\x41\xdc\xad\x09\x57\x0c\x01\xcf\x7b\x0a\x78\xa6\x32\x44\x3c\x87\x88\xe7\xa6\x04\x0a\x11\xcf\x21\xe2\xf9\x78\x23\x9e\xd7\xd4\x1d\x36\xcc\x7f\xad\x73\xcd\xad\xa3\x3f\x7c\x22\xea\x48\x95\xfe\xa0\x39\x04\xcd\x21\x68\x0e\x3b\xd7\x1c\xb8\x70\x1e\x8c\x16\x54\x2d\xdb\x15\x97\x76\x5f\xbf\x8b\x49\x42\x14\xa9\xb7\xb5\x12\x31\xd5\x0a\x91\x91\x40\x28\xd3\xa2\xea\x58\x10\x29\xb7\x65\xb3\x59\xc3\x47\xca\x6c\xb3\xf1\x07\x23\x6b\xe0\xbe\x35\x53\x0b\xdc\xf7\x8d\x71\xdf\xa3\x72\x1b\x78\x1c\xea\x50\x7e\x83\xec\x56\x99\xa5\xf5\x92\xfa\x83\x89\x6d\xc8\x83\x2d\xcc\x0e\xd7\xea\x96\xe2\xd9\xe1\xb6\xfb\x7c\xcb\x5b\xc6\xf4\x75\xa4\x57\x8c\x19\x7c\xb8\x5f\xc2\xfd\x52\x33\xb5\x70\xbf\x84\xfb\xe5\xf5\xee\x17\xc7\x9e\x5a\xe5\x94\xe6\x62\x5c\x30\x19\x2d\xbb\x88\x0e\x15\xec\x7a\x5c\xb7\xce\x61\x43\x47\xde\xde\x95\xd3\x9e\x03\xda\xb6\xf8\xdd\x10\xb2\x1b\x42\x76\x8f\x2a\x64\x37\xf0\xed\x23\xe0\x72\xad\x0b\x6e\x3d\x8e\x78\xd6\xb0\xb7\x8f\x62\x6f\xb7\x2d\xf2\xb3\xd5\xc1\x9e\x47\xb5\xa7\x0f\x14\xeb\x19\xcc\x1f\xc1\xfc\x51\x4d\x99\x10\x16\x19\xe0\x6d\x17\xa7\x15\xa2\x3d\x43\xb4\x67\x88\xf6\xdc\x25\x71\x42\xb4\x67\x88\xf6\xfc\x6a\xa3\x3d\x5b\x1e\xe0\x79\x54\x1a\x43\xd0\x16\x82\xb6\x10\x9c\xa5\x6b\x4e\xed\xe8\x64\xf4\x5d\x71\x66\xf7\x75\x8b\x22\x3c\x8f\x8a\xdb\xbe\x46\x80\x67\x60\xbf\x81\xfd\x56\x53\xe6\x28\xd9\x6f\x7b\x0c\xe9\x21\x16\x72\x21\x16\xf2\xa8\x98\xf1\xc1\x43\x21\x03\x27\x0e\x9c\xb8\x9a\x32\x81\x13\x1f\x7f\xd4\xa0\xf1\xaa\x0e\x66\x09\x66\x03\x1a\x7b\xa1\x83\x1f\xfe\x95\x1b\x2b\xf6\xe5\xd9\xd4\x47\x2b\x36\x55\x48\xb3\xaa\x9f\xe2\x37\xfd\x49\x92\x3b\x3a\x10\x1f\xea\x61\xac\xac\xc7\x6a\x7c\x23\xb7\x09\x66\xbd\xf8\x38\xc0\x6e\x2a\xa7\x7f\x08\x67\xe8\xdb\x0b\x35\xdc\xe6\x92\xc2\x0a\x9c\x6e\x98\x32\x63\x76\xcd\xab\xc9\x16\x8c\xca\xed\x98\xe8\x36\x57\x96\x37\x31\xef\xd6\x72\x97\x91\x47\x94\xf6\x4d\x3b\xf8\xe2\x42\xa9\xc9\xe0\x6d\x6a\x38\xe1\xe0\x6d\x6a\xaf\xb7\xa9\xc1\x32\xee\xc5\x85\x7c\xe0\xe3\x79\x50\x99\xf5\xa8\x25\xd5\x20\xa8\xa2\x20\xd6\x05\xb1\xae\x7e\xd6\x41\xac\x0b\x62\x5d\x10\xeb\x82\x58\x17\xc4\xba\xd7\x17\xeb\x1a\x4c\xf3\xab\x8d\x32\x58\x25\xaa\x36\x2f\x3d\x64\x72\x7c\x20\x15\x30\x9d\x25\x1c\xc7\xcb\x22\xbd\x72\x61\xf2\x37\x94\x0b\x6e\x4b\x24\x50\xd3\x7a\xfe\xd9\x31\x08\xa0\xf9\x68\xbf\xb2\xfc\xa7\xc5\x89\xb7\xc5\x5b\x50\x84\xaf\x6c\xe9\xde\x3e\x0a\x37\xc0\x6b\x6d\xee\x37\x09\x73\x13\x4e\x6c\xc3\x13\x7b\xb8\xfc\xc5\xea\x53\xbc\x86\x95\x44\xfe\xf5\xb8\x8e\x71\xa8\x5d\x11\x30\xaa\x2a\xa6\x16\xa2\x4d\x42\x92\x66\xc8\x66\x7c\x73\xa6\xb6\x90\xcd\x18\xb2\x19\x83\x21\x72\xf9\xb4\x83\x21\xf2\x4d\x64\x33\xae\xaf\x4c\x6c\x98\xdc\x78\x18\xb5\xe2\xc8\xac\x03\x41\xad\x08\x6a\x45\xc5\xd4\x82\x5a\xf1\x15\xaa\x15\xed\xa0\x70\xd0\x29\x82\x4e\x11\x74\x8a\xa0\x53\x04\x9d\x62\xe7\x64\x0c\x3a\x45\x03\x9d\x02\xfe\xb2\x10\xc3\x6b\x2b\x18\x6b\x2a\x16\x2b\x70\x54\x8e\xd6\xe7\x18\x34\x8a\xa0\x51\x04\x8d\xe2\xe0\x1a\x45\x6b\x26\x64\xd9\xe7\x8a\x39\xdd\xbb\x05\x29\x01\xba\xb7\x6f\x3e\x6e\x44\x03\x68\x69\x85\x30\x51\x54\xd0\xb2\x5d\xa7\x3f\xf5\x75\x14\x13\x4d\x0e\x62\x79\x1e\x6c\x8d\x22\x2e\x0c\x53\x8e\xed\x2e\x37\xf2\x44\xa7\xdf\xb9\xef\xf6\xcf\x51\x07\xc5\x58\x61\xbd\xad\x05\x99\x09\x22\x09\x53\x20\xab\x11\x88\xa3\x07\x58\xfd\xc4\x48\x15\x1f\xf5\xfd\x83\x2e\xb1\xc2\x17\x58\xe1\x84\x8f\xcf\x50\x07\xfe\xa9\x3f\xa6\x12\xe1\x44\x72\x84\x1d\xe9\x49\xec\x9a\xc0\x2c\x76\x07\x0a\x03\x5a\x3c\x4d\x32\xe5\x34\x53\x2f\x28\x8b\xe9\x33\x8d\x53\x9c\x64\xe9\x09\x8f\xac\xfb\x4c\x98\x4a\x71\x92\xcc\x11\x4e\x12\x64\xbb\x75\x2f\x38\x00\xfa\x21\xc9\x46\x29\xe9\x94\x26\x58\x68\x76\x6c\x46\x7b\x63\xdb\x42\x5a\x31\x76\x63\x85\x71\x69\x6a\x4e\xf1\x13\x91\x88\x2a\x34\xe3\x52\xd2\x61\x92\x1f\x80\x87\x1e\x82\x71\x5f\x5c\xf5\x40\x66\x8b\x14\xe2\x86\x73\xb8\xce\xad\x02\xe3\x7a\x9c\x62\xc6\x08\x74\xcc\xd5\x84\x08\xdb\xbd\x7d\xf9\xb5\xc5\xaf\x87\xeb\xfb\xdb\xee\x45\xef\x63\xaf\x7b\xb9\x28\x7f\xf5\x3b\xf7\x3f\x2e\xfe\xfa\xcb\xcd\xdd\x8f\x1f\xaf\x6e\x7e\x59\x7c\x72\xd5\x79\xb8\xbe\xf8\x61\x70\x7b\xd5\xb9\x5e\x7c\x68\xb7\x55\x63\x51\xce\x1f\xd9\x3e\x64\x39\xf7\x75\x03\x4c\x0f\x7b\xb8\x14\x56\xa9\x34\x35\x65\x04\x19\x53\xa9\x80\xfd\x37\x91\xc2\x56\x43\x79\x1c\xad\xf4\x15\x0a\x9b\x05\x59\x2c\xc8\x62\x41\x16\x3b\x36\x59\xec\x70\x26\x81\x23\x0a\x53\xfc\xee\xb8\xee\x9e\x50\x76\x21\x30\xe7\xf6\x33\xe7\xd6\xb9\xde\x5a\x63\x3a\x3f\x46\x48\xd7\xe0\x54\x6c\x4e\x88\xe0\x54\x6c\x4e\xab\xe0\x54\x5c\x42\x9c\xe0\x54\x0c\x4e\xc5\xaf\xd8\xa9\x78\x94\xb1\x89\x41\x95\x70\xef\x05\x55\x22\xa8\x12\x6f\x54\x95\x68\x0d\x85\x83\x1e\x11\xf4\x88\xa0\x47\x04\x3d\x62\x39\x71\x82\x1e\x11\xf4\x88\xa0\x47\x1c\x5b\x3c\xe2\x71\x69\x12\x41\x8b\x08\x5a\x44\xbb\xb5\x88\xd6\x4c\xe8\x78\xbc\xc5\xcd\xe6\x13\x22\xf7\x42\xe4\x5e\x88\xdc\xab\x8d\xdc\x7b\xa3\x9a\xfc\xae\xe4\x37\xf7\x75\xdb\x02\x12\x8f\x4b\xfc\x0a\xd5\xc5\xb2\xa7\x41\x18\x0b\xc2\xd8\x57\x2a\x8c\xb5\x08\x44\xb1\x15\x45\xd2\xa6\x58\x45\x13\x3c\x4c\xc8\x20\xb3\x65\xc9\xa6\xea\xfd\x15\x95\x4a\xa2\x28\x95\x8a\x4f\xeb\x2f\x97\xcf\xae\x87\x4e\xd6\xc1\x05\x67\x23\x3a\x4e\xcd\xdd\xf2\x1b\x6c\x7d\xef\x44\xe7\x02\xee\x7c\x46\x56\xf9\x15\x2b\x5a\x3f\x8a\x6b\xa9\x7a\xe8\x87\xba\x9d\xd6\xd1\x47\x72\xdb\xa5\x55\x26\xb4\x08\x39\xb8\xeb\xde\xdf\x3c\xdc\x5d\x74\xcf\x51\x07\x44\x2c\x70\x27\x98\xad\x40\xff\xa9\x27\x85\x14\x96\x4f\xf9\x5a\x0a\xb3\xcd\x25\xc8\xd9\xe0\xbf\xd0\x22\x3f\x3a\x45\x17\x57\x0f\xf7\xfd\xee\x5d\x4d\x83\x76\xa3\x40\xa9\x54\x32\x9d\x25\x58\x91\x18\x3d\xa5\x43\x22\x18\xd1\xd2\x4e\x94\xa4\x5a\xb8\xc9\xbd\x1a\xa6\xd1\xee\xdf\xbb\x17\x0f\xfd\xde\xcd\xf5\xe0\xa7\x87\xee\x43\xf7\x1c\xb9\x1d\xa7\x9b\xd5\xe3\xd2\xa3\x88\xe7\x0c\x4f\xb5\x62\xa5\x7f\xc8\x8b\xb3\xfe\x9e\x92\x94\x20\x2c\x25\x1d\xb3\x29\x61\xaa\xdc\xa2\x1b\xf0\x55\xe7\xfb\xee\x55\xb1\xe5\x09\x41\x3f\xfe\x2d\x1f\x54\x82\x87\x24\xb1\x6e\x16\xf0\x1c\xe8\x8d\x9e\x77\x64\xfd\x2f\xa9\xa1\xea\x4f\x0f\x9d\xab\x5e\xff\xd7\xc1\xcd\xc7\xc1\x7d\xf7\xee\xe7\xde\x45\x77\x60\x85\xe5\x8b\x8e\xee\xb7\xd0\x93\x95\xa9\xd1\xef\x29\x4e\xb4\xd2\xc5\x47\xe0\xb7\xa0\x11\x41\x2f\x13\xc2\x50\xca\x60\xc7\x19\x4d\x4e\xab\x77\x59\xa7\xfa\x94\x99\x19\xdd\x5e\x3d\x7c\xea\x5d\x0f\x6e\x7e\xee\xde\xdd\xf5\x2e\xbb\xe7\xe8\x9e\x24\xa0\xeb\x38\xa2\xc3\x2a\xce\x92\x74\x4c\x19\xa2\xd3\x59\x42\x34\x35\x8c\x2e\x37\x24\x13\xfc\x4c\xb9\xb0\x47\x77\x4c\x9f\x09\x33\x74\x84\x33\x0b\xed\x3b\x9d\x62\xe0\x91\xee\xe6\xfa\x63\xef\xd3\x39\xea\xc4\x71\x36\x07\x09\x6d\x14\x76\xce\x0b\x17\x4f\xa3\x84\xbf\x9c\x16\x87\xad\x99\x03\x74\x6f\x36\x11\x7f\x26\x42\xd0\x98\x94\xf6\x51\xe7\xfe\xbe\xf7\xe9\xfa\x73\xf7\xba\x0f\x14\x53\x82\x27\x12\x4d\xf8\x0b\x58\xe8\x61\x86\x60\xb8\x7f\xc6\x34\x81\xce\xdc\x62\x71\x86\x5e\x26\x14\xbc\x3a\x54\xfa\x04\x33\x6a\xa7\x48\xd9\xab\x1b\x9d\x0b\x07\x6f\x51\x1b\x2b\x9f\xa4\xc5\x37\x4a\xc7\x62\xd9\x0b\x85\x5d\xbe\xf8\xe2\xaa\xdd\xba\xf8\x45\x69\xbb\xd5\xeb\xa0\x0b\xfb\xa5\x7e\xa6\xf9\x5a\x37\x56\x41\x8b\x34\x5c\x53\x78\x58\x57\x03\x35\x3e\x30\x5f\x09\x05\x97\x9a\x13\xf3\x1d\x4f\x3c\x2e\x6d\xb4\xb1\x18\x91\x17\x5c\x3d\x72\x81\xe2\x38\x12\xef\x5e\x57\xa2\x38\xec\xd1\x38\xb4\xd6\x10\xe4\xa5\x20\x2f\x05\x79\x29\xc8\x4b\x41\x5e\xca\xfe\xdb\xb3\x3c\x41\x94\xa0\x91\xfc\x90\xed\xab\xfd\x82\xb2\x12\xa9\x37\xac\xa2\x53\x82\x6c\xcf\xf6\xa4\xd6\x0a\x21\x59\xa9\xfb\xa5\x16\xf3\x4f\x44\x65\x2f\x7e\x36\x0d\x1f\x85\x30\xf1\x8b\xe5\x28\xd9\xe0\x3f\x11\x65\xc7\x1f\x12\xfa\x43\x42\x7f\xcd\xd4\x82\x57\x60\x7b\xaf\x00\x17\x48\xce\xa5\x22\xd3\x23\xf1\x0f\xc4\x64\xb6\xd8\x61\x69\x62\xf0\x8e\x89\xef\x5a\x08\x47\x36\x9e\x73\x1b\x3b\x90\x90\x67\x92\x80\x20\xab\x04\x7e\x26\x42\x5a\xf1\x6c\x28\x08\x7e\xd2\x32\x6d\xcc\x5f\x7c\xe1\x2c\x26\x0a\xd3\x64\x1f\xfa\x73\x93\x70\xe5\xef\xfe\xf2\xaa\xf7\xe1\xf1\x5e\x81\xe1\x06\x0c\x2e\xe4\x70\x59\x7c\x85\x97\xc5\x31\x06\xf1\x84\x3b\xb0\x2d\x77\xa0\x26\x77\x3c\x70\xe1\x7c\x1f\xfe\x55\x30\xca\xfd\x7b\x5f\xfa\xe1\x1d\xe4\x47\xc9\x65\x17\xa1\xe6\x52\x71\x17\x96\xef\x37\x1b\x04\xb8\xe2\x46\xf4\xbe\x38\x0a\x7d\xd0\x1b\x6f\x9b\x5c\xd3\x77\xbe\x61\xdf\xdd\x13\x53\xa2\x70\x8c\x15\xd6\x47\x68\x4c\xd4\x19\xba\x61\xf0\xac\x8f\xe5\xd3\x09\x72\xf7\xba\xe6\x9d\x79\x28\x86\x9f\xa2\xb3\x27\x56\xd9\xd0\x66\xf5\xda\xc1\x9b\x6d\xe4\xe8\x41\x4b\xdf\xe5\xd4\x82\xe0\x15\xd2\xb1\xdb\x8c\x9b\xe7\xbe\x6e\x14\xed\xbc\xbb\x5b\xd9\xb4\x78\xc4\x17\xf3\x61\xe3\x9b\x77\x7a\x4d\xa7\x30\xf4\x70\x07\x9b\xff\xc2\x1d\x1c\xee\xe0\x70\x07\x2f\xa3\x4c\xb8\x83\x8f\x38\x00\xbe\xe2\xca\x7a\xd5\x08\xf8\x26\x66\x05\x63\x53\xc8\x0d\x0a\x6b\x02\xf5\xe6\x36\x84\x95\xf0\x5a\x15\x52\xcb\x4a\x6c\xad\xfc\x1b\x7a\x24\xc1\x6a\xde\x2c\x0f\x81\xaf\xb5\x53\x61\xc5\x20\xbc\x04\xab\xc2\x1e\x25\x9a\xb7\x27\xce\x6c\x23\xcb\x60\x05\x97\x0c\xa6\xcc\xdc\x49\x79\xb6\xb7\x3c\xc0\x0e\x5b\x73\xa2\xdb\x48\x36\xde\xc4\x3c\xe1\xc6\xc9\x2c\x1e\x51\x5a\xb2\xa8\x7b\x81\xe1\x7a\x1d\x3b\xfe\xeb\x43\x6f\x91\xb7\x8b\xbc\x15\xc0\xa5\xd6\x3a\x24\x01\x5c\xea\x10\xe0\x52\x0d\x96\x71\x2f\x88\x71\x07\x3e\x9e\xaf\xa9\x3a\x1c\x8f\x13\xf2\xc8\x74\x86\xa3\xd2\x17\x82\x0f\x72\xff\xf6\xcf\x60\x2a\x0c\xa6\xc2\x6a\xca\x04\x53\xe1\xd7\x15\xae\xb5\xab\xfb\xde\x7d\xfd\xda\x5e\xc8\x23\xbb\x99\x83\x13\x32\x5c\xc2\xe1\x12\x0e\x97\x70\xb8\x84\x77\x45\xe1\xe0\xaf\x5b\x53\xe9\x3e\x0a\x2f\xdd\x91\x5d\xeb\xc1\x49\x17\x6e\x7c\xf7\x71\x70\x69\xad\x9a\x67\x70\x69\x05\x97\x56\x70\x69\x05\x97\x56\x70\x69\x65\xbf\x07\x97\xd6\x41\x77\xeb\x57\x6b\xb6\xab\xd6\x18\x78\x4c\x06\x15\x48\x32\xd9\x4f\x03\x3f\x6d\xb0\xf0\x6b\xc1\x7d\x57\x78\xe2\xfb\xf2\x0a\x0f\xf2\x72\x39\xd0\x2f\x8d\xd7\xce\xc3\x5f\x66\x4e\xe4\x31\x69\x9c\x77\x5f\x78\xb9\xed\x71\x81\x6e\xa2\x46\xf5\xf0\x47\x7e\x80\x3c\xfb\xf2\x4e\x78\x63\xd1\x67\x35\xbb\xfa\x2d\x5a\xea\x2a\xce\x68\x30\xdb\xad\x24\xd4\x1b\x06\x1c\xb0\x4c\xf8\x00\xe3\x79\xd3\x77\xd8\x07\x8b\xfe\x38\x70\x60\x83\x3b\xbc\xd4\x2e\x4d\xd3\x9a\xe9\x3b\x1b\x8d\xf3\x20\xad\xba\xe2\x2a\x3e\x6d\xfb\x45\x07\x73\x5e\x32\xe5\x70\xdd\x85\xeb\x2e\x5c\x77\xe1\xba\x0b\xd7\x5d\xf9\xba\x73\x57\xcf\xa0\xe2\xd2\xab\x7e\x96\x5f\x7d\xd5\xcf\xb3\x0b\xb0\xfa\xf1\xfa\x28\x6a\x8d\x9c\x47\x8d\x75\x38\x70\x1b\xf9\x6f\x1f\x49\x76\x97\x3f\xe4\x43\xb8\x8e\x6a\x37\xc6\x1b\xbb\xd8\x96\x6e\xf2\x37\x77\xbd\x2d\x3b\xb2\xe1\x92\x6b\x48\xae\xb7\x7a\xd5\xed\xc5\x51\xb5\x5f\xc7\xc3\x01\x9d\x56\xaf\x65\x77\xde\x8b\x79\xfd\x33\x17\x04\x51\x36\xe2\x88\x43\xf8\x8e\x54\x22\x8d\x14\x65\xe3\xec\xa3\x73\xf4\x98\x7e\xfb\xed\x77\xd1\x15\x65\x4f\xf0\x17\x69\xa3\x51\x3e\xf8\xcc\x82\xcf\xec\x18\x7d\x66\x26\xd6\x6e\x30\xc3\x82\x30\x55\xa1\x5b\x94\xaf\x13\x78\xdd\xaf\x49\xed\xa4\x0e\x68\x00\x69\xd1\x1e\xd9\x0b\x39\xbb\xaa\xde\x58\x5e\x58\x49\x7b\x79\xc3\x6e\xa5\x96\xeb\x23\xed\xf1\x2a\xbd\x55\x29\x3d\x18\xa1\x82\x11\xaa\x3c\xcf\xc3\x19\xa1\x36\xa0\x7b\x88\x8d\x38\xfc\x55\x75\x3c\xde\xa3\x96\xdf\x67\x6d\x73\x1e\x85\x5b\x2d\xdc\x6a\xe1\x56\x6b\x01\xdd\xc3\xad\xb6\xf4\x56\xfb\x4a\xdc\x43\xc7\x70\x7b\xb5\xc4\x3b\xf4\x56\x6f\xae\xe0\x35\xd9\x01\xb9\xde\xea\x2d\xf6\x5a\x8e\xd2\xc3\xdb\x9e\x83\x7f\x28\xf8\x87\x82\x7f\x28\xf8\x87\x82\x7f\xc8\xff\x3d\xf8\x87\x96\xd1\xfd\x60\xea\x89\x15\x81\x06\xd9\xd1\x95\x1f\xfe\x95\xff\x9d\xa9\x25\xbe\x6a\xb1\x0c\x86\xe8\x42\x10\x38\x15\x5c\x58\x10\x1b\x69\xeb\xc3\xd7\x2b\x19\x9f\xb1\x8a\x26\x78\x98\x90\x4e\xd6\xad\x2b\x97\x0f\x0a\xc6\x6f\x08\xab\x82\xd0\x0b\x65\xe9\x96\xe8\x22\x06\x1a\xe2\xd6\xbc\x9d\x37\x7a\x0c\x0a\xc9\xc2\xa0\x0f\x0b\x62\xb4\xb8\xf0\xcd\x0e\x90\x5b\x19\x1a\x03\xbb\xf3\x8a\xf1\x6b\xb9\x9b\x8f\xf2\x8b\x41\xa2\x17\x9a\x24\x5a\x92\xb1\x52\x5b\x4b\xa4\xd1\x57\x87\x36\xa9\x5d\xf9\x57\x05\x38\xa9\xe2\x0e\x55\x2c\xa1\x89\xdd\x7c\x7b\x3e\x60\x8a\x00\xbb\xcd\x86\x59\x6c\xf5\xbe\x15\xa6\xf5\xb7\xc1\x09\x3e\x11\x75\x28\x36\xb0\xe9\xd9\x5f\x7a\xee\x05\x19\x11\x41\x58\x44\x5a\x08\xab\xb1\x0e\xde\xcb\x2f\x66\x92\x16\xec\x65\xea\x36\xad\x3f\x55\xc5\xad\x9e\x56\x10\x75\xad\xa0\xd7\xef\xdc\xff\x38\xb8\xeb\xde\xdf\x3c\xdc\x5d\x74\xcf\x51\x07\xd8\x20\x7c\x63\x0e\x08\xfd\x27\x34\xa7\xb0\x7c\xca\xcd\x1d\xc2\xb0\x01\x09\x9b\x1e\xf4\x49\x4d\x45\x74\x8a\x2e\xae\x1e\xee\xfb\xdd\xbb\x9a\x06\xed\xf1\xd1\x72\xa2\x22\xd3\x59\x82\xb5\xfc\xf8\x94\x0e\x89\x60\x04\xae\xe6\x24\x95\x8a\x88\x5c\xcb\x34\x8d\x76\xff\xde\xbd\x78\xe8\xf7\x6e\xae\x07\x3f\x3d\x74\x1f\xba\xe7\xc8\x9d\x43\xdd\xac\x1e\x17\x1c\x3d\xe3\xf9\x31\x3f\xe4\x35\x60\x7f\x4f\x49\x4a\x10\x96\x92\x8e\xd9\x94\x30\x55\x6e\xd1\x0d\xf8\xaa\xf3\x7d\xf7\xaa\xd8\xf2\x84\xa0\x1f\xff\x96\x0f\x2a\xc1\x43\x92\x58\xb5\x17\xf0\x29\xf4\xf1\xcf\x3b\xb2\xfa\x70\x6a\xa8\xfa\xd3\x43\xe7\xaa\xd7\xff\x75\x70\xf3\x71\x70\xdf\xbd\xfb\xb9\x77\xd1\x1d\x58\x04\x9b\x8b\x8e\xee\xb7\xd0\x93\x15\x35\xd1\xef\x29\x4e\xa8\x9a\xeb\x75\x94\x86\x2f\x9a\xfa\xb6\x29\x33\xc5\x71\x41\xd6\xc6\x7e\x85\x5b\x39\x23\x91\x99\xd1\xed\xd5\xc3\xa7\xde\xf5\xe0\xe6\xe7\xee\xdd\x5d\xef\xb2\x7b\x8e\xee\x49\x42\x22\x25\x33\xa2\xc3\x2a\xce\x92\x74\x4c\x19\xa2\xd3\x59\x42\x34\x35\x0c\x98\xd8\x90\x4c\xf0\x33\xe5\xc2\x32\xb4\x31\x7d\x26\xcc\xd0\x51\x6f\x2b\xd3\xbe\x83\xd3\x19\x78\xa4\xbb\xb9\xfe\xd8\xfb\x74\x8e\x3a\x71\x9c\xcd\xc1\x54\x46\x2f\xec\x1c\x67\x58\x39\x2d\x0e\x9b\x8e\xb4\xc2\xa2\x19\x0c\x2c\x1f\x7f\x26\x42\xd0\x98\x94\xf6\x51\xe7\xfe\xbe\xf7\xe9\xfa\x73\xf7\xba\x0f\x14\x53\x82\x27\x12\x4d\xf8\x0b\x28\x74\x30\x43\xd0\xf3\x9e\x31\x4d\xa0\x33\xb7\x58\x9c\xf9\xa7\xdf\xeb\x79\xc2\xd3\x24\xd6\xcb\xf4\xea\x3a\x4a\xe1\xe0\x2d\xaa\x29\xe5\x93\xb4\xf8\x46\xe9\x58\x2c\x7b\xa1\xb0\xcb\x17\x5f\x5c\xb5\x5b\x17\xbf\x28\x6d\xb7\xc5\x17\x6a\xf7\x4b\xfd\x4c\xf3\xb5\x6e\xac\x99\x15\x69\xb8\x26\x97\xdd\x81\x6d\x6f\xb9\xc1\xb6\xa5\x7a\x97\xfb\xfa\x5d\x4c\x12\xa2\x48\xad\xa0\x74\x09\x8f\x5f\x4b\x50\x32\xbd\xbf\x0d\x59\xc9\xcc\x25\x88\x4b\x5f\x8d\xb2\xe4\x16\xbc\x15\xca\x92\x39\x6b\xbe\xce\x04\x29\x83\x9e\x72\x6d\xf2\x04\xdf\xa6\x99\xe5\x28\xd2\x02\xdb\x63\x67\xd9\xfb\xa5\x78\x68\xe6\x10\x6c\x48\x8b\x23\x09\x36\xa4\xed\xd8\x62\xe1\xc7\x0a\x28\xdd\x83\xb3\xca\x4d\x04\xac\x02\xbf\xbc\x84\xd7\x8f\x93\x6b\x96\xc7\x7e\xcc\xbc\xd3\x6b\xad\x1d\x4c\xe4\xeb\x65\x9f\x0b\x47\xbc\xd9\xc4\x6d\xe8\xcf\xf1\xce\xbb\x2d\xd7\x46\xdd\xb1\x6e\xf3\xe5\x51\x2c\x86\x7c\xbc\x1e\x89\x63\x62\xff\xaf\xe2\x92\x78\x73\x62\xf2\x57\x67\x34\x08\x3e\x96\xe0\x63\x09\x3e\x96\xe0\x63\x09\x3e\x16\xb4\xa9\x8f\x65\x57\x92\xd6\x51\x3b\x24\x8e\x53\x54\x3a\xac\x47\x22\x48\x4b\xc7\x2e\x2d\xb5\x45\x29\x3c\x2e\x17\x4b\x51\x1d\x5c\xbb\xea\x56\x5b\xf4\xc2\xb7\x64\x1c\x3c\x2e\x1d\xb1\x75\xe6\xc0\xaf\x8e\xf1\x6d\x66\xfa\x3b\xda\xe9\x06\xad\x38\x68\xc5\x41\x2b\x0e\x5a\x71\xd0\x8a\x51\xd0\x8a\xd7\xd6\x8a\xdf\x92\xa0\x78\x74\x1a\x72\x90\x15\x5f\x7b\xc2\x5f\x99\xac\xd8\x16\x9b\x40\xdd\xc9\x6d\xa9\x65\xe0\xeb\x0c\x28\x3a\xe2\x9b\x20\xe4\xbc\x22\x6f\xe9\x42\xc0\xcd\xd7\xc2\x47\x5b\x1e\x70\xf3\xf6\xec\xaa\x47\xcc\x23\x43\x36\x70\x10\x2b\x77\x34\xdd\x60\x82\x0c\x26\xc8\x60\x82\x0c\x26\xc8\x60\x82\x44\xed\x4e\x7e\x5e\x69\x70\x0a\xf9\xcf\xfb\x32\xac\x1e\xb1\xa4\x18\x72\xa1\x83\xb0\xb8\xbb\xe9\xb6\x55\x77\x6e\x93\x0d\x52\xae\x5f\x51\x62\x25\x12\xb7\x9d\xf6\x6f\x4b\x18\xd8\x15\x95\x4e\xd1\x3d\x26\x7e\x25\xf7\xcd\x92\xb6\x81\xdf\x75\x2b\xfa\x66\xd1\x77\x17\xe8\x00\x04\x88\xb0\x34\x0a\x5e\x9a\x28\x3a\xd3\xa2\x3c\x1e\x13\x69\xf1\x88\xb5\xe0\x7d\xe2\x78\x97\x78\x26\xe2\x34\x03\x9c\x86\x2e\x1c\x0a\x37\xa8\x2d\x8a\xa3\x11\xa0\xcd\x03\x5d\xc9\x17\x05\x4d\x3d\x32\xc0\xe1\x06\x1a\x9d\xb5\x11\xff\x36\x80\x03\x2f\x21\x4e\x00\x07\x5e\x8b\x9b\x04\x70\xe0\x96\x80\x03\xaf\xab\x82\x99\x53\xe9\x6b\x61\x70\xc8\x9d\xd4\xea\xcc\x52\x47\xaa\x8c\xcd\xb8\xac\x97\x4c\xee\xc8\x98\x4a\x60\x49\x4b\xaa\x5d\x39\x99\x04\x0a\x2b\xc0\x56\xff\xa8\x5f\x40\x31\x99\x25\x7c\x0e\xf6\xaf\x25\xe2\x8a\xeb\xe2\x76\x41\x63\x68\xbb\xc4\xe2\x46\x7e\x28\x9d\xaa\x2d\x32\x77\x3e\xef\x56\x48\xd9\x79\xc8\xff\xeb\xcb\xdb\xc7\x14\x78\xb5\x77\x81\xfb\xb0\x7c\xf6\x98\xaa\xbd\x07\x75\x22\xa8\x13\x4d\x76\x4d\x50\x27\x56\x11\x28\xa8\x13\x41\x9d\xd8\xa7\x3a\x71\x60\x09\xe6\xc3\xbf\x4a\x45\xd4\x97\x05\x20\x3e\xd8\xa8\x43\x70\xce\x52\x09\x47\x7e\xa5\x20\xf3\xc8\xaa\x1f\x38\x27\xe5\x90\x38\x1e\x33\x4c\x95\x57\x76\x4d\xea\x4b\x6b\x46\x84\x9a\x7b\x6f\x92\xe9\x4c\xcd\xff\xfb\x91\x51\x95\x85\x78\xd1\x31\xe3\xc2\xec\x18\xfd\xf1\x04\xb3\x38\xd1\x97\xba\xcc\xda\x89\x30\x63\x5c\x01\x2b\x87\x09\xc4\xe8\x99\x62\xc3\xf8\x3b\xb7\xbd\xc6\x81\x8e\xc7\x24\x6a\x1d\x36\x92\x71\xff\xb5\xd3\x0e\x5f\x59\x74\xc5\x84\x3e\x25\x7c\x88\x93\x64\x8e\xd2\xa2\x47\x49\x37\xd0\x92\x39\xb4\x45\x7b\x6b\x87\xba\xe6\x60\x05\xca\x6a\x5b\xcb\xac\x11\xc7\xc4\x64\x0e\x6d\x8e\xf0\x96\xf0\x8d\xb1\x9b\xb6\x1c\xd5\xb6\x19\x5a\x82\x70\xd2\x54\x38\x39\x22\xb6\x71\x58\xd9\x24\xdc\xe4\xc7\x7f\x93\x2b\x2c\x9f\xfc\x4a\xe6\x70\xa1\xbb\x62\xf4\x85\x2a\xbe\xe5\x92\xbe\xff\x6e\xf2\x5e\x9e\x5e\xb0\xfa\xdd\xac\x1a\xfa\xea\x57\xa1\x32\x7a\xcd\x8b\xb6\x8c\xbe\x79\x0c\xd3\x2b\x8f\xc3\xfd\xe8\x77\xe8\x7e\xcb\x5b\x76\xbf\x3c\x13\x21\x29\xb7\xaf\x09\xa2\xc4\x7c\x80\x95\xd2\x0c\x69\x03\x1b\x75\x2d\xd7\xec\x63\xf9\xd4\xac\x2a\xfb\x27\xa2\x0a\x2f\xb7\x5d\xac\x71\x13\x85\x79\x16\x46\xbe\x7f\xfe\xd4\x60\x1b\xbf\x31\x71\xa7\xf1\x91\x5c\x31\xef\xe3\x2b\x4c\xdf\x94\xc1\xac\x31\xf1\xaf\xa5\x48\x7d\x33\x86\xbb\x2a\x1e\xf2\x18\x0b\xd6\x2f\xbb\x41\x5a\x33\xc2\xd2\x25\xf6\x16\x4f\x6e\xf1\x4a\x0e\x47\x74\x19\x8d\x9a\x9e\xc5\xa3\x39\x81\x25\x49\x6b\xc5\xdc\xee\xdd\x02\xd9\xd7\xdd\x4e\x68\xdf\xbc\x0a\xc2\xe2\xae\x47\xb5\x1f\x07\xb0\xb7\x1a\xeb\xa4\x10\xf6\x5c\xb1\x75\xe3\xce\xca\xce\x90\x4b\x2a\xcc\x8e\xa6\x9a\x40\x41\x2a\x2a\xfd\xfa\xec\x11\x17\x46\xda\x8c\xed\x99\x35\x0e\xad\x4e\xbf\x73\xdf\xed\x9f\xa3\x0e\x8a\xb1\xc2\xfa\x90\x0a\x32\x13\x44\x12\xa6\x8c\x29\x82\x29\xaa\xe6\x68\xca\x63\x92\x18\x3b\x80\x31\x0e\x5e\x62\x85\x2f\xb0\xc2\x09\x1f\x9f\xa1\x0e\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\xbb\x8d\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x7c\x3a\xa3\x89\xc9\x6b\xf3\xfd\xdb\x94\xc5\xf4\x99\xc6\x29\x4e\x10\x1f\x82\x0d\xe5\xec\x91\x75\x9f\x09\x53\x29\xe8\xb8\x38\x49\x90\xed\xd6\xbd\xe0\x19\x30\xdc\x28\x25\x9d\xd2\x04\x0b\x2d\x3d\x9a\xd1\xde\xd8\xb6\x50\x7f\x42\xb2\xb1\xc2\xb8\x34\x35\xa7\xf8\x89\x48\x44\x15\x9a\x71\x29\xe9\x30\xc9\x8f\xf1\x43\x0f\xc1\xb8\x2f\xae\x7a\xe0\x34\x8c\x14\xe2\x86\x0f\xba\xce\xad\x07\xdd\xf5\x38\xc5\x8c\x11\xe8\x98\xab\x09\x11\xb6\x7b\xfb\xf2\x6b\xfb\xff\x1e\xae\x6d\xba\x58\xf7\x72\xd1\x01\xd8\xef\xdc\xff\xb8\xf8\xab\xcb\x0f\x5b\x7c\x72\xd5\x79\xb8\xbe\xf8\x61\x70\x7b\xd5\xa9\xc8\x3b\xb3\xdb\xaa\xb1\x2f\xd1\x1f\xd9\xe6\x87\x69\xff\x8a\x46\x4b\x43\x13\x9b\x1b\x1d\x1a\x59\x1c\x1a\x9b\x1b\x9a\xda\x1a\x9a\x19\x1a\xea\xad\x0c\x7b\x08\x53\x6b\x6e\x0a\xb8\xa2\xb2\x68\x0b\x38\x8e\x98\xb5\xc2\x90\xf5\x1c\xf6\x6d\x08\xf8\xea\xac\x00\x5f\xa9\x09\x20\xe8\xff\x7b\xa1\xdb\x5b\x55\xfe\x5b\xae\xf9\x6f\x13\x94\x9a\xe1\x5f\x84\xa8\xd4\xc5\xa8\x54\x12\x82\x52\x43\x50\x6a\x53\x02\x85\xa0\xd4\x10\x94\x7a\xb4\x41\xa9\x65\x45\x2b\x78\x6c\xdb\xe0\xb1\x6d\xb9\x8e\xd6\x66\x87\xed\x5b\xd5\x5c\x82\xf3\x32\x38\x2f\x83\xf3\xf2\x48\x4f\x6e\x70\x5e\x36\xa7\x51\x70\x5e\x06\xe7\x65\x70\x5e\x06\xe7\x65\x70\x5e\x06\xe7\xe5\x6b\x9a\x46\xda\x10\x1b\x7a\xcc\x2e\xdb\xe0\x89\x5d\xe1\x89\x6d\xb9\x92\xdf\x4a\x47\xec\x5b\xd5\x11\x82\x6a\x1f\xfc\x92\x5b\x4d\xbb\x55\x4a\xfd\x5b\xbb\x37\x83\x2b\xb6\x39\x21\x82\x2b\xb6\x31\xa9\x82\x2b\x76\x09\x71\x82\x2b\x36\xb8\x62\xbf\x42\x57\x2c\x8d\xb7\x2e\xb9\xd5\x44\x6f\xd1\xb2\x62\xdc\x05\xf3\x50\x66\xdc\x12\xbf\x81\xf4\x88\xe5\x53\x66\x01\x6a\xa0\xcf\xf4\xe2\xa3\x50\x64\x2a\x27\x7c\x08\x85\x66\x1b\x8d\x05\x2b\xcd\xc1\x15\x40\x15\xe8\x27\xb9\x51\xb1\x85\x35\x02\xb6\xd1\x51\xbc\x89\x79\x6a\x8a\xd3\x3e\x3c\xa2\xb4\x6f\xda\x41\xf0\x0b\x82\x5f\x90\x6d\x1a\x4e\x38\xc8\x36\xed\x95\x6d\x5e\x4b\x61\x69\xdf\xf1\x3c\x3a\xfb\xc4\xde\xc5\x52\xd9\x18\xb4\xcd\x94\xc9\x06\xd7\x5d\x3a\x4b\x38\x8e\x57\x05\xc8\xfd\x86\x72\x59\x6d\x89\xb8\x69\xda\xd5\x1f\xb4\x5c\xda\x5c\x88\x8d\x33\x23\xff\x1a\x50\xe3\x6b\xa7\xfe\xaa\x78\x66\xb0\x7f\x33\xd4\xa2\xb5\x10\x08\xf7\xbf\x99\xdb\x9e\x8d\xf7\xca\xbb\xf9\x4d\xa6\xde\x85\x23\xba\xfa\x88\xc2\x1f\x85\x00\xef\x7d\x59\x42\xca\xc7\xb6\x91\xd1\x43\xfe\xb5\xe5\xe7\x36\x5b\xdf\x43\x98\x38\xde\xe4\x29\x7d\xc3\xce\xe6\xe0\x50\x5e\x1e\xf5\xb3\xa3\x00\xd4\x47\xd6\x9f\x68\x3a\x4c\x87\x94\x65\xf1\x76\x6e\x87\xfc\xc9\x91\xeb\x4f\x80\x75\x69\xf1\x2f\x93\x79\x6e\x0a\x93\xe5\xd6\x32\x45\x09\x9d\x6a\x2d\x35\x22\x42\x01\xbd\x39\x53\xe4\x8b\x92\xe8\x14\x25\xf4\x89\xa0\xf7\xfa\xc8\xa3\xce\x6d\xef\xfd\x09\x7a\x7f\x85\x53\x16\x4d\xd0\x2c\xc1\x4c\xbe\x6f\x8d\x82\x15\x6c\x66\xa1\x9a\x4a\xf0\x96\xee\x92\x38\xc1\xa2\x18\x2c\x8a\xad\xb3\x28\xb6\x45\x67\x30\x49\xa5\x78\x4a\xda\xa2\x3d\xb4\x5d\xeb\x0f\xda\x43\xd0\x1e\x82\xf6\x10\xb4\x87\x82\xf6\xd0\x0e\x0a\x07\xd5\x21\xa8\x0e\x41\x75\x08\xaa\x43\x50\x1d\x76\x4e\xc6\xa0\x3a\x2c\x53\x1d\xe0\x2f\x87\x1b\xb3\xae\x1e\xd1\x58\x7f\x68\x00\x12\x73\x34\xca\x43\x50\x1c\x82\xe2\x10\x14\x87\x83\x2b\x0e\xad\x99\xd0\xdb\xc3\xbb\x08\x88\x11\x01\x31\x22\x20\x46\xd4\x20\x46\x1c\x4a\x64\x33\xf2\xda\x91\xa5\xc8\x1c\x85\xd0\xf6\x6a\x39\x32\x6f\x4f\x8c\x0b\x59\x3f\x21\xeb\x27\x98\x21\x43\xd6\x4f\x30\xb4\x05\x43\x5b\xab\x0d\x6d\xaf\x65\x3d\x3f\xf0\xf1\x3c\x80\x70\xda\xf2\x88\xe5\xef\x8e\x41\x02\x3d\x60\xcc\x41\xb0\xb2\x05\x2b\x5b\x35\x65\x8e\xd3\x3d\xdf\x9a\x5b\x3f\x00\x3c\x05\x89\x3f\x04\x1e\x84\xc0\x83\x95\xc4\x09\xfa\x50\xd0\x87\x5a\xa7\x0f\xbd\xa2\xa2\xd0\xba\x30\xe5\xa0\x31\x04\x8d\x21\x68\x0c\x6f\x56\x63\x68\x0d\x85\x83\xba\x10\xd4\x85\xa0\x2e\x04\x75\x61\x39\x71\x82\xba\x10\xd4\x85\xa0\x2e\xb4\x3a\x34\xf9\x58\x14\x86\xa0\x2c\x04\x65\xa1\xdd\xca\x42\x6b\x26\x14\x82\x78\x43\x10\x6f\x08\xe2\xfd\x6a\x82\x78\xdf\xa8\xc2\xbe\x57\x31\xcd\xb1\xc8\x65\x82\xd7\xa2\xbc\xf4\xf3\x02\x63\x6d\xad\xc8\x94\x8f\x76\x53\xdc\xc7\x5d\x91\xfa\x85\x8b\xa7\x51\xc2\x5f\x06\x99\x56\x67\x83\xc2\xf3\x7f\xdb\x7c\x3e\xef\x87\x5c\x78\xf6\x7e\xcc\x84\x68\xef\x37\xd7\x7a\x11\x20\x34\x5d\x85\x0f\x2a\x11\x17\x28\x9d\xc5\xf0\x67\x94\x4a\xc5\xa7\xf5\x52\xf5\x67\xac\xa2\x09\x1e\x26\xa4\x93\xf5\x7b\xc1\xd9\x88\x8e\x53\xb3\x3f\x7e\x03\x56\x88\x9d\x64\x73\xe2\x24\x23\xcd\x14\xdd\xf8\x96\x49\xe2\x0f\x30\x8e\x5f\xec\x9b\x79\x27\x47\x11\x80\xbe\x38\x6c\x33\x9d\x43\xc1\x8d\x16\x77\xd1\xb6\x2c\xce\x6b\xad\x1d\xe2\xcf\xe2\x99\x58\x25\xaa\x82\x15\x3a\xd3\x4c\x68\x0c\x9b\xf3\x65\x42\xc1\xb2\x06\x96\x38\xb0\x3e\xe5\x0d\xa3\x17\x9a\x24\x20\x71\x18\x5a\xb4\x6f\xe6\x8d\xb4\x17\x3b\x71\x7b\xf6\xde\xc4\xbc\x1d\xf3\x58\x31\x73\x77\x04\x8d\x1b\xe2\x48\xa7\xfd\x9a\x08\xbb\x2b\x18\xd9\xab\xe2\xec\xd6\x5e\x9f\x35\x39\x55\x1f\xfe\x55\x79\x25\x36\xa9\x9d\xfa\xda\xf7\xe0\x27\xa2\xde\xcc\x25\xf8\x89\xa8\x43\xdd\x80\x6f\xf1\xda\xdb\xf4\xae\x5b\xca\xf8\x04\x19\x11\x41\x58\x44\x8e\x35\x27\x6b\xe1\x8a\x3b\xda\xe9\x6e\x74\xb3\x1d\xed\x6c\xd7\x31\x60\xfd\x62\x26\x69\xcd\x55\x53\xc7\x72\xfd\xa9\x2a\x6e\xdd\xcb\x05\x17\x98\x35\x56\xf5\x3b\xf7\x3f\x0e\xee\xba\xf7\x37\x0f\x77\x17\xdd\x73\xd4\x81\x83\x0e\xdf\x18\xf6\x4e\xff\x09\xcd\x41\x3e\x6c\x66\x0c\x13\xe6\x8e\x93\xc0\xaa\xc1\x0d\xae\xa9\x88\x4e\xd1\xc5\xd5\xc3\x7d\xbf\x7b\x57\xd3\xa0\x65\xfe\x94\x8d\x91\x22\xd3\x59\x82\x15\x89\xd1\x53\x3a\x24\x82\x11\x50\xac\x92\x54\x2a\x22\x72\xe7\xb8\x69\xb4\xfb\xf7\xee\xc5\x43\xbf\x77\x73\x3d\xf8\xe9\xa1\xfb\xd0\x3d\x47\xee\x16\xd1\xcd\xea\x71\xe9\x51\xc4\x73\x86\xa7\x34\x32\x3f\x64\xa5\x68\xd1\xef\x29\x49\x09\xc2\x52\xd2\x31\x9b\x12\xa6\xca\x2d\xba\x01\x5f\x75\xbe\xef\x5e\x15\x5b\x9e\x10\xf4\xe3\xdf\xf2\x41\x25\x78\x48\x12\xeb\xad\x07\x07\xb4\xbe\xbc\xf2\x8e\xac\x1b\x3f\x35\x54\xfd\xe9\xa1\x73\xd5\xeb\xff\x3a\xb8\xf9\x38\xb8\xef\xde\xfd\xdc\xbb\xe8\x0e\xac\x31\xe6\xa2\xa3\xfb\x2d\xf4\x64\x6d\x36\xe8\xf7\x14\x27\x54\xcd\xf5\x3a\x4a\x73\xe9\xa3\x97\x09\x61\x28\x65\x70\x81\x18\x4b\x21\x66\x5e\xa7\x72\x46\x22\x33\xa3\xdb\xab\x87\x4f\xbd\xeb\xc1\xcd\xcf\xdd\xbb\xbb\xde\x65\xf7\x1c\xdd\x93\x04\x6c\x69\x8e\xe8\xb0\x8a\xb3\x24\x1d\x6b\x4e\x30\x9d\x25\x44\x53\xc3\xd8\x0a\x87\x64\x82\x9f\x29\x17\xf6\x3a\x1e\xd3\x67\xc2\x0c\x1d\xf5\xb6\x32\xed\x3b\x9b\xd5\xc0\x23\xdd\xcd\xf5\xc7\xde\xa7\x73\xd4\x89\xe3\x6c\x0e\x12\xda\x28\xec\x1c\x77\x74\x4f\x8b\xc3\xa6\x23\x1a\x41\xf7\x66\x13\xf1\x67\x22\x04\x8d\x49\x69\x1f\x75\xee\xef\x7b\x9f\xae\x3f\x77\xaf\xfb\x40\x31\x25\x78\x22\xd1\x84\xbf\x80\xa3\x17\x66\x08\xfe\xdf\x67\x4c\x13\xe8\xcc\x2d\x16\x67\xfe\xe9\xf7\x7a\x36\x66\x4d\x91\xb2\x57\xf7\x5d\x16\x0e\xde\xa2\xb5\xaf\x7c\x92\x16\xdf\x28\x1d\x8b\x65\x2f\x14\x76\xf9\xe2\x8b\xab\x76\xeb\xe2\x17\xa5\xed\x56\x6f\xe3\x5c\xd8\x2f\xf5\x33\xcd\xd7\xba\xb1\x89\xb3\x48\xc3\x7d\xc8\xd8\xee\xeb\x77\x31\x49\x88\x22\xb5\x32\xf1\x25\x3c\x7e\x7d\x99\xd8\x8c\xe3\xcd\x88\xc5\x66\x3a\x41\x32\x0e\x92\x71\xe3\x09\x07\xc9\xb8\x6a\xc2\x6f\x44\x32\x6e\xa1\xd5\xc7\xb1\xa8\xd6\x59\x7d\x82\x7f\xa4\xb4\x52\xc7\x79\x05\xbe\x9a\x7b\x24\xf8\x0f\xd6\xbb\x42\x8e\x7f\xde\xc1\x7f\x10\xfc\x07\x95\x37\xc9\x9b\xf7\x1a\x1c\xe7\xd5\x70\x40\xa7\x41\x50\x23\x96\xcc\x37\xa8\x11\x47\x36\xdb\x60\x60\x0f\x06\xf6\x60\x60\x0f\x06\xf6\x60\x60\x47\x9b\x1a\xd8\x1b\x70\xd9\x43\x98\x53\x5b\x1a\x44\xfc\x56\xdc\x06\xc7\x29\x17\x1f\xd6\x6b\x10\x44\xe3\x25\xf3\x0d\xa2\xf1\x91\xcd\xb6\x85\x76\x91\x76\x59\xd8\x69\x5c\x65\x10\x39\x20\x34\xbd\x1b\x49\x53\x78\x7a\x47\xd0\x5e\x7c\x14\xec\xfc\xd5\x10\xea\x03\x9e\x7b\xc0\x73\x0f\x70\x2d\x01\xcf\x1d\x05\x40\x92\x00\x48\xd2\x66\x40\x92\x06\xcb\xf8\x16\xf0\xdc\x0f\x63\x61\x78\x43\x49\xca\x4e\x30\x94\x85\xd8\x0d\x2e\x57\x05\x6f\x80\x95\x20\x9d\x25\x1c\xc7\xcb\xc0\x62\x9c\x1c\xe9\x03\xc6\x2c\x11\x3d\x4d\xdb\xbf\x2c\x2a\x4f\xad\x95\x3c\xdd\x58\xcd\xc8\x0f\x65\x3e\x68\x8d\xc2\xe5\xa6\xdd\x0a\x35\xab\x58\xbb\xb5\x85\x1b\xfa\xa8\x02\x6a\x0f\xbb\xa3\xdf\x64\xd1\xd6\x70\x4c\x57\x1f\xd3\xc3\xd5\x47\xa9\x3a\xba\x8d\x0d\x21\xf2\xaf\xc7\x74\x76\x0f\x84\x7c\xfc\xf6\x4e\x6c\x40\x68\x0b\x08\x6d\xb5\x94\x39\x4e\x38\xe7\xd6\x28\x5e\xc1\x96\x16\xa0\x8f\x03\xf4\xf1\x2e\x89\x13\x2c\x8d\xc1\xd2\xd8\x3a\x4b\x63\x9b\x74\x88\x3d\x96\x4e\xd9\x4e\x9b\x38\x2a\x4b\x40\xd0\x26\x82\x36\x51\x31\xb5\xa0\x4d\x7c\x85\xda\x44\x3b\x28\x1c\x54\x89\xa0\x4a\x04\x55\x22\xa8\x12\x41\x95\xd8\x39\x19\x83\x2a\xf1\x3a\x65\x55\xaa\xf4\x89\x86\x29\xa9\x47\xa5\x4c\x04\x45\x22\x28\x12\x41\x91\x08\x85\x63\x96\xcf\x29\x14\x8e\x09\x85\x63\x42\xe1\x98\x37\x50\x38\xe6\x90\x22\x5c\x0d\x5a\xf9\x71\xa4\xd9\x1c\x85\x10\xf7\x6a\x79\x36\x6f\x4f\xa4\x0b\x99\x43\x21\x73\x28\x98\x28\x43\xe6\x50\x30\xc2\x05\x23\x5c\xab\x8d\x70\xaf\x65\x59\x3f\xf0\xf1\x3c\x90\xa0\x7a\x24\xd1\xce\xdf\x1d\x83\x34\x7a\xe0\xf8\x84\x60\x81\x0b\x16\xb8\x6a\xca\x1c\xa7\x2b\xbf\x35\x52\xc0\x31\x56\x8e\x0d\x1a\x40\x73\x42\x84\x20\x85\xe6\xb4\x0a\x41\x0a\x4b\x88\x13\xf4\xa3\xa0\x1f\xb5\x4e\x3f\x7a\x65\xc5\xa1\xb5\x21\xce\x41\x83\x30\xef\x05\x0d\x22\x68\x10\x6f\x54\x83\x68\x0d\x85\x83\xfa\x10\xd4\x87\xa0\x3e\x04\xf5\x61\x39\x71\x82\xfa\x10\xd4\x87\xa0\x3e\x1c\x4d\x58\xf3\x31\x29\x10\x41\x79\x08\xca\x43\xbb\x95\x87\xd6\x4c\x28\x04\x00\x87\x00\xe0\x10\x00\xfc\xd5\x04\x00\xbf\x51\x05\x7e\xb7\x62\xdb\x7f\x58\x42\xbd\xf3\x04\x8c\x4c\x12\x79\xf7\x7d\xc2\x87\xfd\xf9\x8c\xe8\xff\xbd\xa4\x53\xc2\x24\x50\x82\xaa\xb9\x2f\xa6\xd5\x6c\xa8\xc5\xad\xf4\xee\xbe\x77\xfd\xe9\xca\x2f\x0f\xf4\xee\xf3\xc3\x55\xbf\x77\xdb\xb9\xcb\x96\x3b\x9b\x95\xbf\xc4\xf6\xbb\x82\xa4\x69\x4f\xf2\x1d\xd1\x2a\x35\x30\x83\x7b\x85\x55\x2a\x37\x1b\xd9\x5d\xf7\xbe\x7b\xf7\x33\x94\x37\x1a\x5c\xf6\xee\x3b\xdf\x5f\x15\xf6\x79\xe1\x79\xe7\xe2\xa7\x87\xde\x5d\xfd\xf3\xee\xdf\x7b\xf7\xfd\xfb\xba\xa7\x77\xdd\xab\x6e\xe7\xbe\xfe\xeb\x8f\x9d\xde\xd5\xc3\x5d\x77\x29\x3d\x96\x8e\x76\xb9\x6e\x25\x81\x48\x50\xe2\x03\x45\x96\x19\x8a\x9c\x86\x28\x93\x8a\x1d\x97\xaf\xea\xeb\x1c\x3d\x58\x53\x05\xb5\x8d\x9b\x7b\xc3\x6b\xc8\xe8\x58\x31\x95\x78\x98\x90\x78\xa1\x25\x47\xc3\xba\x96\x70\x61\x50\x2f\x58\x7a\x92\xb4\x66\xe5\x91\x39\x3e\x08\x8a\xae\x29\xc2\xe2\x8a\x3e\xcc\x3a\xd4\xf6\xc0\x34\x4b\xa6\xcf\xa4\xd0\x53\x94\x0a\x41\x98\x4a\xe6\x88\x7c\xa1\x52\xc9\x85\x46\xdd\xf2\xd5\x35\x6b\x19\x42\xd6\xe0\x04\x4b\x34\x24\x84\x15\xc7\x2f\x48\x42\xb0\xac\x18\xb3\x5d\xfd\x66\x64\xc9\xd6\xca\x1a\x99\xcc\x1d\x3b\xc2\x34\x49\x05\x29\x9d\x16\x3e\x9d\x61\x41\x25\x67\xdd\x2f\xfa\x8a\xd6\x07\xf9\x06\x3e\xe7\x62\xb3\x13\xd3\xfd\xc9\xdf\xc1\xd7\xc5\x7f\x7e\xea\x17\xff\x55\x38\xf3\x57\xfd\xe2\xbf\x96\xef\x75\xaf\xe1\xf2\xce\x3e\x45\x9f\xfa\xe7\xe8\x13\x40\x8c\x0a\xd4\x9f\x60\xb3\x63\xaf\xfa\xe7\xe8\x8a\x48\x09\xbf\xe4\x1f\x2b\xaa\x12\x98\xdb\xf7\x94\x61\x31\x47\x6e\xfa\xa6\x72\x1f\x8e\x26\x88\x64\xa4\x29\x13\x8f\xfd\x23\x65\x60\x91\xc8\xa9\x77\xc5\xc7\x34\xc2\xc9\x76\x44\xec\x5c\x17\xf8\xc0\xcd\xdd\x52\x52\xf8\x6f\x2f\xd2\xa2\x73\x7d\x09\x55\xf1\xdc\x50\x2b\x66\x7e\x4d\xa4\xde\x24\x11\x67\xb1\xf5\xa9\x69\xa1\x66\xee\xe9\x2a\xff\xe0\x50\x59\x30\x95\x94\x8d\x75\x8b\xe8\x03\xba\xb9\x7b\x64\x37\x22\x36\xf6\x5d\xa2\x85\x7c\xb3\xe7\xa8\x44\x8c\x2b\x44\xa7\x33\x2e\x14\x66\x4a\xeb\x37\x20\xdd\x58\x8a\x18\x0e\x70\xc1\xa7\xd3\x54\x61\x7d\xd0\x16\x88\xca\x8c\x95\xe7\x9e\xa8\x5e\x0c\x8e\xb0\x0a\x1a\x1a\xf1\x27\x9f\xcb\x4c\xe8\xf6\xb5\xe8\x55\x34\x0d\xd0\x78\x41\x43\x77\x4d\x60\x21\x70\xf1\x02\x7e\x47\x15\x99\x96\xdf\x6f\x78\xed\xfe\xbb\xd2\xee\x71\x61\xb2\x22\x88\xe8\x88\x68\x42\x15\x89\x94\x3e\x82\x1b\xed\x89\x87\xeb\x1f\xaf\x6f\x7e\xf1\x05\xa3\x77\x9d\xcf\x97\xff\x55\x80\x81\xed\xdc\x7d\x5e\xf8\x61\xf0\xf3\x7f\x2d\xfc\xf2\xff\x5f\xba\x9f\xca\x3d\x2d\x98\x2f\xbc\xb9\x9c\x82\xa6\x00\xa6\x6e\x37\x55\x44\xa7\x78\x4c\x90\x4c\x67\x7a\x07\xc8\xb3\xe2\xfa\x6a\x49\xf9\x8a\xe3\x98\xb2\xb1\x29\xfe\x76\x45\x15\x11\x38\xf9\x8c\x67\x1f\x9d\x59\x7e\x03\xea\xfc\x9f\xfb\x42\x01\xc2\x77\xbf\x76\x3e\xfb\x25\x0c\xdf\xdd\xde\xdd\xf4\x6f\x96\xce\xba\xd0\xc2\xe2\x31\xd2\x8f\xcf\xe1\xff\xa3\x0f\x48\xb7\x9e\x09\xf4\x53\xa2\xb0\x56\x74\xd0\x1f\x4c\xbd\xac\x2c\x13\x86\xb2\x04\x4e\xcd\x4c\xd0\x29\x85\x2b\xc5\x18\x26\xbf\x31\x3a\x43\xa6\x14\x65\xe7\xc6\x7c\x00\x46\x00\x77\x29\xb3\x18\x8b\x18\xfd\x43\x96\xeb\x61\x82\x3d\xdc\xfc\x40\x62\x74\x8a\x26\x4a\xcd\xe4\xf9\x87\x0f\x2f\x2f\x2f\x67\xfa\x6d\x2d\xc0\x7e\xd0\x7f\x9c\x12\x76\x36\x51\xd3\xc4\xd4\xff\xd4\x54\x38\x47\xb7\x82\xeb\x2b\x04\xec\x0e\x44\x50\x9c\xd0\x7f\x92\x18\x0d\x0d\xff\xe3\x23\xf4\x5b\xc4\x05\x39\xcb\x17\xc6\xda\xca\xec\x3d\x62\xed\x69\x1f\xf4\x4b\x15\xcc\xa4\xbc\x9e\x28\x26\x11\x8d\xad\x98\x41\x58\xc4\xc1\xa0\x6a\x5c\x30\xba\x3d\x57\x64\x4c\x2b\x6a\xb3\x54\xe5\xe4\xf4\x74\x30\x1c\x13\xaf\x7c\xa7\x95\xaf\xb3\x0d\xa7\xf5\xb9\x9e\xd1\xc6\x53\x49\x04\xdc\xad\x18\x6e\x55\xf7\xea\x4c\x4f\x38\xe2\x09\x1a\xa6\xa3\x11\x11\x7e\xf8\xc0\x89\x56\xd2\xa8\x44\x82\x44\x7c\x3a\x05\x89\x41\x7f\x95\x4a\xb3\xab\x81\x62\x76\xb4\x67\x8f\x0c\xd6\x5f\x6b\x6f\xb0\x03\x62\x0e\xac\x8e\x11\x12\x23\xcc\xe6\xa6\x9b\x61\x3a\xf2\xdb\x37\x75\x75\x71\x8c\xa8\x7a\x64\x9d\x24\x41\x82\x4c\xb9\x22\x5e\xf9\x34\x70\x75\x16\x09\x0e\x2c\x52\x90\x59\x82\x23\x12\x9b\xfd\x90\xf0\x08\x27\x68\x44\x13\x22\xe7\x52\x91\xa9\xdf\xc0\x1f\xc0\x04\xa5\x69\x46\x25\x8a\xf9\x0b\x4b\x38\xb6\xf3\x28\x7f\xf6\x4d\xf1\x34\x76\x5d\xcd\xd3\xae\x10\x5c\xc0\xff\xfb\x91\xb2\x78\x67\x1c\xea\xe1\xbe\x7b\xe7\xff\xfb\xfe\xd7\xfb\x7e\xf7\xf3\x7a\xdc\x27\xdb\x59\x30\x3c\x30\x4d\x9c\xa3\x7b\x43\x04\x2e\xb4\x44\x24\x6a\x26\xf5\xd9\x6e\xa5\xfc\x07\x1e\x6f\xc8\x7d\x3f\x77\xae\x1f\x3a\x05\x8e\x72\x7f\xf1\x43\xf7\xf2\xa1\xa4\x0f\xd8\xf9\x15\x64\x78\xa3\xd5\xfa\xbf\x5d\xfc\xd0\xbb\xba\x1c\x54\xe8\xc1\xef\xee\xba\x17\x37\x3f\x77\xef\x72\x95\xb5\x92\x44\xa5\xc1\x94\x99\x55\xdf\x30\xa5\x09\x8f\xd1\x70\x5e\x5d\xe1\x56\x4b\xce\x09\x78\xce\xf3\x1a\xcf\xa6\xd5\x73\xe0\x4d\xae\xd8\x70\xfe\xc5\x94\xc7\xe4\xc4\xbe\x03\xa5\x81\x8d\xcd\xc8\x48\xcc\xd5\x0d\xeb\xde\x31\xf3\xec\x2f\xa6\x6a\x6f\x46\xb8\x73\xd4\x41\x52\xbf\x98\xea\x43\x2d\xe8\x78\x0c\xf6\xd0\xd2\x50\x4d\x6b\xf6\x53\x20\x2f\x7c\x67\xd6\x7f\x26\x38\x9c\x73\xdd\xad\x35\xa4\x67\xc6\x16\xf3\x21\x94\x91\x2e\xb6\x28\x30\xd8\x51\x2a\x86\xe6\x16\x4b\x13\xa1\x96\x5e\xe6\x3c\x1a\x33\x98\x3e\x5c\xc0\xb6\xa4\x31\xe3\xce\x04\x79\xa6\x3c\xf5\x3e\xb5\x95\x8a\x0b\x2b\x5e\xd9\x7c\x4e\x00\x20\x9b\xb1\xf5\x94\x9a\xc9\xb6\x47\x65\x0b\x9a\x85\x3d\x43\x0b\x23\xc1\xa7\x15\x6d\x14\x8f\x49\xef\xe6\x5e\x09\xac\xc8\x78\x7e\x69\x59\xc6\xe6\xc7\xe3\xf2\xe6\x97\xeb\xab\x9b\xce\xe5\xa0\xdb\xf9\x54\x3c\xf1\xd9\x93\xfb\xfe\x5d\xb7\xf3\xb9\xf8\x68\x70\x7d\xd3\x1f\xb8\x37\x96\x6e\xf9\x9a\x0e\x16\xef\xe9\xe2\x8b\xe7\x48\xb3\x5c\x60\x8d\x2f\x34\x49\xf4\x65\xe2\xf1\xc7\x21\x19\x71\x61\xf8\xfc\xd4\x05\x9a\x58\x11\xc6\xd1\xd6\xea\x62\xa5\x59\x9c\x83\xc1\xaf\xaa\x49\x63\xcc\x57\x82\xe0\x29\xdc\x13\x98\xa1\x2e\x8b\x4f\x6f\x46\xa7\xf7\xe6\xc7\x29\x16\x4f\x44\x64\x9f\xbe\x08\xaa\x14\x61\x05\x95\x0e\xbb\x21\x67\x4a\x62\xde\xc1\x19\xba\xd3\x7c\x5f\xbf\x9f\x5d\x6a\x7a\xb3\xc7\x44\x61\x9a\x48\x3b\xd8\x02\x5d\xcf\xd1\x15\x16\xe3\xdc\xbc\xf8\x07\x3e\x1a\x99\xc6\xbe\x31\xc3\xd0\x77\x58\x61\x16\x15\xbc\x57\x6f\x0d\x77\x2f\x42\x7f\xf6\xe5\x4c\x1e\x5e\xdc\x55\x0f\xb3\xed\xf6\xd4\xc3\x2d\x50\xdc\x68\xec\x05\xdd\xd0\x3e\xa9\xd8\x6b\x30\x71\xf3\x78\xf9\x25\x53\xdd\xf6\xe2\x76\x2a\xbe\x58\xb1\x9d\x4c\x85\x16\xbd\xf2\x23\xad\x6d\x56\xec\x25\xf2\x85\x5a\x83\x81\x3f\xee\xd2\x16\xca\x9b\x01\xab\x31\x9e\xcd\x08\x16\xb2\x6a\xb5\x8b\x62\x60\xcd\xda\x9b\x9e\xfc\x3e\xec\x22\xbb\x7e\x4e\x10\x67\x60\x70\xc8\x84\x88\xd2\x8e\x6c\xb0\x07\x4c\x5b\x0b\x3b\xe0\x16\xca\xc7\xdf\xd8\x52\xed\x9f\xa9\xd4\x4a\xa3\xf9\xf1\x7b\x5b\x43\x7e\xb3\x0d\xf1\xb1\xd3\xbb\x2a\x09\x17\x83\xcb\xee\xc7\xce\xc3\xd5\x72\x33\x61\xe1\xbb\xf2\x12\xa3\x53\xa4\x9f\x17\xc3\x01\xe8\xc8\xdc\x19\xae\x12\xbe\x51\x69\x09\x03\xa3\x95\xad\x52\x6d\xcc\xf0\x31\x99\x25\x7c\x3e\x25\x0c\x4c\x3c\x85\x9b\x50\xd3\x73\x84\xa9\xbd\x5a\xbc\xc1\x82\x15\xc7\x9a\xdd\xe0\x1a\x3b\x75\xe5\xf7\x49\x9c\xdd\xbc\xc5\xea\xfb\x25\xd6\x7d\x6b\x9c\x82\xf6\x7f\xee\x15\x56\x1b\x9e\xb1\xce\x45\xbf\xf7\x73\xb7\xa8\x1f\x5e\xfc\xd0\xfb\xb9\x4a\xaa\x19\x7c\xea\x5e\x77\xef\x3a\xfd\x15\xc2\x49\xa9\xc9\x2a\xe1\x44\xea\x01\x97\x9d\xc2\x54\x66\x81\x4e\x91\xa9\xe1\x8f\xa8\x92\xe8\x99\x4a\x3a\xa4\x09\x55\x73\x64\x1d\xac\x0f\x3d\xe0\xac\xcf\x38\xa1\x31\x55\x73\x27\xbe\x98\x7e\x8b\xeb\xa8\x39\xa9\x6d\xdf\x98\x1d\x7c\xb7\x2b\x58\xf9\xcc\xe2\xb8\x49\x9f\x23\xd0\x6d\x9f\x41\x69\xf3\x3e\x63\x5a\x90\x66\x63\x22\xcc\x70\xc0\xa9\xe4\x8f\xc5\x7b\xae\x47\xe5\x0b\x2b\x39\xd5\x32\xa1\x75\x4c\x18\xd1\x2c\xd2\xeb\xc4\x08\x52\x82\xb0\xf7\x5a\xe6\x9a\x25\x34\xa2\x2a\x99\xa3\x08\x6c\x58\x60\xce\x9c\x62\x86\xc7\x56\x38\x00\x35\xa7\xb4\x25\x7e\x4a\xc1\x00\x7f\x33\xb2\xa6\xfd\x3e\x25\x1b\x1e\xb3\x87\xeb\xcb\xee\xc7\xde\x75\x71\x0b\xfc\xd0\xfb\x54\x10\x61\x3f\x77\x2f\x7b\x0f\x85\xdb\x5c\x4b\xb2\xcb\xe5\xfa\x72\xb3\x15\x47\x31\x7b\xe9\x1c\x5d\x9a\x4f\xcf\x35\x71\x7f\x37\x93\xd3\x5b\x46\x9a\xe9\xe5\xca\x6f\x89\x0e\x77\x2e\xd2\xd0\xfd\xd1\x65\x4a\x54\xfa\x25\x9a\x9a\x90\xac\x57\xa8\x60\x43\xaa\x8e\xc0\x58\xe8\xfb\xba\xec\x2b\x2f\x4f\xd9\xbd\x08\x21\xb2\x67\xb9\x65\xc9\x0f\xcd\x00\xa3\x41\x9d\x11\xab\xc2\x5b\x97\x33\xec\x9f\xc1\xf3\x3e\x4d\xa5\x32\x1e\x52\xd8\x9c\xe8\xe9\x6f\x52\x13\x14\x3c\xa8\x67\xe8\x9e\x90\x47\xe6\xac\x07\x63\xaa\x26\xe9\xf0\x2c\xe2\xd3\x0f\x4f\xe9\x90\x08\x46\x14\x91\x1f\xf0\x8c\x4e\xb1\x96\xa4\x89\x98\x7f\x18\x26\x7c\xf8\x61\x8a\xa5\x22\xe2\xc3\xec\x69\x0c\x81\x3d\xce\xd3\xf5\x21\x6b\x76\xcc\xff\xf3\xea\xbb\x6f\x4f\xaf\xfe\xf6\xed\xbb\x45\x0b\x59\xdd\xfa\x77\x59\x84\x67\x32\x4d\x6c\x20\xa0\xf0\x69\xe3\x8e\x7c\x4a\x56\xad\xf7\x75\x71\xb9\xb6\xd3\x5f\x2f\x6e\x1f\x0a\x16\xeb\xe2\x3f\x3f\x77\x3f\xdf\xdc\xfd\x5a\xe0\x94\xfd\x9b\xbb\xce\xa7\x02\x43\xed\xde\xfe\xd0\xfd\xdc\xbd\xeb\x5c\x0d\xdc\xc3\x6d\x6c\x6f\x3f\x32\xfe\xc2\x8a\xa4\x91\x8e\x03\x2e\xf4\x74\x8e\x3e\x72\x81\x7e\xcc\x56\xf2\x74\x88\x25\x5c\x31\xee\xce\x92\x27\x68\xc6\x63\x60\xbc\x88\xcc\x26\x64\x4a\x04\x4e\xac\xcd\x40\x2a\x2e\xf0\xd8\xdc\xf4\x32\x12\x58\x45\x13\x24\x67\x38\x22\x27\x28\x82\xdd\x30\x3e\x81\x45\x01\x55\x8b\x8f\xcb\x76\xbe\xbb\x94\x29\x3a\x25\x4e\x05\xb7\xff\xec\x9b\xc5\xd8\x60\x71\x6e\xfa\x3f\x14\x85\xbd\x8f\x57\xbf\xf6\xbb\x83\xfb\xcb\x1f\x97\xd2\xd3\x7c\x56\x18\xd9\x3d\xc4\x55\x5d\xf0\x24\x9d\x32\xff\xef\xcd\xc7\xd6\xbb\xee\x77\x3f\x95\x47\x77\xd3\xe9\x17\x77\xc6\x5d\x31\x6e\xef\xdd\xf7\x37\x37\x57\xdd\x82\xa7\xfb\xdd\x65\xa7\xdf\xed\xf7\x3e\x17\xf6\xcf\xe5\xc3\x1d\xf8\x80\x96\x4e\xd3\x8d\xa0\x62\xa2\x7a\x5a\xfe\x34\x77\xcd\x0a\x1b\x71\xa2\x8e\x0d\xff\x37\x67\xf9\xd4\xc3\xcb\x31\x51\x6e\x60\xd5\x39\xcd\x4c\xaa\x91\x19\x69\x25\x3b\x54\xc5\x65\x42\xf5\xec\x78\xe9\x42\x2f\xe3\xca\xfd\x6c\x08\x30\xae\x33\xa3\x6c\xe3\x24\xe1\x2f\x26\x42\x79\x4a\xf5\xad\x2c\x09\x04\x2a\xeb\x57\x64\xee\x21\x3c\xab\xe0\x78\xc5\x65\x21\x91\x20\xea\x33\x4f\x99\xda\x7c\xcb\x75\xae\x0b\x7c\xa7\x7b\xfd\xf3\xe0\xe7\x4e\x71\x07\xf6\xae\x96\xb3\x1a\xbf\x89\x8a\xab\xb8\x73\xfd\x6b\x76\x09\x43\x1c\xfb\x49\xa6\xa1\x1a\xd9\x35\x4a\xa8\x16\x7b\x23\xac\xb5\xd7\x04\x24\x1a\x44\x28\x98\x1c\xa6\x7a\x72\x10\x37\x3b\x33\xfe\x24\xc3\x9f\xcc\x20\xcf\xdd\x1f\xa5\xf6\x24\xd0\x05\xac\xa9\x2e\x4d\x00\xda\xb1\x5a\x35\x43\x84\x3d\x53\xc1\x19\x08\xdb\xcf\x58\x50\x2d\x8d\x9b\x96\xf5\x5c\xcf\xe1\xff\xaf\xd7\x26\x18\x46\x4b\x8c\xeb\x9e\x0b\x75\x99\xc5\x27\x6f\x66\x0d\xa9\x8a\xd3\x5d\x8c\xd0\xad\x36\x74\x2c\x7e\x5b\xb1\x38\x5b\xc6\x31\x17\x27\xfc\x7b\x72\x49\x71\xa2\x19\xc0\xee\xe4\xc5\xce\xf5\x7d\xaf\x28\x3f\x16\xd5\x0c\x8f\x2f\x6f\x2c\x2f\x82\xa1\xd2\x8c\xdc\x29\x13\xf7\x3f\x5d\x19\xed\x42\x6f\x12\x7b\x6e\x3d\xc5\x02\x04\x20\x57\x5b\x75\x86\x85\x2c\x7d\x21\x11\x20\x99\xe5\x71\x64\xfa\xce\x82\x28\xad\x67\x4e\xe3\x47\x46\xbe\xcc\x08\x93\x10\x1c\x60\xee\xb3\xdc\xd7\x2e\xcf\x50\x6f\x04\x2c\x41\xbf\xce\x50\xca\xac\x03\x4c\x5f\xb8\x66\x90\x27\x5a\x94\xb5\x43\xc8\x34\x44\x30\xbc\x30\xe2\x62\xc0\xf2\xc1\x3f\xb2\x5f\x32\x27\x1a\x3c\x1a\x71\xcd\x80\xf4\x2a\xda\xf6\xce\x11\x66\x92\x9e\x20\xad\xb0\x94\xd7\x14\x32\x22\xb4\x42\x69\x23\xd3\x34\xa7\xb1\x7f\x1e\xfe\x1a\x58\x08\x7f\xf6\x2f\x83\xea\xbb\xa0\x74\x15\xd4\x88\xc6\x89\xf1\x98\x0c\x9a\xdf\x09\x11\x17\xc4\xfa\x59\xd6\xbe\x06\x56\x31\xf6\x3e\x96\x4f\x0b\xbe\x87\x1e\x93\x0a\xb3\x88\x5c\x24\x58\x6e\x18\x84\xe4\x6c\x1c\x27\x45\x89\xe3\xee\xee\xe1\xb6\xdf\xfb\x7e\x05\x97\x2f\x7f\xbc\x18\x06\x14\x25\xa9\x73\xcf\x0d\x05\xc7\x31\xd2\xec\x73\xcc\x8d\x2b\xd0\x0a\xfe\xe6\x04\x99\x35\xa1\xd2\x8b\x13\xc5\xf2\xa9\x60\xa4\xb6\x59\x16\xd6\xce\xe1\xbb\x12\xa8\x25\x04\x8a\x34\x25\x90\x67\xf2\x70\x4b\x0d\x9e\x45\x13\x45\x67\xad\x5b\xb3\x04\xab\x11\x17\x53\xc3\xe5\x0b\x93\x36\x8d\x2f\x6f\x94\x32\x45\x84\x48\x67\x0a\x54\x76\x3d\xd6\xb2\x94\xaa\x97\xec\x8a\x8f\x3f\x13\x29\xf1\x98\x6c\xe3\x80\xae\x52\x1e\xee\x7f\xf6\xff\x09\x0e\xe6\x26\xb2\x7f\x61\x84\x2e\xa0\xdf\xed\xa7\x1b\xf6\xd1\x04\xf2\xdc\xf2\x84\x46\x1b\x06\xdc\x7d\xec\xf4\xae\x06\xbd\xcf\x5a\x89\xef\xf4\xbb\x57\x05\x51\x02\x9e\x75\x3e\xf6\xbb\x77\x83\xee\xdf\xbb\x17\x0f\xfd\xce\xf7\x57\xdd\xc1\xf5\xcd\x65\xf7\x7e\x70\x71\xf3\xf9\xf6\xaa\xbb\x22\x32\xa7\xb6\xf1\x45\xeb\x6a\xf9\xd5\xf3\x85\x5f\x60\x85\x35\x2f\xf3\xed\x65\x90\x0c\x87\x69\x02\x4e\x70\x6e\x9c\xe1\x18\x31\x1e\x13\xf8\x59\x3a\xeb\x8c\xcb\x36\x39\x43\x3d\xf5\x3e\x49\x10\x4e\x15\x9f\x62\xf0\xda\x24\xf3\x47\x86\x87\x9a\xb5\xe2\x24\xf1\xc2\xbb\x44\xca\x98\x66\xb1\xba\x31\x69\xe2\x8b\x13\xa2\xd9\xf9\xcc\xcb\x61\xb4\x7e\x83\x11\x65\x10\x40\x3c\xc5\xe2\xc9\xb8\x99\xf2\x2e\xf3\x43\x21\x11\x96\x8f\x4c\x8f\x8b\x58\xc3\x50\x13\x0a\x9f\x37\x7a\xab\x96\x3a\x53\xfc\x44\x34\x55\xa6\x69\x34\x41\x33\xc1\xc7\x82\x48\x69\x6d\xcb\x11\x66\x26\x00\xc1\xbe\xae\xaf\xa1\x47\xc6\xb8\x26\x85\x33\x61\xc7\x64\x46\x58\x4c\x58\x44\x4d\xb6\x22\xf8\xee\x33\xd3\xe6\x58\xe0\xd9\x04\x49\x0e\x4e\x6f\x20\x3b\xd8\xaf\xcc\x47\xee\x26\x33\x33\x36\x8f\x7d\x0b\xb4\x48\x35\x9f\xb8\x01\x39\xd1\x50\x19\x3e\x76\x97\xa1\x73\xbb\x18\x3b\xe0\x74\x96\x10\xe8\xd2\x92\x1c\x16\x43\xd3\xba\xb0\x1e\x7a\x99\xaa\x16\x41\x5f\xd8\x6e\xcc\x58\xda\x11\x9d\x55\x58\xb6\xed\x91\x42\x3f\x60\x16\x27\xba\x15\xe7\xc3\x28\x9e\x45\xc8\xb0\xe9\xe8\x5d\xe3\x4e\xe3\x36\xb7\x68\x84\x53\xb9\xcd\x35\x5a\x4a\x31\x35\x56\xc1\xd3\x3c\x28\x04\xb6\xb7\xcd\x2f\x05\xea\xce\x34\x8b\xc4\x09\xb7\x54\x32\xaf\xa7\x36\x68\x19\x46\x53\x73\xcd\xce\x04\x65\x11\x9d\xe1\x64\x23\xdd\xaf\x94\x63\x60\x43\xf7\xff\x40\x47\x7a\xfb\x7c\xb3\xe0\xb6\x55\x44\x4c\x21\x9d\xdc\x0e\x33\x5b\xc2\x35\x2c\x49\x36\x59\x83\xc8\x3c\x9a\x04\x0b\x9e\x1a\x7f\x1c\xd0\x85\xc4\x15\x47\xf5\xac\x6a\xb9\xf5\xc9\xc0\xc5\x00\xe8\x0d\x16\xdb\x44\xfe\xd4\xd1\xaf\xd4\x8a\xed\xdd\x04\xe3\xe1\xe4\xb6\xba\xcd\xaa\x15\xf0\x1e\xfe\x7b\xd9\xde\xf9\x8c\x67\x7a\xcf\x44\xa9\x54\xe0\x29\xce\xe6\x68\x95\xa4\x52\x28\xbb\xe7\x3b\xcf\x82\xda\x9b\xaf\x46\x4e\x42\x1b\x00\xb5\xd8\x49\x21\x86\xc0\x43\x04\xb0\x7b\x7c\x94\x6a\x59\x16\x61\x88\x42\x40\x7f\x20\x67\xe3\x33\x74\xf3\x73\xf7\xee\xae\x77\xd9\x3d\x41\x9d\xdb\xdb\xee\xf5\xe5\x09\x22\x2a\xfa\xc6\xc5\x2c\xda\x80\xa5\x47\xa6\xb8\x95\x56\xe6\x68\xc2\x5f\x80\x37\x12\x31\x26\x85\x39\xbb\xe8\x26\x08\x55\x1e\x53\xa9\x6c\xf8\xac\xe6\x2b\xf9\xb0\xb4\xbc\x5f\xb9\x43\x52\x35\xd9\x66\x6b\x60\x29\xd3\xa9\xd6\x65\x07\x14\x4f\x07\x82\x27\xdb\x30\x85\x4b\x98\x0a\xa8\xcb\x19\x98\x02\xc5\x53\xa4\x9b\xb5\xa1\x20\x99\xcb\x31\x13\xe9\xb4\x60\xa4\xf9\xb2\xbe\x37\xbd\x7b\xcb\x79\x1f\x6c\x3c\x1a\x75\x21\x10\x00\xb6\x50\xc3\x2a\x72\xb3\xf1\xc0\x5a\xea\x07\x38\x8a\xb4\xca\xbd\xe3\x49\xe5\x1d\x65\x2e\x01\xdb\xd1\xde\xa6\xb9\x6a\x9f\xbb\x61\xce\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xbc\xfd\x8a\x7e\x87\xf3\x85\x5e\x61\xcb\x9e\x3d\xb2\x07\x99\x99\x54\xcc\x25\x2c\x09\xac\xa4\x44\x2f\x13\x02\x47\x63\x8e\x26\xf8\x99\x14\xba\x74\x39\x24\xba\xe1\x39\x4f\x45\x15\xa3\x7b\x64\x97\x64\x26\x88\x96\xf4\xcb\x0e\x94\x6c\x4f\xdf\x15\x77\x62\xd8\xd7\x61\x5f\x1f\xfd\xbe\xbe\x48\x52\xa9\x88\xe8\x48\x49\xc7\x60\x48\xdc\x4a\x80\x33\x8d\x0d\x66\x9c\x27\x83\x06\x36\x91\xe6\x14\x2f\x78\xc2\x0a\x01\x1f\xd2\x20\x1d\xf0\x14\xe4\xa3\xc2\xb5\xc9\xf5\x5d\xe7\x65\x0e\xdb\xe1\x2d\x21\x83\x73\x99\x75\x1c\xa0\xc4\x56\x22\x0e\xae\x6a\x65\x59\x4b\x68\xef\x62\xce\x85\x91\x6f\x32\x77\x59\x3e\xc4\xd2\x61\x72\xa2\x08\x65\x8e\x6c\xf9\x47\xb0\x9f\x35\x81\x8d\xdc\xf1\x7b\xca\x15\x96\xdf\x9c\x3d\x32\x2d\x44\x3d\x91\xb9\x31\xb7\x6a\x31\xe5\x8f\x5a\x16\x3f\x95\x84\x49\x08\xf7\xfe\xa3\x71\xcf\xe9\x2d\xee\xcc\xd5\x46\x35\x25\xd3\x59\x82\x15\x04\x5d\x67\xbd\x40\x88\xae\x6d\xd4\x4a\x49\x79\x00\x34\xc8\xf9\x66\x2e\xf6\x99\x19\xfe\x98\x28\xc8\x1c\x57\x54\x81\xce\x14\xa7\x9a\x3c\x8b\x43\x5f\x69\xba\x32\xbb\x42\x70\xf0\x93\xc4\xe9\x76\x8c\x5f\x2e\xb6\xb1\x92\x33\x66\xda\xc2\xbd\x8d\x79\xff\xe0\xec\x46\x91\xe0\xac\x14\x0d\xa3\x95\x39\xb3\xd2\x43\xc3\x0e\x9c\xff\x9a\xb0\xb3\x17\xfa\x44\x67\x24\xa6\x18\x22\xe0\xf5\xbf\x3e\xe8\x79\xfd\xe7\xc5\xdd\xcd\xf5\x20\xcf\xe4\xf9\xef\x47\xd6\x49\x24\xcf\xb2\x14\x10\xe3\x2c\x0b\xb7\x9f\x09\xe2\x44\x42\x3b\x17\xb0\xba\xe6\x66\xc4\x47\x56\x37\x82\x98\x47\xf2\x0c\xbf\xc8\x33\x3c\xc5\xff\xe4\x0c\x5c\xe9\x1d\xf8\xf3\x22\xe1\x69\xfc\x0b\x56\xd1\xe4\x03\x9c\x6b\xf5\x81\x3c\x13\xa6\x8c\x9b\x4a\x93\x2b\x86\x9c\x64\x09\xd1\xfa\xff\xa9\xc7\x9c\x27\x15\x49\xad\xc9\x46\x64\xa6\xd0\xff\x2b\xc8\x90\x73\x55\x7d\x49\xf1\xd1\x48\x92\xb5\x2e\xa4\x5c\x49\xbb\xbf\x41\x7f\xfb\xaf\x6f\xff\xac\xb7\xd0\x26\x34\xee\xdd\xdf\x0c\xf4\xf7\xff\x79\x69\xbf\x97\x6b\xb0\x3b\x93\x4a\x2b\xad\xab\xd9\x50\xc3\x04\xce\xa7\x0c\x6e\x3f\x01\xce\x0b\x60\x6f\xb0\x1d\xf2\x75\xac\xe2\x6e\x97\x85\xd6\xb7\x53\xd9\x36\x22\x26\xa8\xd8\xde\x1c\xd1\x29\x62\x1c\x4d\x4d\xac\x29\x66\xe8\xaf\x3f\x7e\x5f\xbd\x80\xa9\xa0\x1b\x75\x48\x2d\x0a\x85\xd7\xa5\xa4\xff\x24\x12\xe9\x5d\xa3\x77\x31\x9f\xea\xae\x05\x91\x13\x9e\xc4\xe8\x85\x80\x9a\x64\xe3\x40\x33\xad\x5c\x90\x47\xe6\x37\x01\x21\x87\x08\x27\x8a\x8f\x09\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x89\x01\x66\xbb\xff\xce\xc5\x56\xc3\x34\xe1\x91\x4b\x6a\xb1\x26\xb9\x78\x58\x3d\xf3\x51\xd9\xf4\x8a\xea\x6d\xf8\xe5\x45\xb6\x66\xdb\x6a\xd2\xd8\x24\x14\x6b\xc3\x2a\xaf\x4c\xf5\x60\x68\xc4\xd9\x20\xa1\xec\x69\xa3\xc5\x70\x89\xe1\x48\xb7\x60\x69\xa6\x5b\xcc\xec\xdc\xc6\x02\xb2\xc6\xf9\xf8\x98\x26\x89\x49\x6d\xf1\x97\x07\xe4\x2e\x43\x37\x10\x06\x66\x26\x07\x94\xc4\xd6\xef\x65\x35\x61\x41\x18\x04\xbc\x3d\xb2\xe1\xdc\xfa\x6c\xe5\x09\x92\x69\x34\x71\x99\x79\x11\x67\x52\x8b\xd1\x5c\xa0\x88\x4f\xa7\x5a\xeb\x85\x25\x53\x9c\x27\xd2\x46\xbb\xb3\x53\x85\x23\xf5\xc8\xf2\xfe\x56\x9c\x3c\x53\x94\x69\xbb\xd4\xbd\xe6\x2e\x9d\xbc\xf8\xd3\x52\x81\x9b\xc6\x3e\x14\x05\x18\xc1\x8c\x27\xca\x03\xb5\xe0\x8b\x67\xc9\x2c\x58\x8d\x66\x20\x27\x5c\xa8\x41\x5c\xc9\x73\x56\x6e\x9a\x32\x23\x64\xe4\x34\x81\xa0\x61\xfe\xac\x85\x7f\xf2\x92\x19\x5f\x97\x0d\x41\xef\xea\x65\x23\x68\x76\x8c\x96\x8e\x6c\xdd\x2d\x58\x43\x2b\x03\x4c\x12\x15\x63\xc2\x57\x8d\xf1\x1e\xbe\xba\xd0\x1f\x2d\x25\x5e\xf9\xdc\x39\x21\x88\xc7\x39\x86\x9e\xb9\xd7\x6d\x46\xc8\x32\x9a\x5a\xe8\x84\xfd\x65\x8e\x2e\x9b\xca\x43\xd1\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x48\x95\xc0\xa2\x00\x80\x92\xe9\x83\x92\x60\x01\xf1\x59\x8f\xcc\xc0\xe1\x19\x4d\x21\x46\x31\x95\x90\x20\x02\x77\xa9\xe7\x0c\x43\xcd\x94\xc0\xd2\xd1\xce\xf3\x1c\x4d\xfc\x39\x04\x96\xe5\x5b\xc3\x31\x3b\xdd\x51\x06\xfb\xa5\xf5\x33\x1e\xa5\xb9\x20\x17\x81\x84\x6b\xa1\x82\x10\x65\x92\x8e\x27\x0a\x51\x66\xed\x8e\x38\x19\x73\x41\xd5\x64\x2a\x4f\xd0\x30\x95\x5a\x0b\x35\xc1\x6a\x26\x1e\x85\xa8\xa8\x11\x17\xda\x36\x89\x38\x2e\x35\xb8\xa8\xa2\x6c\xb0\x35\x9a\x1d\xca\x6e\xe9\xae\x58\xb1\x71\x3a\x19\x7c\x62\xb9\x0d\x4a\x64\x86\xba\x89\x4c\x1c\x20\x77\x80\x55\xbf\xa7\x44\xaa\xba\x73\x00\x60\x97\x3b\xf3\x52\x1c\xa2\x92\x16\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\x8a\x80\x9b\x06\x94\x2a\x73\x3a\x4d\x67\xaa\x32\x70\x6b\xd1\x55\x74\xe7\x41\x19\x35\x23\x36\x24\x63\xc1\x6e\x06\x00\xba\x47\x76\x4f\x48\x3d\x3e\xdd\xc2\xda\xff\x06\x47\x09\xa6\x60\x13\x3d\x96\x6f\xf9\x6d\x9c\xd8\x97\xdd\xfb\x8b\xbb\xde\xad\x81\x9c\xb8\xb9\xfb\xdc\xe9\x0f\x2a\xfc\xda\x15\x6f\x7d\xee\xdc\xfd\x78\xb9\xfa\xb5\x1f\xfa\xc5\xac\xec\x8a\x57\xee\xee\x97\x27\x73\x34\x18\x62\x45\x52\x58\x65\x3f\xe7\x68\x36\x57\x13\xce\xb2\x10\x85\xb8\xc0\x9b\x4e\x91\xc9\x08\x56\x10\x42\x24\xa4\xaa\x70\x1c\xf6\x21\x2e\x67\xb5\x84\x59\x5c\x2c\x83\x2e\xb7\x53\xd1\x68\x8d\x13\xf9\x29\xe1\x43\xf0\x5b\x5b\xd9\xc7\x02\xd3\x2d\x89\x40\xdf\x32\xde\xe7\x92\xca\x59\x82\xe7\x0b\x3d\xac\xba\x72\xae\xf1\x94\x40\xc4\x71\x0e\x8b\xe7\x92\x45\xf4\xca\x40\x02\x53\x76\xaf\xd3\x11\x64\x32\x29\x8a\x15\x41\x43\xa2\x5e\x20\x6f\xce\xfd\x9a\xd9\x52\x5d\xc0\x88\x3c\x7b\x64\x60\xce\x79\xd4\x44\x8e\x53\x88\xf6\x7b\x7c\x77\x82\x1e\xdf\xc5\xe4\x99\x24\x7c\xa6\x57\x5e\xff\x50\x77\xc9\xcc\x19\x9e\xd2\xe8\x9a\xc7\xc4\x85\x68\xdc\x59\x24\xc7\xad\x6c\x8a\x10\x7c\x46\xe2\x81\xbb\x32\x9b\xcb\xc0\x17\xf6\x53\x37\x9c\x8b\x84\xcb\x0c\xf0\x05\x2d\x37\xfd\x74\xa7\x98\x26\xd7\x5c\x65\x76\xc6\x6d\xe6\x20\x48\x44\x67\xa0\x67\x0c\x88\x6e\xf7\x70\x62\x54\xe1\x5c\x3a\xe6\x0c\x63\x40\x38\x8e\x05\x91\x12\x18\xb3\x1b\x5e\x1e\xd0\xc4\xbc\xa9\x17\x4a\x77\xae\x23\x20\x65\xc6\x7c\xd3\xa3\xdf\x66\xd1\x88\x5b\xb5\x9f\xba\xec\x79\x8f\x0e\xe6\x6d\xc5\x12\xbd\xbf\x7e\x24\x73\x48\x28\xb9\xc5\x54\x6c\xe8\x68\xae\x8a\xe0\xdd\x8b\xcb\xb9\x5b\xd1\x51\x8b\x9c\xcf\xd5\x74\xd8\xce\x0d\x9d\x45\x1e\x1e\x4a\xe7\x76\x7c\x26\xeb\xb8\xa1\x12\xfe\x50\xa7\x72\xd7\x06\x64\xa0\xb2\x1a\x39\x23\xd1\x1a\xfa\x63\x36\xc0\x7b\xfd\xdd\x4a\xbd\x2b\x13\x3e\x5d\x34\x61\xbe\x0a\x36\xd5\xbf\x8c\x2e\x40\x56\x8e\x38\xb2\xbc\x78\x83\x41\x3b\x36\xbe\x6c\xdc\x5d\x7f\xfb\x6a\x29\x77\xad\xf0\x8c\x0a\xc2\x97\x10\x3b\xcd\xad\xa9\xac\xbf\xcf\xbe\x7d\x82\x28\xc4\x8e\x82\x7a\x99\xe4\x38\x08\x2c\x46\xb9\x53\xe7\x91\xe5\x11\x38\x12\xbd\x90\x04\x82\xf6\xf4\x2d\x07\x0e\x0b\x3b\x5c\xdb\x12\x89\x4d\xfc\xf3\x09\xe2\xa9\xd2\x8d\x99\x0c\x23\x67\x92\xb6\xe9\x4b\xb9\x13\xc7\x78\x12\x6d\x28\x7f\x86\xfe\x6d\xf6\xba\x91\x0c\x28\x43\x9f\x88\x82\x56\xa0\x68\x84\x3f\x41\xd0\x7a\xca\x01\xa1\xd5\xb4\xdf\xe2\x44\xd9\x99\xac\xb1\xf2\x39\x0c\xcc\xf7\x09\x1f\x2e\x37\x79\x40\xe3\xe8\xe1\xae\xe7\xec\xab\x79\x34\x98\x07\x31\x5d\xf0\x8f\x76\x6f\xef\xba\x17\x9d\x7e\xf7\xf2\x0c\x3d\x48\xa2\xc9\x93\x4d\x17\xb2\xc5\x33\x05\xcb\x8c\xdc\xe2\xca\x30\xa9\x08\xae\x33\xeb\x10\x21\x0a\x39\xdd\x2b\x18\x47\x11\x74\x66\xf9\xc6\x06\xc8\x17\x6a\xcd\x8e\x00\x93\x54\x9e\xa7\x8d\x33\x5c\x75\x02\x21\xea\x6b\x70\x3c\x31\x77\x66\xbc\xd3\xc5\x38\xc3\x55\xdb\xa7\x18\x9f\xb8\xef\xc9\xc0\xd1\x52\x13\x42\x05\x6a\x34\x2d\xb3\xa9\x06\xcd\xe7\xe4\x05\xec\x7f\xc6\xb3\xe5\xc9\xb4\xf8\xa5\xb0\x69\x8d\x60\xef\x45\x22\xec\xfb\x1c\x38\xb6\x36\x30\xac\x70\xfb\x09\xe6\xee\x39\xc3\x5b\x33\xbe\x69\xf2\x57\xa4\x33\xf9\xf9\x13\x2b\x0d\xc2\x46\xe5\x4a\x04\x67\x07\x7e\xa1\x0c\x15\xae\xc4\x13\x34\xa2\x5f\x6c\xa3\x79\xb4\xbe\x7b\xd5\x0b\xdf\xa8\x89\x0e\x9d\xe0\xc5\x33\xb5\x86\xd8\x70\x0b\xdf\x2f\x15\x22\xb9\xd4\x22\x51\xa4\xc5\x25\x41\x22\x2e\xf4\x4d\x01\xdd\xe6\x3e\x95\x55\x22\x83\xc2\x42\x13\x65\xd1\xc7\xb4\xec\xf4\xe7\x85\x62\x62\xac\xc8\xa9\x16\xbd\x56\xa4\x73\xdb\x8c\x1f\xc8\x0d\xc2\xca\x03\x37\xcb\x6f\x9e\x21\x19\x63\xe6\x02\xcd\x6b\x86\xeb\xae\xbc\x2d\x58\x95\x56\x81\x30\x24\xbb\x81\x7c\x05\x89\x4c\x85\x71\xc8\x19\xd0\x73\xe9\x38\x6c\x2c\x4f\x1b\xc8\xf6\x82\xb3\xd0\xa2\x9a\xc1\xa6\xb3\xb8\x4d\x83\x4d\xb0\x54\xc8\x8e\xa9\xce\xb0\xe2\xa9\x88\xfb\x35\x29\x17\x74\xfb\xa6\xca\x9b\xde\x42\x45\x2d\x96\x80\x9f\x47\x3a\x14\x18\x83\x79\xa3\x75\x1a\x27\x08\x5f\xc0\x0a\x65\x67\xfb\xce\x48\x59\xee\x96\xf0\x99\x09\xa4\x1c\x2c\x36\x7d\x86\x3a\x6c\x01\xfd\xcb\x45\x99\x15\xe8\x65\xee\x24\x9c\xbc\xe0\xb9\x44\x33\x61\x80\x72\x4c\x1e\x82\x9b\x3c\x68\x60\xc5\x8f\xb2\xc0\x0e\xe5\x12\x41\x10\x58\x96\x56\x87\x00\x3a\xb9\x77\xb0\x07\xc7\x64\x29\x46\x3e\x13\xc8\xf3\xe6\x72\x5b\x45\x03\x56\xa7\xc8\x20\x9a\x60\x36\x26\x03\x67\x32\xde\x44\x5b\xd2\xed\x5c\x40\x33\x97\xb6\x95\xea\xcb\xe9\xd6\x28\x4c\xb6\x48\x8f\x79\x35\x33\x87\xea\x43\x20\x15\x1e\x13\x64\x46\xd4\xc8\xc8\x5e\x88\x7f\xb3\xd0\xc9\xa0\x27\xd8\x56\xbb\xc5\x9c\x80\x3a\xe1\x1d\x02\xb9\xae\xf0\x90\x24\xaf\x13\x07\x02\x5d\x5b\x57\x03\xf8\x1e\x4d\x6e\x03\x41\x2f\xe0\x9d\x28\xb1\x0c\xeb\x8b\x10\x69\x55\xa6\xc3\xb2\x79\xc2\x91\xb3\x27\x6d\x9b\x89\xba\x82\x2e\x9b\x4c\xb5\xae\xcc\x8b\x7f\xed\x79\xe5\x50\xaa\x0c\x6c\xfe\xf5\x57\xb6\x90\x6f\x36\x10\xaf\x2a\x4b\xcd\x38\xb6\x2e\xcb\xb2\x72\x2a\x1b\x43\x26\x34\xac\xc0\xd8\x1b\x21\xc6\x19\x41\x54\xe6\x2f\xab\x62\x72\x57\x06\x38\xa4\x45\x7c\x63\x7c\xc9\x4a\xa9\x65\x15\xb2\xf6\x6d\x69\xc9\xa1\x20\x32\xdb\x80\xcb\x56\x67\x44\x2b\xaa\x58\xcc\x01\xb0\xd4\xf0\xe1\xa2\x4c\xb7\x72\x9c\x3b\x17\xb8\xfb\x0e\x8f\xd6\x8b\x3b\x56\x1c\x81\x18\x59\x1a\x1c\x32\xa8\xae\xf6\x25\xfb\x91\x05\xdd\x79\x64\x99\x65\x03\x36\x22\x95\x68\x8a\x67\xe0\xa1\x64\x5c\xe5\x5f\x19\x10\x29\x95\x2d\xe1\x89\x13\xc4\xa5\x29\x74\xb6\x9a\x02\x5c\x8c\xb7\x09\x3c\x69\x5e\xcc\xa2\xb9\x61\xc9\x5d\xfe\xf9\xaa\x16\xa1\x42\x1d\xcc\xf1\x98\x3e\x13\xe6\x4e\xd4\x89\x3b\x91\x9a\x24\x6e\xca\xc9\xfc\x14\x43\xc8\x36\x89\x7d\x2f\xd2\x72\x7e\xb8\xbd\x33\x66\x57\xd6\xd0\xe6\x24\xeb\x57\x86\x24\x19\xc0\xb9\x42\xa5\x00\x17\x64\xef\x9f\x11\x8b\x81\x6c\xb2\xea\xb1\x44\x7f\x64\x5c\xfd\xd1\x43\x89\x76\xa6\x13\xf8\xd4\x19\xc0\x4e\x16\xaa\xfa\x00\xcb\xb0\xdb\x16\x61\x0f\xad\x6c\x25\xe5\xb7\x8d\xb3\xc8\x93\x08\xf6\x2a\x0b\x77\x17\x33\x0a\xeb\xca\xa2\x85\xe8\x07\x54\xbe\x94\xca\xe6\x56\x53\x79\x31\x3f\xe9\x05\x33\xab\x5c\x15\xee\x90\xad\x45\xa3\x30\x87\x05\x74\x85\x6d\x76\xdb\xb4\x71\x14\xda\x0a\x40\xe9\x6a\xab\xc8\x26\x39\xb3\x75\x5a\x81\x28\x86\x01\xda\x92\x22\x35\x88\xc9\x67\x8f\xec\x23\x17\x56\x00\x90\xb6\x66\xc3\x10\x47\x4f\xa7\x84\xc5\x08\xa7\x6a\x62\x90\x8b\xad\x57\x63\x6e\x77\x83\x96\x73\x60\xdb\x64\xb0\x24\x54\x46\x58\xc4\xae\x7a\xc8\x33\x77\xa3\x78\x64\x5e\x23\x50\x15\x02\x6a\x81\x41\x91\xe6\x3a\x45\x97\x48\xad\xdd\xd5\xd1\xa2\xaa\x4e\xef\x42\x95\xde\xe5\xe7\xac\x50\x77\x18\xea\x59\x40\xb0\x18\x1f\x2d\x52\xa7\xe7\x6c\x9d\x4e\xbb\xd4\xfb\x79\xd1\x07\x72\x62\xf5\x19\x63\x10\xb3\x33\xd0\x72\xd6\xb7\x8e\xd7\x16\x10\x98\x47\xa9\x80\xd0\xe7\xaa\x36\xff\x10\x4d\x68\x92\x7b\x4e\xbe\x39\xc9\x86\xa9\x9b\x4c\xc8\x33\x49\x0c\xfe\x7f\x24\x20\xcb\xc1\xd8\x2c\xbf\x45\xff\xdb\xd4\xae\x45\x7f\x7e\x64\x9f\x80\x0d\x27\xc9\x1c\xd0\x49\xb3\x96\xb1\x2a\x35\xf3\x54\x39\x00\x65\xd3\xaa\x50\x71\x20\x66\xad\x27\xf8\x99\x3c\x32\xd7\xcc\xff\x46\x4f\xe8\x4f\xe8\xcf\x75\xca\xa5\x4b\x56\xd8\xb3\x95\xe5\xa3\x97\x0a\xe0\xdd\x72\x96\x51\x5a\x7e\xe3\x8c\x30\x05\x13\x68\x05\x4a\x49\x06\x32\x4e\xd9\x33\x8f\x16\x32\x62\xfc\x53\x8b\x05\x61\x6a\xc0\x78\x4c\x06\xa4\xc2\xa1\xba\x84\x49\x68\x21\xe0\x9a\xc7\x64\xa5\x3b\x34\x63\xa6\xbf\x80\xe1\x48\xa6\xc3\x6c\x39\x00\x2c\x21\xcb\x8c\xcf\x6c\x1f\xc5\x9d\x56\x3d\xf2\x0c\xc9\x77\x93\x71\x6f\xea\xca\xcd\xc5\x46\x9c\x43\x09\x57\xbb\x13\x13\xac\x9c\x34\x59\x3e\x8e\x65\x37\x84\x7e\x59\xcf\xdc\x5e\x56\x1e\x46\x31\xd4\x91\x11\x74\x4c\xb5\xf6\xd0\xdc\x5d\x0c\x9c\x70\x13\x5f\x8a\x01\x6c\x6d\xe4\x4c\xc9\x49\xe1\x40\x6b\x4e\xb3\xfd\x97\xbb\x40\x87\x3c\x2d\xab\x0f\x96\x00\x54\xfa\xc1\x06\x56\x53\x98\x6b\x3e\x3c\x36\xd9\x94\x64\x42\x0d\x7e\x41\xe7\xe2\x0a\xe9\xd3\xc1\xa7\x06\xe4\x0b\x88\x96\xaa\x09\x17\xf4\x9f\xcb\xf6\x36\x16\x8a\x8e\x70\xa4\x06\x3b\xa9\x89\x53\xbf\x99\x3a\xb6\x9f\x5e\x7d\xdd\xbd\x05\xbc\x06\xfc\x4c\xbc\x70\x4a\x08\x96\xb4\xad\xc8\xcc\x91\x5b\xe6\xb7\x5c\x20\xc6\x5f\x72\x90\x2f\xf7\x3d\xe0\x5a\x7b\x69\x28\x58\xab\x5c\x33\x88\x87\x96\x14\xf6\x27\x40\x6e\xbd\x57\x26\xc5\x14\xe0\xda\x0d\x58\x96\xde\x9e\x13\xcc\xe2\xc4\x5d\x21\x88\x9b\x88\x9e\xf9\x0b\x9e\xaf\xe5\x53\xf7\xa3\x44\xf3\x9c\x43\xb3\xfc\x45\x25\x08\x78\x80\x91\xd4\x54\x41\xd5\xac\x52\x84\xd1\x30\x05\x98\x60\x4d\x93\x51\x9a\x98\xda\x22\x11\x17\xf1\xd9\x23\xb3\xe1\xe1\x5e\x6f\x5a\x04\x74\x5a\x13\x56\x59\x83\xd4\xa2\xa9\xda\xea\x25\xc6\x2c\xb7\x54\xae\xff\x29\x25\xe9\x8e\x92\x44\x5f\x35\xac\xbe\x8f\xc7\x32\x8f\x93\x37\xb4\xd1\x57\x5e\x4e\xdf\xdf\xf5\x4c\xa5\x97\x56\xed\xcc\xc5\x19\x4a\x99\xb1\xb3\x98\x92\xbc\x6b\x99\xe9\xee\x4c\x75\x86\x1d\xd8\xe9\x0e\x11\xa4\xb3\x28\x7a\x56\x70\x75\xbb\xfd\x9e\xb3\x24\x63\x74\x18\xe3\x97\x2b\x73\x51\x12\xea\xf6\x68\x07\xdb\xe0\xee\x58\xd4\x55\x96\x06\xee\xe7\x56\xb1\xec\xb6\xa8\xc8\xf7\x57\x1c\x32\x83\x5e\x04\x05\x10\xc3\x79\xfe\x72\x56\x7d\xda\xdd\xc2\x3e\x8f\xd1\xc2\x9f\xd1\x16\x20\x58\xc7\x91\x70\x5e\x7d\x75\xae\x61\xd7\xb1\x0d\x15\xbb\x5e\x0c\xc6\xa8\x3b\x11\x86\x25\xb5\xf5\x48\x2c\x22\x18\xad\x3c\x0c\x59\xb1\x9a\xd7\xb1\x0a\x67\x12\xe3\xe1\x4e\x46\xb6\x1d\x07\x11\x8e\x26\xb5\x93\x1a\x72\x9e\x10\xcc\xea\x94\x82\xca\xc7\xe5\x23\x62\xf0\x77\x81\x75\x27\x09\x80\x50\x3b\x12\xd8\xc2\xa5\xb9\x56\xc4\x62\x28\x1e\x60\x78\xb8\x09\xf8\x74\x03\x55\x84\x39\x83\x1a\x65\xe3\x84\x94\x69\x65\xab\x3c\x9c\xd8\x4e\x92\x28\x4d\xbc\xca\xa5\x33\x22\xf4\xa8\x35\x89\x9f\x09\xd3\xaa\x98\x1d\x87\xf3\x50\xbd\xb8\x9c\xfd\xac\x5e\xd9\x49\xd6\xb5\x73\x92\x42\x62\x6c\xfc\xc8\xe0\xe0\xf2\xe2\x61\xd5\x7b\x55\x6a\xed\xcd\x37\xf7\x6d\x7c\x3a\x3d\x21\x62\xed\xe3\x79\x5f\xb4\xfd\xaf\x7d\x26\x4d\xdf\x03\x08\x1c\xd9\xda\x5f\xea\xf9\xd4\x72\x34\x11\xb3\xb0\x0e\x31\xee\x40\x9e\x01\x08\xc5\x29\xc6\x12\x7b\x91\x38\x75\x88\x65\x7b\xbd\x4b\xf2\x0a\x2d\xee\x36\x68\x38\x94\xa5\xf1\x07\x0d\xa3\x09\xc0\xe8\xbb\xec\xdc\x5e\x59\xa9\xbe\xe8\x87\xcf\x52\xd0\xf2\xd8\x55\x5b\x83\x58\x09\x0c\x00\x1a\x00\x7b\xf0\x8b\x31\x5c\x50\x69\x84\x7b\x57\x89\x65\x3a\x53\x73\x5b\xb8\x0f\xee\xc5\x82\xbc\x0f\xa0\x84\x55\x3e\xff\xf2\x1d\x19\x17\xbc\xfe\x55\x9d\x41\x47\xd6\x5a\x53\xd9\xa4\x23\xb4\x0f\x72\x53\x02\x15\xa9\x0b\xf1\x31\x35\x90\x07\x38\xa9\x35\x11\xee\x80\x69\x82\x72\x94\x03\x89\x58\x7c\x62\x25\x52\xa2\x79\x17\x4e\x92\xd2\xbc\x30\x64\xec\xab\xac\x0e\xe2\x30\x2f\xd6\xdc\x3c\x02\x21\xc1\x43\xb2\x56\xcc\xc1\x95\xf9\x60\xe9\x2e\x82\x57\x20\x5c\x7f\x36\x4b\xe6\xcd\xd2\x04\x7c\xed\xb7\x12\xc7\x6f\xd5\xc0\x7c\xf4\xbf\xa5\x77\x53\x11\x41\x6f\xb3\x21\x4a\x12\xa5\x82\xaa\xf9\xc0\xda\x52\x9b\x33\xad\x7b\xfb\xe5\x85\xfd\xb0\x89\xa1\xe2\x1c\xb9\xfe\x9c\xed\x16\xee\x29\x41\x4d\x91\x27\x3b\x85\x26\xcb\x8d\x53\x35\xa9\xc4\xf7\x5a\x46\x58\x07\x30\xd6\x6c\xa8\xba\x8b\x4d\x87\x67\x8b\xc7\x0c\xf8\xc8\x41\x77\x35\x27\x6c\xb9\xaa\xce\x1a\x46\x68\x87\x10\x3e\x13\x94\x0b\x5b\xbc\xa6\x49\xa4\xe2\x14\x7f\x19\xcc\xb0\xc0\x49\x42\x12\x2a\xa7\x9b\x9b\xcc\xbf\xfb\xcb\xd2\xd1\x5e\x98\x22\x4b\x66\xb0\x53\xfc\x85\x4e\xd3\x29\x62\xe9\x74\x68\xa5\x5c\x2c\x9f\x7c\x7c\x56\x87\x26\x61\x60\xc6\xdc\x00\x0b\x98\x16\xc2\x43\xdc\x7d\x64\x1e\xf6\xba\x35\x55\xe0\x68\x42\xc9\x33\x20\xc3\x0a\x46\xa4\x3c\x43\xd7\x5c\x91\x73\xf4\x19\xcf\xfa\x20\xa8\x99\xaa\xa7\x63\xe3\x74\xc0\x12\x69\xa9\x35\x65\x54\x9d\x3c\x32\x0b\xd8\xee\xa8\xf2\x21\xe2\xcc\x80\xf6\x46\x40\xd8\xac\x09\xb0\xa2\x3b\xf4\x5a\xe5\x72\x6f\xa9\xac\x21\xb6\xc0\x2f\x03\x2f\x24\x79\x60\x52\x3e\xd6\xd8\xc7\x77\xf8\xc5\x04\xe1\x5f\x62\x85\x4d\x41\xe3\x65\x92\xbb\x8d\x72\xb3\x45\xae\x0c\x56\xb5\x8b\x06\xe2\x16\x30\x25\x2b\xcf\x67\x42\x8e\xff\x40\xcf\xc8\x19\xfa\x3e\xe1\x43\x79\x92\x9b\xaa\xcc\x43\x49\x94\x3c\x31\x7e\x3f\xf8\xb7\xc9\x56\xfc\xc6\x51\x3f\xe7\xfb\x50\x99\x72\x44\xbf\x18\x9c\x16\xf9\xdd\xf9\x87\x0f\xd3\xf9\xe9\x30\x8d\x9e\x88\xd2\x7f\x81\x4c\x51\x49\x21\x07\x72\x86\xab\x20\xd3\x56\x51\x67\x11\x6e\xad\xd1\x8e\xb4\xb9\x52\x92\x00\xb4\xbf\xbe\xd2\xb3\xda\xbf\x0e\x9d\x8b\xb3\xea\xc2\xa6\x76\xca\x22\xad\x3b\x5e\x05\x4c\xf0\xc3\x68\x2b\xa6\xb6\xb1\x0f\x45\x3e\x4a\xf0\xb8\xa4\xb2\xac\xa1\xa4\xdc\x4c\xa9\xdd\x45\x7a\xee\x10\x44\xa3\x4f\x59\x31\x74\xf0\xbd\xf3\xf2\x82\xb7\xd6\x7a\xb1\xce\x1e\x59\x47\xa2\x17\x62\x4a\x16\x43\xda\x2c\x38\x7d\x52\x2a\x27\x59\xd2\x2c\x98\xa1\xa1\x51\x83\xd8\x6c\x80\x3d\xac\xe2\xe8\x34\x2b\xe7\x16\xb3\x1a\x28\x4e\x24\x39\xd1\x0d\x83\x49\xd5\x45\x87\xa2\x17\x81\x67\x33\x22\x1e\x99\x45\xdf\x05\x8c\x79\xce\x6d\xe4\x4f\x5d\x8a\x40\xd0\x28\x0f\xab\x51\x7a\xb4\x27\xc5\x2c\xd4\x55\xe7\x1b\x92\x56\x97\x51\xb8\x2a\x0f\xd3\x91\x4f\xcb\xa2\x4d\xc3\xf7\x5f\xdf\x6c\xdc\x70\xcc\xab\xb4\xf3\x4e\x29\xf7\x02\x2a\xa2\x4f\x41\x81\x94\x79\xe1\x57\x67\xeb\xcb\xd4\xf7\x82\x98\x03\xe0\xed\xf0\x71\xcc\x89\xf4\x8c\xf8\x28\xb3\xc5\x25\x74\x44\xb4\xf4\xf1\xc8\xf4\x36\xf6\x1d\x0e\x06\x03\xde\x41\xc2\xeb\x4e\x23\xc1\xa5\xb4\xe9\x14\xa6\x9d\xe5\x49\x71\x5b\x94\x9b\x34\x40\xf6\xbd\x9b\xeb\xc1\x62\xe1\x49\xef\x99\x2b\x41\x69\x1f\x56\xe2\x40\xd4\x36\xb5\xb2\xe0\x64\x4e\x8b\x35\x4a\x4e\x7e\xb8\xb8\xea\x65\x75\xd6\x4a\x5d\x2f\xd6\x9c\xf4\xc1\xff\xeb\xab\x4e\x2e\xce\xd8\xab\x3f\x59\x6a\x62\x49\x05\xca\xd5\x8b\x55\x0c\xe2\xde\x06\xd9\xb1\xb4\xf4\x2b\xf9\x43\x71\xcf\xac\xca\x35\xd8\xd1\x32\xd5\x5c\x2b\x11\x08\x8c\xfb\x0e\x5c\x00\xc1\x4b\xbf\x25\x15\x9e\xce\xfc\x3c\x5a\x07\x6d\x6b\xa7\x69\x8e\x5a\xdd\x25\x78\x50\xc8\xfd\x08\x9b\x20\xa1\xf2\xe0\x16\x96\x62\x3d\x8f\x57\xdf\x22\xf9\xef\x22\x36\xfd\x70\x89\xe9\xc9\x3c\x0f\x86\x94\x56\x76\x73\x55\xe2\x6b\xec\xfe\x43\x92\x55\x2d\xa8\x5d\xd0\x6d\x33\x4f\x33\x74\x33\x41\xb0\xb4\xee\x6f\x48\xd0\x2c\x25\x6f\xad\x61\x1e\xce\xc6\x6c\x52\xbc\x4f\xb3\x3a\x21\xde\x55\x63\x4b\xdf\x45\xee\x20\x52\x21\xc8\x33\x11\xb0\x77\x6c\x28\x15\x2b\x1e\x55\x9c\x08\x82\xe3\xb9\x47\x91\x2c\x8e\xc3\xf4\x0c\xe6\x31\x49\xa7\x5a\x81\x07\xd5\x84\xf1\x53\x3e\x73\x3a\x4b\xe1\x2d\x28\xf2\x42\x47\xfa\xc6\xf2\xa2\x40\xf4\x17\xec\x94\x7c\xa1\x52\x69\xb9\xa2\x22\x04\xd6\x35\x02\x12\x0f\x94\x7e\x9b\x10\x7b\xc3\x3d\xbe\xeb\x7c\x7f\x73\xd7\xef\x5e\x3e\xbe\xcb\x53\x2e\x5c\x4e\x61\x06\x5a\xe6\x6a\x50\x70\xf6\xc8\xb2\x38\xe5\x0c\xa3\x1b\xd6\x12\xe1\x38\xce\xe3\xa3\xad\x12\x69\x64\xb6\xa5\x1c\xd9\x3b\x15\x2b\x23\x94\x97\x34\xf3\x00\x89\x65\x6d\x3d\x59\x4b\x5c\x67\x85\x93\x63\xd2\xe3\x96\xe4\x31\xed\xe8\xb2\xf1\xe1\x85\x95\xd1\xb5\x89\x72\xf8\x97\x8c\xbc\x38\x5d\x09\x6e\xe7\x0f\xd8\x5c\xc2\xeb\x71\x3b\xb7\x20\x1b\x2c\xea\x47\xfa\x85\xc4\x77\x35\x52\xd5\x4e\xd2\x94\x1a\x05\x58\x56\xae\x42\xca\xe8\x3a\x1a\x7f\x36\x95\x07\xfd\x5d\x73\xb6\x74\x93\xa3\x06\xe6\x08\xc0\x00\xff\xab\x10\x46\x11\x11\x0a\x53\x86\x46\x70\xb0\x59\x34\x47\x80\xc2\x42\xc0\x87\xfd\x17\x34\xa5\x0c\xe0\x20\x96\x91\xf6\xa1\x38\x8f\x35\x84\xd6\xcf\xbd\xeb\x87\x7e\x41\x54\xfd\xe1\xe6\xa1\x50\x6a\xf3\xb2\xf3\xeb\x52\x59\xb5\xd4\xc2\xb2\x60\x21\x6f\x8a\x79\x6a\xa9\x05\x42\xce\x28\x53\x39\xd1\x64\xae\xc8\xc3\xdd\xd5\x56\xf2\x5d\xb5\xb3\xac\x16\xc6\xde\x97\xae\xaa\x61\x2e\x9a\x7c\x1a\x93\x68\x15\xd0\x6e\xf3\x7d\x64\xa2\xa0\x34\x1d\xac\x35\xd1\x82\xf0\x61\x89\x66\x58\x58\x3f\x54\x6c\x02\xa0\x8a\xc5\xeb\x8c\xe6\xb5\x0c\x16\xe4\x13\x51\x3f\xeb\xab\x8f\xb3\xdd\x20\x7d\x81\x28\x0b\xfe\x51\x32\x78\x36\x0d\xaf\x71\xd2\xec\x50\x96\xe4\x2f\x39\x61\x19\x7a\x40\xb6\x07\x1f\x4c\xe3\x0c\xc1\xae\xe9\xe8\xe6\x80\x22\x2e\x4c\x53\xab\xa4\x9c\xe9\x1d\x69\x10\x7f\x1d\x4c\xb0\xd7\x1c\x1f\x99\x8f\x1b\x82\x26\x7a\xc9\x02\xba\xad\x9c\x94\xa8\x73\xdb\xab\xa0\xf5\x55\xd9\x85\xf4\xb6\x2a\x2e\x25\x99\x37\x6b\xd7\xc8\x57\x5e\xce\x69\x2b\xa0\xae\xec\x4c\xb7\xc3\xb6\x32\x4e\xff\xdb\x62\x24\x41\x1b\x00\xa5\xab\x54\x86\x42\x2e\xf9\x0a\xec\xe8\xf5\xd2\x2b\x73\x32\xac\x89\x64\xe5\x0f\xc8\x66\xd7\xf8\xe8\x4d\x8b\xa1\xdb\x27\x3e\x9a\x13\x37\x35\x9d\x6d\x6c\xc1\xce\x10\xae\xf2\xd9\x34\x81\xb8\xfa\xd9\xec\xe8\x0c\x01\x05\x30\x5d\x5c\xcd\x50\x17\x72\x6d\x01\x09\xfc\xe9\xfa\xbb\x6d\x3d\x54\xac\x7c\x7c\xce\xfc\x6d\xe1\xd2\xf1\x0c\x5b\xbb\x03\x28\x51\xae\x98\x47\x55\xed\xc7\xb3\x47\xe6\x05\xac\x48\xa3\xf6\xe8\x33\xe2\xea\xe7\x40\x51\x66\x06\xd8\xeb\x90\xfb\x94\x09\x3f\x85\x15\x28\xe3\x1e\xa8\x49\xb1\x02\xce\x42\x3f\xf6\x74\xca\x09\x76\xd9\xa5\xce\x82\x62\xe3\x00\x7d\xfb\x12\xb4\xe7\xd5\xbc\xb0\x1d\x83\x39\x1a\x8c\x16\xd8\xab\xa8\xe8\x21\x12\xc4\x9c\x48\xf6\x5e\x65\xf9\xbb\x34\x99\xbb\x90\xea\x92\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\x40\x6e\xad\xab\x38\x78\xc7\x6a\xa5\x99\xca\xf9\x78\x61\x27\xf8\xb1\x48\xd0\x69\x9d\x55\xfd\xcb\x8c\x44\x9b\xe0\x02\xdd\x62\x81\xa7\x44\x11\xb1\x2c\x1c\xa9\x58\xef\x1c\x44\x1c\xb7\x82\xb6\x5f\xb3\x8a\xa6\x18\x4c\xb9\x6a\x50\xa6\xdd\x5e\xad\xc2\xf9\xc9\x66\xb1\x16\xa4\x99\x9e\xc6\xcf\xd6\xf2\xbf\xe6\x2c\x6c\x3f\xf9\x34\x6c\xb4\x95\x07\xeb\xb4\xed\x9c\x0e\x83\x6f\xd3\x5f\x40\x8a\x29\x84\x0b\xb5\x04\xd8\x66\xf5\x28\xeb\x10\x6d\x56\xf1\xd2\x9d\xf0\x6e\x97\xe1\xe0\x32\x93\x4b\x87\xaa\x90\x3b\x01\xbb\x04\x54\x2a\x03\xee\x52\x8d\x4a\x03\x42\x4b\x55\x84\xa4\xe7\xf6\xb3\x98\x85\xb9\x41\xd7\x4a\x56\xe5\xfa\x67\x25\x72\xad\xe0\x71\xbb\x42\xec\x08\x12\xcd\xae\x25\x9a\x55\x5b\xb9\x10\x5d\xab\x77\x27\x11\x25\xf0\x20\x5b\x97\xdc\xa2\x3e\x14\x27\x08\x29\x5d\xf6\x8a\xb4\xc5\x8d\xe1\xea\xa7\x2c\xfb\x57\x91\x83\xbb\x4d\xed\x6f\xd5\xaa\x5c\xd5\x33\xcf\x05\x05\x1e\xa8\xc4\x97\x06\x6c\x5c\x0d\x8c\xd6\x84\x41\x1a\x2b\x7f\xef\xda\x38\xb0\x20\x67\x7c\xce\x53\xf4\x42\xe5\x04\x29\xfe\xc8\x20\x4e\x30\xf3\x06\x28\x8e\xcc\x8b\x27\xf0\x16\x60\x5b\xc8\x74\x38\xa5\x0a\x61\x6f\x86\x05\x93\xe4\x89\x3d\xcf\xfa\x03\x98\x71\x25\x7c\x41\x15\xee\xd2\x8a\x43\xb3\x81\x7d\x2d\x6f\x64\x5b\x84\x02\x2f\xa6\x79\xbf\x18\x05\x9e\xc6\xe3\x6b\x98\x95\x67\x2e\x80\x14\xa0\x6a\x6b\x83\x45\x82\x05\xb8\x5e\x2a\x55\xe9\x6e\xb1\x86\x9e\x15\x00\x05\xf9\x42\x34\x42\x28\xc8\x5f\xdf\x05\x44\x41\x5d\x25\xbd\x65\x29\xab\xee\x93\x1a\xfb\xb7\x4b\x85\x56\xdc\x05\xce\xfb\x92\xd2\x6d\xad\xa4\xd4\x36\xa8\xba\x3c\x21\x60\xf3\xf0\xf2\xba\xe8\x65\x38\xe3\x11\x67\x31\x5d\x23\x5e\x18\xaa\xa5\x0d\xd3\x51\x87\xcd\x57\x23\x1f\x4d\xfd\x40\x7d\x6b\x2f\xf1\x24\x91\x6a\xcc\xcd\x95\x2a\x6b\xde\xbe\xbf\xd3\xbd\x94\xd0\x22\x18\x11\x29\xdf\x4e\x8c\x2b\xc8\xfb\x89\x54\x32\xaf\xc8\x45\x7d\x64\xd5\x52\xd2\x72\xbe\xbd\x6d\x1a\xc9\x4e\x61\xf7\x3c\x1e\xe1\x66\x61\xad\x6e\xbf\x64\x81\x78\x46\xa1\x27\x16\x64\xa3\x24\x06\xe7\x6e\xc8\xba\x00\x2a\x2d\x1c\x6d\x92\x6b\x5e\xc1\x39\xaa\x87\xbe\x90\xe4\xb1\xf2\xec\x5a\xc1\x60\x87\xea\xe7\xc2\x0d\xd2\x38\x27\x26\x93\xe3\xed\x8d\x61\x83\xba\xe3\xcc\xd6\x50\x72\x27\x6f\x52\xac\x19\xe0\x6c\x77\x06\xc2\x5b\x46\xa6\xd0\x8d\x9f\x80\x0b\xda\x8e\x1d\x9b\x70\x9c\x0c\x1a\xbe\xb4\x26\x85\x19\x9b\x90\xca\xbd\xcc\x7a\xdd\x0a\xdb\x9e\x4f\x54\xd8\x98\x64\xea\x5b\x37\xa0\xb4\xb6\x0d\xe5\x2c\xdd\x16\x99\x00\x9a\xb2\x98\x08\x46\xb0\x9a\x1c\x2e\x13\xe4\x62\x5b\x13\xba\x37\xbe\xfd\x66\x85\xd8\x91\xe2\x62\x72\xc8\x36\xc3\x4d\xd5\x64\xcd\x24\x8b\x35\x32\x16\xf2\x62\xdb\x0b\xea\x6d\x85\x69\xd3\xc3\x1f\x5a\x67\x97\x6e\x95\x2c\x52\xad\x72\xee\x27\x6d\xa6\xc2\x36\xb5\x90\x30\xa3\x4f\xbb\x5f\xa2\x7c\x05\x49\xde\x44\x7e\xca\xfe\x53\x26\x96\x15\x43\x4f\xbd\x2c\x0a\xa8\x48\xaf\x30\x65\x96\x7b\x2d\x4b\x9c\xd0\x72\xef\x14\x57\xe5\x4a\xb4\x3e\x0b\xe7\xcd\x27\xe1\x84\x94\x8c\x90\x92\x51\xb1\x46\x21\x25\x03\xa1\xb6\xa5\x64\xac\x52\x41\x97\x19\x69\x33\xbf\x21\x14\xad\x2d\xd4\x56\x32\xeb\xbb\x42\x8f\xdc\x3c\xed\xc0\xd9\x39\xfd\x98\x2d\xfb\x8b\xfd\xa1\x32\x6c\x6b\xe1\xb3\xf2\x6c\x7d\x9b\x2b\x9b\x97\x5d\x17\x58\xc4\x89\x85\x20\xb4\x41\xd5\x45\x1b\xd9\x32\x73\xee\x23\xfb\x81\xbf\x90\x67\x22\x4e\x10\x56\x68\xca\x01\xd7\x2a\x8f\xe1\x81\x83\x50\xc0\xd2\x37\xb1\x1a\x18\x5d\xe3\x29\x89\x4d\xe1\x50\x2f\xf4\xd2\x1a\x95\xad\x3b\xb8\x0a\x69\x17\x40\x63\xcd\x32\xb8\xd8\x8e\x47\x66\xc2\x21\x4d\x08\x1e\xc8\x0a\xd4\x4d\x0c\x36\xcc\x1f\x33\x67\xf5\x1f\xcf\x50\x5f\xdf\x4f\x54\x16\xc7\xeb\x01\xef\xd5\x8d\xed\x91\x8d\x05\x4f\x67\x99\x9d\x8f\x0f\x4d\x05\x69\x13\xa1\xb5\xe8\xac\x86\xc1\x38\x4f\x75\x84\x63\xad\x8b\x2f\xdf\x38\xaf\x12\x29\xbb\x11\xcc\x92\xbf\x81\xf4\x31\xcc\xc2\xff\x6c\x38\xbe\xf1\x31\x7b\xe0\x32\xcb\x2a\x00\xec\xc9\x01\x7e\x49\x24\x58\x85\x32\xcf\x40\x21\xd7\xbd\x88\xa7\x50\x39\xce\x65\x76\xdb\xcc\xb7\xe2\xfc\x0f\xd5\x50\x0d\x79\xe7\x36\x2e\xcd\x24\xd2\xda\x7b\x62\x6f\x16\xdd\xc6\x11\xbe\x75\xfc\xe2\x36\x15\x33\x0e\x92\x58\x32\x77\xd0\x12\x16\xe4\x6f\xc6\x67\xa9\x89\xbd\xa3\x7e\x28\x56\xe5\xce\xa6\x52\x7d\xc6\x2a\x9a\x68\xce\x9d\xa3\xb2\xed\x28\x26\x31\xe7\xca\xfb\xb5\xf2\x56\xcc\xe0\xc2\xef\xbd\xc6\xed\xb1\x6c\xf7\x78\x31\x86\x59\x20\x67\x26\x49\x4c\x75\x7f\xc6\x35\x68\xeb\xc2\x7b\x76\x51\xf7\x89\x7d\xa2\x27\xba\x6a\x17\xad\x1a\x7f\xb3\xbd\x55\x2c\xf5\xb6\xf3\x68\xc7\x2d\x60\x6e\x2e\x2d\xa8\x58\xfe\xa2\x2d\x74\x5c\x13\xa2\x20\xe8\x66\x99\x4a\xb6\x3c\xc3\xb3\x16\x47\x32\x8b\xeb\x14\xcf\xb4\x12\xa1\xb8\xbe\x25\xc5\xd8\xc8\xb1\x26\x96\x17\x61\x94\x0a\xea\xce\x7e\x29\x6f\xbd\x7e\x77\x80\x85\xf2\x83\x5f\xca\x2b\xc2\x5e\x95\x43\x13\x94\x80\x23\x95\xe2\x2c\x78\x12\xf6\x44\x42\xd9\x93\xee\xcc\xe4\xe8\x3b\xe7\xbf\x70\xe2\x5d\xc5\x9a\xae\xdc\xd8\x5b\xac\x32\xae\xc2\x60\x6c\x74\xd2\x28\x1b\x7b\x00\x8e\xd5\x56\xe2\x26\x45\x37\x2a\xbf\x6c\x56\x38\xa4\xf2\xd3\xba\x32\xc7\x4d\xbe\x5d\x02\x30\xd5\x28\x64\xbd\x8d\x15\x13\xbc\x4c\x00\x1b\x2a\x6c\x65\x37\x1f\xd8\xd3\x76\x04\xb0\xc7\x14\x42\x19\xb0\x93\xe5\xfe\xe0\x97\x4d\xd0\x43\xfb\xe6\xbf\xf3\x87\xa0\xbf\xdb\xe2\x2c\x15\x2f\x3e\x32\x2e\xec\xab\x27\xd9\x7b\xfa\xb5\x1c\x9f\x58\x4b\x89\x8b\x5f\xe6\xe8\xa3\xa2\x88\x53\x08\x68\x2d\x16\x67\xce\xc0\x53\x67\x65\x2d\xf4\xe0\x9f\xd2\x21\x11\x8c\xe8\x39\x39\x5c\x87\x8c\x07\x4f\x31\xc3\x63\x00\xc3\x3e\x81\xa0\x43\x90\xb2\x73\x0d\xca\x9c\x44\x53\x1f\x14\x98\xac\xe6\xf1\x36\x95\x39\xaf\xfa\x0d\x7d\x1a\x09\xdc\x62\xf1\xe6\x91\x2b\xd5\x87\xf6\xce\xf6\xbf\x99\xa2\xd1\xef\xdc\xff\x38\xb8\xeb\xde\xdf\x3c\xdc\x5d\x14\xb4\x8d\x8b\xab\x87\xfb\x7e\xf7\xae\xf2\x59\x9e\x06\xfc\xd3\x43\xf7\xa1\xe6\x91\x6b\xe0\xaa\xf3\x7d\xb7\x50\x42\xff\xa7\x87\xce\x55\xaf\xff\xeb\xe0\xe6\xe3\xe0\xbe\x7b\xf7\x73\xef\xa2\x3b\xb8\xbf\xed\x5e\xf4\x3e\xf6\x2e\x3a\xfa\x4b\xff\xdd\xdb\xab\x87\x4f\xbd\xeb\x81\x8b\xe8\xf6\x1f\xfd\x72\x73\xf7\xe3\xc7\xab\x9b\x5f\x06\x5e\x97\x37\xd7\x1f\x7b\x9f\xaa\x66\xd1\xb9\xbf\xef\x7d\xba\xfe\xdc\xbd\x5e\x5e\xaa\xbf\x9a\x1a\xb5\x75\xb3\xbd\xfb\xd7\xb3\x75\x79\xd2\xdd\x70\x6e\xcf\x04\xfd\x27\xb8\x5c\x6e\xcd\x16\x3d\x3d\x71\x7f\x99\xc2\xfa\xa7\x9a\x73\x3b\x77\x5e\xce\xf4\x1e\x59\xe6\x13\xce\x64\x01\x85\xc7\xd2\x65\x75\x17\x46\x7b\x8e\x3a\x70\xc8\x40\xcf\x29\x74\x0a\x49\x23\xd9\x48\x5d\x14\x01\xec\xc3\x84\x4e\x29\x04\x14\xa0\x53\x54\x5e\xf0\x62\x83\x76\x4e\x30\x04\xeb\x6e\x8c\x97\x9d\x06\x59\x4e\x18\x87\x9d\x72\x8e\xdc\xc5\x42\x8c\x15\xc4\xc0\xfa\x9a\xc2\xf4\xe5\xec\x16\x40\xb6\x45\x39\x8a\x4b\xb9\xc5\xc2\x06\x2b\xb6\x3c\x21\xe8\xc7\xbf\xe5\x83\x02\xc7\x8b\x35\x18\xa4\x0b\x15\x28\xed\x03\x91\x1a\xaa\xae\xda\x9e\x85\x9e\xdc\x31\xb7\x16\x71\x38\xb7\xb6\x6e\x3f\x78\xc9\x52\xe6\x21\xb9\x15\x5c\x66\xfa\x78\x9b\x19\x95\xf6\xf8\x39\xba\x07\x14\x19\x99\x5b\x1c\xf4\x2a\xce\x92\x74\x4c\x19\xa2\xd3\x59\x02\x3c\xc6\x98\x21\x86\x64\x82\x9f\x29\x77\x05\x57\x4c\x5d\x1a\xa0\xa3\x95\x08\xd1\x29\xaa\x3d\x28\xe7\xa8\x13\xc7\xb2\xc8\xe0\x0a\x3b\xc7\x71\xd1\xd3\xe2\xb0\x7d\xf0\x35\xcd\x58\x2d\xdb\x2c\xed\xa3\xfc\xc8\x01\xc5\x76\x8f\x93\xb3\xc8\x0e\x8b\x22\xc3\x16\x52\x8b\xa6\xe0\xc0\x6d\xe5\xc1\x46\x32\x4c\x1f\xcb\x27\xc7\x9a\x57\xc9\x31\x0e\xb1\x68\xbb\x1e\x2d\x74\x51\xd3\x4e\x33\xca\x0e\xe0\xa0\x6d\xd6\x67\x2d\xe0\xf6\x8a\x2e\xdd\x8c\x93\x52\xa9\xbb\xc6\xfd\x15\x4a\xe5\x55\x76\xb6\x53\x27\x55\xb5\x10\x09\x47\x72\x90\xed\xff\x35\xe6\x71\x0b\x9f\xde\x64\x5f\x2e\x95\x34\x07\x1e\xdd\xd6\x75\x5d\x2d\xe4\x3f\x5b\xf7\xd5\xd2\x7d\xb8\x23\xe4\xac\xe6\x52\x24\x94\x0a\xa1\x11\x78\x29\x31\x65\xb6\x80\x14\xc9\xdc\x68\xae\x60\xbb\x3e\xc7\x59\x49\x45\x3c\xe4\xcf\x05\x9d\x78\x4a\xa4\xc4\x35\x58\x30\x9e\x25\x6f\x1b\xc6\x90\x9d\x50\xfb\x61\xc3\xfd\xe4\xce\x64\x5f\x7f\xb5\x4c\x46\xbf\xf3\x15\x7a\x37\x51\x2d\xc3\xc6\x2e\x88\x19\xdd\x98\x54\x46\xcd\x5f\x4e\xf2\x18\x20\x2e\xbc\xd0\xa8\x3a\xaf\x55\x43\x6b\x60\x99\x60\x95\x75\xc1\x7c\xcf\xe3\xfa\xa1\x43\x5e\xeb\x1b\x83\x8d\x5b\x77\x10\x2e\xd2\x67\x8d\x5d\x57\x70\xd3\xfa\x15\xdb\x23\x3e\x9d\x1a\xb9\xa0\x60\x02\x3e\x41\xd8\x64\x90\xe6\xd2\x94\x4c\xa3\x89\x71\x8e\xe9\x2b\xe3\xe4\x91\xbd\x78\x0b\x52\x88\xb1\xee\xf8\x2d\x01\x50\xeb\x17\x7d\xdc\xe8\x73\x21\x72\x1d\x44\x46\x0a\x61\xd4\xde\x46\x30\x7e\xcc\xbc\xe0\xd9\x8a\x0d\xee\xad\xd7\x16\x5b\x7d\x83\xda\x9a\x25\xfa\xd6\x55\xd8\xcc\xe6\xe6\x15\xb6\xdc\x42\xc1\x6f\x3a\x04\xaf\xb6\x66\xd5\x08\x76\x50\x5a\xf3\xa0\xc8\xe9\x59\x26\xac\x49\x9c\x9e\x0e\x2d\xfc\x87\x9e\xae\xa3\xf6\x9f\xdc\x8c\xfe\x64\x14\xe1\xb4\x06\x2f\xc6\x6b\x2d\x03\x4f\x47\xa7\x5a\x66\x75\x38\x06\x36\x7e\x44\xa2\x53\x03\xc8\xf8\x1e\x82\x58\x3b\xb7\xbd\xf7\x27\xe8\xbd\x9f\xc8\xf7\xfe\x68\x4c\x17\xf9\xf1\xb7\x54\xb3\xc5\x3d\x41\x97\x2b\xe4\x92\x14\x0f\x3d\xec\x94\x12\x1f\xb0\x3b\xc6\xb2\x01\x54\xc7\x05\xf4\x97\x85\x6f\xc0\xa3\x0f\xe5\x22\x8d\xd3\x3b\x8b\x64\xb7\x7e\x33\x23\x61\x53\x59\xb1\x72\xf1\x23\x1b\xce\xcb\x9e\xb1\x93\xcc\x35\xd6\x98\x47\x6c\x5d\x02\x51\xb7\xb7\x98\x77\xbe\xe3\x08\xeb\xe5\xb7\xd1\x8a\x4c\xf6\x4e\x56\xa7\x27\xe7\xa1\x75\xa1\x1d\x21\x35\xa1\x6a\x56\x05\x33\x9f\x23\x66\xe5\xa2\xac\x92\xbe\x8e\x6d\xbb\x35\x88\xe7\xef\x54\x51\xc4\xa6\x72\xd4\x88\xf6\x61\x97\xed\x77\x97\xed\x22\x95\xa5\x38\xb8\xf5\xaf\xef\x0b\x23\x45\x7a\xcd\x38\x73\xaf\x56\x65\x32\x06\x5f\xa8\x93\xb9\xba\xbc\xf5\x9a\x8e\x72\x8f\x26\xab\x3d\xe5\xf7\x26\xda\xc2\xf8\xaa\x17\xc7\x5a\x1e\x6a\x47\xd9\xea\x52\x9c\x9a\xb4\x55\x45\xa7\xe4\xc4\x94\x33\xcb\x23\x44\xec\x79\x85\xed\x66\x02\xbb\x26\x84\x0a\xd7\x89\x05\x8f\x5c\x0b\xe7\x60\x4d\x5d\xa0\x6e\x8f\x6c\x11\x9e\x73\xdd\xf9\xdc\xbd\x1c\x74\xaf\xfb\xbd\xfe\xaf\x15\xc0\xa0\xc5\xc7\x0e\x1b\xd4\x7b\xe1\xfe\xd7\xfb\x7e\xf7\xf3\xe0\x53\xf7\xba\x7b\xd7\xe9\xaf\xc0\x0d\x5d\xd6\x59\x1d\x26\x65\x2a\xab\x94\xc7\x75\x70\x29\x9d\x91\xb9\xa2\xf7\x45\xf4\x50\xaf\x13\x4a\x6a\x10\x44\x0d\xa6\x03\x8b\x89\x40\x31\x79\x26\x09\x9f\xe5\x46\xdd\x4a\x82\x79\xd0\xa2\x15\xed\x2f\x83\x17\x85\x36\xcb\x34\x3e\x47\xa6\x36\xa2\x57\x1e\x3a\x6b\x10\x44\x3e\x2c\x08\x7b\xaf\x10\xf9\x32\x4b\x68\x44\x95\x97\xf3\xc9\x85\x75\xee\x18\x9f\x2b\x84\xf4\xae\xd8\x5c\x3b\x0b\xe1\xd9\xb9\xc5\xc1\x0f\x3f\x58\xb4\x35\x64\x27\x2a\x83\xba\x5b\x59\x19\x6a\x07\x66\x85\x1a\x4f\xfb\x02\x12\xdf\x06\xa3\xdb\x87\x71\x62\x31\xb1\xc9\xe6\x6d\xd6\xa0\xf4\x55\x0f\x72\xf5\x6d\xb8\x2c\xb8\xa8\x70\xae\x97\x47\x17\x35\xdb\xa9\xaf\x1c\x23\x54\x28\x44\xbb\x03\x48\x15\x1b\xf0\xbf\x66\x94\xc7\x42\x21\x20\x66\x02\x75\x31\x12\x64\xca\x95\x56\xc0\x4c\x18\xc5\x89\x16\xaa\x28\x4e\xe8\x3f\x01\x7c\x4c\x90\x33\x2f\xec\xc4\x41\xb6\xe5\xce\x0b\x0b\x0c\x72\xf6\xc8\x2e\xbb\xb7\x77\xdd\x0b\xcd\x90\xce\xd0\x83\x04\x5c\xb1\xc2\xd4\x2f\xed\xf6\x36\xe2\x98\x1f\xfe\x41\x99\x54\x04\xd7\x45\xd0\x11\x21\xb8\x68\xce\x1f\xb2\xfe\xba\xf0\x5d\xf5\xf6\x86\x67\x05\xcb\x98\x33\x3f\x5c\xd7\x56\x11\xf7\x12\x2d\x76\x9e\xc8\x76\x87\x5f\x0a\x14\xf1\x71\x55\x40\x12\x29\x52\x7d\x8f\xd4\x06\x64\xd6\xe6\xf3\x2b\xf4\x79\x0b\xdf\x2e\x9b\x67\x1f\xe2\x12\xa5\xca\x61\x5e\x0d\x12\x6c\x56\xce\xa8\x34\xcf\x5a\x51\x51\xbc\x06\x06\x4b\x69\xeb\x0f\xc9\x18\x33\x24\x52\xc6\x4a\xb8\xbf\xbe\x9d\x6f\x31\xd2\x68\xdd\xa3\xaa\x69\x86\xa7\x3c\x65\xa6\x1e\xaf\x1e\x55\xc5\x60\xe4\x8c\x30\xb5\x62\x30\xaf\x85\xb0\x53\x1a\x6a\x7b\x41\x76\x2a\x06\x5a\x87\xb3\x53\xe5\xcd\x82\x52\xe5\xeb\x5d\xcb\x2e\x92\xb1\xe0\xd2\xd2\x87\x2a\xbb\x9f\xab\xb5\x6c\x2c\x9f\xb6\xee\xae\x8f\xe5\xd3\xea\xae\x62\x12\x3d\xad\x7b\xd9\x94\xd3\x59\x13\x5b\xe9\x7d\xc1\xd8\x37\xd7\x4f\x6d\xcd\x1d\x28\xf0\x1f\x3d\xa1\x1f\xfa\x9f\xaf\xd0\x88\x6a\xb9\x57\x5f\x2b\xd7\x58\xcb\xd8\x0f\x22\x71\x56\x69\x6b\xd9\x4d\x45\x92\xdd\xbd\xb0\xf0\x4e\x94\xf2\xa4\x04\x7d\xa3\xe1\x31\x71\xa6\x66\x61\x61\x14\x4b\x35\x77\x04\x66\x31\x9f\x9a\x79\x7c\x90\xe9\x68\x44\xbf\x9c\x29\x2c\xbe\xa9\xa1\x87\x89\xe9\x18\xfc\x83\x0f\x07\x7a\x44\x5b\x5e\xc4\x55\xcd\x21\x5b\x80\x3c\x23\x9b\x9d\xd9\xa5\x79\xf7\xff\xf0\x21\x40\x04\x00\xca\x81\xf3\x0d\xda\x38\x09\xfb\x8a\xdb\x49\x79\x45\xee\x02\x7a\x4d\xc4\x85\x20\x16\x59\xc0\x14\x8d\x9d\x61\xa1\x28\x58\x6b\x1d\xfa\x4d\xa1\xec\x41\xbe\x44\x7e\x89\xfc\x09\xce\x21\xc6\x87\x84\x80\x7b\x69\x46\x93\xf5\x94\xde\x8b\x82\x67\xb4\x74\x02\x6d\xb8\xae\x05\x44\x05\x83\xcc\x4a\x11\xab\xfb\x4c\x98\xda\x89\x7e\x02\x4d\x54\x60\x1d\x34\xf3\x71\x98\xda\xad\xbd\xcb\xfc\x72\x73\x71\xd0\x7e\x4c\x95\x12\x18\xee\x79\x9b\x5d\x66\x1d\xfa\x75\x61\x06\xcf\x8d\x3d\xd7\xf0\xea\x22\x5d\x56\xe4\x13\x58\x6a\xe7\xa5\xf1\xf3\x58\x60\x57\xb3\x61\x43\x84\x26\x49\x8c\x15\xc3\x43\x06\xb1\xca\x69\x79\xcd\x4d\x9f\x7a\x6f\x95\xba\x5c\xb9\xe4\x1b\xc0\x11\x15\x9a\xf9\x44\x20\x0f\x76\x17\xd1\xfb\xeb\x00\x1e\xc0\x40\x1e\x44\x02\x71\xe7\x4b\xad\x58\xa6\x7e\xbc\xe6\x7c\x99\x64\x87\x1b\xc8\xe8\x66\x30\x5a\x68\x24\x33\x41\x22\x7d\x95\x9d\xa3\xdb\x84\x68\xc9\x2b\xd5\xd2\x57\x9a\x24\x0e\xba\x6d\xb9\x74\xb8\x16\xdc\xe0\xde\xe7\xe5\xe9\x1e\x4b\x26\xe6\xa0\x0b\x97\xcf\xcc\xa3\xc1\xee\x61\x2a\x3c\xfa\x82\x09\x19\x0c\x89\x45\x2d\x12\x38\xfc\xdc\x44\xed\x82\x29\x09\x17\x2e\x32\xfa\x4f\xcd\x7e\x05\x91\x13\x5e\x9b\x19\xea\xcf\x76\x3f\x73\x70\xa4\xdc\xe3\x24\xdc\x7d\x58\x17\x8c\xde\x40\xae\x29\xdd\x81\x05\x11\xa7\x89\x2f\x36\x8f\x3d\xb1\x40\xba\xf6\x6e\xb5\x43\x83\x5b\x32\x37\xb5\xf9\xa0\x76\xb9\xeb\x22\x57\x66\xe6\xc6\xf7\x9a\x7d\x9e\x1b\x90\xf3\x3c\x0a\xaa\x64\x5e\x4e\x10\xe9\xbb\xb6\x6e\x89\xf5\x3c\x07\xa9\x58\x0b\xc7\x23\x87\xa3\x5f\x87\x73\xdb\x0c\x9e\x7c\x58\x9a\x08\xd5\xec\xd2\x56\x09\x01\x31\xda\x06\x3a\xc9\x02\xc4\x9f\xdd\x36\x86\x8c\x95\x2a\x5e\x3d\x53\xde\xd6\xad\x06\x52\x72\x2e\xca\xec\xcb\xbb\x56\xd8\x81\x85\x09\x04\xd0\xb8\xf5\x41\xe3\x6c\xc9\x98\x6c\xef\x01\xc4\xa3\x12\x80\x96\x90\x3b\xd0\xca\x82\x83\x35\x7a\xaf\x4a\x17\x2b\xac\x4e\xa3\xdc\xb0\xc2\x17\x9a\x97\x5c\x6e\xe9\x81\xd3\x93\x99\x0f\x20\xdb\x76\x9b\x18\xa0\xc2\xfc\x8d\xf7\x00\xda\x24\x31\x32\x90\x0f\x06\xd2\xda\xd2\x2e\xf3\x9c\xcc\xb0\x20\x4c\x3d\xb2\x3b\x3d\x0a\xf3\x45\x1e\x89\xe1\xa2\x80\x5c\x99\x01\x28\x46\x3c\x42\xd8\x7e\x05\x44\xaf\x0b\xc3\x93\x03\xf3\x12\xa8\xa6\x7b\x44\x26\xf8\xde\xbc\x63\x80\x22\x2c\x50\x92\x9e\x2a\x1d\xe5\x6a\xbc\x16\x20\xa3\x09\x05\x9c\x86\x98\x48\x7b\x21\x51\x65\x81\x38\x32\xf1\x3b\x25\x0e\x58\x1b\x3e\xcb\xf8\x57\x15\xc3\x76\x86\x02\xe6\x0c\x74\xf2\x91\x79\x7d\x2c\xc1\x61\x35\xca\xfa\x86\xaa\x04\xac\x33\x8d\x33\xc7\x17\xfc\xd3\xac\x10\x17\x74\x4c\x99\x57\x0d\xcb\x4e\x6f\x8a\x67\x60\xde\x35\x67\x90\x8f\xb2\x3b\xad\x6f\x73\x1c\xce\x60\xc4\xff\xf7\xef\xff\x73\x46\xeb\xbc\x1f\x72\x60\x29\xd0\x86\x95\x5c\x6f\x59\xfc\x95\xf7\xa0\x57\x6a\x20\x3d\x3c\x9d\x56\x16\xf2\x36\xf2\x5f\xed\xe5\xa6\x37\x0d\x57\x13\xe3\xee\x2d\x6e\x77\xf0\x8d\x88\x74\xc9\xd9\x30\x57\xcc\xeb\xd2\x92\x4a\xc8\x4d\xd0\x23\x31\x27\x39\x33\x10\xf8\x95\xe6\x17\xcc\x34\x8f\x2c\xff\x44\x1a\x10\x19\x83\xdb\x6b\x7e\xc8\xa9\xd3\x90\x30\xcb\x78\x7f\x1e\x29\x91\xbb\xc3\xbd\x58\x68\x57\x17\xc5\xc4\xb0\xea\xf6\x4b\x37\x6d\x89\x73\x7b\x00\x96\xdb\xc4\x8c\x4e\xb0\xdc\x5f\x68\x4e\x65\x3d\x2f\x63\x4d\xf7\x85\x87\x55\x41\x3a\x66\x90\x26\x45\x56\x2f\x48\x2a\x89\x30\x9c\x2e\xc3\x10\xb3\x3b\xc1\x87\xe7\x84\x08\xd1\x15\xbe\x46\x32\xc5\x74\xad\x6c\x06\xfd\x7e\x35\x78\x68\xc1\xd9\x80\xc7\x44\x0c\xe2\x54\x2d\x1c\x8b\x65\x19\x06\xfa\xa3\xcb\x54\xcd\x57\xb7\x2f\x13\xbc\x58\xcf\x68\x19\x60\xab\x7e\xbf\xa6\xd9\xd5\x12\xb3\x17\xe2\x53\x94\x9a\x6b\xe0\x50\x49\x09\x0e\xd5\x46\xbc\x16\x4c\x24\x70\x03\x33\x05\x38\x84\xb9\x26\x65\xaf\x68\x03\xda\x0e\x23\x47\xc3\x34\x37\x29\x65\x65\x30\xe2\xb3\x47\xf6\xd1\xd4\x91\x01\x2d\xcf\x0c\x20\x82\x74\x23\xf2\x65\xc6\x25\x29\xe4\xbf\x55\x94\xb6\xb0\x89\xaf\x76\x18\xd5\xc2\x7a\xfe\xd1\xf6\xb2\xfa\xab\x03\xdb\x2e\x2e\xf8\xe2\x94\xab\x77\xe0\x56\xe2\x60\x44\x67\x54\xef\x9d\x41\xe5\x49\xdb\x5f\x79\xe5\x3c\xa6\x0b\xc0\xc3\x54\x32\x3f\x41\xd9\xf4\x4a\x1b\x22\x21\xcf\x04\xcc\xe9\x30\x46\xbf\x80\x49\xd1\xae\x57\xc3\x4e\x56\x1d\xa0\x3c\xf9\x14\xd8\x02\x8a\xcb\x23\x28\xa6\xe8\x55\xed\xc5\x62\xf2\xd1\xd6\x79\x72\x55\x81\x29\x6b\x88\xe7\x1d\xbf\x90\xcb\x9c\x28\x44\xbe\x28\x62\x4b\xbd\xf6\x5d\x26\xe3\x62\xf2\x03\xaa\x4e\xc6\xaa\x97\x1d\xf7\x5e\x74\xbb\xe3\x12\xdf\x5d\xaa\x66\xec\xae\x7c\x9b\xba\x38\xc1\x2c\xb6\xf9\xb8\x56\xc9\xd0\xc2\x16\xcc\xce\x18\xdd\xb2\x4c\x05\x9b\x55\xea\x21\xe0\x9b\x36\x0d\x54\x3f\x5c\x64\x4e\x61\xd4\x2a\x0b\x84\x57\x70\xa1\x25\xf7\x94\x29\x9a\xe8\xcd\x61\xc7\x20\xd1\x08\x22\xe3\x2c\xba\x23\x44\xb6\xd7\x01\x08\x52\x29\x29\x1b\x0f\x2c\x25\x5d\x6a\x69\xb3\x8b\xa1\xb8\xa7\x3e\x9b\xa6\xcc\x8f\xdf\xbb\x86\x96\x1b\xd5\xcd\xb6\x06\x70\x37\x97\xd4\x0a\x1a\x07\xe3\x6e\x32\x16\x95\xcf\xe5\xc2\x0e\x68\x6c\x48\x41\x4d\x45\x71\x98\xe8\x3a\x76\x77\x90\xe9\x16\xc1\x2f\xf2\x2b\x44\xda\x44\x55\x93\x7e\x06\x91\xfa\xaa\x26\x13\x57\xd6\x66\xe0\xf6\x58\x26\xa2\xd9\x7a\x66\x19\xce\x40\x29\x99\x17\xbb\xee\x6c\x3a\x02\x4e\x92\x21\x8e\x9e\x32\x2d\x2c\xb3\x45\x70\xe1\xea\x41\x68\xb9\x12\x0a\xde\x99\xcd\xa5\x07\x1a\x81\x74\xe3\x7b\x0b\x0d\xfc\x91\x1d\x76\xde\xb9\xa1\x9a\xc5\x95\x33\x78\x57\x66\xf4\x26\xb7\x21\x26\xb3\x84\xcf\xa7\x35\xf7\x59\x39\x81\x71\x9b\x48\x9d\xba\xfc\xc9\x9d\x5e\x65\x25\xa6\xb7\xf6\x65\xb6\x90\x0d\xb5\x03\x30\xae\x35\xb8\xe4\xa7\x84\x0f\xc1\xa4\x6a\xcd\x0f\x2e\xc3\xc7\x4b\xf5\x28\x9f\xe7\x75\xf3\x8e\xca\x27\x92\xca\x59\xa2\x95\x99\xfa\x1e\x4c\xce\xc9\x7e\xd7\xcd\x20\x24\xac\xb6\x0e\x36\x8f\xd6\xae\xfc\x7c\x1f\xb0\xcf\x57\x4e\x12\x30\xef\x1a\xfe\x55\xb2\xb2\x99\x54\xc3\x33\xe3\xa4\x56\xfc\x91\x29\x3c\x76\x8b\x6b\x85\x4b\xfe\xc2\x88\x90\x13\x3a\x2b\x14\xc2\xdc\x3a\x3c\xdc\xee\x68\xfb\x3f\x26\x18\xba\xb2\xcd\x16\xa6\x6e\xf5\xf9\xec\xd4\xa0\xb3\xe8\xdd\x29\x67\x38\xca\x6d\xb2\x51\x82\xa5\xa4\xa3\xb9\x07\xaa\x92\xc5\xf9\x42\xea\x5a\xd1\x88\xe1\x55\xbe\xab\x62\x73\x86\x3a\xbb\x41\x15\xd8\x3e\xa3\xf2\xa1\x78\xf8\x69\xec\x83\xee\xe9\xdb\x6c\x11\x7a\xc7\xc9\x09\x96\xea\xb5\xe0\xc1\x06\x3e\x61\x33\x14\x80\xa6\x78\x4d\x7b\xde\x49\x15\x69\x98\x0b\x1b\x29\x47\x0b\xcb\xe4\x68\x4b\x33\xab\xc3\x65\x48\x2b\x3e\x7c\x91\x2a\xe4\xb0\xc2\xce\xd3\x3a\xa3\x33\x89\xeb\x73\x99\xa1\xb4\x00\x98\x45\xfe\xf1\x09\x92\x5b\x81\xb2\x35\xd9\x94\x97\x24\x21\x3b\x09\x36\xdf\x60\x87\x96\x23\x39\xbc\xbd\xb9\x74\x5f\xe6\x65\x29\x56\xdb\x55\x36\x88\x81\xaf\xc1\x48\xaa\x1e\xfa\x2f\x66\xa0\x36\x0c\xbe\x6a\x15\xc1\x26\x0a\x54\x5e\x3d\xda\x36\xed\x72\x2f\xb4\xc4\x0c\xdf\xee\xf7\x7c\x8e\x85\x4d\x9d\xcf\x38\x93\x13\xdb\xb8\xcf\x5f\x39\x54\x7d\x61\x5c\x9f\x48\x93\xb0\x9a\x95\xa7\x6f\x23\xde\xbb\x78\x43\x35\xdb\x17\xd6\x71\xad\x38\x1a\x13\x40\xe2\xa1\x2c\xa6\xcf\x34\x4e\x71\x72\x54\x7b\x62\x67\x89\x36\x3b\xa2\x7e\x35\x87\x69\x64\xe9\xc9\xe3\x41\x89\x92\xee\x3e\x5a\xc0\xfc\xb4\x8b\xd3\xc2\x25\x68\xc7\xb1\x34\x0a\xc3\x9b\x97\xd8\xb6\x86\xc6\xb0\x23\xb3\x00\x11\x41\x94\x2c\x5c\xb2\xf9\xd8\x77\x2f\x4d\x1a\x1a\xc7\xf6\x8b\x0c\x0e\xa2\x00\xc3\x86\x0b\x68\x96\x66\x8d\x5e\x9f\xeb\x96\x8f\xd6\x5b\x97\x3b\xd7\x3f\x63\xe5\x51\xe5\xa7\x2b\x08\xc3\x6d\x38\xa7\xcd\xe5\x61\x07\x40\xdb\x42\xe1\xa7\xee\x18\xb6\xf3\xfe\x6d\x81\x70\xbc\x20\x12\xec\x4e\x44\x3e\xa2\x6d\xd2\x0a\x49\x79\x61\x29\x0e\x25\x2f\x9f\x3a\x6c\xaf\x1c\x29\xab\xbd\x4b\xd4\x8e\x93\x7c\x67\xdd\x8f\xfb\xbb\xe0\x57\xef\x97\x9d\xec\x0f\x80\xb9\xc5\x90\x8f\x9f\xda\x72\x3f\x70\x78\xbd\x18\xce\x05\x9f\xd7\x8a\xe8\x58\x3b\xbc\x46\x71\xb1\x0b\xe4\xdc\xc7\xf2\xda\xe4\xcb\xc6\x8b\xbb\xcf\xad\xb6\xee\x58\x76\xa1\xa3\xed\xd9\x7b\x68\x77\xa3\xf7\x41\x08\x52\x6f\x76\x8b\x56\x40\x3a\xb9\x25\xdb\xe5\x21\xab\xaa\xd1\xb8\x3d\x7c\x84\xcb\x2d\x1d\xcc\x04\x19\xd1\x2f\x1b\xa9\x02\xb7\xf0\xa9\x55\xaf\x35\x99\x4b\x55\x1f\xc1\x2d\x08\x55\x22\xbd\x40\x5a\x4b\x69\x5b\x19\xee\x91\xe5\x19\xb9\x36\x1d\x57\x0b\xc3\x5c\x14\x7e\xda\x14\xfa\x74\xf7\x15\x2a\xcd\xba\x4e\x94\x9a\xc9\xf3\x0f\x1f\xc6\x54\x4d\xd2\xe1\x59\xc4\xa7\x26\xff\x83\x8b\xb1\xf9\xe3\x03\x95\x32\x25\xf2\xc3\x5f\xfe\xfc\xe7\x7c\x89\x87\x38\x7a\x1a\x1b\x38\xa7\x45\x7f\x67\x71\xc9\x09\x96\xdb\x45\x94\xb9\xd4\xc9\x3d\xa7\xd0\x7b\xdd\xb8\xa4\x65\xfd\x8d\x54\x78\x3a\xf3\x43\x90\x4d\x8d\x47\xa9\x70\x5e\x59\x06\xf2\x61\xf5\x34\xd1\x04\xcf\x66\x84\xd5\x9b\x5d\x4c\x82\xf3\x16\xac\xc7\xa5\x48\xdb\x11\x92\x2f\xb3\x04\xb3\x22\xec\x07\x94\x49\x13\x24\x22\x4c\x59\x48\x8a\xbc\x36\x3d\xec\x46\x03\x3d\x65\xf8\xff\x7a\x29\xb0\x30\x47\x2a\xf3\xfa\x87\x6e\x38\xb6\x16\xb1\xab\x50\x8b\x3d\xd2\x95\xeb\x3f\xe7\xb4\x23\x8e\x6a\xcb\x92\x63\xef\x6d\xad\xb7\x6d\x76\x50\x24\x38\x1b\x90\x2f\x9a\xc9\xc9\x4d\x81\xe2\x1e\x24\x91\xa8\xf3\xcb\x3d\x92\x73\xa6\xf0\x97\x73\xf4\x99\x32\x10\x60\x7f\xe0\xa9\x90\xe8\x12\xcf\x4f\xf9\xe8\x74\xca\x99\x9a\xa0\xcf\xf0\xff\xed\x4f\x2f\x84\x3c\xa1\x5f\x09\x16\x96\x3f\xd8\xfa\x91\xae\x84\x1d\x6c\x21\x91\x32\x89\xc8\xb3\x3e\xa1\x7f\xfe\x5f\x68\x6a\x5a\x3e\x47\xdf\x7e\xf8\xf3\xff\x42\x7f\x84\xff\xfb\x7f\xd0\x1f\x6b\x2c\x0d\xeb\x41\xcd\x41\x99\xf1\xbb\xda\x30\x02\xa0\x94\x5c\x24\xf9\xaa\x66\x2f\x04\xcf\x57\xaa\xb2\xe5\x27\x1a\x3d\xf1\xd1\x68\xa0\x37\x86\x49\x20\x1d\xe0\xad\xcc\x0e\x3e\x6a\x30\xb5\x85\xe2\x4d\xd9\xc9\xbc\xe0\x93\xed\xd4\x20\x8d\x38\x76\x2d\xd3\xdc\x3c\x01\xc1\x6b\x85\xd2\xe3\x54\xc2\x57\x24\xd6\x5c\x75\x9d\xd3\xe1\xac\x8b\x0e\x74\xc0\x59\x90\x7c\x64\x1e\x27\x10\x17\x02\x4e\xfd\xe8\x69\x13\x60\x66\x09\x59\x79\x1c\x16\xc2\xba\xdf\x4c\xac\x2e\x4c\xed\xb5\xe2\x74\xe5\x42\xe7\xab\x43\x74\xef\xb9\xd8\x4a\xdf\x7a\x22\xb5\x29\x34\x2b\x8a\x9b\xb9\x82\xdb\xd8\x37\x6a\x28\x8e\x24\x17\x19\x7a\xb7\xb1\x8b\xd8\x12\xa8\xab\xad\xa8\x54\x98\xa0\xc6\x66\x87\x5e\x4f\xfd\x32\xfb\x64\xd5\x30\x21\xc2\xd1\xbd\x9d\x17\x77\x84\xd1\x6a\x11\x49\xb3\xc4\x8a\x11\x57\x80\x6c\xae\x5a\xd0\xfb\x0c\x57\x05\x1a\x87\x70\x5b\xc8\x1b\x62\x4e\xb2\xb5\xc0\x15\xd5\xeb\x99\x8a\x88\x5c\xf0\xed\xc2\xad\x13\xca\x16\xf2\x34\x6a\x83\xdb\xea\x65\xf2\x2b\x5b\x21\xce\xe1\x50\xf3\x38\x57\x16\x8c\x5b\xc2\xd6\x5e\xf1\x00\x70\x8b\xb3\x01\x20\xc5\x5d\x60\xac\x2e\x54\x04\xd9\x82\x6b\x1b\xc3\x75\xce\xf0\x5c\x41\x99\x52\x1d\x19\x81\x35\x2f\x5c\x12\x33\x09\xe1\x64\x5b\x8f\xc3\xab\x8d\x94\xc7\xa8\x15\xaa\x14\xc3\x48\x20\xdf\x72\x43\x8c\x5c\x53\xa6\xec\x04\x09\x0c\xc1\xc0\x6a\xa2\xdb\x93\x44\x9c\x8e\x70\x44\xd9\xf8\xc4\x83\x47\x05\xa8\x12\xff\x3a\xa8\xda\xa4\x7d\x2c\x9f\x76\x1b\xe0\xba\x75\xb5\x59\x1a\xe7\x15\x0f\x2d\xa0\x91\x71\xac\xd0\x05\x6c\x48\x85\xe5\x53\x1d\xa2\xd7\x02\x9c\xe0\x92\xd1\x65\xa4\x70\x20\x84\xcb\xc6\xe7\xa0\x0f\x88\xaf\x4f\x41\xa5\x12\x57\xff\xdc\x82\x8b\xba\x4c\x53\x9c\xa1\xff\x94\x51\x75\x97\x8c\x5f\x4e\xb8\x50\x83\x0d\xf1\x88\xcb\x2e\x15\x46\x4e\x13\x00\x12\xe2\xcf\x44\x3c\x53\xf2\x52\x84\xf5\x5d\x67\x2f\x1a\xa3\x99\x17\x4f\x09\xb8\xaf\xd3\x19\x87\xd4\xad\x11\x9a\x62\x36\x37\x8c\x52\x33\x17\x2c\x9f\x64\x56\x75\x19\xc9\x29\x4e\x92\x13\x24\x48\x2a\x4d\x35\x72\x49\x92\xd1\xa9\x2b\x00\x13\xa3\x84\x8f\x69\x84\x13\x34\x4c\x78\xf4\x24\x4d\x66\x25\x1b\x1b\x26\x35\x13\x3c\x22\x52\x7a\x92\x55\x8e\xa2\x60\x73\x5b\xa1\xe4\xb2\x22\x62\x4a\x19\x95\x8a\x46\x4e\x64\xca\xc1\x50\x4c\xe1\xff\x08\x83\x49\x18\x32\x85\x61\xb8\x5a\xd2\x23\x06\x14\x36\x65\xb6\x54\x18\x5c\xd7\x16\xeb\xd1\x25\x27\xd4\x1d\xa0\x1d\x40\x57\xba\x1d\x32\x50\xc5\x03\xb9\xe2\x48\x5d\xd8\xcf\xe0\x18\x2f\xdb\x02\x77\xc5\x13\x95\x6d\xc8\xec\xa4\x15\xe0\xb4\x20\x97\x21\x4b\xbd\x28\x48\x2e\x59\x46\x42\xcb\x90\xf4\x60\xc8\x35\xf8\x79\xab\xf6\xb4\xa6\x22\x88\x3c\x50\x9d\xae\xec\xb5\xa7\x2c\x4a\xd2\x38\x2b\xab\xaa\x45\x80\x67\xbd\x49\x1c\x79\x34\xed\xb5\xa0\x70\x82\xb0\x44\x2f\x24\x49\xf4\xff\x9a\xcc\x8b\xd3\xac\x5c\x88\x66\xc9\xa6\xa4\x0b\x74\xe2\xb8\x74\xdd\x8e\x6a\x1d\x2a\xea\x2d\x56\x13\x83\x35\x31\xe5\xca\x54\xb4\x35\xa8\xa8\xce\xbe\x65\x60\x34\x87\x09\x1f\xc2\x49\x07\xc0\x54\x97\x5f\xed\xa5\x73\xa6\x51\x44\x48\x4c\x62\x53\x9f\x33\x03\xf3\xb4\x47\xf4\x9b\x6a\xf8\xce\x02\x45\x5a\x00\x96\x5a\x36\xac\xd5\x42\xa6\x16\xab\x1b\x9e\xa1\xdb\x12\x20\x90\x47\x99\x11\x2e\xc3\xc3\x9d\x2c\x2c\xe1\xeb\x00\xac\x96\x26\xb1\xbf\x15\x5a\x13\x60\xb5\xd0\xe7\x0e\x00\x56\x4b\xf3\xac\xc9\x19\xe1\xe3\xbd\xe6\xba\xeb\x49\x5d\xf1\xe6\x09\x88\x06\x98\xce\xdc\x9d\x85\x2d\xe8\x0e\xe4\xbc\x6a\x23\xb6\x0b\x3c\xb6\x54\x03\xf4\x75\xc1\x63\x4b\x83\x69\x33\x78\x6c\x69\xa8\xed\x05\x8f\xad\x18\x68\x03\xf0\x58\xe3\xdc\x1f\xe8\x4d\xdd\x8c\x29\x40\x42\xd5\x30\x1d\xdd\x03\xc4\xc0\xd2\x31\x5e\x98\xc0\x01\x73\x8d\xb9\x3b\xda\xc6\x17\xc1\x68\x6d\xee\x6d\x5d\x38\x56\xc9\x09\xb1\xee\xde\xcb\xbc\x6f\x06\x74\x64\x5d\xb3\xfb\x89\x6f\xed\x06\x3b\x64\x84\x67\x16\xcb\xa0\xae\xc4\x51\x7b\xb2\xb6\x37\xc3\xe5\x05\xec\xcb\x02\xcb\x6f\x84\x5c\xf7\xb9\x54\x2d\x64\xc2\x5f\x6c\xc5\x2e\xd8\x86\x66\x53\xd6\x6e\x41\xe8\x74\x60\x95\xb6\x3a\xca\x51\xa6\xc8\xb8\xac\xd3\xe6\x87\x86\x32\xf5\xdd\x5f\x56\x72\x22\x03\xed\xe9\xd4\x43\xaf\x66\x47\xe6\xec\xb0\xcf\x48\x8c\xa2\x89\xd6\x8a\xa4\x56\x5f\xf4\x74\xcc\xcd\x2a\xd1\x14\x53\xa7\x48\xa5\xd2\xb8\x96\xa8\x7c\x64\x05\x2c\xdc\x33\xf4\x11\xca\x20\xe3\xe9\x4c\xeb\x5f\xd9\xfc\xa8\xde\x49\x8f\xe9\xb7\xdf\x7e\x47\xd0\xb7\x68\x4a\x30\x2b\xe8\xb0\xa0\x36\xe9\xab\x0f\xb0\x23\xd5\x84\x3c\xb2\xca\xa5\x40\xdd\x2f\xa6\xb6\x99\x8b\x37\xec\xb1\x11\x77\x3a\x31\x94\xf7\xc4\xd1\x04\xc9\x74\x68\xea\x53\x7b\x36\x0c\x27\x48\x5f\xf1\x31\x38\xaa\xe1\x46\x76\x83\x5e\x76\x0a\xf7\x1b\x03\x60\xdd\x8d\x4d\x6f\xe3\x0e\xdc\x23\xa7\x92\x14\x30\xc5\x2a\x9c\x66\x86\xf3\xf9\x07\x5f\x1a\xbc\xa1\x13\xe3\x43\xd0\xfa\x19\xb6\x96\x7d\x2d\x4b\x43\x38\x31\x78\xc9\xd2\x04\x0b\x7b\xf4\x1f\x99\x56\x34\x04\x79\xa6\x3c\x95\xc9\x1c\xc5\x9c\x91\x13\xd8\x09\x69\x34\x31\x8e\x55\xad\xb3\x60\x5b\x28\xe5\x99\xca\x54\x2b\xb4\xd0\x96\xab\xcb\x22\x15\x36\x58\x68\x13\x0a\xfd\x68\xf5\x9b\xc0\x57\xca\xcb\x8f\x44\xcd\xb4\x28\x1f\xae\xb8\xc4\xf3\x1b\xc2\x15\x17\x76\x55\x80\x2b\xce\xe0\x8a\x17\xe9\xd2\x46\xb8\xe2\xd2\x9a\x37\x83\x2b\xae\x5a\xf2\x0d\xe0\x8a\x0b\xcd\xbc\x19\xb8\xe2\x12\x45\xdf\x0c\x5c\x71\x69\x5e\x01\xae\xf8\xed\xc1\x15\x6f\x09\xc8\x5b\xcd\x8b\x0d\xae\x97\xa2\x6c\xbe\xf6\x26\x7b\x2f\x51\xef\x46\x6f\xb0\xe8\xa9\x18\xd4\x96\x5d\x57\xdb\x83\x00\x57\x33\xa1\xf5\x40\x80\x2b\x55\xf5\x7a\x56\xb7\x2d\xb0\x18\x28\x06\x07\x06\x01\x2e\x4c\x20\xc4\x57\xae\x1f\x5f\x59\xb9\xf9\x6c\xdf\x7a\x78\x2e\xe8\xb2\x7c\x21\x37\x84\x01\x2e\xac\x4f\xa3\x48\x4c\x10\xdd\x77\xb0\x13\xf7\x2b\xcd\xf7\x0b\x87\x7c\xa5\x2c\xef\x53\x51\x5a\x40\x72\x2d\xe1\x39\x94\x42\xa3\x84\xfb\xfe\xff\xb0\x73\x37\x88\x0c\x2e\x91\x37\xf3\xab\x98\xbd\xd8\x60\xab\x36\xde\xa1\x4e\x2b\xdd\x4d\xa2\xb0\x4b\xde\x5c\xd3\xc5\xec\x06\x71\x3f\x23\x51\x8d\x8d\x99\x4e\xe9\xae\x9a\x5d\x75\x91\x65\x18\x6c\xa0\x90\x2f\xe4\xa5\xea\xeb\xc9\x0c\xc7\xc8\xf8\xa5\x74\x60\x40\x49\x31\x5f\x8e\xa9\x54\xa2\x36\xb6\x69\x61\x84\xdb\xb8\x4a\x67\x69\xe3\x80\x18\x8f\xaa\xe3\xcd\x3e\x9b\x92\x29\x17\xab\x02\xab\x2a\xbf\xb4\x25\x96\x36\xf9\x94\xcc\x26\x64\xaa\x25\x99\xc1\xba\x8d\x34\x5d\xef\x2c\x69\xd9\xe6\xae\x99\x40\xc7\xc2\x26\xf0\x1c\xa1\xfa\xdd\xd8\x20\xa1\x36\x5e\xee\x6d\x97\xd9\x62\xb5\xae\xe9\x10\x72\x20\xde\xcb\x0d\x6e\xf6\xa5\x82\xbb\x1b\xf6\x77\x65\x4c\x47\x16\x52\xb3\x3a\x6a\x63\x49\xbc\xc6\x32\xbc\xb3\xfc\x2b\x5b\x80\x7c\x0d\x57\x7e\xd1\x3b\xaf\x39\xa1\x5f\x7d\x7a\xfd\x00\x8f\x1a\xb4\xde\x45\xf2\x40\x64\x8e\x24\xe2\xd4\xd7\x0c\x0a\x83\x59\xa4\x57\x61\x97\x38\x8d\x72\x8b\x4d\x92\x8a\xda\x28\xd3\x26\x06\xed\x48\xa5\x38\x01\x4d\xc2\xaf\x9a\x5a\x5e\xd4\xe1\xbc\x22\xed\xb1\x99\xc7\x84\x32\xf5\x5f\x7f\x5d\x6b\x35\xb5\x6a\x65\xe9\x06\x95\xde\x70\x14\x11\x69\x6c\xec\x36\x0a\x19\x0f\xf9\x33\x14\x79\xdb\x66\x55\xf5\x51\xd6\xf3\xd6\x0c\x3e\x83\xc0\x8e\xf3\xad\x6e\xc4\x85\x89\xe0\xe9\x78\xe2\x6c\x48\xfa\xcc\xe8\xa9\x55\xad\xe5\xcf\x0b\x36\xf2\xb5\xd7\xf2\xfb\x94\x26\x9b\x59\xe8\xee\x0b\xe5\xef\x3e\xf5\xfa\x48\x4e\xb2\xd3\x3a\x84\x66\x2b\x17\x76\x71\xd0\xcd\xfb\xb4\xdf\x66\xfe\x1a\xe8\xe6\xc4\xc1\xbe\x8e\x78\x92\x80\xa7\x41\x92\xe9\x33\x11\xd5\xdd\xc3\x84\xfb\x74\x3d\xc4\xc6\x6c\x00\xf0\x75\x9e\x18\xd1\x48\xfe\xba\x35\xa2\xa1\x44\x6e\xf4\xe5\xa0\x05\x13\xaa\xc6\x19\x61\x55\x36\xb6\x5f\x16\x2b\x0f\x1d\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x23\xc9\x81\x03\x07\x57\xcc\xa3\xad\xc1\x83\x25\x66\x97\xc5\xf2\xe5\xd7\x8c\x0b\x1c\x32\x8a\x4f\x47\x93\xf8\x91\x75\x0a\xf9\x14\xae\x42\xfb\x70\x9e\x07\x64\x1b\x1d\xc2\x67\x66\x50\xdf\xc5\x1a\x56\xc0\x8d\xa6\xff\x02\x4d\xc7\x80\x26\x9b\x90\x42\x17\x36\x08\xd1\xe4\x24\x3e\xc5\xd1\x3c\x4a\x68\xe4\xe9\xcc\x63\x81\x67\x93\x2a\x8e\xe7\x56\x3e\xa0\x0e\xbd\x16\xea\x50\x5d\x21\xb4\x75\xe2\xb6\xdd\xbe\x62\x78\x4a\x02\x1a\x52\x1b\xd1\x90\x4e\x32\xbc\x0d\x96\x97\x94\x7b\x45\x18\x87\xc5\x73\x1f\x20\x91\x5e\x01\x12\x69\x93\xc3\x9f\xe3\x1d\x15\x8e\x7d\x80\x69\x6a\x42\xbc\xd7\x87\x69\xca\x84\x80\x56\x21\xef\xd4\xf3\x83\x57\x46\x74\x59\x1c\xd8\x6b\xc2\x32\x55\x88\x4b\xeb\xc8\x8d\xcb\x70\x99\x96\xed\x8b\x46\x74\x79\x5d\x94\xa4\xf5\x28\xb3\x16\x00\x52\xe5\xdd\xd9\x12\x38\xa4\xfa\x65\x68\xc9\xb9\xd9\x65\x56\xcf\x7a\x35\x7b\xfd\xcc\x9e\x75\x14\xcc\xf5\x92\x7c\xb2\xfd\x70\x5c\x89\x3e\x79\x71\xc3\xcd\x92\x7d\x3a\xce\x07\x4f\x04\x9a\xf0\x24\x76\x20\x1c\x19\xb5\xb2\x0e\xb2\x4c\x88\x8c\x40\x6e\x31\xee\x67\x24\x32\xda\x66\x5e\x88\x6f\x59\x4a\x4f\xb6\x88\x30\xdc\x1d\x30\x9a\x5d\x58\x51\x32\x4e\xb2\x89\xfd\x64\xa5\x74\x21\x8b\xe6\xff\x25\x63\x2c\x50\x08\xbc\x06\xd5\xc3\x5c\x69\xf7\x5e\x31\xb8\x65\xa2\x87\x67\x1c\x15\x55\x25\x76\xcd\x3e\x83\xa7\xcf\xd4\x19\x62\xb0\xdf\xe3\x52\x2f\xa5\x9b\x5d\x23\x4f\x65\x79\xb3\x6c\x10\x0c\xb7\x50\x31\x71\x7b\x70\xa4\x29\xfe\x32\x98\x61\x81\x93\x84\x24\x54\x4e\xf7\x16\x0c\x7d\x51\x74\x57\xeb\xb3\x2a\xb8\x31\x91\xb1\x74\x3a\x34\x5b\xd1\x0d\xc4\x16\xd9\x54\x1c\x89\x94\xf9\xd0\x6e\xd9\xc2\x64\x45\x3c\x53\xb8\x17\xc0\xaa\x16\x4d\xa0\x5a\xf2\x08\x53\xc1\x88\xac\xad\x4d\x4b\xa2\x54\x50\x35\x1f\xd8\x52\xbf\xcd\x0f\xdc\xbd\xfd\xf2\xc2\x7e\xb8\xdc\xc3\xef\x50\x0d\x5c\x7f\x59\x69\xe1\x19\x11\x50\x9e\xcb\x15\x9a\xf2\xca\x19\x5b\xd4\x0a\x92\xd5\xf8\x82\xf0\xef\x85\x6b\xbb\x2e\x70\x1a\xbf\x0c\xbc\x8c\xb2\x41\x54\xde\x1c\xab\x0e\x6b\x15\xee\xd6\xb2\x49\xee\x19\x79\xaa\xc6\x8b\xbe\x87\xea\x3e\x36\x6d\xc4\x34\xad\x07\xec\xb9\xc2\xc1\x5e\x9b\x2f\x8c\x97\xf2\x5f\x51\xec\xc6\x1b\xa7\xc5\x3a\xaa\x0a\xbe\x5a\x32\xd8\x8e\xf7\x55\x83\x11\x7b\x9d\xec\x68\xd8\xfa\xa0\x0b\x91\xce\x14\x1d\x2e\x42\xfb\x38\x6e\xb0\x83\xd2\xbd\x9d\x04\xd2\xcc\x9d\x9b\xa5\xd0\xad\xa9\xe7\x5b\xe0\xc4\x76\x76\x5a\xfe\xb7\x38\x6a\x0e\x21\xc9\x20\x4c\xf9\x79\x8c\x37\x53\xaa\x94\x4b\x94\x30\x06\x78\xbd\x3b\x8b\xb6\xe9\xf7\x2e\xdc\x05\x43\x85\x65\x63\xa2\x3a\x7b\x64\x1d\x89\x5e\x08\x62\xc4\x42\x68\x54\xd4\x4e\xce\xac\xfa\x50\x73\x6d\x48\x74\x4f\x59\x6c\x8e\x16\x1e\xa8\x92\x59\xd9\x3f\xd3\xc7\x08\x27\x92\x9c\xe8\x86\xa1\x5a\xb0\xe2\x10\xfc\x8a\xd1\x8b\xc0\xb3\x19\x11\x8f\xcc\x66\xb1\x80\xc3\x89\xf3\xc4\xb4\x5f\x17\xe2\x6b\x69\x40\x06\x11\x8e\x26\x07\x5a\x23\x0c\xc9\x48\xd1\x84\xc4\x2e\x5f\xba\xb8\x3c\x6e\xde\xc6\x60\xbf\xc6\x62\xf5\x46\xae\x6c\xdd\x89\xed\x24\x89\x34\x47\xc9\xca\xbb\xcf\x88\xd0\xa3\xd6\x7b\xf8\x99\x30\x44\x47\x6e\x1c\x36\x76\x09\xbd\x80\x67\x4e\x6f\xfd\x67\x4c\x13\x03\x40\xe0\xba\x76\x42\xa0\x71\x3f\x3c\x32\xe3\xee\x67\x51\x21\x43\x97\x32\x2a\x27\x9a\x53\xa7\xe0\x93\x05\x35\xa3\x2e\x71\x88\x3d\xaf\x73\x9a\xbb\xfa\xf5\xe5\x1c\xf4\x99\x0a\xce\xa6\x90\x24\x64\x71\xa9\x1c\xf9\x24\x51\xd9\xf1\xa8\x4c\xf1\x5c\x29\x11\xc7\xb1\x2c\x1a\x5f\x8d\x5a\x49\xff\x59\x30\xbb\x9c\x16\xb2\x22\x23\x0f\x56\x09\x82\x58\x5d\x45\xbf\x65\xf2\x6f\x48\xed\x58\x4c\xed\xa8\xa6\x4d\x1b\xd3\x3b\xb2\x43\xbc\x6e\x8a\x47\xdd\xf2\xef\x42\xb2\xdd\x61\xaa\xc7\x2b\xe7\x44\xec\x27\x1d\xe2\x75\xf3\x57\xf6\x91\xba\x12\x12\x3c\x5e\x31\xc1\xa3\xb1\xa5\xb6\x18\x9b\x5e\x7f\x6c\xd7\x4a\x8e\x58\x01\x66\x55\xd5\xcb\x67\xa2\x04\x8d\xe4\x2e\xf8\x83\x9c\xe1\x86\x51\x7d\xa0\x05\xce\x56\x48\x4d\xfa\x85\xcc\x09\x0a\x71\x72\x59\x85\xcb\xa1\x20\xf8\x29\xe6\x2f\x0b\xb6\x3a\xe9\xa3\x89\x7c\xe6\x5a\xec\x11\x24\xa2\x92\x14\x22\x79\xa8\x44\x8c\x48\x6b\xec\xc4\x8f\x6c\x42\x89\xc0\x22\x9a\x40\x76\x67\xbe\x30\x26\x4b\xd8\x00\x3a\x99\x58\x0e\xdf\xdb\xb5\xc6\xa2\x37\xa0\x7b\xd9\xc2\x94\xe1\xf3\xd9\x35\xd7\x23\x99\x9a\x4f\x32\x61\xc6\x4a\x19\xbe\x49\xae\xd1\xf2\x6f\x9b\x88\x90\x11\x7b\xaf\xc9\x08\x59\x30\x95\xf7\x45\xc3\x84\x84\x7c\x37\x84\xa4\x84\x3d\x25\x25\x54\x90\x78\xbd\xc4\x84\x8d\x4c\x7e\x87\x8f\x99\x76\x3d\x1f\x22\x6e\x7a\x55\xd0\x5a\x3a\x1c\xec\xfd\xe8\x55\xce\xb9\xe9\x09\xfc\x25\xdb\x14\x46\x22\x16\x7a\x9f\x0d\x49\x1c\x03\xa7\x55\xdc\x56\x68\xcf\xf7\x8e\x33\x0f\xe8\xbb\x17\x4b\xbd\xd9\x71\xc2\xd9\x58\xd2\xd8\x80\xcd\xcc\x30\xd4\x2a\xf6\x8d\x17\x00\xae\x00\xeb\x9b\x24\x44\x38\xaf\x84\x40\x7f\x90\x94\x59\x34\xc9\xec\xb7\x98\x13\xc9\xde\x2b\x63\x2c\xc0\x6c\x8e\x9e\x18\x7f\x49\x48\x3c\x86\x15\x2a\x0f\xe6\x14\x51\x72\x82\xa8\xca\x3e\x13\x80\xc6\xc0\x53\xf5\xa8\xc7\x0e\xb1\x76\x46\x03\x20\xf6\x5b\x61\xab\x57\x78\x1c\x58\x7e\x73\x86\x50\x8f\xa1\x11\x8e\xd4\x09\x92\xe9\x30\x6f\x3f\xe6\xa6\xb8\xbc\xd6\xbe\xbd\x89\xe7\x8d\x84\x98\xf9\x8a\xce\xab\xcf\x86\xe3\x0e\x7a\xbb\x76\x12\x8a\xb7\x8a\x2d\x7c\xc6\xdb\x40\xac\x7e\x4e\xa5\x0d\xc2\x40\x9c\x65\x47\xdf\xc2\x4b\x65\x18\xd9\x80\x77\x6a\xf0\xa6\x19\x8f\x6b\x6d\x9d\xa5\xa9\xac\x3b\x96\x3c\x10\xd4\x0a\x4a\xd6\x51\x05\xed\x1a\x72\x6b\xa9\x49\x2a\x41\xf0\xd4\x3a\x07\xf4\x55\x03\x62\x8d\x09\x03\xd5\xa3\xa7\xc2\x48\x98\xeb\x2c\xf1\x15\x65\x4f\x7a\x75\x73\x54\x70\x0e\x78\xc9\xba\xe7\xaa\x45\x9b\xe9\x1b\x8f\x5c\x70\x66\x1c\x84\x5b\xc9\x9d\x74\xcc\x70\xb2\xa6\x8d\x63\x81\x72\x8b\x3e\x3d\x27\x67\x59\x71\x41\x4b\x11\xc6\xd8\x87\x4c\x8f\x6b\xd9\x90\x4a\xf3\xf5\xe5\x3d\x8c\x62\x32\x23\x2c\x26\x2c\x9a\xc3\x16\x61\x80\x1c\x24\x18\x4e\x10\x86\xef\x70\x72\x86\x2e\x4d\x7e\x51\x26\xe1\xd9\x6b\x1d\x2e\xf4\x29\x66\x74\xa4\xf5\x04\x30\xc2\xda\x51\x3e\x32\x33\x4c\xe7\x03\x21\xb9\x75\x35\xa3\x58\xd5\xca\xe8\x1b\xe4\x7a\x4b\x54\x66\x56\xfc\x1e\x2d\xbf\x70\xa0\xb7\x65\xab\xa3\x9b\x73\x35\x18\x64\x3a\x3c\x85\x7f\x17\x12\xee\x1c\x50\x51\x8e\xa2\x43\x12\x02\xe6\x40\xeb\xf1\x82\x8b\xb1\x0e\x58\x6f\x17\x7e\xbb\x15\x79\x2c\x5e\x1f\x05\xa5\x66\x4a\x19\x9d\xa6\x53\xcf\x79\x67\x2a\x36\x44\xd6\x7e\x69\x32\x51\x66\x5a\x0f\x88\x1c\x78\x3b\xd2\x97\x2b\x9b\xa3\x31\x7d\x26\xec\x91\xcd\x38\x65\xea\x0c\x5d\x73\x45\xbc\x12\x19\x06\x3a\x8b\xcf\x14\x9d\x1a\xb4\x57\x41\xf4\x39\x30\xa0\xe0\x00\xb4\x39\xc1\xea\x04\xc5\x29\x1c\x55\x46\x94\x66\x1d\xfa\xc6\x55\xb0\x32\x10\x1f\x2e\x1e\x99\xb9\xe9\x46\x98\x26\xa9\x20\x56\x66\xc5\x26\x2f\x28\x1f\x72\x3e\x32\x8b\x04\xe7\x4d\x62\x4a\xc7\x13\xa5\x97\x48\xcb\x78\xd6\xdf\x38\xd1\xdc\x88\x3f\xb2\x21\x41\x18\xcd\xb8\xa4\x8a\x3e\x67\xfe\x4b\x3a\x42\x58\x4a\xb0\xa0\x9c\xa1\xcb\x82\xfd\x9f\x4a\x50\xbd\xeb\xe2\x8a\x29\x1b\x58\xdb\x73\x7d\x3e\xd2\xd6\x0b\x59\xe8\xc5\x52\x19\x0f\x25\x4f\x52\xe5\xbb\x60\xab\xd7\x36\x37\x8d\xbb\xc2\x05\x60\x20\xe6\xa3\x47\xe6\xf6\xb5\x3c\x43\x1d\x89\x24\xd7\xab\x24\xcd\x52\x46\x82\x2a\x22\xa8\x41\xb1\x22\xca\x2c\x42\x76\x4e\xb3\x33\x30\xc5\xe2\x49\x8b\x50\xbe\x05\xde\x60\xaa\x16\xac\x1d\x43\x23\x21\x01\xac\x97\xbf\x1c\x60\xfa\x47\x8c\xb3\x53\x46\xc6\x78\xd5\x8a\x3c\xb2\xc2\x92\xa0\x3f\xd0\x51\xae\x90\xd6\xf9\x1c\x3d\xda\x0d\x20\xf2\xa9\x6e\x95\x4c\xc7\x75\x8b\x34\x4a\x38\x5e\xe1\x36\x1e\xe5\x87\x1e\xfd\x83\x0f\xcd\x18\xb5\xde\xcf\x15\x48\x81\x5a\xbd\x1a\x71\x41\x26\xff\x1f\x7b\xef\xda\xdc\x38\x92\x9c\x0b\x7f\xf7\xaf\x28\x8f\xdf\x88\xee\x3e\xa6\xa8\xe9\xd9\x63\xc7\xb8\x1d\x13\xf1\xaa\x25\xf5\x0c\x77\xd4\x6a\xad\x2e\x33\xeb\xb3\xdc\x60\x17\x81\x22\x59\x2b\xb0\x0a\x83\x02\xa4\xe6\xda\xfb\xdf\x4f\x54\x66\xd6\x05\x20\x40\x02\xa2\xba\x67\xec\xb3\x1f\xec\x9d\x16\x81\xaa\x42\x5d\xb2\xf2\xf2\xe4\x93\x5c\xa5\x23\xb7\x58\xf5\xb1\xc1\xcd\x48\xae\x36\x67\x8c\x81\x26\xe8\x48\x94\x05\x72\x51\x71\x15\xad\x05\x19\x6e\xb4\x14\x61\x1d\x06\xdd\x15\xbe\x35\xa8\xfd\x82\x0e\x08\x14\x79\x9b\x9c\x8e\xb8\x91\xeb\x3c\x0b\x39\x5d\x91\x6f\x74\x61\x55\x2c\x27\x23\xf5\x03\xb8\xae\x9c\xd5\x06\xb7\x3a\xad\x9c\xdd\x67\x2d\x23\xf7\x82\x14\x6e\x0d\xe7\xf3\xc2\x32\xa0\x91\x08\x7b\x69\x84\xfd\x67\x29\x82\xd9\x87\xca\xfa\x54\x39\x15\xe4\x15\x48\x19\x6a\x36\x72\x9e\x59\x15\x1a\x69\x6e\x69\xfe\x58\x82\x41\xee\xda\x39\xa1\xc3\xe0\x1e\x6d\xbd\xa8\x4a\x69\xd5\xec\xb7\x12\x18\xba\xce\x0e\xa4\xdd\x97\x2a\x15\x9d\xc5\xac\x7a\x49\x8d\xae\xbb\x05\x05\xea\x6c\x7f\xfd\x89\xd6\x06\xe6\x52\xa5\xb3\x52\x63\x25\x17\xdf\xda\x81\xd1\xca\x76\xc7\x47\xc1\x95\xb1\xcf\x3e\x29\x56\xe4\x80\x24\xe0\x4c\x2d\x44\x26\x1e\x78\xb8\x7d\x81\x3e\xd4\x0f\x1e\x7c\x23\xbd\x7c\x0f\x1f\x6c\x63\x0f\x3c\xa3\xa4\x18\x8a\xc3\x9b\xee\xcd\x30\x39\x3b\x08\x9f\x4a\xad\xb4\xad\x55\xb7\xfa\xe2\xfa\xfe\x51\x6c\xda\x27\x76\x0f\x41\xe2\xae\xd5\xf7\x73\x36\xc0\x0f\x7e\x15\xde\xd9\xe9\xad\x58\x49\x75\x8f\xf2\x22\xac\x0c\x28\x90\x25\x5f\x92\x1e\xea\x3e\x6d\xc4\xc4\xa7\x44\xe4\x25\x93\xe5\x0b\xfb\xc4\xbd\xd8\x1c\xa1\xfc\xcf\xb9\x2c\xc6\x53\x75\x26\x17\xe0\x19\x2d\x43\x5b\x86\x29\x5e\x56\x56\x64\x6c\xd0\x02\x4f\xfd\x33\x34\x21\x86\xbd\x8c\x02\x20\xa9\xe9\xba\x36\x76\x6f\xfd\x1d\x09\xef\x72\x1d\x26\x63\x1f\xc5\x64\x41\xf7\x83\x95\x38\x00\x19\x52\x4b\x98\x0d\x45\x2c\x48\x8d\x2d\x7c\x64\x6f\x45\x98\x0d\x7b\xa5\x18\xba\x95\x55\xe0\x2d\x55\xba\xf1\x4a\xdb\x15\xd0\xb9\x8f\x7f\xac\x6d\xc0\x5f\x21\x5d\xee\x6a\xab\xd6\x3a\xfc\xa7\xa9\x16\x0b\xf9\x09\xfc\x17\x4e\x67\x70\x36\x66\x52\x68\x63\xf7\x06\x68\xa5\xcc\x1d\x25\x84\x0c\x1c\x92\x3a\xd7\xfa\xa6\xb5\xa7\x07\x93\x3e\x74\xce\xf6\x1f\x2a\x51\x1c\x34\xdf\x5e\x70\x0c\x01\x9e\x46\x32\xab\xdd\x1b\xe0\x1a\x2d\x79\x4f\xf4\x59\xdc\xea\x2d\xef\x98\xba\xfd\x44\xf7\x9d\xf7\x90\xfd\x71\xf0\x40\xe2\xfb\x79\x8f\x3c\x32\x9e\xd9\xd5\xdd\x1b\x54\x7e\xca\x5e\x18\x23\xa2\xd2\xe7\x04\x91\xf3\x49\xed\xdc\xa1\x83\x30\x04\x86\xd5\xc9\x4a\xaa\xa9\x11\xf9\x64\xa8\x31\xa9\x96\x53\xe5\xe6\xd6\x8c\x18\x26\x04\xf8\x83\x8d\x6d\xd5\xaa\x18\xf0\xe8\x55\xbf\xb1\xfb\x39\xcf\x11\x41\xa1\x84\x31\x56\x05\x32\x65\xc1\xa5\xa2\x68\x9d\x9b\x1f\x33\xb5\xd2\xa4\x91\x91\x30\x02\x8f\xd1\xc8\x49\xca\x51\x24\x56\xa7\x0a\x73\x8b\xd8\x37\xec\x65\xc9\x97\x88\xee\x01\x9e\x52\x9e\x01\xc3\x29\xd8\x83\xe4\x7f\x89\xd2\x40\xfc\x89\x94\xe9\xab\x37\xbb\xfa\x44\x6f\xd1\x4b\x68\x06\x0e\xb9\x9d\xc3\x30\x41\x72\x11\xfe\x21\xd2\x57\xbb\x5a\x0a\x2f\xdd\x8b\xcd\xa8\x39\xc9\xdd\xb7\xf8\x2d\x3f\x08\x8b\xfb\xb9\xae\x71\x18\x74\xff\x70\x34\x9f\x8b\xec\xa7\xf0\xa1\x6c\xa7\x28\x7a\x2b\x15\x3f\x4c\x06\xb5\x0e\xaf\x5f\xae\xc1\x7c\xd3\x55\xa1\xb0\x45\xf4\x3c\x99\x5b\xe7\x04\xad\x16\xc1\x6c\x77\x64\x9b\xb9\xfa\x95\x1c\xf0\xad\x2b\x91\xe5\x91\x9a\x60\xf7\x8b\xa7\x09\xc6\xca\x4e\xd6\x74\x5d\x57\x0a\x29\x9f\x11\xdf\xf3\x48\x27\x9d\x44\x46\x68\x7c\x3c\x55\x13\x7b\x41\x9b\xb2\xd0\x6a\x99\x6d\x18\x4f\x1f\xa4\x09\x25\x0b\xed\x81\xac\xd6\xa2\xa0\x2e\xa4\x41\xfb\x8a\xca\x7d\x71\x77\xb1\xd9\xb1\xd9\xab\x0f\xd4\x50\x57\x56\xd3\xfe\x11\x2d\x48\x3b\x4a\xe3\xf0\x71\x2d\x09\x0e\xb4\xb8\x0d\xd9\xf9\x85\x9d\xd4\x3f\xc5\x7e\x68\xb6\x0e\x2e\x6b\x27\x2f\x8f\x9b\x0e\x6b\x9a\xf5\x1d\xce\xea\xc1\x17\x42\xdf\x8b\xc0\xd5\xc7\xa8\x30\xa1\xcd\xf6\xe3\x42\x98\x38\xb8\x41\xc6\x74\xe3\x03\x69\xd4\xa8\xf7\xc6\xce\x6a\x21\xc1\xd3\x65\x4a\x5e\xca\x84\x6e\x01\x5d\x90\xbf\x9e\x3c\x28\xdd\x4b\x7b\xa8\xf5\x69\x12\x9e\x6d\xaf\xf0\x0e\xf4\x04\x3e\xbf\xdb\xa5\x4d\xc7\x0d\xdb\xde\x49\xe1\x93\xe8\x2c\x1b\x52\x90\xb0\xf1\xe5\xa7\xe1\xf5\xdd\x23\x0a\xfd\xd8\x05\x70\x6b\x01\xa7\x06\x5d\x51\x3c\xa3\xc0\xa0\x29\x69\x95\xe2\x87\xf0\x52\xdb\x90\xa3\x60\xaa\xf4\x02\x4a\x56\x66\x5d\x39\x0a\x79\xa1\xd7\x72\x48\xcd\x14\x84\xed\x5f\x3b\x94\xc7\x9e\x98\x99\xc3\x82\x80\xa3\x15\xb7\x17\xf5\x08\xec\x1b\x9c\x9c\xa7\x3b\xce\xd0\x9a\xe7\x4f\x9a\xf0\x7d\x18\xa7\x13\xb6\x46\x80\x19\xcd\x1e\xb0\xa7\x0b\x48\x43\x86\x49\x7e\xe4\x9b\x40\x74\xd4\x55\x0d\x43\x0d\xda\x0e\x77\xf6\xf1\x89\x5a\xe8\x01\x87\x33\x10\x13\xd1\xe9\xe3\x6e\xcf\x46\xe7\xcf\x63\x6e\x70\xf5\x71\x4e\xfb\x9c\xc7\xd3\xb6\x4d\x3d\xf8\x64\xba\x19\xfc\x9c\x11\xf7\x58\x88\x44\xef\xfc\x6d\xc8\xdd\x5a\x3f\x5a\x51\x8b\x0c\x86\xb3\x7b\xaa\xde\xd7\xf6\xe1\xb3\xcf\x51\xa3\x1d\xf8\x2d\xa4\x06\x5e\xb5\xb7\xfa\x05\xe6\x8c\x0e\x49\xaf\xc9\x3a\x90\x89\x6d\x58\x55\x0f\xd7\xa3\xaf\xe1\x71\xb0\x25\xb7\x6f\x32\x40\x9a\x19\xb2\x1a\x42\x9e\x11\x11\x3e\x2c\x64\x26\xcc\x98\x4d\x5a\xc2\xf5\x8e\x6e\xc1\xa7\x07\x60\xe2\xa7\xd3\x9e\xaa\x42\x46\x65\xfe\x9d\x8e\xc4\x24\x94\x1b\x8c\x21\x4b\x51\x78\x0a\x02\xe5\x2b\xfd\x88\xb9\x96\x85\xb4\x32\x0b\x95\xd5\x12\x82\x97\x56\x16\x48\x8a\xfd\x61\xe8\xd4\xbf\xa0\x31\x03\xc6\x9a\x39\x3e\xec\x19\x7b\x20\x9a\x4b\xfa\x1c\x05\x5b\xfb\xb3\x59\xb8\x5e\x6f\xed\x1b\x7d\x8c\x02\xf7\xec\x01\xa3\xf3\x5a\xfe\x70\x97\xee\x3b\x78\xd5\xb9\xf0\x39\x5b\x14\x02\xac\xec\xb5\x67\xc8\xc3\x12\x19\x5a\xc3\x7d\x77\x73\xf6\xe3\xf1\xdd\x84\x89\x32\x61\x99\xbc\x17\x53\x95\x98\x07\x30\xfa\x7e\xa9\x44\x69\xff\xdc\xe1\x04\x92\x6b\xa1\x0c\x48\x02\x59\xf6\xb4\xd7\xdc\xc4\xd8\xff\x3d\xab\xbf\xdf\xc7\x2a\xf7\xac\xae\x76\xef\xba\xea\x95\xb0\x4d\xa1\x40\x1f\x4e\x6d\x8b\x97\xf9\x2d\xba\xcf\xcf\xdb\x6a\xdb\x3f\x21\xf9\x5d\xfd\xa5\x52\x03\x95\xae\xd3\xf0\x52\x34\x8a\x0e\x9d\x6e\x9d\x73\xa8\x5c\x33\x2c\xab\x1e\xdf\x69\x6d\x7d\x9f\x10\x09\x24\x47\x0e\x29\x21\x7c\x33\xac\x2c\x84\x00\x11\xe2\xf7\x13\xdd\xf5\xc4\xab\xe7\x3f\x2c\x7a\x69\x3c\x55\xef\x1d\x7e\x32\xfc\xd5\x84\xa8\xd2\x7a\x1e\x15\xf4\xa9\xb7\x02\xcd\xa6\xd2\xf8\x3f\x40\x79\x46\x53\x65\x25\xd6\xa7\x5e\x48\xc5\x33\x3f\x50\xfc\xa5\x4d\x4a\x14\x5c\x25\xab\x43\x01\x11\x72\x31\x13\xd9\x10\x4d\x74\xb2\x38\xcf\x8c\xdd\xdf\xc9\x7d\xc7\xe9\x7c\x4a\x05\xf6\xf0\x31\x18\x5b\xa4\x2a\xae\x2c\x00\x2a\x78\x86\xf5\xa1\x05\x03\xc4\x5d\x93\x0b\x01\xe9\xde\xec\x2a\x92\xa6\x8e\x80\x3b\x4c\x42\xf6\x09\x86\xd0\x0b\xe3\xe5\x54\x15\x95\x02\x2f\xb8\xc7\xdf\x72\x16\xaa\xff\x24\x0e\x0d\x43\xd8\xa4\xa5\x15\x13\x58\x5c\x07\x1f\xb6\xf6\x99\xae\x0c\x44\x1e\xd7\xa2\xb4\x17\xd4\x4b\x31\x5e\x8e\x09\x00\x3f\x62\x79\x21\xd7\x00\x1e\xf0\xb1\x83\x78\xe9\x4e\x79\xc9\x33\xbd\x7c\x6e\xaf\xd2\x13\x93\xa9\xdc\x30\xd8\xe4\xcc\x4e\xfe\x52\x28\x51\xc0\x87\x82\x2f\xbb\xf5\x08\xf7\xf0\x72\x77\x48\x6e\x88\x19\x53\x98\xdf\x78\x8f\x05\xaf\x4a\xbd\xb6\xf6\x2d\xcf\xb2\xcd\x08\xf1\x05\x82\xad\xb8\x59\xb9\x85\xc6\xd0\x70\x9f\xbb\x89\x26\xf7\x94\x27\x2b\x71\x53\xf2\xb2\x6a\xc5\xe0\x35\x46\xf9\x95\x50\xd5\xfa\xab\x37\xec\x4f\xe1\x1b\x4f\x4f\x4e\x7f\x38\x9f\x9d\x4d\x6e\x4e\xde\x5e\x9c\x9f\x45\xdf\x43\xbf\xbc\x9f\xdc\xdc\x6c\xff\xf5\x87\xc9\xed\xf6\x1f\xaf\x3e\x5c\xdd\x5d\x9c\xdc\xb6\xb5\x72\xf1\xe1\xc3\x8f\x77\x57\xb3\x77\x27\x93\x8b\xbb\xeb\xf3\x96\x57\xef\x6e\xbb\x7f\xbc\xf9\x71\x72\x75\xd5\xd6\xea\xf9\x4f\x93\x53\xdb\x1d\xfd\xfd\xcf\xd1\xb1\x03\x90\x84\x9d\x81\x8e\xef\x6b\x9e\xcc\x23\x56\x7f\xf0\x0d\xbb\x6b\x56\x38\xa3\x94\x3b\xa4\x8b\x7b\xe4\xc6\x0a\x37\xc8\xf8\x04\x17\x6c\x98\xad\xae\x57\x11\x95\x9e\xac\x04\xcb\xb4\xbe\xaf\x72\x92\x79\xe8\x6d\x57\x1a\x3d\x42\xc2\x44\xad\xfd\x30\xb9\x7d\xb3\x5d\x69\xcd\x37\x16\x11\xe3\x7a\xe7\xf2\x23\x47\x92\x08\x90\xb3\x18\x5c\xa4\x0a\x5c\x01\xa4\x10\xf5\xe0\x97\x6c\x57\x3f\xd8\x1a\x57\x65\xa3\x9b\x34\x0d\x74\x5a\xf0\x61\x51\xc3\xf5\x05\xdf\x35\x9b\x7e\x3a\xb0\xc4\x2c\x9b\x8b\x84\x57\x88\xdd\xb7\x17\x58\x51\xe8\x22\x1e\x70\xd8\x28\xcf\xd7\x28\x6d\xb0\xd6\x06\x1b\x6b\x66\x3f\xdc\xdc\xcb\x3c\xaf\x2d\x3b\x6d\xc4\xfd\x2b\x0f\x45\xfd\x1e\x64\x52\x8a\xf4\xab\x6d\xbd\x28\xb0\x2d\xa0\xde\x6c\x4f\xb5\x1d\x72\x74\xd6\xa5\x5a\xa2\x2f\xc1\x95\x57\x5c\x6d\x3c\xde\x0c\xe0\xcd\x01\xf0\x0d\xe5\x5e\xec\x5d\xe3\xcb\xdf\x49\x00\x90\xf1\x92\x3d\x0a\x20\x1e\xaa\xa8\xbe\x2c\xda\xf4\x56\x66\x40\x77\x88\xfc\x70\xd5\xa2\x6b\x84\x44\x9d\x42\xfe\x39\x14\x79\xfb\xbe\x11\xc3\x82\x78\x7b\xd9\x63\xce\xb0\x51\x90\xfa\x2e\x33\x04\x46\xfc\x9c\x41\xbf\x96\x9b\x6e\xcf\x25\x64\xaf\x83\x3e\xe3\x71\x8c\x7d\xb5\x32\x38\x03\x42\xf0\x71\xa9\x94\xbd\x73\x75\xab\x53\xbe\xb1\x9b\x03\x40\x24\xa6\xca\x73\x5d\x94\xac\xa3\x0d\xc4\x2a\xe0\xf8\xe0\x2e\xa3\xef\xf0\x22\x12\x1a\xb1\x9a\x8b\x69\xa9\xb8\xd7\x8f\x44\x8c\xe6\x35\x8a\x9d\x45\x69\x64\x60\x60\xfa\xea\xa8\xeb\x9a\xa9\x5e\xdb\xa1\x6d\x4a\xf5\x21\x79\xb8\xb9\x55\x1c\xfa\x16\xeb\x6e\xeb\xfd\x83\x6b\xa1\x75\xc9\x33\xb1\x28\x67\x03\x83\x5d\xd0\xa2\xea\xe2\x7d\x94\xcb\xd5\x33\xb4\xd8\xdf\xfa\xf8\x86\xe0\xef\xd6\xe4\x88\x3c\x0f\x85\xd6\x25\xea\xbd\xc1\x36\x62\x6e\x36\xc1\x6d\x41\x9d\x12\x63\x82\x57\x2e\xad\x2d\x81\xa8\x41\x4f\x2e\x30\x9e\xaa\x73\x80\x19\x07\x03\xc7\x11\x29\x80\x75\xb1\xd7\xae\x70\x04\x66\x50\x74\xe7\x8b\xe6\x34\x75\xd7\x81\x08\xfb\x1e\xc1\xa9\x22\xdb\x78\x36\xb0\x94\xd5\xde\xeb\x73\x7a\xd0\x9b\xee\x54\x4b\xfc\x60\x3c\x3a\xa6\x14\x39\x79\xfc\xf1\x3b\x03\x1e\x1e\xa2\xcd\xb6\xab\x31\xfb\xd9\x79\x94\x20\x3d\xcc\xa7\x4b\x39\x84\x73\xc6\x37\x8e\x3a\xbe\x6d\x62\x9f\x83\x8d\xfd\xb9\x13\xc6\x76\x4f\xb0\xa7\x5d\x6d\x99\xe5\x9a\x61\xaf\x14\x7a\x7a\x07\x80\xc2\x4e\xfd\x4b\x37\x62\x37\x76\xf6\x1d\x14\xeb\xa7\xfc\x03\xd0\x59\x54\xb6\xf9\x47\x5c\x2c\xe4\x6b\x71\x20\x0d\x2a\x9e\x4e\x91\x59\x7b\x7e\x20\xb2\x88\x74\x2e\x6c\x21\xb3\x0c\xf4\x80\x31\x3b\x51\x1b\x47\x77\x62\xaf\x42\x07\x43\x96\x4b\xa5\xf7\x31\x31\x74\x6c\xa6\x24\xda\x4c\x37\xdd\x9b\x09\xf1\x1f\x81\xed\xea\x79\x76\xd4\x33\x30\x1f\x5a\xd9\xc2\xb7\xeb\xe6\xf4\xe7\x3b\x1c\xe0\x14\x88\x6f\xf3\x2f\x95\x43\xb8\x35\xdc\xe8\xc5\xbf\xb5\x0f\xfd\xfb\x8a\x17\x5c\x95\x90\x19\x47\x4a\x6b\x21\xa2\x04\x7d\xf1\x09\x50\xcc\x0a\x1d\xcc\xf0\xa7\x78\x71\x1d\x94\x00\xe1\x67\x32\x1d\x31\x39\x16\x63\xa8\xe1\x5c\x58\x5d\x62\x1e\x9e\x5c\x59\xcd\x61\xaa\xb6\x32\x7e\xc6\xec\x24\x33\x9a\xde\x10\x2a\xc9\xb4\x01\x10\xf7\x3c\xa6\xd7\x87\x9d\x4f\xe1\xaa\xf9\x06\xec\x1b\x58\xca\xd0\xbc\xa6\x1f\xa2\x17\xa1\x14\x31\xc4\xda\x33\x38\xe9\xe1\xef\xff\xac\x89\x28\xb8\x0b\x7f\xf1\x19\x8b\xbe\x6d\x5d\x43\x9f\x6d\x91\xb0\xa0\xf8\xae\x05\x82\x27\x60\x61\x42\x26\x56\xc4\x53\xc8\x5e\xf2\x92\x65\x82\x9b\x92\xbd\x7e\x35\x08\x73\xe2\x3e\x30\x48\x57\x3a\xbe\x81\x4e\xc1\x25\xe4\xc6\xca\x9d\xef\x18\x2a\x4c\xf3\xa2\x64\x9c\x29\xf1\x18\xe7\x5f\x69\x48\x99\x73\x65\xa3\x45\xc4\x00\x83\x59\x17\xc8\x5f\x05\x39\xcd\x68\x32\x75\xc8\x11\x57\x14\x85\xc2\xb2\x34\xac\x96\x9d\x35\xf2\xa8\x36\x48\x58\xb0\x0f\x85\xd4\xd8\x15\x2f\xa7\x8a\x24\xab\x83\xa3\x44\x64\x08\x27\x59\x56\x4f\x47\xe5\x90\x71\xad\xec\x07\xdb\xd1\xa7\x63\x3f\x41\x97\x60\x7e\xf9\x9c\xc0\x9a\xff\x2f\x1c\x16\xcc\x5a\xf1\xac\xa0\x71\xdb\xad\xda\x4e\x9b\xdf\xfa\x0b\x2a\xc1\x2d\xdd\x5f\xe8\xa5\x4c\x78\xd6\x43\x19\x16\x6d\x43\xde\x73\xb0\xb6\x63\x05\x3b\x74\xe3\xe7\xee\xa0\xbf\xaa\xdc\xee\x77\x87\x6b\xf6\x51\xb7\xb8\xf1\x3b\x16\x37\xd2\x2d\x0e\x31\xc0\x7d\x72\xea\x97\x8a\x24\xd7\x86\x3e\x49\x81\x1a\x63\xbf\x14\x0c\x54\x13\x4e\x74\x60\x86\x62\x1a\x65\xbe\x47\x89\xb6\x04\x22\x45\xc1\x47\x4f\x76\x44\x74\xf3\xff\xde\x9f\x3f\x0a\xdf\xef\x3e\xc5\x83\xeb\xb6\x3f\xbc\x5b\xd9\x3b\x49\xff\xc2\x13\xc8\x87\x85\x9e\x5c\x26\xee\x36\x6d\xa9\x2b\x76\xc3\x21\x48\xd0\xaa\x1e\xe6\x85\x4e\x84\x31\x63\x76\x0e\x17\x0d\xfd\x93\xf1\x85\x0b\x74\x44\x0f\x4f\x95\xb5\x4c\x1c\xcb\x61\xd4\x7e\x7d\x8b\xb7\x9d\x00\xa4\x4c\x3e\x28\x46\xb4\xde\x5f\xc9\xb0\xcb\x9a\x70\x8c\xcd\xd0\x06\x14\x3f\x63\xe7\xcb\x37\x2c\xd5\xc9\xbd\x28\x8e\x0b\x91\x4a\xf3\x06\x62\xf6\x65\x67\xb0\x70\x6d\xad\xed\x83\x35\x8d\x2e\x00\xc2\x1e\xea\x88\x53\xec\x9f\x52\x0a\x5c\x12\xda\x88\xc9\x05\x98\x13\x2e\x73\x19\x53\xf5\x1c\x29\xa4\x50\x65\xb1\x41\xb4\xb3\x73\x65\x35\x26\xc2\x59\x1a\x56\x69\xeb\xca\xb9\x2f\x9e\x03\xdb\xf3\xc4\xcf\xbe\x5d\x09\x23\x1c\x90\x01\x3f\xaa\xd4\x94\xf1\x87\xe2\x22\xe7\xe5\xca\x00\xc1\x4b\x7d\x0e\xc8\xe8\x82\x57\xed\x0c\xf1\x1c\x70\x10\xe8\xa5\x08\x2f\x79\x1a\x12\x53\xca\x2c\x9b\x2a\x4c\xdc\x00\x2e\x96\x17\xad\x3c\x52\xf6\xd5\x11\xe3\x69\xca\xfe\xbf\x97\xef\x2e\xfe\xe3\xf6\x7c\x36\xb9\x04\x9f\xf7\xe4\xe2\xfc\xd5\xc8\xff\xf1\xc3\xdd\xad\xff\x2b\x7a\x58\x1e\x44\xc1\xd6\xfc\x1e\x4c\x3c\x65\x04\xa5\x18\x8b\xa9\x8a\x47\xea\x18\xb6\xec\x2f\x46\x38\x04\x2d\xa9\x29\x9e\x68\x9c\xd6\xb0\x8b\x9e\x97\x88\x57\x07\x18\xbf\xd7\xfe\x95\xdd\x7b\xd0\x6d\x1e\xdf\x85\x53\x03\x21\x93\x9c\x9b\x88\x72\x89\x6c\xdf\xb0\xe1\x84\x5a\x4a\xd5\x85\xf3\x13\xea\xe1\x73\x2a\xf1\x3f\x8a\x0d\x00\xcd\xaf\xb8\x2c\x7a\xef\xbd\x76\xce\x4c\x77\x62\xac\x9d\xce\x4d\xf3\x50\x19\xd4\x85\x31\x27\xbd\x13\x4b\xda\x46\x97\xfc\xab\x7f\x2e\x91\xb0\x8a\x4f\x65\xe1\xb8\xdc\x7c\xd6\xb3\x23\x3c\xf5\x17\x4d\xd8\x83\x53\x75\xfb\xe1\xec\xc3\x1b\x26\x32\x3e\xd7\x90\xf0\x4a\x50\x23\xd7\x04\x4d\x58\xa2\xd7\x51\x43\x35\x1e\xbf\x11\xcb\x03\x8f\x5f\xec\x44\x1b\x63\x1b\x7b\xf8\xfc\x72\x5d\x6c\xb3\xe0\x3d\xaf\x09\x48\x1f\x7b\xa5\x8b\x3e\xd7\xbf\x7d\x0c\xf3\x42\x72\x6b\xc8\x35\x24\x2f\xdd\xcd\x0b\xc1\x81\xe3\x85\xc2\x42\xe4\xcb\x27\x60\x6c\x96\xd5\xaa\xae\xdb\x83\x63\xc6\x14\xda\x0f\x4f\x6a\xc5\x7e\xfc\xd6\xb0\x79\x55\x4e\x55\xbd\x0d\xad\xd8\xc9\xcf\x37\xec\x2d\x2f\x93\xd5\xab\xa9\x82\x2c\xd1\x1f\xbf\xed\x20\x1c\x1d\xcc\xe1\x6d\xe7\xe4\x8c\x97\xfc\x42\xf3\x54\xaa\x65\x1b\x81\x77\xa8\x32\x79\x7e\x7b\xf2\x86\xb9\x62\x3f\x21\x5f\xba\x74\xc4\x39\x51\x43\x20\x90\xe1\x43\x9c\x14\xa1\x9c\xc1\x1a\xc9\x31\x5a\x66\x70\x61\x4d\xd5\x2d\x32\x97\x5b\xa9\x2a\x4b\x96\x6b\xaa\x74\x6a\xad\x32\xe4\x74\xe7\x8e\x47\x40\x64\x1b\x66\x67\x07\xb6\xb1\x5f\x0c\xd2\xc7\x40\x9f\xd9\x16\xf6\x53\x05\x06\xba\xcf\xe0\xce\x74\xc2\x33\xc0\xfa\x1d\x45\x3e\x3d\x6b\xb6\xeb\x0a\x58\x94\x00\x64\xa3\x36\x75\x48\xae\x27\xf6\xf2\x4a\x59\xbc\x50\xe0\x00\x80\x75\xa4\x38\xe4\x5a\x5b\x89\x83\x8c\xc5\xe0\x7c\xcb\x70\x76\xec\x8b\x9e\xc1\x18\xa7\xc5\xfe\xea\xc9\x0d\x74\xa5\x1c\x63\x5f\x02\xee\x7b\xb5\x01\x58\x38\x94\x26\xd4\x00\x29\x09\xd2\x99\x36\xe5\xd6\x2a\xfa\x3b\x31\x7a\x6d\xaa\x10\x81\x58\x5b\x97\x98\xe3\x32\xea\x5d\x2b\x00\x48\x6e\x33\x2a\x54\x39\x01\x26\x49\xd7\xcf\x0b\x71\xe4\x79\x02\xd2\xda\x9c\xda\x1b\x76\xcc\xae\x63\xf3\x3a\xd5\x49\xb5\x76\xf5\x47\x80\x63\x80\x90\x75\x74\x89\xfa\x1d\x82\x17\xfb\xbe\x1d\x0f\x5c\x86\xa5\x00\x92\xa5\xde\xf6\x31\x6e\x98\x93\xf8\xd5\x6d\x4d\xbd\x5b\xf1\x05\xd9\x71\x18\x1a\x0e\x1b\x9a\xe5\xf5\x96\x6a\xad\x1d\xcc\xde\x71\x19\x6a\x24\xe8\x02\x94\x2d\xf1\x29\xd7\xe0\xe4\x46\x12\x03\x9d\xbe\x30\x6c\x72\x65\x35\x20\x6b\xf1\xfa\x33\x58\x99\x12\x41\x6b\x98\x8d\x0e\x6f\x63\x1a\xc2\x88\x7d\xcd\xa6\xd5\xd7\x5f\xff\x2e\x61\x9f\xdc\x7f\xfc\xeb\xbf\xfc\xcb\xef\xfe\x75\x48\x9a\x8a\x33\xc8\xa1\xdd\x30\x47\xbe\xe8\x6c\x5d\x25\x8a\x57\x60\x5b\x52\x1d\xb0\x0a\x74\x00\x0f\x64\x17\xe8\xc2\x24\xf1\x25\x9d\x70\x13\x9f\x4c\x56\x3b\x9a\x01\x49\x00\x39\xd5\x35\x09\xe1\x95\x5d\xd2\xe8\xff\x71\x07\xa5\xef\xcc\x1e\x95\xa7\x61\xa7\x64\xe6\xd5\x6b\xdb\x08\x7b\x49\xfe\xbf\x12\x02\x88\xaf\xdc\x05\xa7\xb3\x54\x14\x38\x26\xef\xb2\xf3\x8e\x44\x10\x0e\xe2\x53\x9e\xe9\xd4\x15\x11\x08\x8c\x19\x12\x14\x84\xf3\x4f\xdc\x4a\xee\x11\x91\xcd\x52\xde\x2a\x44\x5e\x16\x3c\x11\x94\x63\xfd\xf2\xd3\x1b\xfb\xb7\x11\xdb\xbc\x01\x70\xea\x88\xfd\xf5\x0d\x71\x4a\xf2\xa2\x9c\xd9\x3f\xbd\x72\xba\x36\x35\x01\x83\x96\x86\xbd\x38\x7e\xe0\xc5\x31\x88\xe7\x63\x1c\xd1\x8b\x90\xa4\x8e\xd5\xb3\x63\xdd\x3c\xd3\xfa\x9e\x80\xbb\x5b\x2f\x1e\x3b\x7a\x62\xd8\xde\x3e\x6e\x82\x4b\xef\xe9\xab\x4a\x76\x04\x0f\x08\x36\xce\xe7\x6c\xfc\x17\xa3\x15\x1b\x6f\xf8\x3a\xa3\xbf\xba\x5f\x09\x57\xcc\x0d\xe5\xda\xa5\x1e\x23\x94\x6d\xd0\x53\xfa\x36\xd3\x73\xf8\xaa\xf7\xee\x4b\x11\x99\x0b\x03\x0d\xb7\x4f\xb8\xb0\xe8\x43\x1c\x5d\x0b\xb0\x6c\xae\x75\x89\x8f\x50\xda\xec\xf6\x57\x7d\xf2\x43\xfa\x23\xc6\x85\x61\x52\x5c\x72\x20\x3a\x87\x3d\x2a\xce\x36\xfa\x89\xbd\x24\x11\xf4\xca\xde\x31\x04\x83\xc6\x69\x68\xeb\x60\xe3\x3b\xf8\x8f\xa8\x03\xa9\x18\xa6\x7b\xee\x78\xf3\xaf\xc7\xe3\xf1\xd8\xbf\x0d\xdc\x4e\xff\x87\xc9\xd2\x88\x6c\x81\x2d\xb9\x1b\x6c\x33\x55\xef\x5d\x79\x32\xe7\xbc\x0e\xc4\xe7\x79\xa1\x4b\x9d\xe8\x8c\x1d\x05\x87\x6e\xaa\x13\xc3\xfe\xc9\xaa\xb5\xd1\x54\xc2\x1f\xad\x1d\xd7\x7e\xa6\xa8\x1e\xca\x17\x3a\x54\xe4\x10\x6f\x1e\xab\x98\xeb\xd8\x1b\xb6\xdc\xc4\x49\xce\xb0\x17\xec\xce\x39\x26\x3e\xe4\xa2\xb0\x0f\x8b\x4f\x25\xfc\xd4\x41\x37\xdd\x0a\x91\x6f\xbf\x29\xb7\xc4\x6d\x60\x9d\xc6\x6d\xdd\x31\x01\xc4\x0a\x4b\x92\x01\xbf\x73\x14\x87\x4f\xec\xe5\xa2\xe2\x82\x59\xa6\x5a\xaf\x79\xb1\x39\x0e\xa7\x6d\x7b\x73\x06\x3e\x62\x90\x31\x99\x9b\x00\x08\xe1\x66\x74\xb4\x08\xc5\x40\xea\xa5\xbb\xd1\xfc\xd9\x4d\xa0\xe2\x79\xc4\xeb\x25\x54\xa2\x53\xda\xd7\x21\xab\xb5\xae\xb1\xf8\x67\xb6\x75\x15\x87\x88\x31\xc1\x19\xa7\x4a\x24\xba\xa3\x27\xdc\xcb\x1d\xe2\x5b\xcf\x4c\x69\x05\xe5\x72\x40\x78\x74\xf2\xe1\xc6\xbd\xd3\xff\xd2\x85\x79\xa8\xab\xec\x3c\x8b\x59\xa4\xd5\x92\x15\xfc\x31\x5c\xbf\x80\xed\x40\xef\x4c\xe5\x73\x7e\xf1\xdf\xa7\xfa\x4a\x66\xf6\xd6\x82\x3d\x3e\x9e\xaa\xda\x9f\x47\x4c\x64\x72\x2d\x95\xc7\xd6\xa1\x70\xd7\x0b\xd4\x9e\xef\x65\x69\x97\xcc\xa4\xf7\x56\x82\x39\xf6\xd3\xc8\xa4\x3a\x51\x1b\xb7\x75\x7c\x60\x8a\x3c\x10\x95\xb1\xe3\x0a\x36\x3a\xb0\x01\xc8\x54\x1c\x91\x42\x2a\xa3\x8d\x07\xe7\x77\xaa\x6c\x6b\xee\x2c\x05\x18\x72\xd4\x5e\xd4\xdc\x91\x2b\x1b\x15\x49\x00\xe8\xa3\x86\x25\xf6\xfa\x6f\x8b\x82\x72\xae\xaa\xf5\xa1\x49\x2c\x04\x4b\xfe\xb5\xdc\x74\x57\x85\x70\x37\x15\x25\x44\x09\x55\xad\xdd\x81\x1a\xb0\xe3\xce\x49\xfd\x49\x45\x92\x71\xe4\x73\xb4\x0d\x01\xf2\x71\x84\x01\xd2\x3c\xea\x0b\xaf\x17\xec\x06\x2b\x51\x66\x42\xbd\xc4\x7f\xbf\x62\x74\x37\x7c\x3d\xa2\xfb\xbc\x30\x9e\x27\x0f\xd7\x1c\x2a\xb9\x8b\x14\x7d\xe8\x50\xbb\x63\xc9\x8b\x14\xbd\xe5\xb1\x55\x81\x99\xc1\x56\xff\xda\xe8\x8a\x3d\x4a\xb3\x9a\xaa\x5b\xed\x1c\x8e\x4c\x69\x5f\xfd\x64\x04\xc6\xe8\x56\x7f\xdc\x80\x10\x80\x51\xb7\xed\x00\x2b\x84\x0f\xca\x61\x02\x10\xed\x4c\xe9\x54\x1c\x46\xf3\x79\x1b\x62\x15\x2e\x7e\x5d\x08\xcc\x33\x83\x9b\xa2\x2b\x4d\x57\x18\x33\xd0\x37\xdf\x5c\x78\xb8\x87\xa8\x1d\xdb\xab\x7e\x1c\x54\x83\x26\x66\xd0\xf5\xb7\x1a\xb4\xe2\x2c\xce\x28\xcb\xb8\x36\xf7\xbe\xa6\xc8\xa1\x8b\x90\xb4\x70\x7a\xf6\xba\xfb\xf1\xdb\x13\x98\x76\x0f\x30\xe6\x6c\x59\xe8\x2a\xf7\xa9\xf8\x2e\x8d\x10\x97\x81\x74\x9a\x89\x5a\xe8\x37\x64\x53\x5d\x48\x75\x8f\x3b\xfe\x73\xad\x11\x96\x8d\x11\x69\x8d\xec\x98\xee\x30\x9c\xf1\x23\x26\x55\x92\x55\x70\xf1\x99\x92\x27\xf7\x58\xfa\xa6\xcb\xe9\x6b\xdf\x99\xed\x4f\xd2\xec\xd0\x98\xaa\x2c\xa3\x6e\xc3\x05\x0a\x74\x82\xe0\x02\x7a\x90\x9c\x71\x76\x77\x3d\x69\xef\xfb\x5e\x6e\x07\x73\xda\x6f\xcf\xfa\x06\x81\xff\xf7\xa3\x1c\x84\xbb\x6c\x90\x47\x8b\xda\x56\xf7\xce\xa5\xae\xd2\x04\xb8\x49\x4b\x6b\x40\xa4\xd7\x2d\xae\xfd\xc1\xfb\x74\x99\x57\x33\x3b\x51\xd9\x10\x80\x80\x1d\xc5\xf7\x57\x77\x27\xd1\x7b\xbb\xb6\xca\xf7\x57\x77\x2c\xea\x03\x69\xc1\x33\x91\x94\x1e\x69\x3c\x66\xa7\xa1\x5a\x47\x53\x33\x4f\xc5\x83\x4c\x30\x75\x76\x64\xb5\xa2\xa9\x02\x12\x7c\x6b\xeb\x1c\x39\xe6\x54\xf6\xfd\xd5\x1d\xf1\xad\x06\xde\x1c\x2c\x3c\x02\xd4\x18\xc3\xae\x9d\x06\xfd\xbc\xd2\xea\x08\x29\x83\x8a\x34\x44\x3b\x46\x60\x5c\x27\x3c\x2f\x2b\x52\x30\x1e\x5e\x8f\xdd\x9a\x5c\x87\x48\x88\x1d\x96\x9e\x2a\xab\x2b\x61\x8e\x01\xd4\xc8\xb3\x1f\xbd\xbd\xb4\x8d\x49\x3d\x04\x1c\x00\x93\x76\x90\xf0\x97\x3e\x73\x90\xab\x0d\xe3\xc5\x5c\x96\x85\x35\xc3\xf0\xe5\x11\x32\x9c\xad\x5c\x1d\x34\x5c\xb7\xa0\x19\x51\x59\x43\x58\x60\xa9\x4a\x33\x55\x51\x02\x8c\xcf\x36\xc6\xe4\x05\xa9\x18\x90\x46\x03\xf6\xc6\x91\xd8\x26\x99\xae\x52\x77\xad\x16\xbe\x4c\xe2\x26\x47\x25\x6a\xaa\x80\xf1\xc4\xde\xad\xda\xaa\xa1\xe1\xee\x7f\xc3\x3e\xaa\x07\x99\x4a\x7e\x54\x0a\x93\xf1\xa3\xf2\x7f\x7f\x1c\x35\xfe\xc4\x5f\x7f\xfd\xf5\x47\xac\xf8\xd8\x45\xe7\x10\xb1\x36\x1d\xe8\xe0\x69\x8f\x53\x78\xa6\x4b\xbb\x4b\x0f\x58\xa7\x0b\x79\x2f\xd8\x47\x5c\xee\x8f\x44\x73\xfd\xb4\x65\x9b\xaa\xb6\x75\x63\x4f\x59\x36\x28\x3a\xd0\xbe\x6e\x6c\xc7\xb2\xbd\x5e\x8e\xff\x65\x39\xb7\xab\xf5\xcd\x72\xfc\xfa\x6b\xf8\xcf\xc6\x1a\xed\x3b\xbc\x3e\x7b\xa6\x6d\xd8\x2d\x82\xa8\xe5\x58\x7a\x59\x34\x55\xfb\x85\x11\x1b\x26\x8b\x60\xd7\xb6\x1d\x7c\x5e\x8a\x43\xb3\x66\x91\xfd\x7c\x00\xfa\x7a\x8b\x56\x7e\x67\x44\xf0\x40\x4e\xf6\xc0\xa7\x0e\x70\xcf\x6e\x72\xf8\x18\x80\x0b\x3f\x0e\xe0\xf9\x81\xe7\xfb\x7d\x4f\xe3\xd9\x3d\x9f\xb3\x7b\x98\x99\x10\x03\x98\x69\x6e\xec\xe3\x3d\x07\x59\x7b\x74\xd7\x18\x1f\x39\xd6\x9d\xdc\x2e\x77\x94\x92\xb5\x3e\xe4\x14\xb9\xed\x88\x2e\x13\xe3\xd3\x06\xfd\x48\x1c\xb4\xd2\xdb\xd7\xae\xdf\x25\x9d\xa5\xb8\xac\xa5\x8f\xba\xb5\x6c\xfc\xc8\x15\x71\x20\x14\xce\x9a\xd4\xb3\x75\x6f\x2a\xfd\xd0\xf1\x19\xbd\xfc\x7e\x8b\x58\xdf\xab\x97\xef\x21\xe3\xdb\x93\x6c\xad\xb9\xb2\xda\x9a\xeb\xb5\x23\xb0\x84\x56\xfe\x93\x86\x74\x97\x3f\x69\x40\xd8\x63\xbf\x64\x2d\xd7\x95\x6b\xe5\x11\x63\xab\x3c\xc3\xd8\x41\xb9\x02\xb7\x72\xa8\x94\xec\xc4\x5c\x70\x2f\x63\x55\xe5\x8c\x17\x4b\x74\x7a\x19\x51\x9a\x57\x2d\x2b\x1c\xf2\xd8\x0e\x58\x61\xa7\x76\xcd\x86\xf1\x87\x38\x7d\x0c\x5c\x2a\xbb\x4e\x9a\x1f\x65\xbd\xac\x8a\xb7\xb4\x5c\xff\x71\xcd\x80\x90\x5c\x97\xe8\x02\x6b\x90\x01\xcf\x6b\x37\xbf\xd6\x81\x34\xb3\x97\x7c\xed\xd9\x63\xa8\x35\x97\xf2\x8b\x83\x9b\x0b\xa8\x08\xd4\x3d\x86\x5e\x1c\xb2\x7d\x87\x40\x4c\xb7\x5d\x23\x98\xaa\x13\xf7\x48\xe0\x35\x37\x12\xbd\x2c\x98\x8e\x58\xcd\x31\xc3\x05\x7c\x66\x3c\xcc\x3a\x7d\x5c\xc7\x47\x0c\x4d\xf4\x6f\x7c\xc2\x9d\x11\x45\xb8\x8d\x02\x1b\x6a\xfc\x1d\x1d\x3d\xf7\xe3\xa6\xde\x29\xd1\xdd\x27\x52\x53\x6e\x2e\xf7\x74\xac\x8b\x7d\xcc\x92\xbb\x3a\x75\x88\x0b\x7b\x8a\x97\xc0\x6b\x16\x15\xec\xee\xea\xbd\xbf\x99\x44\x9f\x01\xe9\x4e\x84\xe9\xc5\xac\x84\x6c\x13\x0e\x49\x20\xe7\x6f\x74\xb6\x2d\x2b\xca\x83\xee\x02\xc9\xd7\xb3\x42\x77\x97\x11\xef\x31\x5f\xae\x89\x5a\xc4\x60\x85\x65\x45\x37\xec\x97\x8a\x67\x78\xb5\x2a\x3a\x0c\x6e\xd8\xe0\x7c\xf9\xe6\x5f\xd9\x09\xdc\x7d\xec\x3d\x48\x65\x80\x8c\x41\x6b\xa5\x66\x72\x9d\x8b\xc2\x68\xc5\x3b\xeb\xe9\xdf\x7f\x6b\x66\x54\x13\xd8\x1a\xe6\xba\xda\xae\xff\x3b\xe0\x4b\x5a\x5a\x8b\x3f\x8a\xb3\xfb\x6a\x2e\x0a\x25\x4a\x40\x22\xc2\x73\xcc\x3d\xd7\x6b\xb8\x9a\x57\xe5\xea\x9b\x59\x92\xc9\xde\x85\x8a\x21\x5f\xf5\xc4\xbe\x76\x8a\x6f\xed\xfa\x80\x5a\xfb\xb5\xa1\x2b\x86\xbf\x31\xfc\x6d\xcc\xde\xf2\xe4\x5e\xa8\x94\xe5\x59\xb5\x94\x44\x7b\x83\xc6\x86\xac\xbb\x15\xea\x1f\x86\x9a\x0d\xb6\x6f\x2f\xc1\xa9\x5a\xf3\x7b\x2c\x1e\x44\x2a\xac\xb5\x5b\xba\x48\x13\xbd\xa3\x66\x26\xb7\xf7\xee\xde\xd5\xf2\xb7\xf1\x76\x33\xcd\xbd\x67\x2a\xcc\xd6\x7b\x5c\x69\xc2\x38\xd5\xfc\x44\x03\x0e\xae\xdf\xad\x5b\xec\x64\x8e\x41\xc6\x88\xa4\x2a\xec\x13\x34\x18\x3c\xbd\x10\x40\x84\x02\x58\x95\x62\x1c\x08\xce\x5e\x18\x56\xe5\x4e\x88\x40\x64\x2b\x03\x9c\x11\x2e\x81\xfd\x21\x97\xc9\x3d\x22\x5b\x21\x77\x83\xf9\xcf\xdb\x2a\x32\xce\x44\x80\x58\xb6\x89\x86\x05\xd2\xfb\x1c\x86\x9a\xd9\xaa\x9f\xb5\x67\x9f\xf6\xcc\x4b\x29\x57\x42\xcd\x9e\x50\xc6\xa9\xff\xa2\xd5\x72\x50\x48\x09\xf7\x11\x42\x3f\x85\x95\x92\x44\xe6\x1d\x2c\x7c\x5f\xa3\x44\x2e\x1a\x4a\xbc\x34\xcc\xf0\x52\x1a\x2b\xcb\x5a\x67\x3c\x90\x2a\x1d\x32\xeb\x7c\x18\x93\x53\x0b\x8b\x53\x63\x2e\x7c\x9e\xdb\x98\xbd\x83\xb8\x4a\x64\x97\x68\xcf\x89\xd4\x25\xb0\xca\x95\xe8\x24\x07\x7e\x0e\x80\xa8\xfb\x82\xe8\xf9\x9d\xe1\x32\x9f\xd3\x38\x66\x27\x21\x9e\x8d\xac\x50\x18\xa9\xde\xf3\x45\x22\x33\xe2\x29\x9b\xaf\x57\xe8\x07\x30\x5f\xb0\x81\x98\xc4\x52\x24\x4c\x45\x2c\xf1\x7e\x98\x8f\x40\x1b\xc0\xef\x85\xda\xe5\xdf\xef\x3f\x42\x0c\xc0\xec\x74\x48\xf8\xc8\x8e\xc6\xe0\xce\x53\x06\xd8\xff\xd8\x05\x22\x2e\xb9\x38\xb6\x53\x6e\x8d\xa0\xe4\x9e\x92\x15\x31\xbe\x47\x54\x5e\x8f\x2b\x6d\xe2\x73\xe6\xd6\x0f\xed\xe8\xa2\xf2\xd5\xd9\x20\xd9\xd3\x4f\x30\xa2\x3c\x95\x8e\x99\xbe\x60\xd4\xfe\x90\xa2\x53\xc9\xaf\x37\x73\x22\x14\xa6\x01\x70\x11\xae\xa9\x96\xd3\xac\xf2\xea\xb9\xaa\xff\xec\xa7\xd7\xde\x9e\xe1\xad\x01\xfd\xf8\xad\xf9\x00\xfd\x3d\x07\x19\x0d\x7a\x19\x9f\x3f\x11\xec\x89\x21\x70\x0f\x71\x76\xde\x4f\x0d\x49\x22\x74\x51\xe6\x3a\x65\x61\xbf\x77\x65\xda\x28\xa5\x11\xe2\xfa\x1b\xfc\xac\x68\x70\xbd\xbf\x6d\xdf\x51\x7b\x1f\xe1\xe4\xd8\xbc\x92\x59\x8a\x2c\x85\x91\x86\xaa\x9d\x0a\x04\x85\xb0\x40\x1f\x91\xc6\x5f\x70\x2d\x9b\xfe\xc7\x6f\xcd\x95\x4e\x0f\xd9\x58\xc3\x99\x68\xb7\xf7\x75\x8f\x34\x1a\x13\x63\x99\xd6\xfb\x67\x22\xd7\xdd\x09\x10\xe9\xcc\xd4\x2b\x3f\xef\x18\x30\x20\xde\xe6\xd5\xe2\x06\xca\xcc\x76\x91\x32\x45\x15\x18\x5d\x96\xb5\x5d\x67\xdb\x8d\xcf\xf9\xeb\x5a\x14\x02\x50\x05\x7d\x84\xb3\xdf\xdf\x7c\xb8\x3c\x5a\xf3\xc2\xac\x38\x90\x5e\xb8\xb6\x46\xae\x72\x3f\x7a\x0b\x1c\xb0\x43\xaa\xa9\x3a\x62\x4b\x3d\x42\x18\xd1\x1b\xb6\x2a\xcb\xdc\xbc\x39\x3e\x5e\xca\x72\x55\xcd\xc7\x89\x5e\x1f\x87\xa9\x39\xe6\xb9\x3c\x9e\x67\x7a\x7e\x5c\x08\x48\x24\x39\x7a\x3d\xfe\xe6\x35\xac\xcc\xf1\xc3\xeb\x63\x00\x8f\x8c\x97\xfa\x9f\x2e\xbe\xf9\xb7\xdf\xfd\xab\x6d\x38\xdf\x94\x2b\xad\xde\x10\x46\x69\x67\xdb\x47\x68\x26\x1c\xe3\x2b\x8d\x5e\xfe\x6d\xfc\x75\x3c\x0c\x7a\x74\xad\x53\x91\x99\xe3\x87\xd7\x33\xb7\x30\xe3\xbc\xa3\x62\xc6\xdf\x53\x2f\xbe\x40\xea\xc5\xbd\x2c\xff\x9e\x7a\xf1\xab\xa6\x5e\xf4\x57\xb9\xbc\x8c\x01\x8e\xec\x20\x1f\xed\xdf\xbd\x8c\x74\x91\x88\x7d\x72\xa8\xe5\x72\x88\x13\xe3\x0e\xb8\x22\xf6\x97\x2a\xdc\x75\x01\x78\x5b\xa6\xc3\xe3\x38\xb4\x4e\x4d\xa7\x75\x31\x88\x07\x04\x80\x8e\x32\x01\x5f\x61\x54\xba\x6e\x7b\x12\xa3\xba\x3d\x07\x4c\x21\xd6\x11\x69\x27\x3d\xeb\x59\x4f\x51\x38\x00\x60\xad\x26\x09\x42\x77\xc1\x0d\x44\x47\x2d\xd4\xfb\x23\x75\xa2\xc3\xa2\x97\x6b\x31\x7c\x3c\x21\xf8\x9f\xf2\x52\x1c\xd9\x46\x76\x0c\x18\xb8\x7e\xbb\xc6\x59\x2b\xc7\xd7\xac\x01\x19\x0f\x14\x8b\x6d\x89\x74\xf6\x2c\x35\xc7\x5a\xfb\x40\x38\xec\xe0\xf6\xb7\x4c\x8e\x1e\x56\x01\x01\xc4\x0f\xda\x4c\x9f\xb1\x3a\xcc\x73\x97\x85\xa1\xcf\x7d\x62\x49\x98\x0c\xdf\x76\x70\x76\xfd\xe8\x4a\xc1\x3c\x47\x01\x95\x00\xd5\xef\x57\x3c\x05\xcf\x03\x8c\xc5\x8d\xab\x63\x18\x2b\x6e\x9e\x96\x17\x71\x82\xec\xcb\x3e\x0c\x8e\xa0\x72\x69\x5c\x87\x4e\x11\x71\xc4\x53\xf6\x48\x39\x7e\xcb\xbc\x2a\x72\x6d\x84\x19\xb3\x77\xba\x40\x46\x33\xa2\x1b\x0a\xb9\x1e\xd7\xef\x4e\xd9\xeb\x6f\xff\xed\x77\x53\xf5\xb2\x45\x0f\x04\xfd\x41\x17\x4b\x4a\x3d\x01\xed\x6f\xcd\x4d\x29\x8a\xe3\x62\x91\x1c\xe3\xad\x79\x6c\xdf\x3f\xa2\x4e\x8f\xf4\xe2\xc8\x57\x87\x38\x22\xa2\xfc\xf1\x3a\x7d\xd5\x05\xca\x6c\xb7\x35\x7e\x35\x7b\xef\xa4\xc3\x26\x69\x5b\xdf\xfd\x77\x4a\xed\x08\xa1\x0e\x46\x0a\x98\x01\x65\x0d\x59\x28\xf5\xc2\xd7\x33\xc2\x14\x67\x2c\x7d\xa6\x17\x2d\xff\xf1\x36\xd3\x73\xf3\xca\x73\xdf\x72\xe3\xfa\x08\x64\x94\x6d\x57\xd6\xd6\x99\x3b\xc4\xf1\x40\x53\xf1\x39\x3d\x8a\x4e\x26\xc6\xcb\x36\x64\xe2\xdb\x85\x46\x50\x83\x91\x8a\x8b\x17\xba\x52\xae\x60\x88\x56\x42\x2f\x00\xe1\x05\x16\xa2\x03\xa8\x42\x50\x05\x60\x8f\x9e\x76\xab\x10\x39\x2a\x5e\x10\xfe\xeb\x9e\xee\x03\x8b\xe6\xec\x9b\xe7\xcf\x51\x34\xe7\xd0\x79\x27\xc1\xf8\x2b\x4d\xf8\xa1\x59\x24\x78\x94\x86\x80\xaf\xec\xf3\x7b\x81\x16\x5e\x0e\x84\xf2\xec\xa1\x3e\x45\xce\x0b\x30\x5e\xc4\x51\xa9\x8f\x80\xaf\x10\x58\xf0\xb0\x8c\x55\x17\xfa\x0a\x00\x2a\x43\xae\x7b\xfb\x7c\x8f\x71\xa2\xc1\xfa\x29\x1a\x28\xe9\xea\x06\xc9\xdf\x09\x8d\x2f\x95\x12\x05\x05\xbf\xf7\x6a\x06\x03\xe1\x2b\xf1\x52\xee\x1a\x6c\xec\xa1\x89\x4b\x0c\xf9\x54\x4c\x1e\x09\x81\x31\x03\xab\x6c\xa5\xd7\xda\xaa\xf9\xba\x32\xd1\x8f\x68\xd5\x83\x32\xd1\x69\x93\xac\x79\x8e\xaa\xf1\xaf\xf7\x35\xf6\x68\xd9\x9f\xd0\xfb\x1e\x3f\x34\xa8\x6a\xdb\xbc\x5e\xa7\x6a\xcf\xf8\x7d\x81\xa1\xdd\xfb\x06\xc0\x51\x6b\x88\x76\x42\x25\x6f\x2a\x1b\x22\xff\x6a\xed\x7d\xbb\xa5\xbc\x05\xed\x35\x10\xc4\xf2\x21\x0d\x77\x8c\x5c\x75\xb7\x6e\x27\x51\x4e\xb5\x1e\xb8\x06\x3e\xbf\xac\xcf\x02\x70\x85\x19\x57\x2e\xd5\xea\xa8\x35\xd7\xaa\xeb\x5c\x82\x4b\xb1\xb2\x96\x89\xa3\x8a\x1f\x36\xd4\x1b\xdf\x00\xb1\xc2\x6f\x8f\x3b\x30\x6d\x42\x62\x1e\xce\x31\x0a\x04\xa7\x5b\x74\xe1\xbb\x87\x1f\x46\xa8\xd9\x37\x64\xee\xa0\x13\xdc\x9c\x5b\x33\x18\x9d\x85\xae\x09\x1c\xe6\x7a\xde\xe5\xc9\x6d\x83\xf6\x23\x39\x71\x48\xdc\xb6\xa3\xdc\x72\xaa\xf8\x17\x1f\x42\x5d\x68\x40\x3e\xcf\x2b\xf8\xfd\xf2\xc3\x6d\x0c\xea\x92\xf8\xb5\x47\xc9\x4a\x24\xf7\xe0\x48\xc4\x2b\x0f\x0f\x03\xf1\x10\x00\xd2\x3c\x54\x93\x2d\xb5\xc3\x08\x6d\x7c\x81\x1d\x5f\x64\x4a\x17\x2c\x95\x26\xcf\xf8\x06\xd0\x18\x0a\x53\x34\x03\x92\xc3\xe7\x36\x5b\x51\xb0\x2f\x8e\xd2\x7f\xa5\xed\xaa\x9c\x84\xf7\x86\xce\x65\xc0\xdc\x87\xc9\xdc\x96\x07\xcc\x88\x35\x57\xa5\x4c\xa6\x6a\x2d\xb8\x8a\xc1\xbb\x84\x46\xb1\x93\x9c\x6a\x41\xa5\x22\x16\x0b\x91\x94\x81\x6b\x1a\x8c\x10\x3f\x53\xfb\xce\xe0\xb0\x6f\xf7\x27\x6f\xe7\xa7\xff\xe0\x2a\x5e\xcb\x35\x40\xc3\x69\x0f\xd1\xd5\xf8\xc4\x28\x2b\x54\x1f\xa6\x2b\xd7\x19\xb5\xf0\x2f\xb7\xa7\xd8\x5c\x94\x8f\x02\xa8\x94\x88\xfb\xa1\x4d\xc7\x3f\xb8\x02\xd5\x21\x79\x93\x27\x9e\x7a\x91\x98\xf5\xb7\xb8\x93\xe9\x80\xc5\x98\x53\xcf\xf9\xa8\x1a\xe4\x8d\x2f\x88\x8d\x02\xbc\xa0\x2f\xc8\x9f\xfb\x02\xae\x69\x6b\x05\x17\x0f\x22\x9d\xaa\x3a\xa3\x26\xe9\x8c\xe1\xc0\xb1\x50\x5b\xf5\x79\xa4\x8d\x9b\xe3\x5e\x31\xae\x73\x60\x11\x0b\xfc\xe1\x9e\x6f\x61\x47\xad\x57\xfc\xe8\xcf\x69\x55\xb9\x32\xd3\x7d\x8d\xe1\x50\x7e\x95\x6a\x27\x52\xa9\xe5\x1a\xf0\xc9\x6f\x4a\xcf\x17\x88\x64\xc2\x1e\x27\x4f\xfe\xfa\xad\x08\x40\x5b\x1b\x53\xe5\x88\x74\x16\x55\x86\x04\xf1\x5d\xe9\x4a\x44\x1f\xea\x92\x7e\x7f\xbd\xe4\x6f\xef\x6f\x66\x51\xb9\x5a\x8f\x4f\x8a\x72\x16\x50\xd6\xb9\x5d\x2f\x94\xa9\x40\xa5\x70\x95\x2a\x21\x20\xb3\x14\x25\xdc\xe6\x69\x95\x21\x56\x15\x22\x49\x40\x45\xca\xb3\x8c\xc9\xd2\x4c\x95\x67\x4e\xc5\x9c\x24\x90\xb0\x2e\xd4\x94\x92\xc9\x05\x5d\x40\xb3\xf0\x33\x57\xa0\x87\xc9\x44\x96\x5b\x99\x1e\x9b\xb8\xba\x5b\x9e\x0b\x8e\x34\x06\xb8\x6c\x53\x15\xdb\x5c\xcd\x45\xa0\x9c\x7f\x9e\x49\x6e\x9e\x23\xfd\x7e\x87\xe3\xd6\x76\xf1\x24\x80\x11\x7e\x9d\x35\xb8\x5c\xe1\x76\x1c\x2d\x51\x27\x11\x20\xdb\x5a\x35\xa5\x71\xb1\xa3\x60\xb7\x42\x3a\x53\x52\x65\xbc\xc0\x3c\xae\x45\x95\x31\xb9\x88\x6a\xd0\xc3\x1a\x20\x6f\xa6\x5d\xae\x44\xc3\x5d\xed\xa2\x47\x86\xaf\x45\x44\xd9\x43\xee\x9d\x2c\x02\x3b\x61\x31\x10\x44\xd1\xd8\xb6\x5e\x8d\xd9\x59\x60\x06\xc6\x15\x86\x33\x11\xf1\x6d\x4b\x83\xe2\xcf\x8f\x37\x62\x9b\x80\xaf\xb3\x43\xd4\xca\x9e\x48\x7f\xea\x3a\x56\x10\xea\xf6\x0c\x43\x52\xb9\xaa\x4d\xbb\x93\x0b\x5a\xd9\x66\xec\xab\x0d\x7c\x95\x3f\x10\x1d\x03\x74\xb7\xc2\xc0\x41\xc6\x5c\xe5\x4f\x18\xa8\xe7\x82\x6f\x19\xec\x7a\x47\xc9\x7b\x58\xc7\x81\x43\x8d\x0a\x48\x0e\x1f\x68\xb4\x73\x62\xdc\x5c\x9f\x99\x5d\xf2\x72\x28\x88\xce\xe7\xec\x0d\x1f\x68\x2b\x60\xb1\xcf\x30\x41\x7a\x0c\x1c\xe7\x89\x7d\xe7\x89\x03\x35\xd5\xfc\x08\x05\xb4\x2f\x05\x05\xa2\x42\xf0\x64\x55\xa7\xcf\x70\x24\xd7\xfe\x0b\x20\x7d\x12\xce\xe3\x70\xe6\x8f\x93\xb0\xe7\xa0\x86\x26\xb3\xc3\x1f\xb3\x0f\x4a\x20\xc4\x55\x2f\xa2\x4b\x85\x06\x40\xc5\x36\xa1\xce\x90\x97\x72\x73\x3b\x30\x75\xef\x58\xc5\xec\x91\x1b\x31\x1e\x5a\x07\xa9\x87\xdb\x06\xa5\x48\x87\x2e\xd9\x56\x95\xeb\x00\xf5\xb2\x1f\x37\x47\xbb\xcd\x1f\x21\xc5\x87\x4b\x80\xb6\xef\xe8\xbf\x2c\x3b\x53\x3e\xbc\x15\xe7\xf2\x3c\xea\xfb\x86\x21\xee\x7b\xdf\xfc\x5e\xad\xea\x70\xe1\x01\xb5\x31\xef\x2e\xcf\xce\xdf\x4d\x2e\xeb\xa5\x27\xff\x70\x77\x7e\x57\xff\xcb\xf5\xdd\xe5\xe5\xe4\xf2\xfb\xf8\x4f\x37\x77\xa7\xa7\xe7\xe7\x67\xf5\xe7\xde\x9d\x4c\x2e\x1a\xcf\xd9\x3f\xd5\x1f\x3a\x79\xfb\xe1\xba\x51\x42\xb3\xa5\xfe\xe5\xed\xe4\xfd\xf9\xd9\xec\xc3\x5d\xad\x0a\xe7\xd9\x7f\x5c\x9e\xbc\x9f\x9c\xce\x5a\xc6\x73\x7d\x7e\xfa\xe1\xa7\xf3\xeb\x3d\xb5\x32\xc3\xf7\xb6\x4e\xe9\x73\xc0\x2a\x9f\x5c\x52\xf5\x84\x2d\x0a\x29\x54\x9a\x6d\x30\x49\xc6\x59\xb6\x0d\xd4\x7b\x23\xe0\xae\xab\x43\x72\x5d\x6e\x57\x82\xe9\x07\x51\x00\x01\x1a\xb6\x46\x6c\x29\x81\x6c\xa1\xd9\x6b\x21\xca\x62\x3b\x2a\xb0\x33\xa1\xb0\x2c\x36\x3e\x65\x75\xd7\x70\x02\x79\x26\x75\xc2\x72\x51\xec\x1a\x0b\x68\x46\x45\x95\x97\x72\xde\x9d\xbd\x34\x98\x73\xa0\xaf\xed\x8d\x54\xcf\xed\xbc\x78\x97\xed\x82\xb1\x96\xc4\x73\x48\x86\x00\xb4\xf0\xd4\x4a\xc1\xfe\x6d\x87\xaa\xce\xab\x79\x26\x13\x26\xd3\xa6\x3f\x85\xa8\x40\xc0\x65\xdc\x64\x84\xcf\x45\x01\xaa\xaa\xb5\x00\xf2\x42\x1c\xf1\xaa\x5c\x21\x7b\x29\xe5\x0c\x51\xfd\x9e\xa9\x32\x22\x29\x04\xc6\x02\x84\x01\x27\x2d\x56\x82\x8d\x7a\x82\xc1\x10\x79\x4f\x0a\x3c\x81\xe3\xa8\x3a\x4f\x47\x8c\x00\xdf\xc4\xd6\x07\x38\x49\xf1\xf9\x9d\x53\x43\x23\x96\x58\x6b\x36\x42\xc4\xc1\x0d\x8f\x3f\xba\x7a\xb2\xf6\xbb\xad\xa4\xf6\xf5\x54\x71\x91\x5d\x92\x55\xfb\x67\xec\xdb\x63\xf1\x46\xa9\x67\x1d\x51\xeb\xf4\xd3\x69\x21\xe0\x12\x21\x48\x83\xf3\x5f\x00\xa4\x8b\x92\xb2\x20\x17\xcb\x9a\x6a\x73\xb1\xe2\xd9\x02\x35\x0e\xbb\x34\xed\x84\x2a\xd8\xfe\xad\xbe\x17\xea\x1a\x17\xec\x57\x11\x87\x0a\x2d\x9f\x40\xe7\xe4\x3d\x42\xc1\x85\x69\xc7\xe8\x76\x95\x4b\x89\x05\x65\xaa\x44\x3b\x21\xfa\x19\x73\xaf\x42\xb1\x06\x97\x4d\xbb\x58\xc8\x4f\xb6\xc1\xa9\x12\xad\x74\xf5\x80\xa3\x73\xc4\x9a\x5e\x2e\x03\x66\x10\xd9\x09\xef\x85\x82\x52\xb2\xc0\x8b\xb8\x7f\xcf\x0e\xf3\x9f\x6f\xaf\xc5\x0e\x87\x3e\xf8\xfc\x64\xad\xc2\x6e\x1c\xe5\x71\xf3\x54\x62\x32\x9c\xa7\x1f\x81\x7d\x73\x7a\x31\x39\xbf\xbc\x9d\x9d\x5e\x9f\x9f\x9d\x5f\xde\x4e\x4e\x2e\x6e\xfa\x1e\xbf\xe7\x48\x60\x6c\x9c\xbe\x66\x1e\x9f\x97\x10\xc7\x74\xf2\x42\x16\xbf\xff\xa8\x70\xec\x60\x49\xf6\x8f\x5e\xa6\xf9\x2c\x95\x26\xb1\xd7\xdf\x66\x26\x54\x0a\x75\x3e\x9e\xb4\x55\xdb\x9b\x6a\x7e\x85\x7f\x82\xf9\x27\x9c\x04\xc1\xdb\xee\xc1\xed\x68\xff\x3b\xa0\x51\xc1\x0d\x59\x08\x7b\xf8\xd3\x1a\xbd\xca\x78\x7f\x71\x37\xdb\xdc\x61\xdf\x56\x6f\xa2\xf9\x4d\x38\x5e\x69\x4c\x05\x2c\x2e\xee\x31\x80\xe2\x76\xcc\x0a\x91\x2f\xc7\xc5\x46\x64\x54\x80\x9f\x49\x33\x55\x6b\xae\x52\x5e\xea\x62\xd3\xf1\x89\xfd\x84\x67\x7c\x6c\xea\x22\x34\xbe\xb2\x95\x10\xa9\x5b\x05\x7c\x94\xab\xe6\x56\xc2\x92\x24\xb7\x1f\x7e\x3c\xbf\xbc\x99\x9d\x5f\xfe\x34\xbb\xba\x3e\x7f\x37\xf9\xa3\x47\x08\xe7\xdc\xb4\xd5\xd5\xce\x0b\x61\xa5\x8b\x63\x78\x6b\x95\x2f\x58\xad\xda\xb5\x43\x15\x4a\xe5\x62\xaa\x9c\x64\x29\x42\xf3\xab\x42\x57\xcb\x55\x7b\x43\xcd\x51\x5e\x9d\xdc\xfe\xf0\xa4\x61\x02\xff\x26\x96\xb4\xc5\xd3\xb6\x8d\x94\x96\x0b\x92\x7b\x08\xaf\x6e\x0c\x0f\x58\x64\xe1\xd1\xb6\x28\x43\x87\x44\x7b\x92\xf5\xb2\x2d\xb4\x76\x2a\xff\x2d\x8f\x77\x6d\xa0\xdb\x48\x6e\xd6\xae\x11\x40\xee\x63\x5d\xf4\xad\xd6\xde\xb4\xfc\xad\x76\x83\x7d\x73\x94\x89\xe5\x52\xa4\xb8\xbd\x9a\x0d\x93\x0f\x8e\x44\x60\x12\xee\xf5\xb6\x59\xa4\xda\xc5\x07\x5c\xcc\x1e\xef\xd5\x5f\x80\x5f\xf9\x57\xda\x65\xc5\x29\x71\x68\x41\x7c\xb3\xe4\xaa\x23\x90\xbc\x3f\x15\xae\xbd\xf9\x0f\x05\xf3\x59\x8a\xe4\x30\x71\x21\x83\x70\x0e\xba\x00\x2f\x87\xe3\x5b\xfd\x38\xae\x45\x9e\xf1\x44\xf8\xdc\x1e\x24\x3f\x06\xbb\xfe\x29\x01\x3c\xaa\x10\xad\xc8\xdf\x12\x55\x8e\x0e\x45\xf1\xda\xb6\x00\x78\x6e\xaf\x9d\x3c\xfe\xfc\xae\x95\x9d\x86\x1b\x51\x9e\x82\xa3\x19\x4b\x74\x52\x4a\x08\xfa\xa2\xa0\xee\x6d\x27\x5c\x7f\xd0\x76\x68\xf4\xfc\x13\x2d\x3c\xda\xcc\x75\x47\x37\x77\xa4\xc2\x7e\x7b\x78\xd5\x71\x97\xbf\xb0\x2c\x8b\x9d\x3c\xe4\xcf\x11\x8e\xb8\x2a\xf4\x5a\x1a\x71\x52\x96\x85\x9c\x57\x71\x21\xe6\x81\x80\xb9\x9a\x71\x12\x3e\x38\x2f\x74\x5a\x25\x8e\x39\x0c\xbe\x36\xc0\x7e\xc8\xcb\xe7\xb4\x8e\x94\x1d\xd9\xdd\x47\x96\x9b\x48\x8f\x20\xd1\x05\xa9\xed\xda\x62\x6c\x4e\x30\x76\xf8\xfe\xae\xdc\x55\xfe\xcc\xe9\xb2\xdd\x93\xe9\xf6\x40\xbf\x0c\x78\xe6\x1e\x07\x0d\xb8\x03\x35\x45\xdb\x65\xce\x31\x80\x5e\xd7\x51\xba\x88\x82\xfc\x55\x33\x0c\xdc\xd5\x0f\x1b\x53\xcf\x24\x43\xbd\x61\xc5\x0d\xaa\xf3\x65\xb2\xaa\x0f\x1c\xbe\xa6\x4e\x98\xdc\x1c\xae\x57\x8f\x0f\x73\x9b\xf4\x0a\xa3\x8d\xd0\xd1\x20\xc9\xb1\x5d\x2b\x7e\xeb\x2b\x79\x77\xfa\xef\x31\xe5\x62\xf6\x4b\x25\x86\x14\xb4\x76\xa9\x1a\x7f\x80\xd7\xf6\x02\x52\x24\x62\xb7\xbc\xef\x15\x32\x4d\x8c\xe0\x45\xb2\x62\x73\x6e\x88\x89\x31\x26\x8a\xc0\xca\xfb\x4c\xda\xb7\x78\x52\x52\x25\x62\xd7\xad\xab\x46\x7c\xeb\xa0\x90\x56\xad\x0d\x5e\x8f\xb6\xed\xb6\x6f\x02\x86\x78\xaf\xdd\x30\x26\x67\x83\x62\x08\xb1\x1e\xee\xed\x64\xbc\x62\xe1\x76\xca\x78\xa5\x92\x15\xcb\x33\x8e\x5c\x1a\x2b\x6e\x50\x50\x38\x84\x0e\x9f\xcb\x4c\x96\x40\x91\x86\x81\xe3\xc6\xbe\xb5\xc6\x33\x2f\xee\x5d\xa5\x09\x1e\xf8\xf0\x76\x89\x92\x03\x91\xd0\xfe\xab\xbe\x28\x16\x3a\x08\xc2\x58\xb8\xf7\x3b\xec\x84\x83\x0e\xcb\x61\xaf\x37\x38\xec\xe1\x5b\x86\x45\x87\xa8\xc5\xab\xe6\xeb\x8d\xf9\xa6\x44\xaf\xc3\x64\xf7\x8e\x14\xb0\xcf\x02\x3a\x0f\x09\x75\xbb\xaf\xd1\xed\x0f\x6e\x51\x82\x87\x03\x9f\xa8\x66\xd4\x93\x92\xde\xb0\xa2\x54\xeb\xb9\x5f\x64\x9a\x97\xbb\x13\xea\xb0\x40\x54\x67\x42\x9d\xae\xe6\x5d\x25\x49\x70\x54\xbd\xd2\xf5\x5a\xdf\x77\xe2\xff\xb9\x7c\xee\xf1\x3d\xca\x4b\x01\x69\x80\x07\x66\x11\xb6\x37\x4e\x09\xdc\x83\xc9\x38\xfc\x36\x08\x65\x0a\xbd\xee\x0f\x90\xd4\x96\xe3\xd4\x54\xf2\x0e\x4a\xf7\x3c\x6c\xbd\xa4\xda\xb3\x95\xf6\x57\x3e\xfb\xdd\x37\x7d\xb2\x11\xff\x50\x71\x7b\x01\x7c\x58\xdc\x20\x37\xda\x21\x1f\x5d\xca\xed\x63\xd5\x2e\x06\x9a\xbd\xde\xd6\xa3\xb4\xf1\xc6\xef\x4d\xf4\xd0\xf6\x35\x37\xf6\xed\xfe\x62\x77\x52\xf3\xc6\xe6\x85\xd4\xc0\x11\xa6\x17\x35\x5d\xa3\x45\x12\xb7\xf6\x7b\xc0\x4c\xfe\x52\x89\x4a\xd8\x0d\x34\xaf\xd2\xe5\x76\xb0\x64\x80\xc1\x15\x3e\x69\xa5\x1f\xd9\xba\x4a\x56\xcc\x35\xce\x52\x91\xf1\x4d\x5d\x8d\xb2\xb6\x46\xa9\x81\x3d\x7a\x10\x55\x62\xc4\xf9\x9f\x54\xa6\xd4\x6b\xc0\xa9\x87\x76\x8b\x4a\xc1\x29\x67\xdc\x9d\xae\xb6\x0b\xad\xc6\x65\xfa\xc4\x08\xf9\xcd\xd5\xf9\xe9\xe4\xdd\xa4\x11\x9e\x3e\xb9\xf9\x31\xfe\xf7\xcf\x1f\xae\x7f\x7c\x77\xf1\xe1\xe7\xf8\x6f\x17\x27\x77\x97\xa7\x3f\xcc\xae\x2e\x4e\x2e\x6b\x41\xec\x93\xdb\x93\x9b\xf3\xdb\x3d\x71\xea\xed\x5e\xbb\x17\x82\x47\x54\xab\x0e\x39\xef\xea\x08\x39\x77\x15\xf5\xfa\x86\x9d\x38\xe2\xd9\x1a\x35\xb2\xc3\x1a\x00\x38\x29\x43\x8c\x25\x42\x12\xce\x78\xc9\x4f\x79\xc9\x33\xbd\x1c\xb3\x13\x46\x79\x05\x98\x2f\x62\xac\x4a\x48\xac\x9c\x76\x75\xb0\x09\xab\x17\x26\xc1\x15\x14\x0a\xa5\xeb\x05\xf1\xe1\x66\x22\x2e\xa9\xe5\x92\x3c\xa7\xea\xfc\x41\xa8\xb2\x02\x45\x9b\x67\x19\xa3\x6e\xdd\x03\x11\x21\x8a\x1b\xa5\x91\x6b\x99\xf1\x22\xd4\xb4\xfe\x40\x6d\x81\xb1\xeb\xc6\xea\x09\xf9\xb6\xd9\x36\x9c\x3f\xe0\x6e\xc2\x60\xdc\xa7\x17\x13\x50\x74\x93\xd2\x15\x6c\x74\x9d\x4f\x15\xf2\xad\x52\x8f\x6b\x0e\x39\x4c\xa5\x26\x07\x3d\x76\x4f\x0f\x77\x6f\xc4\x83\x14\x2b\x17\xca\xfa\x5c\x8e\x09\x3f\x48\xf7\x1f\xe7\xaa\x2c\x36\xbd\xb5\xd7\x5b\x20\xb3\x30\x60\xd7\x11\x24\xb2\x5e\xe7\x1a\xfd\xa7\xcc\xb5\x7e\x09\x2a\xad\xc3\xeb\x52\x78\xcf\x47\xf1\x10\x1e\xd5\x61\x12\x65\xf6\xe6\xfd\xad\xce\x43\x4c\x80\x06\xb3\x30\xd7\x95\x4a\x0d\x81\x37\xd7\x52\x1d\xaf\xf9\xa7\x57\xee\x4b\x91\xbf\xc7\x57\x9b\x03\xb2\x48\x91\x59\x7b\x70\x63\x85\xdc\xee\xe9\x9a\xaa\x1d\xf3\xb5\xdf\x26\x70\x92\x15\x5c\x06\xc1\xbf\x83\x30\xd4\x07\xb1\x69\x5b\xbf\xad\x8a\xa1\x2c\x2e\x7b\x01\x8d\xe4\x85\xb0\x0f\x7a\x8c\x6b\x86\xd0\x65\xff\x6f\xc8\x65\xa9\x55\x35\x6f\x97\xdd\x31\x6c\xe4\xa0\x63\xd3\x0a\x58\xe9\xaf\xf8\xf4\x2e\xf9\x4a\x3d\xd9\x35\x43\xf8\x8a\x8b\x9c\x50\xee\x0e\xc5\xe5\xed\x62\xfd\x45\xcf\xd9\x02\x12\xd9\xc8\x4f\x50\x08\x88\x94\xc1\x52\xb8\x1a\x45\x40\x29\xb8\x85\x89\x71\x5b\x20\x13\x06\xe2\x47\xca\x1a\xd5\xe2\x97\x8a\x20\x00\xaf\xbf\x1e\x76\xcf\x96\x58\xe8\x02\x99\xcd\x9b\x25\x20\xfc\x5d\x0e\xe3\xaa\x94\x6c\xe3\x19\xbd\xae\x94\xbd\x8a\x9f\x03\x3d\xd5\x3f\x3c\xde\xe8\x94\xfe\xb9\x37\xd7\xcc\x45\x76\x0a\x7c\xfe\xb3\x91\x56\xff\xd4\xe0\xaa\xa6\xee\x20\xb3\x81\x5a\x8f\x2f\xb4\x39\x4f\xee\x1f\x79\x91\xa2\xfb\x1f\xe0\x4c\x63\xf6\x83\x7e\x14\x0f\xa2\x18\xb1\x44\x14\x25\x27\xaa\x46\x03\x78\x0e\x38\x50\xd4\xce\x54\x41\xa2\x0f\xf2\x5e\x2a\x53\x15\x82\x95\x72\xb9\x2a\x45\x11\xa3\x71\x74\x61\xc5\x51\x89\x2c\xbd\xb9\x48\x88\x8b\xae\x63\x02\x16\x19\x7f\xd8\xe6\x9e\x7c\x0a\x89\x0e\x9b\xf8\x6c\x65\x17\xee\x76\x75\xdf\x76\xe1\xa7\x68\xc2\x48\x68\x22\x7b\xd8\x88\x2d\x75\xc6\xd5\x72\x3c\x1e\x43\x8d\x93\x57\x83\x36\x3a\x35\x18\x07\xd0\x3d\x4a\x3f\xd3\xda\x88\x6c\xe3\xf9\xd3\x7c\x1e\x15\x00\x77\x3f\x95\x42\x19\x89\x8e\xad\x96\xed\x7f\xd3\x0c\x2e\x7d\xd9\x58\x5c\xbb\x79\x3e\x38\x4b\xb7\xa3\x1d\x28\x23\x3b\xa0\x25\x7c\xbe\xdd\xf2\x7a\x52\xd6\x79\x7b\x5b\x4a\xab\xa1\xa9\xd4\x3f\x69\xd9\x01\x05\x79\x12\xcf\x6a\x6b\x4b\xc4\x01\xf5\xa4\xf4\xd3\xf6\x39\xdb\xca\x08\x3e\x20\x19\x78\x47\x5e\xef\xc0\x94\xde\x3e\x8e\x80\x9b\xe6\x72\x0f\x3e\x16\xfb\x2b\xdb\xb5\x7e\xd0\xc0\x94\xe9\xc0\x6d\x30\x44\x75\xc2\xac\xcb\x6c\x03\x16\x97\x4f\xa0\x86\xf0\x40\x1a\x45\x95\x6a\x41\x33\x48\xe5\x0b\x51\x37\xcf\xcd\x17\x05\xd9\x4c\xa9\x0b\xbe\x14\x6c\x2d\x52\x59\xad\x5b\x85\x8d\x1f\xee\x21\xf0\x51\x9d\x55\xeb\x6e\x96\xd4\x43\x15\xe8\x30\x48\xfc\xaf\x53\xe8\xae\x3f\x87\x8e\xcf\x8c\x70\x05\x46\x69\xbc\x18\x42\xa2\xb9\xb6\x37\x65\x21\x0d\x10\x0c\x3f\x25\x73\xd6\x37\x83\x4d\x43\x00\x7e\x93\xa3\x93\xbd\xb6\xba\x47\x2e\x32\x4a\xaf\x18\x5c\x55\x88\xda\x77\x5f\x0a\x4d\x50\xea\xf0\x32\x83\x85\xae\xb6\xb8\xa7\x7a\x33\xbb\xa9\xa8\xe8\x08\xa1\xe6\xa0\x41\x82\xf6\x94\x9a\x2d\x5c\x2e\xe6\xbd\x88\x58\x1f\x53\x28\x47\xf2\x88\x94\x4f\x3f\x7e\x6b\x1c\x08\x88\x70\x5a\x41\x63\x29\x43\x27\x18\x01\x7a\x78\xed\xe0\x79\xf8\x85\xd8\x04\x70\x33\xa6\x5c\x95\xad\x0d\x04\xf4\x2a\xb4\x85\xaf\xfc\xc4\xab\xac\xfd\x71\x6a\x1f\x1e\xc5\x72\xb5\x27\x3f\xdf\x30\x9c\x6a\x2a\x1d\x51\xec\x1a\x68\xd4\xc8\x7e\x80\x20\x4c\xd7\xec\x09\x9a\x60\x6d\x1d\x70\xd2\x5d\xe5\x12\x3b\xed\xa2\x4c\x56\x41\xf3\x00\x6e\x4a\xcf\xa9\x49\xb5\xc8\xe9\x3b\xd7\xa1\x18\x06\x62\xaf\x63\x10\xab\x5c\x2a\x1d\x57\x91\xd2\x4a\x40\x28\xce\x0a\x20\x1d\x37\xcb\x64\xb9\x1f\x29\x38\x90\x90\x71\xdf\x56\x2b\x35\x22\xc0\xe8\x3b\x6b\x71\x6a\x30\x29\x24\xd2\x55\x39\x98\x35\xda\x44\x54\xda\xba\x59\x24\xa1\x4e\x00\x32\x55\xf5\xae\xb6\x26\xc9\x41\xf9\x64\x21\x90\xdb\xdc\x58\xed\xad\x94\x0f\xf6\xa0\x6e\x6f\x6b\xbf\x41\x41\x02\x6c\xef\x3d\x0a\xdb\xb2\x88\x20\xfd\x5e\x6c\x4c\x5c\x47\x9b\x76\x14\xeb\xda\x90\xd2\x7e\x0f\xad\xd7\xfe\xa5\x80\x89\x9b\x15\xa1\x1a\x66\xbf\xbb\x0c\x3b\x7d\x6f\x5f\xde\x81\x11\xde\x6a\xdc\xee\xc1\x90\xec\x1a\x7c\x8a\x24\x26\xc2\x3c\xd3\x1a\x06\x18\x20\x80\x3c\x63\x18\x67\x9c\xb9\x04\x86\xaf\xb5\x6f\xa7\x8a\x6a\x28\x44\x97\x9c\x15\x38\xdb\xcb\x46\x19\xf8\xc8\xdc\xbe\xa9\xb1\x07\x01\xab\xac\x63\xd8\xad\x77\xe9\xa2\xcb\x50\x92\x10\xb6\x07\x74\x8d\x39\xca\xce\x87\xd7\xda\xe1\x13\xb1\xa5\xb4\xb8\x9d\x78\xd2\x28\x11\x10\x9f\x24\x62\x55\x2c\xc8\x8e\xd6\x4f\x22\xec\xf4\x9d\xa8\x56\x28\xa7\x03\x72\xde\x9c\x9f\x5e\x9f\xdf\x7e\x31\xbc\xa9\x03\x7b\x0e\x06\x9c\xba\x71\x9e\x9d\xbf\x3b\xb9\xbb\xb8\x9d\x9d\x4d\xae\x3f\x07\xe2\x94\x7e\x7a\x02\xe4\xf4\x86\x4a\xb3\x9c\x6a\x55\x8a\x4f\x07\xdd\xc9\x45\xa5\x66\x7c\x40\xea\x93\x2f\xce\xb4\x4b\xdd\xc1\x46\xb7\x4b\xcb\xf8\xba\x2f\x44\xeb\x4b\xa8\x13\x57\x49\x66\x11\x9c\x86\x0b\x99\x65\x90\x09\xee\xdd\xeb\x94\x65\x68\x27\x15\xe4\x8f\x63\x32\x26\x99\x3a\x55\xf3\x5a\xe5\x1f\x70\xf9\xad\xac\x11\x8c\x39\xe0\xb9\x9d\x80\x42\x42\x86\xed\xae\xea\x33\x4b\xa9\x44\x18\x06\xac\x9a\x1d\x5f\x27\x43\x3f\x2d\xe2\xe7\x44\xd6\x91\xe2\xd5\x57\xd7\x74\x3b\xae\xb6\x3f\x9d\xfa\xe9\x7e\xf4\x5f\x88\x87\x58\x2a\x54\x4c\x6b\xa7\xf9\xa6\x7d\xeb\x1e\x87\x23\x00\xf3\x6e\x57\x92\x43\x0c\xc2\x94\xbc\x28\xc3\x42\xd2\x42\x60\x4d\xbc\x10\x9c\xb8\x97\x88\x40\xd3\x8b\xc6\x3c\x5b\x51\x68\xe7\x5a\x42\xa4\x82\x13\xb9\x4d\x92\x55\xa6\x14\x05\xb9\x4d\x4e\x7e\xbe\x99\xaa\xb7\xf6\xfa\x7a\x45\xb7\x10\x55\x2e\xc3\x2e\x10\xa9\xa3\x6b\xfd\x3b\x0d\x25\x96\x60\x2f\xd1\x47\xbd\x16\x5c\x19\x06\x47\x23\xcb\x44\x11\x76\x06\x8e\x47\x88\x94\xea\x87\x03\xcb\x75\x78\xff\x15\x23\x70\xab\x9d\x0a\x3b\x5e\x5f\x41\x6d\xad\xcb\xed\xfd\xd4\x45\x34\x00\x88\xf3\xcf\xb9\x73\x5a\x12\x9f\xfa\xee\x22\x02\xeb\xb7\x6e\xa2\x7a\x1a\x52\xaf\xbd\x74\x8b\xcd\xfd\x7d\x2b\x3d\xe3\x56\xea\x71\xaf\xc7\xb7\x04\x5b\x69\x2b\x40\x7d\x59\xaf\x10\x66\xf6\x44\x27\x19\xa0\xdc\xec\x34\xb6\xde\x3a\x8d\xc2\xba\x87\x60\x3f\xa0\xa9\xc3\x10\xda\x27\x2d\x8c\x4a\xa1\x82\xa3\x8b\xed\xec\xac\xd9\xfb\x79\x98\x0b\x4f\x1c\x56\x55\xe9\xd2\x71\x90\x78\x78\x28\x61\x5d\xed\x03\x9e\xfc\x66\xe7\x18\x89\x50\xc6\x69\x29\xb3\x03\xeb\x5e\xde\xc6\x98\xda\x5a\x56\x36\x8e\x22\xe6\x73\x70\x1c\x0e\x9e\x03\x66\xc8\xe6\x7b\x7a\x65\xe5\xfa\x9e\xf3\x7c\xa2\x4f\x02\x3b\x5c\x7e\xb8\x3c\x8f\xa1\x0a\x93\xcb\xdb\xf3\xef\xcf\xaf\x6b\xf9\xfc\x17\x1f\x4e\x6a\x39\xf9\x37\xb7\xd7\x8d\x54\xfc\xb7\x1f\x3e\x5c\x9c\x6f\x61\x1e\xce\x6f\x27\xef\x6b\x8d\x9f\xdd\x5d\x9f\xdc\x4e\x3e\xd4\x9e\x7b\x3b\xb9\x3c\xb9\xfe\x8f\xf8\x2f\xe7\xd7\xd7\x1f\xae\x1b\xfd\xdd\x9d\xee\x46\x4f\xd4\x3e\xa3\xdd\xfd\x13\x82\xb3\x11\xb5\x6a\xeb\x31\xae\x57\x9e\x3e\xe0\x14\xf7\x44\x9e\xed\xdb\x8e\x2e\x5d\x3f\x8d\x2b\x91\xe0\xc1\xb0\x43\x1d\xb4\xeb\x9e\xbf\x54\x76\x6d\xea\x72\x7e\x98\xd8\xb3\xb7\xda\xec\x39\x90\x80\x3b\x15\x40\xdf\x4b\xc3\x71\x4b\x95\xe9\x71\x6a\x73\x88\x60\x2d\x79\x67\xa9\x36\x95\x7e\xf6\x91\xba\x3e\xf6\x8d\x33\x50\x79\xed\x61\x44\x7a\x2e\x36\x94\x5d\x83\x8e\x3a\x73\x64\x03\x32\x75\x8a\x82\xfb\x31\x86\xdd\xdb\xcf\xb0\x3b\x27\xda\x8e\x5d\x35\x8d\xdb\xd3\x96\x76\xb3\xef\x0d\x1d\x3f\x75\xb2\x3d\xf6\x06\x55\xcb\x80\x71\x03\x65\xd6\x90\x71\xdf\x72\x73\x3f\x74\xdc\xd4\xc9\xf6\xb8\x41\xed\x7b\xd2\xb8\xc1\xe1\x5d\xb6\xd3\xe8\x0c\x10\x62\x71\x33\xf5\xe1\xf9\x1c\x7f\xff\x48\x54\x3a\xbc\xdf\x18\xed\x01\xf8\xbc\xe6\x65\xce\xfb\x07\x32\x60\x34\xfe\xb8\xf2\x06\xab\xfc\x0d\xfc\x0a\x5f\x38\x2f\x04\xbf\x4f\xf5\x23\xad\x47\x13\x19\xca\x7a\x49\xf3\xfa\x04\x59\x19\xee\xae\x88\xb2\xa0\x08\x14\xa2\xd4\x42\xf3\x00\x93\x93\xc4\x8b\x8e\x3a\x58\x54\x75\xba\x49\x44\x04\xd4\x4f\x2a\xac\xce\x54\xa1\x36\xdf\x56\xb9\xda\xae\xaa\x1d\x11\x51\x87\xc0\xa7\x7a\x1d\x1a\x83\xeb\x26\x5a\x58\xca\x03\xaa\x0a\x00\xd3\xcd\x0b\xb0\x99\x60\x42\xa4\x02\x67\x72\x61\x0d\x9e\x42\x24\xd2\x88\xa8\x58\x5e\xeb\x8d\xfd\xcb\x61\xa5\x50\x4a\x5e\xb6\xba\x5d\x7b\xfb\xc3\x79\x52\x56\x3c\x63\x90\xae\x44\x0c\x8c\xe8\xab\xc4\xbf\x24\x5c\x61\x6a\x4c\x29\xd6\x39\x64\xf5\xc7\x39\x1d\x53\xf5\x33\x00\x25\x70\x09\x5e\x18\xf6\x3d\x40\x1e\xdc\xc3\x74\x09\xaf\x79\x09\x77\xf1\x1f\xb0\x0f\xff\xdb\x78\xaa\x6a\xc5\xa7\xa2\xb7\x6a\x75\xa8\xc6\x53\xe5\xaa\x75\xa4\x3a\x31\x63\xb0\xf8\xc6\xba\x58\x1e\x53\x19\x79\xbb\xd9\xf5\xfd\x5c\xeb\xfb\x63\xa1\x8e\xc1\x27\x55\x1e\xf3\xaa\xd4\xc7\x00\x97\xc2\xf5\x37\xc7\xae\xde\xb3\x2b\x98\x6d\x8e\x57\xf2\x41\xc0\xff\x1b\xaf\xca\x75\xf6\x4f\x26\x5f\x7d\x3a\x5a\x66\xc5\x91\x7d\xf7\x28\x7e\xf7\xc8\xbd\x7b\xe4\xde\x3d\xb2\xaf\xe1\xff\xcb\x37\x18\xde\x11\x9f\xb8\xbd\xcb\x46\x53\x25\x95\x11\x45\x09\xda\xcf\x63\x21\xcb\x50\xe5\x6b\xc3\x5e\xfc\xe7\x7f\xb2\x71\xc1\x1f\x31\x23\xf6\x8c\x97\xfc\x0a\xfd\x8b\x7f\xfb\xdb\x0b\x08\xa8\x62\x16\x53\xce\x8b\x5f\x2a\x51\x4e\x95\x11\xf6\x10\xb2\xff\x35\x55\x10\x81\x5d\x6f\x66\x25\xfa\x5d\xd1\x07\x99\x1a\xf6\x1d\xb6\x39\x41\x36\xd2\xd4\xd8\x96\x3a\xd2\x09\x24\xb7\x8d\xf5\x74\xd1\xff\x92\x9d\xd1\xf3\x03\x8e\xf5\x2f\x59\xfd\x54\xbb\x3a\x53\xe6\x97\x0c\x2e\xd0\x4c\x73\x07\xd6\x62\x7e\xf3\x82\x9d\x4c\x83\x6b\x3b\x23\x5b\xd0\x80\xcf\x1a\xa6\x6f\x3f\x2b\x37\xc8\x88\xee\x3c\xf7\x5b\x62\x04\x62\x05\x21\x0e\x01\xd1\x73\x69\x4f\xc8\x0d\x7a\x42\x41\x73\xc3\x2f\x07\x9d\x94\x42\xe7\xbe\x3d\x74\x5c\x98\xdf\xbd\x39\x3e\x1e\xb1\xa5\x81\xff\x99\xff\x02\xff\x03\xe8\xa1\xe7\x22\xf5\xdd\x9a\x4c\x0f\x84\xdb\x5e\xe5\xfd\x2b\xf1\x1c\x28\xba\x2f\xc1\x23\xdf\xd8\xa6\x6f\x2b\x95\x66\x22\xa4\x36\xd6\x42\x22\x99\xb6\x2b\xe9\x16\x6a\xbb\xf2\x10\xac\xf1\x5c\x24\xdc\x0a\xbe\xad\xbe\x11\x5c\xaa\x17\xa5\x50\xe8\x0d\x2b\x42\xa1\x4b\x8e\x9e\x2b\x50\x8b\x01\x0a\xc9\x4b\x82\x9c\x63\xad\x30\xe8\x04\x88\xd9\x47\xcd\x9f\xd8\x46\x57\xc4\x31\x0e\xcc\xb9\xa9\x48\x32\x28\xe4\xe0\xd8\x83\x58\x21\xca\xaa\x50\x8c\xb3\x9c\xab\x94\x1b\xd8\x81\x8b\x02\xa2\x9d\x05\xe3\xdb\x03\x1d\x21\x1c\x57\x57\x25\x70\x62\x21\xb2\x20\x9e\x09\x24\x81\x8f\xc6\x3c\x8a\x06\x81\x77\x02\x70\x51\x6f\xbd\x38\x9e\x2a\x57\x8a\x91\xb0\x70\xe8\x29\x4b\x74\xbe\x21\xc6\xa3\xe6\xa4\x4b\xe7\x39\xa3\xe9\x1e\x05\xbc\x49\xf3\xd9\x11\x93\xf5\xd0\x1a\xf0\xcd\x97\x51\x75\x7b\xf4\xe8\x19\xf6\x52\xa8\x44\xa7\xa2\x30\xaf\xec\x31\x94\xde\xee\x40\xfd\x41\x9a\xb0\x18\x20\xa5\xec\xe5\x46\xde\x42\xdb\xbc\x2f\x30\x65\x67\xa7\xc6\x50\xde\xa6\xe7\xec\x3f\x2a\xbf\x75\x14\x4c\xdb\x78\xe9\x3f\xbf\x28\x22\x26\xc6\x75\x3a\x9b\xf3\xe9\x2e\x08\x3c\xb2\xb1\xc4\xc5\x46\x51\xc7\x21\xe5\xc4\x95\x12\x97\x25\x14\x07\x2d\x84\x29\xa7\x8a\x6e\xe0\x11\x5b\x08\x6e\xf5\xbc\x11\x4b\xcc\x03\x0a\x63\xbc\xee\xcb\x47\x1d\x30\x38\xae\xbc\x0d\x80\x61\x6b\x8d\x07\x27\x31\x3e\xc6\x29\x03\x1b\x01\x06\x5d\x16\xba\x57\x55\x60\xb2\x5a\x05\xe2\x13\xe6\xc1\x55\x4b\x69\x56\x58\x8b\x8b\xf5\xc0\x4c\x6c\x30\x50\xcc\x9a\xe3\xc0\x1f\xac\xe0\xc1\xaf\x43\x18\x48\x24\x1c\x41\xe3\x26\x2c\x2d\x9e\xb3\x10\xc3\x8d\x29\xeb\xc1\x37\xd3\x75\xa8\x76\x4c\x04\x0c\xe0\x69\x7e\x0b\xfb\xea\x5e\x87\x95\x11\x85\x2b\xe5\x82\xdf\x8a\x04\x93\x2b\x59\xa4\x47\x39\x2f\xca\x8d\xdb\xbe\x99\x9c\x43\x05\x88\x4c\xde\x0b\x76\x52\x14\xfa\xf1\xb9\x67\xa1\x53\xb4\x74\x59\xd8\x87\x20\xd9\x87\x5a\xf9\xad\xf4\xb2\x4d\x77\xc7\xd3\xa8\x6c\xbb\x1c\x1f\xad\xfd\x14\xa2\x2c\x36\x33\xbb\x11\xd7\x79\xa7\xa4\xe8\x95\x34\xd1\x5f\xc9\x1d\xc6\x92\xdb\x70\x61\x74\xb2\xe4\xd6\x56\xf5\xb7\xc3\x92\xdb\x42\x80\xbb\xcd\x92\x3b\xb9\x9c\xdc\x4e\x4e\x2e\x26\xff\xa7\xd1\xe2\xcf\x27\x93\xdb\xc9\xe5\xf7\xb3\x77\x1f\xae\x67\xd7\xe7\x37\x1f\xee\xae\x4f\xcf\x77\xd3\x5e\x6d\x8f\x3e\xa8\xe0\x47\x2c\xee\xe7\x0d\xbb\x8d\x80\x1a\x98\x6c\x40\xfa\x37\x95\x06\x86\x5d\x65\x0f\xb3\x54\xcb\x11\x1c\xd4\x37\xec\xbc\x28\x26\x6b\xbe\x14\x57\x55\x96\x01\x9c\x0a\x33\x7b\x4e\x0b\x01\x86\xe7\x88\x5d\xe9\x74\x12\xbd\x07\xe9\x88\xad\x9f\x01\xfd\xf3\x34\x2d\x84\x31\xd8\xfd\x88\xfa\x8f\xc0\x43\x3e\xd5\x91\xc0\x73\xfc\x81\xcb\xcc\xda\x6f\x6f\xd8\x5b\x9e\xdc\xeb\xc5\x02\xd3\x67\x46\x3e\x71\x8a\xfd\x52\xe9\x92\x33\xf1\x29\x01\xaa\xb7\xf6\x7d\x72\xa1\x97\xbf\x02\x54\xb9\x47\x78\xaa\xc3\x48\x81\x52\x77\xb3\xf6\xeb\xbc\x5d\x10\xd0\x57\xbe\xc7\x57\xdf\xe1\x9b\xed\x0e\xca\x32\x7b\x86\xf4\xf8\x0b\xbd\x6c\x2f\x3c\x04\xda\x35\x55\x4b\xa2\x40\x42\x42\xec\x22\x7a\xc9\x8c\x54\xf7\x53\xf5\xf3\x4a\x28\xa6\xab\x02\xff\x04\x66\xbe\x55\x33\xb3\xca\xac\x04\x54\xe8\x1e\xb1\x47\xc1\xd6\x7c\x83\x6a\x33\xd8\x04\xbe\x5a\x0a\x6c\x19\xb8\x45\xec\xdb\x99\x54\x56\x5a\xe4\xd2\xe5\x25\x34\x97\xfe\x39\x2c\x2e\x47\x74\xc8\x0f\xe7\x21\xde\x75\x9f\xd6\xf0\x79\xe0\x2a\x0b\xb8\x49\x07\x10\x22\xc9\x0d\x45\x65\xb5\xbe\xaf\xf2\x40\x89\xfa\xc2\x05\x27\x61\xba\x1f\xb4\x4c\x59\x5a\xe5\x99\x4c\xbc\xdc\x7d\xd4\x45\x27\xef\x33\x26\xd0\xf4\xbf\x75\x9a\x69\x61\xbb\x3e\xac\x25\x3b\x27\x42\xd2\xed\x60\x80\xfe\xcc\x1c\xd8\x4c\xaa\x24\xab\xa0\xcc\x5c\x65\x44\x71\xe4\x4b\x47\xfb\x5c\xbf\xdf\x3e\x49\x76\x20\xe1\x3c\x3c\xad\x2d\x4e\x3a\xcf\xf4\x52\x26\x3c\x8b\xc1\xcd\x01\x15\xe1\x59\x78\xdd\xb1\xa7\x62\xc2\x90\x07\xe1\x06\xd4\x49\xa4\x95\x17\x02\x88\xa0\x67\x20\xca\x67\x24\xee\x0e\x19\xf7\x82\x59\x03\x1d\xc7\x15\x73\xe4\xba\xf0\x82\xbb\xe1\x42\xdf\xae\x12\x1b\xa8\x98\x42\x01\x04\x40\x3f\x2a\x51\x80\x06\x0b\xb0\x0f\xfb\xa5\x4a\x83\x6e\xe2\xab\xb3\x79\x7c\xb2\xab\x4e\xb8\xf0\x40\x6c\xcc\x9c\x5d\xca\x07\xa1\xbe\x3c\xa9\x79\xd4\x41\xc2\x93\x95\x98\x39\xbd\xfc\xb9\x45\x96\xbf\x00\x06\x0a\x2b\x57\x26\x25\x16\xa5\x3e\xbc\x09\xa6\x13\x8e\x78\x5b\x76\x61\x20\x71\x47\x46\x96\x1d\xc4\x2c\x15\xc9\xfd\x17\x17\xcd\x01\x64\xe5\x06\xc2\x38\x3b\x13\xc9\x3d\xbb\xbb\x9e\x60\x36\xb0\x2c\x99\x15\x05\x66\x15\xca\x3e\x75\xda\x6e\x25\x5f\x7e\x06\x0a\xab\xbe\x75\xab\x42\xa9\x02\x5f\xad\xcf\x0e\x88\x00\x51\x90\x2f\x69\x85\x24\xe5\xd2\x00\x10\x8c\x97\xae\x9a\x11\x38\xe2\x99\x59\x43\xf1\xa2\xaa\x8c\x2a\xfe\x65\x7c\x2e\xb2\x0e\xe2\xce\x5c\xa7\x33\x17\x27\x39\x14\xcc\xb3\xd5\x96\xf3\x63\x50\xd4\xd1\xe5\x31\x70\xab\xb1\xde\xd2\x83\xec\xfe\x5b\x13\xd1\x6b\xe8\x98\x3f\x1c\xec\x7a\x6e\x20\xbd\x7b\x21\x97\x2e\xda\x26\x17\x54\x62\x09\x13\xfa\xad\x1e\x0c\xf2\xd2\xb6\x74\xa5\x53\x82\xe9\x79\x2e\x3c\xab\x05\x09\xf2\x9e\x04\x5c\x45\x3c\x04\x87\x03\x84\x7e\xed\x89\x10\x3c\x65\x7a\x41\xde\xc4\x3c\xcf\x24\x30\x43\xa7\x48\x42\x0f\xec\x19\xa6\x8e\x8e\x8f\x5b\x73\x83\x8d\x48\x3e\xae\x1c\x10\xaf\xab\x18\x2f\x08\x0c\xcc\x60\x98\x01\x1b\xdc\xec\x81\x77\x93\xa9\x7d\xf6\x8a\x69\x1d\xe3\xf1\xd1\xe4\x3a\x25\x6c\x8d\xb4\x8f\x7c\x05\x78\xad\xbb\x84\xfc\x84\x67\x49\x45\x71\x32\x28\x97\xef\xaa\xe0\xef\x46\x10\x86\xa8\x9f\x5d\xe8\xba\xd7\xbf\xa9\x64\x1e\x5a\x5d\xd1\x27\x68\x3d\xd5\xa7\xb0\xdb\xbd\xb8\xcc\xf4\x1c\x76\x4e\x37\x4a\x70\xc7\x8d\x65\xc5\x75\x21\xd3\x21\xfa\x8e\x9b\x93\x0f\xfe\xd5\x5d\x03\xfc\xe0\x5c\x3f\xbe\x27\xb7\xef\x19\x15\x32\x68\x30\x37\x0e\xa3\x40\x58\x50\x55\xd5\xba\x79\x52\x52\x19\x0f\xd8\x56\xfe\x7e\xea\xf0\x33\xd4\xbf\xe5\xa0\x85\xde\x66\x8a\xd9\x33\x97\x81\x5c\x66\xf7\x22\x1f\x40\xf7\x81\xa2\xcc\x73\x7e\x74\x7b\x16\x55\x2a\xd2\xd9\x13\xbe\xe1\x9c\xde\xed\xf7\x2d\x7e\xa6\x71\x78\xe0\x03\x54\x47\x56\x55\x48\x79\x91\x86\xef\x18\xc1\x79\x4f\x78\x0e\x6e\x78\x08\x6b\x3c\xbc\x1e\xbb\x3e\xae\x43\x76\x91\x95\x97\x98\xf3\x8f\xf8\x6d\xdd\x52\x03\x67\xdf\x3e\xf2\x9b\x14\xe1\xdd\x76\xe7\x84\xed\x5a\xcb\xbb\xe9\xb5\x77\x9b\x3b\xcc\x09\xf0\x43\x36\xd7\xe7\x90\x1d\x55\xa9\x43\xb4\x07\xbe\x67\x02\xb4\xc3\x71\x46\x1f\x08\xc8\x49\xda\x81\x14\x71\xea\xb7\x13\x42\x03\xf0\xc7\x83\x10\xd0\x79\x21\x5c\xdc\x70\x23\x4a\xcf\xeb\x90\xb9\xba\x82\x10\x16\xf3\x5f\x5d\x27\xb6\x71\xdc\x15\x9e\x8c\x0c\x82\x58\xa4\xea\x27\x7a\x9d\x6b\x05\xb0\x24\xcc\x52\x9b\x2a\x6a\xdc\x55\x87\xf7\x91\xb5\x5a\xaa\xe3\x88\x1c\x9a\x98\x38\x23\x8c\xce\x1e\x28\x84\x1a\x15\x31\x81\xba\x92\x76\x80\xa7\xd6\x36\xd4\x05\x12\x6c\xb9\x9b\x1d\x32\x01\x1a\x25\xd2\x0b\xb1\x94\xa6\x14\x71\x76\x68\xfc\xfe\xb3\x55\xb3\xad\x39\x4f\x76\x4d\x7d\x67\x35\xdb\x7d\x56\x90\x95\x4f\x03\xc6\xb3\xc9\x45\x3a\xf1\xef\xed\xde\x0c\x8d\x04\xfe\x20\x0e\x6b\xf7\x1d\xee\x01\xb4\xfe\x0c\x52\x7d\x19\x5f\x7e\xc4\x2f\x12\x91\x30\xf1\x00\x68\xb4\x4b\xb4\xac\x78\xc1\x55\x29\x84\x99\x2a\x0a\x3c\x23\x65\x5d\xcc\xca\xd2\x00\x42\x7a\xdb\x26\xd1\xa6\x44\x06\x28\x78\x65\xc1\x65\x56\x15\x9d\xee\x06\xdc\x95\x4f\xa2\x9d\xd8\x35\x4b\xa7\xd0\x2c\x6b\x5b\x34\x9f\xc0\x1c\x9d\x22\xcf\x9a\xd2\x0c\x1b\xd7\xf3\x7b\x3b\x3e\xc1\x5d\x2e\xfd\xd7\xdb\xfb\x9a\x3b\x72\x9a\xbf\x35\xb3\x5c\x0f\x90\x78\x3f\x7e\x6b\xae\x74\x47\x36\xb8\xf9\x65\xcb\x27\xba\x03\x3e\xf1\x4b\x57\x41\x16\x6e\xee\x21\xf2\xb8\xcf\x15\xd3\x8b\x8d\x73\x6f\x7c\xb2\x53\x76\xc1\xae\x5d\x71\x95\x66\x56\xe5\xe5\x65\x93\xf7\xda\xe3\xbc\xad\x49\x54\x3a\xe1\xd8\x9d\xd4\x07\x39\x32\xb3\x64\x2b\xc1\x72\xdf\x3c\x35\x32\x33\x77\x62\x29\x1b\xbd\xd4\xf3\x25\xdb\xf2\x74\x82\x0e\x43\x65\x90\xfd\x81\xfd\xd5\xf5\x97\xf3\x78\xec\x5f\x48\x7d\xa9\x9f\xb5\x85\x5c\xfe\x06\x1c\x09\xef\xb7\xaf\x84\x84\x64\x0e\x5d\xd4\x3e\xbb\xe1\x40\xa9\x03\x89\x64\x56\x6a\xc7\x8c\xe3\x53\x45\xe5\xe0\x11\x5d\x00\x61\x65\xe4\x5b\x33\xec\xb5\xcf\x2e\x7e\xfd\x2f\x8e\x6d\x6b\xc3\x16\xb0\xa9\x80\xd2\x4e\x27\x49\x55\x40\xe8\x9f\xdc\x93\x4c\xe0\x25\x6c\x06\x11\xc9\x80\xea\xe1\x01\x5b\xa8\x27\xb6\xa9\x49\xde\x1f\x5d\xfb\xa8\x5b\x70\x43\x62\x61\x7b\x7f\xe9\x53\xbd\xb2\xc2\x94\xcc\x94\x22\x6f\x15\xbf\x35\xed\x52\xae\x03\xf5\xf7\x21\xea\x65\x2b\xc1\xf0\x30\xde\xee\x1d\x31\xfa\x4d\x2e\x4e\x94\xd2\x65\x33\x8b\x66\xf0\x30\xb9\x6f\xa5\xe7\x01\x1f\x70\x65\x9e\x44\x8e\xad\xdf\xdf\x7c\xb8\x64\x39\xdf\x00\x42\xb3\xd4\x0c\x1f\x05\x5a\xd4\xa6\x38\xdd\xb7\x4f\xea\x1f\x5f\x97\x7d\xb8\xf2\x0e\xea\xdd\x1e\x45\xa1\x1e\xb7\x55\x5a\xd8\xd9\x74\x70\xac\x64\x2d\x74\x76\x94\x67\x5c\x45\x20\x7c\x33\x66\x8d\xee\x63\xd4\x85\x8f\xbf\x12\xae\x0d\x06\x00\x5e\x15\xda\xb1\x45\xd5\x0a\xd3\x06\x76\x20\xb7\xed\x0f\x03\x5a\x74\x4a\xb2\x9d\xf0\xd3\xf7\x58\xab\x06\x2b\x37\x20\xc7\x87\x03\x8f\x78\xfc\x11\x37\x00\x0d\xee\xe4\x29\xe7\x49\xc6\x8d\xd9\x89\x25\xfa\x2c\x84\xf7\x51\x6e\xe5\x7e\x21\x5b\x1f\x27\x82\x1d\x81\x81\x05\xad\x67\xff\x33\x70\x3a\x38\x01\x1b\x4a\xd3\x45\x56\x49\x54\xb3\x82\x00\x1a\xc4\x6a\x05\xef\x23\x5f\xe5\xbd\xd8\x38\x3f\x1c\x09\x54\xbe\x16\x23\xef\x12\xf6\x3e\xcf\x08\x9a\xb8\xdd\xf0\x54\x01\x76\xf7\x5d\x3c\x3c\xf6\x4e\xeb\x11\xa2\x48\xa9\x73\x8e\xcd\xf2\x18\x87\x35\x55\xef\xb4\x1e\x73\x6f\x6a\xd3\xf8\x49\x28\x36\x3b\x24\xec\x16\x20\x23\x1b\xcb\xd9\xff\x6c\xfe\x20\x15\x16\x51\x94\x6b\x6b\xe6\xd1\x3c\xc1\x8e\x82\x01\xb9\x9a\xfd\xfa\xd1\xb0\x14\x89\x6f\x2a\x69\x56\x10\x1c\xc2\x68\x2c\xf4\x4f\x17\x1f\xc2\xc6\x0a\xae\x8c\x3d\xc3\x10\x50\x12\x0f\x82\xbc\xca\x35\x24\xc4\xe4\xec\xc2\x83\xab\xf0\x5c\x52\x81\x91\x8e\xd3\x16\x99\x46\x87\xb8\x10\x00\x14\x3f\x80\x76\x8f\xdc\xb0\xef\x79\xbe\x2b\x65\xf7\xe0\x16\xf7\xad\x92\xa7\xfd\x6a\xda\x7d\x50\x6f\x1d\x2a\x2d\xd6\xf2\x76\xe3\xd9\xbb\x53\x5f\xf8\x62\xa4\xc2\x40\xbd\xdd\x20\x03\x45\xc5\xfe\xeb\x26\x62\xe0\xf4\xc0\x46\x6f\xb1\x5a\xc1\x0e\x75\xec\x80\x3a\x10\x8f\xf4\x98\xdd\x08\xc1\x3e\xc2\x4c\xd9\xce\x3e\x52\x9d\x54\xc0\x6a\x97\x5c\xb6\x96\xb1\x83\xa7\x27\x6a\xa1\x0f\x93\xff\xc5\x72\x0b\x0b\x7c\xd0\xac\xb4\x8f\xf3\x50\xb4\x31\xc4\x23\xd4\xe7\x25\x3f\xe9\x75\x31\x34\xd6\xfa\x2a\x78\xc5\x28\x25\xda\x8d\xd4\x2a\x8e\xb0\xc4\x4f\xa1\xd7\x6b\x6c\x12\xfb\x95\x23\xa4\x8c\xbf\x57\xfa\x51\xa1\x3c\xa6\x9e\xd8\x4b\x7b\xfe\x40\x67\xc1\xe8\x15\xea\xab\x15\x4a\xc3\x57\xc0\x61\x7f\xe2\xff\xcd\x6e\x30\x50\x8f\x63\x86\x02\x67\x06\xb4\x72\x2a\x4d\x06\x17\xf8\xcb\x93\x11\x7b\x3b\x62\xa7\x23\x36\x1e\x8f\x5f\x8d\x98\xe0\xc9\xca\x8d\x08\x5f\x41\xd1\x5f\xf2\xa5\x6d\x9b\x8a\x13\x2d\xa2\x0e\xa0\x88\xa1\xd5\x4f\x1c\x55\x23\x0f\x4f\x45\xbe\x3f\xf7\x09\x98\x40\x4e\xd9\x6e\x04\x6a\x4a\x56\x5a\x86\x41\x01\x3e\x5e\x24\xba\x70\x08\x7b\x53\xea\xc2\xa1\x85\x1f\x78\xc1\xa5\x02\x5e\x0d\xbe\x9d\x2b\x41\x3d\x47\xcc\xfa\xe2\x13\x5f\xc3\xf7\x4b\xe5\xc9\x85\xed\x34\xdd\xfa\xf1\x97\x9b\x9c\xa2\x81\x8f\x85\x2c\x4b\xab\x90\x99\xa9\xba\x61\x6f\xbe\x63\x27\x79\x9e\x09\x76\xc2\xfe\x8b\xbd\xe5\x8a\x2b\xce\xde\xb2\xff\x62\xa7\x5c\x95\x3c\xd3\x55\x2e\xd8\x29\xfb\x2f\x3b\x6d\xb6\xbd\x4b\x6d\x35\xa0\xcd\x88\x71\xa6\xaa\x0c\x15\xbd\x97\x0e\x89\xfb\xca\x7f\x17\x0f\xab\x33\x17\xe5\xa3\x10\x8a\x19\xbd\xa6\xab\xf0\x8f\xfe\xf6\x37\x52\x2d\x33\x51\xd2\x7e\xa8\x63\xa6\xb1\x83\x23\xf8\xd2\x37\x53\xe5\xbd\xe9\x7f\xb4\x23\xfe\x23\xfb\x2f\x76\x59\x65\x99\x1d\x92\x15\x34\x76\x23\xbd\x61\x2e\x87\x4d\xa8\xf1\xa3\xbc\x97\xb9\x48\x25\x87\x2c\x36\xfb\xaf\xe3\x5b\x58\xed\x59\x15\x08\x4b\xe3\x33\xed\x8b\xc6\x1d\x22\x7a\x3e\x0b\x23\x86\x2f\x69\x18\x6b\x2b\x9d\x50\x99\xf8\xd5\xe1\x4a\x70\xa0\x69\xa6\xf3\x40\x36\x0a\x16\xfc\x8b\xc3\xa8\xed\xfd\xfb\xda\x64\xb9\xfd\xaf\x56\x92\x92\x5e\x35\xca\x76\xcd\x47\x18\x23\x28\xa7\xb8\x38\x21\x85\x14\x0c\x19\xc8\x78\xc4\x73\xb7\x81\xc2\x24\xae\x6d\x34\x8e\x31\x08\x6f\x0d\x7e\xd4\x46\x4b\xbe\x1c\xb1\xdc\x57\xbb\x72\x87\xca\x87\xdf\xf1\x1c\x63\x65\x07\x52\x36\x5f\x3a\x98\x93\xdd\xcb\x94\x25\x79\x9c\xea\x35\x97\xea\x15\xf4\xe1\x08\xfe\xf6\x4c\x54\x8b\xb9\xb2\x7f\x86\x6e\xf9\x4e\xcc\x65\x77\x01\x82\xba\xb2\xd3\x28\x34\xd7\x76\x1c\x0e\xac\xb4\x16\xea\xb0\x7e\x41\x73\xe8\xa7\xad\x2d\xba\xe7\xca\xdb\xaa\xb3\x56\xe3\x78\x01\x5d\x3e\xf0\xdc\xf5\x42\x00\xf8\xfa\x6a\x3f\xd5\x0b\xd1\xd6\xa6\x58\xcb\x5e\x15\x7b\x1b\x83\xbd\x23\x4b\x0c\xb3\xb3\xad\x98\x94\xd9\xb1\x15\x95\xc7\x97\x5a\x09\xc6\x8d\x91\x4b\xe4\xe6\x03\xb7\x1f\x96\xba\x75\x4a\xd9\x6d\xdd\x64\x88\x44\x10\xe8\x67\x76\x48\x88\xeb\x2e\xad\x14\xb6\x4b\x90\x6d\xa6\xca\xbe\x41\x1a\x01\xe4\x78\x49\x4f\xe1\x8e\xbd\x11\x43\xba\xeb\x8b\x2e\xc4\xa8\xf1\x96\x0d\xb6\x8b\x40\xe2\x80\x0d\x47\x27\xf1\x80\xb8\xe0\x65\x44\x5f\x4a\xad\x39\x6e\x2b\x04\xfd\xcc\x45\xa6\xd5\xd2\xee\x8a\x2e\x21\x0c\x52\xe0\x99\x86\x80\x8d\x75\x8e\xc0\x2a\x2b\xf4\x08\x2d\x89\xd5\x53\x64\x1a\x1c\x7f\xa6\x9a\x5b\x3d\xce\xc7\xa4\xbc\x36\x42\x1f\xd7\xc5\xa6\x71\x18\xb8\xea\xce\xca\x60\x5d\x38\x78\x9f\x8f\x77\xa2\xe2\x12\x98\xa6\xf0\x8b\xba\x70\x24\xc5\x20\x57\x4e\x47\xfc\x7d\xc4\x74\x81\x24\xa3\x2e\xce\xee\x59\xc2\xb6\x7b\xef\x3e\xd2\x3b\x73\x52\xda\x3d\xb4\x14\xcd\xdd\x62\x35\xe9\x71\x1a\x7e\xcd\xf4\x94\x3e\x49\x2b\xef\x4e\x26\x17\x8d\xe7\xb6\x93\x56\x5a\x32\x5b\x6e\x27\xef\xcf\xcf\x66\x1f\xee\x6e\xb7\x9e\xb3\xad\xd1\x9f\xf6\xe4\xad\x74\xce\xde\x73\x20\xf7\x7f\xc1\x4a\x6b\x33\xbd\x70\x24\x06\xfd\xaf\xe7\xad\x5a\x77\xfd\x00\xa2\x65\x64\x5d\xc7\x35\xe1\xb6\x37\x4e\x27\x15\x8b\x9a\x51\x44\xb8\xdf\x60\x9b\x13\xf6\x41\xbd\xc3\xd7\xaf\x74\x26\x93\xdd\x78\x73\x77\x59\x5a\xad\x6a\x1b\xc0\x3b\x17\x90\x80\x41\x0e\x5f\x1a\x14\xda\x67\xa5\x48\xca\x80\x78\xd8\xfe\xb8\xff\xa7\x31\xae\xfb\x3d\x30\xe8\x87\xf5\xd3\x06\x25\xd4\x3d\x86\x02\x6e\x76\xe0\xb6\x86\x92\x2e\xa8\xe5\x82\x67\x17\x64\x5e\xc2\x29\x32\x56\x9b\x79\xb8\x1e\x1e\x57\x3a\x23\x7f\x2c\xf2\x84\x4f\x55\x2e\x8a\x44\x03\x36\x14\x29\x68\x34\x4b\x56\x32\x4b\x43\xdd\xb4\x97\x90\x4c\x03\x90\xf7\x57\x54\x02\x58\x78\x8c\x8f\x6b\x7e\xc7\x9d\xef\xb6\xdd\x19\x9e\xee\x83\xf0\x71\xcf\x89\x8e\xdf\xb5\xed\x7f\x26\x14\x37\x4e\x05\x31\xfb\x35\xd0\x1a\xa0\xf6\xc7\xe3\x19\x14\xd2\xb1\x97\x3d\x95\xc4\x4a\x82\xd9\x5c\x36\xd6\x95\xb6\x59\x73\x2a\x81\xef\x1d\xfd\xe8\x08\x55\x34\x02\x86\xb3\x16\x1c\x35\xc1\xc0\xbe\x4c\x8b\x3a\x55\x01\x9f\xf2\xc2\xc4\x5a\x61\xeb\x3a\xa3\xf7\xdd\xe1\xef\x47\xec\x45\xed\x43\x5f\x00\x1f\xb8\xd2\xd0\x1f\x61\x08\x6a\x53\x03\xdb\x75\xc4\x64\x39\x55\xd6\x66\xb3\x3b\xb3\x10\x99\x78\xb0\xa3\x8b\xa3\x43\x84\xaa\x74\x9e\x13\xf7\xd9\x90\xc2\xc5\x1d\xf3\x07\x6d\x1b\x3a\x84\x45\xcc\x2b\x8d\xc1\xf3\x54\x18\xab\xb5\x42\x45\x2c\xf1\xc9\x1e\x00\x09\x21\x5a\x84\xdf\xa5\x42\xb9\xf1\x01\x2a\x0f\xc6\x36\x9e\xaa\xc9\x02\xe8\x17\x80\xf4\x21\x4d\xd1\x07\xe1\x6a\x24\x79\x92\x4f\x49\xd1\x20\x4d\x1e\x19\xb7\x10\x54\xc1\x1a\x4f\x92\x78\x10\xc5\xa6\x04\x97\x3e\xcc\xab\x12\xbc\x5c\x31\x59\x8e\x80\x9d\xd5\x49\xca\xa9\xe2\x69\x4a\x59\xeb\xd8\x5c\x64\xce\x76\xae\x33\xfd\x3e\xd7\x0f\xbb\xd4\xea\x43\xf1\xc5\x78\xaa\xf3\x8c\xab\x19\xde\x20\xbf\x02\xc2\x38\x2a\x2e\xde\x05\x35\xa9\xe6\x33\xcf\x28\xf7\x2c\xe3\xf4\xf2\xfe\xda\x01\xac\xc9\xb4\xa9\xe6\xae\xa3\x51\x0d\x40\x3e\x0f\xe4\x23\xde\x4b\x47\xe8\xae\x82\x39\x04\x4c\x7f\x29\x10\xc0\xc7\xbc\x81\x04\x73\xbb\x75\x1f\xfa\xd8\xed\x80\xdf\x2a\x3e\xb4\xcf\xca\x37\xee\x90\xe6\xb2\x0f\x87\x26\x6e\x69\x88\x4f\x82\x27\xee\x19\xd6\xe7\x85\x28\x76\x7a\x71\xb6\xa1\x8a\xee\x6b\xa3\xf8\x3e\x25\x38\xa0\x17\xd6\x3b\xd0\xda\x8b\xc7\xc7\x56\xa0\x6e\x41\xf1\x3f\x67\x84\x02\xe4\x54\x5f\x3f\x4d\xa0\x3d\x81\x71\x8d\xd9\x44\x31\xa7\xee\x8d\xd8\x0b\xdc\x58\xe6\x05\x39\xa0\xad\x9d\xcb\x01\x47\x2b\x8a\x07\x91\xd2\xe9\x21\xa2\x88\x26\x14\x0e\xd3\xf5\xc2\x71\xc3\x38\xe0\x4e\x56\xe1\xcf\x3a\x2f\x6f\x25\xa4\x0b\x3e\x85\x11\x06\x63\xc8\x73\x6c\xc0\x65\xbb\x44\xae\x50\xfa\x5c\x88\x65\x84\x0f\x76\xd1\x4e\xf6\xd6\xbd\x68\xa7\x28\xaf\xe8\x3e\x75\xbf\x33\x5d\x4c\x95\x6b\x8d\x1c\xd2\x06\xcb\x18\x36\x9b\x8a\xb2\x97\x48\xe7\x8f\x76\x2a\x40\x01\x5c\xe5\x4a\x28\x88\x1a\xa8\xcf\x9b\x52\x00\xb0\x5a\x73\x8f\x93\x85\x5a\x19\xa1\x37\xab\x78\xd8\x0d\xbe\xc6\x6b\xbe\x49\x8f\x9c\x65\x76\x52\x64\xe9\xd8\x98\xa3\xcc\x42\x53\x01\xa7\xf8\xa2\xb2\xc2\x28\x22\x5e\x9f\x2a\x3b\x79\x6c\x21\x21\xc3\x84\xe6\x65\xaa\xde\x6b\xe3\x88\x6c\x4c\x98\x0f\x07\x2c\xa0\x69\x7b\xe1\x0b\x78\xd2\x1f\xce\xe0\xd2\xa6\x88\x0f\x52\xd2\xf9\xab\x05\x52\x4a\x89\x8d\x6a\xa3\xab\x22\x7c\x54\xc2\xd5\x54\xfd\xc5\x4e\x0f\x98\x53\x5c\xb9\x65\xd5\x0b\x3c\xc2\xb0\x82\x10\x2a\xfb\x88\x8d\xbe\xfc\x97\x57\x1f\x5f\x61\x0a\x58\x65\xa0\x66\xf2\xa8\x7e\x81\xf8\x1a\x1c\x55\x96\x01\x0e\xc1\x7d\x81\xe7\x81\x0a\x5d\xec\x44\x0b\x92\x51\x37\x53\x75\x15\xa3\xcf\x41\xef\xe7\xd6\x3f\x61\x09\x2f\x93\xd5\x91\xd3\xe5\x48\x8c\xb9\xdb\x8f\x96\x0f\x73\xb5\xac\xa6\xc5\x5a\xcb\x50\x58\x83\xb3\x58\x7b\x62\xdc\xda\x7e\xb1\x9f\x00\xee\xff\xdb\x66\x4d\x36\xcf\xdb\x8d\x9b\x13\x71\x40\x75\x3d\xcf\x3f\xee\x2a\xa2\x06\x8b\x93\x62\x24\x8a\xaf\x45\xca\x5e\x40\xb2\xf2\x0b\xb7\xf8\x53\x95\xcf\xc7\xd9\x66\x51\x12\xbb\xa2\x9d\x94\x31\xd4\x0e\xdc\x73\xcb\xcd\xd2\x6d\x33\x69\xcf\x64\x77\x1a\x5a\xed\xba\x8e\x9f\x1b\xdf\x53\x7f\x85\x05\x7d\x5c\x7e\x76\x6e\xea\xc8\xc5\x7a\x11\x13\x6e\xee\x47\x6c\x5e\x70\x05\x65\x9f\xd2\x58\xa9\x0a\xa7\x13\x8c\x67\xa4\x2e\x74\xd9\x8b\x8a\x67\x1b\xc8\x52\x1a\x4d\x15\xf2\x3c\x42\x41\x80\x4d\x92\xc9\x84\x2d\x0b\x9e\xaf\x1a\x7a\x90\x78\x10\xaa\x84\xea\xe1\xd7\x82\x9b\xc3\xb0\x1a\x45\xb3\x05\xd6\x3b\x9a\x76\xa2\xc0\xfa\xe0\xaa\xc1\xcc\x0d\xc3\xeb\xb8\x5a\x00\x45\x2a\xd2\xd9\x30\x56\xae\xbd\xdc\xd1\x35\x46\x52\xa2\xc7\x83\xf8\xb3\xfd\x38\xe6\x7a\xdd\x07\x7e\xc0\x79\x25\xc2\x28\x87\x3b\x3e\x14\xb0\xe1\x09\xa8\x0e\xa2\x11\x9e\xd4\xb5\x48\x1e\x98\xb5\x82\xdf\x9c\xc2\x7e\xe8\xa9\x70\xc9\x1a\x5e\x70\x8c\xa8\xba\x2b\x50\x8c\xb2\x3f\x54\x73\x9d\x39\x8e\xd6\xc9\x19\xd3\x05\x94\x47\x2a\x35\xfd\x49\xa6\x5d\xda\x81\x54\xa9\xf8\x74\x10\x51\xd2\xee\x8b\xde\xa9\xcd\xb6\x9b\xa8\x0a\x4f\xf3\x63\x41\x3a\x15\xc2\x5e\xc2\xa5\xb3\x8c\xb7\x9e\x32\x4d\x40\xf5\x49\x56\xae\x00\xe5\x8c\x89\x44\x61\x52\xd7\x7c\xc3\x92\x15\x57\xcb\xc8\x35\x01\x70\x4e\x91\xeb\x02\xcb\x08\x3f\x00\x23\xa9\x2e\x1c\x11\x05\xd1\x2b\x50\x36\x93\x0f\x63\x60\x12\x81\x76\x1c\x0a\x7c\xb9\x2c\xc4\x12\x92\x6d\xa7\xaa\x46\x10\x03\x6c\xac\xae\x82\x11\xf6\xb3\x8b\x5f\xe3\x79\x48\xaa\xba\xac\xc1\xb2\xd8\x78\x76\x02\xaa\xc1\x1d\xce\x73\x73\x5a\x47\x4c\x8a\xf1\x88\x7d\x13\x12\x27\x44\xa2\x95\xa7\x37\xe8\xc8\x6d\x6f\xb8\xfc\xd9\x1e\xd3\x61\x9b\xcd\xaa\x7d\xec\xf0\xdb\x56\x25\xef\xd6\x4d\xb3\x93\x1f\xa2\xe4\x65\x35\xe0\x0e\x3a\xe5\x25\xcf\xf4\xf2\xd4\xbe\x7c\x83\xef\xee\xda\xd7\xa7\x98\xd5\xe0\x98\x04\xed\xf3\xf6\xe6\xb4\x7d\x87\x4a\x03\x6d\x73\xbd\xd7\x81\x9c\xe9\x6e\x07\xf2\x73\xa8\xea\x8e\x2e\x6a\xbf\x0f\x39\xeb\xa0\x40\xda\xf1\x4d\x43\x5d\xc4\x2e\xf7\x80\xd2\xa7\x4c\xd3\x8c\x6d\x91\x00\x79\xa1\xd3\x2a\x11\xa9\x3d\xb9\x60\x0f\x21\x1e\xca\x33\x31\xd5\x84\x64\xdb\x45\x5b\xa3\x93\x83\x5b\xf7\x4b\xf9\x1c\x7a\x31\xf8\xfb\xe9\xbf\xeb\xf0\x37\x38\x8d\xaf\x6d\xd2\xe3\xf3\x89\xf3\x54\x0c\xbc\xa7\x7c\xf7\x75\xde\x7d\x5d\xc8\xa5\x54\xbc\xd4\x05\x7b\xe9\xf9\x16\x5e\xf9\x62\x7d\xdd\x1a\xc2\x40\x31\x51\x9b\x22\x14\x13\x5f\x54\xf1\x68\xdb\xa4\xf6\x29\x53\xf2\x75\x1e\x33\x59\x83\x17\x38\x9a\x99\x0c\x27\xc1\xeb\x26\xe0\x3b\x95\x26\xe4\x16\x4f\x15\x45\x1c\x70\xdd\x74\x11\x97\x62\xe8\xbc\x9b\xf3\xaa\x9c\x3d\x91\x9d\x0d\x5f\x1e\xe6\x78\x22\x10\xc4\x7b\x9e\xef\xe6\xbb\xe2\xe4\x72\xc0\xe4\x4a\x72\x47\x04\x4d\xa5\xbe\x3f\x77\x17\x3b\x1a\xc8\xbf\xdd\x0c\xdc\x5f\x5f\xb8\x40\x51\xb0\x07\x6b\x06\x16\x2c\x04\x12\xff\x62\xb2\x1a\x9a\xf6\x5e\xac\xd9\x5b\xdc\x91\x64\x9d\x66\xba\x4a\x19\x09\x35\x02\x01\x14\x63\xbc\x1d\x81\x89\x7b\x3c\xee\x4a\xbe\x1b\x58\x84\xdd\xcb\x1f\x78\xaf\xfd\x04\xc2\x6f\x1d\x12\x78\xe7\xd1\xa7\x99\xfd\x6c\x4b\x4f\x33\x0d\x6b\xef\xc5\xf1\xa0\xb5\xf7\x5e\x70\xa0\x05\x1d\xe6\x20\x05\x7b\x54\xa6\x19\x9c\xb7\x38\x80\xd0\x42\x5c\x5e\x0b\xcc\x9a\xfb\x83\xbb\x73\x5c\x19\xbb\xbb\xca\x79\x21\x54\x39\x83\x1e\x87\x75\x06\x9d\x5c\xc1\xeb\x35\x85\xa9\x97\x23\xf8\x4f\xb7\x1a\xfd\xfb\x8e\x03\xec\xcf\xec\x86\x7c\x5a\x56\x5e\x49\x80\x10\x9b\x7b\xf6\x52\x02\xe2\x29\x8a\x85\xfa\x85\xeb\x58\x2e\xfa\xa0\x27\xcc\x5e\xf4\x41\x35\xd1\xde\xeb\x83\xc2\xe8\x21\x54\x0d\xad\x90\x7b\x8f\x98\x0b\xac\xa8\x75\x7f\x8b\xea\x82\x5c\xd6\xfe\x0d\x1c\xce\x76\xfd\x32\xf6\x57\x51\xe8\x90\xff\x85\xce\xaa\xb8\xe1\x9d\xfa\xfa\xd3\x4b\x9a\xa3\x3e\x8e\xc5\xb4\xe3\x6a\xb2\xf0\x17\xa2\x59\x43\x8f\xc2\x7c\xe3\xcc\x91\x8e\x10\x52\x2e\x92\x59\x47\xe9\xa0\x5e\x43\x89\x0c\xcf\xb8\x14\x90\x6c\x5c\x66\xee\x80\x1e\x83\xbf\x82\x12\xab\xd6\x3c\x27\x74\x21\x01\xc9\x9b\xc1\x9b\x31\x7c\xc4\x9f\xfe\xf8\xe7\xb1\xec\x48\x44\x87\xa1\x0f\x05\x6b\xf9\xc1\xbf\x2b\xa4\x50\x29\x04\x63\x79\xba\x5d\xd5\x4e\xd5\xbc\xf3\x35\xf1\x6c\xb7\xe1\xb3\x64\xad\xb7\x5f\xb5\x66\x86\x9b\xe8\x0b\x44\xf4\x83\x90\xf5\xc7\xb7\x16\xef\xeb\x52\x25\xcc\x2c\xdd\x28\xbe\x96\xc9\x17\x1d\xe3\x46\x8a\x2c\x85\x21\x52\xef\xfb\xa2\x52\xa9\x48\xee\x87\xea\x04\x4f\xae\xc9\x21\x92\x7b\xf6\xc3\xed\xfb\x0b\x2c\xc1\x2c\xcd\x54\x5d\xf2\x52\x3e\x88\xbb\x22\xf3\xe1\x00\x02\x69\x17\x99\x3b\x23\x75\x8e\xf8\x88\x8f\xcc\x11\xca\x3b\xc5\x21\x2e\xe1\xb1\xde\x1c\xcd\xab\xe4\x5e\x94\xc7\x05\x57\xa9\x5e\xe3\x67\x1c\x9b\x6a\xb1\x90\x9f\xc6\x25\x2f\x3a\xea\x79\xa0\x1f\xe1\x57\xd4\x73\x43\x95\xb6\x32\xe8\xbc\xa8\xea\x3e\x42\x32\x3a\xd5\xfe\xaf\x29\xb7\x98\x95\xc8\xd7\x02\x08\x59\x59\xbd\x16\x0e\xb4\x82\xf9\xdd\x50\x32\xd6\x18\xca\x9f\xd0\x54\x90\xfe\x63\xa4\xdc\x7f\x8c\x46\x15\x42\xd8\xf1\xa0\x42\x19\xd6\x35\xbf\x47\xfb\x70\x59\x08\x63\x46\xcc\x68\x18\xf1\x54\xb9\x4c\x04\x97\x2d\x07\xb8\x17\xa0\x74\xce\x36\x2c\xd1\xb9\x87\xcc\xe3\x77\xad\xf4\x23\xf8\xe9\xe3\x3c\x61\x28\x34\x5e\xa9\x52\x66\x8c\x2f\x4a\x72\xe2\x43\xfd\x0a\x57\xaf\xce\x8c\xa7\x0a\x42\xb1\x09\x7c\x3e\x40\x24\x7c\xf8\xc5\x7f\x84\x61\x0b\x9e\xc8\x4c\x96\xc4\xaa\x07\x29\x66\xdc\x7e\xaf\xbd\x0f\xec\x5c\x16\x7c\xc3\xb3\x60\x58\xf1\xac\x0a\xa9\xd1\x47\x46\xec\x60\x6d\x95\x66\x86\x0e\x82\xcf\x77\xc0\x03\x0a\x50\xc6\xc1\x07\x64\xb8\x3f\xb1\x9d\x5f\x36\x6e\xd1\x7f\x88\xff\xb7\x66\x87\xef\xd2\x0a\x0e\x30\xc8\x0f\xb9\x1c\xb7\x4d\x6e\x5f\xe4\x3d\xe8\x19\x32\x75\xe8\xe4\x9a\x2a\x1e\x92\x8f\xfd\xf5\x08\x31\x93\x0e\xa3\x7f\xec\x4a\xf3\x6d\xf7\x30\x60\xf6\xda\x95\xc4\x2f\xe4\xce\xe8\x2a\x3b\xd0\x67\xf8\xce\x1b\x7f\xa5\x75\x76\xa8\x47\x9e\x88\x43\xa4\x56\x33\xa8\x56\x7d\x88\x39\x89\x1b\xc0\x3b\xb6\x26\x67\x3e\xe6\xee\x79\xfc\xeb\x35\xee\x08\x0e\x46\x43\x00\x41\x06\x83\xd8\x81\x53\x37\x79\x0b\xe8\x62\x20\xde\x1e\xda\x40\xb4\x96\x53\xed\xb7\x43\x04\x11\x87\x0c\x0f\x63\x04\xae\xe3\xc6\x08\x07\x39\xeb\xb0\xb6\x74\xa3\x2b\xef\xb8\x8b\x39\xd1\xfd\x3c\x46\x7d\xbb\xf9\x5c\x73\x45\x9e\x3f\xd2\xe2\xa7\x2a\xd2\xd8\x91\xb7\xcf\x25\x34\xf8\x59\x6b\xf3\xe7\xd5\xb6\xe1\xc1\xfe\xbc\x43\x0a\x5f\xec\x94\x9c\x67\x71\x09\x4b\xc0\x82\x24\x7a\x3d\x97\xca\x71\x52\x90\x93\x1b\x4c\x8d\x13\xc7\x2b\xec\x03\x12\xce\x64\xc0\xc2\x46\x8d\xb9\xf7\x6a\x4e\x4c\xd1\x1c\x8b\xac\x7d\xe6\x78\x6c\xdf\x3d\x6f\x8d\x8e\x8e\x48\x63\xf3\x0b\xec\x05\x92\x3d\xf2\x8d\x81\x32\xef\xc2\x4a\xc5\x05\x3a\x76\xeb\xe3\x1f\x45\xea\x87\xe3\xac\x9e\x2a\x98\x21\xe4\x34\x73\x82\xd4\x4a\x56\xd8\x80\x99\x2b\x68\x1f\xf8\xe8\x5e\x98\xf6\xc9\xf9\x75\x62\x35\xc5\xce\x58\x0d\x06\xa1\xff\x7b\x84\x67\x76\x38\x81\x0f\xf4\x45\x47\xd7\x24\x6a\x8c\x04\x13\x82\xb4\x31\x1f\xa2\x1e\xb1\x35\x97\x8a\x8e\x01\x16\x0d\x4d\xc5\xbc\x5a\x2e\x3b\x5d\xa4\xbf\xfd\x58\x4b\xfd\x9c\xfc\x8f\xf7\x85\xef\x64\x54\x7c\x0e\x6f\xf1\xc4\xf5\x84\xee\x6b\x6b\xf7\x7d\x19\x07\xf1\xaf\xe8\x8d\x6f\x0d\x89\x6d\x6d\xa2\xe7\xf1\xc6\x4f\xfa\x78\xe3\x1d\xb6\x0b\x12\xfc\xc8\x9c\x76\xf8\x9b\xbf\xbb\xe9\xbf\x8c\x9b\xbe\xd7\xa6\x40\x52\x9f\x99\xac\x2b\xe8\x3b\x46\xf8\x44\x76\x4e\x4f\x58\x0d\xa3\x42\x06\x3c\x2b\xdd\x53\xc3\xe6\x3c\xf9\x0c\x74\x9d\x70\x3b\x1e\xee\x0f\xdc\x03\x7e\xb9\xd1\x6b\xc1\xa0\x2b\x83\xe5\xa6\x18\x65\x31\x8e\x00\xad\x6a\x3f\x30\x20\x46\x08\x8f\x02\xd7\x29\x22\x57\xd2\xa0\x54\xbf\x54\xe2\x91\xd9\xdb\x6a\x14\xc3\xf7\xa2\xe5\x81\x3a\x84\xaf\xac\x76\x58\xc3\xfa\x7b\xc2\x8e\x42\x2c\x79\x91\x42\x86\x09\x1d\xc9\x8c\x27\xf7\xf6\xbf\x61\x7c\xd4\x23\x41\x0c\x1d\x57\x00\xc2\x5e\x43\x6b\x52\x25\x48\xd8\xe8\x98\xe7\xfd\xf8\xf0\x75\xc3\x78\x52\x68\x83\x4e\x23\x5f\xbe\x1b\xf2\xab\x41\x81\x7d\x90\x69\xc5\x33\xec\xb1\xd3\xd3\x3e\x14\xbe\xd6\x04\x1c\x45\x95\xf6\xb6\xd1\x6c\xb4\x1c\xc8\x50\x05\xd3\x38\x9e\xaa\x33\x1f\x30\x79\xc3\xee\x8c\x20\x94\x99\x71\xb5\x0a\x76\x8e\xf4\xb3\xa9\x0f\x5b\x98\xc0\x4e\x1d\x62\xc7\x04\x38\x90\x75\x34\x11\xa6\x7b\x26\xf6\x90\xbe\x1e\xb2\x28\x83\xc9\xab\x27\x51\xb9\xff\x30\x2d\x68\x27\x14\x82\xa7\x9b\x98\x31\x52\x2a\x06\x51\x3a\xc6\xd3\xb5\x54\xf6\x10\xb8\x92\xb2\xfe\xa6\x71\xd5\x25\x10\x72\x0c\x95\xd7\xb2\xac\x21\x04\x0d\x53\xc2\x2a\x97\xbc\x90\xd9\x06\xec\x89\xbc\x10\x47\x51\x3f\xd1\xfa\x50\xc6\x13\xd4\xc9\x20\x12\x99\xca\x88\x45\x95\xa1\xd5\x01\x76\xb9\xff\x00\x92\x48\x77\x93\x91\x55\x38\x4a\xaa\x77\x14\x75\x8c\x55\x44\x9f\x23\x7b\x64\x2b\x5a\x39\x2c\xe2\x16\x18\x4d\x0b\x00\xb9\xaf\xf4\xa3\x4b\x75\x7b\xe4\x01\xcb\xdc\x75\xbb\x3e\x5b\x94\x65\xb7\x1e\xea\x2c\x40\x27\xa7\x22\xc2\x3f\x1f\x5a\xa3\xdf\x44\xea\x65\x93\x54\xf0\x39\x54\x88\x3b\x78\xae\x2b\x83\x19\x73\x76\x2d\xe1\xfe\x72\x8e\x8e\xba\xe3\x9a\xf9\xaf\x93\x46\x2b\x36\xad\xbe\xfe\xfa\x77\x82\x7d\x0d\x29\x84\x64\x8f\x60\x7c\x0c\x38\x4d\xb1\x75\x10\xd9\xbe\x03\x81\x84\xa7\x5b\x2b\xc2\xda\x20\xaa\x2e\x5f\x1f\x40\x9e\x3c\x59\x31\x53\xcd\x11\xc1\xc8\x29\xc4\xc2\x95\xe7\x46\xbf\xd0\x00\x46\xc4\x9b\xdd\x8d\xfe\xff\x91\x80\x02\x96\xa6\x99\xaa\x5c\x23\x7d\x3f\x40\x3f\xe7\x82\xad\x79\x71\x0f\x95\x86\xd1\x3d\x0f\xe5\x0a\x5e\x4a\x31\xae\x87\x17\x5e\xd5\xc6\x43\x01\x1d\xa4\xe5\x66\x45\xa5\x94\x2b\x9d\xc6\xac\x62\x1a\x7c\xfd\xa3\xa9\x9a\x57\xb1\xed\x59\x0b\x16\x84\xad\x05\x01\x03\x10\xb6\x1a\x98\x4a\x68\x50\xdc\x84\x71\x8d\x59\x8f\xa8\xc1\x54\x3d\x73\xd8\x60\x9f\xc3\xef\x8a\x74\x30\xe7\xcc\x8b\xf2\x15\xe0\x73\xe3\xea\xde\xb0\x1c\xb8\xed\x41\xc9\xb9\x82\x12\xdf\x23\xf6\x83\x7c\x10\x23\x76\x93\xf3\xe2\x7e\xc4\xce\x30\xfc\xf7\x7b\x3d\x6f\xf3\xe1\x6d\x11\x4a\x1c\xec\xc7\x7b\x9a\x1b\x6b\x17\xcd\x4b\xbb\xf6\xff\xf3\x16\x31\x00\xeb\x8a\x7d\xff\xf7\x44\xe4\x75\x70\x7d\xfc\x4f\xf7\x44\xec\x09\x53\xff\x1d\xbc\xf6\x3f\xd2\x2a\xde\x4d\xf3\xf1\x0f\xf1\xff\x3a\xf9\xe5\x34\x2e\xd0\x3d\x49\xca\xb5\xa2\xd2\x7e\x5b\x89\xcd\x32\x6d\x5e\xca\xdb\xf9\xcd\xfd\x8e\x02\xa5\x8f\xa7\x3e\xb5\x7d\x00\xe8\x9e\x5e\x75\xf3\x75\x9a\x69\x53\x15\xbb\x0f\xff\x75\x7d\xd4\xae\xf7\x16\xa2\x57\xd8\x6c\xeb\xb9\x00\xd6\x82\xbe\xf0\x13\x7c\x6c\xf6\x17\x3d\x9f\x01\xd6\xea\xb0\x13\xde\xd6\x9c\xa7\x8f\xd6\x49\x6d\xa8\xe1\x86\xbc\xc9\x05\xf0\x5d\x05\x55\x34\x04\x04\x1a\x3b\xcc\xbb\x46\xa6\xca\xd5\x05\xc0\x8c\xd9\xa2\x10\x40\x0d\x5e\x08\x28\x47\xc9\x88\xe1\x30\xdb\x44\x1a\x51\x64\xf9\x04\x50\x4c\x9c\xe5\x06\xc9\xaa\x64\x6f\xcd\x85\x50\x7e\xb6\x87\xa8\x12\x40\x83\xdd\x98\x7d\x42\xbb\x3d\x0a\x57\x1e\xa2\xa3\x74\xee\xd6\x7b\x91\x2d\x08\x2a\xf7\x52\x94\x91\x34\x6f\xa8\x16\xb5\xa3\x59\x8b\x50\xfd\xa6\x10\xff\xad\x31\xe8\x06\x39\x57\xcd\x81\xd2\x2b\xa6\xf7\x1c\xfe\xf2\x2b\x5e\xae\xd0\xa0\x5d\xeb\x52\xa0\xcc\x44\x96\x20\xdc\x2f\xe8\x75\x9e\x67\x7a\x0e\x75\x20\xcb\x1d\x0c\x92\x09\x1d\xed\x5e\x53\xb7\xbd\x60\x7d\x24\x83\x95\x26\x90\x69\x5b\x08\x03\x84\x2b\xdb\x51\xaa\xbe\xf8\xe4\x61\x46\xf7\xf6\x70\xad\xd0\x3f\xdb\x32\xb6\xb7\x0b\x87\xd8\x63\x0d\x60\xd5\xf3\x27\x64\xd0\x6c\x95\x61\x21\xaa\x6a\x0a\x03\x23\x5b\x6d\xe3\x7b\x91\x2d\x67\x03\x44\x7c\xf0\x4b\x74\x09\xf0\x50\x09\xcc\xe3\x41\xa9\xb2\xb4\x3f\x7f\x98\xbe\xca\x4e\x62\x04\x22\x79\x08\x46\xc1\x97\x09\xc6\xc0\x08\xb2\x1a\x55\x29\x0b\xc1\x14\xa0\x10\xa6\xca\x54\xf3\xa3\x40\x4c\x62\xad\xb8\x07\x20\xd3\x31\x22\xe7\x60\xca\x00\x5f\xd1\x51\xcb\x35\x8c\x9e\xc9\x50\xd1\xc7\xd1\x07\xf2\x8c\x84\x3f\xe4\x4a\x62\x66\xbc\xff\x76\xdf\x8e\x35\xd6\xc0\x8a\x76\x70\x25\xbc\xec\x76\xc9\x0b\xa8\x39\x06\x19\x98\xd7\x88\xa2\xf8\xb5\x2f\xf0\x38\x1a\xda\xf7\xea\x86\x78\xda\x54\xfd\xb3\xbb\x1b\xba\x41\xc5\x03\x76\xba\x9d\x19\x7b\x45\x75\x82\x9d\x6b\x63\x73\x26\x64\xa4\x04\x76\x0f\x6a\x6b\xcb\xb7\xb5\xca\x1d\xae\x25\x2e\x3c\xa3\x29\x5d\x16\x7e\x7d\x90\x26\x22\x7b\x87\xde\x6e\x84\x60\x6f\x0a\xb1\x78\xf3\xb1\x10\x8b\x99\x5b\xe9\x31\x7c\xd0\xd8\x7e\xd1\x36\xe5\x7b\xcf\xcd\x61\x72\xad\xda\xc9\x0f\xf7\x50\xa3\x36\x3e\x09\xdb\x89\xbe\x49\x2e\x58\xa8\xc1\x6b\xbf\x07\x18\x20\x44\xda\xe4\xa2\xdf\x1a\xd9\x17\xbf\xe6\xba\x90\x60\x3d\xa0\x56\x1d\xa5\x5a\xff\xe7\x5f\x6f\xb5\x39\xeb\x73\xbd\xdd\xd6\x21\x33\x4e\xd8\x73\xe5\x2f\xbc\x6e\x5c\xe8\x97\x45\xa7\xc3\x02\x9a\x9c\x3f\x2a\xe2\xb1\x19\xe4\x7a\xea\x77\xad\x35\x00\x44\xd1\xb5\xb6\x85\x81\x0b\xa7\x4c\x39\x4f\x9f\xf4\xd5\x3e\x47\x2c\x58\xd0\x3c\xcb\xe2\x8a\x1a\x21\xd2\x36\x55\x21\x2f\xd5\x6a\xad\x59\xe6\x5c\x78\x35\x7d\xc3\x97\x65\x36\x25\x2f\xc5\xc8\x91\xae\x10\x5d\x21\xc5\xc3\x8e\xe6\x1c\x0a\x70\xfb\x4a\x6f\xfb\x4e\xf3\x73\x19\x91\xbf\xb1\xbc\xe8\x3d\x91\x67\xec\x76\x76\x2f\xb6\xe0\xcc\x7b\xc7\xda\x1e\xe9\x88\x28\x25\xe0\x30\x3b\x29\x9b\xf0\xa2\x70\x28\x7f\xea\x95\x39\xba\xf3\xd8\x2a\xe9\x18\xe7\x4a\x24\xf7\xb9\x96\x6a\xb0\x2c\xaa\x51\x5c\xc0\x66\x2f\x59\x68\xcd\x5b\x87\xbd\x2e\xc7\x9a\x3e\x89\x1f\x62\x00\x5e\xe1\xa0\xa1\x81\x8c\x8d\x33\x5f\xcf\xbb\x7b\xdb\x3d\xb7\xff\x42\x84\xbb\xe1\x33\xf8\x62\x5b\xe2\x43\x8d\x5b\x85\xb7\x38\x76\x6a\x4c\xa0\x7c\x2b\xfb\xab\xe7\x64\x73\x56\xa3\x30\x6c\x9d\x52\x70\x41\xfe\xdd\x33\xf4\x77\xcf\xd0\x7f\x73\xcf\xd0\x97\x74\x0b\x01\x36\xe6\x73\xfa\x84\x76\x04\xc8\x0f\x38\x8e\xbe\xd7\xc1\x39\x8e\xad\xda\xf1\x28\x2a\x4d\x1e\x65\x3a\x6e\x03\xfd\x1d\x11\x86\x9d\x9f\x39\x4f\xee\x85\xea\x8c\xd1\x3b\xfa\xa2\xce\x2a\xb1\xcf\x8b\x60\x69\x63\x5f\x8a\xde\xde\x0d\x65\x09\x50\x27\x22\x0d\x6e\x23\x04\xb1\xe7\x04\x74\x4f\xfb\xe1\x47\x00\x1a\xd3\x85\x27\xb6\x36\x94\x85\x87\xc1\x48\xa4\x49\x42\xb0\x54\x83\x0a\xba\x2f\x26\xce\x75\x3c\xcb\xb5\xce\x5a\xa1\x71\xcf\x3a\x81\x5b\x89\x32\x7d\x27\x6f\x82\xca\xa8\x89\x01\x63\x6e\x16\x43\xd2\x45\x48\xd1\xc0\x7c\x0c\xa8\xc4\x01\xbb\x29\xad\x20\x97\x32\x4c\x47\x54\x5e\x91\x7b\x87\x0b\x61\xc4\xe6\x22\xe1\x50\x9e\xd6\x81\xf7\x12\xee\xb3\x4f\x62\x52\xa4\xad\x74\x10\xb3\xdd\x4f\x47\xd4\x12\xda\x9d\xc9\xb6\xb2\x1b\x43\x0f\x57\x43\x43\x70\xd0\x72\x1c\xb9\x43\x92\x38\xda\xc5\x7d\x65\x97\x1d\xc7\xf4\x0c\xaa\x2f\xf6\xbb\xe1\x5a\xe5\xce\x84\x1a\x3a\x85\x76\xfa\x0b\xd2\x1f\x20\x1d\x67\xdd\x13\xb9\x33\x55\x27\xbe\x1a\x6f\xc0\x7e\x79\xe4\x1e\x86\x4b\x11\xb3\xb8\xb5\x34\xc8\xe5\x18\x2c\x97\x11\x33\x55\xb2\x02\xb6\xca\xba\x9c\x8a\xe5\xd6\xf6\x89\x1d\x4d\x95\x35\x88\xc0\xd5\xb2\xe6\x90\x17\xff\x68\x95\x55\x23\xff\x2a\x3c\x3c\x8b\xc8\xbb\x62\x44\x16\x1a\x4e\x5a\xb5\xa2\xd7\x1c\x71\x28\x02\x2c\x02\xa6\xa4\xca\x53\x5e\x8a\xf1\x34\xa0\x6d\x24\x7a\x3a\x1d\xca\x83\x54\x66\x13\x7f\x58\x8c\x63\x6c\x48\xda\x4c\x2e\x44\xb2\x49\xb6\xaa\x10\xed\xa6\x89\xf8\xbb\xd9\xf6\xdb\x32\xdb\x90\x65\x17\x73\x06\x87\x4c\x2d\x0d\xf5\x3a\xbc\x7e\xd8\xe4\x0a\x16\x8d\xc4\x0c\x98\xe7\x2f\x68\x76\xb6\xe8\xc0\xc3\xf4\xf9\xde\x76\xd0\xee\xeb\x2c\x18\xb6\xe1\xb2\x8e\x28\x10\xb6\xd4\xc2\x38\xb8\x58\xc6\x5b\xc7\x2a\xb4\xbd\xc3\xfa\xdd\x2c\x33\xbf\x29\x70\x52\x1f\xc3\xd5\x6a\xdc\x1e\xae\x74\xe9\x34\x6d\x25\xf0\xbe\xdb\xa1\x71\x47\xac\xee\xbc\x7c\x61\xfc\xac\xd7\x25\xa0\xc3\xfe\x9f\xa8\xcd\x41\x09\x98\x9b\x5c\xcc\xaa\x22\x3b\x08\x6e\x7c\x77\x7d\x71\xec\xb5\x0d\xd0\x9c\x3b\xeb\x1e\x95\x8d\xd2\xd0\xae\x26\xb1\x48\x09\x0e\x9a\xe8\x8c\xcd\xab\xc5\x02\xea\x97\x10\x30\xd4\x09\x23\xa8\x9f\x5f\x99\xd2\xdd\x27\xc8\x34\xc3\x4d\x39\x55\x5a\x09\x36\xfd\xea\x78\xfa\x95\xbd\xca\x0a\x9e\x94\xa2\x40\x92\x81\x8c\x9b\x92\x19\xb1\x04\x55\x8b\x3a\xbd\xbb\xbe\x80\xac\xc4\x72\x85\xcd\x79\x93\x15\xf3\x3d\x91\xf3\x19\x6a\xfd\x00\x41\xb5\x8a\x2a\x6e\xc1\xd8\x5f\x72\xc3\xa4\x9a\xaa\x8f\xb6\x89\xe3\xa5\xd6\xcb\x4c\x8c\xdd\x82\x8c\xcf\xc8\xf5\xf8\xf1\x15\x8e\x00\x5e\x8f\x61\xfd\xf6\x42\xe4\x4a\x2b\x99\xf0\x0c\x12\x72\xa6\x0a\xb4\xe6\x91\xfd\x18\x70\x8d\x4e\xbf\x1a\x4f\xbf\x62\x10\x3e\x2d\x19\x4f\x12\x91\x97\x22\xc5\xd2\xa6\x13\xc5\x72\xc0\x2f\x26\x62\xc4\x4a\xc1\xd7\xc6\x51\x3a\xb3\xdc\xda\x98\x60\x1a\x32\xa9\x08\xe9\x34\x97\x8a\x17\x1b\x04\x33\x61\xb1\x72\x4a\xfe\xd8\x4c\x95\xf8\x04\xf4\x9f\x12\x18\x40\x2b\xe3\x69\x69\xa8\x30\x81\xfd\xe4\x13\xb5\x19\xb3\x1f\x90\xa1\x01\x29\x50\xef\xae\x2f\x1c\xbd\x11\xe5\x80\x4e\x95\x49\x56\x62\x2d\xd8\xc7\x55\x59\xe6\x1f\x47\xf8\xbf\xe6\x23\x44\x1c\x95\x66\xf8\xeb\x88\xd9\x25\xb2\x8a\xaa\xc3\xcb\x67\x1b\xa8\x21\x5b\xe5\x54\x70\x7e\xaa\x80\x8b\xbd\x88\xd1\xbd\x76\xb6\xa1\xc7\xc8\x04\xaf\xe1\xc2\xad\x14\x87\xe2\x8e\x6f\xec\xe4\xfc\x2f\x36\x59\x84\x2e\xed\x04\xba\xda\x62\x7e\x54\xa0\x90\x18\x48\xd9\x1a\xdb\x17\x4e\x14\xfb\xe1\xf6\xf6\x8a\x7d\x7f\x7e\xeb\x94\x9d\xbb\xeb\x0b\xdc\x17\x40\xa7\xc2\x38\xfb\x53\x73\x89\x6f\x37\xb9\xf8\xf3\x9f\xfe\x3c\x55\xcc\xd5\x28\x57\x6e\xa6\xf1\x44\x8f\x90\x12\x16\xf0\x4e\x10\x98\x05\x2a\x67\xe8\x0f\x4b\xee\xd0\xf0\x0b\xd4\xce\x1f\xc9\x5b\x00\x77\x54\xa6\xf5\x7d\x95\x7b\x37\x77\xac\x87\xd9\x0e\xef\xae\x2f\xa0\x75\xa0\x53\x2a\x57\x50\x3f\x4d\x78\xef\x0b\x2c\x3c\x77\x83\xb1\xff\xfd\xa0\x65\xca\xb8\xda\xd8\x77\xb1\x69\xd8\x96\x85\x58\xe8\x42\x8c\xdc\x93\xb6\x01\x5e\xca\xb9\xcc\x64\xb9\x01\x29\xe5\xea\xda\xe7\x8e\x23\xdf\x36\x60\xad\x19\x02\x78\xdb\x0d\x86\x65\x6c\x5f\xde\x99\x18\x01\x0e\x8b\xe6\x6b\x23\xa2\xa1\x63\xdf\x9d\x17\x82\xdf\xdb\xdd\x4d\x2d\x8c\x5f\x51\xcd\x58\xf1\x06\xef\x98\x45\xa5\x12\xdc\x1a\x76\x0c\xb4\xfb\xc9\x72\xca\x36\x8c\x3f\x70\x89\x35\x65\x5d\xb8\x7c\xb1\x90\x89\xe4\x19\x49\x8e\x79\xb5\x80\xb2\x31\xdc\x50\xc9\x22\x04\x1f\xda\x46\xc0\xca\x70\x05\xfb\x71\x43\xcd\xc5\x52\x22\xe0\xf8\x51\x96\x2b\xcc\x2b\x18\xe3\x3a\xf3\x5c\x9a\x71\xa2\xd7\x70\xde\x6e\x60\x2b\x19\x32\x7a\x01\x07\xde\xd8\xe7\xec\xa5\x83\xda\xad\xf3\x72\x43\x7b\xef\x15\x5b\xcb\xe5\xaa\x84\x42\x2e\xd0\x3b\x40\x22\xe4\x3a\xcf\xc0\xe8\xa3\x08\xa3\xc3\xfb\x1a\xb1\xe6\xaa\x94\x49\x57\x4c\xa9\xb5\x24\x78\x3f\x8c\xe7\x7c\x53\xee\xf6\xe3\xbd\x27\x9e\x7d\x8e\x14\xfa\x91\x44\x66\x4d\x81\x4c\x32\x10\xca\xcb\x44\x04\xfe\xcd\x92\xb3\xfb\x4c\xa8\x8f\x27\x6a\xf3\x31\x90\x90\x72\x15\xd5\xbe\xda\xd1\xbb\x3b\xff\x3c\xd3\xb4\x6a\x8c\x4f\x15\xa0\x3a\xad\xc0\xa0\x62\xb4\x3b\xef\x18\x7f\xa5\xd8\x95\xbd\x72\x9b\x26\x93\x73\xe8\x9b\x64\x85\x61\xa6\xca\x21\x9f\xa0\xd4\x2c\xe7\xc9\xfd\x71\xa5\xec\xff\x58\x61\x88\xc7\xdd\xc4\xe4\x44\x53\xa5\x17\xac\x2a\xf1\xe0\xb8\x2d\x0c\x4e\x91\xc8\x15\x10\x0c\xb4\xb5\x28\x57\x3a\xf5\x79\x61\xb6\x4d\x98\x3f\x3b\xa2\x73\xa2\x97\x7e\xfd\x86\x5d\xd9\x0e\xed\x26\xa6\xbe\xb9\xff\x7c\xa9\xd8\xe9\x3f\xff\x33\x3c\x6f\x27\xf7\x9d\xd6\x6c\xa1\x35\xfb\x8e\x8d\xc7\xe3\x7f\xc7\xbf\xd9\x46\xb9\xda\xd0\xbf\xb8\xda\x8c\x6d\x73\xef\x0a\xbd\x7e\xb9\xd0\xfa\x15\xfd\x1d\x8a\x36\xdb\xff\x90\x0b\xf6\xd2\x3e\x74\x07\x5d\xdd\xea\x97\xd3\xea\xeb\xaf\xbf\xf9\x57\xfb\xe8\x2b\xf6\x9f\xf8\x4c\xf4\xf8\xdf\xe2\xa1\x7e\xb3\x67\xa8\xbf\xe7\x0f\xbc\xcf\x58\xd9\x77\x70\xd7\xd8\x06\x76\x8e\x51\x9a\x97\xef\xb4\x1e\x83\xf5\x1f\x8f\x0e\x9b\xb5\x4f\xe0\x28\xa2\xa7\xfe\x3d\x1a\x36\x73\xe3\xfe\xdd\x9e\x71\x23\xaa\xde\x8f\x1c\x9b\x7f\xa7\xf5\xcb\xf1\xd8\xca\x2d\x9a\x57\x1c\xf5\xcb\x57\xf5\x89\x86\x0f\xd8\x1e\xbf\xfd\x79\x82\xc3\x3f\x3b\xbf\x39\xbd\x9e\x5c\xdd\x7e\xb8\x7e\xf5\xc6\x7d\x41\x58\x81\xe8\x7d\xe6\x4a\x6b\xfb\x81\xff\xef\x3d\x03\xff\x5e\xbb\x31\xc3\xa0\xdf\x7c\xc7\x70\x35\xf3\xf9\xf8\x9d\xd6\xff\x39\x1e\x8f\xff\x46\x3f\x73\xb5\x19\xd9\x8b\xc9\x3e\x93\xa3\x28\x7f\xcf\x0b\xb3\xe2\x99\xfd\xa6\x68\x0c\xfe\x23\x5a\x5b\x74\xcd\xc9\x45\xa3\xb1\x3b\xb5\x0e\xcd\x41\x67\xb0\xb0\xf0\xd4\x3f\x7e\xc7\x94\xcc\xc2\xf2\x45\x7d\xc0\x3a\xdd\x02\xb5\x44\x72\xef\x8f\x8b\xaf\x11\x3a\xdf\xb0\xbc\x79\x70\x31\xef\x6c\xe3\x2a\x14\x58\x71\x3f\x55\x2f\x5a\x24\xfa\xb1\x55\xed\xc6\xf0\x83\xbd\xa0\x5e\xb8\xea\xf1\xee\x5a\xf0\x95\xb5\x70\x66\x21\x10\x8d\xa7\x55\x51\x8e\x5a\x9b\x7e\xe8\x2f\xbc\x88\xac\x0a\xd4\xce\x17\xc7\x2f\x28\x51\x28\x74\x51\x27\x92\x9f\x7e\xb5\xd0\x7a\x3c\xe7\x05\x8c\xee\xd3\xf1\x66\xfc\xd7\xe9\x57\xf8\x3d\xa8\x7c\xa0\x62\x04\x8d\x4f\xbf\x82\x5f\x61\x3b\x4c\xd5\xef\x6f\x3e\x5c\x4e\xd5\x77\xdf\x7d\xf7\x1d\xce\x96\xfd\x77\x4b\xec\xc5\x5e\x57\x20\x6e\x51\x4f\xa9\x8c\x2b\x29\x29\x96\x55\xc6\x8b\xa9\x6a\x0f\xd7\xa4\x22\x08\xcd\x51\x08\xde\xd0\x3e\x1b\xb9\xea\x16\x50\xa4\xcc\xc9\x38\xf4\x4d\x7e\xfc\xff\xed\x90\x3f\x92\x8a\xe8\x85\x7c\x3c\x05\x63\xb7\x99\xdf\xb8\xad\x6a\x27\xdb\xee\xdf\xa0\x67\x2d\x64\x26\xe8\xe0\xba\xcd\x7d\x25\x0a\xa3\x55\xd8\x33\x64\x10\x00\xb7\x19\x04\x00\xd8\x77\xec\xf5\xbf\x37\x7e\xb5\xeb\xe0\x7e\xfc\xa6\x26\x09\x18\x0b\x4d\x4d\xbf\x82\x51\x4f\xbf\x7a\xc3\xa6\x5f\xb5\xed\x9b\xfa\xc0\xc6\x38\x94\xe9\x57\xa3\xd0\x00\x0c\xe3\x92\xaf\xb1\x91\xea\xeb\xaf\x7f\x97\xe0\x10\x30\x75\x2d\x7a\xd2\x0e\xa9\xfb\xc1\x68\x88\x93\x46\xe8\xcc\x4d\x84\x4b\x81\x7c\x14\x59\x76\x74\xaf\xf4\x23\xd6\x19\x87\x38\x11\x65\x29\x33\xdc\x1e\xf5\xc5\xa5\xda\x64\x8d\x15\x77\x49\x9b\xbe\x1b\x5f\xde\x0e\x16\x74\xaa\x3e\xc2\xd6\x71\x2b\x4a\x74\x44\x40\x07\xea\x7b\x02\xa3\x86\x76\x82\xcb\xb1\xa0\x8d\x30\x55\xd0\x8c\x5f\x73\xf6\x12\x80\x5f\xf4\x29\x5b\x9a\xb5\x33\x9e\xfe\xfc\xa7\x3f\xbf\x7a\x73\xc8\x3a\xd5\x9b\xab\x2d\x15\x7c\x0f\xb6\xf1\x7a\xfc\xcd\xeb\x6f\xcc\xf4\x2b\x9a\xf5\x76\x13\xfb\x42\x9a\xf2\xa7\x86\x06\xf6\x84\x62\xe7\x56\x71\xf8\x5c\xc1\x0b\x37\x54\x1c\x66\xdf\xa0\xc5\x75\x3d\xac\xa0\x17\xce\xad\x03\xc6\x99\x2b\x03\x6f\xc7\x3d\x48\xbd\xf3\xf3\x85\xc6\x16\x7b\x2c\x78\x9e\x8b\xc2\xf9\xca\xb7\xc2\x19\x50\x53\x1d\x7a\x71\xa2\xbf\x4d\x98\xd9\x6d\xd3\x68\x1a\x1e\x83\xa9\x1b\xb7\xaf\xdc\x65\x95\x65\x9d\x2b\xb7\xbf\x58\xf2\xe5\xdd\xc5\xc5\xec\xa7\x93\x8b\xbb\x73\xf7\xf9\xad\xc5\x87\xa3\xc7\x3a\xe7\xc4\x8f\x84\xe6\x04\x71\x55\x25\x60\xa9\xaa\xb5\x28\x1c\x53\x58\xf8\x6a\xc4\x91\x54\x59\x56\x2f\x8b\x3d\x55\x1f\xa9\x1d\x10\x03\x95\x92\x4e\x4d\xd9\x39\x71\xf5\xfe\xe1\xb1\x8f\xb6\xf1\x8f\xf8\xee\x11\x0b\x1f\xf1\x86\x5d\xfa\x5e\x3b\xe6\x95\x08\x27\x0e\x38\x0e\x98\x6f\xdb\x75\x1c\x9e\xbb\xf0\xff\xd3\x8e\xc7\x9d\x82\xa2\x5f\x56\xf2\x62\xbd\xfe\x67\x39\x1d\x38\x77\x1f\xeb\x50\x70\xef\x2e\x4d\x31\x6a\x08\xed\x8e\xb0\x5c\xbb\x29\x89\xb3\x18\xe7\x6c\xaa\x50\x10\xdb\x31\x95\xba\x7b\x4c\x6c\x42\x11\xa4\x8c\xab\x65\xc5\x97\xc2\x8c\x98\xeb\x7c\xaa\x9c\x75\xea\x6c\x1d\x0f\xcc\x01\x46\xd6\xc6\x16\x6a\xa4\x00\x4b\x35\x55\xf4\x4d\x70\xc3\x52\xf3\x98\x8e\xfa\xfb\x1b\xff\x39\x94\xf7\x8d\x0d\x51\xc5\x79\x35\x55\xb8\xb8\xe8\x1b\x73\x60\x43\x50\x3b\xb6\xef\x26\x0e\xf0\x60\xb4\xeb\x52\x56\xea\x25\xc0\x1e\xa7\xca\xb3\x60\x21\x38\xc3\xd9\x6b\xa1\x36\x28\x0e\x69\xbf\x3c\x71\x8b\xe1\xce\x04\x8d\xad\x7d\xd7\x1f\x7c\x07\xd8\x03\x37\x6b\xb5\xe5\x77\x6f\xdb\x20\xc6\x7a\x02\x72\x78\x24\x38\xba\xa8\x11\x81\xfa\xac\x7d\x34\xee\xbb\xf0\x99\xce\xec\x51\x5d\xcd\xb3\x01\x43\xc2\xe7\x77\x0e\x0a\x45\xf2\xee\x41\xf5\xf0\x48\x5f\x37\x8e\x96\xdd\xa6\xbb\xba\x9d\x6b\xdd\xb1\x2e\xcf\x88\xd9\xad\x0d\x8a\x5e\xd8\x37\x19\x55\x52\x3e\x65\xbf\xf4\xe0\x03\x6a\x4e\x91\x93\x3e\xbb\x06\x94\x49\xf3\xa4\xe1\x04\xfd\xa9\xf7\x88\xbc\x86\x40\x97\xdd\x20\x09\x4b\xf7\x5c\x4d\xc0\x76\x88\x49\x67\xa6\x60\x7a\x8b\x90\x28\x5e\xec\xe1\x19\xc1\x21\xb2\xfb\x7f\xe4\x37\xd1\x28\xac\xdc\x08\x06\x99\x54\x85\xb1\xe2\x92\xe4\x1d\x49\x6d\x5d\x30\x3e\x55\x8e\x0d\xc6\x89\xe3\x13\xe7\x0f\x2e\xfc\x5f\x91\x63\x29\xc7\x92\x75\x10\x14\x2a\xc1\x4b\x4e\xd2\x70\xaa\x1e\x78\x21\xb9\x02\x4c\xf3\xdc\x40\xbd\x61\x30\xe9\x36\x8c\x7e\xf0\x04\x1c\x26\x76\x32\xef\x91\x79\x0d\x35\xa0\x76\xcf\xff\x83\xfd\xbf\xbf\xfd\xc3\xff\x0d\x00\x00\xff\xff\x47\x6b\xb4\x43\xf7\xfd\x06\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7f\x73\xe3\x36\x96\x2f\x8c\xff\xbf\xaf\x02\xd5\xfb\xad\xea\xc9\x8c\xed\xce\x4c\xe6\xee\x77\xca\x5b\xb7\x9e\x47\xb1\xd5\x1d\xdd\xb8\x6d\xc7\x96\x93\x4d\x5d\x6f\x29\x10\x09\x49\x18\x53\x80\x02\x80\x76\x2b\x5b\xf3\xde\x9f\xc2\x01\x40\x82\x14\x29\x51\x3f\x4d\xb9\x31\xb7\xea\x6e\xc7\x22\x41\xe0\xe0\xe0\xe0\xfc\xfc\x9c\xff\xf9\x37\x84\xde\xc9\x17\x3c\x1e\x13\xf1\xee\x1c\xbd\xfb\xdb\xd9\xb7\xef\x4e\xf4\xdf\x28\x1b\xf1\x77\xe7\x48\xff\x8e\xd0\x3b\x45\x55\x42\xf4\xef\xa3\x64\xae\x08\x8d\x93\x0f\x92\x88\x67\x1a\x91\x0f\x38\x9e\x52\x76\x36\x13\x5c\x71\x78\x11\xa1\x77\xcf\x44\x48\xca\x99\x7e\xdc\xfe\x13\x31\xae\x90\x24\xea\xdd\xbf\x21\xf4\x2f\x18\x5e\x46\x13\x32\x25\xf2\xdd\x39\xfa\xbf\xe6\xa5\x89\x52\x33\x37\x80\xfe\xb7\xd4\xcf\xfe\x37\x3c\x1b\x71\x26\xd3\xc2\xc3\x78\x36\x4b\x68\x84\x15\xe5\xec\xc3\x3f\x25\x67\xf9\xb3\x33\xc1\xe3\x34\x6a\xf8\x2c\x56\x13\x99\xaf\xf1\x03\x9e\xd1\x0f\xcf\x7f\xfd\x80\x23\x45\x9f\xc9\x20\xc1\x29\x8b\x26\x83\x59\x82\x99\xfc\xc0\xc5\xf8\xc3\xff\xd0\xf8\x8c\x8b\xf1\xbf\xe0\x1f\x33\xc1\xff\x49\x22\x65\xfe\x23\xe6\x53\x4c\x99\xf9\x37\xc3\x53\xf2\xaf\x6c\x50\x84\xde\x8d\x89\xf2\xfe\x53\x2f\x3d\x9d\x4e\xb1\x98\x6b\xf2\x7c\x24\x2a\x9a\x20\x35\x21\xc8\x7c\x14\x39\x7a\xf1\x11\xc2\xe8\x5c\x90\xd1\xf9\x6f\x82\x8c\x06\x8e\xea\x67\x86\xda\x57\x30\xb5\xdb\x04\xb3\xdf\xce\x2c\xcd\x60\x64\x3e\x23\x02\x16\xda\x8b\xf5\xe8\x9f\x88\xea\xc0\xb0\xf9\xf3\x7f\xf3\x1f\x17\x44\xce\x38\x93\x44\x16\xe6\x87\xd0\xbb\xbf\x7d\xfb\x6d\xe9\x4f\x08\xbd\x8b\x89\x8c\x04\x9d\x29\xbb\xb3\x1d\x24\xd3\x28\x22\x52\x8e\xd2\x04\xb9\x91\xfc\xd9\x98\xb5\xea\x6d\xc6\x0b\x83\x21\xf4\xee\xff\x27\xc8\x48\x8f\xf3\xef\x1f\x62\x32\xa2\x8c\xea\x71\xa5\xe1\xa6\x7c\xba\xef\x0a\x6f\xfd\xeb\xdf\xaa\xfe\xfd\x2f\x6f\x45\x33\x2c\xf0\x94\x28\x22\xf2\xfd\x37\xff\x2b\xad\x45\x6f\x92\xfe\xb8\xd9\xd1\xf2\xa4\x4b\x2b\xbd\x81\x7f\xe1\xe4\x04\x71\x31\x46\x4f\x64\x8e\x80\xa5\x48\x8c\x14\x87\xbd\x13\x44\xf2\x54\x44\x8b\xab\xa7\xf0\xbe\x66\xb3\xf2\x2f\x82\xfc\x9e\x52\x41\xf4\x36\x29\x91\x92\xd2\xaf\x6a\x3e\x83\xe9\x49\x25\x28\x1b\xfb\x44\xf8\xd7\x49\xa3\x45\x59\xee\x5c\xb1\xb0\x6b\x3c\x25\x9a\xd3\xf4\x1a\xec\x1b\x85\xf5\xa0\x21\x49\x38\x1b\x4b\xa4\x78\x7b\x96\x66\xce\xda\x1a\x2b\x33\x2f\xd4\x2e\xec\x91\x75\xdc\x23\x11\x66\x68\x48\x90\x16\x37\x34\x26\x82\xc4\x08\x4b\x84\x91\x4c\x87\x92\x28\xf4\x42\xd5\x84\x32\xfd\xdf\x33\x12\xd1\x11\x8d\x1c\xcd\xda\x43\x1b\xf8\xe7\x72\xca\x3c\x48\x22\xf4\xc4\x9f\x69\x4c\x62\xf4\x8c\x93\x94\xa0\x11\x17\x45\x3e\x7e\x64\xfd\x89\xa6\xc3\x74\x48\x19\xc8\x13\x4d\x4b\xc7\x21\x7f\x71\xe4\xfa\x0b\xd2\xdf\x43\x29\xa3\xbf\xa7\x24\x99\x23\x1a\x13\xa6\xe8\x88\x12\x59\x1e\xed\x2f\xdc\x1e\x21\x74\x8a\x34\x9d\x89\x50\x40\x6f\xce\x14\xf9\xa2\x24\x3a\x45\x09\x7d\x22\xe8\xfd\x15\x95\x0a\x75\x6e\x7b\xef\x4f\xd0\x7b\x23\x04\x10\x88\xdf\xf7\x07\xa0\x70\xf6\xef\xff\xf6\xe4\x89\xc2\xe3\xb2\x24\x79\xd7\xd1\x22\xea\xde\xdc\x7e\xf9\x08\xff\xfd\x6f\xfe\x38\x76\xbf\x56\x5f\x29\xe6\x3e\xc9\x2f\x13\x7b\x93\x34\xbd\x3f\x80\x60\xc5\xab\x43\xea\xbd\xda\xf6\xe6\xd0\xe3\x96\xaf\x0e\x79\x64\x77\x87\x5e\xc3\xbe\xef\x8f\xb7\x77\x79\x6c\x73\x73\x60\x05\x47\x1a\x53\x66\x24\x40\x26\x10\x84\xd4\x42\xc0\x4d\xbb\x25\x2b\xdd\xe6\x22\xf1\x56\xe6\xdd\x25\xee\x8a\xf0\xa8\xd2\xc2\x75\x27\x74\x4a\x57\xed\x6f\x8f\xc5\x5a\x65\xb6\x92\x9c\xa5\xd3\x21\x11\x9a\x0c\x8e\x59\x61\xb5\x43\xcd\xbc\x2a\x15\x8c\xc4\x0d\x96\xf9\x7b\x4a\xc4\x7c\xc9\x3a\x47\x38\x91\x75\x0b\xa5\x4c\x11\x6d\x9f\x94\x7e\x1e\x71\x31\xc5\xca\x3e\xf0\x1f\x7f\x5f\x97\x10\x8a\x3f\x91\x55\xfb\xdf\x33\xbb\x19\x61\x09\x6c\x30\x4d\x13\x45\x67\x09\x41\x33\x3c\x26\xd2\x52\x24\x4d\x94\x3c\x81\xc7\xb4\x4d\x44\xc4\x69\x76\xbd\xc2\x17\x9c\x5a\x91\x4a\x73\xe8\x47\x99\xce\xcf\xc8\x17\x05\x23\x3d\x32\x50\x2c\x80\x44\xfe\x75\xb9\x07\x52\x6e\xc6\x33\x92\x0b\x35\x18\xce\xcf\x9e\xc8\xc2\x77\x6b\x39\x07\x33\x84\x95\x12\x74\x98\x2a\xa2\xd7\xad\xc7\x70\x12\x0f\x04\xbe\xd1\x3e\x9a\x88\x86\xd7\x5b\x70\x4c\x05\x89\x60\x6d\xeb\x1c\x98\xec\x2d\xbd\x6e\x2d\xef\xe7\x66\xf5\x5a\xfc\x6b\x65\xab\x82\x02\xd9\x96\x3f\xb2\x47\x86\x4e\xd1\x65\xf7\xfe\xa2\x7b\x7d\xd9\xbb\xfe\x74\x8e\xbe\x9f\xa3\x98\x8c\x70\x9a\xa8\x13\x34\xa2\x24\x89\x25\xc2\x82\xc0\x90\x24\xd6\x0a\x95\x9e\x0c\x61\x31\x65\x63\xc4\x45\x4c\xc4\xfe\xc8\x58\xfa\x95\xb0\x74\x5a\xba\x29\xe1\xef\xf9\xec\x4b\x6f\x68\xfd\x29\xfb\xa9\xf0\xcb\x7f\x2f\x10\x18\x56\xac\xbf\xed\x8d\xf6\xaa\x1a\xdb\x11\xdb\xfd\xc7\xa5\xba\x1d\xc0\xec\x0f\x16\x72\xb0\x90\xab\x29\x13\x2c\xe4\xad\x28\xbc\x7f\x93\x68\xc7\xda\xc0\xe1\xaf\x91\xe3\x30\xf7\x8f\xeb\xca\x38\x84\xb5\x1f\x6c\xe3\x60\x1b\x07\xdb\x38\xd8\xc6\x45\x52\x05\xdb\x38\xd8\xc6\xad\xb3\x8d\x1b\x6c\x63\x50\xd4\x7c\x45\x2d\x9a\xd0\x24\x16\x84\x99\xb0\x8c\xc2\xf2\x69\x40\xbe\x90\x28\xd5\x14\x18\x68\xc3\x81\xc7\xa4\xf8\x97\xc2\x7f\x40\x1c\xa7\xf8\x96\xdc\x60\x98\x5c\x33\x5c\xfb\xd5\xcc\x17\xb1\xf6\x9b\xe0\xb9\x68\xf6\x1e\xfc\x85\xc6\x95\x4f\xc3\x5f\x56\xac\xc1\x3d\xb3\x64\xb2\xee\x91\xda\x59\xb9\x07\xac\x02\x5c\xf9\x8c\x20\x4a\xcc\x07\x58\x29\x32\x9d\xa9\x35\xbd\x32\x18\x25\x5a\xcd\x5e\xa6\x56\x5f\xf3\x98\x74\xdd\xf7\x7e\x43\x46\xbb\x27\x31\x1a\xce\xed\xb1\x18\x11\x41\x58\x44\xea\x47\xe8\x63\xf9\x94\x8f\xb0\x4a\x37\x2f\x7c\x4f\x7e\xe4\x42\xbf\x7e\x14\xe1\xb8\xc2\xcc\x0f\xa1\xa3\x6f\x72\x72\xdf\x58\x08\x6f\x53\xa9\xf3\xe6\x7c\x61\x1b\xca\xd0\xe0\x39\xdb\x9e\x92\x4d\xfd\x6c\x5c\x20\x39\x97\x8a\x4c\x57\x7a\xdc\x8e\x87\x10\xf6\x92\x6c\xeb\x84\x4b\xf7\xf4\x57\x70\xea\x8b\x5a\x47\x38\xde\x6b\x90\x6c\x57\xfe\xf2\xb6\xaf\xd3\xa5\x2c\x2f\x5f\xea\xbd\xdb\x3e\x2f\x5c\x77\x14\xcb\x2c\xe8\xc3\xbb\x9e\xe4\x9e\x3c\x50\xb5\x7b\xe5\xa8\x3d\x80\x09\xac\xf0\x3d\x14\x23\x2e\xd9\xf9\xd3\xaf\xfa\x4e\x3b\xe3\xa1\x55\x13\x2a\x3d\xff\x25\x8a\xb8\x30\xea\x70\x6c\xcf\xbb\x71\x3f\x74\xfa\x9d\xfb\x6e\xff\x1c\x75\x50\x8c\x15\xd6\x07\x5c\x90\x99\x20\x92\x30\x05\xae\x1d\xfd\xbe\x9a\xa3\x29\x8f\x49\x62\x9c\x10\x1f\xb5\xf6\x8f\x2e\xb1\xc2\x17\x58\xe1\x84\x8f\xcf\x50\x07\xfe\x53\xbf\x4c\x25\xc2\x89\xe4\x08\x3b\xb6\x22\xb1\x1b\x02\xb3\xd8\x89\x16\x8c\x22\x3e\x9d\xd1\x24\x8b\x36\x65\xfe\x36\xca\x62\xfa\x4c\xe3\x14\x27\x88\x0f\xb5\x54\x91\x67\x8f\xac\xfb\x4c\x98\x4a\x71\x92\xcc\x11\x4e\x12\x64\x3f\xeb\x1e\x40\x72\xc2\xd3\x24\xd6\xe3\xba\x59\x4a\x3a\xa5\x09\x16\x5a\xa7\x35\xb3\xbd\xb1\x63\xa1\xfe\x84\x64\x73\x85\x79\x69\x6a\x4e\xf1\x13\x91\x88\x2a\x34\xe3\x52\xd2\x61\x92\x9f\xf9\x87\x1e\x82\x79\x5f\x5c\xf5\xc0\xc5\x13\x29\xc4\x8d\x0c\x75\x1f\xb7\x2e\x3d\xf7\xc5\x29\x66\x8c\xc0\x87\xb9\x9a\x10\x61\x3f\x6f\x1f\x7e\x6d\x6f\xcd\xc3\xf5\xfd\x6d\xf7\xa2\xf7\xb1\xd7\xbd\x5c\x74\xd7\xf4\x3b\xf7\x3f\x2e\xfe\xf5\x97\x9b\xbb\x1f\x3f\x5e\xdd\xfc\xb2\xf8\xcb\x55\xe7\xe1\xfa\xe2\x87\xc1\xed\x55\xe7\x7a\xf1\x47\xcb\x56\x8d\x3d\x3f\xfe\xcc\x76\x76\xb6\x8e\xce\x29\x14\x9c\xfa\x6b\x6c\xfb\xae\x9d\xfa\x27\x6f\xd7\xab\x3f\xa2\x09\x38\x1d\x1a\x7b\xf4\x33\xaf\x91\x7d\x13\xcd\xb0\x94\x46\x0f\x34\x33\x38\x7b\x64\x9f\xb9\xd0\xe2\x7a\xc4\xb5\x44\xd4\xba\xa2\x12\x69\xa4\x28\x1b\x67\x2f\x9d\xa3\xc7\xf4\xdb\x6f\xbf\x8b\xae\x28\x7b\x82\x7f\x91\x36\x12\x27\x84\x3c\x42\xc8\xa3\x75\x21\x8f\x7f\xab\x78\x75\xf7\xe1\x81\xe0\xe3\x0f\x3e\xfe\xc3\xf9\xf8\x83\x8b\xdf\x9b\x43\xf0\x6f\x6f\x4b\x88\xe0\x00\x0b\xfe\xed\xed\x09\x11\xfc\xdb\x2d\x5d\x71\x38\xde\xc1\xbf\x1d\xfc\xdb\xc1\xbf\x1d\xfc\xdb\xc1\xbf\x1d\xfc\xdb\x5f\x8d\x7f\xbb\x85\x29\x4f\xc1\xc9\x1f\x9c\xfc\xc1\xc9\x1f\x9c\xfc\xc1\xc9\x1f\x9c\xfc\xc7\xe3\xe4\xd7\xda\xee\x07\xcf\xb7\xbf\x4f\xd0\x3f\xad\x5c\xb2\x59\xaa\x40\x95\xe4\xa9\xd2\xff\xd4\xdf\x07\x5e\x59\x02\x01\xd0\xcc\xa1\xfc\x89\xa8\xec\x41\xad\xda\x1e\x45\xae\xf8\x2f\x5c\x3c\x8d\x12\xfe\x92\xcd\xfc\x13\x51\x7a\xf2\x77\xf6\x2b\x01\x0c\x30\x80\x01\xa2\x00\x75\xb0\x6b\xa8\x83\x56\xb9\xa8\x0f\x2a\xdf\x8f\x5a\xa4\x07\x89\x1e\x84\x5f\x10\x7e\x75\xb4\x39\x4a\xe1\xd7\x6c\x69\x47\xe7\xbd\xd9\xbf\x4c\x2f\xfa\xbb\x8c\x60\xaf\xc9\xb9\xa9\x4d\xa9\xa9\xc9\x98\xf1\x12\x62\x0e\x72\x19\x14\xd3\x4e\x56\x5c\x08\x85\x87\x8f\xe5\x52\x28\x4c\xfa\xf0\x17\xc2\x57\x91\x19\x12\x12\x3f\x36\x24\xd4\x1b\xbe\x37\x5a\x95\xb6\x71\xf4\x21\x89\xfd\x5f\x6a\xce\xfb\xb4\x88\x33\x11\xae\xbb\x63\x72\x6b\xb5\xe9\xbe\x7b\x93\xfe\xad\x70\xa3\x37\x59\x66\xb8\xd1\x6b\xc9\x14\x6e\xf4\x55\xf3\x39\xdc\x6d\xb7\x11\xce\xd2\x3a\x45\x17\x6b\x54\x59\x34\x2e\xab\x58\x51\x47\x51\x59\x38\x51\x55\x29\xb1\x58\x1a\x51\x59\x0b\xb1\x5d\xf1\xc3\xa6\x57\x75\xf3\x72\x86\x4f\x44\x15\x1e\x3e\x9a\xab\xba\x30\xeb\xc3\x5f\xd5\xaf\x9e\xb6\xf3\x5a\x32\xec\xeb\x2b\xdd\x08\xb5\x1a\x7b\x24\xdd\x5b\xbf\xf2\xdb\x5b\x8d\xf1\x15\x94\x5f\x84\x7a\x8b\xb5\x68\xf4\xb6\x0a\x2c\xde\x6a\x45\xc5\x71\x96\x50\x84\x9a\x89\x50\x33\xb1\x53\x07\x6f\xe9\xd7\xaf\xaa\x66\xe2\x98\x8b\x24\xf6\xef\x9e\x08\x2e\x87\xe3\x73\x39\x04\x8f\x83\xfd\x5f\xb0\xbe\xd7\x5e\x79\x50\xed\x83\xf5\xdd\x64\xe5\xc1\xfa\x0e\xd6\x77\x0b\x8f\x68\xb0\xbe\x83\xf5\x1d\xac\xef\x60\x7d\x07\xeb\x1b\x05\xeb\xdb\x1b\xe8\xb5\x4a\x6b\xdb\x10\xdc\x3c\x2a\x9f\x43\xbe\xf4\x81\x3b\xe0\x8b\xe5\xa8\x05\xb1\xdb\xa4\x42\x15\xfe\xe5\x8c\xfa\x75\x11\x13\x6b\xad\xf4\xcb\x7c\xb2\x5d\x10\x92\xbf\x59\x51\xb1\xc2\x60\x5f\x78\xef\x28\x72\x04\x16\x66\x1d\xca\x52\x37\x55\x79\x5e\x49\x69\xd8\x13\x05\x8e\xe4\xfa\x5a\x7f\xa3\xde\xb0\x2d\x19\x6c\xc8\xed\x4b\xe8\x8e\xc6\x76\x3c\x1e\x9b\xf1\xb5\x75\x8b\x86\x8a\xc5\xce\x31\x97\x2b\x34\x09\xef\xfe\x5d\x85\xa0\x5c\x7e\x9b\x12\xf9\xf7\xa3\xd4\x28\x0e\x01\xa2\xfc\x26\xb5\x8a\xa0\x52\x04\x95\xc2\x0e\x15\x54\x8a\x37\xac\x52\x3c\xb2\xfe\x44\xd3\x61\x3a\xa4\x2c\xf3\xbe\x39\x0e\xf9\x8b\x23\xd7\x5f\x90\xfe\x1e\x4a\x19\xfd\x3d\x25\xc9\x3c\x3f\xbe\xb2\x3c\x5a\x86\xc4\x85\x4e\x91\xa6\x33\x11\x0a\xe8\xcd\x99\x22\x5f\x94\x44\xa7\x28\xa1\x4f\x04\xbd\xd7\x82\x19\x75\x6e\x7b\xef\x4f\xd0\xfb\x2b\x68\x08\x80\x66\x09\x66\xf2\x7d\x6b\x1c\x2d\x01\x06\x71\x5f\x30\x88\x01\x05\x31\xa0\x20\x36\x25\x50\x40\x41\x0c\x28\x88\xc7\x8b\x82\xb8\x33\xfb\x70\x43\x1c\xad\x57\xb1\x14\x8f\xd3\xf7\x1c\x2c\xc5\x60\x29\x06\x4b\x31\x58\x8a\xc1\x52\x3c\x16\x4b\xb1\x1d\x14\x0e\x66\x62\x30\x13\x83\x99\xb8\x43\xe2\x04\x33\x31\x98\x89\xc1\x4c\x7c\x93\x59\x49\x47\x69\x18\x1e\xc0\x28\x0c\x26\x54\x30\xa1\xec\x50\xc1\x84\x7a\xc3\x26\x54\x6b\x16\x74\x3c\xf9\x3b\xcd\xd6\x13\x52\x9e\x57\xeb\x13\x6f\x26\x13\xe9\xbb\xa3\x54\x23\x0e\xe1\x5f\x0e\x7a\x44\xd0\x23\xec\x50\x41\x8f\x78\xc3\x7a\x44\xeb\x5c\xb1\xad\xf1\xa5\x1c\xa3\x2e\x10\x9c\xcc\xcd\x09\x11\x9c\xcc\x8d\x49\x15\x9c\xcc\x4b\x88\x13\x9c\xcc\xc1\xc9\x1c\x9c\xcc\x6f\x32\xfd\x28\x58\x87\xc1\x3a\xf4\xff\x1e\xac\xc3\x60\x1d\x06\xeb\x30\x24\xea\x04\xd3\x30\x98\x86\xc1\x34\x0c\xa6\xe1\x2a\xe2\x04\xd3\x30\x98\x86\x5f\x97\x69\x48\x9e\x09\x53\x12\x7a\x21\xfa\x86\xd2\xbb\x19\x97\xf5\x06\x9e\x2f\x1d\x2a\x8c\x3b\x18\xb3\xd8\x93\x10\x50\xdb\x7e\x43\x13\x2c\x11\x8f\xa2\x54\x94\xce\x40\xd9\xbc\xbb\x10\x04\x2b\x02\x23\xe8\x17\x8f\xc1\xac\x5b\x5c\xee\xa1\x00\x88\x87\x3c\x5e\xe0\x76\x73\x10\xaa\x7e\x59\xae\x66\xed\x6c\xe9\xbf\xa7\xa4\x99\x55\xbb\x47\xa6\x86\x6a\x2b\xc3\x8c\x8b\xdd\xcf\x5e\x6c\x53\xfd\x1d\x73\xfd\x42\xaf\xfe\x8d\x38\x3f\x1b\x45\xbf\x7c\x14\x35\x55\xd5\xeb\x3e\xd4\x11\xa8\xde\xe4\x3d\xeb\xfb\x87\x36\x62\x5e\xfd\x9c\xd7\xed\x71\xcb\xce\x7a\x6d\xb3\xdf\xf6\x5e\x70\x47\x71\xc4\x5f\xef\x86\xab\xdd\xd7\x70\xc2\xbf\xba\x9b\x7c\x86\x05\x61\x6a\xd0\xb4\xc1\xe9\x8e\xcf\x7c\xa1\xd1\xc4\x46\x67\x1e\x46\x38\x9a\x33\xbf\xb8\xde\xc3\x9e\xf9\xc6\xbb\x1d\x24\xc1\x6e\x25\x41\xd5\xc6\xb7\x41\x12\xb4\xfb\x4c\x87\x23\x0d\xff\x0b\x4c\xbd\x1e\x53\x1f\x8f\x2d\x7a\x0c\x0c\xfe\xba\xa6\xe8\xab\x33\x79\x3b\xad\xb4\xac\xe7\x5b\x63\x16\xef\x0b\x3a\x1e\x13\x61\x3c\xcd\x91\x66\x45\x1b\xce\x5c\x52\xad\x98\x77\x39\x5b\xc9\xd6\xd9\xa3\xc7\xc0\xd2\xd9\x64\xcd\xdc\xbf\x1a\x5e\x5e\x58\x77\x4b\x98\xb8\x08\xe4\x24\x48\xc4\x9f\x89\x68\xcc\xd9\x77\x04\xd8\x19\x84\xf7\x4c\x90\x67\xca\x53\x99\xcc\x4f\x45\xca\x90\xbb\x09\x50\xf6\x2d\x93\x65\xf3\x42\x93\x04\x71\x96\xcc\x91\x54\x58\x28\xf7\x33\x1b\xa3\x91\xe0\x53\x38\x22\x09\x96\x0a\x3d\x31\xfe\xc2\xd0\x08\xd3\x24\x15\x04\xcd\x38\x65\xea\xec\x91\xf5\x18\xba\x33\x73\x84\xae\x28\x27\x28\x95\xfa\x60\x45\x98\x31\xae\x50\x34\xc1\x6c\x4c\x10\x66\x73\xdb\x5e\x30\x67\x13\xc4\x05\x4a\x67\x31\x56\x04\x3e\x51\xaa\x05\xcb\xe6\x08\x69\x07\x54\x22\x2a\x11\xf9\xa2\x04\x99\x92\x64\xae\xbf\xa1\x0f\x82\xe2\xc8\xd2\xc7\x4c\xd5\x36\x2b\x23\x42\x70\x21\xa1\x9f\xca\x70\xfe\x07\x66\x8a\x32\x82\x20\x12\x22\x4d\x4a\xc1\x29\xba\xe2\x12\xe2\xb2\x3f\xfe\x43\xa2\x28\x49\xa5\x22\xe2\x04\x0d\xd3\xb1\x44\x94\xa1\x59\x82\xd5\x88\x8b\xa9\x9e\x21\x65\x52\xe1\x21\x4d\xa8\x9a\x9f\xa0\x29\x8e\x26\x66\x2c\xa0\x81\x3c\x79\x64\x31\x7f\x61\x52\x09\x82\xb3\xaf\xbb\x1f\xd1\x9f\xfc\xdf\x0c\x37\xc8\x6f\x4e\xa0\xa9\x1a\x9d\xce\x92\xb9\x3f\xfd\x7c\xfb\xcd\x9e\xe8\x41\x48\x8c\x86\x24\xc2\xa9\xb4\x99\x51\x4a\xcc\x11\xf9\x32\xc1\xa9\x84\xbd\xd3\xcb\xb3\x1d\x69\x22\x3e\x9d\x25\x44\x11\x44\x47\x48\x09\x6d\x79\xe0\x31\xa6\x9a\x74\xf7\x84\x34\x90\x68\x76\x03\xed\x11\xf8\x0d\xe2\x6b\x53\x2e\x08\x8a\x89\xc2\x34\x59\x9a\x2d\x67\xdf\xcd\xc6\x3a\x0a\xd3\xf3\x95\x64\x5e\x30\x27\xf7\x2a\xc8\x8b\x6c\xdc\x3e\x49\x9e\x40\xf2\xd2\x0e\x94\x14\x66\xb3\xaa\x22\x9c\x6c\xa9\xaf\xdc\xd9\x49\x85\xe3\x1b\x8e\x6f\x79\x26\x87\x3f\xbe\x86\x17\x5b\x7a\x7e\x0f\x56\xd8\xdc\xac\x9d\xf2\x15\x95\x2a\x7b\xf2\x38\xb0\x31\xb3\xe9\x06\x4c\xcc\xcd\x73\x4d\x43\x12\x77\x48\xe2\xae\xa6\xcc\x71\x26\x71\xb7\x26\x5d\x31\x24\x3c\xef\x29\xe1\x99\xca\x90\xf1\x1c\x32\x9e\x9b\x12\x28\x64\x3c\x87\x8c\xe7\xe3\xcd\x78\x5e\xd3\x76\xd8\xb0\xfe\xb5\x2e\x34\xb7\x8e\xfd\xf0\x89\xa8\x23\x35\xfa\x83\xe5\x10\x2c\x87\x60\x39\xec\xdc\x72\xe0\xc2\x45\x30\x5a\x00\x37\xb8\x2b\x29\xed\xde\x7e\x17\x93\x84\x28\x52\xef\x6b\x25\x62\xaa\x0d\x22\xa3\x81\x50\xa6\x55\xd5\xb1\x20\x52\x6e\x2b\x66\xb3\x81\x8f\x54\xd8\x66\xf3\x0f\x4e\xd6\x20\x7d\x6b\x96\x16\xa4\xef\x1b\x93\xbe\x47\x15\x36\xf0\x24\xd4\xa1\xe2\x06\xd9\xad\x32\x4b\xeb\x35\xf5\x07\x93\xdb\x90\x27\x5b\x18\x0e\xd7\xe6\x96\xe2\xd9\xe1\xb6\x7c\xbe\xe5\x2d\x63\xbe\x75\xa4\x57\x8c\x99\x7c\xb8\x5f\xc2\xfd\x52\xb3\xb4\x70\xbf\x84\xfb\xe5\xf5\xee\x17\x27\x9e\x5a\x15\x94\xe6\x62\x5c\x70\x19\x2d\xbb\x88\x0e\x95\xec\x7a\x5c\xb7\xce\x61\x53\x47\xde\xde\x95\xd3\x9e\x03\xda\xb6\xfc\xdd\x90\xb2\x1b\x52\x76\x8f\x2a\x65\x37\xc8\xed\x23\x90\x72\xad\x4b\x6e\x3d\x8e\x7c\xd6\xc0\xdb\x47\xc1\xdb\x6d\xcb\xfc\x6c\x75\xb2\xe7\x51\xf1\xf4\x81\x72\x3d\x83\xfb\x23\xb8\x3f\xaa\x29\x13\xd2\x22\x03\xbc\xed\xe2\xb2\x42\xb6\x67\xc8\xf6\x0c\xd9\x9e\xbb\x24\x4e\xc8\xf6\x0c\xd9\x9e\x5f\x6d\xb6\x67\xcb\x13\x3c\x8f\xca\x62\x08\xd6\x42\xb0\x16\x42\xb0\x74\xcd\xa5\x1d\x9d\x8e\xbe\x2b\xc9\xec\xde\x6e\x51\x86\xe7\x51\x49\xdb\xd7\x48\xf0\x0c\xe2\x37\x88\xdf\x6a\xca\x1c\xa5\xf8\x6d\x8f\x23\x3d\xe4\x42\x2e\xe4\x42\x1e\x95\x30\x3e\x78\x2a\x64\x90\xc4\x41\x12\x57\x53\x26\x48\xe2\xe3\xcf\x1a\x34\x51\xd5\xc1\x2c\xc1\x6c\x40\x63\x2f\x75\xf0\xc3\xff\xe4\xce\x8a\x7d\x45\x36\xf5\xd1\x8a\x4d\x17\xd2\xac\xeb\xa7\xf8\x4d\xbf\x92\xe4\x81\x0e\xc4\x87\x7a\x1a\x2b\xfb\xb1\x9a\xd8\xc8\x6d\x82\x59\x2f\x3e\x0e\xb0\x9b\xca\xe5\x1f\x22\x18\xfa\xf6\x52\x0d\xb7\xb9\xa4\xb0\x82\xa0\x1b\xa6\xcc\xb8\x5d\xf3\x6e\xb2\x05\xa7\x72\x3b\x16\xba\xcd\x95\xe5\x2d\xcc\xbb\xb5\xdc\x65\xe4\x11\xa5\x7d\xcb\x0e\xb1\xb8\xd0\x6a\x32\x44\x9b\x1a\x2e\x38\x44\x9b\xda\x1b\x6d\x6a\xb0\x8d\x7b\x09\x21\x1f\xf8\x78\x1e\x54\x67\x3d\x6a\x4d\x35\x28\xaa\x28\xa8\x75\x41\xad\xab\x5f\x75\x50\xeb\x82\x5a\x17\xd4\xba\xa0\xd6\x05\xb5\xee\xf5\xd5\xba\x06\xcb\xfc\x6a\xb3\x0c\x56\xa9\xaa\xcd\x5b\x0f\x99\x1a\x1f\x28\x05\x4c\x67\x09\xc7\xf1\xb2\x4c\xaf\x5c\x99\xfc\x0d\xe5\x8a\xdb\x12\x0d\xd4\x8c\x9e\xbf\x76\x0c\x0a\x68\x3e\xdb\xaf\xac\xfe\x69\x71\xe1\x6d\x89\x16\x14\xe1\x2b\x5b\xca\xdb\x47\x11\x06\x78\x2d\xe6\x7e\x93\x30\x37\xe1\xc4\x36\x3c\xb1\x87\xab\x5f\xac\x3e\xc5\x6b\x78\x49\xe4\xdf\x8f\xeb\x18\x87\xde\x15\x01\xa3\xaa\x62\x69\x21\xdb\x24\x14\x69\x86\x6a\xc6\x37\xe7\x6a\x0b\xd5\x8c\xa1\x9a\x31\x38\x22\x97\x2f\x3b\x38\x22\xdf\x44\x35\xe3\xfa\xc6\xc4\x86\xc5\x8d\x87\x31\x2b\x8e\xcc\x3b\x10\xcc\x8a\x60\x56\x54\x2c\x2d\x98\x15\x5f\xa1\x59\xd1\x0e\x0a\x07\x9b\x22\xd8\x14\xc1\xa6\x08\x36\x45\xb0\x29\x76\x4e\xc6\x60\x53\x34\xb0\x29\xe0\x5f\x16\x62\x78\x6d\x03\x63\x4d\xc3\x62\x05\x8e\xca\xd1\xc6\x1c\x83\x45\x11\x2c\x8a\x60\x51\x1c\xdc\xa2\x68\xcd\x82\xac\xf8\x5c\xb1\xa6\x7b\xb7\x21\x25\x40\xf7\xf6\xad\xc7\xcd\x68\x00\x23\xad\x50\x26\x8a\x06\x5a\xc6\x75\xfa\x55\xdf\x46\x31\xd9\xe4\xa0\x96\xe7\xc9\xd6\x28\xe2\xc2\x08\xe5\xd8\x72\xb9\xd1\x27\x3a\xfd\xce\x7d\xb7\x7f\x8e\x3a\x28\xc6\x0a\x6b\xb6\x16\x64\x26\x88\x24\x4c\x81\xae\x46\x20\x8f\x1e\x60\xf5\x13\xa3\x55\x7c\xd4\xf7\x0f\xba\xc4\x0a\x5f\x60\x85\x13\x3e\x3e\x43\x1d\xf8\x4f\xfd\x32\x95\x08\x27\x92\x23\xec\x48\x4f\x62\x37\x04\x66\xb1\x3b\x50\x18\xd0\xe2\x69\x92\x19\xa7\x99\x79\x41\x59\x4c\x9f\x69\x9c\xe2\x24\x2b\x4f\x78\x64\xdd\x67\xc2\x54\x8a\x93\x64\x8e\x70\x92\x20\xfb\x59\xf7\x80\x03\xa0\x1f\x92\x6c\x96\x92\x4e\x69\x82\x85\x16\xc7\x66\xb6\x37\x76\x2c\xa4\x0d\x63\x37\x57\x98\x97\xa6\xe6\x14\x3f\x11\x89\xa8\x42\x33\x2e\x25\x1d\x26\xf9\x01\x78\xe8\x21\x98\xf7\xc5\x55\x0f\x74\xb6\x48\x21\x6e\x24\x87\xfb\xb8\x35\x60\xdc\x17\xa7\x98\x31\x02\x1f\xe6\x6a\x42\x84\xfd\xbc\x7d\xf8\xb5\xd5\xaf\x87\xeb\xfb\xdb\xee\x45\xef\x63\xaf\x7b\xb9\xa8\x7f\xf5\x3b\xf7\x3f\x2e\xfe\xf5\x97\x9b\xbb\x1f\x3f\x5e\xdd\xfc\xb2\xf8\xcb\x55\xe7\xe1\xfa\xe2\x87\xc1\xed\x55\xe7\x7a\xf1\x47\xcb\x56\x8d\x55\x39\x7f\x66\xfb\xd0\xe5\xdc\xdb\x0d\x30\x3d\xec\xe1\x52\x58\xa5\xd2\xf4\x94\x11\x64\x4c\xa5\x02\xf1\xdf\x44\x0b\x5b\x0d\xe5\x71\xb4\xda\x57\x68\x6c\x16\x74\xb1\xa0\x8b\x05\x5d\xec\xd8\x74\xb1\xc3\xb9\x04\x8e\x28\x4d\xf1\xbb\xe3\xba\x7b\x42\xdb\x85\x20\x9c\xdb\x2f\x9c\x5b\x17\x7a\x6b\x8d\xeb\xfc\x18\x21\x5d\x43\x50\xb1\x39\x21\x42\x50\xb1\x39\xad\x42\x50\x71\x09\x71\x42\x50\x31\x04\x15\xbf\xe2\xa0\xe2\x51\xe6\x26\x06\x53\xc2\x3d\x17\x4c\x89\x60\x4a\xbc\x51\x53\xa2\x35\x14\x0e\x76\x44\xb0\x23\x82\x1d\x11\xec\x88\xe5\xc4\x09\x76\x44\xb0\x23\x82\x1d\x71\x6c\xf9\x88\xc7\x65\x49\x04\x2b\x22\x58\x11\xed\xb6\x22\x5a\xb3\xa0\xe3\x89\x16\x37\x5b\x4f\xc8\xdc\x0b\x99\x7b\x21\x73\xaf\x36\x73\xef\x8d\x5a\xf2\xbb\xd2\xdf\xdc\xdb\x6d\x4b\x48\x3c\x2e\xf5\x2b\x74\x17\xcb\x7e\x0d\xca\x58\x50\xc6\xbe\x52\x65\xac\x45\x20\x8a\xad\x68\x92\x36\xc5\x2a\x9a\xe0\x61\x42\x06\x99\x2f\x4b\x36\x35\xef\xaf\xa8\x54\x12\x45\xa9\x54\x7c\x5a\x7f\xb9\x7c\x76\x5f\xe8\x64\x1f\xb8\xe0\x6c\x44\xc7\xa9\xb9\x5b\x7e\x03\xd6\xf7\x4e\x74\xae\xe0\xce\x67\x64\x55\x5c\xb1\x62\xf4\xa3\xb8\x96\xaa\xa7\x7e\xa8\xdb\x69\x1d\x7b\x24\xf7\x5d\x5a\x63\x42\xab\x90\x83\xbb\xee\xfd\xcd\xc3\xdd\x45\xf7\x1c\x75\x40\xc5\x82\x70\x82\x61\x05\xfa\x87\x5e\x14\x52\x58\x3e\xe5\x7b\x29\x0c\x9b\x4b\xd0\xb3\x21\x7e\xa1\x55\x7e\x74\x8a\x2e\xae\x1e\xee\xfb\xdd\xbb\x9a\x01\x2d\xa3\x40\xab\x54\x32\x9d\x25\x58\x91\x18\x3d\xa5\x43\x22\x18\xd1\xda\x4e\x94\xa4\x5a\xb9\xc9\xa3\x1a\x66\xd0\xee\x7f\x75\x2f\x1e\xfa\xbd\x9b\xeb\xc1\x4f\x0f\xdd\x87\xee\x39\x72\x1c\xa7\x87\xd5\xf3\xd2\xb3\x88\xe7\x0c\x4f\xb5\x61\xa5\xff\x90\x37\x67\xfd\x3d\x25\x29\x41\x58\x4a\x3a\x66\x53\xc2\x54\x79\x44\x37\xe1\xab\xce\xf7\xdd\xab\xe2\xc8\x13\x82\x7e\xfc\x47\x3e\xa9\x04\x0f\x49\x62\xc3\x2c\x10\x39\xd0\x8c\x9e\x7f\xc8\xc6\x5f\x52\x43\xd5\x9f\x1e\x3a\x57\xbd\xfe\xaf\x83\x9b\x8f\x83\xfb\xee\xdd\xcf\xbd\x8b\xee\xc0\x2a\xcb\x17\x1d\xfd\xdd\xc2\x97\xac\x4e\x8d\x7e\x4f\x71\xa2\x8d\x2e\x3e\x82\xb8\x05\x8d\x08\x7a\x99\x10\x86\x52\x06\x1c\x67\x2c\x39\x6d\xde\x65\x1f\xd5\xa7\xcc\xac\xe8\xf6\xea\xe1\x53\xef\x7a\x70\xf3\x73\xf7\xee\xae\x77\xd9\x3d\x47\xf7\x24\x01\x5b\xc7\x11\x1d\x76\x71\x96\xa4\x63\xca\x10\x9d\xce\x12\xa2\xa9\x61\x6c\xb9\x21\x99\xe0\x67\xca\x85\x3d\xba\x63\xfa\x4c\x98\xa1\x23\x9c\x59\x18\xdf\xd9\x14\x03\x8f\x74\x37\xd7\x1f\x7b\x9f\xce\x51\x27\x8e\xb3\x35\x48\x18\xa3\xc0\x39\x2f\x5c\x3c\x8d\x12\xfe\x72\x5a\x9c\xb6\x16\x0e\xf0\x79\xc3\x44\xfc\x99\x08\x41\x63\x52\xe2\xa3\xce\xfd\x7d\xef\xd3\xf5\xe7\xee\x75\x1f\x28\xa6\x04\x4f\x24\x9a\xf0\x17\xf0\xd0\xc3\x0a\xc1\x71\xff\x8c\x69\x02\x1f\x73\x9b\xc5\x19\x7a\x99\x50\x88\xea\x50\xe9\x13\xcc\x98\x9d\x22\x65\xaf\xee\x74\x2e\x1c\xbc\x45\x6b\xac\x7c\x92\x16\x9f\x28\x1d\x8b\x65\x0f\x14\xb8\x7c\xf1\xc1\x55\xdc\xba\xf8\x46\x89\xdd\xea\x6d\xd0\x05\x7e\xa9\x5f\x69\xbe\xd7\x8d\x4d\xd0\x22\x0d\xd7\x54\x1e\xd6\xb5\x40\x4d\x0c\xcc\x37\x42\x21\xa4\xe6\xd4\x7c\x27\x13\x8f\xcb\x1a\x6d\xac\x46\xe4\x0d\x57\x8f\x5c\xa1\x38\x8e\xc2\xbb\xd7\xd5\x28\x0e\x7b\x34\x0e\x6d\x35\x04\x7d\x29\xe8\x4b\x41\x5f\x0a\xfa\x52\xd0\x97\xb2\xff\xed\x59\x9f\x20\x4a\xd0\x48\x7e\xc8\xf8\x6a\xbf\xa0\xac\x44\x6a\x86\x55\x74\x4a\x90\xfd\xb2\x3d\xa9\xb5\x4a\x48\xd6\xea\x7e\xa9\xc7\xfc\x13\x51\xd9\x83\x9f\xcd\xc0\x47\xa1\x4c\xfc\x62\x25\x4a\x36\xf9\x4f\x44\xd9\xf9\x87\x82\xfe\x50\xd0\x5f\xb3\xb4\x10\x15\xd8\x3e\x2a\xc0\x05\x92\x73\xa9\xc8\xf4\x48\xe2\x03\x31\x99\x2d\x7e\xb0\xb4\x30\x78\xc6\xe4\x77\x2d\xa4\x23\x9b\xc8\xb9\xcd\x1d\x48\xc8\x33\x49\x40\x91\x55\x02\x3f\x13\x21\xad\x7a\x36\x14\x04\x3f\x69\x9d\x36\xe6\x2f\xbe\x72\x16\x13\x85\x69\xb2\x0f\xfb\xb9\x49\xba\xf2\x77\x7f\x7b\xd5\xfb\xf0\x78\xaf\xc0\x70\x03\x86\x10\x72\xb8\x2c\xbe\xc2\xcb\xe2\x18\x93\x78\xc2\x1d\xd8\x96\x3b\x50\x93\x3b\x1e\xb8\x74\xbe\x92\x3d\x58\xf0\xd0\xed\xd2\x3e\xbc\x83\xfa\x28\xb9\xec\x22\xd4\x52\x2a\xee\xc2\xf6\xfd\x66\x93\x00\x57\xdc\x88\xde\x1b\x47\x61\x0f\x7a\xf3\x0d\x76\xdf\x9e\xfd\xc7\x77\x7e\xb4\xc2\x5d\x7e\x53\xa2\x70\x8c\x15\xd6\xeb\x1b\x13\x75\x86\x6e\x18\xfc\xd6\xc7\xf2\xe9\x04\x39\x65\x45\x5f\x08\x79\x7e\x89\x5f\x77\xb4\x27\x32\x34\x74\xc4\xbd\x76\x46\x6a\xb0\xd2\x83\xe2\xb5\x53\xc5\x2b\x94\x63\xb7\x24\xdb\x79\x77\xb7\xb2\x19\xf1\x88\x2f\xe6\x80\xb7\xda\xae\x6b\x3a\x85\xfd\x08\x77\xb0\xf9\x5f\xb8\x83\xc3\x1d\x1c\xee\xe0\x16\x50\xf8\xd5\x13\xe0\x2b\xae\xac\x57\xcd\x80\xaf\x72\x2b\x54\xfb\x14\x72\x87\xc2\x9a\x40\xbd\xb9\x0f\x61\x25\xbc\x56\x85\xd6\xb2\x12\x5b\x2b\x7f\x87\x1e\x49\xb2\x9a\xb7\xca\x43\xe0\x6b\x05\x4d\x65\xa9\xa6\x62\x30\x6b\x82\x4b\x61\x8f\xea\xcc\x36\xba\x0c\x56\x70\xc9\x60\xca\xcc\x9d\x94\x57\x7b\xcb\x03\xec\xc7\x9a\x0b\xdd\x46\xb3\xf1\x16\xe6\x29\x37\x4e\x67\xf1\x88\xd2\x92\x43\xb8\x17\x18\xae\xd7\xf1\xe3\xbf\x3e\xf4\x16\x79\xbb\xc8\x5b\x01\x5c\x6a\xad\x43\x12\xc0\xa5\x0e\x01\x2e\xd5\x60\x1b\xf7\x82\x18\x77\xe0\xe3\x79\x48\xd3\xe1\x78\x83\x90\x47\x66\x33\xb4\xa9\x3c\x36\x84\xeb\x5e\x5b\xb7\x0e\xae\xc2\xe0\x2a\xac\xa5\x4c\x70\x15\x7e\x5d\xe9\x5a\xbb\xba\xef\xdd\xdb\xaf\x1d\x85\x3c\xb2\x9b\xf9\xb0\x41\xc8\x10\xaf\x2b\xfc\x35\x5c\xc2\xe1\x12\x0e\x97\xf0\x1b\xbb\x84\x43\xbc\x6e\x4d\xa3\xfb\x28\xa2\x74\x47\x76\xad\x1f\x22\x48\x17\x42\x5a\xc7\x75\xe3\x87\x90\x56\x08\x69\x85\x90\x56\x08\x69\x85\x90\xd6\xf2\x65\x87\x90\x56\x08\x69\x1d\x9a\x5b\xbf\x5a\xb7\x5d\xb5\xc5\xc0\x63\x32\xa8\x40\x92\xc9\xfe\x34\xf0\x61\x65\x0a\x7f\x2d\x84\xef\x0a\xbf\xf8\xb1\xbc\xc2\x0f\x79\xbb\x1c\xf8\x2e\x8d\xd7\xae\xc3\x5f\xe6\x4e\xe4\x31\x69\x5c\x77\x5f\x78\xb8\xed\x79\x81\x6e\xa1\xc6\xf4\xf0\x67\x7e\x80\x52\x86\x32\x27\xbc\xb1\x6c\xc1\x1a\xae\x7e\x8b\x9e\xba\x8a\x33\x1a\xdc\x76\x2b\x09\xf5\x86\x01\x07\xac\x10\x3e\xc0\x7c\xde\xf4\x1d\xf6\xc1\xa2\x3f\x0e\x1c\xd8\xe0\x0e\x2f\xb5\x4b\x33\xb4\x16\xfa\xce\x47\xe3\x22\x48\xab\xae\xb8\x8a\x57\xdb\x7e\xd1\xc1\x9a\x97\x2c\x39\x5c\x77\xe1\xba\x0b\xd7\x5d\xb8\xee\xc2\x75\x57\xbe\xee\xdc\xd5\x33\xa8\xb8\xf4\xaa\x7f\xcb\xaf\xbe\xea\xdf\xb3\x0b\xb0\xfa\xe7\xf5\x51\xd4\x1a\x05\x8f\x1a\xdb\x70\x10\x36\xf2\x9f\x3e\x92\xea\x2e\x7f\xca\x87\x08\x1d\xd5\x32\xc6\x1b\xbb\xd8\x96\x32\xf9\x9b\xbb\xde\x96\x1d\xd9\x70\xc9\x35\x24\xd7\x5b\xbd\xea\xf6\x12\xa8\xda\x6f\xe0\xe1\x80\x41\xab\xd7\xf2\x3b\xef\xc5\xbd\xfe\x99\x0b\x82\x28\x1b\x71\xc4\x21\x7d\x47\x2a\x91\x46\x8a\xb2\x71\xf6\xd2\x39\x7a\x4c\xbf\xfd\xf6\xbb\xe8\x8a\xb2\x27\xf8\x17\x69\xa3\x53\x3e\xc4\xcc\x42\xcc\xec\x18\x63\x66\x26\xd7\x6e\x30\xc3\x82\x30\x55\x61\x5b\x94\xaf\x13\x78\xdc\xef\x49\xed\xb4\x0e\x18\x00\x69\xd5\x1e\xd9\x0b\x39\xbb\xaa\xde\x58\x5d\x58\xc9\x7a\x79\xc3\x61\xa5\x96\xdb\x23\xed\x89\x2a\xbd\x55\x2d\x3d\x38\xa1\x82\x13\xaa\xbc\xce\xc3\x39\xa1\x36\xa0\x7b\xc8\x8d\x38\xfc\x55\x75\x3c\xd1\xa3\x96\xdf\x67\x6d\x0b\x1e\x85\x5b\x2d\xdc\x6a\xe1\x56\x6b\x01\xdd\xc3\xad\xb6\xf4\x56\xfb\x4a\xc2\x43\xc7\x70\x7b\xb5\x24\x3a\xf4\x56\x6f\xae\x10\x35\xd9\x01\xb9\xde\xea\x2d\xf6\x5a\x81\xd2\xc3\xfb\x9e\x43\x7c\x28\xc4\x87\x42\x7c\x28\xc4\x87\x42\x7c\xc8\xff\x7b\x88\x0f\x2d\xa3\xfb\xc1\xcc\x13\xab\x02\x0d\xb2\xa3\x2b\x3f\xfc\x4f\xfe\xef\xcc\x2c\xf1\x4d\x8b\x65\x30\x44\x17\x82\xc0\xa9\xe0\xc2\x82\xd8\x48\xdb\x1f\xbe\xde\xc8\xf8\x8c\x55\x34\xc1\xc3\x84\x74\xb2\xcf\xba\x76\xf9\x60\x60\xfc\x86\xb0\x2a\x28\xbd\xd0\x96\x6e\x89\x2d\x62\xa0\x21\x6e\xcd\xd3\xf9\xa0\xc7\x60\x90\x2c\x4c\xfa\xb0\x20\x46\x8b\x1b\xdf\xec\x00\xb9\x9d\xa1\x31\x88\x3b\xaf\x19\xbf\xd6\xbb\xf9\x28\xbf\x18\x24\x7a\xa1\x49\xa2\x35\x19\xab\xb5\xb5\x44\x1b\x7d\x75\x68\x93\xda\x9d\x7f\x55\x80\x93\x2a\xe9\x50\x25\x12\x9a\xf8\xcd\xb7\x97\x03\xa6\x09\xb0\x63\x36\xcc\x62\x6b\xf7\xad\x70\xad\xbf\x0d\x49\xf0\x89\xa8\x43\x89\x81\x4d\xcf\xfe\xd2\x73\x2f\xc8\x88\x08\xc2\x22\xd2\x42\x58\x8d\x75\xf0\x5e\x7e\x31\x8b\xb4\x60\x2f\x53\xc7\xb4\xfe\x52\x15\xb7\x76\x5a\x41\xd5\xb5\x8a\x5e\xbf\x73\xff\xe3\xe0\xae\x7b\x7f\xf3\x70\x77\xd1\x3d\x47\x1d\x10\x83\xf0\x8e\x39\x20\xf4\x0f\x18\x4e\x61\xf9\x94\xbb\x3b\x84\x11\x03\x12\x98\x1e\xec\x49\x4d\x45\x74\x8a\x2e\xae\x1e\xee\xfb\xdd\xbb\x9a\x01\xed\xf1\xd1\x7a\xa2\x22\xd3\x59\x82\xb5\xfe\xf8\x94\x0e\x89\x60\x04\xae\xe6\x24\x95\x8a\x88\xdc\xca\x34\x83\x76\xff\xab\x7b\xf1\xd0\xef\xdd\x5c\x0f\x7e\x7a\xe8\x3e\x74\xcf\x91\x3b\x87\x7a\x58\x3d\x2f\x38\x7a\x26\xf2\x63\xfe\x90\xf7\x80\xfd\x3d\x25\x29\x41\x58\x4a\x3a\x66\x53\xc2\x54\x79\x44\x37\xe1\xab\xce\xf7\xdd\xab\xe2\xc8\x13\x82\x7e\xfc\x47\x3e\xa9\x04\x0f\x49\x62\xcd\x5e\xc0\xa7\xd0\xc7\x3f\xff\x90\xb5\x87\x53\x43\xd5\x9f\x1e\x3a\x57\xbd\xfe\xaf\x83\x9b\x8f\x83\xfb\xee\xdd\xcf\xbd\x8b\xee\xc0\x22\xd8\x5c\x74\xf4\x77\x0b\x5f\xb2\xaa\x26\xfa\x3d\xc5\x09\x55\x73\xbd\x8f\xd2\xc8\x45\xd3\xdf\x36\x65\xa6\x39\x2e\xe8\xda\xd8\xef\x70\x2b\x67\x24\x32\x2b\xba\xbd\x7a\xf8\xd4\xbb\x1e\xdc\xfc\xdc\xbd\xbb\xeb\x5d\x76\xcf\xd1\x3d\x49\x48\xa4\x64\x46\x74\xd8\xc5\x59\x92\x8e\x29\x43\x74\x3a\x4b\x88\xa6\x86\x01\x13\x1b\x92\x09\x7e\xa6\x5c\x58\x81\x36\xa6\xcf\x84\x19\x3a\x6a\xb6\x32\xe3\x3b\x38\x9d\x81\x47\xba\x9b\xeb\x8f\xbd\x4f\xe7\xa8\x13\xc7\xd9\x1a\x4c\x67\xf4\x02\xe7\x38\xc7\xca\x69\x71\xda\x74\xa4\x0d\x16\x2d\x60\x60\xfb\xf8\x33\x11\x82\xc6\xa4\xc4\x47\x9d\xfb\xfb\xde\xa7\xeb\xcf\xdd\xeb\x3e\x50\x4c\x09\x9e\x48\x34\xe1\x2f\x60\xd0\xc1\x0a\xc1\xce\x7b\xc6\x34\x81\x8f\xb9\xcd\xe2\xcc\x3f\xfd\xde\x97\x27\x3c\x4d\x62\xbd\x4d\xaf\x6e\xa3\x14\x0e\xde\xa2\x99\x52\x3e\x49\x8b\x4f\x94\x8e\xc5\xb2\x07\x0a\x5c\xbe\xf8\xe0\x2a\x6e\x5d\x7c\xa3\xc4\x6e\x8b\x0f\xd4\xf2\x4b\xfd\x4a\xf3\xbd\x6e\x6c\x99\x15\x69\xb8\xa6\x94\xdd\x81\x6f\x6f\xb9\xc3\xb6\xa5\x76\x97\x7b\xfb\x5d\x4c\x12\xa2\x48\xad\xa2\x74\x09\x3f\xbf\x96\xa2\x64\xbe\xfe\x36\x74\x25\xb3\x96\xa0\x2e\x7d\x35\xc6\x92\xdb\xf0\x56\x18\x4b\xe6\xac\xf9\x36\x13\x94\x0c\x7a\xc6\xb5\xa9\x13\x7c\x9b\x6e\x96\xa3\x28\x0b\x6c\x8f\x9f\x65\xef\x97\xe2\xa1\x85\x43\xf0\x21\x2d\xce\x24\xf8\x90\xb6\x13\x8b\x85\x3f\x56\x40\xe9\x1e\x5c\x54\x6e\xa2\x60\x15\xe4\xe5\x25\x3c\x7e\x9c\x52\xb3\x3c\xf7\x63\x96\x9d\xde\x68\xed\x10\x22\x5f\xaf\xf8\x5c\x38\xe2\xcd\x16\x6e\x53\x7f\x8e\x77\xdd\x6d\xb9\x36\xea\x8e\x75\x9b\x2f\x0f\x73\x63\x1c\x7f\x44\xe2\x98\xc4\xff\xab\x84\x24\xde\x9c\x9a\xfc\xd5\x39\x0d\x42\x8c\x25\xc4\x58\x42\x8c\x25\xc4\x58\x42\x8c\x05\x6d\x1a\x63\xd9\x95\xa6\x75\xd4\x01\x89\xe3\x54\x95\x0e\x1b\x91\x08\xda\xd2\xb1\x6b\x4b\x6d\x31\x0a\x8f\x2b\xc4\x52\x34\x07\xd7\xee\xba\xd5\x16\xbb\xf0\x2d\x39\x07\x8f\xcb\x46\x6c\x9d\x3b\xf0\xab\x13\x7c\x9b\xb9\xfe\x8e\x76\xb9\xc1\x2a\x0e\x56\x71\xb0\x8a\x83\x55\x1c\xac\x62\x14\xac\xe2\xb5\xad\xe2\xb7\xa4\x28\x1e\x9d\x85\x1c\x74\xc5\xd7\x5e\xf0\x57\xa6\x2b\xb6\xc5\x27\x50\x77\x72\x5b\xea\x19\xf8\x3a\x13\x8a\x8e\xf8\x26\x08\x35\xaf\xc8\xdb\xba\x90\x70\xf3\xb5\xc8\xd1\x96\x27\xdc\xbc\x3d\xbf\xea\x11\xcb\xc8\x50\x0d\x1c\xd4\xca\x1d\x2d\x37\xb8\x20\x83\x0b\x32\xb8\x20\x83\x0b\x32\xb8\x20\x51\xbb\x8b\x9f\x57\x3a\x9c\x42\xfd\xf3\xbe\x1c\xab\x47\xac\x29\x86\x5a\xe8\xa0\x2c\xee\x6e\xb9\x6d\xb5\x9d\xdb\xe4\x83\x94\xeb\x77\x94\x58\x89\xc4\x6d\x97\xfd\xdb\x12\x01\x76\x45\xa5\x33\x74\x8f\x49\x5e\xc9\x7d\x8b\xa4\x6d\xe0\x77\xdd\x8e\xbe\x59\xf4\xdd\x05\x3a\x00\x01\x22\x2c\x8d\x81\x97\x26\x8a\xce\xb4\x2a\x8f\xc7\x44\x5a\x3c\x62\xad\x78\x9f\x38\xd9\x25\x9e\x89\x38\xcd\x00\xa7\xe1\x13\x0e\x85\x1b\xcc\x16\xc5\xd1\x08\xd0\xe6\x81\xae\xe4\x8b\x82\xa1\x1e\x19\xe0\x70\x03\x8d\xce\xda\x88\x7f\x1b\xc0\x81\x97\x10\x27\x80\x03\xaf\x25\x4d\x02\x38\x70\x4b\xc0\x81\xd7\x35\xc1\xcc\xa9\xf4\xad\x30\x38\xe4\x4e\x6b\x75\x6e\xa9\x23\x35\xc6\x66\x5c\xd6\x6b\x26\x77\x64\x4c\x25\x88\xa4\x25\xdd\xae\x9c\x4e\x02\x8d\x15\x80\xd5\x3f\xea\x07\x50\x4c\x66\x09\x9f\x83\xff\x6b\x89\xba\xe2\x3e\x71\xbb\x60\x31\xb4\x5d\x63\x71\x33\x3f\x94\x4d\xd5\x16\x9d\x3b\x5f\x77\x2b\xb4\xec\x3c\xe5\xff\xf5\xf5\xed\x63\x4a\xbc\xda\xbb\xc2\x7d\x58\x39\x7b\x4c\xdd\xde\x83\x39\x11\xcc\x89\x26\x5c\x13\xcc\x89\x55\x04\x0a\xe6\x44\x30\x27\xf6\x69\x4e\x1c\x58\x83\xf9\xf0\x3f\xa5\x26\xea\xcb\x12\x10\x1f\x6c\xd6\x21\x04\x67\xa9\x84\x23\xbf\x52\x91\x79\x64\xd5\x3f\xb8\x20\xe5\x90\x38\x19\x33\x4c\x95\xd7\x76\x4d\xea\x4b\x6b\x46\x84\x9a\x7b\x4f\x92\xe9\x4c\xcd\xff\xf3\x91\x51\x95\xa5\x78\xd1\x31\xe3\xc2\x70\x8c\x7e\x79\x82\x59\x9c\xe8\x4b\x5d\x66\xe3\x44\x98\x31\xae\x40\x94\xc3\x02\x62\xf4\x4c\xb1\x11\xfc\x9d\xdb\x5e\xe3\x44\xc7\x63\x52\xb5\x0e\x9b\xc9\xb8\xff\xde\x69\x87\xef\x2c\xba\x62\x41\x9f\x12\x3e\xc4\x49\x32\x47\x69\x31\xa2\xa4\x07\x68\xc9\x1a\xda\x62\xbd\xb5\xc3\x5c\x73\xb0\x02\x65\xb3\xad\x65\xde\x88\x63\x12\x32\x87\x76\x47\x78\x5b\xf8\xc6\xc4\x4d\x5b\x8e\x6a\xdb\x1c\x2d\x41\x39\x69\xaa\x9c\x1c\x91\xd8\x38\xac\x6e\x12\x6e\xf2\xe3\xbf\xc9\x15\x96\x4f\x7e\x27\x73\xb8\xd0\x5d\x33\xfa\x42\x17\xdf\x72\x4b\xdf\x7f\x35\x79\x2e\x2f\x2f\x58\xfd\x6c\xd6\x0d\x7d\xf5\xa3\xd0\x19\xbd\xe6\x41\xdb\x46\xdf\xfc\x0c\xcb\x2b\xcf\xc3\xfd\xd1\xff\xa0\xfb\x5b\x3e\xb2\xfb\xcb\x33\x11\x92\x72\xfb\x98\x20\x4a\xcc\x07\x58\x29\x2d\x90\x36\xf0\x51\xd7\x4a\xcd\x3e\x96\x4f\xcd\xba\xb2\x7f\x22\xaa\xf0\x70\xdb\xd5\x1a\xb7\x50\x58\x67\x61\xe6\xfb\x97\x4f\x0d\xd8\xf8\x8d\xa9\x3b\x8d\x8f\xe4\x8a\x75\x1f\x5f\x63\xfa\xa6\x02\x66\x8d\x85\x7f\x2d\x4d\xea\x9b\x09\xdc\x55\xf9\x90\xc7\xd8\xb0\x7e\xd9\x0d\xd2\x9a\x19\x96\x2e\xb1\xb7\x78\x72\x8b\x57\x72\x38\xa2\xcb\x68\xd4\xf4\x2c\x1e\xcd\x09\x2c\x69\x5a\x2b\xd6\x76\xef\x36\xc8\x3e\xee\x38\xa1\x7d\xeb\x2a\x28\x8b\xbb\x9e\xd5\x7e\x02\xc0\xde\x6e\xac\x53\x42\xd8\x73\xcd\xd6\x4d\x38\x2b\x3b\x43\xae\xa8\x30\x3b\x9a\x6a\x02\x0d\xa9\xa8\xf4\xfb\xb3\x47\x5c\x18\x6d\x33\xb6\x67\xd6\x04\xb4\x3a\xfd\xce\x7d\xb7\x7f\x8e\x3a\x28\xc6\x0a\xeb\x43\x2a\xc8\x4c\x10\x49\x98\x32\xae\x08\xa6\xa8\x9a\xa3\x29\x8f\x49\x62\xfc\x00\xc6\x39\x78\x89\x15\xbe\xc0\x0a\x27\x7c\x7c\x86\x3a\xf0\x9f\xfa\x65\x2a\x11\x4e\x24\x47\xd8\x31\x0e\x89\xdd\x10\x98\xc5\x4e\x3c\x60\x14\xf1\xe9\x8c\x26\xa6\xae\xcd\x8f\x6f\x53\x16\xd3\x67\x1a\xa7\x38\x41\x7c\x08\x3e\x94\xb3\x47\xd6\x7d\x26\x4c\xa5\x60\xe3\xe2\x24\x41\xf6\xb3\xee\x01\xcf\x81\xe1\x66\x29\xe9\x94\x26\x58\x68\xed\xd1\xcc\xf6\xc6\x8e\x85\xfa\x13\x92\xcd\x15\xe6\xa5\xa9\x39\xc5\x4f\x44\x22\xaa\xd0\x8c\x4b\x49\x87\x49\x7e\x8c\x1f\x7a\x08\xe6\x7d\x71\xd5\x83\xa0\x61\xa4\x10\x37\x72\xd0\x7d\xdc\x46\xd0\xdd\x17\xa7\x98\x31\x02\x1f\xe6\x6a\x42\x84\xfd\xbc\x7d\xf8\xb5\xe3\x7f\x0f\xd7\xb6\x5c\xac\x7b\xb9\x18\x00\xec\x77\xee\x7f\x5c\xfc\xab\xab\x0f\x5b\xfc\xe5\xaa\xf3\x70\x7d\xf1\xc3\xe0\xf6\xaa\x53\x51\x77\x66\xd9\xaa\x71\x2c\xd1\x9f\xd9\xe6\x87\x69\xff\x86\x46\x4b\x53\x13\x9b\x3b\x1d\x1a\x79\x1c\x1a\xbb\x1b\x9a\xfa\x1a\x9a\x39\x1a\xea\xbd\x0c\x7b\x48\x53\x6b\xee\x0a\xb8\xa2\xb2\xe8\x0b\x38\x8e\x9c\xb5\xc2\x94\xf5\x1a\xf6\xed\x08\xf8\xea\xbc\x00\x5f\xa9\x0b\x20\xd8\xff\x7b\xa1\xdb\x5b\x35\xfe\x5b\x6e\xf9\x6f\x93\x94\x9a\xe1\x5f\x84\xac\xd4\xc5\xac\x54\x12\x92\x52\x43\x52\x6a\x53\x02\x85\xa4\xd4\x90\x94\x7a\xb4\x49\xa9\x65\x43\x2b\x44\x6c\xdb\x10\xb1\x6d\xb9\x8d\xd6\xe6\x80\xed\x5b\xb5\x5c\x42\xf0\x32\x04\x2f\x43\xf0\xf2\x48\x4f\x6e\x08\x5e\x36\xa7\x51\x08\x5e\x86\xe0\x65\x08\x5e\x86\xe0\x65\x08\x5e\x86\xe0\xe5\x6b\xba\x46\xda\x90\x1b\x7a\xcc\x21\xdb\x10\x89\x5d\x11\x89\x6d\xb9\x91\xdf\xca\x40\xec\x5b\xb5\x11\x82\x69\x1f\xe2\x92\x5b\x2d\xbb\x55\x46\xfd\x5b\xbb\x37\x43\x28\xb6\x39\x21\x42\x28\xb6\x31\xa9\x42\x28\x76\x09\x71\x42\x28\x36\x84\x62\xbf\xc2\x50\x2c\x8d\xb7\x6e\xb9\xd5\xc4\x6e\xd1\xba\x62\xdc\x05\xf7\x50\xe6\xdc\x12\xbf\x81\xf6\x88\xe5\x53\xe6\x01\x6a\x60\xcf\xf4\xe2\xa3\x30\x64\x2a\x17\x7c\x08\x83\x66\x1b\x8b\x05\x2b\x2d\xc1\x15\x40\x15\xe8\x5f\x72\xa7\x62\x0b\x7b\x04\x6c\x63\xa3\x78\x0b\xf3\xcc\x14\x67\x7d\x78\x44\x69\xdf\xb2\x83\xe2\x17\x14\xbf\xa0\xdb\x34\x5c\x70\xd0\x6d\xda\xab\xdb\xbc\x96\xc1\xd2\xbe\xe3\x79\x74\xfe\x89\xbd\xab\xa5\xb2\x31\x68\x9b\x69\x93\x0d\xa1\xbb\x74\x96\x70\x1c\xaf\x4a\x90\xfb\x0d\xe5\xba\xda\x12\x75\xd3\x8c\xab\x5f\x68\xb9\xb6\xb9\x90\x1b\x67\x66\xfe\x35\xa0\xc6\xd7\x2e\xfd\x55\xf1\xcc\x80\x7f\x33\xd4\xa2\xb5\x10\x08\xf7\xcf\xcc\x6d\xaf\xc6\x7b\x65\x6e\x7e\x93\xa5\x77\xe1\x88\xae\x3e\xa2\xf0\x8f\x42\x82\xf7\xbe\x3c\x21\xe5\x63\xdb\xc8\xe9\x21\xff\xde\xf2\x73\x9b\xed\xef\x21\x5c\x1c\x6f\xf2\x94\xbe\xe1\x60\x73\x08\x28\x2f\xcf\xfa\xd9\x51\x02\xea\x23\xeb\x4f\x34\x1d\xa6\x43\xca\xb2\x7c\x3b\xc7\x21\x7f\x71\xe4\xfa\x0b\x60\x5d\x5a\xfc\xcb\x64\x9e\xbb\xc2\x64\x79\xb4\xcc\x50\x42\xa7\xda\x4a\x8d\x88\x50\x40\x6f\xce\x14\xf9\xa2\x24\x3a\x45\x09\x7d\x22\xe8\xbd\x3e\xf2\xa8\x73\xdb\x7b\x7f\x82\xde\x5f\xe1\x94\x45\x13\x34\x4b\x30\x93\xef\x5b\x63\x60\x05\x9f\x59\xe8\xa6\x12\xa2\xa5\xbb\x24\x4e\xf0\x28\x06\x8f\x62\xeb\x3c\x8a\x6d\xb1\x19\x4c\x51\x29\x9e\x92\xb6\x58\x0f\x6d\xb7\xfa\x83\xf5\x10\xac\x87\x60\x3d\x04\xeb\xa1\x60\x3d\xb4\x83\xc2\xc1\x74\x08\xa6\x43\x30\x1d\x82\xe9\x10\x4c\x87\x9d\x93\x31\x98\x0e\xcb\x4c\x07\xf8\x97\xc3\x8d\x59\xd7\x8e\x68\x6c\x3f\x34\x00\x89\x39\x1a\xe3\x21\x18\x0e\xc1\x70\x08\x86\xc3\xc1\x0d\x87\xd6\x2c\xe8\xed\xe1\x5d\x04\xc4\x88\x80\x18\x11\x10\x23\x6a\x10\x23\x0e\xa5\xb2\x19\x7d\xed\xc8\x4a\x64\x8e\x42\x69\x7b\xb5\x1a\x99\xb7\xa7\xc6\x85\xaa\x9f\x50\xf5\x13\xdc\x90\xa1\xea\x27\x38\xda\x82\xa3\xad\xd5\x8e\xb6\xd7\xf2\x9e\x1f\xf8\x78\x1e\x40\x39\x6d\x79\xc6\xf2\x77\xc7\xa0\x81\x1e\x30\xe7\x20\x78\xd9\x82\x97\xad\x9a\x32\xc7\x19\x9e\x6f\xcd\xad\x1f\x00\x9e\x82\xc6\x1f\x12\x0f\x42\xe2\xc1\x4a\xe2\x04\x7b\x28\xd8\x43\xad\xb3\x87\x5e\xd1\x50\x68\x5d\x9a\x72\xb0\x18\x82\xc5\x10\x2c\x86\x37\x6b\x31\xb4\x86\xc2\xc1\x5c\x08\xe6\x42\x30\x17\x82\xb9\xb0\x9c\x38\xc1\x5c\x08\xe6\x42\x30\x17\x5a\x9d\x9a\x7c\x2c\x06\x43\x30\x16\x82\xb1\xd0\x6e\x63\xa1\x35\x0b\x0a\x49\xbc\x21\x89\x37\x24\xf1\x7e\x35\x49\xbc\x6f\xd4\x60\xdf\xab\x9a\xe6\x44\xe4\x32\xc5\x6b\x51\x5f\xfa\x79\x41\xb0\xb6\x56\x65\xca\x67\xbb\x29\xee\xe3\xae\x48\xfd\xc2\xc5\xd3\x28\xe1\x2f\x83\xcc\xaa\xb3\x49\xe1\xf9\x7f\xdb\x7a\x3e\xef\x0f\xb9\xf2\xec\xfd\x31\x53\xa2\xbd\xbf\xb9\xd1\x8b\x00\xa1\xe9\x2a\x7c\x50\x89\xb8\x40\xe9\x2c\x86\x7f\x46\xa9\x54\x7c\x5a\xaf\x55\x7f\xc6\x2a\x9a\xe0\x61\x42\x3a\xd9\x77\x2f\x38\x1b\xd1\x71\x6a\xf8\xe3\x37\x10\x85\xd8\x69\x36\x27\x4e\x33\xd2\x42\xd1\xcd\x6f\x99\x26\xfe\x00\xf3\xf8\xc5\x3e\x99\x7f\xe4\x28\x12\xd0\x17\xa7\x6d\x96\x73\x28\xb8\xd1\x22\x17\x6d\x2b\xe2\xbc\xd1\xda\xa1\xfe\x2c\x9e\x89\x55\xaa\x2a\x78\xa1\x33\xcb\x84\xc6\xc0\x9c\x2f\x13\x0a\x9e\x35\xf0\xc4\x81\xf7\x29\x1f\x18\xbd\xd0\x24\x01\x8d\xc3\xd0\xa2\x7d\x2b\x6f\x64\xbd\xd8\x85\xdb\xb3\xf7\x26\xd6\xed\x84\xc7\x8a\x95\xbb\x23\x68\xc2\x10\x47\xba\xec\xd7\x44\xd8\x5d\x21\xc8\x5e\x15\x67\xb7\xf6\xfa\xac\xa9\xa9\xfa\xf0\x3f\x95\x57\x62\x93\xde\xa9\xaf\x7d\x0f\x7e\x22\xea\xcd\x5c\x82\x9f\x88\x3a\xd4\x0d\xf8\x16\xaf\xbd\x4d\xef\xba\xa5\x82\x4f\x90\x11\x11\x84\x45\xe4\x58\x6b\xb2\x16\xae\xb8\xa3\x5d\xee\x46\x37\xdb\xd1\xae\x76\x1d\x07\xd6\x2f\x66\x91\xd6\x5d\x35\x75\x22\xd7\x5f\xaa\xe2\x36\xbc\x5c\x08\x81\x59\x67\x55\xbf\x73\xff\xe3\xe0\xae\x7b\x7f\xf3\x70\x77\xd1\x3d\x47\x1d\x38\xe8\xf0\x8e\x11\xef\xf4\x0f\x18\x0e\xea\x61\x33\x67\x98\x30\x77\x9c\x04\x51\x0d\x61\x70\x4d\x45\x74\x8a\x2e\xae\x1e\xee\xfb\xdd\xbb\x9a\x01\xad\xf0\xa7\x6c\x8c\x14\x99\xce\x12\xac\x48\x8c\x9e\xd2\x21\x11\x8c\x80\x61\x95\xa4\x52\x11\x91\x07\xc7\xcd\xa0\xdd\xff\xea\x5e\x3c\xf4\x7b\x37\xd7\x83\x9f\x1e\xba\x0f\xdd\x73\xe4\x6e\x11\x3d\xac\x9e\x97\x9e\x45\x3c\x67\x78\x4a\x23\xf3\x87\xac\x15\x2d\xfa\x3d\x25\x29\x41\x58\x4a\x3a\x66\x53\xc2\x54\x79\x44\x37\xe1\xab\xce\xf7\xdd\xab\xe2\xc8\x13\x82\x7e\xfc\x47\x3e\xa9\x04\x0f\x49\x62\xa3\xf5\x10\x80\xd6\x97\x57\xfe\x21\x1b\xc6\x4f\x0d\x55\x7f\x7a\xe8\x5c\xf5\xfa\xbf\x0e\x6e\x3e\x0e\xee\xbb\x77\x3f\xf7\x2e\xba\x03\xeb\x8c\xb9\xe8\xe8\xef\x16\xbe\x64\x7d\x36\xe8\xf7\x14\x27\x54\xcd\xf5\x3e\x4a\x73\xe9\xa3\x97\x09\x61\x28\x65\x70\x81\x18\x4f\x21\x66\xde\x47\xe5\x8c\x44\x66\x45\xb7\x57\x0f\x9f\x7a\xd7\x83\x9b\x9f\xbb\x77\x77\xbd\xcb\xee\x39\xba\x27\x09\xf8\xd2\x1c\xd1\x61\x17\x67\x49\x3a\xd6\x92\x60\x3a\x4b\x88\xa6\x86\xf1\x15\x0e\xc9\x04\x3f\x53\x2e\xec\x75\x3c\xa6\xcf\x84\x19\x3a\x6a\xb6\x32\xe3\x3b\x9f\xd5\xc0\x23\xdd\xcd\xf5\xc7\xde\xa7\x73\xd4\x89\xe3\x6c\x0d\x12\xc6\x28\x70\x8e\x3b\xba\xa7\xc5\x69\xd3\x11\x8d\xe0\xf3\x86\x89\xf8\x33\x11\x82\xc6\xa4\xc4\x47\x9d\xfb\xfb\xde\xa7\xeb\xcf\xdd\xeb\x3e\x50\x4c\x09\x9e\x48\x34\xe1\x2f\x10\xe8\x85\x15\x42\xfc\xf7\x19\xd3\x04\x3e\xe6\x36\x8b\x33\xff\xf4\x7b\x5f\x36\x6e\x4d\x91\xb2\x57\x8f\x5d\x16\x0e\xde\xa2\xb7\xaf\x7c\x92\x16\x9f\x28\x1d\x8b\x65\x0f\x14\xb8\x7c\xf1\xc1\x55\xdc\xba\xf8\x46\x89\xdd\xea\x7d\x9c\x0b\xfc\x52\xbf\xd2\x7c\xaf\x1b\xbb\x38\x8b\x34\xdc\x87\x8e\xed\xde\x7e\x17\x93\x84\x28\x52\xab\x13\x5f\xc2\xcf\xaf\xaf\x13\x9b\x79\xbc\x19\xb5\xd8\x2c\x27\x68\xc6\x41\x33\x6e\xbc\xe0\xa0\x19\x57\x2d\xf8\x8d\x68\xc6\x2d\xf4\xfa\x38\x11\xd5\x3a\xaf\x4f\x88\x8f\x94\x76\xea\x38\xaf\xc0\x57\x0b\x8f\x84\xf8\xc1\x7a\x57\xc8\xf1\xaf\x3b\xc4\x0f\x42\xfc\xa0\xf2\x26\x79\xf3\x51\x83\xe3\xbc\x1a\x0e\x18\x34\x08\x66\xc4\x92\xf5\x06\x33\xe2\xc8\x56\x1b\x1c\xec\xc1\xc1\x1e\x1c\xec\xc1\xc1\x1e\x1c\xec\x68\x53\x07\x7b\x03\x29\x7b\x08\x77\x6a\x4b\x93\x88\xdf\x4a\xd8\xe0\x38\xf5\xe2\xc3\x46\x0d\x82\x6a\xbc\x64\xbd\x41\x35\x3e\xb2\xd5\xb6\xd0\x2f\xd2\x2e\x0f\x3b\x8d\xab\x1c\x22\x07\x84\xa6\x77\x33\x69\x0a\x4f\xef\x08\xda\x8b\x8f\x42\x9c\xbf\x1a\x42\x7d\xc0\x73\x0f\x78\xee\x01\xae\x25\xe0\xb9\xa3\x00\x48\x12\x00\x49\xda\x0c\x48\xd2\x60\x1b\xdf\x02\x9e\xfb\x61\x3c\x0c\x6f\xa8\x48\xd9\x29\x86\xb2\x90\xbb\xc1\xe5\xaa\xe4\x0d\xf0\x12\xa4\xb3\x84\xe3\x78\x19\x58\x8c\xd3\x23\x7d\xc0\x98\x25\xaa\xa7\x19\xfb\x97\x45\xe3\xa9\xb5\x9a\xa7\x9b\xab\x99\xf9\xa1\xdc\x07\xad\x31\xb8\xdc\xb2\x5b\x61\x66\x15\x7b\xb7\xb6\x90\xa1\x8f\x2a\xa1\xf6\xb0\x1c\xfd\x26\x9b\xb6\x86\x63\xba\xfa\x98\x1e\xae\x3f\x4a\xd5\xd1\x6d\xec\x08\x91\x7f\x3f\xa6\xb3\x7b\x20\xe4\xe3\xb7\x77\x62\x03\x42\x5b\x40\x68\xab\xa5\xcc\x71\xc2\x39\xb7\xc6\xf0\x0a\xbe\xb4\x00\x7d\x1c\xa0\x8f\x77\x49\x9c\xe0\x69\x0c\x9e\xc6\xd6\x79\x1a\xdb\x64\x43\xec\xb1\x75\xca\x76\xd6\xc4\x51\x79\x02\x82\x35\x11\xac\x89\x8a\xa5\x05\x6b\xe2\x2b\xb4\x26\xda\x41\xe1\x60\x4a\x04\x53\x22\x98\x12\xc1\x94\x08\xa6\xc4\xce\xc9\x18\x4c\x89\xd7\x69\xab\x52\x65\x4f\x34\x2c\x49\x3d\x2a\x63\x22\x18\x12\xc1\x90\x08\x86\x44\x68\x1c\xb3\x7c\x4d\xa1\x71\x4c\x68\x1c\x13\x1a\xc7\xbc\x81\xc6\x31\x87\x54\xe1\x6a\xd0\xca\x8f\xa3\xcc\xe6\x28\x94\xb8\x57\xab\xb3\x79\x7b\x2a\x5d\xa8\x1c\x0a\x95\x43\xc1\x45\x19\x2a\x87\x82\x13\x2e\x38\xe1\x5a\xed\x84\x7b\x2d\xcf\xfa\x81\x8f\xe7\x81\x14\xd5\x23\xc9\x76\xfe\xee\x18\xb4\xd1\x03\xe7\x27\x04\x0f\x5c\xf0\xc0\x55\x53\xe6\x38\x43\xf9\xad\xd1\x02\x8e\xb1\x73\x6c\xb0\x00\x9a\x13\x22\x24\x29\x34\xa7\x55\x48\x52\x58\x42\x9c\x60\x1f\x05\xfb\xa8\x75\xf6\xd1\x2b\x1b\x0e\xad\x4d\x71\x0e\x16\x84\x79\x2e\x58\x10\xc1\x82\x78\xa3\x16\x44\x6b\x28\x1c\xcc\x87\x60\x3e\x04\xf3\x21\x98\x0f\xcb\x89\x13\xcc\x87\x60\x3e\x04\xf3\xe1\x68\xd2\x9a\x8f\xc9\x80\x08\xc6\x43\x30\x1e\xda\x6d\x3c\xb4\x66\x41\x21\x01\x38\x24\x00\x87\x04\xe0\xaf\x26\x01\xf8\x8d\x1a\xf0\xbb\x55\xdb\xfe\xcd\x12\xea\x9d\xa7\x60\x64\x9a\xc8\xbb\xef\x13\x3e\xec\xcf\x67\x44\xff\xdf\x4b\x3a\x25\x4c\x02\x25\xa8\x9a\xfb\x6a\x5a\x0d\x43\x2d\xb2\xd2\xbb\xfb\xde\xf5\xa7\x2b\xbf\x3d\xd0\xbb\xcf\x0f\x57\xfd\xde\x6d\xe7\x2e\xdb\xee\x6c\x55\xfe\x16\xdb\xf7\x0a\x9a\xa6\x3d\xc9\x77\x44\x9b\xd4\x20\x0c\xee\x15\x56\xa9\xdc\x6c\x66\x77\xdd\xfb\xee\xdd\xcf\xd0\xde\x68\x70\xd9\xbb\xef\x7c\x7f\x55\xe0\xf3\xc2\xef\x9d\x8b\x9f\x1e\x7a\x77\xf5\xbf\x77\xff\xab\x77\xdf\xbf\xaf\xfb\xf5\xae\x7b\xd5\xed\xdc\xd7\xbf\xfd\xb1\xd3\xbb\x7a\xb8\xeb\x2e\xa5\xc7\xd2\xd9\x2e\xb7\xad\x24\x10\x09\x5a\x7c\xa0\xc8\x0a\x43\x91\xd3\x10\x65\x5a\xb1\x93\xf2\x55\xdf\x3a\x47\x0f\xd6\x55\x41\xed\xe0\xe6\xde\xf0\x06\x32\x36\x56\x4c\x25\x1e\x26\x24\x5e\x18\xc9\xd1\xb0\x6e\x24\x5c\x98\xd4\x0b\x96\x9e\x26\xad\x45\x79\x64\x8e\x0f\x82\xa6\x6b\x8a\xb0\xb8\xe2\x1b\x66\x1f\x6a\xbf\xc0\xb4\x48\xa6\xcf\xa4\xf0\xa5\x28\x15\x82\x30\x95\xcc\x11\xf9\x42\xa5\x92\x0b\x83\xba\xed\xab\x1b\xd6\x0a\x84\x6c\xc0\x09\x96\x68\x48\x08\x2b\xce\x5f\x90\x84\x60\x59\x31\x67\xbb\xfb\xcd\xc8\x92\xed\x95\x75\x32\x99\x3b\x76\x84\x69\x92\x0a\x52\x3a\x2d\x7c\x3a\xc3\x82\x4a\xce\xba\x5f\xf4\x15\xad\x0f\xf2\x0d\xbc\xce\xc5\x66\x27\xa6\xfb\x93\xcf\xc1\xd7\xc5\xff\xfc\xd4\x2f\xfe\x57\xe1\xcc\x5f\xf5\x8b\xff\xb5\x9c\xd7\xbd\x81\xcb\x9c\x7d\x8a\x3e\xf5\xcf\xd1\x27\x80\x18\x15\xa8\x3f\xc1\x86\x63\xaf\xfa\xe7\xe8\x8a\x48\x09\x7f\xc9\x5f\x56\x54\x25\xb0\xb6\xef\x29\xc3\x62\x8e\xdc\xf2\x4d\xe7\x3e\x1c\x4d\x10\xc9\x48\x53\x26\x1e\xfb\x67\xca\xc0\x23\x91\x53\xef\x8a\x8f\x69\x84\x93\xed\x88\xd8\xb9\x2e\xc8\x81\x9b\xbb\xa5\xa4\xf0\x9f\x5e\xa4\x45\xe7\xfa\x12\xba\xe2\xb9\xa9\x56\xac\xfc\x9a\x48\xcd\x24\x11\x67\xb1\x8d\xa9\x69\xa5\x66\xee\xd9\x2a\xff\xe4\xd0\x59\x30\x95\x94\x8d\xf5\x88\xe8\x03\xba\xb9\x7b\x64\x37\x22\x36\xfe\x5d\xa2\x95\x7c\xc3\x73\x54\x22\xc6\x15\xa2\xd3\x19\x17\x0a\x33\xa5\xed\x1b\xd0\x6e\x2c\x45\x8c\x04\xb8\xe0\xd3\x69\xaa\xb0\x3e\x68\x0b\x44\x65\xc6\xcb\x73\x4f\x54\x2f\x86\x40\x58\x05\x0d\x8d\xfa\x93\xaf\x65\x26\xf4\xf8\x5a\xf5\x2a\xba\x06\x68\xbc\x60\xa1\xbb\x21\xb0\x10\xb8\x78\x01\xbf\xa3\x8a\x4c\xcb\xcf\x37\xbc\x76\xff\x55\xe9\xf7\xb8\x30\x55\x11\x44\x74\x44\x34\xa1\x8a\x44\x4a\x1f\xc1\x8d\x78\xe2\xe1\xfa\xc7\xeb\x9b\x5f\x7c\xc5\xe8\x5d\xe7\xf3\xe5\x7f\x14\x60\x60\x3b\x77\x9f\x17\xfe\x30\xf8\xf9\x3f\x16\xfe\xf2\xff\x5f\xca\x4f\xe5\x2f\x2d\xb8\x2f\xbc\xb5\x9c\x82\xa5\x00\xae\x6e\xb7\x54\x44\xa7\x78\x4c\x90\x4c\x67\x9a\x03\xe4\x59\x71\x7f\xb5\xa6\x7c\xc5\x71\x4c\xd9\xd8\x34\x7f\xbb\xa2\x8a\x08\x9c\x7c\xc6\xb3\x8f\xce\x2d\xbf\x01\x75\xfe\xcf\x7d\xa1\x01\xe1\xbb\x5f\x3b\x9f\xfd\x16\x86\xef\x6e\xef\x6e\xfa\x37\x4b\x57\x5d\x18\x61\xf1\x18\xe9\x9f\xcf\xe1\xff\x47\x1f\x90\x1e\x3d\x53\xe8\xa7\x44\x61\x6d\xe8\xa0\x3f\x99\x7e\x59\x59\x25\x0c\x65\x09\x9c\x9a\x99\xa0\x53\x0a\x57\x8a\x71\x4c\x7e\x63\x6c\x86\xcc\x28\xca\xce\x8d\x79\x01\x9c\x00\xee\x52\x66\x31\x16\x31\xfa\xa7\x2c\xf7\xc3\x04\x7f\xb8\xf9\x03\x89\xd1\x29\x9a\x28\x35\x93\xe7\x1f\x3e\xbc\xbc\xbc\x9c\xe9\xa7\xb5\x02\xfb\x41\xff\xe3\x94\xb0\xb3\x89\x9a\x26\xa6\xff\xa7\xa6\xc2\x39\xba\x15\x5c\x5f\x21\xe0\x77\x20\x82\xe2\x84\xfe\x41\x62\x34\x34\xf2\x8f\x8f\xd0\x6f\x11\x17\xe4\x2c\xdf\x18\xeb\x2b\xb3\xf7\x88\xf5\xa7\x7d\xd0\x0f\x55\x08\x93\xf2\x7e\xa2\x98\x44\x34\xb6\x6a\x06\x61\x11\x07\x87\xaa\x09\xc1\xe8\xf1\x5c\x93\x31\x6d\xa8\xcd\x52\x95\x93\xd3\xb3\xc1\x70\x4c\xbc\xf6\x9d\x56\xbf\xce\x18\x4e\xdb\x73\x3d\x63\x8d\xa7\x92\x08\xb8\x5b\x31\xdc\xaa\xee\xd1\x99\x5e\x70\xc4\x13\x34\x4c\x47\x23\x22\xfc\xf4\x81\x13\x6d\xa4\x51\x89\x04\x89\xf8\x74\x0a\x1a\x83\x7e\x2b\x95\x86\xab\x81\x62\x76\xb6\x67\x8f\x0c\xf6\x5f\x5b\x6f\xc0\x01\x31\x07\x51\xc7\x08\x89\x11\x66\x73\xf3\x99\x61\x3a\xf2\xc7\x37\x7d\x75\x71\x8c\xa8\x7a\x64\x9d\x24\x41\x82\x4c\xb9\x22\x5e\xfb\x34\x08\x75\x16\x09\x0e\x22\x52\x90\x59\x82\x23\x12\x1b\x7e\x48\x78\x84\x13\x34\xa2\x09\x91\x73\xa9\xc8\xd4\x1f\xe0\x4f\xe0\x82\xd2\x34\xa3\x12\xc5\xfc\x85\x25\x1c\xdb\x75\x94\x5f\xfb\xa6\x78\x1a\xbb\xae\xe7\x69\x57\x08\x2e\xe0\xff\xfb\x91\xb2\x78\x67\x12\xea\xe1\xbe\x7b\xe7\xff\xf7\xfd\xaf\xf7\xfd\xee\xe7\xf5\xa4\x4f\xc6\x59\x30\x3d\x70\x4d\x9c\xa3\x7b\x43\x04\x2e\xb4\x46\x24\x6a\x16\xf5\xd9\xb2\x52\xfe\x07\x1e\x6f\x28\x7d\x3f\x77\xae\x1f\x3a\x05\x89\x72\x7f\xf1\x43\xf7\xf2\xa1\x64\x0f\xd8\xf5\x15\x74\x78\x63\xd5\xfa\x7f\xbb\xf8\xa1\x77\x75\x39\xa8\xb0\x83\xdf\xdd\x75\x2f\x6e\x7e\xee\xde\xe5\x26\x6b\x25\x89\x4a\x93\x29\x0b\xab\xbe\x11\x4a\x13\x1e\xa3\xe1\xbc\xba\xc3\xad\xd6\x9c\x13\x88\x9c\xe7\x3d\x9e\xcd\xa8\xe7\x20\x9b\x5c\xb3\xe1\xfc\x8d\x29\x8f\xc9\x89\x7d\x06\x5a\x03\x1b\x9f\x91\xd1\x98\xab\x07\xd6\x5f\xc7\xcc\xf3\xbf\x98\xae\xbd\x19\xe1\xce\x51\x07\x49\xfd\x60\xaa\x0f\xb5\xa0\xe3\x31\xf8\x43\x4b\x53\x35\xa3\xd9\x57\x81\xbc\xf0\x9e\xd9\xff\x99\xe0\x70\xce\xf5\x67\xad\x23\x3d\x73\xb6\x98\x17\xa1\x8d\x74\x71\x44\x81\xc1\x8f\x52\x31\x35\xb7\x59\x9a\x08\xb5\xf4\x32\xe7\xd1\xb8\xc1\xf4\xe1\x02\xb1\x25\x8d\x1b\x77\x26\xc8\x33\xe5\xa9\xf7\xaa\xed\x54\x5c\xd8\xf1\xca\xe1\x73\x02\x00\xd9\x8c\xaf\xa7\x34\x4c\xc6\x1e\x95\x23\x68\x11\xf6\x0c\x23\x8c\x04\x9f\x56\x8c\x51\x3c\x26\xbd\x9b\x7b\x25\xb0\x22\xe3\xf9\xa5\x15\x19\x9b\x1f\x8f\xcb\x9b\x5f\xae\xaf\x6e\x3a\x97\x83\x6e\xe7\x53\xf1\xc4\x67\xbf\xdc\xf7\xef\xba\x9d\xcf\xc5\x9f\x06\xd7\x37\xfd\x81\x7b\x62\x29\xcb\xd7\x7c\x60\xf1\x9e\x2e\x3e\x78\x8e\xb4\xc8\x05\xd1\xf8\x42\x93\x44\x5f\x26\x9e\x7c\x1c\x92\x11\x17\x46\xce\x4f\x5d\xa2\x89\x55\x61\x1c\x6d\xad\x2d\x56\x5a\xc5\x39\x38\xfc\xaa\x86\x34\xce\x7c\x25\x08\x9e\xc2\x3d\x81\x19\xea\xb2\xf8\xf4\x66\x74\x7a\x6f\xfe\x38\xc5\xe2\x89\x88\xec\xd5\x17\x41\x95\x22\xac\x60\xd2\x61\x37\xe5\xcc\x48\xcc\x3f\x70\x86\xee\xb4\xdc\xd7\xcf\x67\x97\x9a\x66\xf6\x98\x28\x4c\x13\x69\x27\x5b\xa0\xeb\x39\xba\xc2\x62\x9c\xbb\x17\xff\xc4\x47\x23\x33\xd8\x37\x66\x1a\xfa\x0e\x2b\xac\xa2\x42\xf6\x6a\xd6\x70\xf7\x22\x7c\xcf\x3e\x9c\xe9\xc3\x8b\x5c\xf5\x30\xdb\x8e\xa7\x1e\x6e\x81\xe2\xc6\x62\x2f\xd8\x86\xf6\x97\x0a\x5e\x83\x85\x9b\x9f\x97\x5f\x32\xd5\x63\x2f\xb2\x53\xf1\xc1\x0a\x76\x32\x1d\x5a\xf4\xce\x8f\xb4\xb5\x59\xc1\x4b\xe4\x0b\xb5\x0e\x03\x7f\xde\x25\x16\xca\x87\x01\xaf\x31\x9e\xcd\x08\x16\xb2\x6a\xb7\x8b\x6a\x60\xcd\xde\x9b\x2f\xf9\xdf\xb0\x9b\xec\xbe\x73\x82\x38\x03\x87\x43\xa6\x44\x94\x38\xb2\x01\x0f\x98\xb1\x16\x38\xe0\x16\xda\xc7\xdf\xd8\x56\xed\x9f\xa9\xd4\x46\xa3\xf9\xe3\xf7\xb6\x87\xfc\x66\x0c\xf1\xb1\xd3\xbb\x2a\x29\x17\x83\xcb\xee\xc7\xce\xc3\xd5\x72\x37\x61\xe1\xbd\xf2\x16\xa3\x53\xa4\x7f\x2f\xa6\x03\xd0\x91\xb9\x33\x5c\x27\x7c\x63\xd2\x12\x06\x4e\x2b\xdb\xa5\xda\xb8\xe1\x63\x32\x4b\xf8\x7c\x4a\x18\xb8\x78\x0a\x37\xa1\xa6\xe7\x08\x53\x7b\xb5\x78\x93\x05\x2f\x8e\x75\xbb\xc1\x35\x76\xea\xda\xef\x93\x38\xbb\x79\x8b\xdd\xf7\x4b\xa2\xfb\xd6\x04\x05\xed\xff\xb9\x57\x58\x6d\x78\xc6\x3a\x17\xfd\xde\xcf\xdd\xa2\x7d\x78\xf1\x43\xef\xe7\x2a\xad\x66\xf0\xa9\x7b\xdd\xbd\xeb\xf4\x57\x28\x27\xa5\x21\xab\x94\x13\xa9\x27\x5c\x0e\x0a\x53\x99\x25\x3a\x45\xa6\x87\x3f\xa2\x4a\xa2\x67\x2a\xe9\x90\x26\x54\xcd\x91\x0d\xb0\x3e\xf4\x40\xb2\x3e\xe3\x84\xc6\x54\xcd\x9d\xfa\x62\xbe\x5b\xdc\x47\x2d\x49\xed\xf8\xc6\xed\xe0\x87\x5d\xc1\xcb\x67\x36\xc7\x2d\xfa\x1c\x81\x6d\xfb\x0c\x46\x9b\xf7\x1a\xd3\x8a\x34\x1b\x13\x61\xa6\x03\x41\x25\x7f\x2e\xde\xef\x7a\x56\xbe\xb2\x92\x53\x2d\x53\x5a\xc7\x84\x11\x2d\x22\xbd\x8f\x18\x45\x4a\x10\xf6\x5e\xeb\x5c\xb3\x84\x46\x54\x25\x73\x14\x81\x0f\x0b\xdc\x99\x53\xcc\xf0\xd8\x2a\x07\x60\xe6\x94\x58\xe2\xa7\x14\x1c\xf0\x37\x23\xeb\xda\xef\x53\xb2\xe1\x31\x7b\xb8\xbe\xec\x7e\xec\x5d\x17\x59\xe0\x87\xde\xa7\x82\x0a\xfb\xb9\x7b\xd9\x7b\x28\xdc\xe6\x5a\x93\x5d\xae\xd7\x97\x87\xad\x38\x8a\xd9\x43\xe7\xe8\xd2\xbc\x7a\xae\x89\xfb\xbb\x59\x9c\x66\x19\x69\x96\x97\x1b\xbf\x25\x3a\xdc\xb9\x4c\x43\xf7\x8f\x2e\x53\xa2\x32\x2e\xd1\xd4\x85\x64\xa3\x42\x05\x1f\x52\x75\x06\xc6\xc2\xb7\xaf\xcb\xb1\xf2\xf2\x92\xdd\x83\x90\x22\x7b\x96\x7b\x96\xfc\xd4\x0c\x70\x1a\xd4\x39\xb1\x2a\xa2\x75\xb9\xc0\xfe\x19\x22\xef\xd3\x54\x2a\x13\x21\x05\xe6\x44\x4f\xff\x90\x9a\xa0\x10\x41\x3d\x43\xf7\x84\x3c\x32\xe7\x3d\x18\x53\x35\x49\x87\x67\x11\x9f\x7e\x78\x4a\x87\x44\x30\xa2\x88\xfc\x80\x67\x74\x8a\xb5\x26\x4d\xc4\xfc\xc3\x30\xe1\xc3\x0f\x53\x2c\x15\x11\x1f\x66\x4f\x63\x48\xec\x71\x91\xae\x0f\xd9\xb0\x63\xfe\xef\x57\xdf\x7d\x7b\x7a\xf5\x8f\x6f\xdf\x2d\x7a\xc8\xea\xf6\xbf\xcb\x22\x3c\x93\x69\x62\x13\x01\x85\x4f\x1b\x77\xe4\x53\xb2\x6a\xbf\xaf\x8b\xdb\xb5\x9d\xfd\x7a\x71\xfb\x50\xf0\x58\x17\xff\xf3\x73\xf7\xf3\xcd\xdd\xaf\x05\x49\xd9\xbf\xb9\xeb\x7c\x2a\x08\xd4\xee\xed\x0f\xdd\xcf\xdd\xbb\xce\xd5\xc0\xfd\xb8\x8d\xef\xed\x47\xc6\x5f\x58\x91\x34\xd2\x49\xc0\x85\x2f\x9d\xa3\x8f\x5c\xa0\x1f\xb3\x9d\x3c\x1d\x62\x09\x57\x8c\xbb\xb3\xe4\x09\x9a\xf1\x18\x04\x2f\x22\xb3\x09\x99\x12\x81\x13\xeb\x33\x90\x8a\x0b\x3c\x36\x37\xbd\x8c\x04\x56\xd1\x04\xc9\x19\x8e\xc8\x09\x8a\x80\x1b\xc6\x27\xb0\x29\x60\x6a\xf1\x71\xd9\xcf\x77\x97\x32\x45\xa7\xc4\x99\xe0\xf6\x3f\xfb\x66\x33\x36\xd8\x9c\x9b\xfe\x0f\x45\x65\xef\xe3\xd5\xaf\xfd\xee\xe0\xfe\xf2\xc7\xa5\xf4\x34\xaf\x15\x66\x76\x0f\x79\x55\x17\x3c\x49\xa7\xcc\xff\xf7\xe6\x73\xeb\x5d\xf7\xbb\x9f\xca\xb3\xbb\xe9\xf4\x8b\x9c\x71\x57\xcc\xdb\x7b\xf7\xfd\xcd\xcd\x55\xb7\x10\xe9\x7e\x77\xd9\xe9\x77\xfb\xbd\xcf\x05\xfe\xb9\x7c\xb8\x83\x18\xd0\xd2\x65\xba\x19\x54\x2c\x54\x2f\xcb\x5f\xe6\xae\x45\x61\x23\x49\xd4\xb1\xe9\xff\xe6\x2c\x9f\x7a\x78\x39\x26\xcb\x0d\xbc\x3a\xa7\x99\x4b\x35\x32\x33\xad\x14\x87\xaa\xb8\x4d\xa8\x5e\x1c\x2f\xdd\xe8\x65\x52\xb9\x9f\x4d\x01\xe6\x75\x66\x8c\x6d\x9c\x24\xfc\xc5\x64\x28\x4f\xa9\xbe\x95\x25\x81\x44\x65\xfd\x88\xcc\x23\x84\x67\x15\x12\xaf\xb8\x2d\x24\x12\x44\x7d\xe6\x29\x53\x9b\xb3\x5c\xe7\xba\x20\x77\xba\xd7\x3f\x0f\x7e\xee\x14\x39\xb0\x77\xb5\x5c\xd4\xf8\x43\x54\x5c\xc5\x9d\xeb\x5f\xb3\x4b\x18\xf2\xd8\x4f\x32\x0b\xd5\xe8\xae\x51\x42\xb5\xda\x1b\x61\x6d\xbd\x26\xa0\xd1\x20\x42\xc1\xe5\x30\xd5\x8b\x83\xbc\xd9\x99\x89\x27\x19\xf9\x64\x26\x79\xee\xfe\x51\x1a\x4f\x02\x5d\xc0\x9b\xea\xca\x04\x60\x1c\x6b\x55\x33\x44\xd8\x33\x15\x9c\x81\xb2\xfd\x8c\x05\xd5\xda\xb8\x19\x59\xaf\xf5\x1c\xfe\xff\xf5\xc6\x04\xc7\x68\x49\x70\xdd\x73\xa1\x2e\xb3\xfc\xe4\xcd\xbc\x21\x55\x79\xba\x8b\x19\xba\xd5\x8e\x8e\xc5\x77\x2b\x36\x67\xcb\x3c\xe6\xe2\x82\x7f\x4f\x2e\x29\x4e\xb4\x00\xd8\x9d\xbe\xd8\xb9\xbe\xef\x15\xf5\xc7\xa2\x99\xe1\xc9\xe5\x8d\xf5\x45\x70\x54\x9a\x99\x3b\x63\xe2\xfe\xa7\x2b\x63\x5d\x68\x26\xb1\xe7\xd6\x33\x2c\x40\x01\x72\xbd\x55\x67\x58\xc8\xd2\x1b\x12\x01\x92\x59\x9e\x47\xa6\xef\x2c\xc8\xd2\x7a\xe6\x34\x7e\x64\xe4\xcb\x8c\x30\x09\xc9\x01\xe6\x3e\xcb\x63\xed\xf2\x0c\xf5\x46\x20\x12\xf4\xe3\x0c\xa5\xcc\x06\xc0\xf4\x85\x6b\x26\x79\xa2\x55\x59\x3b\x85\xcc\x42\x04\xc7\x0b\x23\x2e\x07\x2c\x9f\xfc\x23\xfb\x25\x0b\xa2\xc1\x4f\x23\xae\x05\x90\xde\x45\x3b\xde\x39\xc2\x4c\xd2\x13\xa4\x0d\x96\xf2\x9e\x42\x45\x84\x36\x28\x6d\x66\x9a\x96\x34\xf6\x9f\x87\xbf\x06\x16\xd2\x9f\xfd\xcb\xa0\xfa\x2e\x28\x5d\x05\x35\xaa\x71\x62\x22\x26\x83\xe6\x77\x42\xc4\x05\xb1\x71\x96\xb5\xaf\x81\x55\x82\xbd\x8f\xe5\xd3\x42\xec\xa1\xc7\xa4\xc2\x2c\x22\x17\x09\x96\x1b\x26\x21\x39\x1f\xc7\x49\x51\xe3\xb8\xbb\x7b\xb8\xed\xf7\xbe\x5f\x21\xe5\xcb\x2f\x2f\xa6\x01\x45\x49\xea\xc2\x73\x43\xc1\x71\x8c\xb4\xf8\x1c\x73\x13\x0a\xb4\x8a\xbf\x39\x41\x66\x4f\xa8\xf4\xf2\x44\xb1\x7c\x2a\x38\xa9\x6d\x95\x85\xf5\x73\xf8\xa1\x04\x6a\x09\x81\x22\x4d\x09\xe4\xb9\x3c\xdc\x56\x43\x64\xd1\x64\xd1\x59\xef\xd6\x2c\xc1\x6a\xc4\xc5\xd4\x48\xf9\xc2\xa2\xcd\xe0\xcb\x07\xa5\x4c\x11\x21\xd2\x99\x02\x93\x5d\xcf\xb5\xac\xa5\xea\x2d\xbb\xe2\xe3\xcf\x44\x4a\x3c\x26\xdb\x04\xa0\xab\x8c\x87\xfb\x9f\xfd\xff\x84\x00\x73\x13\xdd\xbf\x30\x43\x97\xd0\xef\xf8\xe9\x86\x7d\x34\x89\x3c\xb7\x3c\xa1\xd1\x86\x09\x77\x1f\x3b\xbd\xab\x41\xef\xb3\x36\xe2\x3b\xfd\xee\x55\x41\x95\x80\xdf\x3a\x1f\xfb\xdd\xbb\x41\xf7\xbf\xba\x17\x0f\xfd\xce\xf7\x57\xdd\xc1\xf5\xcd\x65\xf7\x7e\x70\x71\xf3\xf9\xf6\xaa\xbb\x22\x33\xa7\x76\xf0\x45\xef\x6a\xf9\xd1\xf3\x85\xbf\xc0\x0e\x6b\x59\xe6\xfb\xcb\xa0\x18\x0e\xd3\x04\x82\xe0\xdc\x04\xc3\x31\x62\x3c\x26\xf0\x67\xe9\xbc\x33\xae\xda\xe4\x0c\xf5\xd4\xfb\x24\x41\x38\x55\x7c\x8a\x21\x6a\x93\xcc\x1f\x19\x1e\x6a\xd1\x8a\x93\xc4\x4b\xef\x12\x29\x63\x5a\xc4\xea\xc1\xa4\xc9\x2f\x4e\x88\x16\xe7\x33\xaf\x86\xd1\xc6\x0d\x46\x94\x41\x02\xf1\x14\x8b\x27\x13\x66\xca\x3f\x99\x1f\x0a\x89\xb0\x7c\x64\x7a\x5e\xc4\x3a\x86\x9a\x50\xf8\xbc\xd1\x53\xb5\xd4\x99\xe2\x27\xa2\xa9\x32\x4d\xa3\x09\x9a\x09\x3e\x16\x44\x4a\xeb\x5b\x8e\x30\x33\x09\x08\xf6\x71\x7d\x0d\x3d\x32\xc6\x35\x29\x9c\x0b\x3b\x26\x33\xc2\x62\xc2\x22\x6a\xaa\x15\x21\x76\x9f\xb9\x36\xc7\x02\xcf\x26\x48\x72\x08\x7a\x03\xd9\xc1\x7f\x65\x5e\x72\x37\x99\x59\xb1\xf9\xd9\xf7\x40\x8b\x54\xcb\x89\x1b\xd0\x13\x0d\x95\xe1\x65\x77\x19\xba\xb0\x8b\xf1\x03\x4e\x67\x09\x81\x4f\x5a\x92\xc3\x66\x68\x5a\x17\xf6\x43\x6f\x53\xd5\x26\xe8\x0b\xdb\xcd\x19\x4b\x3b\xa3\xb3\x0a\xcf\xb6\x3d\x52\xe8\x07\xcc\xe2\x44\x8f\xe2\x62\x18\xc5\xb3\x08\x15\x36\x1d\xcd\x35\xee\x34\x6e\x73\x8b\x46\x38\x95\xdb\x5c\xa3\xa5\x12\x53\xe3\x15\x3c\xcd\x93\x42\x80\xbd\x6d\x7d\x29\x50\x77\xa6\x45\x24\x4e\xb8\xa5\x92\x79\x3c\xb5\x49\xcb\x30\x9b\x9a\x6b\x76\x26\x28\x8b\xe8\x0c\x27\x1b\xd9\x7e\xa5\x1a\x03\x9b\xba\xff\x27\x3a\xd2\xec\xf3\xcd\x42\xd8\x56\x11\x31\x85\x72\x72\x3b\xcd\x6c\x0b\xd7\xf0\x24\xd9\x62\x0d\x22\xf3\x6c\x12\x2c\x78\x6a\xe2\x71\x40\x17\x12\x57\x1c\xd5\xb3\xaa\xed\xd6\x27\x03\x17\x13\xa0\x37\xd8\x6c\x93\xf9\x53\x47\xbf\xd2\x28\xf6\xeb\x26\x19\x0f\x27\xb7\xd5\x63\x56\xed\x80\xf7\xe3\xbf\x96\xf1\xce\x67\x3c\xd3\x3c\x13\xa5\x52\x41\xa4\x38\x5b\xa3\x35\x92\x4a\xa9\xec\x5e\xec\x3c\x4b\x6a\x6f\xbe\x1b\x39\x09\x6d\x02\xd4\xe2\x47\x0a\x39\x04\x1e\x22\x80\xe5\xf1\x51\xaa\x75\x59\x84\x21\x0b\x01\xfd\x89\x9c\x8d\xcf\xd0\xcd\xcf\xdd\xbb\xbb\xde\x65\xf7\x04\x75\x6e\x6f\xbb\xd7\x97\x27\x88\xa8\xe8\x1b\x97\xb3\x68\x13\x96\x1e\x99\xe2\x56\x5b\x99\xa3\x09\x7f\x01\xd9\x48\xc4\x98\x14\xd6\xec\xb2\x9b\x20\x55\x79\x4c\xa5\xb2\xe9\xb3\x5a\xae\xe4\xd3\xd2\xfa\x7e\x25\x87\xa4\x6a\xb2\x0d\x6b\x60\x29\xd3\xa9\xb6\x65\x07\x14\x4f\x07\x82\x27\xdb\x08\x85\x4b\x58\x0a\x98\xcb\x19\x98\x02\xc5\x53\xa4\x87\xb5\xa9\x20\x59\xc8\x31\x53\xe9\xb4\x62\xa4\xe5\xb2\xbe\x37\xbd\x7b\xcb\x45\x1f\x6c\x3e\x1a\x75\x29\x10\x00\xb6\x50\x23\x2a\x72\xb7\xf1\xc0\x7a\xea\x07\x38\x8a\xb4\xc9\xbd\xe3\x45\xe5\x1f\xca\x42\x02\xf6\x43\x7b\x5b\xe6\x2a\x3e\x77\xd3\x9c\x69\x09\x06\xc9\xc0\xfa\xca\x95\x3c\xa2\xf9\xf8\x15\xdf\x1d\xce\x17\xbe\x0a\x2c\x7b\xf6\xc8\x1e\x64\xe6\x52\x31\x97\xb0\x24\xb0\x93\x12\xbd\x4c\x08\x1c\x8d\x39\x9a\xe0\x67\x52\xf8\xa4\xab\x21\xd1\x03\xcf\x79\x2a\xaa\x04\xdd\x23\xbb\x24\x33\x41\xb4\xa6\x5f\x0e\xa0\x64\x3c\x7d\x57\xe4\xc4\xc0\xd7\x81\xaf\x8f\x9e\xaf\x2f\x92\x54\x2a\x22\x3a\x52\xd2\x31\x38\x12\xb7\x52\xe0\xcc\x60\x83\x19\xe7\xc9\xa0\x81\x4f\xa4\x39\xc5\x0b\x91\xb0\x42\xc2\x87\x34\x48\x07\x3c\x05\xfd\xa8\x70\x6d\x72\x7d\xd7\x79\x95\xc3\x76\x7a\x4b\xc8\xe0\x42\x66\x1d\x07\x28\xb1\x95\x8a\x83\xab\x46\x59\x36\x12\xda\xbb\x9a\x73\x61\xf4\x9b\x2c\x5c\x96\x4f\xb1\x74\x98\x9c\x2a\x42\x99\x23\x5b\xfe\x12\xf0\xb3\x26\xb0\xd1\x3b\x7e\x4f\xb9\xc2\xf2\x9b\xb3\x47\xa6\x95\xa8\x27\x32\x37\xee\x56\xad\xa6\xfc\x59\xeb\xe2\xa7\x92\x30\x09\xe9\xde\x7f\x36\xe1\x39\xcd\xe2\xce\x5d\x6d\x4c\x53\x32\x9d\x25\x58\x41\xd2\x75\xf6\x15\x48\xd1\xb5\x83\x5a\x2d\x29\x4f\x80\x06\x3d\xdf\xac\xc5\xfe\x66\xa6\x3f\x26\x0a\x2a\xc7\x15\x55\x60\x33\xc5\xa9\x26\xcf\xe2\xd4\x57\xba\xae\x0c\x57\x08\x0e\x71\x92\x38\xdd\x4e\xf0\xcb\xc5\x31\x56\x4a\xc6\xcc\x5a\xb8\xb7\x39\xef\x1f\x9c\xdf\x28\x12\x9c\x95\xb2\x61\xb4\x31\x67\x76\x7a\x68\xc4\x81\x8b\x5f\x13\x76\xf6\x42\x9f\xe8\x8c\xc4\x14\x43\x06\xbc\xfe\xaf\x0f\x7a\x5d\xff\x7e\x71\x77\x73\x3d\xc8\x2b\x79\xfe\xf3\x91\x75\x12\xc9\xb3\x2a\x05\xc4\x38\xcb\xd2\xed\x67\x82\x38\x95\xd0\xae\x05\xbc\xae\xb9\x1b\xf1\x91\xd5\xcd\x20\xe6\x91\x3c\xc3\x2f\xf2\x0c\x4f\xf1\x1f\x9c\x41\x28\xbd\x03\xff\xbc\x48\x78\x1a\xff\x82\x55\x34\xf9\x00\xe7\x5a\x7d\x20\xcf\x84\x29\x13\xa6\xd2\xe4\x8a\xa1\x26\x59\x42\xb6\xfe\xbf\xeb\x39\xe7\x45\x45\x52\x5b\xb2\x11\x99\x29\xf4\xff\x0a\x32\xe4\x5c\x55\x5f\x52\x7c\x34\x92\x64\xad\x0b\x29\x37\xd2\xee\x6f\xd0\x3f\xfe\xe3\xdb\xbf\x6a\x16\xda\x84\xc6\xbd\xfb\x9b\x81\x7e\xff\xdf\x2f\xed\xfb\x72\x0d\x71\x67\x4a\x69\xa5\x0d\x35\x1b\x6a\x98\xc4\xf9\x94\xc1\xed\x27\x20\x78\x01\xe2\x0d\xd8\x21\xdf\xc7\x2a\xe9\x76\x59\x18\x7d\x3b\x93\x6d\x23\x62\x82\x89\xed\xad\x11\x9d\x22\xc6\xd1\xd4\xe4\x9a\x62\x86\xfe\xfe\xe3\xf7\xd5\x1b\x98\x0a\xba\xd1\x07\xa9\x45\xa1\xf0\x3e\x29\xe9\x1f\x44\x22\xcd\x35\x9a\x8b\xf9\x54\x7f\x5a\x10\x39\xe1\x49\x8c\x5e\x08\x98\x49\x36\x0f\x34\xb3\xca\x05\x79\x64\xfe\x10\x90\x72\x88\x70\xa2\xf8\x98\xc0\x5d\xed\x0c\x35\x45\x84\x56\x55\x4c\x95\x86\xe2\x82\x9c\x18\x60\xb6\xfb\xef\x5c\x6e\x35\x2c\x13\x7e\x72\x45\x2d\xd6\x25\x17\x0f\xab\x57\x3e\x2a\xbb\x5e\x51\xbd\x0f\xbf\xbc\xc9\xd6\x6d\x5b\x4d\x1a\x5b\x84\x62\x7d\x58\xe5\x9d\xa9\x9e\x0c\x8d\x38\x1b\x24\x94\x3d\x6d\xb4\x19\xae\x30\x1c\xe9\x11\x2c\xcd\xf4\x88\x99\x9f\xdb\x78\x40\xd6\x38\x1f\x1f\xd3\x24\x31\xa5\x2d\xfe\xf6\x80\xde\x65\xe8\x06\xca\xc0\xcc\xd4\x80\x92\xd8\xc6\xbd\xac\x25\x2c\x08\x83\x84\xb7\x47\x36\x9c\xdb\x98\xad\x3c\x41\x32\x8d\x26\xae\x32\x2f\xe2\x4c\x6a\x35\x9a\x0b\x14\xf1\xe9\x54\x5b\xbd\xb0\x65\x8a\xf3\x44\xda\x6c\x77\x76\xaa\x70\xa4\x1e\x59\xfe\xbd\x15\x27\xcf\x34\x65\xda\xae\x74\xaf\x79\x48\x27\x6f\xfe\xb4\x54\xe1\xa6\xb1\x0f\x45\x01\x4e\x30\x13\x89\xf2\x40\x2d\xf8\xe2\x59\x32\x1b\x56\x63\x19\xc8\x09\x17\x6a\x10\x57\xca\x9c\x95\x4c\x53\x16\x84\x8c\x9c\x26\x90\x34\xcc\x9f\xb5\xf2\x4f\x5e\x32\xe7\xeb\xb2\x29\x68\xae\x5e\x36\x83\x66\xc7\x68\xe9\xcc\xd6\x65\xc1\x1a\x5a\x19\x60\x92\xa8\x98\x13\xbe\x6a\x8e\xf7\xf0\xd6\x85\x7e\x69\x29\xf1\xca\xe7\xce\x29\x41\x3c\xce\x31\xf4\xcc\xbd\x6e\x2b\x42\x96\xd1\xd4\x42\x27\xec\xaf\x72\x74\xd9\x52\x1e\x8a\x9e\x5c\x3d\x17\x70\xd9\x4b\x02\xba\x26\x16\x43\xaa\x04\x16\x05\x00\x94\xcc\x1e\x94\x04\x0b\xc8\xcf\x7a\x64\x06\x0e\xcf\x58\x0a\x31\x8a\xa9\x84\x02\x11\xb8\x4b\xbd\x60\x18\x6a\x66\x04\x96\x8e\x76\x5e\xe7\x68\xf2\xcf\x21\xb1\x2c\x67\x0d\x27\xec\xf4\x87\x32\xd8\x2f\x6d\x9f\xf1\x28\xcd\x15\xb9\x08\x34\x5c\x0b\x15\x84\x28\x93\x74\x3c\x51\x88\x32\xeb\x77\xc4\xc9\x98\x0b\xaa\x26\x53\x79\x82\x86\xa9\xd4\x56\xa8\x49\x56\x33\xf9\x28\x44\x45\x8d\xa4\xd0\xb6\x45\xc4\x71\x69\xc0\x45\x13\x65\x03\xd6\x68\x76\x28\xbb\xa5\xbb\x62\x05\xe3\x74\x32\xf8\xc4\xf2\x18\x94\xc8\x0c\x75\x13\x99\x3c\x40\xee\x00\xab\x7e\x4f\x89\x54\x75\xe7\x00\xc0\x2e\x77\x16\xa5\x38\x44\x27\x2d\x64\x8a\x41\x05\x71\xb9\xdb\xa0\x79\x15\x01\x37\x0d\x28\x55\x16\x74\x9a\xce\x54\x65\xe2\xd6\x62\xa8\xe8\xce\x83\x32\x6a\x46\x6c\x28\xc6\x02\x6e\x06\x00\xba\x47\x76\x4f\x48\x3d\x3e\xdd\xc2\xde\xff\x06\x47\x09\x96\x60\x0b\x3d\x96\xb3\xfc\x36\x41\xec\xcb\xee\xfd\xc5\x5d\xef\xd6\x40\x4e\xdc\xdc\x7d\xee\xf4\x07\x15\x71\xed\x8a\xa7\x3e\x77\xee\x7e\xbc\x5c\xfd\xd8\x0f\xfd\x62\x55\x76\xc5\x23\x77\xf7\xcb\x8b\x39\x1a\x4c\xb1\xa2\x28\xac\xf2\x3b\xe7\x68\x36\x57\x13\xce\xb2\x14\x85\xb8\x20\x9b\x4e\x91\xa9\x08\x56\x90\x42\x24\xa4\xaa\x08\x1c\xf6\x21\x2f\x67\xb5\x86\x59\xdc\x2c\x83\x2e\xb7\x53\xd5\x68\x8d\x13\xf9\x29\xe1\x43\x88\x5b\x5b\xdd\xc7\x02\xd3\x2d\xc9\x40\xdf\x32\xdf\xe7\x92\xca\x59\x82\xe7\x0b\x5f\x58\x75\xe5\x5c\xe3\x29\x81\x8c\xe3\x1c\x16\xcf\x15\x8b\xe8\x9d\x81\x02\xa6\xec\x5e\xa7\x23\xa8\x64\x52\x14\x2b\x82\x86\x44\xbd\x40\xdd\x9c\xfb\x6b\xe6\x4b\x75\x09\x23\xf2\xec\x91\x81\x3b\xe7\x51\x13\x39\x4e\x21\xdb\xef\xf1\xdd\x09\x7a\x7c\x17\x93\x67\x92\xf0\x99\xde\x79\xfd\x87\xba\x4b\x66\xce\xf0\x94\x46\xd7\x3c\x26\x2e\x45\xe3\xce\x22\x39\x6e\xe5\x53\x84\xe4\x33\x12\x0f\xdc\x95\xd9\x5c\x07\xbe\xb0\xaf\xba\xe9\x5c\x24\x5c\x66\x80\x2f\x68\xb9\xeb\xa7\x3b\xc5\x34\xb9\xe6\x2a\xf3\x33\x6e\xb3\x06\x41\x22\x3a\x03\x3b\x63\x40\xf4\xb8\x87\x53\xa3\x0a\xe7\xd2\x09\x67\x98\x03\xc2\x71\x2c\x88\x94\x20\x98\xdd\xf4\xf2\x84\x26\xe6\x2d\xbd\xd0\xba\x73\x1d\x05\x29\x73\xe6\x9b\x2f\xfa\x63\x16\x9d\xb8\x55\xfc\xd4\x65\xcf\x7b\x0c\x30\x6f\xab\x96\x68\xfe\xfa\x91\xcc\xa1\xa0\xe4\x16\x53\xb1\x61\xa0\xb9\x2a\x83\x77\x2f\x21\xe7\x6e\xc5\x87\x5a\x14\x7c\xae\xa6\xc3\x76\x61\xe8\x2c\xf3\xf0\x50\x36\xb7\x93\x33\xd9\x87\x1b\x1a\xe1\x0f\x75\x26\x77\x6d\x42\x06\x2a\x9b\x91\x33\x12\xad\x61\x3f\x66\x13\xbc\xd7\xef\xad\xb4\xbb\x32\xe5\xd3\x65\x13\xe6\xbb\x60\x4b\xfd\xcb\xe8\x02\x64\xe5\x8c\x23\x2b\x8b\x37\x98\xb4\x13\xe3\xcb\xe6\xdd\xf5\xd9\x57\x6b\xb9\x6b\xa5\x67\x54\x10\xbe\x84\xd8\x69\x6e\x4d\x65\xe3\x7d\xf6\xe9\x13\x44\x21\x77\x14\xcc\xcb\x24\xc7\x41\x60\x31\xca\x83\x3a\x8f\x2c\xcf\xc0\x91\xe8\x85\x24\x90\xb4\xa7\x6f\x39\x08\x58\xd8\xe9\xda\x91\x48\x6c\xf2\x9f\x4f\x10\x4f\x95\x1e\xcc\x54\x18\x39\x97\xb4\x2d\x5f\xca\x83\x38\x26\x92\x68\x53\xf9\x33\xf4\x6f\xc3\xeb\x46\x33\xa0\x0c\x7d\x22\x0a\x46\x81\xa6\x11\xfe\x02\xc1\xea\x29\x27\x84\x56\xd3\x7e\x8b\x13\x65\x57\xb2\xc6\xce\xe7\x30\x30\xdf\x27\x7c\xb8\xdc\xe5\x01\x83\xa3\x87\xbb\x9e\xf3\xaf\xe6\xd9\x60\x1e\xc4\x74\x21\x3e\xda\xbd\xbd\xeb\x5e\x74\xfa\xdd\xcb\x33\xf4\x20\x89\x26\x4f\xb6\x5c\xa8\x16\xcf\x0c\x2c\x33\x73\x8b\x2b\xc3\xa4\x22\xb8\xce\xad\x43\x84\x28\xd4\x74\xaf\x10\x1c\x45\xd0\x99\xe5\x8c\x0d\x90\x2f\xd4\xba\x1d\x01\x26\xa9\xbc\x4e\x9b\x67\xb8\xea\x04\x42\xd6\xd7\xe0\x78\x72\xee\xcc\x7c\xa7\x8b\x79\x86\xab\xd8\xa7\x98\x9f\xb8\xef\xc5\xc0\xd1\x52\x13\x42\x05\x6a\xb4\x2c\xc3\x54\x83\xe6\x6b\xf2\x12\xf6\x3f\xe3\xd9\xf2\x62\x5a\xfc\x52\x60\x5a\xa3\xd8\x7b\x99\x08\xfb\x3e\x07\x4e\xac\x0d\x8c\x28\xdc\x7e\x81\x79\x78\xce\xc8\xd6\x4c\x6e\x9a\xfa\x15\xe9\x5c\x7e\xfe\xc2\x4a\x93\xb0\x59\xb9\x12\xc1\xd9\x81\xbf\x50\x86\x0a\x57\xe2\x09\x1a\xd1\x2f\x76\xd0\x3c\x5b\xdf\x3d\xea\xa5\x6f\xd4\x64\x87\x4e\xf0\xe2\x99\x5a\x43\x6d\xb8\x85\xf7\x97\x2a\x91\x5c\x6a\x95\x28\xd2\xea\x92\x20\x11\x17\xfa\xa6\x80\xcf\xe6\x31\x95\x55\x2a\x83\xc2\x42\x13\x65\x31\xc6\xb4\xec\xf4\xe7\x8d\x62\x62\xac\xc8\xa9\x56\xbd\x56\x94\x73\xdb\x8a\x1f\xa8\x0d\xc2\xca\x03\x37\xcb\x6f\x9e\x21\x19\x63\xe6\x12\xcd\x6b\xa6\xeb\xae\xbc\x2d\x44\x95\x36\x81\x30\x14\xbb\x81\x7e\x05\x85\x4c\x85\x79\xc8\x19\xd0\x73\xe9\x3c\x6c\x2e\x4f\x1b\xc8\xf6\x82\xb3\xd4\xa2\x9a\xc9\xa6\xb3\xb8\x4d\x93\x4d\xb0\x54\xc8\xce\xa9\xce\xb1\xe2\x99\x88\xfb\x75\x29\x17\x6c\xfb\xa6\xc6\x9b\x66\xa1\xa2\x15\x4b\x20\xce\x23\x1d\x0a\x8c\xc1\xbc\xd1\x36\x8d\x53\x84\x2f\x60\x87\xb2\xb3\x7d\x67\xb4\x2c\x77\x4b\xf8\xc2\x04\x4a\x0e\x16\x87\x3e\x43\x1d\xb6\x80\xfe\xe5\xb2\xcc\x0a\xf4\x32\x77\x12\x4e\x5e\xf0\x5c\xa2\x99\x30\x40\x39\xa6\x0e\xc1\x2d\x1e\x2c\xb0\xe2\x4b\x59\x62\x87\x72\x85\x20\x08\x3c\x4b\xab\x53\x00\x9d\xde\x3b\xd8\x43\x60\xb2\x94\x23\x9f\x29\xe4\xf9\x70\xb9\xaf\xa2\x81\xa8\x53\x64\x10\x4d\x30\x1b\x93\x81\x73\x19\x6f\x62\x2d\xe9\x71\x2e\x60\x98\x4b\x3b\x4a\xf5\xe5\x74\x6b\x0c\x26\xdb\xa4\xc7\x3c\x9a\xb9\x43\xf5\x21\x90\x0a\x8f\x09\x32\x33\x6a\xe4\x64\x2f\xe4\xbf\x59\xe8\x64\xb0\x13\xec\xa8\xdd\x62\x4d\x40\x9d\xf2\x0e\x89\x5c\x57\x78\x48\x92\xd7\xc9\x03\x81\x4f\xdb\x50\x03\xc4\x1e\x4d\x6d\x03\x41\x2f\x10\x9d\x28\x89\x0c\x1b\x8b\x10\x69\x55\xa5\xc3\xb2\x75\xc2\x91\xb3\x27\x6d\x9b\x85\xba\x86\x2e\x9b\x2c\xb5\xae\xcd\x8b\x7f\xed\x79\xed\x50\xaa\x1c\x6c\xfe\xf5\x57\xf6\x90\x6f\x36\x11\xaf\x2b\x4b\xcd\x3c\xb6\x6e\xcb\xb2\x72\x29\x1b\x43\x26\x34\xec\xc0\xd8\x1b\x21\xc6\x19\x41\x54\xe6\x0f\xab\x62\x71\x57\x06\x38\xa4\x55\x7c\xe3\x7c\xc9\x5a\xa9\x65\x1d\xb2\xf6\xed\x69\xc9\xa1\x20\x32\xdf\x80\xab\x56\x67\x44\x1b\xaa\x58\xcc\x01\xb0\xd4\xc8\xe1\xa2\x4e\xb7\x72\x9e\x3b\x57\xb8\xfb\x0e\x8f\xd6\xcb\x3b\x56\x1c\x81\x1a\x59\x9a\x1c\x32\xa8\xae\xf6\x21\xfb\x92\x05\xdd\x79\x64\x99\x67\x03\x18\x91\x4a\x34\xc5\x33\x88\x50\x32\xae\xf2\xb7\x0c\x88\x94\xca\xb6\xf0\xc4\x29\xe2\xd2\x34\x3a\x5b\x4d\x01\x2e\xc6\xdb\x24\x9e\x34\x6f\x66\xd1\xdc\xb1\xe4\x2e\xff\x7c\x57\x8b\x50\xa1\x0e\xe6\x78\x4c\x9f\x09\x73\x27\xea\xc4\x9d\x48\x4d\x12\xb7\xe4\x64\x7e\x8a\x21\x65\x9b\xc4\x7e\x14\x69\xb9\x3c\xdc\x3e\x18\xb3\x2b\x6f\x68\x73\x92\xf5\x2b\x53\x92\x0c\xe0\x5c\xa1\x53\x80\x4b\xb2\xf7\xcf\x88\xc5\x40\x36\x55\xf5\x58\xa2\x3f\x33\xae\xfe\xec\xa1\x44\x3b\xd7\x09\xbc\xea\x1c\x60\x27\x0b\x5d\x7d\x40\x64\x58\xb6\x45\xd8\x43\x2b\x5b\x49\xf9\x6d\xf3\x2c\xf2\x22\x82\xbd\xea\xc2\xdd\xc5\x8a\xc2\xba\xb6\x68\x21\xfb\x01\x95\x2f\xa5\xb2\xbb\xd5\x74\x5e\xcc\x4f\x7a\xc1\xcd\x2a\x57\xa5\x3b\x64\x7b\xd1\x28\xcd\x61\x01\x5d\x61\x1b\x6e\x9b\x36\xce\x42\x5b\x01\x28\x5d\xed\x15\xd9\xa4\x66\xb6\xce\x2a\x10\xc5\x34\x40\xdb\x52\xa4\x06\x31\xf9\xec\x91\x7d\xe4\xc2\x2a\x00\xd2\xf6\x6c\x18\xe2\xe8\xe9\x94\xb0\x18\xe1\x54\x4d\x0c\x72\xb1\x8d\x6a\xcc\x2d\x37\x68\x3d\x07\xd8\x26\x83\x25\xa1\x32\xc2\x22\x76\xdd\x43\x9e\xb9\x9b\xc5\x23\xf3\x06\x81\xae\x10\xd0\x0b\x0c\x9a\x34\xd7\x19\xba\x44\x6a\xeb\xae\x8e\x16\x55\x7d\x7a\x17\xba\xf4\x2e\x3f\x67\x85\xbe\xc3\xd0\xcf\x02\x92\xc5\xf8\x68\x91\x3a\x3d\xe7\xeb\x74\xd6\xa5\xe6\xe7\xc5\x18\xc8\x89\xb5\x67\x8c\x43\xcc\xae\x40\xeb\x59\xdf\x3a\x59\x5b\x40\x60\x1e\xa5\x02\x52\x9f\xab\xc6\xfc\x53\x34\xa1\x49\x1e\x39\xf9\xe6\x24\x9b\xa6\x1e\x32\x21\xcf\x24\x31\xf8\xff\x91\x80\x2a\x07\xe3\xb3\xfc\x16\xfd\x6f\xd3\xbb\x16\xfd\xf5\x91\x7d\x02\x31\x9c\x24\x73\x40\x27\xcd\x46\xc6\xaa\x34\xcc\x53\xe5\x04\x94\x2d\xab\x42\xc5\x89\x98\xbd\x9e\xe0\x67\xf2\xc8\xdc\x30\xff\x1b\x3d\xa1\xbf\xa0\xbf\xd6\x19\x97\xae\x58\x61\xcf\x5e\x96\x8f\x5e\x29\x80\x77\xcb\x59\x41\x69\xe5\x8d\x73\xc2\x14\x5c\xa0\x15\x28\x25\x19\xc8\x38\x65\xcf\x3c\x5a\xa8\x88\xf1\x4f\x2d\x16\x84\xa9\x01\xe3\x31\x19\x90\x8a\x80\xea\x12\x21\xa1\x95\x80\x6b\x1e\x93\x95\xe1\xd0\x4c\x98\xfe\x02\x8e\x23\x99\x0e\xb3\xed\x00\xb0\x84\xac\x32\x3e\xf3\x7d\x14\x39\xad\x7a\xe6\x19\x92\xef\x26\xf3\xde\x34\x94\x9b\xab\x8d\x38\x87\x12\xae\x0e\x27\x26\x58\x39\x6d\xb2\x7c\x1c\xcb\x61\x08\xfd\xb0\x5e\xb9\xbd\xac\x3c\x8c\x62\xe8\x23\x23\xe8\x98\x6a\xeb\xa1\x79\xb8\x18\x24\xe1\x26\xb1\x14\x03\xd8\xda\x28\x98\x92\x93\xc2\x81\xd6\x9c\x66\xfc\x97\x87\x40\x87\x3c\x2d\x9b\x0f\x96\x00\x54\xfa\xc9\x06\xd6\x52\x98\x6b\x39\x3c\x36\xd5\x94\x64\x42\x0d\x7e\x41\xe7\xe2\x0a\xe9\xd3\xc1\xa7\x06\xe4\x0b\x88\x96\xaa\x09\x17\xf4\x8f\x65\xbc\x8d\x85\xa2\x23\x1c\xa9\xc1\x4e\x7a\xe2\xd4\x33\x53\xc7\x7e\xa7\x57\xdf\x77\x6f\x01\xaf\x01\x3f\x13\x2f\x9d\x12\x92\x25\xed\x28\x32\x0b\xe4\x96\xe5\x2d\x17\x88\xf1\x97\x1c\xe4\xcb\xbd\x0f\xb8\xd6\x5e\x19\x0a\xd6\x26\xd7\x0c\xf2\xa1\x25\x05\xfe\x04\xc8\xad\xf7\xca\x94\x98\x02\x5c\xbb\x01\xcb\xd2\xec\x39\xc1\x2c\x4e\xdc\x15\x82\xb8\xc9\xe8\x99\xbf\xe0\xf9\x5a\x31\x75\x3f\x4b\x34\xaf\x39\x34\xdb\x5f\x34\x82\x40\x06\x18\x4d\x4d\x15\x4c\xcd\x2a\x43\x18\x0d\x53\x80\x09\xd6\x34\x19\xa5\x89\xe9\x2d\x12\x71\x11\x9f\x3d\x32\x9b\x1e\xee\x7d\x4d\xab\x80\xce\x6a\xc2\x2a\x1b\x90\x5a\x34\x55\xdb\xbd\xc4\xb8\xe5\x96\xea\xf5\x3f\xa5\x24\xdd\x51\x91\xe8\xab\xa6\xd5\xf7\xf1\x58\xe6\x79\xf2\x86\x36\xfa\xca\xcb\xe9\xfb\xbb\x5e\xa9\xf4\xca\xaa\x9d\xbb\x38\x43\x29\x33\x7e\x16\xd3\x92\x77\x2d\x37\xdd\x9d\xe9\xce\xb0\x03\x3f\xdd\x21\x92\x74\x16\x55\xcf\x0a\xa9\x6e\xd9\xef\x39\x2b\x32\x46\x87\x71\x7e\xb9\x36\x17\x25\xa5\x6e\x8f\x7e\xb0\x0d\xee\x8e\x45\x5b\x65\x69\xe2\x7e\xee\x15\xcb\x6e\x8b\x8a\x7a\x7f\xc5\xa1\x32\xe8\x45\x50\x00\x31\x9c\xe7\x0f\x67\xdd\xa7\xdd\x2d\xec\xcb\x18\xad\xfc\x19\x6b\x01\x92\x75\x1c\x09\xe7\xd5\x57\xe7\x1a\x7e\x1d\x3b\x50\xf1\xd3\x8b\xc9\x18\x75\x27\xc2\x88\xa4\xb6\x1e\x89\x45\x04\xa3\x95\x87\x21\x6b\x56\xf3\x3a\x5e\xe1\x4c\x63\x3c\xdc\xc9\xc8\xd8\x71\x10\xe1\x68\x52\xbb\xa8\x21\xe7\x09\xc1\xac\xce\x28\xa8\xfc\xb9\x7c\x44\x0c\xfe\x2e\x88\xee\x24\x01\x10\x6a\x47\x02\xdb\xb8\x34\xb7\x8a\x58\x0c\xcd\x03\x8c\x0c\x37\x09\x9f\x6e\xa2\x8a\x30\xe7\x50\xa3\x6c\x9c\x90\x32\xad\x6c\x97\x87\x13\xfb\x91\x24\x4a\x13\xaf\x73\xe9\x8c\x08\x3d\x6b\x4d\xe2\x67\xc2\xb4\x29\x66\xe7\xe1\x22\x54\x2f\xae\x66\x3f\xeb\x57\x76\x92\x7d\xda\x05\x49\xa1\x30\x36\x7e\x64\x70\x70\x79\xf1\xb0\x6a\x5e\x95\xda\x7a\xf3\xdd\x7d\x1b\x9f\x4e\x4f\x89\x58\xfb\x78\xde\x17\x7d\xff\x6b\x9f\x49\xf3\xed\x01\x24\x8e\x6c\x1d\x2f\xf5\x62\x6a\x39\x9a\x88\xd9\x58\x87\x18\x77\xa0\xc8\x00\xa4\xe2\x14\x73\x89\xbd\x4c\x9c\x3a\xc4\xb2\xbd\xde\x25\x79\x87\x16\x77\x1b\x34\x9c\xca\xd2\xfc\x83\x86\xd9\x04\xe0\xf4\x5d\x76\x6e\xaf\xac\x56\x5f\x8c\xc3\x67\x25\x68\x79\xee\xaa\xed\x41\xac\x04\x06\x00\x0d\x80\x3d\xf8\xc5\x38\x2e\xa8\x34\xca\xbd\xeb\xc4\x32\x9d\xa9\xb9\x6d\xdc\x07\xf7\x62\x41\xdf\x07\x50\xc2\xaa\x98\x7f\xf9\x8e\x8c\x0b\x51\xff\xaa\x8f\xc1\x87\xac\xb7\xa6\x72\x48\x47\x68\x1f\xe4\xa6\x04\x2a\x52\x97\xe2\x63\x7a\x20\x0f\x70\x52\xeb\x22\xdc\x81\xd0\x04\xe3\x28\x07\x12\xb1\xf8\xc4\x4a\xa4\x44\xcb\x2e\x9c\x24\xa5\x75\x61\xa8\xd8\x57\x59\x1f\xc4\x61\xde\xac\xb9\x79\x06\x42\x82\x87\x64\xad\x9c\x83\x2b\xf3\xc2\x52\x2e\x82\x47\x20\x5d\x7f\x36\x4b\xe6\xcd\xca\x04\x7c\xeb\xb7\x12\xc7\x6f\xd5\xc4\x7c\xf4\xbf\xa5\x77\x53\x11\x41\x6f\xb3\x29\x4a\x12\xa5\x82\xaa\xf9\xc0\xfa\x52\x9b\x0b\xad\x7b\xfb\xe6\x85\x7d\xb1\x89\xa3\xe2\x1c\xb9\xef\x39\xdf\x2d\xdc\x53\x82\x9a\x26\x4f\x76\x09\x4d\xb6\x1b\xa7\x6a\x52\x89\xef\xb5\x8c\xb0\x0e\x60\xac\xd9\x54\xf5\x27\x36\x9d\x9e\x6d\x1e\x33\xe0\x23\x07\xdd\xd5\x9c\xb0\xe5\xae\x3a\x6b\x38\xa1\x1d\x42\xf8\x4c\x50\x2e\x6c\xf3\x9a\x26\x99\x8a\x53\xfc\x65\x30\xc3\x02\x27\x09\x49\xa8\x9c\x6e\xee\x32\xff\xee\x6f\x4b\x67\x7b\x61\x9a\x2c\x99\xc9\x4e\xf1\x17\x3a\x4d\xa7\x88\xa5\xd3\xa1\xd5\x72\xb1\x7c\xf2\xf1\x59\x1d\x9a\x84\x81\x19\x73\x13\x2c\x60\x5a\x08\x0f\x71\xf7\x91\x79\xd8\xeb\xd6\x55\x81\xa3\x09\x25\xcf\x80\x0c\x2b\x18\x91\xf2\x0c\x5d\x73\x45\xce\xd1\x67\x3c\xeb\x83\xa2\x66\xba\x9e\x8e\x4d\xd0\x01\x4b\xa4\xb5\xd6\x94\x51\x75\xf2\xc8\x2c\x60\xbb\xa3\xca\x87\x88\x33\x03\xda\x1b\x01\x61\xb3\x21\xc0\x8b\xee\xd0\x6b\x95\xab\xbd\xa5\xb2\x86\xd8\x02\xbf\x0c\xbc\x94\xe4\x81\x29\xf9\x58\x83\x8f\xef\xf0\x8b\x49\xc2\xbf\xc4\x0a\x9b\x86\xc6\xcb\x34\x77\x9b\xe5\x66\x9b\x5c\x19\xac\x6a\x97\x0d\xc4\x2d\x60\x4a\xd6\x9e\xcf\xa4\x1c\xff\x89\x9e\x91\x33\xf4\x7d\xc2\x87\xf2\x24\x77\x55\x99\x1f\x25\x51\xf2\xc4\xc4\xfd\xe0\xbf\x4d\xb5\xe2\x37\x8e\xfa\xb9\xdc\x87\xce\x94\x23\xfa\xc5\xe0\xb4\xc8\xef\xce\x3f\x7c\x98\xce\x4f\x87\x69\xf4\x44\x94\xfe\x17\xe8\x14\x95\x14\x72\x20\x67\xb8\x0a\x32\x6d\x15\x75\x16\xe1\xd6\x1a\x71\xa4\xad\x95\x92\x04\xa0\xfd\xf5\x95\x9e\xf5\xfe\x75\xe8\x5c\x9c\x55\x37\x36\xb5\x4b\x16\x69\xdd\xf1\x2a\x60\x82\x1f\xc6\x5a\x31\xbd\x8d\x7d\x28\xf2\x51\x82\xc7\x25\x93\x65\x0d\x23\xe5\x66\x4a\x2d\x17\xe9\xb5\x43\x12\x8d\x3e\x65\xc5\xd4\xc1\xf7\x2e\xca\x0b\xd1\x5a\x1b\xc5\x3a\x7b\x64\x1d\x89\x5e\x88\x69\x59\x0c\x65\xb3\x10\xf4\x49\xa9\x9c\x64\x45\xb3\xe0\x86\x86\x41\x0d\x62\xb3\x01\xf6\xb0\x86\xa3\xb3\xac\x5c\x58\xcc\x5a\xa0\x38\x91\xe4\x44\x0f\x0c\x2e\x55\x97\x1d\x8a\x5e\x04\x9e\xcd\x88\x78\x64\x16\x7d\x17\x30\xe6\x39\xb7\x99\x3f\x75\x25\x02\xc1\xa2\x3c\xac\x45\xe9\xd1\x9e\x14\xab\x50\x57\x9d\x6f\x28\x5a\x5d\x46\xe1\xaa\x3a\x4c\x47\x3e\xad\x8b\x36\x4d\xdf\x7f\x7d\xb7\x71\xc3\x39\xaf\xb2\xce\x3b\xa5\xda\x0b\xe8\x88\x3e\x05\x03\x52\xe6\x8d\x5f\x9d\xaf\x2f\x33\xdf\x0b\x6a\x0e\x80\xb7\xc3\xcb\x31\x27\xd2\x73\xe2\xa3\xcc\x17\x97\xd0\x11\xd1\xda\xc7\x23\xd3\x6c\xec\x07\x1c\x0c\x06\xbc\x83\x84\xd7\x1f\x8d\x04\x97\xd2\x96\x53\x98\x71\x96\x17\xc5\x6d\xd1\x6e\xd2\x00\xd9\xf7\x6e\xae\x07\x8b\x8d\x27\xbd\xdf\x5c\x0b\x4a\xfb\x63\x25\x0e\x44\xed\x50\x2b\x1b\x4e\xe6\xb4\x58\xa3\xe5\xe4\x87\x8b\xab\x5e\xd6\x67\xad\xf4\xe9\xc5\x9e\x93\x3e\xf8\x7f\x7d\xd7\xc9\xc5\x15\x7b\xfd\x27\x4b\x43\x2c\xe9\x40\xb9\x7a\xb3\x8a\x49\xdc\xdb\x20\x3b\x96\xb6\x7e\xa5\x7c\x28\xf2\xcc\xaa\x5a\x83\x1d\x6d\x53\xcd\xb5\x12\x81\xc2\xb8\xef\xc4\x05\x50\xbc\xf4\x53\x52\xe1\xe9\xcc\xaf\xa3\x75\xd0\xb6\x76\x99\xe6\xa8\xd5\x5d\x82\x07\x85\xdc\x8f\xb0\x49\x12\x2a\x4f\x6e\x61\x2b\xd6\x8b\x78\xf5\x2d\x92\xff\x2e\x72\xd3\x0f\x57\x98\x9e\xcc\xf3\x64\x48\x69\x75\x37\xd7\x25\xbe\xc6\xef\x3f\x24\x59\xd7\x82\xda\x0d\xdd\xb6\xf2\x34\x43\x37\x13\x04\x4b\x1b\xfe\x86\x02\xcd\x52\xf1\xd6\x1a\xee\xe1\x6c\xce\xa6\xc4\xfb\x34\xeb\x13\xe2\x5d\x35\xb6\xf5\x5d\xe4\x0e\x22\x15\x82\x3c\x13\x01\xbc\x63\x53\xa9\x58\xf1\xa8\xe2\x44\x10\x1c\xcf\x3d\x8a\x64\x79\x1c\xe6\xcb\xe0\x1e\x93\x74\xaa\x0d\x78\x30\x4d\x18\x3f\xe5\x33\x67\xb3\x14\x9e\x82\x26\x2f\x74\xa4\x6f\x2c\x2f\x0b\x44\xbf\xc1\x4e\xc9\x17\x2a\x95\xd6\x2b\x2a\x52\x60\xdd\x20\xa0\xf1\x40\xeb\xb7\x09\xb1\x37\xdc\xe3\xbb\xce\xf7\x37\x77\xfd\xee\xe5\xe3\xbb\xbc\xe4\xc2\xd5\x14\x66\xa0\x65\xae\x07\x05\x67\x8f\x2c\xcb\x53\xce\x30\xba\x61\x2f\x11\x8e\xe3\x3c\x3f\xda\x1a\x91\x46\x67\x5b\x2a\x91\xbd\x53\xb1\x32\x43\x79\xc9\x30\x0f\x50\x58\xd6\xd6\x93\xb5\x24\x74\x56\x38\x39\xa6\x3c\x6e\x49\x1d\xd3\x8e\x2e\x1b\x1f\x5e\x58\x19\x5b\x9b\x28\x87\x7f\xc9\xc8\x8b\xb3\x95\xe0\x76\xfe\x80\xcd\x25\xbc\x9e\xb4\x73\x1b\xb2\xc1\xa6\x7e\xa4\x5f\x48\x7c\x57\xa3\x55\xed\xa4\x4c\xa9\x51\x82\x65\xe5\x2e\xa4\x8c\xae\x63\xf1\x67\x4b\x79\xd0\xef\x35\x17\x4b\x37\x39\x6a\x60\x8e\x00\x0c\xf0\xbf\x0a\x61\x14\x11\xa1\x30\x65\x68\x04\x07\x9b\x45\x73\x04\x28\x2c\x04\x62\xd8\x7f\x43\x53\xca\x00\x0e\x62\x19\x69\x1f\x8a\xeb\x58\x43\x69\xfd\xdc\xbb\x7e\xe8\x17\x54\xd5\x1f\x6e\x1e\x0a\xad\x36\x2f\x3b\xbf\x2e\xd5\x55\x4b\x23\x2c\x4b\x16\xf2\x96\x98\x97\x96\x5a\x20\xe4\x8c\x32\x95\x0b\x4d\xe6\x8a\x3c\xdc\x5d\x6d\xa5\xdf\x55\x07\xcb\x6a\x61\xec\x7d\xed\xaa\x1a\xe6\xa2\xc9\xab\x31\x89\x56\x01\xed\x36\xe7\x23\x93\x05\xa5\xe9\x60\xbd\x89\x16\x84\x0f\x4b\x34\xc3\xc2\xc6\xa1\x62\x93\x00\x55\x6c\x5e\x67\x2c\xaf\x65\xb0\x20\x9f\x88\xfa\x59\x5f\x7d\x9c\xed\x06\xe9\x0b\x54\x59\x88\x8f\x92\xc1\xb3\x19\x78\x8d\x93\x66\xa7\xb2\xa4\x7e\xc9\x29\xcb\xf0\x05\x64\xbf\xe0\x83\x69\x9c\x21\xe0\x9a\x8e\x1e\x0e\x28\xe2\xd2\x34\xb5\x49\xca\x99\xe6\x48\x83\xf8\xeb\x60\x82\xbd\xe1\xf8\xc8\xbc\xdc\x10\x34\xd1\x2b\x16\xd0\x63\xe5\xa4\x44\x9d\xdb\x5e\x05\xad\xaf\xca\x21\xa4\xb7\xd5\x71\x29\xc9\xa2\x59\xbb\x46\xbe\xf2\x6a\x4e\x5b\x01\x75\x65\x57\xba\x1d\xb6\x95\x09\xfa\xdf\x16\x33\x09\xda\x00\x28\x5d\x65\x32\x14\x6a\xc9\x57\x60\x47\xaf\x57\x5e\x99\x93\x61\x4d\x24\x2b\x7f\x42\xb6\xba\xc6\x47\x6f\x5a\x4c\xdd\x3e\xf1\xd1\x9c\xb8\xe9\xe9\x6c\x73\x0b\x76\x86\x70\x95\xaf\xa6\x09\xc4\xd5\xcf\x86\xa3\x33\x04\x14\xc0\x74\x71\x3d\x43\x5d\xca\xb5\x05\x24\xf0\x97\xeb\x73\xdb\x7a\xa8\x58\xf9\xfc\x9c\xfb\xdb\xc2\xa5\xe3\x19\xb6\x7e\x07\x30\xa2\x5c\x33\x8f\xaa\xde\x8f\x67\x8f\xcc\x4b\x58\x91\xc6\xec\xd1\x67\xc4\xf5\xcf\x81\xa6\xcc\x0c\xb0\xd7\xa1\xf6\x29\x53\x7e\x0a\x3b\x50\xc6\x3d\x50\x93\x62\x07\x9c\x85\xef\xd8\xd3\x29\x27\xd8\x55\x97\x3a\x0f\x8a\xcd\x03\xf4\xfd\x4b\x30\x9e\xd7\xf3\xc2\x7e\x18\xdc\xd1\xe0\xb4\xc0\x5e\x47\x45\x0f\x91\x20\xe6\x44\xb2\xf7\x2a\xab\xdf\xa5\xc9\xdc\xa5\x54\x97\xc2\x03\x5a\xab\xc3\xd4\x8e\xbc\xfc\x80\xef\x00\x72\x6b\x5d\xc3\xc1\x3b\x56\x2b\xdd\x54\x2e\xc6\x0b\x9c\xe0\xe7\x22\xc1\x47\xeb\xbc\xea\x5f\x66\x24\xda\x04\x17\xe8\x16\x0b\x3c\x25\x8a\x88\x65\xe9\x48\xc5\x7e\xe7\xa0\xe2\xb8\x1d\xb4\xdf\x35\xbb\x68\x9a\xc1\x94\xbb\x06\x65\xd6\xed\xd5\x2a\x9c\x9f\x6c\x15\x6b\x41\x9a\xe9\x65\xfc\x6c\x3d\xff\x6b\xae\xc2\x7e\x27\x5f\x86\xcd\xb6\xf2\x60\x9d\xb6\x5d\xd3\x61\xf0\x6d\xfa\x0b\x48\x31\x85\x74\xa1\x96\x00\xdb\xac\x9e\x65\x1d\xa2\xcd\x2a\x59\xba\x13\xd9\xed\x2a\x1c\x5c\x65\x72\xe9\x50\x15\x6a\x27\x80\x4b\xc0\xa4\x32\xe0\x2e\xd5\xa8\x34\xa0\xb4\x54\x65\x48\x7a\x61\x3f\x8b\x59\x98\x3b\x74\xad\x66\x55\xee\x7f\x56\x22\xd7\x0a\x19\xb7\x2b\xc4\x8e\xa0\xd1\xec\x5a\xa3\x59\xc5\xca\x85\xec\x5a\xcd\x9d\x44\x94\xc0\x83\x6c\x5f\x72\x8b\xfa\x50\x5c\x20\x94\x74\xd9\x2b\xd2\x36\x37\x86\xab\x9f\xb2\xec\xbf\x8a\x12\xdc\x31\xb5\xcf\xaa\x55\xb5\xaa\x67\x5e\x08\x0a\x22\x50\x89\xaf\x0d\xd8\xbc\x1a\x98\xad\x49\x83\x34\x5e\xfe\xde\xb5\x09\x60\x41\xcd\xf8\x9c\xa7\xe8\x85\xca\x09\x52\xfc\x91\x41\x9e\x60\x16\x0d\x50\x1c\x99\x07\x4f\xe0\x29\xc0\xb6\x90\xe9\x70\x4a\x15\xc2\xde\x0a\x0b\x2e\xc9\x13\x7b\x9e\xf5\x0b\xb0\xe2\x4a\xf8\x82\x2a\xdc\xa5\x15\x87\x66\x03\xff\x5a\x3e\xc8\xb6\x08\x05\x5e\x4e\xf3\x7e\x31\x0a\x3c\x8b\xc7\xb7\x30\x2b\xcf\x5c\x00\x29\x40\xd5\xde\x06\x8b\x04\x0b\x70\xbd\x54\xaa\xd2\xdd\x62\x1d\x3d\x2b\x00\x0a\xf2\x8d\x68\x84\x50\x90\x3f\xbe\x0b\x88\x82\xba\x4e\x7a\xcb\x4a\x56\xdd\x2b\x35\xfe\x6f\x57\x0a\xad\xb8\x4b\x9c\xf7\x35\xa5\xdb\x5a\x4d\xa9\x6d\x50\x75\x79\x41\xc0\xe6\xe9\xe5\x75\xd9\xcb\x70\xc6\x23\xce\x62\xba\x46\xbe\x30\x74\x4b\x1b\xa6\xa3\x0e\x9b\xaf\x46\x3e\x9a\xfa\x89\xfa\xd6\x5f\xe2\x69\x22\xd5\x98\x9b\x2b\x4d\xd6\x7c\x7c\x9f\xd3\xbd\x92\xd0\x22\x18\x11\x29\xdf\x4e\x8c\x2b\xa8\xfb\x89\x54\x32\xaf\xa8\x45\x7d\x64\xd5\x5a\xd2\x72\xb9\xbd\x6d\x19\xc9\x4e\x61\xf7\x3c\x19\xe1\x56\x61\xbd\x6e\xbf\x64\x89\x78\xc6\xa0\x27\x16\x64\xa3\xa4\x06\xe7\x61\xc8\xba\x04\x2a\xad\x1c\x6d\x52\x6b\x5e\x21\x39\xaa\xa7\xbe\x50\xe4\xb1\xf2\xec\x5a\xc5\x60\x87\xe6\xe7\xc2\x0d\xd2\xb8\x26\x26\xd3\xe3\xed\x8d\x61\x93\xba\xe3\xcc\xd7\x50\x0a\x27\x6f\xd2\xac\x19\xe0\x6c\x77\x06\xc2\x5b\x46\xa6\xd0\x83\x9f\x40\x08\xda\xce\x1d\x9b\x74\x9c\x0c\x1a\xbe\xb4\x27\x85\x15\x9b\x94\xca\xbd\xac\x7a\xdd\x0e\xdb\x5e\x4c\x54\xd8\x9c\x64\xea\x7b\x37\xa0\xb5\xb6\x4d\xe5\x2c\xdd\x16\x99\x02\x9a\xb2\x98\x08\x46\xb0\x9a\x1c\xae\x12\xe4\x62\x5b\x17\xba\x37\xbf\xfd\x56\x85\xd8\x99\xe2\x62\x71\xc8\x36\xd3\x4d\xd5\x64\xcd\x22\x8b\x35\x2a\x16\xf2\x66\xdb\x0b\xe6\x6d\x85\x6b\xd3\xc3\x1f\x5a\x87\x4b\xb7\x2a\x16\xa9\x36\x39\xf7\x53\x36\x53\xe1\x9b\x5a\x28\x98\xd1\xa7\xdd\x6f\x51\xbe\x82\x24\x6f\xa2\x3e\x65\xff\x25\x13\xcb\x9a\xa1\xa7\x5e\x15\x05\x74\xa4\x57\x98\x32\x2b\xbd\x96\x15\x4e\x68\xbd\x77\x8a\xab\x6a\x25\x5a\x5f\x85\xf3\xe6\x8b\x70\x42\x49\x46\x28\xc9\xa8\xd8\xa3\x50\x92\x81\x50\xdb\x4a\x32\x56\x99\xa0\xcb\x9c\xb4\x59\xdc\x10\x9a\xd6\x16\x7a\x2b\x99\xfd\x5d\x61\x47\x6e\x5e\x76\xe0\xfc\x9c\x7e\xce\x96\xfd\x8b\xfd\x43\x65\xda\xd6\xc2\x6b\xe5\xd5\xfa\x3e\x57\x36\x2f\x87\x2e\xb0\x88\x13\x0b\x41\x68\x93\xaa\x8b\x3e\xb2\x65\xee\xdc\x47\xf6\x03\x7f\x21\xcf\x44\x9c\x20\xac\xd0\x94\x03\xae\x55\x9e\xc3\x03\x07\xa1\x80\xa5\x6f\x72\x35\x30\xba\xc6\x53\x12\x9b\xc6\xa1\x5e\xea\xa5\x75\x2a\xdb\x70\x70\x15\xd2\x2e\x80\xc6\x9a\x6d\x70\xb9\x1d\x8f\xcc\xa4\x43\x9a\x14\x3c\xd0\x15\xa8\x5b\x18\x30\xcc\x9f\xb3\x60\xf5\x9f\xcf\x50\x5f\xdf\x4f\x54\x16\xe7\xeb\x01\xef\xd5\xcd\xed\x91\x8d\x05\x4f\x67\x99\x9f\x8f\x0f\x4d\x07\x69\x93\xa1\xb5\x18\xac\x86\xc9\xb8\x48\x75\x84\x63\x6d\x8b\x2f\x67\x9c\x57\xc9\x94\xdd\x08\x66\xc9\x67\x20\x7d\x0c\xb3\xf4\x3f\x9b\x8e\x6f\x62\xcc\x1e\xb8\xcc\xb2\x0e\x00\x7b\x0a\x80\x5f\x12\x09\x5e\xa1\x2c\x32\x50\xa8\x75\x2f\xe2\x29\x54\xce\x73\x99\xdf\x36\x8b\xad\xb8\xf8\x43\x35\x54\x43\xfe\x71\x9b\x97\x66\x0a\x69\xed\x3d\xb1\x37\x8f\x6e\xe3\x0c\xdf\x3a\x79\x71\x9b\x8a\x19\x07\x4d\x2c\x99\x3b\x68\x09\x0b\xf2\x37\xe3\xb3\xd4\xe4\xde\x51\x3f\x15\xab\x92\xb3\xa9\x54\x9f\xb1\x8a\x26\x5a\x72\xe7\xa8\x6c\x3b\xca\x49\xcc\xa5\xf2\x7e\xbd\xbc\x15\x2b\xb8\xf0\xbf\x5e\x13\xf6\x58\xc6\x3d\x5e\x8e\x61\x96\xc8\x99\x69\x12\x53\xfd\x3d\x13\x1a\xb4\x7d\xe1\x3d\xbf\xa8\x7b\xc5\xfe\xa2\x17\xba\x8a\x8b\x56\xcd\xbf\x19\x6f\x15\x5b\xbd\xed\x3c\xdb\x71\x0b\x98\x9b\x4b\x0b\x2a\x96\x3f\x68\x1b\x1d\xd7\xa4\x28\x08\xba\x59\xa5\x92\x6d\xcf\xf0\xac\xd5\x91\xcc\xe3\x3a\xc5\x33\x6d\x44\x28\xae\x6f\x49\x31\x36\x7a\xac\xc9\xe5\x45\x18\xa5\x82\xba\xb3\x5f\xaa\x5b\xaf\xe7\x0e\xf0\x50\x7e\xf0\x5b\x79\x45\xd8\xeb\x72\x68\x92\x12\x70\xa4\x52\x9c\x25\x4f\x02\x4f\x24\x94\x3d\xe9\x8f\x99\x1a\x7d\x17\xfc\x17\x4e\xbd\xab\xd8\xd3\x95\x8c\xbd\xc5\x2e\xe3\x2a\x0c\xc6\x46\x27\x8d\xb2\xb1\x07\xe0\x58\xed\x25\x6e\xd2\x74\xa3\xf2\xcd\x66\x8d\x43\x2a\x5f\xad\x6b\x73\xdc\xe4\xdd\x25\x00\x53\x8d\x52\xd6\xdb\xd8\x31\xc1\xab\x04\xb0\xa9\xc2\x56\x77\xf3\x81\x3d\xed\x87\x00\xf6\x98\x42\x2a\x03\x76\xba\xdc\x9f\xfc\xb6\x09\x7a\x6a\xdf\xfc\x67\xfe\x23\xd8\xef\xb6\x39\x4b\xc5\x83\x8f\x8c\x0b\xfb\xe8\x49\xf6\x9c\x7e\x2c\xc7\x27\xd6\x5a\xe2\xe2\x9b\x39\xfa\xa8\x28\xe2\x14\x02\x5a\x8b\xc5\x99\x33\xf0\xd4\x59\x5b\x0b\x3d\xf9\xa7\x74\x48\x04\x23\x7a\x4d\x0e\xd7\x21\x93\xc1\x53\xcc\xf0\x18\xc0\xb0\x4f\x20\xe9\x10\xb4\xec\xdc\x82\x32\x27\xd1\xf4\x07\x05\x21\xab\x65\xbc\x2d\x65\xce\xbb\x7e\xc3\x37\x8d\x06\x6e\xb1\x78\xf3\xcc\x95\xea\x43\x7b\x67\xbf\xbf\x99\xa1\xd1\xef\xdc\xff\x38\xb8\xeb\xde\xdf\x3c\xdc\x5d\x14\xac\x8d\x8b\xab\x87\xfb\x7e\xf7\xae\xf2\xb7\xbc\x0c\xf8\xa7\x87\xee\x43\xcd\x4f\x6e\x80\xab\xce\xf7\xdd\x42\x0b\xfd\x9f\x1e\x3a\x57\xbd\xfe\xaf\x83\x9b\x8f\x83\xfb\xee\xdd\xcf\xbd\x8b\xee\xe0\xfe\xb6\x7b\xd1\xfb\xd8\xbb\xe8\xe8\x37\xfd\x67\x6f\xaf\x1e\x3e\xf5\xae\x07\x2e\xa3\xdb\xff\xe9\x97\x9b\xbb\x1f\x3f\x5e\xdd\xfc\x32\xf0\x3e\x79\x73\xfd\xb1\xf7\xa9\x6a\x15\x9d\xfb\xfb\xde\xa7\xeb\xcf\xdd\xeb\xe5\xad\xfa\xab\xa9\x51\xdb\x37\xdb\xbb\x7f\x3d\x5f\x97\xa7\xdd\x0d\xe7\xf6\x4c\xd0\x3f\x20\xe4\x72\x6b\x58\xf4\xf4\xc4\xfd\xcb\x34\xd6\x3f\xd5\x92\xdb\x85\xf3\x72\xa1\xf7\xc8\xb2\x98\x70\xa6\x0b\x28\x3c\x96\xae\xaa\xbb\x30\xdb\x73\xd4\x81\x43\x06\x76\x4e\xe1\xa3\x50\x34\x92\xcd\xd4\x65\x11\x00\x1f\x26\x74\x4a\x21\xa1\x00\x9d\xa2\xf2\x86\x17\x07\xb4\x6b\x82\x29\xd8\x70\x63\xbc\xec\x34\xc8\x72\xc1\x38\x70\xca\x39\x72\x17\x0b\x31\x5e\x10\x03\xeb\x6b\x1a\xd3\x97\xab\x5b\x00\xd9\x16\xe5\x28\x2e\xe5\x11\x0b\x0c\x56\x1c\x79\x42\xd0\x8f\xff\xc8\x27\x05\x81\x17\xeb\x30\x48\x17\x3a\x50\xda\x1f\x44\x6a\xa8\xba\x8a\x3d\x0b\x5f\x72\xc7\xdc\x7a\xc4\xe1\xdc\xda\xbe\xfd\x10\x25\x4b\x99\x87\xe4\x56\x08\x99\xe9\xe3\x6d\x56\x54\xe2\xf1\x73\x74\x0f\x28\x32\x32\xf7\x38\xe8\x5d\x9c\x25\xe9\x98\x32\x44\xa7\xb3\x04\x64\x8c\x71\x43\x0c\xc9\x04\x3f\x53\xee\x1a\xae\x98\xbe\x34\x40\x47\xab\x11\xa2\x53\x54\x7b\x50\xce\x51\x27\x8e\x65\x51\xc0\x15\x38\xc7\x49\xd1\xd3\xe2\xb4\x7d\xf0\x35\x2d\x58\xad\xd8\x2c\xf1\x51\x7e\xe4\x80\x62\xbb\xc7\xc9\x59\x14\x87\x45\x95\x61\x0b\xad\x45\x53\x70\xe0\x58\x79\xb0\x91\x0e\xd3\xc7\xf2\xc9\x89\xe6\x55\x7a\x8c\x43\x2c\xda\xee\x8b\x16\xba\xa8\xe9\x47\x33\xca\x0e\xe0\xa0\x6d\xf6\xcd\x5a\xc0\xed\x15\x9f\x74\x2b\x4e\x4a\xad\xee\x1a\x7f\xaf\xd0\x2a\xaf\xf2\x63\x3b\x0d\x52\x55\x2b\x91\x70\x24\x07\x19\xff\xaf\xb1\x8e\x5b\x78\xf5\x26\x7b\x73\xa9\xa6\x39\xf0\xe8\xb6\x6e\xe8\x6a\xa1\xfe\xd9\x86\xaf\x96\xf2\xe1\x8e\x90\xb3\x9a\x6b\x91\xd0\x2a\x84\x46\x10\xa5\xc4\x94\xd9\x06\x52\x24\x0b\xa3\xb9\x86\xed\xfa\x1c\x67\x2d\x15\xf1\x90\x3f\x17\x6c\xe2\x29\x91\x12\xd7\x60\xc1\x78\x9e\xbc\x6d\x04\x43\x76\x42\xed\x8b\x0d\xf9\xc9\x9d\xc9\xbe\x7e\x6b\x99\x8e\x7e\xe7\x1b\xf4\x6e\xa1\x5a\x87\x8d\x5d\x12\x33\xba\x31\xa5\x8c\x5a\xbe\x9c\xe4\x39\x40\x5c\x78\xa9\x51\x75\x51\xab\x86\xde\xc0\x32\xc1\x2a\xfb\x82\xf9\x91\xc7\xf5\x53\x87\xbc\xd1\x37\x06\x1b\xb7\xe1\x20\x5c\xa4\xcf\x1a\x5c\x57\x08\xd3\xfa\x1d\xdb\x23\x3e\x9d\x1a\xbd\xa0\xe0\x02\x3e\x41\xd8\x54\x90\xe6\xda\x94\x4c\xa3\x89\x09\x8e\xe9\x2b\xe3\xe4\x91\xbd\x78\x1b\x52\xc8\xb1\xee\xf8\x23\x01\x50\xeb\x17\x7d\xdc\xe8\x73\x21\x73\x1d\x54\x46\x0a\x69\xd4\x1e\x23\x98\x38\x66\xde\xf0\x6c\x05\x83\x7b\xfb\xb5\x05\xab\x6f\xd0\x5b\xb3\x44\xdf\xba\x0e\x9b\xd9\xda\xbc\xc6\x96\x5b\x18\xf8\x4d\xa7\xe0\xf5\xd6\xac\x9a\xc1\x0e\x5a\x6b\x1e\x14\x39\x3d\xab\x84\x35\x85\xd3\xd3\xa1\x85\xff\xd0\xcb\x75\xd4\xfe\x8b\x5b\xd1\x5f\x8c\x21\x9c\xd6\xe0\xc5\x78\xa3\x65\xe0\xe9\xe8\x54\xeb\xac\x0e\xc7\xc0\xe6\x8f\x48\x74\x6a\x00\x19\xdf\x43\x12\x6b\xe7\xb6\xf7\xfe\x04\xbd\xf7\x0b\xf9\xde\x1f\x8d\xeb\x22\x3f\xfe\x96\x6a\xb6\xb9\x27\xd8\x72\x85\x5a\x92\xe2\xa1\x07\x4e\x29\xc9\x01\xcb\x31\x56\x0c\xa0\x3a\x29\xa0\xdf\x2c\xbc\x03\x11\x7d\x68\x17\x69\x82\xde\x59\x26\xbb\x8d\x9b\x19\x0d\x9b\xca\x8a\x9d\x8b\x1f\xd9\x70\x5e\x8e\x8c\x9d\x64\xa1\xb1\xc6\x32\x62\xeb\x16\x88\x7a\xbc\xc5\xba\xf3\x1d\x67\x58\x2f\xbf\x8d\x56\x54\xb2\x77\xb2\x3e\x3d\xb9\x0c\xad\x4b\xed\x08\xa5\x09\x55\xab\x2a\xb8\xf9\x1c\x31\x2b\x37\x65\x95\xf6\x75\x6c\xec\xd6\x20\x9f\xbf\x53\x45\x11\x5b\xca\x51\xa3\xda\x07\x2e\xdb\x2f\x97\xed\xa2\x94\xa5\x38\xb9\xf5\xaf\xef\x0b\xa3\x45\x7a\xc3\x38\x77\xaf\x36\x65\x32\x01\x5f\xe8\x93\xb9\xba\xbd\xf5\x9a\x81\x72\x8f\x26\xab\x23\xe5\xf7\x26\xdb\xc2\xc4\xaa\x17\xe7\x5a\x9e\x6a\x47\xd9\xee\x52\x9c\x9a\xb2\x55\x45\xa7\xe4\xc4\xb4\x33\xcb\x33\x44\xec\x79\x05\x76\x33\x89\x5d\x13\x42\x85\xfb\x88\x05\x8f\x5c\x0b\xe7\x60\x4d\x5b\xa0\x8e\x47\xb6\x48\xcf\xb9\xee\x7c\xee\x5e\x0e\xba\xd7\xfd\x5e\xff\xd7\x0a\x60\xd0\xe2\xcf\x0e\x1b\xd4\x7b\xe0\xfe\xd7\xfb\x7e\xf7\xf3\xe0\x53\xf7\xba\x7b\xd7\xe9\xaf\xc0\x0d\x5d\xf6\xb1\x3a\x4c\xca\x54\x56\x19\x8f\xeb\xe0\x52\x3a\x27\x73\xc5\xd7\x17\xd1\x43\xbd\x8f\x50\x52\x83\x20\x6a\x30\x1d\x58\x4c\x04\x8a\xc9\x33\x49\xf8\x2c\x77\xea\x56\x12\xcc\x83\x16\xad\x18\x7f\x19\xbc\x28\x8c\x59\xa6\xf1\x39\x32\xbd\x11\xbd\xf6\xd0\xd9\x80\xa0\xf2\x61\x41\xd8\x7b\x85\xc8\x97\x59\x42\x23\xaa\xbc\x9a\x4f\x2e\x6c\x70\xc7\xc4\x5c\x21\xa5\x77\x05\x73\xed\x2c\x85\x67\xe7\x1e\x07\x3f\xfd\x60\xd1\xd7\x90\x9d\xa8\x0c\xea\x6e\x65\x67\xa8\x1d\xb8\x15\x6a\x22\xed\x0b\x48\x7c\x1b\xcc\x6e\x1f\xce\x89\xc5\xc2\x26\x5b\xb7\x59\x83\xd2\x57\x3d\xc9\xd5\xb7\xe1\xb2\xe4\xa2\xc2\xb9\x5e\x9e\x5d\xd4\x8c\x53\x5f\x39\x47\xa8\xd0\x88\x76\x07\x90\x2a\x36\xe1\x7f\xcd\x2c\x8f\x85\x46\x40\xcc\x24\xea\x62\x24\xc8\x94\x2b\x6d\x80\x99\x34\x8a\x13\xad\x54\x51\x9c\xd0\x3f\x00\x7c\x4c\x90\x33\x2f\xed\xc4\x41\xb6\xe5\xc1\x0b\x0b\x0c\x72\xf6\xc8\x2e\xbb\xb7\x77\xdd\x0b\x2d\x90\xce\xd0\x83\x04\x5c\xb1\xc2\xd2\x2f\x2d\x7b\x1b\x75\xcc\x4f\xff\xa0\x4c\x2a\x82\xeb\x32\xe8\x88\x10\x5c\x34\x97\x0f\xd9\xf7\xba\xf0\x5e\x35\x7b\xc3\x6f\x05\xcf\x98\x73\x3f\x5c\xd7\x76\x11\xf7\x0a\x2d\x76\x5e\xc8\x76\x87\x5f\x0a\x14\xf1\x71\x55\x40\x13\x29\x52\x7d\x8f\xd4\x06\x64\xd6\xe6\xeb\x2b\x7c\xf3\x16\xde\x5d\xb6\xce\x3e\xe4\x25\x4a\x95\xc3\xbc\x1a\x24\xd8\xac\x9d\x51\x69\x9d\xb5\xaa\xa2\x78\x0d\x0c\x96\x12\xeb\x0f\xc9\x18\x33\x24\x52\xc6\x4a\xb8\xbf\xbe\x9f\x6f\x31\xd3\x68\xdd\xa3\xaa\x69\x86\xa7\x3c\x65\xa6\x1f\xaf\x9e\x55\xc5\x64\xe4\x8c\x30\xb5\x62\x32\xaf\x85\xb0\x53\x9a\x6a\x7b\x41\x76\x2a\x26\x5a\x87\xb3\x53\x15\xcd\x82\x56\xe5\xeb\x5d\xcb\x2e\x93\xb1\x10\xd2\xd2\x87\x2a\xbb\x9f\xab\xad\x6c\x2c\x9f\xb6\xfe\x5c\x1f\xcb\xa7\xd5\x9f\x8a\x49\xf4\xb4\xee\x65\x53\x2e\x67\x4d\x6c\xa7\xf7\x05\x67\xdf\x5c\xff\x6a\x7b\xee\x40\x83\xff\xe8\x09\xfd\xd0\xff\x7c\x85\x46\x54\xeb\xbd\xfa\x5a\xb9\xc6\x5a\xc7\x7e\x10\x89\xf3\x4a\x5b\xcf\x6e\x2a\x92\xec\xee\x85\x8d\x77\xaa\x94\xa7\x25\xe8\x1b\x0d\x8f\x89\x73\x35\x0b\x0b\xa3\x58\xea\xb9\x23\x30\x8b\xf9\xd4\xac\xe3\x83\x4c\x47\x23\xfa\xe5\x4c\x61\xf1\x4d\x0d\x3d\x4c\x4e\xc7\xe0\x9f\x7c\x38\xd0\x33\xda\xf2\x22\xae\x1a\x0e\xd9\x06\xe4\x19\xd9\xec\xca\x2e\xcd\xb3\xff\x87\x0f\x01\x22\x00\x50\x0e\x5c\x6c\xd0\xe6\x49\xd8\x47\x1c\x27\xe5\x1d\xb9\x0b\xe8\x35\x11\x17\x82\x58\x64\x01\xd3\x34\x76\x86\x85\xa2\xe0\xad\x75\xe8\x37\x85\xb6\x07\xf9\x16\xf9\x2d\xf2\x27\x38\x87\x18\x1f\x12\x02\xe1\xa5\x19\x4d\xd6\x33\x7a\x2f\x0a\x91\xd1\xd2\x09\xb4\xe9\xba\x16\x10\x15\x1c\x32\x2b\x55\xac\xee\x33\x61\x6a\x27\xf6\x09\x0c\x51\x81\x75\xd0\x2c\xc6\x61\x7a\xb7\xf6\x2e\xf3\xcb\xcd\xe5\x41\xfb\x39\x55\x4a\x60\xb8\xe7\x6d\x75\x99\x0d\xe8\xd7\xa5\x19\x3c\x37\x8e\x5c\xc3\xa3\x8b\x74\x59\x51\x4f\x60\xa9\x9d\xb7\xc6\xcf\x73\x81\x5d\xcf\x86\x0d\x11\x9a\x24\x31\x5e\x0c\x0f\x19\xc4\x1a\xa7\xe5\x3d\x37\xdf\xd4\xbc\x55\xfa\xe4\xca\x2d\xdf\x00\x8e\xa8\x30\xcc\x27\x02\x75\xb0\xbb\xc8\xde\x5f\x07\xf0\x00\x26\xf2\x20\x12\xc8\x3b\x5f\xea\xc5\x32\xfd\xe3\xb5\xe4\xcb\x34\x3b\xdc\x40\x47\x37\x93\xd1\x4a\x23\x99\x09\x12\xe9\xab\xec\x1c\xdd\x26\x44\x6b\x5e\xa9\xd6\xbe\xd2\x24\x71\xd0\x6d\xcb\xb5\xc3\xb5\xe0\x06\xf7\xbe\x2e\xcf\xf6\x58\xb2\x30\x07\x5d\xb8\x7c\x65\x1e\x0d\x76\x0f\x53\xe1\xd1\x17\x5c\xc8\xe0\x48\x2c\x5a\x91\x20\xe1\xe7\x26\x6b\x17\x5c\x49\xb8\x70\x91\xd1\x3f\xb4\xf8\x15\x44\x4e\x78\x6d\x65\xa8\xbf\xda\xfd\xac\xc1\x91\x72\x8f\x8b\x70\xf7\x61\x5d\x32\x7a\x03\xbd\xa6\x74\x07\x16\x54\x9c\x26\xb1\xd8\x3c\xf7\xc4\x02\xe9\xda\xbb\xd5\x4e\x0d\x6e\xc9\xdc\xd5\xe6\x83\xda\xe5\xa1\x8b\xdc\x98\x99\x9b\xd8\x6b\xf6\x7a\xee\x40\xce\xeb\x28\xa8\x92\x79\x3b\x41\xa4\xef\xda\xba\x2d\xd6\xeb\x1c\xa4\x62\x2d\x1c\x8f\x1c\x8e\x7e\x1d\xc9\x6d\x2b\x78\xf2\x69\x69\x22\x54\x8b\x4b\xdb\x25\x04\xd4\x68\x9b\xe8\x24\x0b\x10\x7f\x96\x6d\x0c\x19\x2b\x4d\xbc\x7a\xa1\xbc\x6d\x58\x0d\xb4\xe4\x5c\x95\xd9\x57\x74\xad\xc0\x81\x85\x05\x04\xd0\xb8\xf5\x41\xe3\x6c\xcb\x98\x8c\xf7\x00\xe2\x51\x09\x40\x4b\xc8\x03\x68\x65\xc5\xc1\x3a\xbd\x57\x95\x8b\x15\x76\xa7\x51\x6d\x58\xe1\x0d\x2d\x4b\x2e\xb7\x8c\xc0\xe9\xc5\xcc\x07\x50\x6d\xbb\x4d\x0e\x50\x61\xfd\x26\x7a\x00\x63\x92\x18\x19\xc8\x07\x03\x69\x6d\x69\x97\x45\x4e\x66\x58\x10\xa6\x1e\xd9\x9d\x9e\x85\x79\x23\xcf\xc4\x70\x59\x40\xae\xcd\x00\x34\x23\x1e\x21\x6c\xdf\x02\xa2\xd7\xa5\xe1\xc9\x81\x79\x08\x4c\xd3\x3d\x22\x13\x7c\x6f\x9e\x31\x40\x11\x16\x28\x49\x2f\x95\x8e\x72\x33\x5e\x2b\x90\xd1\x84\x02\x4e\x43\x4c\xa4\xbd\x90\xa8\xb2\x40\x1c\x99\xfa\x9d\x12\x07\xac\x0d\xaf\x65\xf2\xab\x4a\x60\x3b\x47\x01\x73\x0e\x3a\xf9\xc8\xbc\x6f\x2c\xc1\x61\x35\xc6\xfa\x86\xa6\x04\xec\x33\x8d\xb3\xc0\x17\xfc\xa7\xd9\x21\x2e\xe8\x98\x32\xaf\x1b\x96\x5d\xde\x14\xcf\xc0\xbd\x6b\xce\x20\x1f\x65\x77\x5a\xdf\xd6\x38\x9c\xc1\x8c\xff\xef\x7f\xfd\xf7\x19\xad\x8b\x7e\xc8\x81\xa5\x40\x1b\x76\x72\xbd\x6d\xf1\x77\xde\x83\x5e\xa9\x81\xf4\xf0\x6c\x5a\x59\xa8\xdb\xc8\xff\x6a\x2f\x37\xcd\x34\x5c\x4d\x4c\xb8\xb7\xc8\xee\x10\x1b\x11\xe9\x92\xb3\x61\xae\x98\xd7\xa5\x25\x95\x50\x9b\xa0\x67\x62\x4e\x72\xe6\x20\xf0\x3b\xcd\x2f\xb8\x69\x1e\x59\xfe\x8a\x34\x20\x32\x06\xb7\xd7\xfc\x21\xa7\x4e\x43\xc2\x2c\x93\xfd\x79\xa6\x44\x1e\x0e\xf7\x72\xa1\x5d\x5f\x14\x93\xc3\xaa\xc7\x2f\xdd\xb4\x25\xc9\xed\x01\x58\x6e\x93\x33\x3a\xc1\x72\x7f\xa9\x39\x95\xfd\xbc\x8c\x37\xdd\x57\x1e\x56\x25\xe9\x98\x49\x9a\x12\x59\xbd\x21\xa9\x24\xc2\x48\xba\x0c\x43\xcc\x72\x82\x0f\xcf\x09\x19\xa2\x2b\x62\x8d\x64\x8a\xe9\x5a\xd5\x0c\xfa\xf9\x6a\xf0\xd0\x42\xb0\x01\x8f\x89\x18\xc4\xa9\x5a\x38\x16\xcb\x2a\x0c\xf4\x4b\x97\xa9\x9a\xaf\x1e\x5f\x26\x78\xb1\x9f\xd1\x32\xc0\x56\xfd\x7c\xcd\xb0\xab\x35\x66\x2f\xc5\xa7\xa8\x35\xd7\xc0\xa1\x92\x12\x1c\xaa\xcd\x78\x2d\xb8\x48\xe0\x06\x66\x0a\x70\x08\x73\x4b\xca\x5e\xd1\x06\xb4\x1d\x66\x8e\x86\x69\xee\x52\xca\xda\x60\xc4\x67\x8f\xec\xa3\xe9\x23\x03\x56\x9e\x99\x40\x04\xe5\x46\xe4\xcb\x8c\x4b\x52\xa8\x7f\xab\x68\x6d\x61\x0b\x5f\xed\x34\xaa\x95\xf5\xfc\xa5\xed\x75\xf5\x57\x07\xb6\x5d\xdc\xf0\xc5\x25\x57\x73\xe0\x56\xea\x60\x44\x67\x54\xf3\xce\xa0\xf2\xa4\xed\xaf\xbd\x72\x9e\xd3\x05\xe0\x61\x2a\x99\x9f\xa0\x6c\x79\x25\x86\x48\xc8\x33\x01\x77\x3a\xcc\xd1\x6f\x60\x52\xf4\xeb\xd5\x88\x93\x55\x07\x28\x2f\x3e\x05\xb1\x80\xe2\xf2\x0c\x8a\x25\x7a\x55\xbc\x58\x2c\x3e\xda\xba\x4e\xae\x2a\x31\x65\x0d\xf5\xbc\xe3\x37\x72\x99\x13\x85\xc8\x17\x45\x6c\xab\xd7\xbe\xab\x64\x5c\x2c\x7e\x40\xd5\xc5\x58\xf5\xba\xe3\xde\x9b\x6e\x77\x5c\xe1\xbb\x2b\xd5\x8c\xdd\x95\x6f\x4b\x17\x27\x98\xc5\xb6\x1e\xd7\x1a\x19\x5a\xd9\x82\xd5\x19\xa7\x5b\x56\xa9\x60\xab\x4a\x3d\x04\x7c\x33\xa6\x81\xea\x87\x8b\xcc\x19\x8c\xda\x64\x81\xf4\x0a\x2e\xb4\xe6\x9e\x32\x45\x13\xcd\x1c\x76\x0e\x12\x8d\x20\x33\xce\xa2\x3b\x42\x66\x7b\x1d\x80\x20\x95\x92\xb2\xf1\xc0\x52\xd2\x95\x96\x36\xbb\x18\x8a\x3c\xf5\xd9\x0c\x65\xfe\xf8\xbd\x1b\x68\xb9\x53\xdd\xb0\x35\x80\xbb\xb9\xa2\x56\xb0\x38\x18\x77\x8b\xb1\xa8\x7c\xae\x16\x76\x40\x63\x43\x0a\x6a\x3a\x8a\xc3\x42\xd7\xf1\xbb\x83\x4e\xb7\x08\x7e\x91\x5f\x21\xd2\x16\xaa\x9a\xf2\x33\xc8\xd4\x57\x35\x95\xb8\xb2\xb6\x02\xb7\xc7\x32\x15\xcd\xf6\x33\xcb\x70\x06\x4a\xc5\xbc\xd8\x7d\xce\x96\x23\xe0\x24\x19\xe2\xe8\x29\xb3\xc2\x32\x5f\x04\x17\xae\x1f\x84\xd6\x2b\xa1\xe1\x9d\x61\x2e\x3d\xd1\x08\xb4\x1b\x3f\x5a\x68\xe0\x8f\xec\xb4\xf3\x8f\x1b\xaa\x59\x5c\x39\x83\x77\x65\x66\x6f\x6a\x1b\x62\x32\x4b\xf8\x7c\x5a\x73\x9f\x95\x0b\x18\xb7\xc9\xd4\xa9\xab\x9f\xdc\xe9\x55\x56\x12\x7a\x6b\x5f\x66\x0b\xd5\x50\x3b\x00\xe3\x5a\x43\x4a\x7e\x4a\xf8\x10\x5c\xaa\xd6\xfd\xe0\x2a\x7c\xbc\x52\x8f\xf2\x79\x5e\xb7\xee\xa8\x7c\x22\xa9\x9c\x25\xda\x98\xa9\xff\x82\xa9\x39\xd9\xef\xbe\x19\x84\x84\xd5\xde\xc1\xe6\xd9\xda\x95\xaf\xef\x03\xf6\xf9\xca\x69\x02\xe6\x59\x23\xbf\x4a\x5e\x36\x53\x6a\x78\x66\x82\xd4\x8a\x3f\x32\x85\xc7\x6e\x73\xad\x72\xc9\x5f\x18\x11\x72\x42\x67\x85\x46\x98\x5b\xa7\x87\x5b\x8e\xb6\xff\xc7\x24\x43\x57\x8e\xd9\xc2\xd2\xad\x3e\x9f\x9d\x1a\x74\x16\xcd\x9d\x72\x86\xa3\xdc\x27\x1b\x25\x58\x4a\x3a\x9a\x7b\xa0\x2a\x59\x9e\x2f\x94\xae\x15\x9d\x18\x5e\xe7\xbb\x2a\x31\x67\xa8\xb3\x1b\x54\x81\xed\x2b\x2a\x1f\x8a\x87\x9f\xc6\x3e\xe8\x9e\xbe\xcd\x16\xa1\x77\x9c\x9e\x60\xa9\x5e\x0b\x1e\x6c\xe0\x13\x36\x43\x01\x68\x8a\xd7\xb4\x67\x4e\xaa\x28\xc3\x5c\x60\xa4\x1c\x2d\x2c\xd3\xa3\x2d\xcd\xac\x0d\x97\x21\xad\xf8\xf0\x45\xaa\x50\xc3\x0a\x9c\xa7\x6d\x46\xe7\x12\xd7\xe7\x32\x43\x69\x01\x30\x8b\xfc\xe5\x13\x24\xb7\x02\x65\x6b\xc2\x94\x97\x24\x21\x3b\x49\x36\xdf\x80\x43\xcb\x99\x1c\x1e\x6f\x2e\xe5\xcb\xbc\x2d\xc5\x6a\xbf\xca\x06\x39\xf0\x35\x18\x49\xd5\x53\xff\xc5\x4c\xd4\xa6\xc1\x57\xed\x22\xf8\x44\x81\xca\xab\x67\xdb\x26\x2e\xf7\x52\x4b\xcc\xf4\x2d\xbf\xe7\x6b\x2c\x30\x75\xbe\xe2\x4c\x4f\x6c\x23\x9f\xbf\x72\xaa\xfa\xc2\xbc\x3e\x91\x26\x69\x35\x2b\x4f\xdf\x46\xb2\x77\xf1\x86\x6a\xc6\x17\x36\x70\xad\x38\x1a\x13\x40\xe2\xa1\x2c\xa6\xcf\x34\x4e\x71\x72\x54\x3c\xb1\xb3\x42\x9b\x1d\x51\xbf\x5a\xc2\x34\xf2\xf4\xe4\xf9\xa0\x44\x49\x77\x1f\x2d\x60\x7e\xda\xcd\x69\xe1\x16\xb4\xe3\x58\x1a\x83\xe1\xcd\x6b\x6c\x5b\x43\x63\xd8\x99\x59\x80\x88\xa0\x4a\x16\x2e\xd9\x7c\xee\xbb\xd7\x26\x0d\x8d\x63\xfb\x46\x06\x07\x51\x80\x61\xc3\x05\x34\x4b\xb3\x47\xaf\x2f\x75\xcb\x47\xeb\xad\xeb\x9d\xeb\x9f\xb1\xf2\xac\xf2\xd3\x15\x94\xe1\x36\x9c\xd3\xe6\xfa\xb0\x03\xa0\x6d\xa1\xf2\x53\x77\x0c\xdb\x79\xff\xb6\x40\x39\x5e\x50\x09\x76\xa7\x22\x1f\x11\x9b\xb4\x42\x53\x5e\xd8\x8a\x43\xe9\xcb\xa7\x0e\xdb\x2b\x47\xca\x6a\xef\x16\xb5\xe3\x24\xdf\xd9\xf0\xe3\xfe\x2e\xf8\xd5\xfc\xb2\x13\xfe\x00\x98\x5b\x0c\xf5\xf8\xa9\x6d\xf7\x03\x87\xd7\xcb\xe1\x5c\x88\x79\xad\xc8\x8e\xb5\xd3\x6b\x94\x17\xbb\x40\xce\x7d\x6c\xaf\x2d\xbe\x6c\xbc\xb9\xfb\x64\xb5\x75\xe7\xb2\x0b\x1b\x6d\xcf\xd1\x43\xcb\x8d\xde\x0b\x21\x49\xbd\xd9\x2d\x5a\x01\xe9\xe4\xb6\x6c\x97\x87\xac\xaa\x47\xe3\xf6\xf0\x11\xae\xb6\x74\x30\x13\x64\x44\xbf\x6c\x64\x0a\xdc\xc2\xab\xd6\xbc\xd6\x64\x2e\x75\x7d\x84\xb0\x20\x74\x89\xf4\x12\x69\x2d\xa5\x6d\x67\xb8\x47\x96\x57\xe4\xda\x72\x5c\xad\x0c\x73\x51\xf8\xd3\xa6\xd0\xa7\xbb\xef\x50\x69\xf6\x75\xa2\xd4\x4c\x9e\x7f\xf8\x30\xa6\x6a\x92\x0e\xcf\x22\x3e\x35\xf5\x1f\x5c\x8c\xcd\x3f\x3e\x50\x29\x53\x22\x3f\xfc\xed\xaf\x7f\xcd\xb7\x78\x88\xa3\xa7\xb1\x81\x73\x5a\x8c\x77\x16\xb7\x9c\x60\xb9\x5d\x46\x99\x2b\x9d\xdc\x73\x09\xbd\xf7\x19\x57\xb4\xac\xdf\x91\x0a\x4f\x67\x7e\x0a\xb2\xe9\xf1\x28\x15\xce\x3b\xcb\x40\x3d\xac\x5e\x26\x9a\xe0\xd9\x8c\xb0\x7a\xb7\x8b\x29\x70\xde\x42\xf4\xb8\x12\x69\x3b\x43\xf2\x65\x96\x60\x56\x84\xfd\x80\x36\x69\x82\x44\x84\x29\x0b\x49\x91\xf7\xa6\x07\x6e\x34\xd0\x53\x46\xfe\xaf\x57\x02\x0b\x6b\xa4\x32\xef\x7f\xe8\xa6\x63\x7b\x11\xbb\x0e\xb5\xd8\x23\x5d\xb9\xff\x73\x4e\x3b\xe2\xa8\xb6\xac\x38\xf6\xde\xf6\x7a\xdb\x86\x83\x22\xc1\xd9\x80\x7c\xd1\x42\x4e\x6e\x0a\x14\xf7\x20\x89\x44\x9d\x5f\xee\x91\x9c\x33\x85\xbf\x9c\xa3\xcf\x94\x81\x02\xfb\x03\x4f\x85\x44\x97\x78\x7e\xca\x47\xa7\x53\xce\xd4\x04\x7d\x86\xff\xdf\xfe\xe9\x85\x90\x27\xf4\x2b\xc1\xc2\xca\x07\xdb\x3f\xd2\xb5\xb0\x03\x16\x12\x29\x93\x88\x3c\xeb\x13\xfa\xd7\xff\x85\xa6\x66\xe4\x73\xf4\xed\x87\xbf\xfe\x2f\xf4\x67\xf8\x7f\xff\x0f\xfa\x73\x8d\xa7\x61\x3d\xa8\x39\x68\x33\x7e\x57\x9b\x46\x00\x94\x92\x8b\x24\x5f\x35\xec\x85\xe0\xf9\x4e\x55\x8e\xfc\x44\xa3\x27\x3e\x1a\x0d\x34\x63\x98\x02\xd2\x01\xde\xca\xed\xe0\xa3\x06\x53\xdb\x28\xde\xb4\x9d\xcc\x1b\x3e\xd9\x8f\x1a\xa4\x11\x27\xae\x65\x9a\xbb\x27\x20\x79\xad\xd0\x7a\x9c\x4a\x78\x8b\xc4\x5a\xaa\xae\x73\x3a\x9c\x77\xd1\x81\x0e\x38\x0f\x92\x8f\xcc\xe3\x14\xe2\x42\xc2\xa9\x9f\x3d\x6d\x12\xcc\x2c\x21\x2b\x8f\xc3\x42\x5a\xf7\x9b\xc9\xd5\x85\xa5\xbd\x56\x9e\xae\x5c\xf8\xf8\xea\x14\xdd\x7b\x2e\xb6\xb2\xb7\x9e\x48\x6d\x09\xcd\x8a\xe6\x66\xae\xe1\x36\xf6\x9d\x1a\x8a\x23\xc9\x45\x86\xde\x6d\xfc\x22\xb6\x05\xea\x6a\x2f\x2a\x15\x26\xa9\xb1\xd9\xa1\xd7\x4b\xbf\xcc\x5e\x59\x35\x4d\xc8\x70\x74\x4f\xe7\xcd\x1d\x61\xb6\x5a\x45\xd2\x22\xb1\x62\xc6\x15\x20\x9b\xab\x36\xf4\x3e\xc3\x55\x81\xc1\x21\xdd\x16\xea\x86\x98\xd3\x6c\x2d\x70\x45\xf5\x7e\xa6\x22\x22\x17\x7c\xbb\x74\xeb\x84\xb2\x85\x3a\x8d\xda\xe4\xb6\x7a\x9d\xfc\xca\x76\x88\x73\x38\xd4\x3c\xce\x8d\x05\x13\x96\xb0\xbd\x57\x3c\x00\xdc\xe2\x6a\x00\x48\x71\x17\x18\xab\x0b\x1d\x41\xb6\x90\xda\xc6\x71\x9d\x0b\x3c\xd7\x50\xa6\xd4\x47\x46\x60\x2d\x0b\x97\xe4\x4c\x42\x3a\xd9\xd6\xf3\xf0\x7a\x23\xe5\x39\x6a\x85\x2e\xc5\x30\x13\xa8\xb7\xdc\x10\x23\xd7\xb4\x29\x3b\x41\x02\x43\x32\xb0\x9a\xe8\xf1\x24\x11\xa7\x23\x1c\x51\x36\x3e\xf1\xe0\x51\x01\xaa\xc4\xbf\x0e\xaa\x98\xb4\x8f\xe5\xd3\x6e\x13\x5c\xb7\xee\x36\x4b\xe3\xbc\xe3\xa1\x05\x34\x32\x81\x15\xba\x80\x0d\xa9\xb0\x7c\xaa\x43\xf4\x5a\x80\x13\x5c\x32\xbb\x8c\x14\x0e\x84\x70\xd9\xfc\x1c\xf4\x01\xf1\xed\x29\xe8\x54\xe2\xfa\x9f\x5b\x70\x51\x57\x69\x8a\x33\xf4\x9f\x32\xaa\xee\x92\xf9\xcb\x09\x17\x6a\xb0\x21\x1e\x71\x39\xa4\xc2\xc8\x69\x02\x40\x42\xfc\x99\x88\x67\x4a\x5e\x8a\xb0\xbe\xeb\xf0\xa2\x71\x9a\x79\xf9\x94\x80\xfb\x3a\x9d\x71\x28\xdd\x1a\xa1\x29\x66\x73\x23\x28\xb5\x70\xc1\xf2\x49\x66\x5d\x97\x91\x9c\xe2\x24\x39\x41\x82\xa4\xd2\x74\x23\x97\x24\x19\x9d\xba\x06\x30\x31\x4a\xf8\x98\x46\x38\x41\xc3\x84\x47\x4f\xd2\x54\x56\xb2\xb1\x11\x52\x33\xc1\x23\x22\xa5\xa7\x59\xe5\x28\x0a\xb6\xb6\x15\x5a\x2e\x2b\x22\xa6\x94\x51\xa9\x68\xe4\x54\xa6\x1c\x0c\xc5\x34\xfe\x8f\x30\xb8\x84\xa1\x52\x18\xa6\xab\x35\x3d\x62\x40\x61\x53\x66\x5b\x85\xc1\x75\x6d\xb1\x1e\x5d\x71\x42\xdd\x01\xda\x01\x74\xa5\xe3\x90\x81\x2a\x1e\xc8\x15\x47\xea\xc2\xbe\x06\xc7\x78\x19\x0b\xdc\x15\x4f\x54\xc6\x90\xd9\x49\x2b\xc0\x69\x41\x2d\x43\x56\x7a\x51\xd0\x5c\xb2\x8a\x84\x96\x21\xe9\xc1\x94\x6b\xf0\xf3\x56\xf1\xb4\xa6\x22\xa8\x3c\xd0\x9d\xae\x1c\xb5\xa7\x2c\x4a\xd2\x38\x6b\xab\xaa\x55\x80\x67\xcd\x24\x8e\x3c\x9a\xf6\x5a\x51\x38\x41\x58\xa2\x17\x92\x24\xfa\xff\x9a\xca\x8b\xd3\xac\x5d\x88\x16\xc9\xa6\xa5\x0b\x7c\xc4\x49\xe9\x3a\x8e\x6a\x1d\x2a\xea\x2d\x56\x13\x83\x35\x31\xe5\xca\x74\xb4\x35\xa8\xa8\xce\xbf\x65\x60\x34\x87\x09\x1f\xc2\x49\x07\xc0\x54\x57\x5f\xed\x95\x73\xa6\x51\x44\x48\x4c\x62\xd3\x9f\x33\x03\xf3\xb4\x47\xf4\x9b\x6a\xf8\xce\x02\x45\x5a\x00\x96\x5a\x76\xac\xd5\x42\xa6\x16\xbb\x1b\x9e\xa1\xdb\x12\x20\x90\x47\x99\x11\x2e\xc3\xc3\x9d\x2c\x6c\xe1\xeb\x00\xac\x96\x16\xb1\xbf\x1d\x5a\x13\x60\xb5\xf0\xcd\x1d\x00\xac\x96\xd6\x59\x53\x33\xc2\xc7\x7b\xad\x75\xd7\x8b\xba\xe2\xcd\x0b\x10\x0d\x30\x9d\xb9\x3b\x0b\x2c\xe8\x0e\xe4\xbc\x8a\x11\xdb\x05\x1e\x5b\xea\x01\xfa\xba\xe0\xb1\xa5\xc9\xb4\x19\x3c\xb6\x34\xd5\xf6\x82\xc7\x56\x4c\xb4\x01\x78\xac\x09\xee\x0f\x34\x53\x37\x13\x0a\x50\x50\x35\x4c\x47\xf7\x00\x31\xb0\x74\x8e\x17\x26\x71\xc0\x5c\x63\xee\x8e\xb6\xf9\x45\x30\x5b\x5b\x7b\x5b\x97\x8e\x55\x0a\x42\xac\xcb\x7b\x59\xf4\xcd\x80\x8e\xac\xeb\x76\x3f\xf1\xbd\xdd\xe0\x87\x8c\xf0\xcc\x62\x19\xd4\xb5\x38\x6a\x4f\xd5\xf6\x66\xb8\xbc\x80\x7d\x59\x10\xf9\x8d\x90\xeb\x3e\x97\xba\x85\x4c\xf8\x8b\xed\xd8\x05\x6c\x68\x98\xb2\x96\x05\xe1\xa3\x03\x6b\xb4\xd5\x51\x8e\x32\x45\xc6\x65\x9b\x36\x3f\x34\x94\xa9\xef\xfe\xb6\x52\x12\x19\x68\x4f\x67\x1e\x7a\x3d\x3b\xb2\x60\x87\xfd\x8d\xc4\x28\x9a\x68\xab\x48\x6a\xf3\x45\x2f\xc7\xdc\xac\x12\x4d\x31\x75\x86\x54\x2a\x4d\x68\x89\xca\x47\x56\xc0\xc2\x3d\x43\x1f\xa1\x0d\x32\x9e\xce\xb4\xfd\x95\xad\x8f\x6a\x4e\x7a\x4c\xbf\xfd\xf6\x3b\x82\xbe\x45\x53\x82\x59\xc1\x86\x05\xb3\x49\x5f\x7d\x80\x1d\xa9\x26\xe4\x91\x55\x6e\x05\xea\x7e\x31\xbd\xcd\x5c\xbe\x61\x8f\x8d\xb8\xb3\x89\xa1\xbd\x27\x8e\x26\x48\xa6\x43\xd3\x9f\xda\xf3\x61\x38\x45\xfa\x8a\x8f\x21\x50\x0d\x37\xb2\x9b\xf4\xb2\x53\xb8\xdf\x1c\x00\x1b\x6e\x6c\x7a\x1b\x77\xe0\x1e\x39\x95\xa4\x80\x29\x56\x11\x34\x33\x92\xcf\x3f\xf8\xd2\xe0\x0d\x9d\x98\x18\x82\xb6\xcf\xb0\xf5\xec\x6b\x5d\x1a\xd2\x89\x21\x4a\x96\x26\x58\xd8\xa3\xff\xc8\xb4\xa1\x21\xc8\x33\xe5\xa9\x4c\xe6\x28\xe6\x8c\x9c\x00\x27\xa4\xd1\xc4\x04\x56\xb5\xcd\x82\x6d\xa3\x94\x67\x2a\x53\x6d\xd0\xc2\x58\xae\x2f\x8b\x54\xd8\x60\xa1\x4d\x28\x7c\x47\x9b\xdf\x04\xde\x52\x5e\x7d\x24\x6a\x66\x45\xf9\x70\xc5\x25\x99\xdf\x10\xae\xb8\xc0\x55\x01\xae\x38\x83\x2b\x5e\xa4\x4b\x1b\xe1\x8a\x4b\x7b\xde\x0c\xae\xb8\x6a\xcb\x37\x80\x2b\x2e\x0c\xf3\x66\xe0\x8a\x4b\x14\x7d\x33\x70\xc5\xa5\x75\x05\xb8\xe2\xb7\x07\x57\xbc\x25\x20\x6f\xb5\x2c\x36\xb8\x5e\x8a\xb2\xf9\xda\x4c\xf6\x5e\xa2\xde\x8d\x66\xb0\xe8\xa9\x98\xd4\x96\x5d\x57\xdb\x83\x00\x57\x0b\xa1\xf5\x40\x80\x2b\x4d\xf5\x7a\x51\xb7\x2d\xb0\x18\x18\x06\x07\x06\x01\x2e\x2c\x20\xe4\x57\xae\x9f\x5f\x59\xc9\x7c\xf6\xdb\x7a\x7a\x2e\xe9\xb2\x7c\x21\x37\x84\x01\x2e\xec\x4f\xa3\x4c\x4c\x50\xdd\x77\xc0\x89\xfb\xd5\xe6\xfb\x85\x43\xbe\x52\x97\xf7\xa9\x28\x2d\x20\xb9\xd6\xf0\x1c\x4a\xa1\x31\xc2\xfd\xf8\x7f\xe0\xdc\x0d\x32\x83\x4b\xe4\xcd\xe2\x2a\x86\x17\x1b\xb0\x6a\x63\x0e\x75\x56\xe9\x6e\x0a\x85\x5d\xf1\xe6\x9a\x21\x66\x37\x89\xfb\x19\x89\x6a\x7c\xcc\x74\x4a\x77\x35\xec\xaa\x8b\x2c\xc3\x60\x03\x83\x7c\xa1\x2e\x55\x5f\x4f\x66\x3a\x46\xc7\x2f\x95\x03\x03\x4a\x8a\x79\x73\x4c\xa5\x12\xb5\xb9\x4d\x0b\x33\xdc\x26\x54\x3a\x4b\x1b\x27\xc4\x78\x54\x1d\x6f\xf6\xda\x94\x4c\xb9\x58\x95\x58\x55\xf9\xa6\x6d\xb1\xb4\xc9\xab\x64\x36\x21\x53\xad\xc9\x0c\xd6\x1d\xa4\xe9\x7e\x67\x45\xcb\xb6\x76\xcd\x24\x3a\x16\x98\xc0\x0b\x84\xea\x67\x63\x83\x84\xda\x78\xbb\xb7\xdd\x66\x8b\xd5\xba\x66\x40\xc8\x81\x78\x2f\x77\xb8\xd9\x87\x0a\xe1\x6e\xe0\xef\xca\x9c\x8e\x2c\xa5\x66\x75\xd6\xc6\x92\x7c\x8d\x65\x78\x67\xf9\x5b\xb6\x01\xf9\x1a\xa1\xfc\x62\x74\x5e\x4b\x42\xbf\xfb\xf4\xfa\x09\x1e\x35\x68\xbd\x8b\xe4\x81\xcc\x1c\x49\xc4\xa9\x6f\x19\x14\x26\xb3\x48\xaf\x02\x97\x38\x8b\x72\x0b\x26\x49\x45\x6d\x96\x69\x13\x87\x76\xa4\x52\x9c\x80\x25\xe1\x77\x4d\x2d\x6f\xea\x70\x5e\x51\xf6\xd8\x2c\x62\x42\x99\xfa\x8f\xbf\xaf\xb5\x9b\xda\xb4\xb2\x74\x83\x4e\x6f\x38\x8a\x88\x34\x3e\x76\x9b\x85\x8c\x87\xfc\x19\x9a\xbc\x6d\xb3\xab\xfa\x28\xeb\x75\x6b\x01\x9f\x41\x60\xc7\x39\xab\x1b\x75\x61\x22\x78\x3a\x9e\x38\x1f\x92\x3e\x33\x7a\x69\x55\x7b\xf9\xf3\x82\x8f\x7c\xed\xbd\xfc\x3e\xa5\xc9\x66\x1e\xba\xfb\x42\xfb\xbb\x4f\xbd\x3e\x92\x93\xec\xb4\x0e\x61\xd8\xca\x8d\x5d\x9c\x74\xf3\x6f\xda\x77\xb3\x78\x0d\x7c\xe6\xc4\xc1\xbe\x8e\x78\x92\x40\xa4\x41\x92\xe9\x33\x11\xd5\x9f\x87\x05\xf7\xe9\x7a\x88\x8d\xd9\x04\xe0\xed\xbc\x30\xa2\x91\xfe\x75\x6b\x54\x43\x89\xdc\xec\xcb\x49\x0b\x26\x55\x8d\x33\xc2\xaa\x7c\x6c\xbf\x2c\x76\x1e\x3a\xb2\x84\x41\x97\x3d\xb6\xb3\xa4\x41\x47\x92\x03\x27\x0e\xae\x58\x47\x5b\x93\x07\x4b\xc2\x2e\xcb\xe5\xcb\xaf\x19\x97\x38\x64\x0c\x9f\x8e\x26\xf1\x23\xeb\x14\xea\x29\x5c\x87\xf6\xe1\x3c\x4f\xc8\x36\x36\x84\x2f\xcc\xa0\xbf\x8b\x75\xac\x40\x18\x4d\xff\x0b\x2c\x1d\x03\x9a\x6c\x52\x0a\x5d\xda\x20\x64\x93\x93\xf8\x14\x47\xf3\x28\xa1\x91\x67\x33\x8f\x05\x9e\x4d\xaa\x24\x9e\xdb\xf9\x80\x3a\xf4\x5a\xa8\x43\x75\x8d\xd0\xd6\xc9\xdb\x76\x7c\xc5\xf0\x94\x04\x34\xa4\x36\xa2\x21\x9d\x64\x78\x1b\x2c\x6f\x29\xf7\x8a\x30\x0e\x8b\xe7\x3e\x40\x22\xbd\x02\x24\xd2\x26\x87\x3f\xc7\x3b\x2a\x1c\xfb\x00\xd3\xd4\x84\x78\xaf\x0f\xd3\x94\x29\x01\xad\x42\xde\xa9\x97\x07\xaf\x8c\xe8\xb2\x38\xb1\xd7\x84\x65\xaa\x50\x97\xd6\xd1\x1b\x97\xe1\x32\x2d\xe3\x8b\x46\x74\x79\x5d\x94\xa4\xf5\x28\xb3\x16\x00\x52\xe5\xdd\xd9\x12\x38\xa4\xfa\x6d\x68\xc9\xb9\xd9\x65\x55\xcf\x7a\x3d\x7b\xfd\xca\x9e\x75\x0c\xcc\xf5\x8a\x7c\x32\x7e\x38\xae\x42\x9f\xbc\xb9\xe1\x66\xc5\x3e\x1d\x17\x83\x27\x02\x4d\x78\x12\x3b\x10\x8e\x8c\x5a\xd9\x07\xb2\x4a\x88\x8c\x40\x6e\x33\xee\x67\x24\x32\xd6\x66\xde\x88\x6f\x59\x49\x4f\xb6\x89\x30\xdd\x1d\x08\x9a\x5d\x78\x51\x32\x49\xb2\x89\xff\x64\xa5\x76\x21\x8b\xee\xff\x25\x73\x2c\x50\x08\xa2\x06\xd5\xd3\x5c\xe9\xf7\x5e\x31\xb9\x65\xaa\x87\xe7\x1c\x15\x55\x2d\x76\x0d\x9f\xc1\xaf\xcf\xd4\x39\x62\xb0\xff\xc5\xa5\x51\x4a\xb7\xba\x46\x91\xca\x32\xb3\x6c\x90\x0c\xb7\xd0\x31\x71\x7b\x70\xa4\x29\xfe\x32\x98\x61\x81\x93\x84\x24\x54\x4e\xf7\x96\x0c\x7d\x51\x0c\x57\xeb\xb3\x2a\xb8\x71\x91\xb1\x74\x3a\x34\xac\xe8\x26\x62\x9b\x6c\x2a\x8e\x44\xca\x7c\x68\xb7\x6c\x63\xb2\x26\x9e\x29\xdc\x0b\xe0\x55\x8b\x26\xd0\x2d\x79\x84\xa9\x60\x44\xd6\xf6\xa6\x25\x51\x2a\xa8\x9a\x0f\x6c\xab\xdf\xe6\x07\xee\xde\xbe\x79\x61\x5f\x5c\x1e\xe1\x77\xa8\x06\xee\x7b\x59\x6b\xe1\x19\x11\xd0\x9e\xcb\x35\x9a\xf2\xda\x19\x5b\xd4\x0a\x92\xf5\xf8\x82\xf4\xef\x85\x6b\xbb\x2e\x71\x1a\xbf\x0c\xbc\x8a\xb2\x41\x54\x66\x8e\x55\x87\xb5\x0a\x77\x6b\xd9\x22\xf7\x8c\x3c\x55\x13\x45\xdf\x43\x77\x1f\x5b\x36\x62\x86\xd6\x13\xf6\x42\xe1\xe0\xaf\xcd\x37\xc6\x2b\xf9\xaf\x68\x76\xe3\xcd\xd3\x62\x1d\x55\x25\x5f\x2d\x99\x6c\xc7\x7b\xab\xc1\x8c\xbd\x8f\xec\x68\xda\xfa\xa0\x0b\x91\xce\x14\x1d\x2e\x42\xfb\x38\x69\xb0\x83\xd6\xbd\x9d\x04\xca\xcc\x5d\x98\xa5\xf0\x59\xd3\xcf\xb7\x20\x89\xed\xea\xb4\xfe\x6f\x71\xd4\x1c\x42\x92\x41\x98\xf2\xeb\x18\x6f\xa6\x54\x29\x57\x28\x61\x1c\xf0\x9a\x3b\x8b\xbe\xe9\xf7\x2e\xdd\x05\x43\x87\x65\xe3\xa2\x3a\x7b\x64\x1d\x89\x5e\x08\x62\xc4\x42\x68\x54\xf4\x4e\xce\xbc\xfa\xd0\x73\x6d\x48\xf4\x97\xb2\xdc\x1c\xad\x3c\x50\x25\xb3\xb6\x7f\xe6\x1b\x23\x9c\x48\x72\xa2\x07\x86\x6e\xc1\x8a\x43\xf2\x2b\x46\x2f\x02\xcf\x66\x44\x3c\x32\x5b\xc5\x02\x01\x27\xce\x13\x33\x7e\x5d\x8a\xaf\xa5\x01\x19\x44\x38\x9a\x1c\x68\x8f\x30\x14\x23\x45\x13\x12\xbb\x7a\xe9\xe2\xf6\xb8\x75\x1b\x87\xfd\x1a\x9b\xd5\x1b\xb9\xb6\x75\x27\xf6\x23\x49\xa4\x25\x4a\xd6\xde\x7d\x46\x84\x9e\xb5\xe6\xe1\x67\xc2\x10\x1d\xb9\x79\xd8\xdc\x25\xf4\x02\x91\x39\xcd\xfa\xcf\x98\x26\x06\x80\xc0\x7d\xda\x29\x81\x26\xfc\xf0\xc8\x4c\xb8\x9f\x45\x85\x0a\x5d\xca\xa8\x9c\x68\x49\x9d\x42\x4c\x16\xcc\x8c\xba\xc2\x21\xf6\xbc\xce\x69\xee\xea\xc7\x97\x4b\xd0\x67\x2a\x38\x9b\x42\x91\x90\xc5\xa5\x72\xe4\x93\x44\x65\xc7\xa3\xb2\xc4\x73\xa5\x46\x1c\xc7\xb2\xe8\x7c\x35\x66\x25\xfd\xa3\xe0\x76\x39\x2d\x54\x45\x46\x1e\xac\x12\x24\xb1\xba\x8e\x7e\xcb\xf4\xdf\x50\xda\xb1\x58\xda\x51\x4d\x9b\x36\x96\x77\x64\x87\x78\xdd\x12\x8f\xba\xed\xdf\x85\x66\xbb\xc3\x52\x8f\x57\xae\x89\xd8\x4f\x39\xc4\xeb\xd6\xaf\xec\xa3\x74\x25\x14\x78\xbc\x62\x81\x47\x63\x4f\x6d\x31\x37\xbd\xfe\xd8\xae\x55\x1c\xb1\x02\xcc\xaa\xea\x2b\x9f\x89\x12\x34\x92\xbb\x90\x0f\x72\x86\x1b\x66\xf5\x81\x15\x38\x5b\xa1\x35\xe9\x07\xb2\x20\x28\xe4\xc9\x65\x1d\x2e\x87\x82\xe0\xa7\x98\xbf\x2c\xf8\xea\xa4\x8f\x26\xf2\x99\x6b\xb5\x47\x90\x88\x4a\x52\xc8\xe4\xa1\x12\x31\x22\xad\xb3\x13\x3f\xb2\x09\x25\x02\x8b\x68\x02\xd5\x9d\xf9\xc6\x98\x2a\x61\x03\xe8\x64\x72\x39\xfc\x68\xd7\x1a\x9b\xde\x80\xee\x65\x0f\x53\x86\xcf\x67\xf7\x5c\xcf\x64\x6a\x5e\xc9\x94\x19\xab\x65\xf8\x2e\xb9\x46\xdb\xbf\x6d\x21\x42\x46\xec\xbd\x16\x23\x64\xc9\x54\xde\x1b\x0d\x0b\x12\x72\x6e\x08\x45\x09\x7b\x2a\x4a\xa8\x20\xf1\x7a\x85\x09\x1b\xb9\xfc\x0e\x9f\x33\xed\xbe\x7c\x88\xbc\xe9\x55\x49\x6b\xe9\x70\xb0\xf7\xa3\x57\xb9\xe6\xa6\x27\xf0\x97\x8c\x29\x8c\x46\x2c\x34\x9f\x0d\x49\x1c\x83\xa4\x55\xdc\x76\x68\xcf\x79\xc7\xb9\x07\xf4\xdd\x8b\xa5\x66\x76\x9c\x70\x36\x96\x34\x36\x60\x33\x33\x0c\xbd\x8a\x7d\xe7\x05\x80\x2b\xc0\xfe\x26\x09\x11\x2e\x2a\x21\xd0\x9f\x24\x65\x16\x4d\x32\xfb\x5b\xcc\x89\x64\xef\x95\x71\x16\x60\x36\x47\x4f\x8c\xbf\x24\x24\x1e\xc3\x0e\x95\x27\x73\x8a\x28\x39\x41\x54\x65\xaf\x09\x40\x63\xe0\xa9\x7a\xd4\x73\x87\x5c\x3b\x63\x01\x10\xfb\xae\xb0\xdd\x2b\x3c\x09\x2c\xbf\x39\x43\xa8\xc7\xd0\x08\x47\xea\x04\xc9\x74\x98\x8f\x1f\x73\xd3\x5c\x5e\x5b\xdf\xde\xc2\xf3\x41\x42\xce\x7c\xc5\xc7\xab\xcf\x86\x93\x0e\x9a\x5d\x3b\x09\xc5\x5b\xe5\x16\x3e\xe3\x6d\x20\x56\x3f\xa7\xd2\x26\x61\x20\xce\xb2\xa3\x6f\xe1\xa5\x32\x8c\x6c\xc0\x3b\x35\x78\xd3\x8c\xc7\xb5\xbe\xce\xd2\x52\xd6\x9d\x4b\x9e\x08\x6a\x15\x25\x1b\xa8\x82\x71\x0d\xb9\xb5\xd6\x24\x95\x20\x78\x6a\x83\x03\xfa\xaa\x01\xb5\xc6\xa4\x81\xea\xd9\x53\x61\x34\xcc\x75\xb6\xf8\x8a\xb2\x27\xbd\xbb\x39\x2a\x38\x07\xbc\x64\xfd\xe5\xaa\x4d\x9b\xe9\x1b\x8f\x5c\x70\x66\x02\x84\x5b\xe9\x9d\x74\xcc\x70\xb2\xa6\x8f\x63\x81\x72\x8b\x31\x3d\xa7\x67\x59\x75\x41\x6b\x11\xc6\xd9\x87\xcc\x17\xd7\xf2\x21\x95\xd6\xeb\xeb\x7b\x18\xc5\x64\x46\x58\x4c\x58\x34\x07\x16\x61\x80\x1c\x24\x18\x4e\x10\x86\xf7\x70\x72\x86\x2e\x4d\x7d\x51\xa6\xe1\xd9\x6b\x1d\x2e\xf4\x29\x66\x74\xa4\xed\x04\x70\xc2\xda\x59\x3e\x32\x33\x4d\x17\x03\x21\xb9\x77\x35\xa3\x58\xd5\xce\xe8\x1b\xe4\x7a\x4b\x54\x66\x56\x7c\x1f\x2d\xbf\x70\xe0\x6b\xcb\x76\x47\x0f\xe7\x7a\x30\xc8\x74\x78\x0a\xff\x5d\x28\xb8\x73\x40\x45\x39\x8a\x0e\x49\x08\xb8\x03\x6d\xc4\x0b\x2e\xc6\x3a\x60\xbd\x5d\xc4\xed\x56\xd4\xb1\x78\xdf\x28\x18\x35\x53\xca\xe8\x34\x9d\x7a\xc1\x3b\xd3\xb1\x21\xb2\xfe\x4b\x53\x89\x32\xd3\x76\x40\xe4\xc0\xdb\x91\xbe\x5c\xd9\x1c\x8d\xe9\x33\x61\x8f\x6c\xc6\x29\x53\x67\xe8\x9a\x2b\xe2\xb5\xc8\x30\xd0\x59\x7c\xa6\xe8\xd4\xa0\xbd\x0a\xa2\xcf\x81\x01\x05\x07\xa0\xcd\x09\x56\x27\x28\x4e\xe1\xa8\x32\xa2\xb4\xe8\xd0\x37\xae\x82\x9d\x81\xfc\x70\xf1\xc8\xcc\x4d\x37\xc2\x34\x49\x05\xb1\x3a\x2b\x36\x75\x41\xf9\x94\xf3\x99\x59\x24\x38\x6f\x11\x53\x3a\x9e\x28\xbd\x45\x5a\xc7\xb3\xf1\xc6\x89\x96\x46\xfc\x91\x0d\x09\xc2\x68\xc6\x25\x55\xf4\x39\x8b\x5f\xd2\x11\xc2\x52\x82\x07\xe5\x0c\x5d\x16\xfc\xff\x54\x82\xe9\x5d\x97\x57\x4c\xd9\xc0\xfa\x9e\xeb\xeb\x91\xb6\xde\xc8\xc2\x57\x2c\x95\xf1\x50\xf2\x24\x55\x7e\x08\xb6\x7a\x6f\x73\xd7\xb8\x6b\x5c\x00\x0e\x62\x3e\x7a\x64\x8e\xaf\xe5\x19\xea\x48\x24\xb9\xde\x25\x69\xb6\x32\x12\x54\x11\x41\x0d\x8a\x15\x51\x66\x13\xb2\x73\x9a\x9d\x81\x29\x16\x4f\x5a\x85\xf2\x3d\xf0\x06\x53\xb5\xe0\xed\x18\x1a\x0d\x09\x60\xbd\xfc\xed\x00\xd7\x3f\x62\x9c\x9d\x32\x32\xc6\xab\x76\xe4\x91\x15\xb6\x04\xfd\x89\x8e\x72\x83\xb4\x2e\xe6\xe8\xd1\x6e\x00\x99\x4f\x75\xbb\x64\x3e\x5c\xb7\x49\xa3\x84\xe3\x15\x61\xe3\x51\x7e\xe8\xd1\x3f\xf9\xd0\xcc\x51\xdb\xfd\x5c\x81\x16\xa8\xcd\xab\x11\x17\x64\x82\x59\x7c\xe2\x36\xab\x38\x37\xb8\x19\xad\xab\xcd\x19\x63\xa0\x09\xfe\x7f\xec\xbd\x6b\x73\xe3\x48\x72\x2e\xfc\xdd\xbf\xa2\x3c\x7e\x23\xba\xfb\x98\xa2\xa6\x67\x8f\x1d\xe3\x76\x4c\xc4\xab\x96\xd4\x33\xdc\x51\xab\xb5\xba\xcc\xac\xcf\x72\x83\x5d\x04\x8a\x64\xad\xc0\x2a\x0c\x0a\x90\x9a\x6b\xef\x7f\x3f\x51\x99\x59\x17\x80\x00\x09\x88\xea\x9e\xb1\xcf\x7e\xb0\x77\x5a\x04\xaa\x0a\x75\xc9\xca\xcb\x93\x4f\x3a\x12\x65\x81\x5c\x54\x5c\x45\x6b\x41\x86\x1b\x2d\x45\x58\x87\x41\x77\x85\x6f\x0d\x6a\xbf\xa0\x03\x02\x45\xde\x26\xa7\x23\x6e\xe4\x3a\xcf\x42\x4e\x57\xe4\x1b\x5d\x58\x15\xcb\xc9\x48\xfd\x00\xae\x2b\x67\xb5\xc1\xad\x4e\x2b\x67\xf7\x59\xcb\xc8\xbd\x20\x85\x5b\xc3\xf9\xbc\xb0\x0c\x68\x24\xc2\x5e\x1a\x61\xff\x59\x8a\x60\xf6\xa1\xb2\x3e\x55\x4e\x05\x79\x05\x52\x86\x9a\x8d\x9c\x67\x56\x85\x46\x9a\x5b\x9a\x3f\x96\x60\x90\xbb\x76\x4e\xe8\x30\xb8\x47\x5b\x2f\xaa\x52\x5a\x35\xfb\xad\x04\x86\xae\xb3\x03\x69\xf7\xa5\x4a\x45\x67\x31\xab\x5e\x52\xa3\xeb\x6e\x41\x81\x3a\xdb\x5f\x7f\xa2\xb5\x81\xb9\x54\xe9\xac\xd4\x58\xc9\xc5\xb7\x76\x60\xb4\xb2\xdd\xf1\x51\x70\x65\xec\xb3\x4f\x8a\x15\x39\x20\x09\x38\x53\x0b\x91\x89\x07\x1e\x6e\x5f\xa0\x0f\xf5\x83\x07\xdf\x48\x2f\xdf\xc3\x07\xdb\xd8\x03\xcf\x28\x29\x86\xe2\xf0\xa6\x7b\x33\x4c\xce\x0e\xc2\xa7\x52\x2b\x6d\x6b\xd5\xad\xbe\xb8\xbe\x7f\x14\x9b\xf6\x89\xdd\x43\x90\xb8\x6b\xf5\xfd\x9c\x0d\xf0\x83\x5f\x85\x77\x76\x7a\x2b\x56\x52\xdd\xa3\xbc\x08\x2b\x03\x0a\x64\xc9\x97\xa4\x87\xba\x4f\x1b\x31\xf1\x29\x11\x79\xc9\x64\xf9\xc2\x3e\x71\x2f\x36\x47\x28\xff\x73\x2e\x8b\xf1\x54\x9d\xc9\x05\x78\x46\xcb\xd0\x96\x61\x8a\x97\x95\x15\x19\x1b\xb4\xc0\x53\xff\x0c\x4d\x88\x61\x2f\xa3\x00\x48\x6a\xba\xae\x8d\xdd\x5b\x7f\x47\xc2\xbb\x5c\x87\xc9\xd8\x47\x31\x59\xd0\xfd\x60\x25\x0e\x40\x86\xd4\x12\x66\x43\x11\x0b\x52\x63\x0b\x1f\xd9\x5b\x11\x66\xc3\x5e\x29\x86\x6e\x65\x15\x78\x4b\x95\x6e\xbc\xd2\x76\x05\x74\xee\xe3\x1f\x6b\x1b\xf0\x57\x48\x97\xbb\xda\xaa\xb5\x0e\xff\x69\xaa\xc5\x42\x7e\x02\xff\x85\xd3\x19\x9c\x8d\x99\x14\xda\xd8\xbd\x01\x5a\x29\x73\x47\x09\x21\x03\x87\xa4\xce\xb5\xbe\x69\xed\xe9\xc1\xa4\x0f\x9d\xb3\xfd\x87\x4a\x14\x07\xcd\xb7\x17\x1c\x43\x80\xa7\x91\xcc\x6a\xf7\x06\xb8\x46\x4b\xde\x13\x7d\x16\xb7\x7a\xcb\x3b\xa6\x6e\x3f\xd1\x7d\xe7\x3d\x64\x7f\x1c\x3c\x90\xf8\x7e\xde\x23\x8f\x8c\x67\x76\x75\xf7\x06\x95\x9f\xb2\x17\xc6\x88\xa8\xf4\x39\x41\xe4\x7c\x52\x3b\x77\xe8\x20\x0c\x81\x61\x75\xb2\x92\x6a\x6a\x44\x3e\x19\x6a\x4c\xaa\xe5\x54\xb9\xb9\x35\x23\x86\x09\x01\xfe\x60\x63\x5b\xb5\x2a\x06\x3c\x7a\xd5\x6f\xec\x7e\xce\x73\x44\x50\x28\x61\x8c\x55\x81\x4c\x59\x70\xa9\x28\x5a\xe7\xe6\xc7\x4c\xad\x34\x69\x64\x24\x8c\xc0\x63\x34\x72\x92\x72\x14\x89\xd5\xa9\xc2\xdc\x22\xf6\x0d\x7b\x59\xf2\x25\xa2\x7b\x80\xa7\x94\x67\xc0\x70\x0a\xf6\x20\xf9\x5f\xa2\x34\x10\x7f\x22\x65\xfa\xea\xcd\xae\x3e\xd1\x5b\xf4\x12\x9a\x81\x43\x6e\xe7\x30\x4c\x90\x5c\x84\x7f\x88\xf4\xd5\xae\x96\xc2\x4b\xf7\x62\x33\x6a\x4e\x72\xf7\x2d\x7e\xcb\x0f\xc2\xe2\x7e\xae\x6b\x1c\x06\xdd\x3f\x1c\xcd\xe7\x22\xfb\x29\x7c\x28\xdb\x29\x8a\xde\x4a\xc5\x0f\x93\x41\xad\xc3\xeb\x97\x6b\x30\xdf\x74\x55\x28\x6c\x11\x3d\x4f\xe6\xd6\x39\x41\xab\x45\x30\xdb\x1d\xd9\x66\xae\x7e\x25\x07\x7c\xeb\x4a\x64\x79\xa4\x26\xd8\xfd\xe2\x69\x82\xb1\xb2\x93\x35\x5d\xd7\x95\x42\xca\x67\xc4\xf7\x3c\xd2\x49\x27\x91\x11\x1a\x1f\x4f\xd5\xc4\x5e\xd0\xa6\x2c\xb4\x5a\x66\x1b\xc6\xd3\x07\x69\x42\xc9\x42\x7b\x20\xab\xb5\x28\xa8\x0b\x69\xd0\xbe\xa2\x72\x5f\xdc\x5d\x6c\x76\x6c\xf6\xea\x03\x35\xd4\x95\xd5\xb4\x7f\x44\x0b\xd2\x8e\xd2\x38\x7c\x5c\x4b\x82\x03\x2d\x6e\x43\x76\x7e\x61\x27\xf5\x4f\xb1\x1f\x9a\xad\x83\xcb\xda\xc9\xcb\xe3\xa6\xc3\x9a\x66\x7d\x87\xb3\x7a\xf0\x85\xd0\xf7\x22\x70\xf5\x31\x2a\x4c\x68\xb3\xfd\xb8\x10\x26\x0e\x6e\x90\x31\xdd\xf8\x40\x1a\x35\xea\xbd\xb1\xb3\x5a\x48\xf0\x74\x99\x92\x97\x32\xa1\x5b\x40\x17\xe4\xaf\x27\x0f\x4a\xf7\xd2\x1e\x6a\x7d\x9a\x84\x67\xdb\x2b\xbc\x03\x3d\x81\xcf\xef\x76\x69\xd3\x71\xc3\xb6\x77\x52\xf8\x24\x3a\xcb\x86\x14\x24\x6c\x7c\xf9\x69\x78\x7d\xf7\x88\x42\x3f\x76\x01\xdc\x5a\xc0\xa9\x41\x57\x14\xcf\x28\x30\x68\x4a\x5a\xa5\xf8\x21\xbc\xd4\x36\xe4\x28\x98\x2a\xbd\x80\x92\x95\x59\x57\x8e\x42\x5e\xe8\xb5\x1c\x52\x33\x05\x61\xfb\xd7\x0e\xe5\xb1\x27\x66\xe6\xb0\x20\xe0\x68\xc5\xed\x45\x3d\x02\xfb\x06\x27\xe7\xe9\x8e\x33\xb4\xe6\xf9\x93\x26\x7c\x1f\xc6\xe9\x84\xad\x11\x60\x46\xb3\x07\xec\xe9\x02\xd2\x90\x61\x92\x1f\xf9\x26\x10\x1d\x75\x55\xc3\x50\x83\xb6\xc3\x9d\x7d\x7c\xa2\x16\x7a\xc0\xe1\x0c\xc4\x44\x74\xfa\xb8\xdb\xb3\xd1\xf9\xf3\x98\x1b\x5c\x7d\x9c\xd3\x3e\xe7\xf1\xb4\x6d\x53\x0f\x3e\x99\x6e\x06\x3f\x67\xc4\x3d\x16\x22\xd1\x3b\x7f\x1b\x72\xb7\xd6\x8f\x56\xd4\x22\x83\xe1\xec\x9e\xaa\xf7\xb5\x7d\xf8\xec\x73\xd4\x68\x07\x7e\x0b\xa9\x81\x57\xed\xad\x7e\x81\x39\xa3\x43\xd2\x6b\xb2\x0e\x64\x62\x1b\x56\xd5\xc3\xf5\xe8\x6b\x78\x1c\x6c\xc9\xed\x9b\x0c\x90\x66\x86\xac\x86\x90\x67\x44\x84\x0f\x0b\x99\x09\x33\x66\x93\x96\x70\xbd\xa3\x5b\xf0\xe9\x01\x98\xf8\xe9\xb4\xa7\xaa\x90\x51\x99\x7f\xa7\x23\x31\x09\xe5\x06\x63\xc8\x52\x14\x9e\x82\x40\xf9\x4a\x3f\x62\xae\x65\x21\xad\xcc\x42\x65\xb5\x84\xe0\xa5\x95\x05\x92\x62\x7f\x18\x3a\xf5\x2f\x68\xcc\x80\xb1\x66\x8e\x0f\x7b\xc6\x1e\x88\xe6\x92\x3e\x47\xc1\xd6\xfe\x6c\x16\xae\xd7\x5b\xfb\x46\x1f\xa3\xc0\x3d\x7b\xc0\xe8\xbc\x96\x3f\xdc\xa5\xfb\x0e\x5e\x75\x2e\x7c\xce\x16\x85\x00\x2b\x7b\xed\x19\xf2\xb0\x44\x86\xd6\x70\xdf\xdd\x9c\xfd\x78\x7c\x37\x61\xa2\x4c\x58\x26\xef\xc5\x54\x25\xe6\x01\x8c\xbe\x5f\x2a\x51\xda\x3f\x77\x38\x81\xe4\x5a\x28\x03\x92\x40\x96\x3d\xed\x35\x37\x31\xf6\x7f\xcf\xea\xef\xf7\xb1\xca\x3d\xab\xab\xdd\xbb\xae\x7a\x25\x6c\x53\x28\xd0\x87\x53\xdb\xe2\x65\x7e\x8b\xee\xf3\xf3\xb6\xda\xf6\x4f\x48\x7e\x57\x7f\xa9\xd4\x40\xa5\xeb\x34\xbc\x14\x8d\xa2\x43\xa7\x5b\xe7\x1c\x2a\xd7\x0c\xcb\xaa\xc7\x77\x5a\x5b\xdf\x27\x44\x02\xc9\x91\x43\x4a\x08\xdf\x0c\x2b\x0b\x21\x40\x84\xf8\xfd\x44\x77\x3d\xf1\xea\xf9\x0f\x8b\x5e\x1a\x4f\xd5\x7b\x87\x9f\x0c\x7f\x35\x21\xaa\xb4\x9e\x47\x05\x7d\xea\xad\x40\xb3\xa9\x34\xfe\x0f\x50\x9e\xd1\x54\x59\x89\xf5\xa9\x17\x52\xf1\xcc\x0f\x14\x7f\x69\x93\x12\x05\x57\xc9\xea\x50\x40\x84\x5c\xcc\x44\x36\x44\x13\x9d\x2c\xce\x33\x63\xf7\x77\x72\xdf\x71\x3a\x9f\x52\x81\x3d\x7c\x0c\xc6\x16\xa9\x8a\x2b\x0b\x80\x0a\x9e\x61\x7d\x68\xc1\x00\x71\xd7\xe4\x42\x40\xba\x37\xbb\x8a\xa4\xa9\x23\xe0\x0e\x93\x90\x7d\x82\x21\xf4\xc2\x78\x39\x55\x45\xa5\xc0\x0b\xee\xf1\xb7\x9c\x85\xea\x3f\x89\x43\xc3\x10\x36\x69\x69\xc5\x04\x16\xd7\xc1\x87\xad\x7d\xa6\x2b\x03\x91\xc7\xb5\x28\xed\x05\xf5\x52\x8c\x97\x63\x02\xc0\x8f\x58\x5e\xc8\x35\x80\x07\x7c\xec\x20\x5e\xba\x53\x5e\xf2\x4c\x2f\x9f\xdb\xab\xf4\xc4\x64\x2a\x37\x0c\x36\x39\xb3\x93\xbf\x14\x4a\x14\xf0\xa1\xe0\xcb\x6e\x3d\xc2\x3d\xbc\xdc\x1d\x92\x1b\x62\xc6\x14\xe6\x37\xde\x63\xc1\xab\x52\xaf\xad\x7d\xcb\xb3\x6c\x33\x42\x7c\x81\x60\x2b\x6e\x56\x6e\xa1\x31\x34\xdc\xe7\x6e\xa2\xc9\x3d\xe5\xc9\x4a\xdc\x94\xbc\xac\x5a\x31\x78\x8d\x51\x7e\x25\x54\xb5\xfe\xea\x0d\xfb\x53\xf8\xc6\xd3\x93\xd3\x1f\xce\x67\x67\x93\x9b\x93\xb7\x17\xe7\x67\xd1\xf7\xd0\x2f\xef\x27\x37\x37\xdb\x7f\xfd\x61\x72\xbb\xfd\xc7\xab\x0f\x57\x77\x17\x27\xb7\x6d\xad\x5c\x7c\xf8\xf0\xe3\xdd\xd5\xec\xdd\xc9\xe4\xe2\xee\xfa\xbc\xe5\xd5\xbb\xdb\xee\x1f\x6f\x7e\x9c\x5c\x5d\xb5\xb5\x7a\xfe\xd3\xe4\xd4\x76\x47\x7f\xff\x73\x74\xec\x00\x24\x61\x67\xa0\xe3\xfb\x9a\x27\xf3\x88\xd5\x1f\x7c\xc3\xee\x9a\x15\xce\x28\xe5\x0e\xe9\xe2\x1e\xb9\xb1\xc2\x0d\x32\x3e\xc1\x05\x1b\x66\xab\xeb\x55\x44\xa5\x27\x2b\xc1\x32\xad\xef\xab\x9c\x64\x1e\x7a\xdb\x95\x46\x8f\x90\x30\x51\x6b\x3f\x4c\x6e\xdf\x6c\x57\x5a\xf3\x8d\x45\xc4\xb8\xde\xb9\xfc\xc8\x91\x24\x02\xe4\x2c\x06\x17\xa9\x02\x57\x00\x29\x44\x3d\xf8\x25\xdb\xd5\x0f\xb6\xc6\x55\xd9\xe8\x26\x4d\x03\x9d\x16\x7c\x58\xd4\x70\x7d\xc1\x77\xcd\xa6\x9f\x0e\x2c\x31\xcb\xe6\x22\xe1\x15\x62\xf7\xed\x05\x56\x14\xba\x88\x07\x1c\x36\xca\xf3\x35\x4a\x1b\xac\xb5\xc1\xc6\x9a\xd9\x0f\x37\xf7\x32\xcf\x6b\xcb\x4e\x1b\x71\xff\xca\x43\x51\xbf\x07\x99\x94\x22\xfd\x6a\x5b\x2f\x0a\x6c\x0b\xa8\x37\xdb\x53\x6d\x87\x1c\x9d\x75\xa9\x96\xe8\x4b\x70\xe5\x15\x57\x1b\x8f\x37\x03\x78\x73\x00\x7c\x43\xb9\x17\x7b\xd7\xf8\xf2\x77\x12\x00\x64\xbc\x64\x8f\x02\x88\x87\x2a\xaa\x2f\x8b\x36\xbd\x95\x19\xd0\x1d\x22\x3f\x5c\xb5\xe8\x1a\x21\x51\xa7\x90\x7f\x0e\x45\xde\xbe\x6f\xc4\xb0\x20\xde\x5e\xf6\x98\x33\x6c\x14\xa4\xbe\xcb\x0c\x81\x11\x3f\x67\xd0\xaf\xe5\xa6\xdb\x73\x09\xd9\xeb\xa0\xcf\x78\x1c\x63\x5f\xad\x0c\xce\x80\x10\x7c\x5c\x2a\x65\xef\x5c\xdd\xea\x94\x6f\xec\xe6\x00\x10\x89\xa9\xf2\x5c\x17\x25\xeb\x68\x03\xb1\x0a\x38\x3e\xb8\xcb\xe8\x3b\xbc\x88\x84\x46\xac\xe6\x62\x5a\x2a\xee\xf5\x23\x11\xa3\x79\x8d\x62\x67\x51\x1a\x19\x18\x98\xbe\x3a\xea\xba\x66\xaa\xd7\x76\x68\x9b\x52\x7d\x48\x1e\x6e\x6e\x15\x87\xbe\xc5\xba\xdb\x7a\xff\xe0\x5a\x68\x5d\xf2\x4c\x2c\xca\xd9\xc0\x60\x17\xb4\xa8\xba\x78\x1f\xe5\x72\xf5\x0c\x2d\xf6\xb7\x3e\xbe\x21\xf8\xbb\x35\x39\x22\xcf\x43\xa1\x75\x89\x7a\x6f\xb0\x8d\x98\x9b\x4d\x70\x5b\x50\xa7\xc4\x98\xe0\x95\x4b\x6b\x4b\x20\x6a\xd0\x93\x0b\x8c\xa7\xea\x1c\x60\xc6\xc1\xc0\x71\x44\x0a\x60\x5d\xec\xb5\x2b\x1c\x81\x19\x14\xdd\xf9\xa2\x39\x4d\xdd\x75\x20\xc2\xbe\x47\x70\xaa\xc8\x36\x9e\x0d\x2c\x65\xb5\xf7\xfa\x9c\x1e\xf4\xa6\x3b\xd5\x12\x3f\x18\x8f\x8e\x29\x45\x4e\x1e\x7f\xfc\xce\x80\x87\x87\x68\xb3\xed\x6a\xcc\x7e\x76\x1e\x25\x48\x0f\xf3\xe9\x52\x0e\xe1\x9c\xf1\x8d\xa3\x8e\x6f\x9b\xd8\xe7\x60\x63\x7f\xee\x84\xb1\xdd\x13\xec\x69\x57\x5b\x66\xb9\x66\xd8\x2b\x85\x9e\xde\x01\xa0\xb0\x53\xff\xd2\x8d\xd8\x8d\x9d\x7d\x07\xc5\xfa\x29\xff\x00\x74\x16\x95\x6d\xfe\x11\x17\x0b\xf9\x5a\x1c\x48\x83\x8a\xa7\x53\x64\xd6\x9e\x1f\x88\x2c\x22\x9d\x0b\x5b\xc8\x2c\x03\x3d\x60\xcc\x4e\xd4\xc6\xd1\x9d\xd8\xab\xd0\xc1\x90\xe5\x52\xe9\x7d\x4c\x0c\x1d\x9b\x29\x89\x36\xd3\x4d\xf7\x66\x42\xfc\x47\x60\xbb\x7a\x9e\x1d\xf5\x0c\xcc\x87\x56\xb6\xf0\xed\xba\x39\xfd\xf9\x0e\x07\x38\x05\xe2\xdb\xfc\x4b\xe5\x10\x6e\x0d\x37\x7a\xf1\x6f\xed\x43\xff\xbe\xe2\x05\x57\x25\x64\xc6\x91\xd2\x5a\x88\x28\x41\x5f\x7c\x02\x14\xb3\x42\x07\x33\xfc\x29\x5e\x5c\x07\x25\x40\xf8\x99\x4c\x47\x4c\x8e\xc5\x18\x6a\x38\x17\x56\x97\x98\x87\x27\x57\x56\x73\x98\xaa\xad\x8c\x9f\x31\x3b\xc9\x8c\xa6\x37\x84\x4a\x32\x6d\x00\xc4\x3d\x8f\xe9\xf5\x61\xe7\x53\xb8\x6a\xbe\x01\xfb\x06\x96\x32\x34\xaf\xe9\x87\xe8\x45\x28\x45\x0c\xb1\xf6\x0c\x4e\x7a\xf8\xfb\x3f\x6b\x22\x0a\xee\xc2\x5f\x7c\xc6\xa2\x6f\x5b\xd7\xd0\x67\x5b\x24\x2c\x28\xbe\x6b\x81\xe0\x09\x58\x98\x90\x89\x15\xf1\x14\xb2\x97\xbc\x64\x99\xe0\xa6\x64\xaf\x5f\x0d\xc2\x9c\xb8\x0f\x0c\xd2\x95\x8e\x6f\xa0\x53\x70\x09\xb9\xb1\x72\xe7\x3b\x86\x0a\xd3\xbc\x28\x19\x67\x4a\x3c\xc6\xf9\x57\x1a\x52\xe6\x5c\xd9\x68\x11\x31\xc0\x60\xd6\x05\xf2\x57\x41\x4e\x33\x9a\x4c\x1d\x72\xc4\x15\x45\xa1\xb0\x2c\x0d\xab\x65\x67\x8d\x3c\xaa\x0d\x12\x16\xec\x43\x21\x35\x76\xc5\xcb\xa9\x22\xc9\xea\xe0\x28\x11\x19\xc2\x49\x96\xd5\xd3\x51\x39\x64\x5c\x2b\xfb\xc1\x76\xf4\xe9\xd8\x4f\xd0\x25\x98\x5f\x3e\x27\xb0\xe6\xff\x0b\x87\x05\xb3\x56\x3c\x2b\x68\xdc\x76\xab\xb6\xd3\xe6\xb7\xfe\x82\x4a\x70\x4b\xf7\x17\x7a\x29\x13\x9e\xf5\x50\x86\x45\xdb\x90\xf7\x1c\xac\xed\x58\xc1\x0e\xdd\xf8\xb9\x3b\xe8\xaf\x2a\xb7\xfb\xdd\xe1\x9a\x7d\xd4\x2d\x6e\xfc\x8e\xc5\x8d\x74\x8b\x43\x0c\x70\x9f\x9c\xfa\xa5\x22\xc9\xb5\xa1\x4f\x52\xa0\xc6\xd8\x2f\x05\x03\xd5\x84\x13\x1d\x98\xa1\x98\x46\x99\xef\x51\xa2\x2d\x81\x48\x51\xf0\xd1\x93\x1d\x11\xdd\xfc\xbf\xf7\xe7\x8f\xc2\xf7\xbb\x4f\xf1\xe0\xba\xed\x0f\xef\x56\xf6\x4e\xd2\xbf\xf0\x04\xf2\x61\xa1\x27\x97\x89\xbb\x4d\x5b\xea\x8a\xdd\x70\x08\x12\xb4\xaa\x87\x79\xa1\x13\x61\xcc\x98\x9d\xc3\x45\x43\xff\x64\x7c\xe1\x02\x1d\xd1\xc3\x53\x65\x2d\x13\xc7\x72\x18\xb5\x5f\xdf\xe2\x6d\x27\x00\x29\x93\x0f\x8a\x11\xad\xf7\x57\x32\xec\xb2\x26\x1c\x63\x33\xb4\x01\xc5\xcf\xd8\xf9\xf2\x0d\x4b\x75\x72\x2f\x8a\xe3\x42\xa4\xd2\xbc\x81\x98\x7d\xd9\x19\x2c\x5c\x5b\x6b\xfb\x60\x4d\xa3\x0b\x80\xb0\x87\x3a\xe2\x14\xfb\xa7\x94\x02\x97\x84\x36\x62\x72\x01\xe6\x84\xcb\x5c\xc6\x54\x3d\x47\x0a\x29\x54\x59\x6c\x10\xed\xec\x5c\x59\x8d\x89\x70\x96\x86\x55\xda\xba\x72\xee\x8b\xe7\xc0\xf6\x3c\xf1\xb3\x6f\x57\xc2\x08\x07\x64\xc0\x8f\x2a\x35\x65\xfc\xa1\xb8\xc8\x79\xb9\x32\x40\xf0\x52\x9f\x03\x32\xba\xe0\x55\x3b\x43\x3c\x07\x1c\x04\x7a\x29\xc2\x4b\x9e\x86\xc4\x94\x32\xcb\xa6\x0a\x13\x37\x80\x8b\xe5\x45\x2b\x8f\x94\x7d\x75\xc4\x78\x9a\xb2\xff\xef\xe5\xbb\x8b\xff\xb8\x3d\x9f\x4d\x2e\xc1\xe7\x3d\xb9\x38\x7f\x35\xf2\x7f\xfc\x70\x77\xeb\xff\x8a\x1e\x96\x07\x51\xb0\x35\xbf\x07\x13\x4f\x19\x41\x29\xc6\x62\xaa\xe2\x91\x3a\x86\x2d\xfb\x8b\x11\x0e\x41\x4b\x6a\x8a\x27\x1a\xa7\x35\xec\xa2\xe7\x25\xe2\xd5\x01\xc6\xef\xb5\x7f\x65\xf7\x1e\x74\x9b\xc7\x77\xe1\xd4\x40\xc8\x24\xe7\x26\xa2\x5c\x22\xdb\x37\x6c\x38\xa1\x96\x52\x75\xe1\xfc\x84\x7a\xf8\x9c\x4a\xfc\x8f\x62\x03\x40\xf3\x2b\x2e\x8b\xde\x7b\xaf\x9d\x33\xd3\x9d\x18\x6b\xa7\x73\xd3\x3c\x54\x06\x75\x61\xcc\x49\xef\xc4\x92\xb6\xd1\x25\xff\xea\x9f\x4b\x24\xac\xe2\x53\x59\x38\x2e\x37\x9f\xf5\xec\x08\x4f\xfd\x45\x13\xf6\xe0\x54\xdd\x7e\x38\xfb\xf0\x86\x89\x8c\xcf\x35\x24\xbc\x12\xd4\xc8\x35\x41\x13\x96\xe8\x75\xd4\x50\x8d\xc7\x6f\xc4\xf2\xc0\xe3\x17\x3b\xd1\xc6\xd8\xc6\x1e\x3e\xbf\x5c\x17\xdb\x2c\x78\xcf\x6b\x02\xd2\xc7\x5e\xe9\xa2\xcf\xf5\x6f\x1f\xc3\xbc\x90\xdc\x1a\x72\x0d\xc9\x4b\x77\xf3\x42\x70\xe0\x78\xa1\xb0\x10\xf9\xf2\x09\x18\x9b\x65\xb5\xaa\xeb\xf6\xe0\x98\x31\x85\xf6\xc3\x93\x5a\xb1\x1f\xbf\x35\x6c\x5e\x95\x53\x55\x6f\x43\x2b\x76\xf2\xf3\x0d\x7b\xcb\xcb\x64\xf5\x6a\xaa\x20\x4b\xf4\xc7\x6f\x3b\x08\x47\x07\x73\x78\xdb\x39\x39\xe3\x25\xbf\xd0\x3c\x95\x6a\xd9\x46\xe0\x1d\xaa\x4c\x9e\xdf\x9e\xbc\x61\xae\xd8\x4f\xc8\x97\x2e\x1d\x71\x4e\xd4\x10\x08\x64\xf8\x10\x27\x45\x28\x67\xb0\x46\x72\x8c\x96\x19\x5c\x58\x53\x75\x8b\xcc\xe5\x56\xaa\xca\x92\xe5\x9a\x2a\x9d\x5a\xab\x0c\x39\xdd\xb9\xe3\x11\x10\xd9\x86\xd9\xd9\x81\x6d\xec\x17\x83\xf4\x31\xd0\x67\xb6\x85\xfd\x54\x81\x81\xee\x33\xb8\x33\x9d\xf0\x0c\xb0\x7e\x47\x91\x4f\xcf\x9a\xed\xba\x02\x16\x25\x00\xd9\xa8\x4d\x1d\x92\xeb\x89\xbd\xbc\x52\x16\x2f\x14\x38\x00\x60\x1d\x29\x0e\xb9\xd6\x56\xe2\x20\x63\x31\x38\xdf\x32\x9c\x1d\xfb\xa2\x67\x30\xc6\x69\xb1\xbf\x7a\x72\x03\x5d\x29\xc7\xd8\x97\x80\xfb\x5e\x6d\x00\x16\x0e\xa5\x09\x35\x40\x4a\x82\x74\xa6\x4d\xb9\xb5\x8a\xfe\x4e\x8c\x5e\x9b\x2a\x44\x20\xd6\xd6\x25\xe6\xb8\x8c\x7a\xd7\x0a\x00\x92\xdb\x8c\x0a\x55\x4e\x80\x49\xd2\xf5\xf3\x42\x1c\x79\x9e\x80\xb4\x36\xa7\xf6\x86\x1d\xb3\xeb\xd8\xbc\x4e\x75\x52\xad\x5d\xfd\x11\xe0\x18\x20\x64\x1d\x5d\xa2\x7e\x87\xe0\xc5\xbe\x6f\xc7\x03\x97\x61\x29\x80\x64\xa9\xb7\x7d\x8c\x1b\xe6\x24\x7e\x75\x5b\x53\xef\x56\x7c\x41\x76\x1c\x86\x86\xc3\x86\x66\x79\xbd\xa5\x5a\x6b\x07\xb3\x77\x5c\x86\x1a\x09\xba\x00\x65\x4b\x7c\xca\x35\x38\xb9\x91\xc4\x40\xa7\x2f\x0c\x9b\x5c\x59\x0d\xc8\x5a\xbc\xfe\x0c\x56\xa6\x44\xd0\x1a\x66\xa3\xc3\xdb\x98\x86\x30\x62\x5f\xb3\x69\xf5\xf5\xd7\xbf\x4b\xd8\x27\xf7\x1f\xff\xfa\x2f\xff\xf2\xbb\x7f\x1d\x92\xa6\xe2\x0c\x72\x68\x37\xcc\x91\x2f\x3a\x5b\x57\x89\xe2\x15\xd8\x96\x54\x07\xac\x02\x1d\xc0\x03\xd9\x05\xba\x30\x49\x7c\x49\x27\xdc\xc4\x27\x93\xd5\x8e\x66\x40\x12\x40\x4e\x75\x4d\x42\x78\x65\x97\x34\xfa\x7f\xdc\x41\xe9\x3b\xb3\x47\xe5\x69\xd8\x29\x99\x79\xf5\xda\x36\xc2\x5e\x92\xff\xaf\x84\x00\xe2\x2b\x77\xc1\xe9\x2c\x15\x05\x8e\xc9\xbb\xec\xbc\x23\x11\x84\x83\xf8\x94\x67\x3a\x75\x45\x04\x02\x63\x86\x04\x05\xe1\xfc\x13\xb7\x92\x7b\x44\x64\xb3\x94\xb7\x0a\x91\x97\x05\x4f\x04\xe5\x58\xbf\xfc\xf4\xc6\xfe\x6d\xc4\x36\x6f\x00\x9c\x3a\x62\x7f\x7d\x43\x9c\x92\xbc\x28\x67\xf6\x4f\xaf\x9c\xae\x4d\x4d\xc0\xa0\xa5\x61\x2f\x8e\x1f\x78\x71\x0c\xe2\xf9\x18\x47\xf4\x22\x24\xa9\x63\xf5\xec\x58\x37\xcf\xb4\xbe\x27\xe0\xee\xd6\x8b\xc7\x8e\x9e\x18\xb6\xb7\x8f\x9b\xe0\xd2\x7b\xfa\xaa\x92\x1d\xc1\x03\x82\x8d\xf3\x39\x1b\xff\xc5\x68\xc5\xc6\x1b\xbe\xce\xe8\xaf\xee\x57\xc2\x15\x73\x43\xb9\x76\xa9\xc7\x08\x65\x1b\xf4\x94\xbe\xcd\xf4\x1c\xbe\xea\xbd\xfb\x52\x44\xe6\xc2\x40\xc3\xed\x13\x2e\x2c\xfa\x10\x47\xd7\x02\x2c\x9b\x6b\x5d\xe2\x23\x94\x36\xbb\xfd\x55\x9f\xfc\x90\xfe\x88\x71\x61\x98\x14\x97\x1c\x88\xce\x61\x8f\x8a\xb3\x8d\x7e\x62\x2f\x49\x04\xbd\xb2\x77\x0c\xc1\xa0\x71\x1a\xda\x3a\xd8\xf8\x0e\xfe\x23\xea\x40\x2a\x86\xe9\x9e\x3b\xde\xfc\xeb\xf1\x78\x3c\xf6\x6f\x03\xb7\xd3\xff\x61\xb2\x34\x22\x5b\x60\x4b\xee\x06\xdb\x4c\xd5\x7b\x57\x9e\xcc\x39\xaf\x03\xf1\x79\x5e\xe8\x52\x27\x3a\x63\x47\xc1\xa1\x9b\xea\xc4\xb0\x7f\xb2\x6a\x6d\x34\x95\xf0\x47\x6b\xc7\xb5\x9f\x29\xaa\x87\xf2\x85\x0e\x15\x39\xc4\x9b\xc7\x2a\xe6\x3a\xf6\x86\x2d\x37\x71\x92\x33\xec\x05\xbb\x73\x8e\x89\x0f\xb9\x28\xec\xc3\xe2\x53\x09\x3f\x75\xd0\x4d\xb7\x42\xe4\xdb\x6f\xca\x2d\x71\x1b\x58\xa7\x71\x5b\x77\x4c\x00\xb1\xc2\x92\x64\xc0\xef\x1c\xc5\xe1\x13\x7b\xb9\xa8\xb8\x60\x96\xa9\xd6\x6b\x5e\x6c\x8e\xc3\x69\xdb\xde\x9c\x81\x8f\x18\x64\x4c\xe6\x26\x00\x42\xb8\x19\x1d\x2d\x42\x31\x90\x7a\xe9\x6e\x34\x7f\x76\x13\xa8\x78\x1e\xf1\x7a\x09\x95\xe8\x94\xf6\x75\xc8\x6a\xad\x6b\x2c\xfe\x99\x6d\x5d\xc5\x21\x62\x4c\x70\xc6\xa9\x12\x89\xee\xe8\x09\xf7\x72\x87\xf8\xd6\x33\x53\x5a\x41\xb9\x1c\x10\x1e\x9d\x7c\xb8\x71\xef\xf4\xbf\x74\x61\x1e\xea\x2a\x3b\xcf\x62\x16\x69\xb5\x64\x05\x7f\x0c\xd7\x2f\x60\x3b\xd0\x3b\x53\xf9\x9c\x5f\xfc\xf7\xa9\xbe\x92\x99\xbd\xb5\x60\x8f\x8f\xa7\xaa\xf6\xe7\x11\x13\x99\x5c\x4b\xe5\xb1\x75\x28\xdc\xf5\x02\xb5\xe7\x7b\x59\xda\x25\x33\xe9\xbd\x95\x60\x8e\xfd\x34\x32\xa9\x4e\xd4\xc6\x6d\x1d\x1f\x98\x22\x0f\x44\x65\xec\xb8\x82\x8d\x0e\x6c\x00\x32\x15\x47\xa4\x90\xca\x68\xe3\xc1\xf9\x9d\x2a\xdb\x9a\x3b\x4b\x01\x86\x1c\xb5\x17\x35\x77\xe4\xca\x46\x45\x12\x00\xfa\xa8\x61\x89\xbd\xfe\xdb\xa2\xa0\x9c\xab\x6a\x7d\x68\x12\x0b\xc1\x92\x7f\x2d\x37\xdd\x55\x21\xdc\x4d\x45\x09\x51\x42\x55\x6b\x77\xa0\x06\xec\xb8\x73\x52\x7f\x52\x91\x64\x1c\xf9\x1c\x6d\x43\x80\x7c\x1c\x61\x80\x34\x8f\xfa\xc2\xeb\x05\xbb\xc1\x4a\x94\x99\x50\x2f\xf1\xdf\xaf\x18\xdd\x0d\x5f\x8f\xe8\x3e\x2f\x8c\xe7\xc9\xc3\x35\x87\x4a\xee\x22\x45\x1f\x3a\xd4\xee\x58\xf2\x22\x45\x6f\x79\x6c\x55\x60\x66\xb0\xd5\xbf\x36\xba\x62\x8f\xd2\xac\xa6\xea\x56\x3b\x87\x23\x53\xda\x57\x3f\x19\x81\x31\xba\xd5\x1f\x37\x20\x04\x60\xd4\x6d\x3b\xc0\x0a\xe1\x83\x72\x98\x00\x44\x3b\x53\x3a\x15\x87\xd1\x7c\xde\x86\x58\x85\x8b\x5f\x17\x02\xf3\xcc\xe0\xa6\xe8\x4a\xd3\x15\xc6\x0c\xf4\xcd\x37\x17\x1e\xee\x21\x6a\xc7\xf6\xaa\x1f\x07\xd5\xa0\x89\x19\x74\xfd\xad\x06\xad\x38\x8b\x33\xca\x32\xae\xcd\xbd\xaf\x29\x72\xe8\x22\x24\x2d\x9c\x9e\xbd\xee\x7e\xfc\xf6\x04\xa6\xdd\x03\x8c\x39\x5b\x16\xba\xca\x7d\x2a\xbe\x4b\x23\xc4\x65\x20\x9d\x66\xa2\x16\xfa\x0d\xd9\x54\x17\x52\xdd\xe3\x8e\xff\x5c\x6b\x84\x65\x63\x44\x5a\x23\x3b\xa6\x3b\x0c\x67\xfc\x88\x49\x95\x64\x15\x5c\x7c\xa6\xe4\xc9\x3d\x96\xbe\xe9\x72\xfa\xda\x77\x66\xfb\x93\x34\x3b\x34\xa6\x2a\xcb\xa8\xdb\x70\x81\x02\x9d\x20\xb8\x80\x1e\x24\x67\x9c\xdd\x5d\x4f\xda\xfb\xbe\x97\xdb\xc1\x9c\xf6\xdb\xb3\xbe\x41\xe0\xff\xfd\x28\x07\xe1\x2e\x1b\xe4\xd1\xa2\xb6\xd5\xbd\x73\xa9\xab\x34\x01\x6e\xd2\xd2\x1a\x10\xe9\x75\x8b\x6b\x7f\xf0\x3e\x5d\xe6\xd5\xcc\x4e\x54\x36\x04\x20\x60\x47\xf1\xfd\xd5\xdd\x49\xf4\xde\xae\xad\xf2\xfd\xd5\x1d\x8b\xfa\x40\x5a\xf0\x4c\x24\xa5\x47\x1a\x8f\xd9\x69\xa8\xd6\xd1\xd4\xcc\x53\xf1\x20\x13\x4c\x9d\x1d\x59\xad\x68\xaa\x80\x04\xdf\xda\x3a\x47\x8e\x39\x95\x7d\x7f\x75\x47\x7c\xab\x81\x37\x07\x0b\x8f\x00\x35\xc6\xb0\x6b\xa7\x41\x3f\xaf\xb4\x3a\x42\xca\xa0\x22\x0d\xd1\x8e\x11\x18\xd7\x09\xcf\xcb\x8a\x14\x8c\x87\xd7\x63\xb7\x26\xd7\x21\x12\x62\x87\xa5\xa7\xca\xea\x4a\x98\x63\x00\x35\xf2\xec\x47\x6f\x2f\x6d\x63\x52\x0f\x01\x07\xc0\xa4\x1d\x24\xfc\xa5\xcf\x1c\xe4\x6a\xc3\x78\x31\x97\x65\x61\xcd\x30\x7c\x79\x84\x0c\x67\x2b\x57\x07\x0d\xd7\x2d\x68\x46\x54\xd6\x10\x16\x58\xaa\xd2\x4c\x55\x94\x00\xe3\xb3\x8d\x31\x79\x41\x2a\x06\xa4\xd1\x80\xbd\x71\x24\xb6\x49\xa6\xab\xd4\x5d\xab\x85\x2f\x93\xb8\xc9\x51\x89\x9a\x2a\x60\x3c\xb1\x77\xab\xb6\x6a\x68\xb8\xfb\xdf\xb0\x8f\xea\x41\xa6\x92\x1f\x95\xc2\x64\xfc\xa8\xfc\xdf\x1f\x47\x8d\x3f\xf1\xd7\x5f\x7f\xfd\x11\x2b\x3e\x76\xd1\x39\x44\xac\x4d\x07\x3a\x78\xda\xe3\x14\x9e\xe9\xd2\xee\xd2\x03\xd6\xe9\x42\xde\x0b\xf6\x11\x97\xfb\x23\xd1\x5c\x3f\x6d\xd9\xa6\xaa\x6d\xdd\xd8\x53\x96\x0d\x8a\x0e\xb4\xaf\x1b\xdb\xb1\x6c\xaf\x97\xe3\x7f\x59\xce\xed\x6a\x7d\xb3\x1c\xbf\xfe\x1a\xfe\xb3\xb1\x46\xfb\x0e\xaf\xcf\x9e\x69\x1b\x76\x8b\x20\x6a\x39\x96\x5e\x16\x4d\xd5\x7e\x61\xc4\x86\xc9\x22\xd8\xb5\x6d\x07\x9f\x97\xe2\xd0\xac\x59\x64\x3f\x1f\x80\xbe\xde\xa2\x95\xdf\x19\x11\x3c\x90\x93\x3d\xf0\xa9\x03\xdc\xb3\x9b\x1c\x3e\x06\xe0\xc2\x8f\x03\x78\x7e\xe0\xf9\x7e\xdf\xd3\x78\x76\xcf\xe7\xec\x1e\x66\x26\xc4\x00\x66\x9a\x1b\xfb\x78\xcf\x41\xd6\x1e\xdd\x35\xc6\x47\x8e\x75\x27\xb7\xcb\x1d\xa5\x64\xad\x0f\x39\x45\x6e\x3b\xa2\xcb\xc4\xf8\xb4\x41\x3f\x12\x07\xad\xf4\xf6\xb5\xeb\x77\x49\x67\x29\x2e\x6b\xe9\xa3\x6e\x2d\x1b\x3f\x72\x45\x1c\x08\x85\xb3\x26\xf5\x6c\xdd\x9b\x4a\x3f\x74\x7c\x46\x2f\xbf\xdf\x22\xd6\xf7\xea\xe5\x7b\xc8\xf8\xf6\x24\x5b\x6b\xae\xac\xb6\xe6\x7a\xed\x08\x2c\xa1\x95\xff\xa4\x21\xdd\xe5\x4f\x1a\x10\xf6\xd8\x2f\x59\xcb\x75\xe5\x5a\x79\xc4\xd8\x2a\xcf\x30\x76\x50\xae\xc0\xad\x1c\x2a\x25\x3b\x31\x17\xdc\xcb\x58\x55\x39\xe3\xc5\x12\x9d\x5e\x46\x94\xe6\x55\xcb\x0a\x87\x3c\xb6\x03\x56\xd8\xa9\x5d\xb3\x61\xfc\x21\x4e\x1f\x03\x97\xca\xae\x93\xe6\x47\x59\x2f\xab\xe2\x2d\x2d\xd7\x7f\x5c\x33\x20\x24\xd7\x25\xba\xc0\x1a\x64\xc0\xf3\xda\xcd\xaf\x75\x20\xcd\xec\x25\x5f\x7b\xf6\x18\x6a\xcd\xa5\xfc\xe2\xe0\xe6\x02\x2a\x02\x75\x8f\xa1\x17\x87\x6c\xdf\x21\x10\xd3\x6d\xd7\x08\xa6\xea\xc4\x3d\x12\x78\xcd\x8d\x44\x2f\x0b\xa6\x23\x56\x73\xcc\x70\x01\x9f\x19\x0f\xb3\x4e\x1f\xd7\xf1\x11\x43\x13\xfd\x1b\x9f\x70\x67\x44\x11\x6e\xa3\xc0\x86\x1a\x7f\x47\x47\xcf\xfd\xb8\xa9\x77\x4a\x74\xf7\x89\xd4\x94\x9b\xcb\x3d\x1d\xeb\x62\x1f\xb3\xe4\xae\x4e\x1d\xe2\xc2\x9e\xe2\x25\xf0\x9a\x45\x05\xbb\xbb\x7a\xef\x6f\x26\xd1\x67\x40\xba\x13\x61\x7a\x31\x2b\x21\xdb\x84\x43\x12\xc8\xf9\x1b\x9d\x6d\xcb\x8a\xf2\xa0\xbb\x40\xf2\xf5\xac\xd0\xdd\x65\xc4\x7b\xcc\x97\x6b\xa2\x16\x31\x58\x61\x59\xd1\x0d\xfb\xa5\xe2\x19\x5e\xad\x8a\x0e\x83\x1b\x36\x38\x5f\xbe\xf9\x57\x76\x02\x77\x1f\x7b\x0f\x52\x19\x20\x63\xd0\x5a\xa9\x99\x5c\xe7\xa2\x30\x5a\xf1\xce\x7a\xfa\xf7\xdf\x9a\x19\xd5\x04\xb6\x86\xb9\xae\xb6\xeb\xff\x0e\xf8\x92\x96\xd6\xe2\x8f\xe2\xec\xbe\x9a\x8b\x42\x89\x12\x90\x88\xf0\x1c\x73\xcf\xf5\x1a\xae\xe6\x55\xb9\xfa\x66\x96\x64\xb2\x77\xa1\x62\xc8\x57\x3d\xb1\xaf\x9d\xe2\x5b\xbb\x3e\xa0\xd6\x7e\x6d\xe8\x8a\xe1\x6f\x0c\x7f\x1b\xb3\xb7\x3c\xb9\x17\x2a\x65\x79\x56\x2d\x25\xd1\xde\xa0\xb1\x21\xeb\x6e\x85\xfa\x87\xa1\x66\x83\xed\xdb\x4b\x70\xaa\xd6\xfc\x1e\x8b\x07\x91\x0a\x6b\xed\x96\x2e\xd2\x44\xef\xa8\x99\xc9\xed\xbd\xbb\x77\xb5\xfc\x6d\xbc\xdd\x4c\x73\xef\x99\x0a\xb3\xf5\x1e\x57\x9a\x30\x4e\x35\x3f\xd1\x80\x83\xeb\x77\xeb\x16\x3b\x99\x63\x90\x31\x22\xa9\x0a\xfb\x04\x0d\x06\x4f\x2f\x04\x10\xa1\x00\x56\xa5\x18\x07\x82\xb3\x17\x86\x55\xb9\x13\x22\x10\xd9\xca\x00\x67\x84\x4b\x60\x7f\xc8\x65\x72\x8f\xc8\x56\xc8\xdd\x60\xfe\xf3\xb6\x8a\x8c\x33\x11\x20\x96\x6d\xa2\x61\x81\xf4\x3e\x87\xa1\x66\xb6\xea\x67\xed\xd9\xa7\x3d\xf3\x52\xca\x95\x50\xb3\x27\x94\x71\xea\xbf\x68\xb5\x1c\x14\x52\xc2\x7d\x84\xd0\x4f\x61\xa5\x24\x91\x79\x07\x0b\xdf\xd7\x28\x91\x8b\x86\x12\x2f\x0d\x33\xbc\x94\xc6\xca\xb2\xd6\x19\x0f\xa4\x4a\x87\xcc\x3a\x1f\xc6\xe4\xd4\xc2\xe2\xd4\x98\x0b\x9f\xe7\x36\x66\xef\x20\xae\x12\xd9\x25\xda\x73\x22\x75\x09\xac\x72\x25\x3a\xc9\x81\x9f\x03\x20\xea\xbe\x20\x7a\x7e\x67\xb8\xcc\xe7\x34\x8e\xd9\x49\x88\x67\x23\x2b\x14\x46\xaa\xf7\x7c\x91\xc8\x8c\x78\xca\xe6\xeb\x15\xfa\x01\xcc\x17\x6c\x20\x26\xb1\x14\x09\x53\x11\x4b\xbc\x1f\xe6\x23\xd0\x06\xf0\x7b\xa1\x76\xf9\xf7\xfb\x8f\x10\x03\x30\x3b\x1d\x12\x3e\xb2\xa3\x31\xb8\xf3\x94\x01\xf6\x3f\x76\x81\x88\x4b\x2e\x8e\xed\x94\x5b\x23\x28\xb9\xa7\x64\x45\x8c\xef\x11\x95\xd7\xe3\x4a\x9b\xf8\x9c\xb9\xf5\x43\x3b\xba\xa8\x7c\x75\x36\x48\xf6\xf4\x13\x8c\x28\x4f\xa5\x63\xa6\x2f\x18\xb5\x3f\xa4\xe8\x54\xf2\xeb\xcd\x9c\x08\x85\x69\x00\x5c\x84\x6b\xaa\xe5\x34\xab\xbc\x7a\xae\xea\x3f\xfb\xe9\xb5\xb7\x67\x78\x6b\x40\x3f\x7e\x6b\x3e\x40\x7f\xcf\x41\x46\x83\x5e\xc6\xe7\x4f\x04\x7b\x62\x08\xdc\x43\x9c\x9d\xf7\x53\x43\x92\x08\x5d\x94\xb9\x4e\x59\xd8\xef\x5d\x99\x36\x4a\x69\x84\xb8\xfe\x06\x3f\x2b\x1a\x5c\xef\x6f\xdb\x77\xd4\xde\x47\x38\x39\x36\xaf\x64\x96\x22\x4b\x61\xa4\xa1\x6a\xa7\x02\x41\x21\x2c\xd0\x47\xa4\xf1\x17\x5c\xcb\xa6\xff\xf1\x5b\x73\xa5\xd3\x43\x36\xd6\x70\x26\xda\xed\x7d\xdd\x23\x8d\xc6\xc4\x58\xa6\xf5\xfe\x99\xc8\x75\x77\x02\x44\x3a\x33\xf5\xca\xcf\x3b\x06\x0c\x88\xb7\x79\xb5\xb8\x81\x32\xb3\x5d\xa4\x4c\x51\x05\x46\x97\x65\x6d\xd7\xd9\x76\xe3\x73\xfe\xba\x16\x85\x00\x54\x41\x1f\xe1\xec\xf7\x37\x1f\x2e\x8f\xd6\xbc\x30\x2b\x0e\xa4\x17\xae\xad\x91\xab\xdc\x8f\xde\x02\x07\xec\x90\x6a\xaa\x8e\xd8\x52\x8f\x10\x46\xf4\x86\xad\xca\x32\x37\x6f\x8e\x8f\x97\xb2\x5c\x55\xf3\x71\xa2\xd7\xc7\x61\x6a\x8e\x79\x2e\x8f\xe7\x99\x9e\x1f\x17\x02\x12\x49\x8e\x5e\x8f\xbf\x79\x0d\x2b\x73\xfc\xf0\xfa\x18\xc0\x23\xe3\xa5\xfe\xa7\x8b\x6f\xfe\xed\x77\xff\x6a\x1b\xce\x37\xe5\x4a\xab\x37\x84\x51\xda\xd9\xf6\x11\x9a\x09\xc7\xf8\x4a\xa3\x97\x7f\x1b\x7f\x1d\x0f\x83\x1e\x5d\xeb\x54\x64\xe6\xf8\xe1\xf5\xcc\x2d\xcc\x38\xef\xa8\x98\xf1\xf7\xd4\x8b\x2f\x90\x7a\x71\x2f\xcb\xbf\xa7\x5e\xfc\xaa\xa9\x17\xfd\x55\x2e\x2f\x63\x80\x23\x3b\xc8\x47\xfb\x77\x2f\x23\x5d\x24\x62\x9f\x1c\x6a\xb9\x1c\xe2\xc4\xb8\x03\xae\x88\xfd\xa5\x0a\x77\x5d\x00\xde\x96\xe9\xf0\x38\x0e\xad\x53\xd3\x69\x5d\x0c\xe2\x01\x01\xa0\xa3\x4c\xc0\x57\x18\x95\xae\xdb\x9e\xc4\xa8\x6e\xcf\x01\x53\x88\x75\x44\xda\x49\xcf\x7a\xd6\x53\x14\x0e\x00\x58\xab\x49\x82\xd0\x5d\x70\x03\xd1\x51\x0b\xf5\xfe\x48\x9d\xe8\xb0\xe8\xe5\x5a\x0c\x1f\x4f\x08\xfe\xa7\xbc\x14\x47\xb6\x91\x1d\x03\x06\xae\xdf\xae\x71\xd6\xca\xf1\x35\x6b\x40\xc6\x03\xc5\x62\x5b\x22\x9d\x3d\x4b\xcd\xb1\xd6\x3e\x10\x0e\x3b\xb8\xfd\x2d\x93\xa3\x87\x55\x40\x00\xf1\x83\x36\xd3\x67\xac\x0e\xf3\xdc\x65\x61\xe8\x73\x9f\x58\x12\x26\xc3\xb7\x1d\x9c\x5d\x3f\xba\x52\x30\xcf\x51\x40\x25\x40\xf5\xfb\x15\x4f\xc1\xf3\x00\x63\x71\xe3\xea\x18\xc6\x8a\x9b\xa7\xe5\x45\x9c\x20\xfb\xb2\x0f\x83\x23\xa8\x5c\x1a\xd7\xa1\x53\x44\x1c\xf1\x94\x3d\x52\x8e\xdf\x32\xaf\x8a\x5c\x1b\x61\xc6\xec\x9d\x2e\x90\xd1\x8c\xe8\x86\x42\xae\xc7\xf5\xbb\x53\xf6\xfa\xdb\x7f\xfb\xdd\x54\xbd\x6c\xd1\x03\x41\x7f\xd0\xc5\x92\x52\x4f\x40\xfb\x5b\x73\x53\x8a\xe2\xb8\x58\x24\xc7\x78\x6b\x1e\xdb\xf7\x8f\xa8\xd3\x23\xbd\x38\xf2\xd5\x21\x8e\x88\x28\x7f\xbc\x4e\x5f\x75\x81\x32\xdb\x6d\x8d\x5f\xcd\xde\x3b\xe9\xb0\x49\xda\xd6\x77\xff\x9d\x52\x3b\x42\xa8\x83\x91\x02\x66\x40\x59\x43\x16\x4a\xbd\xf0\xf5\x8c\x30\xc5\x19\x4b\x9f\xe9\x45\xcb\x7f\xbc\xcd\xf4\xdc\xbc\xf2\xdc\xb7\xdc\xb8\x3e\x02\x19\x65\xdb\x95\xb5\x75\xe6\x0e\x71\x3c\xd0\x54\x7c\x4e\x8f\xa2\x93\x89\xf1\xb2\x0d\x99\xf8\x76\xa1\x11\xd4\x60\xa4\xe2\xe2\x85\xae\x94\x2b\x18\xa2\x95\xd0\x0b\x40\x78\x81\x85\xe8\x00\xaa\x10\x54\x01\xd8\xa3\xa7\xdd\x2a\x44\x8e\x8a\x17\x84\xff\xba\xa7\xfb\xc0\xa2\x39\xfb\xe6\xf9\x73\x14\xcd\x39\x74\xde\x49\x30\xfe\x4a\x13\x7e\x68\x16\x09\x1e\xa5\x21\xe0\x2b\xfb\xfc\x5e\xa0\x85\x97\x03\xa1\x3c\x7b\xa8\x4f\x91\xf3\x02\x8c\x17\x71\x54\xea\x23\xe0\x2b\x04\x16\x3c\x2c\x63\xd5\x85\xbe\x02\x80\xca\x90\xeb\xde\x3e\xdf\x63\x9c\x68\xb0\x7e\x8a\x06\x4a\xba\xba\x41\xf2\x77\x42\xe3\x4b\xa5\x44\x41\xc1\xef\xbd\x9a\xc1\x40\xf8\x4a\xbc\x94\xbb\x06\x1b\x7b\x68\xe2\x12\x43\x3e\x15\x93\x47\x42\x60\xcc\xc0\x2a\x5b\xe9\xb5\xb6\x6a\xbe\xae\x4c\xf4\x23\x5a\xf5\xa0\x4c\x74\xda\x24\x6b\x9e\xa3\x6a\xfc\xeb\x7d\x8d\x3d\x5a\xf6\x27\xf4\xbe\xc7\x0f\x0d\xaa\xda\x36\xaf\xd7\xa9\xda\x33\x7e\x5f\x60\x68\xf7\xbe\x01\x70\xd4\x1a\xa2\x9d\x50\xc9\x9b\xca\x86\xc8\xbf\x5a\x7b\xdf\x6e\x29\x6f\x41\x7b\x0d\x04\xb1\x7c\x48\xc3\x1d\x23\x57\xdd\xad\xdb\x49\x94\x53\xad\x07\xae\x81\xcf\x2f\xeb\xb3\x00\x5c\x61\xc6\x95\x4b\xb5\x3a\x6a\xcd\xb5\xea\x3a\x97\xe0\x52\xac\xac\x65\xe2\xa8\xe2\x87\x0d\xf5\xc6\x37\x40\xac\xf0\xdb\xe3\x0e\x4c\x9b\x90\x98\x87\x73\x8c\x02\xc1\xe9\x16\x5d\xf8\xee\xe1\x87\x11\x6a\xf6\x0d\x99\x3b\xe8\x04\x37\xe7\xd6\x0c\x46\x67\xa1\x6b\x02\x87\xb9\x9e\x77\x79\x72\xdb\xa0\xfd\x48\x4e\x1c\x12\xb7\xed\x28\xb7\x9c\x2a\xfe\xc5\x87\x50\x17\x1a\x90\xcf\xf3\x0a\x7e\xbf\xfc\x70\x1b\x83\xba\x24\x7e\xed\x51\xb2\x12\xc9\x3d\x38\x12\xf1\xca\xc3\xc3\x40\x3c\x04\x80\x34\x0f\xd5\x64\x4b\xed\x30\x42\x1b\x5f\x60\xc7\x17\x99\xd2\x05\x4b\xa5\xc9\x33\xbe\x01\x34\x86\xc2\x14\xcd\x80\xe4\xf0\xb9\xcd\x56\x14\xec\x8b\xa3\xf4\x5f\x69\xbb\x2a\x27\xe1\xbd\xa1\x73\x19\x30\xf7\x61\x32\xb7\xe5\x01\x33\x62\xcd\x55\x29\x93\xa9\x5a\x0b\xae\x62\xf0\x2e\xa1\x51\xec\x24\xa7\x5a\x50\xa9\x88\xc5\x42\x24\x65\xe0\x9a\x06\x23\xc4\xcf\xd4\xbe\x33\x38\xec\xdb\xfd\xc9\xdb\xf9\xe9\x3f\xb8\x8a\xd7\x72\x0d\xd0\x70\xda\x43\x74\x35\x3e\x31\xca\x0a\xd5\x87\xe9\xca\x75\x46\x2d\xfc\xcb\xed\x29\x36\x17\xe5\xa3\x00\x2a\x25\xe2\x7e\x68\xd3\xf1\x0f\xae\x40\x75\x48\xde\xe4\x89\xa7\x5e\x24\x66\xfd\x2d\xee\x64\x3a\x60\x31\xe6\xd4\x73\x3e\xaa\x06\x79\xe3\x0b\x62\xa3\x00\x2f\xe8\x0b\xf2\xe7\xbe\x80\x6b\xda\x5a\xc1\xc5\x83\x48\xa7\xaa\xce\xa8\x49\x3a\x63\x38\x70\x2c\xd4\x56\x7d\x1e\x69\xe3\xe6\xb8\x57\x8c\xeb\x1c\x58\xc4\x02\x7f\xb8\xe7\x5b\xd8\x51\xeb\x15\x3f\xfa\x73\x5a\x55\xae\xcc\x74\x5f\x63\x38\x94\x5f\xa5\xda\x89\x54\x6a\xb9\x06\x7c\xf2\x9b\xd2\xf3\x05\x22\x99\xb0\xc7\xc9\x93\xbf\x7e\x2b\x02\xd0\xd6\xc6\x54\x39\x22\x9d\x45\x95\x21\x41\x7c\x57\xba\x12\xd1\x87\xba\xa4\xdf\x5f\x2f\xf9\xdb\xfb\x9b\x59\x54\xae\xd6\xe3\x93\xa2\x9c\x05\x94\x75\x6e\xd7\x0b\x65\x2a\x50\x29\x5c\xa5\x4a\x08\xc8\x2c\x45\x09\xb7\x79\x5a\x65\x88\x55\x85\x48\x12\x50\x91\xf2\x2c\x63\xb2\x34\x53\xe5\x99\x53\x31\x27\x09\x24\xac\x0b\x35\xa5\x64\x72\x41\x17\xd0\x2c\xfc\xcc\x15\xe8\x61\x32\x91\xe5\x56\xa6\xc7\x26\xae\xee\x96\xe7\x82\x23\x8d\x01\x2e\xdb\x54\xc5\x36\x57\x73\x11\x28\xe7\x9f\x67\x92\x9b\xe7\x48\xbf\xdf\xe1\xb8\xb5\x5d\x3c\x09\x60\x84\x5f\x67\x0d\x2e\x57\xb8\x1d\x47\x4b\xd4\x49\x04\xc8\xb6\x56\x4d\x69\x5c\xec\x28\xd8\xad\x90\xce\x94\x54\x19\x2f\x30\x8f\x6b\x51\x65\x4c\x2e\xa2\x1a\xf4\xb0\x06\xc8\x9b\x69\x97\x2b\xd1\x70\x57\xbb\xe8\x91\xe1\x6b\x11\x51\xf6\x90\x7b\x27\x8b\xc0\x4e\x58\x0c\x04\x51\x34\xb6\xad\x57\x63\x76\x16\x98\x81\x71\x85\xe1\x4c\x44\x7c\xdb\xd2\xa0\xf8\xf3\xe3\x8d\xd8\x26\xe0\xeb\xec\x10\xb5\xb2\x27\xd2\x9f\xba\x8e\x15\x84\xba\x3d\xc3\x90\x54\xae\x6a\xd3\xee\xe4\x82\x56\xb6\x19\xfb\x6a\x03\x5f\xe5\x0f\x44\xc7\x00\xdd\xad\x30\x70\x90\x31\x57\xf9\x13\x06\xea\xb9\xe0\x5b\x06\xbb\xde\x51\xf2\x1e\xd6\x71\xe0\x50\xa3\x02\x92\xc3\x07\x1a\xed\x9c\x18\x37\xd7\x67\x66\x97\xbc\x1c\x0a\xa2\xf3\x39\x7b\xc3\x07\xda\x0a\x58\xec\x33\x4c\x90\x1e\x03\xc7\x79\x62\xdf\x79\xe2\x40\x4d\x35\x3f\x42\x01\xed\x4b\x41\x81\xa8\x10\x3c\x59\xd5\xe9\x33\x1c\xc9\xb5\xff\x02\x48\x9f\x84\xf3\x38\x9c\xf9\xe3\x24\xec\x39\xa8\xa1\xc9\xec\xf0\xc7\xec\x83\x12\x08\x71\xd5\x8b\xe8\x52\xa1\x01\x50\xb1\x4d\xa8\x33\xe4\xa5\xdc\xdc\x0e\x4c\xdd\x3b\x56\x31\x7b\xe4\x46\x8c\x87\xd6\x41\xea\xe1\xb6\x41\x29\xd2\xa1\x4b\xb6\x55\xe5\x3a\x40\xbd\xec\xc7\xcd\xd1\x6e\xf3\x47\x48\xf1\xe1\x12\xa0\xed\x3b\xfa\x2f\xcb\xce\x94\x0f\x6f\xc5\xb9\x3c\x8f\xfa\xbe\x61\x88\xfb\xde\x37\xbf\x57\xab\x3a\x5c\x78\x40\x6d\xcc\xbb\xcb\xb3\xf3\x77\x93\xcb\x7a\xe9\xc9\x3f\xdc\x9d\xdf\xd5\xff\x72\x7d\x77\x79\x39\xb9\xfc\x3e\xfe\xd3\xcd\xdd\xe9\xe9\xf9\xf9\x59\xfd\xb9\x77\x27\x93\x8b\xc6\x73\xf6\x4f\xf5\x87\x4e\xde\x7e\xb8\x6e\x94\xd0\x6c\xa9\x7f\x79\x3b\x79\x7f\x7e\x36\xfb\x70\x57\xab\xc2\x79\xf6\x1f\x97\x27\xef\x27\xa7\xb3\x96\xf1\x5c\x9f\x9f\x7e\xf8\xe9\xfc\x7a\x4f\xad\xcc\xf0\xbd\xad\x53\xfa\x1c\xb0\xca\x27\x97\x54\x3d\x61\x8b\x42\x0a\x95\x66\x1b\x4c\x92\x71\x96\x6d\x03\xf5\xde\x08\xb8\xeb\xea\x90\x5c\x97\xdb\x95\x60\xfa\x41\x14\x40\x80\x86\xad\x11\x5b\x4a\x20\x5b\x68\xf6\x5a\x88\xb2\xd8\x8e\x0a\xec\x4c\x28\x2c\x8b\x8d\x4f\x59\xdd\x35\x9c\x40\x9e\x49\x9d\xb0\x5c\x14\xbb\xc6\x02\x9a\x51\x51\xe5\xa5\x9c\x77\x67\x2f\x0d\xe6\x1c\xe8\x6b\x7b\x23\xd5\x73\x3b\x2f\xde\x65\xbb\x60\xac\x25\xf1\x1c\x92\x21\x00\x2d\x3c\xb5\x52\xb0\x7f\xdb\xa1\xaa\xf3\x6a\x9e\xc9\x84\xc9\xb4\xe9\x4f\x21\x2a\x10\x70\x19\x37\x19\xe1\x73\x51\x80\xaa\x6a\x2d\x80\xbc\x10\x47\xbc\x2a\x57\xc8\x5e\x4a\x39\x43\x54\xbf\x67\xaa\x8c\x48\x0a\x81\xb1\x00\x61\xc0\x49\x8b\x95\x60\xa3\x9e\x60\x30\x44\xde\x93\x02\x4f\xe0\x38\xaa\xce\xd3\x11\x23\xc0\x37\xb1\xf5\x01\x4e\x52\x7c\x7e\xe7\xd4\xd0\x88\x25\xd6\x9a\x8d\x10\x71\x70\xc3\xe3\x8f\xae\x9e\xac\xfd\x6e\x2b\xa9\x7d\x3d\x55\x5c\x64\x97\x64\xd5\xfe\x19\xfb\xf6\x58\xbc\x51\xea\x59\x47\xd4\x3a\xfd\x74\x5a\x08\xb8\x44\x08\xd2\xe0\xfc\x17\x00\xe9\xa2\xa4\x2c\xc8\xc5\xb2\xa6\xda\x5c\xac\x78\xb6\x40\x8d\xc3\x2e\x4d\x3b\xa1\x0a\xb6\x7f\xab\xef\x85\xba\xc6\x05\xfb\x55\xc4\xa1\x42\xcb\x27\xd0\x39\x79\x8f\x50\x70\x61\xda\x31\xba\x5d\xe5\x52\x62\x41\x99\x2a\xd1\x4e\x88\x7e\xc6\xdc\xab\x50\xac\xc1\x65\xd3\x2e\x16\xf2\x93\x6d\x70\xaa\x44\x2b\x5d\x3d\xe0\xe8\x1c\xb1\xa6\x97\xcb\x80\x19\x44\x76\xc2\x7b\xa1\xa0\x94\x2c\xf0\x22\xee\xdf\xb3\xc3\xfc\xe7\xdb\x6b\xb1\xc3\xa1\x0f\x3e\x3f\x59\xab\xb0\x1b\x47\x79\xdc\x3c\x95\x98\x0c\xe7\xe9\x47\x60\xdf\x9c\x5e\x4c\xce\x2f\x6f\x67\xa7\xd7\xe7\x67\xe7\x97\xb7\x93\x93\x8b\x9b\xbe\xc7\xef\x39\x12\x18\x1b\xa7\xaf\x99\xc7\xe7\x25\xc4\x31\x9d\xbc\x90\xc5\xef\x3f\x2a\x1c\x3b\x58\x92\xfd\xa3\x97\x69\x3e\x4b\xa5\x49\xec\xf5\xb7\x99\x09\x95\x42\x9d\x8f\x27\x6d\xd5\xf6\xa6\x9a\x5f\xe1\x9f\x60\xfe\x09\x27\x41\xf0\xb6\x7b\x70\x3b\xda\xff\x0e\x68\x54\x70\x43\x16\xc2\x1e\xfe\xb4\x46\xaf\x32\xde\x5f\xdc\xcd\x36\x77\xd8\xb7\xd5\x9b\x68\x7e\x13\x8e\x57\x1a\x53\x01\x8b\x8b\x7b\x0c\xa0\xb8\x1d\xb3\x42\xe4\xcb\x71\xb1\x11\x19\x15\xe0\x67\xd2\x4c\xd5\x9a\xab\x94\x97\xba\xd8\x74\x7c\x62\x3f\xe1\x19\x1f\x9b\xba\x08\x8d\xaf\x6c\x25\x44\xea\x56\x01\x1f\xe5\xaa\xb9\x95\xb0\x24\xc9\xed\x87\x1f\xcf\x2f\x6f\x66\xe7\x97\x3f\xcd\xae\xae\xcf\xdf\x4d\xfe\xe8\x11\xc2\x39\x37\x6d\x75\xb5\xf3\x42\x58\xe9\xe2\x18\xde\x5a\xe5\x0b\x56\xab\x76\xed\x50\x85\x52\xb9\x98\x2a\x27\x59\x8a\xd0\xfc\xaa\xd0\xd5\x72\xd5\xde\x50\x73\x94\x57\x27\xb7\x3f\x3c\x69\x98\xc0\xbf\x89\x25\x6d\xf1\xb4\x6d\x23\xa5\xe5\x82\xe4\x1e\xc2\xab\x1b\xc3\x03\x16\x59\x78\xb4\x2d\xca\xd0\x21\xd1\x9e\x64\xbd\x6c\x0b\xad\x9d\xca\x7f\xcb\xe3\x5d\x1b\xe8\x36\x92\x9b\xb5\x6b\x04\x90\xfb\x58\x17\x7d\xab\xb5\x37\x2d\x7f\xab\xdd\x60\xdf\x1c\x65\x62\xb9\x14\x29\x6e\xaf\x66\xc3\xe4\x83\x23\x11\x98\x84\x7b\xbd\x6d\x16\xa9\x76\xf1\x01\x17\xb3\xc7\x7b\xf5\x17\xe0\x57\xfe\x95\x76\x59\x71\x4a\x1c\x5a\x10\xdf\x2c\xb9\xea\x08\x24\xef\x4f\x85\x6b\x6f\xfe\x43\xc1\x7c\x96\x22\x39\x4c\x5c\xc8\x20\x9c\x83\x2e\xc0\xcb\xe1\xf8\x56\x3f\x8e\x6b\x91\x67\x3c\x11\x3e\xb7\x07\xc9\x8f\xc1\xae\x7f\x4a\x00\x8f\x2a\x44\x2b\xf2\xb7\x44\x95\xa3\x43\x51\xbc\xb6\x2d\x00\x9e\xdb\x6b\x27\x8f\x3f\xbf\x6b\x65\xa7\xe1\x46\x94\xa7\xe0\x68\xc6\x12\x9d\x94\x12\x82\xbe\x28\xa8\x7b\xdb\x09\xd7\x1f\xb4\x1d\x1a\x3d\xff\x44\x0b\x8f\x36\x73\xdd\xd1\xcd\x1d\xa9\xb0\xdf\x1e\x5e\x75\xdc\xe5\x2f\x2c\xcb\x62\x27\x0f\xf9\x73\x84\x23\xae\x0a\xbd\x96\x46\x9c\x94\x65\x21\xe7\x55\x5c\x88\x79\x20\x60\xae\x66\x9c\x84\x0f\xce\x0b\x9d\x56\x89\x63\x0e\x83\xaf\x0d\xb0\x1f\xf2\xf2\x39\xad\x23\x65\x47\x76\xf7\x91\xe5\x26\xd2\x23\x48\x74\x41\x6a\xbb\xb6\x18\x9b\x13\x8c\x1d\xbe\xbf\x2b\x77\x95\x3f\x73\xba\x6c\xf7\x64\xba\x3d\xd0\x2f\x03\x9e\xb9\xc7\x41\x03\xee\x40\x4d\xd1\x76\x99\x73\x0c\xa0\xd7\x75\x94\x2e\xa2\x20\x7f\xd5\x0c\x03\x77\xf5\xc3\xc6\xd4\x33\xc9\x50\x6f\x58\x71\x83\xea\x7c\x99\xac\xea\x03\x87\xaf\xa9\x13\x26\x37\x87\xeb\xd5\xe3\xc3\xdc\x26\xbd\xc2\x68\x23\x74\x34\x48\x72\x6c\xd7\x8a\xdf\xfa\x4a\xde\x9d\xfe\x7b\x4c\xb9\x98\xfd\x52\x89\x21\x05\xad\x5d\xaa\xc6\x1f\xe0\xb5\xbd\x80\x14\x89\xd8\x2d\xef\x7b\x85\x4c\x13\x23\x78\x91\xac\xd8\x9c\x1b\x62\x62\x8c\x89\x22\xb0\xf2\x3e\x93\xf6\x2d\x9e\x94\x54\x89\xd8\x75\xeb\xaa\x11\xdf\x3a\x28\xa4\x55\x6b\x83\xd7\xa3\x6d\xbb\xed\x9b\x80\x21\xde\x6b\x37\x8c\xc9\xd9\xa0\x18\x42\xac\x87\x7b\x3b\x19\xaf\x58\xb8\x9d\x32\x5e\xa9\x64\xc5\xf2\x8c\x23\x97\xc6\x8a\x1b\x14\x14\x0e\xa1\xc3\xe7\x32\x93\x25\x50\xa4\x61\xe0\xb8\xb1\x6f\xad\xf1\xcc\x8b\x7b\x57\x69\x82\x07\x3e\xbc\x5d\xa2\xe4\x40\x24\xb4\xff\xaa\x2f\x8a\x85\x0e\x82\x30\x16\xee\xfd\x0e\x3b\xe1\xa0\xc3\x72\xd8\xeb\x0d\x0e\x7b\xf8\x96\x61\xd1\x21\x6a\xf1\xaa\xf9\x7a\x63\xbe\x29\xd1\xeb\x30\xd9\xbd\x23\x05\xec\xb3\x80\xce\x43\x42\xdd\xee\x6b\x74\xfb\x83\x5b\x94\xe0\xe1\xc0\x27\xaa\x19\xf5\xa4\xa4\x37\xac\x28\xd5\x7a\xee\x17\x99\xe6\xe5\xee\x84\x3a\x2c\x10\xd5\x99\x50\xa7\xab\x79\x57\x49\x12\x1c\x55\xaf\x74\xbd\xd6\xf7\x9d\xf8\x7f\x2e\x9f\x7b\x7c\x8f\xf2\x52\x40\x1a\xe0\x81\x59\x84\xed\x8d\x53\x02\xf7\x60\x32\x0e\xbf\x0d\x42\x99\x42\xaf\xfb\x03\x24\xb5\xe5\x38\x35\x95\xbc\x83\xd2\x3d\x0f\x5b\x2f\xa9\xf6\x6c\xa5\xfd\x95\xcf\x7e\xf7\x4d\x9f\x6c\xc4\x3f\x54\xdc\x5e\x00\x1f\x16\x37\xc8\x8d\x76\xc8\x47\x97\x72\xfb\x58\xb5\x8b\x81\x66\xaf\xb7\xf5\x28\x6d\xbc\xf1\x7b\x13\x3d\xb4\x7d\xcd\x8d\x7d\xbb\xbf\xd8\x9d\xd4\xbc\xb1\x79\x21\x35\x70\x84\xe9\x45\x4d\xd7\x68\x91\xc4\xad\xfd\x1e\x30\x93\xbf\x54\xa2\x12\x76\x03\xcd\xab\x74\xb9\x1d\x2c\x19\x60\x70\x85\x4f\x5a\xe9\x47\xb6\xae\x92\x15\x73\x8d\xb3\x54\x64\x7c\x53\x57\xa3\xac\xad\x51\x6a\x60\x8f\x1e\x44\x95\x18\x71\xfe\x27\x95\x29\xf5\x1a\x70\xea\xa1\xdd\xa2\x52\x70\xca\x19\x77\xa7\xab\xed\x42\xab\x71\x99\x3e\x31\x42\x7e\x73\x75\x7e\x3a\x79\x37\x69\x84\xa7\x4f\x6e\x7e\x8c\xff\xfd\xf3\x87\xeb\x1f\xdf\x5d\x7c\xf8\x39\xfe\xdb\xc5\xc9\xdd\xe5\xe9\x0f\xb3\xab\x8b\x93\xcb\x5a\x10\xfb\xe4\xf6\xe4\xe6\xfc\x76\x4f\x9c\x7a\xbb\xd7\xee\x85\xe0\x11\xd5\xaa\x43\xce\xbb\x3a\x42\xce\x5d\x45\xbd\xbe\x61\x27\x8e\x78\xb6\x46\x8d\xec\xb0\x06\x00\x4e\xca\x10\x63\x89\x90\x84\x33\x5e\xf2\x53\x5e\xf2\x4c\x2f\xc7\xec\x84\x51\x5e\x01\xe6\x8b\x18\xab\x12\x12\x2b\xa7\x5d\x1d\x6c\xc2\xea\x85\x49\x70\x05\x85\x42\xe9\x7a\x41\x7c\xb8\x99\x88\x4b\x6a\xb9\x24\xcf\xa9\x3a\x7f\x10\xaa\xac\x40\xd1\xe6\x59\xc6\xa8\x5b\xf7\x40\x44\x88\xe2\x46\x69\xe4\x5a\x66\xbc\x08\x35\xad\x3f\x50\x5b\x60\xec\xba\xb1\x7a\x42\xbe\x6d\xb6\x0d\xe7\x0f\xb8\x9b\x30\x18\xf7\xe9\xc5\x04\x14\xdd\xa4\x74\x05\x1b\x5d\xe7\x53\x85\x7c\xab\xd4\xe3\x9a\x43\x0e\x53\xa9\xc9\x41\x8f\xdd\xd3\xc3\xdd\x1b\xf1\x20\xc5\xca\x85\xb2\x3e\x97\x63\xc2\x0f\xd2\xfd\xc7\xb9\x2a\x8b\x4d\x6f\xed\xf5\x16\xc8\x2c\x0c\xd8\x75\x04\x89\xac\xd7\xb9\x46\xff\x29\x73\xad\x5f\x82\x4a\xeb\xf0\xba\x14\xde\xf3\x51\x3c\x84\x47\x75\x98\x44\x99\xbd\x79\x7f\xab\xf3\x10\x13\xa0\xc1\x2c\xcc\x75\xa5\x52\x43\xe0\xcd\xb5\x54\xc7\x6b\xfe\xe9\x95\xfb\x52\xe4\xef\xf1\xd5\xe6\x80\x2c\x52\x64\xd6\x1e\xdc\x58\x21\xb7\x7b\xba\xa6\x6a\xc7\x7c\xed\xb7\x09\x9c\x64\x05\x97\x41\xf0\xef\x20\x0c\xf5\x41\x6c\xda\xd6\x6f\xab\x62\x28\x8b\xcb\x5e\x40\x23\x79\x21\xec\x83\x1e\xe3\x9a\x21\x74\xd9\xff\x1b\x72\x59\x6a\x55\xcd\xdb\x65\x77\x0c\x1b\x39\xe8\xd8\xb4\x02\x56\xfa\x2b\x3e\xbd\x4b\xbe\x52\x4f\x76\xcd\x10\xbe\xe2\x22\x27\x94\xbb\x43\x71\x79\xbb\x58\x7f\xd1\x73\xb6\x80\x44\x36\xf2\x13\x14\x02\x22\x65\xb0\x14\xae\x46\x11\x50\x0a\x6e\x61\x62\xdc\x16\xc8\x84\x81\xf8\x91\xb2\x46\xb5\xf8\xa5\x22\x08\xc0\xeb\xaf\x87\xdd\xb3\x25\x16\xba\x40\x66\xf3\x66\x09\x08\x7f\x97\xc3\xb8\x2a\x25\xdb\x78\x46\xaf\x2b\x65\xaf\xe2\xe7\x40\x4f\xf5\x0f\x8f\x37\x3a\xa5\x7f\xee\xcd\x35\x73\x91\x9d\x02\x9f\xff\x6c\xa4\xd5\x3f\x35\xb8\xaa\xa9\x3b\xc8\x6c\xa0\xd6\xe3\x0b\x6d\xce\x93\xfb\x47\x5e\xa4\xe8\xfe\x07\x38\xd3\x98\xfd\xa0\x1f\xc5\x83\x28\x46\x2c\x11\x45\xc9\x89\xaa\xd1\x00\x9e\x03\x0e\x14\xb5\x33\x55\x90\xe8\x83\xbc\x97\xca\x54\x85\x60\xa5\x5c\xae\x4a\x51\xc4\x68\x1c\x5d\x58\x71\x54\x22\x4b\x6f\x2e\x12\xe2\xa2\xeb\x98\x80\x45\xc6\x1f\xb6\xb9\x27\x9f\x42\xa2\xc3\x26\x3e\x5b\xd9\x85\xbb\x5d\xdd\xb7\x5d\xf8\x29\x9a\x30\x12\x9a\xc8\x1e\x36\x62\x4b\x9d\x71\xb5\x1c\x8f\xc7\x50\xe3\xe4\xd5\xa0\x8d\x4e\x0d\xc6\x01\x74\x8f\xd2\xcf\xb4\x36\x22\xdb\x78\xfe\x34\x9f\x47\x05\xc0\xdd\x4f\xa5\x50\x46\xa2\x63\xab\x65\xfb\xdf\x34\x83\x4b\x5f\x36\x16\xd7\x6e\x9e\x0f\xce\xd2\xed\x68\x07\xca\xc8\x0e\x68\x09\x9f\x6f\xb7\xbc\x9e\x94\x75\xde\xde\x96\xd2\x6a\x68\x2a\xf5\x4f\x5a\x76\x40\x41\x9e\xc4\xb3\xda\xda\x12\x71\x40\x3d\x29\xfd\xb4\x7d\xce\xb6\x32\x82\x0f\x48\x06\xde\x91\xd7\x3b\x30\xa5\xb7\x8f\x23\xe0\xa6\xb9\xdc\x83\x8f\xc5\xfe\xca\x76\xad\x1f\x34\x30\x65\x3a\x70\x1b\x0c\x51\x9d\x30\xeb\x32\xdb\x80\xc5\xe5\x13\xa8\x21\x3c\x90\x46\x51\xa5\x5a\xd0\x0c\x52\xf9\x42\xd4\xcd\x73\xf3\x45\x41\x36\x53\xea\x82\x2f\x05\x5b\x8b\x54\x56\xeb\x56\x61\xe3\x87\x7b\x08\x7c\x54\x67\xd5\xba\x9b\x25\xf5\x50\x05\x3a\x0c\x12\xff\xeb\x14\xba\xeb\xcf\xa1\xe3\x33\x23\x5c\x81\x51\x1a\x2f\x86\x90\x68\xae\xed\x4d\x59\x48\x03\x04\xc3\x4f\xc9\x9c\xf5\xcd\x60\xd3\x10\x80\xdf\xe4\xe8\x64\xaf\xad\xee\x91\x8b\x8c\xd2\x2b\x06\x57\x15\xa2\xf6\xdd\x97\x42\x13\x94\x3a\xbc\xcc\x60\xa1\xab\x2d\xee\xa9\xde\xcc\x6e\x2a\x2a\x3a\x42\xa8\x39\x68\x90\xa0\x3d\xa5\x66\x0b\x97\x8b\x79\x2f\x22\xd6\xc7\x14\xca\x91\x3c\x22\xe5\xd3\x8f\xdf\x1a\x07\x02\x22\x9c\x56\xd0\x58\xca\xd0\x09\x46\x80\x1e\x5e\x3b\x78\x1e\x7e\x21\x36\x01\xdc\x8c\x29\x57\x65\x6b\x03\x01\xbd\x0a\x6d\xe1\x2b\x3f\xf1\x2a\x6b\x7f\x9c\xda\x87\x47\xb1\x5c\xed\xc9\xcf\x37\x0c\xa7\x9a\x4a\x47\x14\xbb\x06\x1a\x35\xb2\x1f\x20\x08\xd3\x35\x7b\x82\x26\x58\x5b\x07\x9c\x74\x57\xb9\xc4\x4e\xbb\x28\x93\x55\xd0\x3c\x80\x9b\xd2\x73\x6a\x52\x2d\x72\xfa\xce\x75\x28\x86\x81\xd8\xeb\x18\xc4\x2a\x97\x4a\xc7\x55\xa4\xb4\x12\x10\x8a\xb3\x02\x48\xc7\xcd\x32\x59\xee\x47\x0a\x0e\x24\x64\xdc\xb7\xd5\x4a\x8d\x08\x30\xfa\xce\x5a\x9c\x1a\x4c\x0a\x89\x74\x55\x0e\x66\x8d\x36\x11\x95\xb6\x6e\x16\x49\xa8\x13\x80\x4c\x55\xbd\xab\xad\x49\x72\x50\x3e\x59\x08\xe4\x36\x37\x56\x7b\x2b\xe5\x83\x3d\xa8\xdb\xdb\xda\x6f\x50\x90\x00\xdb\x7b\x8f\xc2\xb6\x2c\x22\x48\xbf\x17\x1b\x13\xd7\xd1\xa6\x1d\xc5\xba\x36\xa4\xb4\xdf\x43\xeb\xb5\x7f\x29\x60\xe2\x66\x45\xa8\x86\xd9\xef\x2e\xc3\x4e\xdf\xdb\x97\x77\x60\x84\xb7\x1a\xb7\x7b\x30\x24\xbb\x06\x9f\x22\x89\x89\x30\xcf\xb4\x86\x01\x06\x08\x20\xcf\x18\xc6\x19\x67\x2e\x81\xe1\x6b\xed\xdb\xa9\xa2\x1a\x0a\xd1\x25\x67\x05\xce\xf6\xb2\x51\x06\x3e\x32\xb7\x6f\x6a\xec\x41\xc0\x2a\xeb\x18\x76\xeb\x5d\xba\xe8\x32\x94\x24\x84\xed\x01\x5d\x63\x8e\xb2\xf3\xe1\xb5\x76\xf8\x44\x6c\x29\x2d\x6e\x27\x9e\x34\x4a\x04\xc4\x27\x89\x58\x15\x0b\xb2\xa3\xf5\x93\x08\x3b\x7d\x27\xaa\x15\xca\xe9\x80\x9c\x37\xe7\xa7\xd7\xe7\xb7\x5f\x0c\x6f\xea\xc0\x9e\x83\x01\xa7\x6e\x9c\x67\xe7\xef\x4e\xee\x2e\x6e\x67\x67\x93\xeb\xcf\x81\x38\xa5\x9f\x9e\x00\x39\xbd\xa1\xd2\x2c\xa7\x5a\x95\xe2\xd3\x41\x77\x72\x51\xa9\x19\x1f\x90\xfa\xe4\x8b\x33\xed\x52\x77\xb0\xd1\xed\xd2\x32\xbe\xee\x0b\xd1\xfa\x12\xea\xc4\x55\x92\x59\x04\xa7\xe1\x42\x66\x19\x64\x82\x7b\xf7\x3a\x65\x19\xda\x49\x05\xf9\xe3\x98\x8c\x49\xa6\x4e\xd5\xbc\x56\xf9\x07\x5c\x7e\x2b\x6b\x04\x63\x0e\x78\x6e\x27\xa0\x90\x90\x61\xbb\xab\xfa\xcc\x52\x2a\x11\x86\x01\xab\x66\xc7\xd7\xc9\xd0\x4f\x8b\xf8\x39\x91\x75\xa4\x78\xf5\xd5\x35\xdd\x8e\xab\xed\x4f\xa7\x7e\xba\x1f\xfd\x17\xe2\x21\x96\x0a\x15\xd3\xda\x69\xbe\x69\xdf\xba\xc7\xe1\x08\xc0\xbc\xdb\x95\xe4\x10\x83\x30\x25\x2f\xca\xb0\x90\xb4\x10\x58\x13\x2f\x04\x27\xee\x25\x22\xd0\xf4\xa2\x31\xcf\x56\x14\xda\xb9\x96\x10\xa9\xe0\x44\x6e\x93\x64\x95\x29\x45\x41\x6e\x93\x93\x9f\x6f\xa6\xea\xad\xbd\xbe\x5e\xd1\x2d\x44\x95\xcb\xb0\x0b\x44\xea\xe8\x5a\xff\x4e\x43\x89\x25\xd8\x4b\xf4\x51\xaf\x05\x57\x86\xc1\xd1\xc8\x32\x51\x84\x9d\x81\xe3\x11\x22\xa5\xfa\xe1\xc0\x72\x1d\xde\x7f\xc5\x08\xdc\x6a\xa7\xc2\x8e\xd7\x57\x50\x5b\xeb\x72\x7b\x3f\x75\x11\x0d\x00\xe2\xfc\x73\xee\x9c\x96\xc4\xa7\xbe\xbb\x88\xc0\xfa\xad\x9b\xa8\x9e\x86\xd4\x6b\x2f\xdd\x62\x73\x7f\xdf\x4a\xcf\xb8\x95\x7a\xdc\xeb\xf1\x2d\xc1\x56\xda\x0a\x50\x5f\xd6\x2b\x84\x99\x3d\xd1\x49\x06\x28\x37\x3b\x8d\xad\xb7\x4e\xa3\xb0\xee\x21\xd8\x0f\x68\xea\x30\x84\xf6\x49\x0b\xa3\x52\xa8\xe0\xe8\x62\x3b\x3b\x6b\xf6\x7e\x1e\xe6\xc2\x13\x87\x55\x55\xba\x74\x1c\x24\x1e\x1e\x4a\x58\x57\xfb\x80\x27\xbf\xd9\x39\x46\x22\x94\x71\x5a\xca\xec\xc0\xba\x97\xb7\x31\xa6\xb6\x96\x95\x8d\xa3\x88\xf9\x1c\x1c\x87\x83\xe7\x80\x19\xb2\xf9\x9e\x5e\x59\xb9\xbe\xe7\x3c\x9f\xe8\x93\xc0\x0e\x97\x1f\x2e\xcf\x63\xa8\xc2\xe4\xf2\xf6\xfc\xfb\xf3\xeb\x5a\x3e\xff\xc5\x87\x93\x5a\x4e\xfe\xcd\xed\x75\x23\x15\xff\xed\x87\x0f\x17\xe7\x5b\x98\x87\xf3\xdb\xc9\xfb\x5a\xe3\x67\x77\xd7\x27\xb7\x93\x0f\xb5\xe7\xde\x4e\x2e\x4f\xae\xff\x23\xfe\xcb\xf9\xf5\xf5\x87\xeb\x46\x7f\x77\xa7\xbb\xd1\x13\xb5\xcf\x68\x77\xff\x84\xe0\x6c\x44\xad\xda\x7a\x8c\xeb\x95\xa7\x0f\x38\xc5\x3d\x91\x67\xfb\xb6\xa3\x4b\xd7\x4f\xe3\x4a\x24\x78\x30\xec\x50\x07\xed\xba\xe7\x2f\x95\x5d\x9b\xba\x9c\x1f\x26\xf6\xec\xad\x36\x7b\x0e\x24\xe0\x4e\x05\xd0\xf7\xd2\x70\xdc\x52\x65\x7a\x9c\xda\x1c\x22\x58\x4b\xde\x59\xaa\x4d\xa5\x9f\x7d\xa4\xae\x8f\x7d\xe3\x0c\x54\x5e\x7b\x18\x91\x9e\x8b\x0d\x65\xd7\xa0\xa3\xce\x1c\xd9\x80\x4c\x9d\xa2\xe0\x7e\x8c\x61\xf7\xf6\x33\xec\xce\x89\xb6\x63\x57\x4d\xe3\xf6\xb4\xa5\xdd\xec\x7b\x43\xc7\x4f\x9d\x6c\x8f\xbd\x41\xd5\x32\x60\xdc\x40\x99\x35\x64\xdc\xb7\xdc\xdc\x0f\x1d\x37\x75\xb2\x3d\x6e\x50\xfb\x9e\x34\x6e\x70\x78\x97\xed\x34\x3a\x03\x84\x58\xdc\x4c\x7d\x78\x3e\xc7\xdf\x3f\x12\x95\x0e\xef\x37\x46\x7b\x00\x3e\xaf\x79\x99\xf3\xfe\x81\x0c\x18\x8d\x3f\xae\xbc\xc1\x2a\x7f\x03\xbf\xc2\x17\xce\x0b\xc1\xef\x53\xfd\x48\xeb\xd1\x44\x86\xb2\x5e\xd2\xbc\x3e\x41\x56\x86\xbb\x2b\xa2\x2c\x28\x02\x85\x28\xb5\xd0\x3c\xc0\xe4\x24\xf1\xa2\xa3\x0e\x16\x55\x9d\x6e\x12\x11\x01\xf5\x93\x0a\xab\x33\x55\xa8\xcd\xb7\x55\xae\xb6\xab\x6a\x47\x44\xd4\x21\xf0\xa9\x5e\x87\xc6\xe0\xba\x89\x16\x96\xf2\x80\xaa\x02\xc0\x74\xf3\x02\x6c\x26\x98\x10\xa9\xc0\x99\x5c\x58\x83\xa7\x10\x89\x34\x22\x2a\x96\xd7\x7a\x63\xff\x72\x58\x29\x94\x92\x97\xad\x6e\xd7\xde\xfe\x70\x9e\x94\x15\xcf\x18\xa4\x2b\x11\x03\x23\xfa\x2a\xf1\x2f\x09\x57\x98\x1a\x53\x8a\x75\x0e\x59\xfd\x71\x4e\xc7\x54\xfd\x0c\x40\x09\x5c\x82\x17\x86\x7d\x0f\x90\x07\xf7\x30\x5d\xc2\x6b\x5e\xc2\x5d\xfc\x07\xec\xc3\xff\x36\x9e\xaa\x5a\xf1\xa9\xe8\xad\x5a\x1d\xaa\xf1\x54\xb9\x6a\x1d\xa9\x4e\xcc\x18\x2c\xbe\xb1\x2e\x96\xc7\x54\x46\xde\x6e\x76\x7d\x3f\xd7\xfa\xfe\x58\xa8\x63\xf0\x49\x95\xc7\xbc\x2a\xf5\x31\xc0\xa5\x70\xfd\xcd\xb1\xab\xf7\xec\x0a\x66\x9b\xe3\x95\x7c\x10\xf0\xff\xc6\xab\x72\x9d\xfd\x93\xc9\x57\x9f\x8e\x96\x59\x71\x64\xdf\x3d\x8a\xdf\x3d\x72\xef\x1e\xb9\x77\x8f\xec\x6b\xf8\xff\xf2\x0d\x86\x77\xc4\x27\x6e\xef\xb2\xd1\x54\x49\x65\x44\x51\x82\xf6\xf3\x58\xc8\x32\x54\xf9\xda\xb0\x17\xff\xf9\x9f\x6c\x5c\xf0\x47\xcc\x88\x3d\xe3\x25\xbf\x42\xff\xe2\xdf\xfe\xf6\x02\x02\xaa\x98\xc5\x94\xf3\xe2\x97\x4a\x94\x53\x65\x84\x3d\x84\xec\x7f\x4d\x15\x44\x60\xd7\x9b\x59\x89\x7e\x57\xf4\x41\xa6\x86\x7d\x87\x6d\x4e\x90\x8d\x34\x35\xb6\xa5\x8e\x74\x02\xc9\x6d\x63\x3d\x5d\xf4\xbf\x64\x67\xf4\xfc\x80\x63\xfd\x4b\x56\x3f\xd5\xae\xce\x94\xf9\x25\x83\x0b\x34\xd3\xdc\x81\xb5\x98\xdf\xbc\x60\x27\xd3\xe0\xda\xce\xc8\x16\x34\xe0\xb3\x86\xe9\xdb\xcf\xca\x0d\x32\xa2\x3b\xcf\xfd\x96\x18\x81\x58\x41\x88\x43\x40\xf4\x5c\xda\x13\x72\x83\x9e\x50\xd0\xdc\xf0\xcb\x41\x27\xa5\xd0\xb9\x6f\x0f\x1d\x17\xe6\x77\x6f\x8e\x8f\x47\x6c\x69\xe0\x7f\xe6\xbf\xc0\xff\x00\x7a\xe8\xb9\x48\x7d\xb7\x26\xd3\x03\xe1\xb6\x57\x79\xff\x4a\x3c\x07\x8a\xee\x4b\xf0\xc8\x37\xb6\xe9\xdb\x4a\xa5\x99\x08\xa9\x8d\xb5\x90\x48\xa6\xed\x4a\xba\x85\xda\xae\x3c\x04\x6b\x3c\x17\x09\xb7\x82\x6f\xab\x6f\x04\x97\xea\x45\x29\x14\x7a\xc3\x8a\x50\xe8\x92\xa3\xe7\x0a\xd4\x62\x80\x42\xf2\x92\x20\xe7\x58\x2b\x0c\x3a\x01\x62\xf6\x51\xf3\x27\xb6\xd1\x15\x71\x8c\x03\x73\x6e\x2a\x92\x0c\x0a\x39\x38\xf6\x20\x56\x88\xb2\x2a\x14\xe3\x2c\xe7\x2a\xe5\x06\x76\xe0\xa2\x80\x68\x67\xc1\xf8\xf6\x40\x47\x08\xc7\xd5\x55\x09\x9c\x58\x88\x2c\x88\x67\x02\x49\xe0\xa3\x31\x8f\xa2\x41\xe0\x9d\x00\x5c\xd4\x5b\x2f\x8e\xa7\xca\x95\x62\x24\x2c\x1c\x7a\xca\x12\x9d\x6f\x88\xf1\xa8\x39\xe9\xd2\x79\xce\x68\xba\x47\x01\x6f\xd2\x7c\x76\xc4\x64\x3d\xb4\x06\x7c\xf3\x65\x54\xdd\x1e\x3d\x7a\x86\xbd\x14\x2a\xd1\xa9\x28\xcc\x2b\x7b\x0c\xa5\xb7\x3b\x50\x7f\x90\x26\x2c\x06\x48\x29\x7b\xb9\x91\xb7\xd0\x36\xef\x0b\x4c\xd9\xd9\xa9\x31\x94\xb7\xe9\x39\xfb\x8f\xca\x6f\x1d\x05\xd3\x36\x5e\xfa\xcf\x2f\x8a\x88\x89\x71\x9d\xce\xe6\x7c\xba\x0b\x02\x8f\x6c\x2c\x71\xb1\x51\xd4\x71\x48\x39\x71\xa5\xc4\x65\x09\xc5\x41\x0b\x61\xca\xa9\xa2\x1b\x78\xc4\x16\x82\x5b\x3d\x6f\xc4\x12\xf3\x80\xc2\x18\xaf\xfb\xf2\x51\x07\x0c\x8e\x2b\x6f\x03\x60\xd8\x5a\xe3\xc1\x49\x8c\x8f\x71\xca\xc0\x46\x80\x41\x97\x85\xee\x55\x15\x98\xac\x56\x81\xf8\x84\x79\x70\xd5\x52\x9a\x15\xd6\xe2\x62\x3d\x30\x13\x1b\x0c\x14\xb3\xe6\x38\xf0\x07\x2b\x78\xf0\xeb\x10\x06\x12\x09\x47\xd0\xb8\x09\x4b\x8b\xe7\x2c\xc4\x70\x63\xca\x7a\xf0\xcd\x74\x1d\xaa\x1d\x13\x01\x03\x78\x9a\xdf\xc2\xbe\xba\xd7\x61\x65\x44\xe1\x4a\xb9\xe0\xb7\x22\xc1\xe4\x4a\x16\xe9\x51\xce\x8b\x72\xe3\xb6\x6f\x26\xe7\x50\x01\x22\x93\xf7\x82\x9d\x14\x85\x7e\x7c\xee\x59\xe8\x14\x2d\x5d\x16\xf6\x21\x48\xf6\xa1\x56\x7e\x2b\xbd\x6c\xd3\xdd\xf1\x34\x2a\xdb\x2e\xc7\x47\x6b\x3f\x85\x28\x8b\xcd\xcc\x6e\xc4\x75\xde\x29\x29\x7a\x25\x4d\xf4\x57\x72\x87\xb1\xe4\x36\x5c\x18\x9d\x2c\xb9\xb5\x55\xfd\xed\xb0\xe4\xb6\x10\xe0\x6e\xb3\xe4\x4e\x2e\x27\xb7\x93\x93\x8b\xc9\xff\x69\xb4\xf8\xf3\xc9\xe4\x76\x72\xf9\xfd\xec\xdd\x87\xeb\xd9\xf5\xf9\xcd\x87\xbb\xeb\xd3\xf3\xdd\xb4\x57\xdb\xa3\x0f\x2a\xf8\x11\x8b\xfb\x79\xc3\x6e\x23\xa0\x06\x26\x1b\x90\xfe\x4d\xa5\x81\x61\x57\xd9\xc3\x2c\xd5\x72\x04\x07\xf5\x0d\x3b\x2f\x8a\xc9\x9a\x2f\xc5\x55\x95\x65\x00\xa7\xc2\xcc\x9e\xd3\x42\x80\xe1\x39\x62\x57\x3a\x9d\x44\xef\x41\x3a\x62\xeb\x67\x40\xff\x3c\x4d\x0b\x61\x0c\x76\x3f\xa2\xfe\x23\xf0\x90\x4f\x75\x24\xf0\x1c\x7f\xe0\x32\xb3\xf6\xdb\x1b\xf6\x96\x27\xf7\x7a\xb1\xc0\xf4\x99\x91\x4f\x9c\x62\xbf\x54\xba\xe4\x4c\x7c\x4a\x80\xea\xad\x7d\x9f\x5c\xe8\xe5\xaf\x00\x55\xee\x11\x9e\xea\x30\x52\xa0\xd4\xdd\xac\xfd\x3a\x6f\x17\x04\xf4\x95\xef\xf1\xd5\x77\xf8\x66\xbb\x83\xb2\xcc\x9e\x21\x3d\xfe\x42\x2f\xdb\x0b\x0f\x81\x76\x4d\xd5\x92\x28\x90\x90\x10\xbb\x88\x5e\x32\x23\xd5\xfd\x54\xfd\xbc\x12\x8a\xe9\xaa\xc0\x3f\x81\x99\x6f\xd5\xcc\xac\x32\x2b\x01\x15\xba\x47\xec\x51\xb0\x35\xdf\xa0\xda\x0c\x36\x81\xaf\x96\x02\x5b\x06\x6e\x11\xfb\x76\x26\x95\x95\x16\xb9\x74\x79\x09\xcd\xa5\x7f\x0e\x8b\xcb\x11\x1d\xf2\xc3\x79\x88\x77\xdd\xa7\x35\x7c\x1e\xb8\xca\x02\x6e\xd2\x01\x84\x48\x72\x43\x51\x59\xad\xef\xab\x3c\x50\xa2\xbe\x70\xc1\x49\x98\xee\x07\x2d\x53\x96\x56\x79\x26\x13\x2f\x77\x1f\x75\xd1\xc9\xfb\x8c\x09\x34\xfd\x6f\x9d\x66\x5a\xd8\xae\x0f\x6b\xc9\xce\x89\x90\x74\x3b\x18\xa0\x3f\x33\x07\x36\x93\x2a\xc9\x2a\x28\x33\x57\x19\x51\x1c\xf9\xd2\xd1\x3e\xd7\xef\xb7\x4f\x92\x1d\x48\x38\x0f\x4f\x6b\x8b\x93\xce\x33\xbd\x94\x09\xcf\x62\x70\x73\x40\x45\x78\x16\x5e\x77\xec\xa9\x98\x30\xe4\x41\xb8\x01\x75\x12\x69\xe5\x85\x00\x22\xe8\x19\x88\xf2\x19\x89\xbb\x43\xc6\xbd\x60\xd6\x40\xc7\x71\xc5\x1c\xb9\x2e\xbc\xe0\x6e\xb8\xd0\xb7\xab\xc4\x06\x2a\xa6\x50\x00\x01\xd0\x8f\x4a\x14\xa0\xc1\x02\xec\xc3\x7e\xa9\xd2\xa0\x9b\xf8\xea\x6c\x1e\x9f\xec\xaa\x13\x2e\x3c\x10\x1b\x33\x67\x97\xf2\x41\xa8\x2f\x4f\x6a\x1e\x75\x90\xf0\x64\x25\x66\x4e\x2f\x7f\x6e\x91\xe5\x2f\x80\x81\xc2\xca\x95\x49\x89\x45\xa9\x0f\x6f\x82\xe9\x84\x23\xde\x96\x5d\x18\x48\xdc\x91\x91\x65\x07\x31\x4b\x45\x72\xff\xc5\x45\x73\x00\x59\xb9\x81\x30\xce\xce\x44\x72\xcf\xee\xae\x27\x98\x0d\x2c\x4b\x66\x45\x81\x59\x85\xb2\x4f\x9d\xb6\x5b\xc9\x97\x9f\x81\xc2\xaa\x6f\xdd\xaa\x50\xaa\xc0\x57\xeb\xb3\x03\x22\x40\x14\xe4\x4b\x5a\x21\x49\xb9\x34\x00\x04\xe3\xa5\xab\x66\x04\x8e\x78\x66\xd6\x50\xbc\xa8\x2a\xa3\x8a\x7f\x19\x9f\x8b\xac\x83\xb8\x33\xd7\xe9\xcc\xc5\x49\x0e\x05\xf3\x6c\xb5\xe5\xfc\x18\x14\x75\x74\x79\x0c\xdc\x6a\xac\xb7\xf4\x20\xbb\xff\xd6\x44\xf4\x1a\x3a\xe6\x0f\x07\xbb\x9e\x1b\x48\xef\x5e\xc8\xa5\x8b\xb6\xc9\x05\x95\x58\xc2\x84\x7e\xab\x07\x83\xbc\xb4\x2d\x5d\xe9\x94\x60\x7a\x9e\x0b\xcf\x6a\x41\x82\xbc\x27\x01\x57\x11\x0f\xc1\xe1\x00\xa1\x5f\x7b\x22\x04\x4f\x99\x5e\x90\x37\x31\xcf\x33\x09\xcc\xd0\x29\x92\xd0\x03\x7b\x86\xa9\xa3\xe3\xe3\xd6\xdc\x60\x23\x92\x8f\x2b\x07\xc4\xeb\x2a\xc6\x0b\x02\x03\x33\x18\x66\xc0\x06\x37\x7b\xe0\xdd\x64\x6a\x9f\xbd\x62\x5a\xc7\x78\x7c\x34\xb9\x4e\x09\x5b\x23\xed\x23\x5f\x01\x5e\xeb\x2e\x21\x3f\xe1\x59\x52\x51\x9c\x0c\xca\xe5\xbb\x2a\xf8\xbb\x11\x84\x21\xea\x67\x17\xba\xee\xf5\x6f\x2a\x99\x87\x56\x57\xf4\x09\x5a\x4f\xf5\x29\xec\x76\x2f\x2e\x33\x3d\x87\x9d\xd3\x8d\x12\xdc\x71\x63\x59\x71\x5d\xc8\x74\x88\xbe\xe3\xe6\xe4\x83\x7f\x75\xd7\x00\x3f\x38\xd7\x8f\xef\xc9\xed\x7b\x46\x85\x0c\x1a\xcc\x8d\xc3\x28\x10\x16\x54\x55\xb5\x6e\x9e\x94\x54\xc6\x03\xb6\x95\xbf\x9f\x3a\xfc\x0c\xf5\x6f\x39\x68\xa1\xb7\x99\x62\xf6\xcc\x65\x20\x97\xd9\xbd\xc8\x07\xd0\x7d\xa0\x28\xf3\x9c\x1f\xdd\x9e\x45\x95\x8a\x74\xf6\x84\x6f\x38\xa7\x77\xfb\x7d\x8b\x9f\x69\x1c\x1e\xf8\x00\xd5\x91\x55\x15\x52\x5e\xa4\xe1\x3b\x46\x70\xde\x13\x9e\x83\x1b\x1e\xc2\x1a\x0f\xaf\xc7\xae\x8f\xeb\x90\x5d\x64\xe5\x25\xe6\xfc\x23\x7e\x5b\xb7\xd4\xc0\xd9\xb7\x8f\xfc\x26\x45\x78\xb7\xdd\x39\x61\xbb\xd6\xf2\x6e\x7a\xed\xdd\xe6\x0e\x73\x02\xfc\x90\xcd\xf5\x39\x64\x47\x55\xea\x10\xed\x81\xef\x99\x00\xed\x70\x9c\xd1\x07\x02\x72\x92\x76\x20\x45\x9c\xfa\xed\x84\xd0\x00\xfc\xf1\x20\x04\x74\x5e\x08\x17\x37\xdc\x88\xd2\xf3\x3a\x64\xae\xae\x20\x84\xc5\xfc\x57\xd7\x89\x6d\x1c\x77\x85\x27\x23\x83\x20\x16\xa9\xfa\x89\x5e\xe7\x5a\x01\x2c\x09\xb3\xd4\xa6\x8a\x1a\x77\xd5\xe1\x7d\x64\xad\x96\xea\x38\x22\x87\x26\x26\xce\x08\xa3\xb3\x07\x0a\xa1\x46\x45\x4c\xa0\xae\xa4\x1d\xe0\xa9\xb5\x0d\x75\x81\x04\x5b\xee\x66\x87\x4c\x80\x46\x89\xf4\x42\x2c\xa5\x29\x45\x9c\x1d\x1a\xbf\xff\x6c\xd5\x6c\x6b\xce\x93\x5d\x53\xdf\x59\xcd\x76\x9f\x15\x64\xe5\xd3\x80\xf1\x6c\x72\x91\x4e\xfc\x7b\xbb\x37\x43\x23\x81\x3f\x88\xc3\xda\x7d\x87\x7b\x00\xad\x3f\x83\x54\x5f\xc6\x97\x1f\xf1\x8b\x44\x24\x4c\x3c\x00\x1a\xed\x12\x2d\x2b\x5e\x70\x55\x0a\x61\xa6\x8a\x02\xcf\x48\x59\x17\xb3\xb2\x34\x80\x90\xde\xb6\x49\xb4\x29\x91\x01\x0a\x5e\x59\x70\x99\x55\x45\xa7\xbb\x01\x77\xe5\x93\x68\x27\x76\xcd\xd2\x29\x34\xcb\xda\x16\xcd\x27\x30\x47\xa7\xc8\xb3\xa6\x34\xc3\xc6\xf5\xfc\xde\x8e\x4f\x70\x97\x4b\xff\xf5\xf6\xbe\xe6\x8e\x9c\xe6\x6f\xcd\x2c\xd7\x03\x24\xde\x8f\xdf\x9a\x2b\xdd\x91\x0d\x6e\x7e\xd9\xf2\x89\xee\x80\x4f\xfc\xd2\x55\x90\x85\x9b\x7b\x88\x3c\xee\x73\xc5\xf4\x62\xe3\xdc\x1b\x9f\xec\x94\x5d\xb0\x6b\x57\x5c\xa5\x99\x55\x79\x79\xd9\xe4\xbd\xf6\x38\x6f\x6b\x12\x95\x4e\x38\x76\x27\xf5\x41\x8e\xcc\x2c\xd9\x4a\xb0\xdc\x37\x4f\x8d\xcc\xcc\x9d\x58\xca\x46\x2f\xf5\x7c\xc9\xb6\x3c\x9d\xa0\xc3\x50\x19\x64\x7f\x60\x7f\x75\xfd\xe5\x3c\x1e\xfb\x17\x52\x5f\xea\x67\x6d\x21\x97\xbf\x01\x47\xc2\xfb\xed\x2b\x21\x21\x99\x43\x17\xb5\xcf\x6e\x38\x50\xea\x40\x22\x99\x95\xda\x31\xe3\xf8\x54\x51\x39\x78\x44\x17\x40\x58\x19\xf9\xd6\x0c\x7b\xed\xb3\x8b\x5f\xff\x8b\x63\xdb\xda\xb0\x05\x6c\x2a\xa0\xb4\xd3\x49\x52\x15\x10\xfa\x27\xf7\x24\x13\x78\x09\x9b\x41\x44\x32\xa0\x7a\x78\xc0\x16\xea\x89\x6d\x6a\x92\xf7\x47\xd7\x3e\xea\x16\xdc\x90\x58\xd8\xde\x5f\xfa\x54\xaf\xac\x30\x25\x33\xa5\xc8\x5b\xc5\x6f\x4d\xbb\x94\xeb\x40\xfd\x7d\x88\x7a\xd9\x4a\x30\x3c\x8c\xb7\x7b\x47\x8c\x7e\x93\x8b\x13\xa5\x74\xd9\xcc\xa2\x19\x3c\x4c\xee\x5b\xe9\x79\xc0\x07\x5c\x99\x27\x91\x63\xeb\xf7\x37\x1f\x2e\x59\xce\x37\x80\xd0\x2c\x35\xc3\x47\x81\x16\xb5\x29\x4e\xf7\xed\x93\xfa\xc7\xd7\x65\x1f\xae\xbc\x83\x7a\xb7\x47\x51\xa8\xc7\x6d\x95\x16\x76\x36\x1d\x1c\x2b\x59\x0b\x9d\x1d\xe5\x19\x57\x11\x08\xdf\x8c\x59\xa3\xfb\x18\x75\xe1\xe3\xaf\x84\x6b\x83\x01\x80\x57\x85\x76\x6c\x51\xb5\xc2\xb4\x81\x1d\xc8\x6d\xfb\xc3\x80\x16\x9d\x92\x6c\x27\xfc\xf4\x3d\xd6\xaa\xc1\xca\x0d\xc8\xf1\xe1\xc0\x23\x1e\x7f\xc4\x0d\x40\x83\x3b\x79\xca\x79\x92\x71\x63\x76\x62\x89\x3e\x0b\xe1\x7d\x94\x5b\xb9\x5f\xc8\xd6\xc7\x89\x60\x47\x60\x60\x41\xeb\xd9\xff\x0c\x9c\x0e\x4e\xc0\x86\xd2\x74\x91\x55\x12\xd5\xac\x20\x80\x06\xb1\x5a\xc1\xfb\xc8\x57\x79\x2f\x36\xce\x0f\x47\x02\x95\xaf\xc5\xc8\xbb\x84\xbd\xcf\x33\x82\x26\x6e\x37\x3c\x55\x80\xdd\x7d\x17\x0f\x8f\xbd\xd3\x7a\x84\x28\x52\xea\x9c\x63\xb3\x3c\xc6\x61\x4d\xd5\x3b\xad\xc7\xdc\x9b\xda\x34\x7e\x12\x8a\xcd\x0e\x09\xbb\x05\xc8\xc8\xc6\x72\xf6\x3f\x9b\x3f\x48\x85\x45\x14\xe5\xda\x9a\x79\x34\x4f\xb0\xa3\x60\x40\xae\x66\xbf\x7e\x34\x2c\x45\xe2\x9b\x4a\x9a\x15\x04\x87\x30\x1a\x0b\xfd\xd3\xc5\x87\xb0\xb1\x82\x2b\x63\xcf\x30\x04\x94\xc4\x83\x20\xaf\x72\x0d\x09\x31\x39\xbb\xf0\xe0\x2a\x3c\x97\x54\x60\xa4\xe3\xb4\x45\xa6\xd1\x21\x2e\x04\x00\xc5\x0f\xa0\xdd\x23\x37\xec\x7b\x9e\xef\x4a\xd9\x3d\xb8\xc5\x7d\xab\xe4\x69\xbf\x9a\x76\x1f\xd4\x5b\x87\x4a\x8b\xb5\xbc\xdd\x78\xf6\xee\xd4\x17\xbe\x18\xa9\x30\x50\x6f\x37\xc8\x40\x51\xb1\xff\xba\x89\x18\x38\x3d\xb0\xd1\x5b\xac\x56\xb0\x43\x1d\x3b\xa0\x0e\xc4\x23\x3d\x66\x37\x42\xb0\x8f\x30\x53\xb6\xb3\x8f\x54\x27\x15\xb0\xda\x25\x97\xad\x65\xec\xe0\xe9\x89\x5a\xe8\xc3\xe4\x7f\xb1\xdc\xc2\x02\x1f\x34\x2b\xed\xe3\x3c\x14\x6d\x0c\xf1\x08\xf5\x79\xc9\x4f\x7a\x5d\x0c\x8d\xb5\xbe\x0a\x5e\x31\x4a\x89\x76\x23\xb5\x8a\x23\x2c\xf1\x53\xe8\xf5\x1a\x9b\xc4\x7e\xe5\x08\x29\xe3\xef\x95\x7e\x54\x28\x8f\xa9\x27\xf6\xd2\x9e\x3f\xd0\x59\x30\x7a\x85\xfa\x6a\x85\xd2\xf0\x15\x70\xd8\x9f\xf8\x7f\xb3\x1b\x0c\xd4\xe3\x98\xa1\xc0\x99\x01\xad\x9c\x4a\x93\xc1\x05\xfe\xf2\x64\xc4\xde\x8e\xd8\xe9\x88\x8d\xc7\xe3\x57\x23\x26\x78\xb2\x72\x23\xc2\x57\x50\xf4\x97\x7c\x69\xdb\xa6\xe2\x44\x8b\xa8\x03\x28\x62\x68\xf5\x13\x47\xd5\xc8\xc3\x53\x91\xef\xcf\x7d\x02\x26\x90\x53\xb6\x1b\x81\x9a\x92\x95\x96\x61\x50\x80\x8f\x17\x89\x2e\x1c\xc2\xde\x94\xba\x70\x68\xe1\x07\x5e\x70\xa9\x80\x57\x83\x6f\xe7\x4a\x50\xcf\x11\xb3\xbe\xf8\xc4\xd7\xf0\xfd\x52\x79\x72\x61\x3b\x4d\xb7\x7e\xfc\xe5\x26\xa7\x68\xe0\x63\x21\xcb\xd2\x2a\x64\x66\xaa\x6e\xd8\x9b\xef\xd8\x49\x9e\x67\x82\x9d\xb0\xff\x62\x6f\xb9\xe2\x8a\xb3\xb7\xec\xbf\xd8\x29\x57\x25\xcf\x74\x95\x0b\x76\xca\xfe\xcb\x4e\x9b\x6d\xef\x52\x5b\x0d\x68\x33\x62\x9c\xa9\x2a\x43\x45\xef\xa5\x43\xe2\xbe\xf2\xdf\xc5\xc3\xea\xcc\x45\xf9\x28\x84\x62\x46\xaf\xe9\x2a\xfc\xa3\xbf\xfd\x8d\x54\xcb\x4c\x94\xb4\x1f\xea\x98\x69\xec\xe0\x08\xbe\xf4\xcd\x54\x79\x6f\xfa\x1f\xed\x88\xff\xc8\xfe\x8b\x5d\x56\x59\x66\x87\x64\x05\x8d\xdd\x48\x6f\x98\xcb\x61\x13\x6a\xfc\x28\xef\x65\x2e\x52\xc9\x21\x8b\xcd\xfe\xeb\xf8\x16\x56\x7b\x56\x05\xc2\xd2\xf8\x4c\xfb\xa2\x71\x87\x88\x9e\xcf\xc2\x88\xe1\x4b\x1a\xc6\xda\x4a\x27\x54\x26\x7e\x75\xb8\x12\x1c\x68\x9a\xe9\x3c\x90\x8d\x82\x05\xff\xe2\x30\x6a\x7b\xff\xbe\x36\x59\x6e\xff\xab\x95\xa4\xa4\x57\x8d\xb2\x5d\xf3\x11\xc6\x08\xca\x29\x2e\x4e\x48\x21\x05\x43\x06\x32\x1e\xf1\xdc\x6d\xa0\x30\x89\x6b\x1b\x8d\x63\x0c\xc2\x5b\x83\x1f\xb5\xd1\x92\x2f\x47\x2c\xf7\xd5\xae\xdc\xa1\xf2\xe1\x77\x3c\xc7\x58\xd9\x81\x94\xcd\x97\x0e\xe6\x64\xf7\x32\x65\x49\x1e\xa7\x7a\xcd\xa5\x7a\x05\x7d\x38\x82\xbf\x3d\x13\xd5\x62\xae\xec\x9f\xa1\x5b\xbe\x13\x73\xd9\x5d\x80\xa0\xae\xec\x34\x0a\xcd\xb5\x1d\x87\x03\x2b\xad\x85\x3a\xac\x5f\xd0\x1c\xfa\x69\x6b\x8b\xee\xb9\xf2\xb6\xea\xac\xd5\x38\x5e\x40\x97\x0f\x3c\x77\xbd\x10\x00\xbe\xbe\xda\x4f\xf5\x42\xb4\xb5\x29\xd6\xb2\x57\xc5\xde\xc6\x60\xef\xc8\x12\xc3\xec\x6c\x2b\x26\x65\x76\x6c\x45\xe5\xf1\xa5\x56\x82\x71\x63\xe4\x12\xb9\xf9\xc0\xed\x87\xa5\x6e\x9d\x52\x76\x5b\x37\x19\x22\x11\x04\xfa\x99\x1d\x12\xe2\xba\x4b\x2b\x85\xed\x12\x64\x9b\xa9\xb2\x6f\x90\x46\x00\x39\x5e\xd2\x53\xb8\x63\x6f\xc4\x90\xee\xfa\xa2\x0b\x31\x6a\xbc\x65\x83\xed\x22\x90\x38\x60\xc3\xd1\x49\x3c\x20\x2e\x78\x19\xd1\x97\x52\x6b\x8e\xdb\x0a\x41\x3f\x73\x91\x69\xb5\xb4\xbb\xa2\x4b\x08\x83\x14\x78\xa6\x21\x60\x63\x9d\x23\xb0\xca\x0a\x3d\x42\x4b\x62\xf5\x14\x99\x06\xc7\x9f\xa9\xe6\x56\x8f\xf3\x31\x29\xaf\x8d\xd0\xc7\x75\xb1\x69\x1c\x06\xae\xba\xb3\x32\x58\x17\x0e\xde\xe7\xe3\x9d\xa8\xb8\x04\xa6\x29\xfc\xa2\x2e\x1c\x49\x31\xc8\x95\xd3\x11\x7f\x1f\x31\x5d\x20\xc9\xa8\x8b\xb3\x7b\x96\xb0\xed\xde\xbb\x8f\xf4\xce\x9c\x94\x76\x0f\x2d\x45\x73\xb7\x58\x4d\x7a\x9c\x86\x5f\x33\x3d\xa5\x4f\xd2\xca\xbb\x93\xc9\x45\xe3\xb9\xed\xa4\x95\x96\xcc\x96\xdb\xc9\xfb\xf3\xb3\xd9\x87\xbb\xdb\xad\xe7\x6c\x6b\xf4\xa7\x3d\x79\x2b\x9d\xb3\xf7\x1c\xc8\xfd\x5f\xb0\xd2\xda\x4c\x2f\x1c\x89\x41\xff\xeb\x79\xab\xd6\x5d\x3f\x80\x68\x19\x59\xd7\x71\x4d\xb8\xed\x8d\xd3\x49\xc5\xa2\x66\x14\x11\xee\x37\xd8\xe6\x84\x7d\x50\xef\xf0\xf5\x2b\x9d\xc9\x64\x37\xde\xdc\x5d\x96\x56\xab\xda\x06\xf0\xce\x05\x24\x60\x90\xc3\x97\x06\x85\xf6\x59\x29\x92\x32\x20\x1e\xb6\x3f\xee\xff\x69\x8c\xeb\x7e\x0f\x0c\xfa\x61\xfd\xb4\x41\x09\x75\x8f\xa1\x80\x9b\x1d\xb8\xad\xa1\xa4\x0b\x6a\xb9\xe0\xd9\x05\x99\x97\x70\x8a\x8c\xd5\x66\x1e\xae\x87\xc7\x95\xce\xc8\x1f\x8b\x3c\xe1\x53\x95\x8b\x22\xd1\x80\x0d\x45\x0a\x1a\xcd\x92\x95\xcc\xd2\x50\x37\xed\x25\x24\xd3\x00\xe4\xfd\x15\x95\x00\x16\x1e\xe3\xe3\x9a\xdf\x71\xe7\xbb\x6d\x77\x86\xa7\xfb\x20\x7c\xdc\x73\xa2\xe3\x77\x6d\xfb\x9f\x09\xc5\x8d\x53\x41\xcc\x7e\x0d\xb4\x06\xa8\xfd\xf1\x78\x06\x85\x74\xec\x65\x4f\x25\xb1\x92\x60\x36\x97\x8d\x75\xa5\x6d\xd6\x9c\x4a\xe0\x7b\x47\x3f\x3a\x42\x15\x8d\x80\xe1\xac\x05\x47\x4d\x30\xb0\x2f\xd3\xa2\x4e\x55\xc0\xa7\xbc\x30\xb1\x56\xd8\xba\xce\xe8\x7d\x77\xf8\xfb\x11\x7b\x51\xfb\xd0\x17\xc0\x07\xae\x34\xf4\x47\x18\x82\xda\xd4\xc0\x76\x1d\x31\x59\x4e\x95\xb5\xd9\xec\xce\x2c\x44\x26\x1e\xec\xe8\xe2\xe8\x10\xa1\x2a\x9d\xe7\xc4\x7d\x36\xa4\x70\x71\xc7\xfc\x41\xdb\x86\x0e\x61\x11\xf3\x4a\x63\xf0\x3c\x15\xc6\x6a\xad\x50\x11\x4b\x7c\xb2\x07\x40\x42\x88\x16\xe1\x77\xa9\x50\x6e\x7c\x80\xca\x83\xb1\x8d\xa7\x6a\xb2\x00\xfa\x05\x20\x7d\x48\x53\xf4\x41\xb8\x1a\x49\x9e\xe4\x53\x52\x34\x48\x93\x47\xc6\x2d\x04\x55\xb0\xc6\x93\x24\x1e\x44\xb1\x29\xc1\xa5\x0f\xf3\xaa\x04\x2f\x57\x4c\x96\x23\x60\x67\x75\x92\x72\xaa\x78\x9a\x52\xd6\x3a\x36\x17\x99\xb3\x9d\xeb\x4c\xbf\xcf\xf5\xc3\x2e\xb5\xfa\x50\x7c\x31\x9e\xea\x3c\xe3\x6a\x86\x37\xc8\xaf\x80\x30\x8e\x8a\x8b\x77\x41\x4d\xaa\xf9\xcc\x33\xca\x3d\xcb\x38\xbd\xbc\xbf\x76\x00\x6b\x32\x6d\xaa\xb9\xeb\x68\x54\x03\x90\xcf\x03\xf9\x88\xf7\xd2\x11\xba\xab\x60\x0e\x01\xd3\x5f\x0a\x04\xf0\x31\x6f\x20\xc1\xdc\x6e\xdd\x87\x3e\x76\x3b\xe0\xb7\x8a\x0f\xed\xb3\xf2\x8d\x3b\xa4\xb9\xec\xc3\xa1\x89\x5b\x1a\xe2\x93\xe0\x89\x7b\x86\xf5\x79\x21\x8a\x9d\x5e\x9c\x6d\xa8\xa2\xfb\xda\x28\xbe\x4f\x09\x0e\xe8\x85\xf5\x0e\xb4\xf6\xe2\xf1\xb1\x15\xa8\x5b\x50\xfc\xcf\x19\xa1\x00\x39\xd5\xd7\x4f\x13\x68\x4f\x60\x5c\x63\x36\x51\xcc\xa9\x7b\x23\xf6\x02\x37\x96\x79\x41\x0e\x68\x6b\xe7\x72\xc0\xd1\x8a\xe2\x41\xa4\x74\x7a\x88\x28\xa2\x09\x85\xc3\x74\xbd\x70\xdc\x30\x0e\xb8\x93\x55\xf8\xb3\xce\xcb\x5b\x09\xe9\x82\x4f\x61\x84\xc1\x18\xf2\x1c\x1b\x70\xd9\x2e\x91\x2b\x94\x3e\x17\x62\x19\xe1\x83\x5d\xb4\x93\xbd\x75\x2f\xda\x29\xca\x2b\xba\x4f\xdd\xef\x4c\x17\x53\xe5\x5a\x23\x87\xb4\xc1\x32\x86\xcd\xa6\xa2\xec\x25\xd2\xf9\xa3\x9d\x0a\x50\x00\x57\xb9\x12\x0a\xa2\x06\xea\xf3\xa6\x14\x00\xac\xd6\xdc\xe3\x64\xa1\x56\x46\xe8\xcd\x2a\x1e\x76\x83\xaf\xf1\x9a\x6f\xd2\x23\x67\x99\x9d\x14\x59\x3a\x36\xe6\x28\xb3\xd0\x54\xc0\x29\xbe\xa8\xac\x30\x8a\x88\xd7\xa7\xca\x4e\x1e\x5b\x48\xc8\x30\xa1\x79\x99\xaa\xf7\xda\x38\x22\x1b\x13\xe6\xc3\x01\x0b\x68\xda\x5e\xf8\x02\x9e\xf4\x87\x33\xb8\xb4\x29\xe2\x83\x94\x74\xfe\x6a\x81\x94\x52\x62\xa3\xda\xe8\xaa\x08\x1f\x95\x70\x35\x55\x7f\xb1\xd3\x03\xe6\x14\x57\x6e\x59\xf5\x02\x8f\x30\xac\x20\x84\xca\x3e\x62\xa3\x2f\xff\xe5\xd5\xc7\x57\x98\x02\x56\x19\xa8\x99\x3c\xaa\x5f\x20\xbe\x06\x47\x95\x65\x80\x43\x70\x5f\xe0\x79\xa0\x42\x17\x3b\xd1\x82\x64\xd4\xcd\x54\x5d\xc5\xe8\x73\xd0\xfb\xb9\xf5\x4f\x58\xc2\xcb\x64\x75\xe4\x74\x39\x12\x63\xee\xf6\xa3\xe5\xc3\x5c\x2d\xab\x69\xb1\xd6\x32\x14\xd6\xe0\x2c\xd6\x9e\x18\xb7\xb6\x5f\xec\x27\x80\xfb\xff\xb6\x59\x93\xcd\xf3\x76\xe3\xe6\x44\x1c\x50\x5d\xcf\xf3\x8f\xbb\x8a\xa8\xc1\xe2\xa4\x18\x89\xe2\x6b\x91\xb2\x17\x90\xac\xfc\xc2\x2d\xfe\x54\xe5\xf3\x71\xb6\x59\x94\xc4\xae\x68\x27\x65\x0c\xb5\x03\xf7\xdc\x72\xb3\x74\xdb\x4c\xda\x33\xd9\x9d\x86\x56\xbb\xae\xe3\xe7\xc6\xf7\xd4\x5f\x61\x41\x1f\x97\x9f\x9d\x9b\x3a\x72\xb1\x5e\xc4\x84\x9b\xfb\x11\x9b\x17\x5c\x41\xd9\xa7\x34\x56\xaa\xc2\xe9\x04\xe3\x19\xa9\x0b\x5d\xf6\xa2\xe2\xd9\x06\xb2\x94\x46\x53\x85\x3c\x8f\x50\x10\x60\x93\x64\x32\x61\xcb\x82\xe7\xab\x86\x1e\x24\x1e\x84\x2a\xa1\x7a\xf8\xb5\xe0\xe6\x30\xac\x46\xd1\x6c\x81\xf5\x8e\xa6\x9d\x28\xb0\x3e\xb8\x6a\x30\x73\xc3\xf0\x3a\xae\x16\x40\x91\x8a\x74\x36\x8c\x95\x6b\x2f\x77\x74\x8d\x91\x94\xe8\xf1\x20\xfe\x6c\x3f\x8e\xb9\x5e\xf7\x81\x1f\x70\x5e\x89\x30\xca\xe1\x8e\x0f\x05\x6c\x78\x02\xaa\x83\x68\x84\x27\x75\x2d\x92\x07\x66\xad\xe0\x37\xa7\xb0\x1f\x7a\x2a\x5c\xb2\x86\x17\x1c\x23\xaa\xee\x0a\x14\xa3\xec\x0f\xd5\x5c\x67\x8e\xa3\x75\x72\xc6\x74\x01\xe5\x91\x4a\x4d\x7f\x92\x69\x97\x76\x20\x55\x2a\x3e\x1d\x44\x94\xb4\xfb\xa2\x77\x6a\xb3\xed\x26\xaa\xc2\xd3\xfc\x58\x90\x4e\x85\xb0\x97\x70\xe9\x2c\xe3\xad\xa7\x4c\x13\x50\x7d\x92\x95\x2b\x40\x39\x63\x22\x51\x98\xd4\x35\xdf\xb0\x64\xc5\xd5\x32\x72\x4d\x00\x9c\x53\xe4\xba\xc0\x32\xc2\x0f\xc0\x48\xaa\x0b\x47\x44\x41\xf4\x0a\x94\xcd\xe4\xc3\x18\x98\x44\xa0\x1d\x87\x02\x5f\x2e\x0b\xb1\x84\x64\xdb\xa9\xaa\x11\xc4\x00\x1b\xab\xab\x60\x84\xfd\xec\xe2\xd7\x78\x1e\x92\xaa\x2e\x6b\xb0\x2c\x36\x9e\x9d\x80\x6a\x70\x87\xf3\xdc\x9c\xd6\x11\x93\x62\x3c\x62\xdf\x84\xc4\x09\x91\x68\xe5\xe9\x0d\x3a\x72\xdb\x1b\x2e\x7f\xb6\xc7\x74\xd8\x66\xb3\x6a\x1f\x3b\xfc\xb6\x55\xc9\xbb\x75\xd3\xec\xe4\x87\x28\x79\x59\x0d\xb8\x83\x4e\x79\xc9\x33\xbd\x3c\xb5\x2f\xdf\xe0\xbb\xbb\xf6\xf5\x29\x66\x35\x38\x26\x41\xfb\xbc\xbd\x39\x6d\xdf\xa1\xd2\x40\xdb\x5c\xef\x75\x20\x67\xba\xdb\x81\xfc\x1c\xaa\xba\xa3\x8b\xda\xef\x43\xce\x3a\x28\x90\x76\x7c\xd3\x50\x17\xb1\xcb\x3d\xa0\xf4\x29\xd3\x34\x63\x5b\x24\x40\x5e\xe8\xb4\x4a\x44\x6a\x4f\x2e\xd8\x43\x88\x87\xf2\x4c\x4c\x35\x21\xd9\x76\xd1\xd6\xe8\xe4\xe0\xd6\xfd\x52\x3e\x87\x5e\x0c\xfe\x7e\xfa\xef\x3a\xfc\x0d\x4e\xe3\x6b\x9b\xf4\xf8\x7c\xe2\x3c\x15\x03\xef\x29\xdf\x7d\x9d\x77\x5f\x17\x72\x29\x15\x2f\x75\xc1\x5e\x7a\xbe\x85\x57\xbe\x58\x5f\xb7\x86\x30\x50\x4c\xd4\xa6\x08\xc5\xc4\x17\x55\x3c\xda\x36\xa9\x7d\xca\x94\x7c\x9d\xc7\x4c\xd6\xe0\x05\x8e\x66\x26\xc3\x49\xf0\xba\x09\xf8\x4e\xa5\x09\xb9\xc5\x53\x45\x11\x07\x5c\x37\x5d\xc4\xa5\x18\x3a\xef\xe6\xbc\x2a\x67\x4f\x64\x67\xc3\x97\x87\x39\x9e\x08\x04\xf1\x9e\xe7\xbb\xf9\xae\x38\xb9\x1c\x30\xb9\x92\xdc\x11\x41\x53\xa9\xef\xcf\xdd\xc5\x8e\x06\xf2\x6f\x37\x03\xf7\xd7\x17\x2e\x50\x14\xec\xc1\x9a\x81\x05\x0b\x81\xc4\xbf\x98\xac\x86\xa6\xbd\x17\x6b\xf6\x16\x77\x24\x59\xa7\x99\xae\x52\x46\x42\x8d\x40\x00\xc5\x18\x6f\x47\x60\xe2\x1e\x8f\xbb\x92\xef\x06\x16\x61\xf7\xf2\x07\xde\x6b\x3f\x81\xf0\x5b\x87\x04\xde\x79\xf4\x69\x66\x3f\xdb\xd2\xd3\x4c\xc3\xda\x7b\x71\x3c\x68\xed\xbd\x17\x1c\x68\x41\x87\x39\x48\xc1\x1e\x95\x69\x06\xe7\x2d\x0e\x20\xb4\x10\x97\xd7\x02\xb3\xe6\xfe\xe0\xee\x1c\x57\xc6\xee\xae\x72\x5e\x08\x55\xce\xa0\xc7\x61\x9d\x41\x27\x57\xf0\x7a\x4d\x61\xea\xe5\x08\xfe\xd3\xad\x46\xff\xbe\xe3\x00\xfb\x33\xbb\x21\x9f\x96\x95\x57\x12\x20\xc4\xe6\x9e\xbd\x94\x80\x78\x8a\x62\xa1\x7e\xe1\x3a\x96\x8b\x3e\xe8\x09\xb3\x17\x7d\x50\x4d\xb4\xf7\xfa\xa0\x30\x7a\x08\x55\x43\x2b\xe4\xde\x23\xe6\x02\x2b\x6a\xdd\xdf\xa2\xba\x20\x97\xb5\x7f\x03\x87\xb3\x5d\xbf\x8c\xfd\x55\x14\x3a\xe4\x7f\xa1\xb3\x2a\x6e\x78\xa7\xbe\xfe\xf4\x92\xe6\xa8\x8f\x63\x31\xed\xb8\x9a\x2c\xfc\x85\x68\xd6\xd0\xa3\x30\xdf\x38\x73\xa4\x23\x84\x94\x8b\x64\xd6\x51\x3a\xa8\xd7\x50\x22\xc3\x33\x2e\x05\x24\x1b\x97\x99\x3b\xa0\xc7\xe0\xaf\xa0\xc4\xaa\x35\xcf\x09\x5d\x48\x40\xf2\x66\xf0\x66\x0c\x1f\xf1\xa7\x3f\xfe\x79\x2c\x3b\x12\xd1\x61\xe8\x43\xc1\x5a\x7e\xf0\xef\x0a\x29\x54\x0a\xc1\x58\x9e\x6e\x57\xb5\x53\x35\xef\x7c\x4d\x3c\xdb\x6d\xf8\x2c\x59\xeb\xed\x57\xad\x99\xe1\x26\xfa\x02\x11\xfd\x20\x64\xfd\xf1\xad\xc5\xfb\xba\x54\x09\x33\x4b\x37\x8a\xaf\x65\xf2\x45\xc7\xb8\x91\x22\x4b\x61\x88\xd4\xfb\xbe\xa8\x54\x2a\x92\xfb\xa1\x3a\xc1\x93\x6b\x72\x88\xe4\x9e\xfd\x70\xfb\xfe\x02\x4b\x30\x4b\x33\x55\x97\xbc\x94\x0f\xe2\xae\xc8\x7c\x38\x80\x40\xda\x45\xe6\xce\x48\x9d\x23\x3e\xe2\x23\x73\x84\xf2\x4e\x71\x88\x4b\x78\xac\x37\x47\xf3\x2a\xb9\x17\xe5\x71\xc1\x55\xaa\xd7\xf8\x19\xc7\xa6\x5a\x2c\xe4\xa7\x71\xc9\x8b\x8e\x7a\x1e\xe8\x47\xf8\x15\xf5\xdc\x50\xa5\xad\x0c\x3a\x2f\xaa\xba\x8f\x90\x8c\x4e\xb5\xff\x6b\xca\x2d\x66\x25\xf2\xb5\x00\x42\x56\x56\xaf\x85\x03\xad\x60\x7e\x37\x94\x8c\x35\x86\xf2\x27\x34\x15\xa4\xff\x18\x29\xf7\x1f\xa3\x51\x85\x10\x76\x3c\xa8\x50\x86\x75\xcd\xef\xd1\x3e\x5c\x16\xc2\x98\x11\x33\x1a\x46\x3c\x55\x2e\x13\xc1\x65\xcb\x01\xee\x05\x28\x9d\xb3\x0d\x4b\x74\xee\x21\xf3\xf8\x5d\x2b\xfd\x08\x7e\xfa\x38\x4f\x18\x0a\x8d\x57\xaa\x94\x19\xe3\x8b\x92\x9c\xf8\x50\xbf\xc2\xd5\xab\x33\xe3\xa9\x82\x50\x6c\x02\x9f\x0f\x10\x09\x1f\x7e\xf1\x1f\x61\xd8\x82\x27\x32\x93\x25\xb1\xea\x41\x8a\x19\xb7\xdf\x6b\xef\x03\x3b\x97\x05\xdf\xf0\x2c\x18\x56\x3c\xab\x42\x6a\xf4\x91\x11\x3b\x58\x5b\xa5\x99\xa1\x83\xe0\xf3\x1d\xf0\x80\x02\x94\x71\xf0\x01\x19\xee\x4f\x6c\xe7\x97\x8d\x5b\xf4\x1f\xe2\xff\xad\xd9\xe1\xbb\xb4\x82\x03\x0c\xf2\x43\x2e\xc7\x6d\x93\xdb\x17\x79\x0f\x7a\x86\x4c\x1d\x3a\xb9\xa6\x8a\x87\xe4\x63\x7f\x3d\x42\xcc\xa4\xc3\xe8\x1f\xbb\xd2\x7c\xdb\x3d\x0c\x98\xbd\x76\x25\xf1\x0b\xb9\x33\xba\xca\x0e\xf4\x19\xbe\xf3\xc6\x5f\x69\x9d\x1d\xea\x91\x27\xe2\x10\xa9\xd5\x0c\xaa\x55\x1f\x62\x4e\xe2\x06\xf0\x8e\xad\xc9\x99\x8f\xb9\x7b\x1e\xff\x7a\x8d\x3b\x82\x83\xd1\x10\x40\x90\xc1\x20\x76\xe0\xd4\x4d\xde\x02\xba\x18\x88\xb7\x87\x36\x10\xad\xe5\x54\xfb\xed\x10\x41\xc4\x21\xc3\xc3\x18\x81\xeb\xb8\x31\xc2\x41\xce\x3a\xac\x2d\xdd\xe8\xca\x3b\xee\x62\x4e\x74\x3f\x8f\x51\xdf\x6e\x3e\xd7\x5c\x91\xe7\x8f\xb4\xf8\xa9\x8a\x34\x76\xe4\xed\x73\x09\x0d\x7e\xd6\xda\xfc\x79\xb5\x6d\x78\xb0\x3f\xef\x90\xc2\x17\x3b\x25\xe7\x59\x5c\xc2\x12\xb0\x20\x89\x5e\xcf\xa5\x72\x9c\x14\xe4\xe4\x06\x53\xe3\xc4\xf1\x0a\xfb\x80\x84\x33\x19\xb0\xb0\x51\x63\xee\xbd\x9a\x13\x53\x34\xc7\x22\x6b\x9f\x39\x1e\xdb\x77\xcf\x5b\xa3\xa3\x23\xd2\xd8\xfc\x02\x7b\x81\x64\x8f\x7c\x63\xa0\xcc\xbb\xb0\x52\x71\x81\x8e\xdd\xfa\xf8\x47\x91\xfa\xe1\x38\xab\xa7\x0a\x66\x08\x39\xcd\x9c\x20\xb5\x92\x15\x36\x60\xe6\x0a\xda\x07\x3e\xba\x17\xa6\x7d\x72\x7e\x9d\x58\x4d\xb1\x33\x56\x83\x41\xe8\xff\x1e\xe1\x99\x1d\x4e\xe0\x03\x7d\xd1\xd1\x35\x89\x1a\x23\xc1\x84\x20\x6d\xcc\x87\xa8\x47\x6c\xcd\xa5\xa2\x63\x80\x45\x43\x53\x31\xaf\x96\xcb\x4e\x17\xe9\x6f\x3f\xd6\x52\x3f\x27\xff\xe3\x7d\xe1\x3b\x19\x15\x9f\xc3\x5b\x3c\x71\x3d\xa1\xfb\xda\xda\x7d\x5f\xc6\x41\xfc\x2b\x7a\xe3\x5b\x43\x62\x5b\x9b\xe8\x79\xbc\xf1\x93\x3e\xde\x78\x87\xed\x82\x04\x3f\x32\xa7\x1d\xfe\xe6\xef\x6e\xfa\x2f\xe3\xa6\xef\xb5\x29\x90\xd4\x67\x26\xeb\x0a\xfa\x8e\x11\x3e\x91\x9d\xd3\x13\x56\xc3\xa8\x90\x01\xcf\x4a\xf7\xd4\xb0\x39\x4f\x3e\x03\x5d\x27\xdc\x8e\x87\xfb\x03\xf7\x80\x5f\x6e\xf4\x5a\x30\xe8\xca\x60\xb9\x29\x46\x59\x8c\x23\x40\xab\xda\x0f\x0c\x88\x11\xc2\xa3\xc0\x75\x8a\xc8\x95\x34\x28\xd5\x2f\x95\x78\x64\xf6\xb6\x1a\xc5\xf0\xbd\x68\x79\xa0\x0e\xe1\x2b\xab\x1d\xd6\xb0\xfe\x9e\xb0\xa3\x10\x4b\x5e\xa4\x90\x61\x42\x47\x32\xe3\xc9\xbd\xfd\x6f\x18\x1f\xf5\x48\x10\x43\xc7\x15\x80\xb0\xd7\xd0\x9a\x54\x09\x12\x36\x3a\xe6\x79\x3f\x3e\x7c\xdd\x30\x9e\x14\xda\xa0\xd3\xc8\x97\xef\x86\xfc\x6a\x50\x60\x1f\x64\x5a\xf1\x0c\x7b\xec\xf4\xb4\x0f\x85\xaf\x35\x01\x47\x51\xa5\xbd\x6d\x34\x1b\x2d\x07\x32\x54\xc1\x34\x8e\xa7\xea\xcc\x07\x4c\xde\xb0\x3b\x23\x08\x65\x66\x5c\xad\x82\x9d\x23\xfd\x6c\xea\xc3\x16\x26\xb0\x53\x87\xd8\x31\x01\x0e\x64\x1d\x4d\x84\xe9\x9e\x89\x3d\xa4\xaf\x87\x2c\xca\x60\xf2\xea\x49\x54\xee\x3f\x4c\x0b\xda\x09\x85\xe0\xe9\x26\x66\x8c\x94\x8a\x41\x94\x8e\xf1\x74\x2d\x95\x3d\x04\xae\xa4\xac\xbf\x69\x5c\x75\x09\x84\x1c\x43\xe5\xb5\x2c\x6b\x08\x41\xc3\x94\xb0\xca\x25\x2f\x64\xb6\x01\x7b\x22\x2f\xc4\x51\xd4\x4f\xb4\x3e\x94\xf1\x04\x75\x32\x88\x44\xa6\x32\x62\x51\x65\x68\x75\x80\x5d\xee\x3f\x80\x24\xd2\xdd\x64\x64\x15\x8e\x92\xea\x1d\x45\x1d\x63\x15\xd1\xe7\xc8\x1e\xd9\x8a\x56\x0e\x8b\xb8\x05\x46\xd3\x02\x40\xee\x2b\xfd\xe8\x52\xdd\x1e\x79\xc0\x32\x77\xdd\xae\xcf\x16\x65\xd9\xad\x87\x3a\x0b\xd0\xc9\xa9\x88\xf0\xcf\x87\xd6\xe8\x37\x91\x7a\xd9\x24\x15\x7c\x0e\x15\xe2\x0e\x9e\xeb\xca\x60\xc6\x9c\x5d\x4b\xb8\xbf\x9c\xa3\xa3\xee\xb8\x66\xfe\xeb\xa4\xd1\x8a\x4d\xab\xaf\xbf\xfe\x9d\x60\x5f\x43\x0a\x21\xd9\x23\x18\x1f\x03\x4e\x53\x6c\x1d\x44\xb6\xef\x40\x20\xe1\xe9\xd6\x8a\xb0\x36\x88\xaa\xcb\xd7\x07\x90\x27\x4f\x56\xcc\x54\x73\x44\x30\x72\x0a\xb1\x70\xe5\xb9\xd1\x2f\x34\x80\x11\xf1\x66\x77\xa3\xff\x7f\x24\xa0\x80\xa5\x69\xa6\x2a\xd7\x48\xdf\x0f\xd0\xcf\xb9\x60\x6b\x5e\xdc\x43\xa5\x61\x74\xcf\x43\xb9\x82\x97\x52\x8c\xeb\xe1\x85\x57\xb5\xf1\x50\x40\x07\x69\xb9\x59\x51\x29\xe5\x4a\xa7\x31\xab\x98\x06\x5f\xff\x68\xaa\xe6\x55\x6c\x7b\xd6\x82\x05\x61\x6b\x41\xc0\x00\x84\xad\x06\xa6\x12\x1a\x14\x37\x61\x5c\x63\xd6\x23\x6a\x30\x55\xcf\x1c\x36\xd8\xe7\xf0\xbb\x22\x1d\xcc\x39\xf3\xa2\x7c\x05\xf8\xdc\xb8\xba\x37\x2c\x07\x6e\x7b\x50\x72\xae\xa0\xc4\xf7\x88\xfd\x20\x1f\xc4\x88\xdd\xe4\xbc\xb8\x1f\xb1\x33\x0c\xff\xfd\x5e\xcf\xdb\x7c\x78\x5b\x84\x12\x07\xfb\xf1\x9e\xe6\xc6\xda\x45\xf3\xd2\xae\xfd\xff\xbc\x45\x0c\xc0\xba\x62\xdf\xff\x3d\x11\x79\x1d\x5c\x1f\xff\xd3\x3d\x11\x7b\xc2\xd4\x7f\x07\xaf\xfd\x8f\xb4\x8a\x77\xd3\x7c\xfc\x43\xfc\xbf\x4e\x7e\x39\x8d\x0b\x74\x4f\x92\x72\xad\xa8\xb4\xdf\x56\x62\xb3\x4c\x9b\x97\xf2\x76\x7e\x73\xbf\xa3\x40\xe9\xe3\xa9\x4f\x6d\x1f\x00\xba\xa7\x57\xdd\x7c\x9d\x66\xda\x54\xc5\xee\xc3\x7f\x5d\x1f\xb5\xeb\xbd\x85\xe8\x15\x36\xdb\x7a\x2e\x80\xb5\xa0\x2f\xfc\x04\x1f\x9b\xfd\x45\xcf\x67\x80\xb5\x3a\xec\x84\xb7\x35\xe7\xe9\xa3\x75\x52\x1b\x6a\xb8\x21\x6f\x72\x01\x7c\x57\x41\x15\x0d\x01\x81\xc6\x0e\xf3\xae\x91\xa9\x72\x75\x01\x30\x63\xb6\x28\x04\x50\x83\x17\x02\xca\x51\x32\x62\x38\xcc\x36\x91\x46\x14\x59\x3e\x01\x14\x13\x67\xb9\x41\xb2\x2a\xd9\x5b\x73\x21\x94\x9f\xed\x21\xaa\x04\xd0\x60\x37\x66\x9f\xd0\x6e\x8f\xc2\x95\x87\xe8\x28\x9d\xbb\xf5\x5e\x64\x0b\x82\xca\xbd\x14\x65\x24\xcd\x1b\xaa\x45\xed\x68\xd6\x22\x54\xbf\x29\xc4\x7f\x6b\x0c\xba\x41\xce\x55\x73\xa0\xf4\x8a\xe9\x3d\x87\xbf\xfc\x8a\x97\x2b\x34\x68\xd7\xba\x14\x28\x33\x91\x25\x08\xf7\x0b\x7a\x9d\xe7\x99\x9e\x43\x1d\xc8\x72\x07\x83\x64\x42\x47\xbb\xd7\xd4\x6d\x2f\x58\x1f\xc9\x60\xa5\x09\x64\xda\x16\xc2\x00\xe1\xca\x76\x94\xaa\x2f\x3e\x79\x98\xd1\xbd\x3d\x5c\x2b\xf4\xcf\xb6\x8c\xed\xed\xc2\x21\xf6\x58\x03\x58\xf5\xfc\x09\x19\x34\x5b\x65\x58\x88\xaa\x9a\xc2\xc0\xc8\x56\xdb\xf8\x5e\x64\xcb\xd9\x00\x11\x1f\xfc\x12\x5d\x02\x3c\x54\x02\xf3\x78\x50\xaa\x2c\xed\xcf\x1f\xa6\xaf\xb2\x93\x18\x81\x48\x1e\x82\x51\xf0\x65\x82\x31\x30\x82\xac\x46\x55\xca\x42\x30\x05\x28\x84\xa9\x32\xd5\xfc\x28\x10\x93\x58\x2b\xee\x01\xc8\x74\x8c\xc8\x39\x98\x32\xc0\x57\x74\xd4\x72\x0d\xa3\x67\x32\x54\xf4\x71\xf4\x81\x3c\x23\xe1\x0f\xb9\x92\x98\x19\xef\xbf\xdd\xb7\x63\x8d\x35\xb0\xa2\x1d\x5c\x09\x2f\xbb\x5d\xf2\x02\x6a\x8e\x41\x06\xe6\x35\xa2\x28\x7e\xed\x0b\x3c\x8e\x86\xf6\xbd\xba\x21\x9e\x36\x55\xff\xec\xee\x86\x6e\x50\xf1\x80\x9d\x6e\x67\xc6\x5e\x51\x9d\x60\xe7\xda\xd8\x9c\x09\x19\x29\x81\xdd\x83\xda\xda\xf2\x6d\xad\x72\x87\x6b\x89\x0b\xcf\x68\x4a\x97\x85\x5f\x1f\xa4\x89\xc8\xde\xa1\xb7\x1b\x21\xd8\x9b\x42\x2c\xde\x7c\x2c\xc4\x62\xe6\x56\x7a\x0c\x1f\x34\xb6\x5f\xb4\x4d\xf9\xde\x73\x73\x98\x5c\xab\x76\xf2\xc3\x3d\xd4\xa8\x8d\x4f\xc2\x76\xa2\x6f\x92\x0b\x16\x6a\xf0\xda\xef\x01\x06\x08\x91\x36\xb9\xe8\xb7\x46\xf6\xc5\xaf\xb9\x2e\x24\x58\x0f\xa8\x55\x47\xa9\xd6\xff\xf9\xd7\x5b\x6d\xce\xfa\x5c\x6f\xb7\x75\xc8\x8c\x13\xf6\x5c\xf9\x0b\xaf\x1b\x17\xfa\x65\xd1\xe9\xb0\x80\x26\xe7\x8f\x8a\x78\x6c\x06\xb9\x9e\xfa\x5d\x6b\x0d\x00\x51\x74\xad\x6d\x61\xe0\xc2\x29\x53\xce\xd3\x27\x7d\xb5\xcf\x11\x0b\x16\x34\xcf\xb2\xb8\xa2\x46\x88\xb4\x4d\x55\xc8\x4b\xb5\x5a\x6b\x96\x39\x17\x5e\x4d\xdf\xf0\x65\x99\x4d\xc9\x4b\x31\x72\xa4\x2b\x44\x57\x48\xf1\xb0\xa3\x39\x87\x02\xdc\xbe\xd2\xdb\xbe\xd3\xfc\x5c\x46\xe4\x6f\x2c\x2f\x7a\x4f\xe4\x19\xbb\x9d\xdd\x8b\x2d\x38\xf3\xde\xb1\xb6\x47\x3a\x22\x4a\x09\x38\xcc\x4e\xca\x26\xbc\x28\x1c\xca\x9f\x7a\x65\x8e\xee\x3c\xb6\x4a\x3a\xc6\xb9\x12\xc9\x7d\xae\xa5\x1a\x2c\x8b\x6a\x14\x17\xb0\xd9\x4b\x16\x5a\xf3\xd6\x61\xaf\xcb\xb1\xa6\x4f\xe2\x87\x18\x80\x57\x38\x68\x68\x20\x63\xe3\xcc\xd7\xf3\xee\xde\x76\xcf\xed\xbf\x10\xe1\x6e\xf8\x0c\xbe\xd8\x96\xf8\x50\xe3\x56\xe1\x2d\x8e\x9d\x1a\x13\x28\xdf\xca\xfe\xea\x39\xd9\x9c\xd5\x28\x0c\x5b\xa7\x14\x5c\x90\x7f\xf7\x0c\xfd\xdd\x33\xf4\xdf\xdc\x33\xf4\x25\xdd\x42\x80\x8d\xf9\x9c\x3e\xa1\x1d\x01\xf2\x03\x8e\xa3\xef\x75\x70\x8e\x63\xab\x76\x3c\x8a\x4a\x93\x47\x99\x8e\xdb\x40\x7f\x47\x84\x61\xe7\x67\xce\x93\x7b\xa1\x3a\x63\xf4\x8e\xbe\xa8\xb3\x4a\xec\xf3\x22\x58\xda\xd8\x97\xa2\xb7\x77\x43\x59\x02\xd4\x89\x48\x83\xdb\x08\x41\xec\x39\x01\xdd\xd3\x7e\xf8\x11\x80\xc6\x74\xe1\x89\xad\x0d\x65\xe1\x61\x30\x12\x69\x92\x10\x2c\xd5\xa0\x82\xee\x8b\x89\x73\x1d\xcf\x72\xad\xb3\x56\x68\xdc\xb3\x4e\xe0\x56\xa2\x4c\xdf\xc9\x9b\xa0\x32\x6a\x62\xc0\x98\x9b\xc5\x90\x74\x11\x52\x34\x30\x1f\x03\x2a\x71\xc0\x6e\x4a\x2b\xc8\xa5\x0c\xd3\x11\x95\x57\xe4\xde\xe1\x42\x18\xb1\xb9\x48\x38\x94\xa7\x75\xe0\xbd\x84\xfb\xec\x93\x98\x14\x69\x2b\x1d\xc4\x6c\xf7\xd3\x11\xb5\x84\x76\x67\xb2\xad\xec\xc6\xd0\xc3\xd5\xd0\x10\x1c\xb4\x1c\x47\xee\x90\x24\x8e\x76\x71\x5f\xd9\x65\xc7\x31\x3d\x83\xea\x8b\xfd\x6e\xb8\x56\xb9\x33\xa1\x86\x4e\xa1\x9d\xfe\x82\xf4\x07\x48\xc7\x59\xf7\x44\xee\x4c\xd5\x89\xaf\xc6\x1b\xb0\x5f\x1e\xb9\x87\xe1\x52\xc4\x2c\x6e\x2d\x0d\x72\x39\x06\xcb\x65\xc4\x4c\x95\xac\x80\xad\xb2\x2e\xa7\x62\xb9\xb5\x7d\x62\x47\x53\x65\x0d\x22\x70\xb5\xac\x39\xe4\xc5\x3f\x5a\x65\xd5\xc8\xbf\x0a\x0f\xcf\x22\xf2\xae\x18\x91\x85\x86\x93\x56\xad\xe8\x35\x47\x1c\x8a\x00\x8b\x80\x29\xa9\xf2\x94\x97\x62\x3c\x0d\x68\x1b\x89\x9e\x4e\x87\xf2\x20\x95\xd9\xc4\x1f\x16\xe3\x18\x1b\x92\x36\x93\x0b\x91\x6c\x92\xad\x2a\x44\xbb\x69\x22\xfe\x6e\xb6\xfd\xb6\xcc\x36\x64\xd9\xc5\x9c\xc1\x21\x53\x4b\x43\xbd\x0e\xaf\x1f\x36\xb9\x82\x45\x23\x31\x03\xe6\xf9\x0b\x9a\x9d\x2d\x3a\xf0\x30\x7d\xbe\xb7\x1d\xb4\xfb\x3a\x0b\x86\x6d\xb8\xac\x23\x0a\x84\x2d\xb5\x30\x0e\x2e\x96\xf1\xd6\xb1\x0a\x6d\xef\xb0\x7e\x37\xcb\xcc\x6f\x0a\x9c\xd4\xc7\x70\xb5\x1a\xb7\x87\x2b\x5d\x3a\x4d\x5b\x09\xbc\xef\x76\x68\xdc\x11\xab\x3b\x2f\x5f\x18\x3f\xeb\x75\x09\xe8\xb0\xff\x27\x6a\x73\x50\x02\xe6\x26\x17\xb3\xaa\xc8\x0e\x82\x1b\xdf\x5d\x5f\x1c\x7b\x6d\x03\x34\xe7\xce\xba\x47\x65\xa3\x34\xb4\xab\x49\x2c\x52\x82\x83\x26\x3a\x63\xf3\x6a\xb1\x80\xfa\x25\x04\x0c\x75\xc2\x08\xea\xe7\x57\xa6\x74\xf7\x09\x32\xcd\x70\x53\x4e\x95\x56\x82\x4d\xbf\x3a\x9e\x7e\x65\xaf\xb2\x82\x27\xa5\x28\x90\x64\x20\xe3\xa6\x64\x46\x2c\x41\xd5\xa2\x4e\xef\xae\x2f\x20\x2b\xb1\x5c\x61\x73\xde\x64\xc5\x7c\x4f\xe4\x7c\x86\x5a\x3f\x40\x50\xad\xa2\x8a\x5b\x30\xf6\x97\xdc\x30\xa9\xa6\xea\xa3\x6d\xe2\x78\xa9\xf5\x32\x13\x63\xb7\x20\xe3\x33\x72\x3d\x7e\x7c\x85\x23\x80\xd7\x63\x58\xbf\xbd\x10\xb9\xd2\x4a\x26\x3c\x83\x84\x9c\xa9\x02\xad\x79\x64\x3f\x06\x5c\xa3\xd3\xaf\xc6\xd3\xaf\x18\x84\x4f\x4b\xc6\x93\x44\xe4\xa5\x48\xb1\xb4\xe9\x44\xb1\x1c\xf0\x8b\x89\x18\xb1\x52\xf0\xb5\x71\x94\xce\x2c\xb7\x36\x26\x98\x86\x4c\x2a\x42\x3a\xcd\xa5\xe2\xc5\x06\xc1\x4c\x58\xac\x9c\x92\x3f\x36\x53\x25\x3e\x01\xfd\xa7\x04\x06\xd0\xca\x78\x5a\x1a\x2a\x4c\x60\x3f\xf9\x44\x6d\xc6\xec\x07\x64\x68\x40\x0a\xd4\xbb\xeb\x0b\x47\x6f\x44\x39\xa0\x53\x65\x92\x95\x58\x0b\xf6\x71\x55\x96\xf9\xc7\x11\xfe\xaf\xf9\x08\x11\x47\xa5\x19\xfe\x3a\x62\x76\x89\xac\xa2\xea\xf0\xf2\xd9\x06\x6a\xc8\x56\x39\x15\x9c\x9f\x2a\xe0\x62\x2f\x62\x74\xaf\x9d\x6d\xe8\x31\x32\xc1\x6b\xb8\x70\x2b\xc5\xa1\xb8\xe3\x1b\x3b\x39\xff\x8b\x4d\x16\xa1\x4b\x3b\x81\xae\xb6\x98\x1f\x15\x28\x24\x06\x52\xb6\xc6\xf6\x85\x13\xc5\x7e\xb8\xbd\xbd\x62\xdf\x9f\xdf\x3a\x65\xe7\xee\xfa\x02\xf7\x05\xd0\xa9\x30\xce\xfe\xd4\x5c\xe2\xdb\x4d\x2e\xfe\xfc\xa7\x3f\x4f\x15\x73\x35\xca\x95\x9b\x69\x3c\xd1\x23\xa4\x84\x05\xbc\x13\x04\x66\x81\xca\x19\xfa\xc3\x92\x3b\x34\xfc\x02\xb5\xf3\x47\xf2\x16\xc0\x1d\x95\x69\x7d\x5f\xe5\xde\xcd\x1d\xeb\x61\xb6\xc3\xbb\xeb\x0b\x68\x1d\xe8\x94\xca\x15\xd4\x4f\x13\xde\xfb\x02\x0b\xcf\xdd\x60\xec\x7f\x3f\x68\x99\x32\xae\x36\xf6\x5d\x6c\x1a\xb6\x65\x21\x16\xba\x10\x23\xf7\xa4\x6d\x80\x97\x72\x2e\x33\x59\x6e\x40\x4a\xb9\xba\xf6\xb9\xe3\xc8\xb7\x0d\x58\x6b\x86\x00\xde\x76\x83\x61\x19\xdb\x97\x77\x26\x46\x80\xc3\xa2\xf9\xda\x88\x68\xe8\xd8\x77\xe7\x85\xe0\xf7\x76\x77\x53\x0b\xe3\x57\x54\x33\x56\xbc\xc1\x3b\x66\x51\xa9\x04\xb7\x86\x1d\x03\xed\x7e\xb2\x9c\xb2\x0d\xe3\x0f\x5c\x62\x4d\x59\x17\x2e\x5f\x2c\x64\x22\x79\x46\x92\x63\x5e\x2d\xa0\x6c\x0c\x37\x54\xb2\x08\xc1\x87\xb6\x11\xb0\x32\x5c\xc1\x7e\xdc\x50\x73\xb1\x94\x08\x38\x7e\x94\xe5\x0a\xf3\x0a\xc6\xb8\xce\x3c\x97\x66\x9c\xe8\x35\x9c\xb7\x1b\xd8\x4a\x86\x8c\x5e\xc0\x81\x37\xf6\x39\x7b\xe9\xa0\x76\xeb\xbc\xdc\xd0\xde\x7b\xc5\xd6\x72\xb9\x2a\xa1\x90\x0b\xf4\x0e\x90\x08\xb9\xce\x33\x30\xfa\x28\xc2\xe8\xf0\xbe\x46\xac\xb9\x2a\x65\xd2\x15\x53\x6a\x2d\x09\xde\x0f\xe3\x39\xdf\x94\xbb\xfd\x78\xef\x89\x67\x9f\x23\x85\x7e\x24\x91\x59\x53\x20\x93\x0c\x84\xf2\x32\x11\x81\x7f\xb3\xe4\xec\x3e\x13\xea\xe3\x89\xda\x7c\x0c\x24\xa4\x5c\x45\xb5\xaf\x76\xf4\xee\xce\x3f\xcf\x34\xad\x1a\xe3\x53\x05\xa8\x4e\x2b\x30\xa8\x18\xed\xce\x3b\xc6\x5f\x29\x76\x65\xaf\xdc\xa6\xc9\xe4\x1c\xfa\x26\x59\x61\x98\xa9\x72\xc8\x27\x28\x35\xcb\x79\x72\x7f\x5c\x29\xfb\x3f\x56\x18\xe2\x71\x37\x31\x39\xd1\x54\xe9\x05\xab\x4a\x3c\x38\x6e\x0b\x83\x53\x24\x72\x05\x04\x03\x6d\x2d\xca\x95\x4e\x7d\x5e\x98\x6d\x13\xe6\xcf\x8e\xe8\x9c\xe8\xa5\x5f\xbf\x61\x57\xb6\x43\xbb\x89\xa9\x6f\xee\x3f\x5f\x2a\x76\xfa\xcf\xff\x0c\xcf\xdb\xc9\x7d\xa7\x35\x5b\x68\xcd\xbe\x63\xe3\xf1\xf8\xdf\xf1\x6f\xb6\x51\xae\x36\xf4\x2f\xae\x36\x63\xdb\xdc\xbb\x42\xaf\x5f\x2e\xb4\x7e\x45\x7f\x87\xa2\xcd\xf6\x3f\xe4\x82\xbd\xb4\x0f\xdd\x41\x57\xb7\xfa\xe5\xb4\xfa\xfa\xeb\x6f\xfe\xd5\x3e\xfa\x8a\xfd\x27\x3e\x13\x3d\xfe\xb7\x78\xa8\xdf\xec\x19\xea\xef\xf9\x03\xef\x33\x56\xf6\x1d\xdc\x35\xb6\x81\x9d\x63\x94\xe6\xe5\x3b\xad\xc7\x60\xfd\xc7\xa3\xc3\x66\xed\x13\x38\x8a\xe8\xa9\x7f\x8f\x86\xcd\xdc\xb8\x7f\xb7\x67\xdc\x88\xaa\xf7\x23\xc7\xe6\xdf\x69\xfd\x72\x3c\xb6\x72\x8b\xe6\x15\x47\xfd\xf2\x55\x7d\xa2\xe1\x03\xb6\xc7\x6f\x7f\x9e\xe0\xf0\xcf\xce\x6f\x4e\xaf\x27\x57\xb7\x1f\xae\x5f\xbd\x71\x5f\x10\x56\x20\x7a\x9f\xb9\xd2\xda\x7e\xe0\xff\x7b\xcf\xc0\xbf\xd7\x6e\xcc\x30\xe8\x37\xdf\x31\x5c\xcd\x7c\x3e\x7e\xa7\xf5\x7f\x8e\xc7\xe3\xbf\xd1\xcf\x5c\x6d\x46\xf6\x62\xb2\xcf\xe4\x28\xca\xdf\xf3\xc2\xac\x78\x66\xbf\x29\x1a\x83\xff\x88\xd6\x16\x5d\x73\x72\xd1\x68\xec\x4e\xad\x43\x73\xd0\x19\x2c\x2c\x3c\xf5\x8f\xdf\x31\x25\xb3\xb0\x7c\x51\x1f\xb0\x4e\xb7\x40\x2d\x91\xdc\xfb\xe3\xe2\x6b\x84\xce\x37\x2c\x6f\x1e\x5c\xcc\x3b\xdb\xb8\x0a\x05\x56\xdc\x4f\xd5\x8b\x16\x89\x7e\x6c\x55\xbb\x31\xfc\x60\x2f\xa8\x17\xae\x7a\xbc\xbb\x16\x7c\x65\x2d\x9c\x59\x08\x44\xe3\x69\x55\x94\xa3\xd6\xa6\x1f\xfa\x0b\x2f\x22\xab\x02\xb5\xf3\xc5\xf1\x0b\x4a\x14\x0a\x5d\xd4\x89\xe4\xa7\x5f\x2d\xb4\x1e\xcf\x79\x01\xa3\xfb\x74\xbc\x19\xff\x75\xfa\x15\x7e\x0f\x2a\x1f\xa8\x18\x41\xe3\xd3\xaf\xe0\x57\xd8\x0e\x53\xf5\xfb\x9b\x0f\x97\x53\xf5\xdd\x77\xdf\x7d\x87\xb3\x65\xff\xdd\x12\x7b\xb1\xd7\x15\x88\x5b\xd4\x53\x2a\xe3\x4a\x4a\x8a\x65\x95\xf1\x62\xaa\xda\xc3\x35\xa9\x08\x42\x73\x14\x82\x37\xb4\xcf\x46\xae\xba\x05\x14\x29\x73\x32\x0e\x7d\x93\x1f\xff\x7f\x3b\xe4\x8f\xa4\x22\x7a\x21\x1f\x4f\xc1\xd8\x6d\xe6\x37\x6e\xab\xda\xc9\xb6\xfb\x37\xe8\x59\x0b\x99\x09\x3a\xb8\x6e\x73\x5f\x89\xc2\x68\x15\xf6\x0c\x19\x04\xc0\x6d\x06\x01\x00\xf6\x1d\x7b\xfd\xef\x8d\x5f\xed\x3a\xb8\x1f\xbf\xa9\x49\x02\xc6\x42\x53\xd3\xaf\x60\xd4\xd3\xaf\xde\xb0\xe9\x57\x6d\xfb\xa6\x3e\xb0\x31\x0e\x65\xfa\xd5\x28\x34\x00\xc3\xb8\xe4\x6b\x6c\xa4\xfa\xfa\xeb\xdf\x25\x38\x04\x4c\x5d\x8b\x9e\xb4\x43\xea\x7e\x30\x1a\xe2\xa4\x11\x3a\x73\x13\xe1\x52\x20\x1f\x45\x96\x1d\xdd\x2b\xfd\x88\x75\xc6\x21\x4e\x44\x59\xca\x0c\xb7\x47\x7d\x71\xa9\x36\x59\x63\xc5\x5d\xd2\xa6\xef\xc6\x97\xb7\x83\x05\x9d\xaa\x8f\xb0\x75\xdc\x8a\x12\x1d\x11\xd0\x81\xfa\x9e\xc0\xa8\xa1\x9d\xe0\x72\x2c\x68\x23\x4c\x15\x34\xe3\xd7\x9c\xbd\x04\xe0\x17\x7d\xca\x96\x66\xed\x8c\xa7\x3f\xff\xe9\xcf\xaf\xde\x1c\xb2\x4e\xf5\xe6\x6a\x4b\x05\xdf\x83\x6d\xbc\x1e\x7f\xf3\xfa\x1b\x33\xfd\x8a\x66\xbd\xdd\xc4\xbe\x90\xa6\xfc\xa9\xa1\x81\x3d\xa1\xd8\xb9\x55\x1c\x3e\x57\xf0\xc2\x0d\x15\x87\xd9\x37\x68\x71\x5d\x0f\x2b\xe8\x85\x73\xeb\x80\x71\xe6\xca\xc0\xdb\x71\x0f\x52\xef\xfc\x7c\xa1\xb1\xc5\x1e\x0b\x9e\xe7\xa2\x70\xbe\xf2\xad\x70\x06\xd4\x54\x87\x5e\x9c\xe8\x6f\x13\x66\x76\xdb\x34\x9a\x86\xc7\x60\xea\xc6\xed\x2b\x77\x59\x65\x59\xe7\xca\xed\x2f\x96\x7c\x79\x77\x71\x31\xfb\xe9\xe4\xe2\xee\xdc\x7d\x7e\x6b\xf1\xe1\xe8\xb1\xce\x39\xf1\x23\xa1\x39\x41\x5c\x55\x09\x58\xaa\x6a\x2d\x0a\xc7\x14\x16\xbe\x1a\x71\x24\x55\x96\xd5\xcb\x62\x4f\xd5\x47\x6a\x07\xc4\x40\xa5\xa4\x53\x53\x76\x4e\x5c\xbd\x7f\x78\xec\xa3\x6d\xfc\x23\xbe\x7b\xc4\xc2\x47\xbc\x61\x97\xbe\xd7\x8e\x79\x25\xc2\x89\x03\x8e\x03\xe6\xdb\x76\x1d\x87\xe7\x2e\xfc\xff\xb4\xe3\x71\xa7\xa0\xe8\x97\x95\xbc\x58\xaf\xff\x59\x4e\x07\xce\xdd\xc7\x3a\x14\xdc\xbb\x4b\x53\x8c\x1a\x42\xbb\x23\x2c\xd7\x6e\x4a\xe2\x2c\xc6\x39\x9b\x2a\x14\xc4\x76\x4c\xa5\xee\x1e\x13\x9b\x50\x04\x29\xe3\x6a\x59\xf1\xa5\x30\x23\xe6\x3a\x9f\x2a\x67\x9d\x3a\x5b\xc7\x03\x73\x80\x91\xb5\xb1\x85\x1a\x29\xc0\x52\x4d\x15\x7d\x13\xdc\xb0\xd4\x3c\xa6\xa3\xfe\xfe\xc6\x7f\x0e\xe5\x7d\x63\x43\x54\x71\x5e\x4d\x15\x2e\x2e\xfa\xc6\x1c\xd8\x10\xd4\x8e\xed\xbb\x89\x03\x3c\x18\xed\xba\x94\x95\x7a\x09\xb0\xc7\xa9\xf2\x2c\x58\x08\xce\x70\xf6\x5a\xa8\x0d\x8a\x43\xda\x2f\x4f\xdc\x62\xb8\x33\x41\x63\x6b\xdf\xf5\x07\xdf\x01\xf6\xc0\xcd\x5a\x6d\xf9\xdd\xdb\x36\x88\xb1\x9e\x80\x1c\x1e\x09\x8e\x2e\x6a\x44\xa0\x3e\x6b\x1f\x8d\xfb\x2e\x7c\xa6\x33\x7b\x54\x57\xf3\x6c\xc0\x90\xf0\xf9\x9d\x83\x42\x91\xbc\x7b\x50\x3d\x3c\xd2\xd7\x8d\xa3\x65\xb7\xe9\xae\x6e\xe7\x5a\x77\xac\xcb\x33\x62\x76\x6b\x83\xa2\x17\xf6\x4d\x46\x95\x94\x4f\xd9\x2f\x3d\xf8\x80\x9a\x53\xe4\xa4\xcf\xae\x01\x65\xd2\x3c\x69\x38\x41\x7f\xea\x3d\x22\xaf\x21\xd0\x65\x37\x48\xc2\xd2\x3d\x57\x13\xb0\x1d\x62\xd2\x99\x29\x98\xde\x22\x24\x8a\x17\x7b\x78\x46\x70\x88\xec\xfe\x1f\xf9\x4d\x34\x0a\x2b\x37\x82\x41\x26\x55\x61\xac\xb8\x24\x79\x47\x52\x5b\x17\x8c\x4f\x95\x63\x83\x71\xe2\xf8\xc4\xf9\x83\x0b\xff\x57\xe4\x58\xca\xb1\x64\x1d\x04\x85\x4a\xf0\x92\x93\x34\x9c\xaa\x07\x5e\x48\xae\x00\xd3\x3c\x37\x50\x6f\x18\x4c\xba\x0d\xa3\x1f\x3c\x01\x87\x89\x9d\xcc\x7b\x64\x5e\x43\x0d\xa8\xdd\xf3\xff\x60\xff\xef\x6f\xff\xf0\x7f\x03\x00\x00\xff\xff\x9e\xd5\x65\xf4\xf7\xfd\x06\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( diff --git a/flyteidl/gen/pb-java/flyteidl/service/Admin.java b/flyteidl/gen/pb-java/flyteidl/service/Admin.java index a209b21ae6..b98591274e 100644 --- a/flyteidl/gen/pb-java/flyteidl/service/Admin.java +++ b/flyteidl/gen/pb-java/flyteidl/service/Admin.java @@ -212,9 +212,9 @@ public static void registerAllExtensions( "task_execution_id.task_id.domain}/{task_" + "execution_id.task_id.name}/{task_executi" + "on_id.task_id.version}/{task_execution_i" + - "d.retry_attempt}Z\347\003\022\344\003/api/v1/children/t" + - "ask_executions/org/{task_execution_id.no" + - "de_execution_id.execution_id.org}/{task_" + + "d.retry_attempt}Z\347\003\022\344\003/api/v1/children/o" + + "rg/{task_execution_id.node_execution_id." + + "execution_id.org}/task_executions/{task_" + "execution_id.node_execution_id.execution" + "_id.project}/{task_execution_id.node_exe" + "cution_id.execution_id.domain}/{task_exe" + @@ -231,8 +231,8 @@ public static void registerAllExtensions( "1/data/node_executions/{id.execution_id." + "project}/{id.execution_id.domain}/{id.ex" + "ecution_id.name}/{id.node_id}Z\220\001\022\215\001/api/" + - "v1/data/node_executions/org/{id.executio" + - "n_id.org}/{id.execution_id.project}/{id." + + "v1/data/org/{id.execution_id.org}/node_e" + + "xecutions/{id.execution_id.project}/{id." + "execution_id.domain}/{id.execution_id.na" + "me}/{id.node_id}\022\250\001\n\017RegisterProject\022&.f" + "lyteidl.admin.ProjectRegisterRequest\032\'.f" + @@ -303,8 +303,8 @@ public static void registerAllExtensions( "de_id}/{id.task_id.project}/{id.task_id." + "domain}/{id.task_id.name}/{id.task_id.ve" + "rsion}/{id.retry_attempt}Z\315\002\022\312\002/api/v1/d" + - "ata/task_executions/org/{id.node_executi" + - "on_id.execution_id.org}/{id.node_executi" + + "ata/org/{id.node_execution_id.execution_" + + "id.org}/task_executions/{id.node_executi" + "on_id.execution_id.project}/{id.node_exe" + "cution_id.execution_id.domain}/{id.node_" + "execution_id.execution_id.name}/{id.node" + @@ -382,21 +382,21 @@ public static void registerAllExtensions( "admin.NamedEntityListRequest\032\037.flyteidl." + "admin.NamedEntityList\"\211\001\202\323\344\223\002\202\001\0229/api/v1" + "/named_entities/{resource_type}/{project" + - "}/{domain}ZE\022C/api/v1/named_entities/{re" + - "source_type}/org/{org}/{project}/{domain" + + "}/{domain}ZE\022C/api/v1/named_entities/org" + + "/{org}/{resource_type}/{project}/{domain" + "}\022\203\002\n\016GetNamedEntity\022%.flyteidl.admin.Na" + "medEntityGetRequest\032\033.flyteidl.admin.Nam" + "edEntity\"\254\001\202\323\344\223\002\245\001\022I/api/v1/named_entiti" + "es/{resource_type}/{id.project}/{id.doma" + "in}/{id.name}ZX\022V/api/v1/named_entities/" + - "{resource_type}/org/{id.org}/{id.project" + + "org/{id.org}/{resource_type}/{id.project" + "}/{id.domain}/{id.name}\022\235\002\n\021UpdateNamedE" + "ntity\022(.flyteidl.admin.NamedEntityUpdate" + "Request\032).flyteidl.admin.NamedEntityUpda" + "teResponse\"\262\001\202\323\344\223\002\253\001\032I/api/v1/named_enti" + "ties/{resource_type}/{id.project}/{id.do" + "main}/{id.name}:\001*Z[\032V/api/v1/named_enti" + - "ties/{resource_type}/org/{id.org}/{id.pr" + + "ties/org/{id.org}/{resource_type}/{id.pr" + "oject}/{id.domain}/{id.name}:\001*\022l\n\nGetVe" + "rsion\022!.flyteidl.admin.GetVersionRequest" + "\032\".flyteidl.admin.GetVersionResponse\"\027\202\323" + @@ -414,12 +414,12 @@ public static void registerAllExtensions( "ityList\"\327\002\202\323\344\223\002\320\002\022O/api/v1/description_e" + "ntities/{resource_type}/{id.project}/{id" + ".domain}/{id.name}Z^\022\\/api/v1/descriptio" + - "n_entities/{resource_type}/org/{id.org}/" + + "n_entities/org/{id.org}/{resource_type}/" + "{id.project}/{id.domain}/{id.name}ZG\022E/a" + "pi/v1/description_entities/{resource_typ" + "e}/{id.project}/{id.domain}ZT\022R/api/v1/d" + - "escription_entities/{resource_type}/org/" + - "{id.org}/{id.project}/{id.domain}\022\225\002\n\023Ge" + + "escription_entities/org/{id.org}/{resour" + + "ce_type}/{id.project}/{id.domain}\022\225\002\n\023Ge" + "tExecutionMetrics\0222.flyteidl.admin.Workf" + "lowExecutionGetMetricsRequest\0323.flyteidl" + ".admin.WorkflowExecutionGetMetricsRespon", diff --git a/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py index 7e71e9e9e5..b6ac28b9a8 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py @@ -29,7 +29,7 @@ from flyteidl.admin import description_entity_pb2 as flyteidl_dot_admin_dot_description__entity__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/service/admin.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1c\x66lyteidl/admin/project.proto\x1a.flyteidl/admin/project_domain_attributes.proto\x1a\'flyteidl/admin/project_attributes.proto\x1a\x19\x66lyteidl/admin/task.proto\x1a\x1d\x66lyteidl/admin/workflow.proto\x1a(flyteidl/admin/workflow_attributes.proto\x1a flyteidl/admin/launch_plan.proto\x1a\x1a\x66lyteidl/admin/event.proto\x1a\x1e\x66lyteidl/admin/execution.proto\x1a\'flyteidl/admin/matchable_resource.proto\x1a#flyteidl/admin/node_execution.proto\x1a#flyteidl/admin/task_execution.proto\x1a\x1c\x66lyteidl/admin/version.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\'flyteidl/admin/description_entity.proto2\xb8y\n\x0c\x41\x64minService\x12\x8e\x01\n\nCreateTask\x12!.flyteidl.admin.TaskCreateRequest\x1a\".flyteidl.admin.TaskCreateResponse\"9\x82\xd3\xe4\x93\x02\x33:\x01*Z\x1f:\x01*\"\x1a/api/v1/tasks/org/{id.org}\"\r/api/v1/tasks\x12\xd8\x01\n\x07GetTask\x12 .flyteidl.admin.ObjectGetRequest\x1a\x14.flyteidl.admin.Task\"\x94\x01\x82\xd3\xe4\x93\x02\x8d\x01ZL\x12J/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12=/api/v1/tasks/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xc5\x01\n\x0bListTaskIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"Y\x82\xd3\xe4\x93\x02SZ,\x12*/api/v1/tasks/org/{org}/{project}/{domain}\x12#/api/v1/task_ids/{project}/{domain}\x12\xa8\x02\n\tListTasks\x12#.flyteidl.admin.ResourceListRequest\x1a\x18.flyteidl.admin.TaskList\"\xdb\x01\x82\xd3\xe4\x93\x02\xd4\x01Z?\x12=/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}/{id.name}Z(\x12&/api/v1/tasks/{id.project}/{id.domain}Z5\x12\x33/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}\x12\x30/api/v1/tasks/{id.project}/{id.domain}/{id.name}\x12\xa2\x01\n\x0e\x43reateWorkflow\x12%.flyteidl.admin.WorkflowCreateRequest\x1a&.flyteidl.admin.WorkflowCreateResponse\"A\x82\xd3\xe4\x93\x02;:\x01*Z#:\x01*\"\x1e/api/v1/workflows/org/{id.org}\"\x11/api/v1/workflows\x12\xe8\x01\n\x0bGetWorkflow\x12 .flyteidl.admin.ObjectGetRequest\x1a\x18.flyteidl.admin.Workflow\"\x9c\x01\x82\xd3\xe4\x93\x02\x95\x01ZP\x12N/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x41/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xd1\x01\n\x0fListWorkflowIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"a\x82\xd3\xe4\x93\x02[Z0\x12./api/v1/workflows/org/{org}/{project}/{domain}\x12\'/api/v1/workflow_ids/{project}/{domain}\x12\xc0\x02\n\rListWorkflows\x12#.flyteidl.admin.ResourceListRequest\x1a\x1c.flyteidl.admin.WorkflowList\"\xeb\x01\x82\xd3\xe4\x93\x02\xe4\x01ZC\x12\x41/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}Z,\x12*/api/v1/workflows/{id.project}/{id.domain}Z9\x12\x37/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}\x12\x34/api/v1/workflows/{id.project}/{id.domain}/{id.name}\x12\xae\x01\n\x10\x43reateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanCreateRequest\x1a(.flyteidl.admin.LaunchPlanCreateResponse\"G\x82\xd3\xe4\x93\x02\x41:\x01*Z&:\x01*\"!/api/v1/launch_plans/org/{id.org}\"\x14/api/v1/launch_plans\x12\xf2\x01\n\rGetLaunchPlan\x12 .flyteidl.admin.ObjectGetRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\xa2\x01\x82\xd3\xe4\x93\x02\x9b\x01ZS\x12Q/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xf3\x01\n\x13GetActiveLaunchPlan\x12\'.flyteidl.admin.ActiveLaunchPlanRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\x96\x01\x82\xd3\xe4\x93\x02\x8f\x01ZM\x12K/api/v1/active_launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12>/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x12\xd8\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"r\x82\xd3\xe4\x93\x02lZ:\x12\x38/api/v1/active_launch_plans/org/{org}/{project}/{domain}\x12./api/v1/active_launch_plans/{project}/{domain}\x12\xdc\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"j\x82\xd3\xe4\x93\x02\x64Z6\x12\x34/api/v1/launch_plan_ids/org/{org}/{project}/{domain}\x12*/api/v1/launch_plan_ids/{project}/{domain}\x12\xd0\x02\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\xf7\x01\x82\xd3\xe4\x93\x02\xf0\x01ZF\x12\x44/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}Z/\x12-/api/v1/launch_plans/{id.project}/{id.domain}Z<\x12:/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}\x12\x8d\x02\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"\xa5\x01\x82\xd3\xe4\x93\x02\x9e\x01:\x01*ZS\x1aQ/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xa4\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"@\x82\xd3\xe4\x93\x02::\x01*Z!:\x01*\x1a\x1c/api/v1/executions/org/{org}\"\x12/api/v1/executions\x12\xbd\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"U\x82\xd3\xe4\x93\x02O:\x01*Z-:\x01*\"(/api/v1/executions/org/{id.org}/relaunch\"\x1b/api/v1/executions/relaunch\x12\xb9\x01\n\x10RecoverExecution\x12\'.flyteidl.admin.ExecutionRecoverRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"S\x82\xd3\xe4\x93\x02M:\x01*Z,:\x01*\"\'/api/v1/executions/org/{id.org}/recover\"\x1a/api/v1/executions/recover\x12\xdc\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"\x83\x01\x82\xd3\xe4\x93\x02}ZD\x12\x42/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xef\x01\n\x0fUpdateExecution\x12&.flyteidl.admin.ExecutionUpdateRequest\x1a\'.flyteidl.admin.ExecutionUpdateResponse\"\x8a\x01\x82\xd3\xe4\x93\x02\x83\x01:\x01*ZG:\x01*\x1a\x42/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x1a\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\x86\x02\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"\x8e\x01\x82\xd3\xe4\x93\x02\x87\x01ZI\x12G/api/v1/data/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x12\xc5\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"o\x82\xd3\xe4\x93\x02iZ:\x12\x38/api/v1/executions/org/{id.org}/{id.project}/{id.domain}\x12+/api/v1/executions/{id.project}/{id.domain}\x12\xf8\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"\x8a\x01\x82\xd3\xe4\x93\x02\x83\x01:\x01*ZG:\x01**B/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}*5/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xe2\x02\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"\x85\x02\x82\xd3\xe4\x93\x02\xfe\x01Z\x8b\x01\x12\x88\x01/api/v1/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12n/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12\x9e\x03\n\x16GetDynamicNodeWorkflow\x12-.flyteidl.admin.GetDynamicNodeWorkflowRequest\x1a+.flyteidl.admin.DynamicNodeWorkflowResponse\"\xa7\x02\x82\xd3\xe4\x93\x02\xa0\x02Z\x9c\x01\x12\x99\x01/api/v1/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}/dynamic_workflow\x12\x7f/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}/dynamic_workflow\x12\xf9\x02\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\x95\x02\x82\xd3\xe4\x93\x02\x8e\x02Z\x96\x01\x12\x93\x01/api/v1/node_executions/org/{workflow_execution_id.org}/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12\x8f\x08\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\x9d\x07\x82\xd3\xe4\x93\x02\x96\x07Z\xe7\x03\x12\xe4\x03/api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x12\xa9\x03/api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x12\x83\x03\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"\x8f\x02\x82\xd3\xe4\x93\x02\x88\x02Z\x90\x01\x12\x8d\x01/api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12\xa8\x01\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"D\x82\xd3\xe4\x93\x02>:\x01*Z\':\x01*\"\"/api/v1/projects/org/{project.org}\"\x10/api/v1/projects\x12\x97\x01\n\rUpdateProject\x12\x17.flyteidl.admin.Project\x1a%.flyteidl.admin.ProjectUpdateResponse\"F\x82\xd3\xe4\x93\x02@:\x01*Z$:\x01*\x1a\x1f/api/v1/projects/org/{org}/{id}\x1a\x15/api/v1/projects/{id}\x12\x84\x01\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"6\x82\xd3\xe4\x93\x02\x30Z\x1c\x12\x1a/api/v1/projects/org/{org}\x12\x10/api/v1/projects\x12\xd5\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"_\x82\xd3\xe4\x93\x02Y:\x01*Z::\x01*\"5/api/v1/events/org/{event.execution_id.org}/workflows\"\x18/api/v1/events/workflows\x12\xc4\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"Z\x82\xd3\xe4\x93\x02T:\x01*Z9:\x01*\"4/api/v1/events/org/{event.id.execution_id.org}/nodes\"\x14/api/v1/events/nodes\x12\xda\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"p\x82\xd3\xe4\x93\x02j:\x01*ZO:\x01*\"J/api/v1/events/org/{event.parent_node_execution_id.execution_id.org}/tasks\"\x14/api/v1/events/tasks\x12\xcb\x05\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xee\x04\x82\xd3\xe4\x93\x02\xe7\x04Z\xc8\x02\x12\xc5\x02/api/v1/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\x99\x02/api/v1/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\xf1\x03\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\x8d\x03\x82\xd3\xe4\x93\x02\x86\x03Z\xd6\x01\x12\xd3\x01/api/v1/task_executions/org/{node_execution_id.execution_id.org}/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x12\xaa\x01/api/v1/task_executions/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x12\xec\x05\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xf8\x04\x82\xd3\xe4\x93\x02\xf1\x04Z\xcd\x02\x12\xca\x02/api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\x9e\x02/api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\xcb\x02\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"\xbc\x01\x82\xd3\xe4\x93\x02\xb5\x01:\x01*Zd:\x01*\x1a_/api/v1/project_domain_attributes/org/{attributes.org}/{attributes.project}/{attributes.domain}\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}\x12\x83\x02\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"~\x82\xd3\xe4\x93\x02xZ@\x12>/api/v1/project_domain_attributes/org/{org}/{project}/{domain}\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x12\x93\x02\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"\x84\x01\x82\xd3\xe4\x93\x02~:\x01*ZC:\x01**>/api/v1/project_domain_attributes/org/{org}/{project}/{domain}*4/api/v1/project_domain_attributes/{project}/{domain}\x12\x8a\x02\n\x17UpdateProjectAttributes\x12..flyteidl.admin.ProjectAttributesUpdateRequest\x1a/.flyteidl.admin.ProjectAttributesUpdateResponse\"\x8d\x01\x82\xd3\xe4\x93\x02\x86\x01:\x01*ZP:\x01*\x1aK/api/v1/project_domain_attributes/org/{attributes.org}/{attributes.project}\x1a//api/v1/project_attributes/{attributes.project}\x12\xd8\x01\n\x14GetProjectAttributes\x12+.flyteidl.admin.ProjectAttributesGetRequest\x1a,.flyteidl.admin.ProjectAttributesGetResponse\"e\x82\xd3\xe4\x93\x02_Z7\x12\x35/api/v1/project_domain_attributes/org/{org}/{project}\x12$/api/v1/project_attributes/{project}\x12\xe7\x01\n\x17\x44\x65leteProjectAttributes\x12..flyteidl.admin.ProjectAttributesDeleteRequest\x1a/.flyteidl.admin.ProjectAttributesDeleteResponse\"k\x82\xd3\xe4\x93\x02\x65:\x01*Z::\x01**5/api/v1/project_domain_attributes/org/{org}/{project}*$/api/v1/project_attributes/{project}\x12\xdc\x02\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"\xdc\x01\x82\xd3\xe4\x93\x02\xd5\x01:\x01*Zt:\x01*\x1ao/api/v1/workflow_attributes/org/{attributes.org}/{attributes.project}/{attributes.domain}/{attributes.workflow}\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}\x12\x80\x02\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"\x89\x01\x82\xd3\xe4\x93\x02\x82\x01ZE\x12\x43/api/v1/workflow_attributes/org/{org}/{project}/{domain}/{workflow}\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\x8f\x02\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"\x8f\x01\x82\xd3\xe4\x93\x02\x88\x01:\x01*ZH:\x01**C/api/v1/workflow_attributes/org/{org}/{project}/{domain}/{workflow}*9/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\xca\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"N\x82\xd3\xe4\x93\x02HZ(\x12&/api/v1/matchable_attributes/org/{org}\x12\x1c/api/v1/matchable_attributes\x12\xe8\x01\n\x11ListNamedEntities\x12&.flyteidl.admin.NamedEntityListRequest\x1a\x1f.flyteidl.admin.NamedEntityList\"\x89\x01\x82\xd3\xe4\x93\x02\x82\x01ZE\x12\x43/api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain}\x12\x39/api/v1/named_entities/{resource_type}/{project}/{domain}\x12\x83\x02\n\x0eGetNamedEntity\x12%.flyteidl.admin.NamedEntityGetRequest\x1a\x1b.flyteidl.admin.NamedEntity\"\xac\x01\x82\xd3\xe4\x93\x02\xa5\x01ZX\x12V/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\x9d\x02\n\x11UpdateNamedEntity\x12(.flyteidl.admin.NamedEntityUpdateRequest\x1a).flyteidl.admin.NamedEntityUpdateResponse\"\xb2\x01\x82\xd3\xe4\x93\x02\xab\x01:\x01*Z[:\x01*\x1aV/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}\x1aI/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12l\n\nGetVersion\x12!.flyteidl.admin.GetVersionRequest\x1a\".flyteidl.admin.GetVersionResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/api/v1/version\x12\xb6\x02\n\x14GetDescriptionEntity\x12 .flyteidl.admin.ObjectGetRequest\x1a!.flyteidl.admin.DescriptionEntity\"\xd8\x01\x82\xd3\xe4\x93\x02\xd1\x01Zn\x12l/api/v1/description_entities/org/{id.org}/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12_/api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xc8\x03\n\x17ListDescriptionEntities\x12,.flyteidl.admin.DescriptionEntityListRequest\x1a%.flyteidl.admin.DescriptionEntityList\"\xd7\x02\x82\xd3\xe4\x93\x02\xd0\x02Z^\x12\\/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}ZG\x12\x45/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}ZT\x12R/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}\x12O/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\x95\x02\n\x13GetExecutionMetrics\x12\x32.flyteidl.admin.WorkflowExecutionGetMetricsRequest\x1a\x33.flyteidl.admin.WorkflowExecutionGetMetricsResponse\"\x94\x01\x82\xd3\xe4\x93\x02\x8d\x01ZL\x12J/api/v1/metrics/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12=/api/v1/metrics/executions/{id.project}/{id.domain}/{id.name}B\xc2\x01\n\x14\x63om.flyteidl.serviceB\nAdminProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/service/admin.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1c\x66lyteidl/admin/project.proto\x1a.flyteidl/admin/project_domain_attributes.proto\x1a\'flyteidl/admin/project_attributes.proto\x1a\x19\x66lyteidl/admin/task.proto\x1a\x1d\x66lyteidl/admin/workflow.proto\x1a(flyteidl/admin/workflow_attributes.proto\x1a flyteidl/admin/launch_plan.proto\x1a\x1a\x66lyteidl/admin/event.proto\x1a\x1e\x66lyteidl/admin/execution.proto\x1a\'flyteidl/admin/matchable_resource.proto\x1a#flyteidl/admin/node_execution.proto\x1a#flyteidl/admin/task_execution.proto\x1a\x1c\x66lyteidl/admin/version.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\'flyteidl/admin/description_entity.proto2\xb8y\n\x0c\x41\x64minService\x12\x8e\x01\n\nCreateTask\x12!.flyteidl.admin.TaskCreateRequest\x1a\".flyteidl.admin.TaskCreateResponse\"9\x82\xd3\xe4\x93\x02\x33:\x01*Z\x1f:\x01*\"\x1a/api/v1/tasks/org/{id.org}\"\r/api/v1/tasks\x12\xd8\x01\n\x07GetTask\x12 .flyteidl.admin.ObjectGetRequest\x1a\x14.flyteidl.admin.Task\"\x94\x01\x82\xd3\xe4\x93\x02\x8d\x01ZL\x12J/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12=/api/v1/tasks/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xc5\x01\n\x0bListTaskIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"Y\x82\xd3\xe4\x93\x02SZ,\x12*/api/v1/tasks/org/{org}/{project}/{domain}\x12#/api/v1/task_ids/{project}/{domain}\x12\xa8\x02\n\tListTasks\x12#.flyteidl.admin.ResourceListRequest\x1a\x18.flyteidl.admin.TaskList\"\xdb\x01\x82\xd3\xe4\x93\x02\xd4\x01Z?\x12=/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}/{id.name}Z(\x12&/api/v1/tasks/{id.project}/{id.domain}Z5\x12\x33/api/v1/tasks/org/{id.org}/{id.project}/{id.domain}\x12\x30/api/v1/tasks/{id.project}/{id.domain}/{id.name}\x12\xa2\x01\n\x0e\x43reateWorkflow\x12%.flyteidl.admin.WorkflowCreateRequest\x1a&.flyteidl.admin.WorkflowCreateResponse\"A\x82\xd3\xe4\x93\x02;:\x01*Z#:\x01*\"\x1e/api/v1/workflows/org/{id.org}\"\x11/api/v1/workflows\x12\xe8\x01\n\x0bGetWorkflow\x12 .flyteidl.admin.ObjectGetRequest\x1a\x18.flyteidl.admin.Workflow\"\x9c\x01\x82\xd3\xe4\x93\x02\x95\x01ZP\x12N/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x41/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xd1\x01\n\x0fListWorkflowIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"a\x82\xd3\xe4\x93\x02[Z0\x12./api/v1/workflows/org/{org}/{project}/{domain}\x12\'/api/v1/workflow_ids/{project}/{domain}\x12\xc0\x02\n\rListWorkflows\x12#.flyteidl.admin.ResourceListRequest\x1a\x1c.flyteidl.admin.WorkflowList\"\xeb\x01\x82\xd3\xe4\x93\x02\xe4\x01ZC\x12\x41/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}Z,\x12*/api/v1/workflows/{id.project}/{id.domain}Z9\x12\x37/api/v1/workflows/org/{id.org}/{id.project}/{id.domain}\x12\x34/api/v1/workflows/{id.project}/{id.domain}/{id.name}\x12\xae\x01\n\x10\x43reateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanCreateRequest\x1a(.flyteidl.admin.LaunchPlanCreateResponse\"G\x82\xd3\xe4\x93\x02\x41:\x01*Z&:\x01*\"!/api/v1/launch_plans/org/{id.org}\"\x14/api/v1/launch_plans\x12\xf2\x01\n\rGetLaunchPlan\x12 .flyteidl.admin.ObjectGetRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\xa2\x01\x82\xd3\xe4\x93\x02\x9b\x01ZS\x12Q/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xf3\x01\n\x13GetActiveLaunchPlan\x12\'.flyteidl.admin.ActiveLaunchPlanRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\x96\x01\x82\xd3\xe4\x93\x02\x8f\x01ZM\x12K/api/v1/active_launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12>/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x12\xd8\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"r\x82\xd3\xe4\x93\x02lZ:\x12\x38/api/v1/active_launch_plans/org/{org}/{project}/{domain}\x12./api/v1/active_launch_plans/{project}/{domain}\x12\xdc\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"j\x82\xd3\xe4\x93\x02\x64Z6\x12\x34/api/v1/launch_plan_ids/org/{org}/{project}/{domain}\x12*/api/v1/launch_plan_ids/{project}/{domain}\x12\xd0\x02\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\xf7\x01\x82\xd3\xe4\x93\x02\xf0\x01ZF\x12\x44/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}Z/\x12-/api/v1/launch_plans/{id.project}/{id.domain}Z<\x12:/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}\x12\x8d\x02\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"\xa5\x01\x82\xd3\xe4\x93\x02\x9e\x01:\x01*ZS\x1aQ/api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version}\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xa4\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"@\x82\xd3\xe4\x93\x02::\x01*Z!:\x01*\x1a\x1c/api/v1/executions/org/{org}\"\x12/api/v1/executions\x12\xbd\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"U\x82\xd3\xe4\x93\x02O:\x01*Z-:\x01*\"(/api/v1/executions/org/{id.org}/relaunch\"\x1b/api/v1/executions/relaunch\x12\xb9\x01\n\x10RecoverExecution\x12\'.flyteidl.admin.ExecutionRecoverRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"S\x82\xd3\xe4\x93\x02M:\x01*Z,:\x01*\"\'/api/v1/executions/org/{id.org}/recover\"\x1a/api/v1/executions/recover\x12\xdc\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"\x83\x01\x82\xd3\xe4\x93\x02}ZD\x12\x42/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xef\x01\n\x0fUpdateExecution\x12&.flyteidl.admin.ExecutionUpdateRequest\x1a\'.flyteidl.admin.ExecutionUpdateResponse\"\x8a\x01\x82\xd3\xe4\x93\x02\x83\x01:\x01*ZG:\x01*\x1a\x42/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x1a\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\x86\x02\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"\x8e\x01\x82\xd3\xe4\x93\x02\x87\x01ZI\x12G/api/v1/data/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x12\xc5\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"o\x82\xd3\xe4\x93\x02iZ:\x12\x38/api/v1/executions/org/{id.org}/{id.project}/{id.domain}\x12+/api/v1/executions/{id.project}/{id.domain}\x12\xf8\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"\x8a\x01\x82\xd3\xe4\x93\x02\x83\x01:\x01*ZG:\x01**B/api/v1/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}*5/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xe2\x02\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"\x85\x02\x82\xd3\xe4\x93\x02\xfe\x01Z\x8b\x01\x12\x88\x01/api/v1/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12n/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12\x9e\x03\n\x16GetDynamicNodeWorkflow\x12-.flyteidl.admin.GetDynamicNodeWorkflowRequest\x1a+.flyteidl.admin.DynamicNodeWorkflowResponse\"\xa7\x02\x82\xd3\xe4\x93\x02\xa0\x02Z\x9c\x01\x12\x99\x01/api/v1/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}/dynamic_workflow\x12\x7f/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}/dynamic_workflow\x12\xf9\x02\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\x95\x02\x82\xd3\xe4\x93\x02\x8e\x02Z\x96\x01\x12\x93\x01/api/v1/node_executions/org/{workflow_execution_id.org}/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12\x8f\x08\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\x9d\x07\x82\xd3\xe4\x93\x02\x96\x07Z\xe7\x03\x12\xe4\x03/api/v1/children/org/{task_execution_id.node_execution_id.execution_id.org}/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x12\xa9\x03/api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\x12\x83\x03\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"\x8f\x02\x82\xd3\xe4\x93\x02\x88\x02Z\x90\x01\x12\x8d\x01/api/v1/data/org/{id.execution_id.org}/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x12\xa8\x01\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"D\x82\xd3\xe4\x93\x02>:\x01*Z\':\x01*\"\"/api/v1/projects/org/{project.org}\"\x10/api/v1/projects\x12\x97\x01\n\rUpdateProject\x12\x17.flyteidl.admin.Project\x1a%.flyteidl.admin.ProjectUpdateResponse\"F\x82\xd3\xe4\x93\x02@:\x01*Z$:\x01*\x1a\x1f/api/v1/projects/org/{org}/{id}\x1a\x15/api/v1/projects/{id}\x12\x84\x01\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"6\x82\xd3\xe4\x93\x02\x30Z\x1c\x12\x1a/api/v1/projects/org/{org}\x12\x10/api/v1/projects\x12\xd5\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"_\x82\xd3\xe4\x93\x02Y:\x01*Z::\x01*\"5/api/v1/events/org/{event.execution_id.org}/workflows\"\x18/api/v1/events/workflows\x12\xc4\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"Z\x82\xd3\xe4\x93\x02T:\x01*Z9:\x01*\"4/api/v1/events/org/{event.id.execution_id.org}/nodes\"\x14/api/v1/events/nodes\x12\xda\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"p\x82\xd3\xe4\x93\x02j:\x01*ZO:\x01*\"J/api/v1/events/org/{event.parent_node_execution_id.execution_id.org}/tasks\"\x14/api/v1/events/tasks\x12\xcb\x05\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xee\x04\x82\xd3\xe4\x93\x02\xe7\x04Z\xc8\x02\x12\xc5\x02/api/v1/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\x99\x02/api/v1/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\xf1\x03\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\x8d\x03\x82\xd3\xe4\x93\x02\x86\x03Z\xd6\x01\x12\xd3\x01/api/v1/task_executions/org/{node_execution_id.execution_id.org}/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x12\xaa\x01/api/v1/task_executions/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\x12\xec\x05\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xf8\x04\x82\xd3\xe4\x93\x02\xf1\x04Z\xcd\x02\x12\xca\x02/api/v1/data/org/{id.node_execution_id.execution_id.org}/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\x9e\x02/api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\x12\xcb\x02\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"\xbc\x01\x82\xd3\xe4\x93\x02\xb5\x01:\x01*Zd:\x01*\x1a_/api/v1/project_domain_attributes/org/{attributes.org}/{attributes.project}/{attributes.domain}\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}\x12\x83\x02\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"~\x82\xd3\xe4\x93\x02xZ@\x12>/api/v1/project_domain_attributes/org/{org}/{project}/{domain}\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x12\x93\x02\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"\x84\x01\x82\xd3\xe4\x93\x02~:\x01*ZC:\x01**>/api/v1/project_domain_attributes/org/{org}/{project}/{domain}*4/api/v1/project_domain_attributes/{project}/{domain}\x12\x8a\x02\n\x17UpdateProjectAttributes\x12..flyteidl.admin.ProjectAttributesUpdateRequest\x1a/.flyteidl.admin.ProjectAttributesUpdateResponse\"\x8d\x01\x82\xd3\xe4\x93\x02\x86\x01:\x01*ZP:\x01*\x1aK/api/v1/project_domain_attributes/org/{attributes.org}/{attributes.project}\x1a//api/v1/project_attributes/{attributes.project}\x12\xd8\x01\n\x14GetProjectAttributes\x12+.flyteidl.admin.ProjectAttributesGetRequest\x1a,.flyteidl.admin.ProjectAttributesGetResponse\"e\x82\xd3\xe4\x93\x02_Z7\x12\x35/api/v1/project_domain_attributes/org/{org}/{project}\x12$/api/v1/project_attributes/{project}\x12\xe7\x01\n\x17\x44\x65leteProjectAttributes\x12..flyteidl.admin.ProjectAttributesDeleteRequest\x1a/.flyteidl.admin.ProjectAttributesDeleteResponse\"k\x82\xd3\xe4\x93\x02\x65:\x01*Z::\x01**5/api/v1/project_domain_attributes/org/{org}/{project}*$/api/v1/project_attributes/{project}\x12\xdc\x02\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"\xdc\x01\x82\xd3\xe4\x93\x02\xd5\x01:\x01*Zt:\x01*\x1ao/api/v1/workflow_attributes/org/{attributes.org}/{attributes.project}/{attributes.domain}/{attributes.workflow}\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}\x12\x80\x02\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"\x89\x01\x82\xd3\xe4\x93\x02\x82\x01ZE\x12\x43/api/v1/workflow_attributes/org/{org}/{project}/{domain}/{workflow}\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\x8f\x02\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"\x8f\x01\x82\xd3\xe4\x93\x02\x88\x01:\x01*ZH:\x01**C/api/v1/workflow_attributes/org/{org}/{project}/{domain}/{workflow}*9/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\xca\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"N\x82\xd3\xe4\x93\x02HZ(\x12&/api/v1/matchable_attributes/org/{org}\x12\x1c/api/v1/matchable_attributes\x12\xe8\x01\n\x11ListNamedEntities\x12&.flyteidl.admin.NamedEntityListRequest\x1a\x1f.flyteidl.admin.NamedEntityList\"\x89\x01\x82\xd3\xe4\x93\x02\x82\x01ZE\x12\x43/api/v1/named_entities/org/{org}/{resource_type}/{project}/{domain}\x12\x39/api/v1/named_entities/{resource_type}/{project}/{domain}\x12\x83\x02\n\x0eGetNamedEntity\x12%.flyteidl.admin.NamedEntityGetRequest\x1a\x1b.flyteidl.admin.NamedEntity\"\xac\x01\x82\xd3\xe4\x93\x02\xa5\x01ZX\x12V/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}\x12I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\x9d\x02\n\x11UpdateNamedEntity\x12(.flyteidl.admin.NamedEntityUpdateRequest\x1a).flyteidl.admin.NamedEntityUpdateResponse\"\xb2\x01\x82\xd3\xe4\x93\x02\xab\x01:\x01*Z[:\x01*\x1aV/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}\x1aI/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12l\n\nGetVersion\x12!.flyteidl.admin.GetVersionRequest\x1a\".flyteidl.admin.GetVersionResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/api/v1/version\x12\xb6\x02\n\x14GetDescriptionEntity\x12 .flyteidl.admin.ObjectGetRequest\x1a!.flyteidl.admin.DescriptionEntity\"\xd8\x01\x82\xd3\xe4\x93\x02\xd1\x01Zn\x12l/api/v1/description_entities/org/{id.org}/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12_/api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xc8\x03\n\x17ListDescriptionEntities\x12,.flyteidl.admin.DescriptionEntityListRequest\x1a%.flyteidl.admin.DescriptionEntityList\"\xd7\x02\x82\xd3\xe4\x93\x02\xd0\x02Z^\x12\\/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}ZG\x12\x45/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}ZT\x12R/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}\x12O/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\x95\x02\n\x13GetExecutionMetrics\x12\x32.flyteidl.admin.WorkflowExecutionGetMetricsRequest\x1a\x33.flyteidl.admin.WorkflowExecutionGetMetricsResponse\"\x94\x01\x82\xd3\xe4\x93\x02\x8d\x01ZL\x12J/api/v1/metrics/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\x12=/api/v1/metrics/executions/{id.project}/{id.domain}/{id.name}B\xc2\x01\n\x14\x63om.flyteidl.serviceB\nAdminProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -91,9 +91,9 @@ _ADMINSERVICE.methods_by_name['ListNodeExecutions']._options = None _ADMINSERVICE.methods_by_name['ListNodeExecutions']._serialized_options = b'\202\323\344\223\002\216\002Z\226\001\022\223\001/api/v1/node_executions/org/{workflow_execution_id.org}/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\022s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}' _ADMINSERVICE.methods_by_name['ListNodeExecutionsForTask']._options = None - _ADMINSERVICE.methods_by_name['ListNodeExecutionsForTask']._serialized_options = b'\202\323\344\223\002\226\007Z\347\003\022\344\003/api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\022\251\003/api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}' + _ADMINSERVICE.methods_by_name['ListNodeExecutionsForTask']._serialized_options = b'\202\323\344\223\002\226\007Z\347\003\022\344\003/api/v1/children/org/{task_execution_id.node_execution_id.execution_id.org}/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}\022\251\003/api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}' _ADMINSERVICE.methods_by_name['GetNodeExecutionData']._options = None - _ADMINSERVICE.methods_by_name['GetNodeExecutionData']._serialized_options = b'\202\323\344\223\002\210\002Z\220\001\022\215\001/api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\022s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}' + _ADMINSERVICE.methods_by_name['GetNodeExecutionData']._serialized_options = b'\202\323\344\223\002\210\002Z\220\001\022\215\001/api/v1/data/org/{id.execution_id.org}/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\022s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}' _ADMINSERVICE.methods_by_name['RegisterProject']._options = None _ADMINSERVICE.methods_by_name['RegisterProject']._serialized_options = b'\202\323\344\223\002>:\001*Z\':\001*\"\"/api/v1/projects/org/{project.org}\"\020/api/v1/projects' _ADMINSERVICE.methods_by_name['UpdateProject']._options = None @@ -111,7 +111,7 @@ _ADMINSERVICE.methods_by_name['ListTaskExecutions']._options = None _ADMINSERVICE.methods_by_name['ListTaskExecutions']._serialized_options = b'\202\323\344\223\002\206\003Z\326\001\022\323\001/api/v1/task_executions/org/{node_execution_id.execution_id.org}/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}\022\252\001/api/v1/task_executions/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id}' _ADMINSERVICE.methods_by_name['GetTaskExecutionData']._options = None - _ADMINSERVICE.methods_by_name['GetTaskExecutionData']._serialized_options = b'\202\323\344\223\002\361\004Z\315\002\022\312\002/api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\022\236\002/api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}' + _ADMINSERVICE.methods_by_name['GetTaskExecutionData']._serialized_options = b'\202\323\344\223\002\361\004Z\315\002\022\312\002/api/v1/data/org/{id.node_execution_id.execution_id.org}/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}\022\236\002/api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}' _ADMINSERVICE.methods_by_name['UpdateProjectDomainAttributes']._options = None _ADMINSERVICE.methods_by_name['UpdateProjectDomainAttributes']._serialized_options = b'\202\323\344\223\002\265\001:\001*Zd:\001*\032_/api/v1/project_domain_attributes/org/{attributes.org}/{attributes.project}/{attributes.domain}\032J/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}' _ADMINSERVICE.methods_by_name['GetProjectDomainAttributes']._options = None @@ -133,17 +133,17 @@ _ADMINSERVICE.methods_by_name['ListMatchableAttributes']._options = None _ADMINSERVICE.methods_by_name['ListMatchableAttributes']._serialized_options = b'\202\323\344\223\002HZ(\022&/api/v1/matchable_attributes/org/{org}\022\034/api/v1/matchable_attributes' _ADMINSERVICE.methods_by_name['ListNamedEntities']._options = None - _ADMINSERVICE.methods_by_name['ListNamedEntities']._serialized_options = b'\202\323\344\223\002\202\001ZE\022C/api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain}\0229/api/v1/named_entities/{resource_type}/{project}/{domain}' + _ADMINSERVICE.methods_by_name['ListNamedEntities']._serialized_options = b'\202\323\344\223\002\202\001ZE\022C/api/v1/named_entities/org/{org}/{resource_type}/{project}/{domain}\0229/api/v1/named_entities/{resource_type}/{project}/{domain}' _ADMINSERVICE.methods_by_name['GetNamedEntity']._options = None - _ADMINSERVICE.methods_by_name['GetNamedEntity']._serialized_options = b'\202\323\344\223\002\245\001ZX\022V/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}\022I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}' + _ADMINSERVICE.methods_by_name['GetNamedEntity']._serialized_options = b'\202\323\344\223\002\245\001ZX\022V/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}\022I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}' _ADMINSERVICE.methods_by_name['UpdateNamedEntity']._options = None - _ADMINSERVICE.methods_by_name['UpdateNamedEntity']._serialized_options = b'\202\323\344\223\002\253\001:\001*Z[:\001*\032V/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}\032I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}' + _ADMINSERVICE.methods_by_name['UpdateNamedEntity']._serialized_options = b'\202\323\344\223\002\253\001:\001*Z[:\001*\032V/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}\032I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}' _ADMINSERVICE.methods_by_name['GetVersion']._options = None _ADMINSERVICE.methods_by_name['GetVersion']._serialized_options = b'\202\323\344\223\002\021\022\017/api/v1/version' _ADMINSERVICE.methods_by_name['GetDescriptionEntity']._options = None _ADMINSERVICE.methods_by_name['GetDescriptionEntity']._serialized_options = b'\202\323\344\223\002\321\001Zn\022l/api/v1/description_entities/org/{id.org}/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\022_/api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}' _ADMINSERVICE.methods_by_name['ListDescriptionEntities']._options = None - _ADMINSERVICE.methods_by_name['ListDescriptionEntities']._serialized_options = b'\202\323\344\223\002\320\002Z^\022\\/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}ZG\022E/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}ZT\022R/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}\022O/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name}' + _ADMINSERVICE.methods_by_name['ListDescriptionEntities']._serialized_options = b'\202\323\344\223\002\320\002Z^\022\\/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}ZG\022E/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}ZT\022R/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}\022O/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name}' _ADMINSERVICE.methods_by_name['GetExecutionMetrics']._options = None _ADMINSERVICE.methods_by_name['GetExecutionMetrics']._serialized_options = b'\202\323\344\223\002\215\001ZL\022J/api/v1/metrics/executions/org/{id.org}/{id.project}/{id.domain}/{id.name}\022=/api/v1/metrics/executions/{id.project}/{id.domain}/{id.name}' _globals['_ADMINSERVICE']._serialized_start=609 diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md index 9c5645628b..e243e91f80 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md @@ -105,11 +105,11 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**get_launch_plan**](docs/AdminServiceApi.md#get_launch_plan) | **GET** /api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.LaunchPlan` definition. *AdminServiceApi* | [**get_launch_plan2**](docs/AdminServiceApi.md#get_launch_plan2) | **GET** /api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.LaunchPlan` definition. *AdminServiceApi* | [**get_named_entity**](docs/AdminServiceApi.md#get_named_entity) | **GET** /api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name} | Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. -*AdminServiceApi* | [**get_named_entity2**](docs/AdminServiceApi.md#get_named_entity2) | **GET** /api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name} | Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. +*AdminServiceApi* | [**get_named_entity2**](docs/AdminServiceApi.md#get_named_entity2) | **GET** /api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name} | Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. *AdminServiceApi* | [**get_node_execution**](docs/AdminServiceApi.md#get_node_execution) | **GET** /api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches a :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**get_node_execution2**](docs/AdminServiceApi.md#get_node_execution2) | **GET** /api/v1/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches a :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**get_node_execution_data**](docs/AdminServiceApi.md#get_node_execution_data) | **GET** /api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`. -*AdminServiceApi* | [**get_node_execution_data2**](docs/AdminServiceApi.md#get_node_execution_data2) | **GET** /api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`. +*AdminServiceApi* | [**get_node_execution_data2**](docs/AdminServiceApi.md#get_node_execution_data2) | **GET** /api/v1/data/org/{id.execution_id.org}/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id} | Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**get_project_attributes**](docs/AdminServiceApi.md#get_project_attributes) | **GET** /api/v1/project_attributes/{project} | Fetches custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. *AdminServiceApi* | [**get_project_attributes2**](docs/AdminServiceApi.md#get_project_attributes2) | **GET** /api/v1/project_domain_attributes/org/{org}/{project} | Fetches custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. *AdminServiceApi* | [**get_project_domain_attributes**](docs/AdminServiceApi.md#get_project_domain_attributes) | **GET** /api/v1/project_domain_attributes/{project}/{domain} | Fetches custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. @@ -119,7 +119,7 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**get_task_execution**](docs/AdminServiceApi.md#get_task_execution) | **GET** /api/v1/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches a :ref:`ref_flyteidl.admin.TaskExecution`. *AdminServiceApi* | [**get_task_execution2**](docs/AdminServiceApi.md#get_task_execution2) | **GET** /api/v1/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches a :ref:`ref_flyteidl.admin.TaskExecution`. *AdminServiceApi* | [**get_task_execution_data**](docs/AdminServiceApi.md#get_task_execution_data) | **GET** /api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches input and output data for a :ref:`ref_flyteidl.admin.TaskExecution`. -*AdminServiceApi* | [**get_task_execution_data2**](docs/AdminServiceApi.md#get_task_execution_data2) | **GET** /api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches input and output data for a :ref:`ref_flyteidl.admin.TaskExecution`. +*AdminServiceApi* | [**get_task_execution_data2**](docs/AdminServiceApi.md#get_task_execution_data2) | **GET** /api/v1/data/org/{id.node_execution_id.execution_id.org}/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt} | Fetches input and output data for a :ref:`ref_flyteidl.admin.TaskExecution`. *AdminServiceApi* | [**get_version**](docs/AdminServiceApi.md#get_version) | **GET** /api/v1/version | *AdminServiceApi* | [**get_workflow**](docs/AdminServiceApi.md#get_workflow) | **GET** /api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.Workflow` definition. *AdminServiceApi* | [**get_workflow2**](docs/AdminServiceApi.md#get_workflow2) | **GET** /api/v1/workflows/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version} | Fetch a :ref:`ref_flyteidl.admin.Workflow` definition. @@ -128,9 +128,9 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**list_active_launch_plans**](docs/AdminServiceApi.md#list_active_launch_plans) | **GET** /api/v1/active_launch_plans/{project}/{domain} | List active versions of :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**list_active_launch_plans2**](docs/AdminServiceApi.md#list_active_launch_plans2) | **GET** /api/v1/active_launch_plans/org/{org}/{project}/{domain} | List active versions of :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**list_description_entities**](docs/AdminServiceApi.md#list_description_entities) | **GET** /api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. -*AdminServiceApi* | [**list_description_entities2**](docs/AdminServiceApi.md#list_description_entities2) | **GET** /api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. +*AdminServiceApi* | [**list_description_entities2**](docs/AdminServiceApi.md#list_description_entities2) | **GET** /api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. *AdminServiceApi* | [**list_description_entities3**](docs/AdminServiceApi.md#list_description_entities3) | **GET** /api/v1/description_entities/{resource_type}/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. -*AdminServiceApi* | [**list_description_entities4**](docs/AdminServiceApi.md#list_description_entities4) | **GET** /api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. +*AdminServiceApi* | [**list_description_entities4**](docs/AdminServiceApi.md#list_description_entities4) | **GET** /api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. *AdminServiceApi* | [**list_executions**](docs/AdminServiceApi.md#list_executions) | **GET** /api/v1/executions/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.Execution`. *AdminServiceApi* | [**list_executions2**](docs/AdminServiceApi.md#list_executions2) | **GET** /api/v1/executions/org/{id.org}/{id.project}/{id.domain} | Fetch a list of :ref:`ref_flyteidl.admin.Execution`. *AdminServiceApi* | [**list_launch_plan_ids**](docs/AdminServiceApi.md#list_launch_plan_ids) | **GET** /api/v1/launch_plan_ids/{project}/{domain} | Fetch a list of :ref:`ref_flyteidl.admin.NamedEntityIdentifier` of launch plan objects. @@ -142,11 +142,11 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**list_matchable_attributes**](docs/AdminServiceApi.md#list_matchable_attributes) | **GET** /api/v1/matchable_attributes | Lists custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a specific resource type. *AdminServiceApi* | [**list_matchable_attributes2**](docs/AdminServiceApi.md#list_matchable_attributes2) | **GET** /api/v1/matchable_attributes/org/{org} | Lists custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a specific resource type. *AdminServiceApi* | [**list_named_entities**](docs/AdminServiceApi.md#list_named_entities) | **GET** /api/v1/named_entities/{resource_type}/{project}/{domain} | Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. -*AdminServiceApi* | [**list_named_entities2**](docs/AdminServiceApi.md#list_named_entities2) | **GET** /api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain} | Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. +*AdminServiceApi* | [**list_named_entities2**](docs/AdminServiceApi.md#list_named_entities2) | **GET** /api/v1/named_entities/org/{org}/{resource_type}/{project}/{domain} | Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. *AdminServiceApi* | [**list_node_executions**](docs/AdminServiceApi.md#list_node_executions) | **GET** /api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**list_node_executions2**](docs/AdminServiceApi.md#list_node_executions2) | **GET** /api/v1/node_executions/org/{workflow_execution_id.org}/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution`. *AdminServiceApi* | [**list_node_executions_for_task**](docs/AdminServiceApi.md#list_node_executions_for_task) | **GET** /api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution` launched by the reference :ref:`ref_flyteidl.admin.TaskExecution`. -*AdminServiceApi* | [**list_node_executions_for_task2**](docs/AdminServiceApi.md#list_node_executions_for_task2) | **GET** /api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution` launched by the reference :ref:`ref_flyteidl.admin.TaskExecution`. +*AdminServiceApi* | [**list_node_executions_for_task2**](docs/AdminServiceApi.md#list_node_executions_for_task2) | **GET** /api/v1/children/org/{task_execution_id.node_execution_id.execution_id.org}/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt} | Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution` launched by the reference :ref:`ref_flyteidl.admin.TaskExecution`. *AdminServiceApi* | [**list_projects**](docs/AdminServiceApi.md#list_projects) | **GET** /api/v1/projects | Fetches a list of :ref:`ref_flyteidl.admin.Project` *AdminServiceApi* | [**list_projects2**](docs/AdminServiceApi.md#list_projects2) | **GET** /api/v1/projects/org/{org} | Fetches a list of :ref:`ref_flyteidl.admin.Project` *AdminServiceApi* | [**list_task_executions**](docs/AdminServiceApi.md#list_task_executions) | **GET** /api/v1/task_executions/{node_execution_id.execution_id.project}/{node_execution_id.execution_id.domain}/{node_execution_id.execution_id.name}/{node_execution_id.node_id} | Fetches a list of :ref:`ref_flyteidl.admin.TaskExecution`. @@ -176,7 +176,7 @@ Class | Method | HTTP request | Description *AdminServiceApi* | [**update_launch_plan**](docs/AdminServiceApi.md#update_launch_plan) | **PUT** /api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version} | Updates the status of a registered :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**update_launch_plan2**](docs/AdminServiceApi.md#update_launch_plan2) | **PUT** /api/v1/launch_plans/org/{id.org}/{id.project}/{id.domain}/{id.name}/{id.version} | Updates the status of a registered :ref:`ref_flyteidl.admin.LaunchPlan`. *AdminServiceApi* | [**update_named_entity**](docs/AdminServiceApi.md#update_named_entity) | **PUT** /api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name} | Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. -*AdminServiceApi* | [**update_named_entity2**](docs/AdminServiceApi.md#update_named_entity2) | **PUT** /api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name} | Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. +*AdminServiceApi* | [**update_named_entity2**](docs/AdminServiceApi.md#update_named_entity2) | **PUT** /api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name} | Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. *AdminServiceApi* | [**update_project**](docs/AdminServiceApi.md#update_project) | **PUT** /api/v1/projects/{id} | Updates an existing :ref:`ref_flyteidl.admin.Project` flyteidl.admin.Project should be passed but the domains property should be empty; it will be ignored in the handler as domains cannot be updated via this API. *AdminServiceApi* | [**update_project2**](docs/AdminServiceApi.md#update_project2) | **PUT** /api/v1/projects/org/{org}/{id} | Updates an existing :ref:`ref_flyteidl.admin.Project` flyteidl.admin.Project should be passed but the domains property should be empty; it will be ignored in the handler as domains cannot be updated via this API. *AdminServiceApi* | [**update_project_attributes**](docs/AdminServiceApi.md#update_project_attributes) | **PUT** /api/v1/project_attributes/{attributes.project} | Creates or updates custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` at the project level diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py index f612c2274d..cfbd1f5ce0 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/api/admin_service_api.py @@ -4020,17 +4020,17 @@ def get_named_entity_with_http_info(self, resource_type, id_project, id_domain, _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def get_named_entity2(self, resource_type, id_org, id_project, id_domain, id_name, **kwargs): # noqa: E501 + def get_named_entity2(self, id_org, resource_type, id_project, id_domain, id_name, **kwargs): # noqa: E501 """Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.get_named_entity2(resource_type, id_org, id_project, id_domain, id_name, async_req=True) + >>> thread = api.get_named_entity2(id_org, resource_type, id_project, id_domain, id_name, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Resource type of the metadata to get. One of Task, Workflow or LaunchPlan. +required (required) :param str id_org: Optional, org key applied to the resource. (required) + :param str resource_type: Resource type of the metadata to get. One of Task, Workflow or LaunchPlan. +required (required) :param str id_project: Name of the project the resource belongs to. (required) :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) :param str id_name: User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' (required) @@ -4040,22 +4040,22 @@ def get_named_entity2(self, resource_type, id_org, id_project, id_domain, id_nam """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.get_named_entity2_with_http_info(resource_type, id_org, id_project, id_domain, id_name, **kwargs) # noqa: E501 + return self.get_named_entity2_with_http_info(id_org, resource_type, id_project, id_domain, id_name, **kwargs) # noqa: E501 else: - (data) = self.get_named_entity2_with_http_info(resource_type, id_org, id_project, id_domain, id_name, **kwargs) # noqa: E501 + (data) = self.get_named_entity2_with_http_info(id_org, resource_type, id_project, id_domain, id_name, **kwargs) # noqa: E501 return data - def get_named_entity2_with_http_info(self, resource_type, id_org, id_project, id_domain, id_name, **kwargs): # noqa: E501 + def get_named_entity2_with_http_info(self, id_org, resource_type, id_project, id_domain, id_name, **kwargs): # noqa: E501 """Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.get_named_entity2_with_http_info(resource_type, id_org, id_project, id_domain, id_name, async_req=True) + >>> thread = api.get_named_entity2_with_http_info(id_org, resource_type, id_project, id_domain, id_name, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Resource type of the metadata to get. One of Task, Workflow or LaunchPlan. +required (required) :param str id_org: Optional, org key applied to the resource. (required) + :param str resource_type: Resource type of the metadata to get. One of Task, Workflow or LaunchPlan. +required (required) :param str id_project: Name of the project the resource belongs to. (required) :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) :param str id_name: User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' (required) @@ -4064,7 +4064,7 @@ def get_named_entity2_with_http_info(self, resource_type, id_org, id_project, id returns the request thread. """ - all_params = ['resource_type', 'id_org', 'id_project', 'id_domain', 'id_name'] # noqa: E501 + all_params = ['id_org', 'resource_type', 'id_project', 'id_domain', 'id_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4079,14 +4079,14 @@ def get_named_entity2_with_http_info(self, resource_type, id_org, id_project, id ) params[key] = val del params['kwargs'] - # verify the required parameter 'resource_type' is set - if ('resource_type' not in params or - params['resource_type'] is None): - raise ValueError("Missing the required parameter `resource_type` when calling `get_named_entity2`") # noqa: E501 # verify the required parameter 'id_org' is set if ('id_org' not in params or params['id_org'] is None): raise ValueError("Missing the required parameter `id_org` when calling `get_named_entity2`") # noqa: E501 + # verify the required parameter 'resource_type' is set + if ('resource_type' not in params or + params['resource_type'] is None): + raise ValueError("Missing the required parameter `resource_type` when calling `get_named_entity2`") # noqa: E501 # verify the required parameter 'id_project' is set if ('id_project' not in params or params['id_project'] is None): @@ -4103,10 +4103,10 @@ def get_named_entity2_with_http_info(self, resource_type, id_org, id_project, id collection_formats = {} path_params = {} - if 'resource_type' in params: - path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'id_org' in params: path_params['id.org'] = params['id_org'] # noqa: E501 + if 'resource_type' in params: + path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'id_project' in params: path_params['id.project'] = params['id_project'] # noqa: E501 if 'id_domain' in params: @@ -4134,7 +4134,7 @@ def get_named_entity2_with_http_info(self, resource_type, id_org, id_project, id auth_settings = [] # noqa: E501 return self.api_client.call_api( - '/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}', 'GET', + '/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}', 'GET', path_params, query_params, header_params, @@ -4642,7 +4642,7 @@ def get_node_execution_data2_with_http_info(self, id_execution_id_org, id_execut auth_settings = [] # noqa: E501 return self.api_client.call_api( - '/api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}', 'GET', + '/api/v1/data/org/{id.execution_id.org}/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}', 'GET', path_params, query_params, header_params, @@ -6048,7 +6048,7 @@ def get_task_execution_data2_with_http_info(self, id_node_execution_id_execution auth_settings = [] # noqa: E501 return self.api_client.call_api( - '/api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}', 'GET', + '/api/v1/data/org/{id.node_execution_id.execution_id.org}/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}', 'GET', path_params, query_params, header_params, @@ -7059,17 +7059,17 @@ def list_description_entities_with_http_info(self, resource_type, id_project, id _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def list_description_entities2(self, resource_type, id_org, id_project, id_domain, id_name, **kwargs): # noqa: E501 + def list_description_entities2(self, id_org, resource_type, id_project, id_domain, id_name, **kwargs): # noqa: E501 """Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_description_entities2(resource_type, id_org, id_project, id_domain, id_name, async_req=True) + >>> thread = api.list_description_entities2(id_org, resource_type, id_project, id_domain, id_name, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Identifies the specific type of resource that this identifier corresponds to. (required) :param str id_org: Optional, org key applied to the resource. (required) + :param str resource_type: Identifies the specific type of resource that this identifier corresponds to. (required) :param str id_project: Name of the project the resource belongs to. (required) :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) :param str id_name: User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' (required) @@ -7084,22 +7084,22 @@ def list_description_entities2(self, resource_type, id_org, id_project, id_domai """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.list_description_entities2_with_http_info(resource_type, id_org, id_project, id_domain, id_name, **kwargs) # noqa: E501 + return self.list_description_entities2_with_http_info(id_org, resource_type, id_project, id_domain, id_name, **kwargs) # noqa: E501 else: - (data) = self.list_description_entities2_with_http_info(resource_type, id_org, id_project, id_domain, id_name, **kwargs) # noqa: E501 + (data) = self.list_description_entities2_with_http_info(id_org, resource_type, id_project, id_domain, id_name, **kwargs) # noqa: E501 return data - def list_description_entities2_with_http_info(self, resource_type, id_org, id_project, id_domain, id_name, **kwargs): # noqa: E501 + def list_description_entities2_with_http_info(self, id_org, resource_type, id_project, id_domain, id_name, **kwargs): # noqa: E501 """Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_description_entities2_with_http_info(resource_type, id_org, id_project, id_domain, id_name, async_req=True) + >>> thread = api.list_description_entities2_with_http_info(id_org, resource_type, id_project, id_domain, id_name, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Identifies the specific type of resource that this identifier corresponds to. (required) :param str id_org: Optional, org key applied to the resource. (required) + :param str resource_type: Identifies the specific type of resource that this identifier corresponds to. (required) :param str id_project: Name of the project the resource belongs to. (required) :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) :param str id_name: User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' (required) @@ -7113,7 +7113,7 @@ def list_description_entities2_with_http_info(self, resource_type, id_org, id_pr returns the request thread. """ - all_params = ['resource_type', 'id_org', 'id_project', 'id_domain', 'id_name', 'limit', 'token', 'filters', 'sort_by_key', 'sort_by_direction'] # noqa: E501 + all_params = ['id_org', 'resource_type', 'id_project', 'id_domain', 'id_name', 'limit', 'token', 'filters', 'sort_by_key', 'sort_by_direction'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -7128,14 +7128,14 @@ def list_description_entities2_with_http_info(self, resource_type, id_org, id_pr ) params[key] = val del params['kwargs'] - # verify the required parameter 'resource_type' is set - if ('resource_type' not in params or - params['resource_type'] is None): - raise ValueError("Missing the required parameter `resource_type` when calling `list_description_entities2`") # noqa: E501 # verify the required parameter 'id_org' is set if ('id_org' not in params or params['id_org'] is None): raise ValueError("Missing the required parameter `id_org` when calling `list_description_entities2`") # noqa: E501 + # verify the required parameter 'resource_type' is set + if ('resource_type' not in params or + params['resource_type'] is None): + raise ValueError("Missing the required parameter `resource_type` when calling `list_description_entities2`") # noqa: E501 # verify the required parameter 'id_project' is set if ('id_project' not in params or params['id_project'] is None): @@ -7152,10 +7152,10 @@ def list_description_entities2_with_http_info(self, resource_type, id_org, id_pr collection_formats = {} path_params = {} - if 'resource_type' in params: - path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'id_org' in params: path_params['id.org'] = params['id_org'] # noqa: E501 + if 'resource_type' in params: + path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'id_project' in params: path_params['id.project'] = params['id_project'] # noqa: E501 if 'id_domain' in params: @@ -7193,7 +7193,7 @@ def list_description_entities2_with_http_info(self, resource_type, id_org, id_pr auth_settings = [] # noqa: E501 return self.api_client.call_api( - '/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}', 'GET', + '/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}', 'GET', path_params, query_params, header_params, @@ -7349,17 +7349,17 @@ def list_description_entities3_with_http_info(self, resource_type, id_project, i _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def list_description_entities4(self, resource_type, id_org, id_project, id_domain, **kwargs): # noqa: E501 + def list_description_entities4(self, id_org, resource_type, id_project, id_domain, **kwargs): # noqa: E501 """Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_description_entities4(resource_type, id_org, id_project, id_domain, async_req=True) + >>> thread = api.list_description_entities4(id_org, resource_type, id_project, id_domain, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Identifies the specific type of resource that this identifier corresponds to. (required) :param str id_org: Optional, org key applied to the resource. (required) + :param str resource_type: Identifies the specific type of resource that this identifier corresponds to. (required) :param str id_project: Name of the project the resource belongs to. (required) :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) :param str id_name: User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans'. @@ -7374,22 +7374,22 @@ def list_description_entities4(self, resource_type, id_org, id_project, id_domai """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.list_description_entities4_with_http_info(resource_type, id_org, id_project, id_domain, **kwargs) # noqa: E501 + return self.list_description_entities4_with_http_info(id_org, resource_type, id_project, id_domain, **kwargs) # noqa: E501 else: - (data) = self.list_description_entities4_with_http_info(resource_type, id_org, id_project, id_domain, **kwargs) # noqa: E501 + (data) = self.list_description_entities4_with_http_info(id_org, resource_type, id_project, id_domain, **kwargs) # noqa: E501 return data - def list_description_entities4_with_http_info(self, resource_type, id_org, id_project, id_domain, **kwargs): # noqa: E501 + def list_description_entities4_with_http_info(self, id_org, resource_type, id_project, id_domain, **kwargs): # noqa: E501 """Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_description_entities4_with_http_info(resource_type, id_org, id_project, id_domain, async_req=True) + >>> thread = api.list_description_entities4_with_http_info(id_org, resource_type, id_project, id_domain, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Identifies the specific type of resource that this identifier corresponds to. (required) :param str id_org: Optional, org key applied to the resource. (required) + :param str resource_type: Identifies the specific type of resource that this identifier corresponds to. (required) :param str id_project: Name of the project the resource belongs to. (required) :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) :param str id_name: User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans'. @@ -7403,7 +7403,7 @@ def list_description_entities4_with_http_info(self, resource_type, id_org, id_pr returns the request thread. """ - all_params = ['resource_type', 'id_org', 'id_project', 'id_domain', 'id_name', 'limit', 'token', 'filters', 'sort_by_key', 'sort_by_direction'] # noqa: E501 + all_params = ['id_org', 'resource_type', 'id_project', 'id_domain', 'id_name', 'limit', 'token', 'filters', 'sort_by_key', 'sort_by_direction'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -7418,14 +7418,14 @@ def list_description_entities4_with_http_info(self, resource_type, id_org, id_pr ) params[key] = val del params['kwargs'] - # verify the required parameter 'resource_type' is set - if ('resource_type' not in params or - params['resource_type'] is None): - raise ValueError("Missing the required parameter `resource_type` when calling `list_description_entities4`") # noqa: E501 # verify the required parameter 'id_org' is set if ('id_org' not in params or params['id_org'] is None): raise ValueError("Missing the required parameter `id_org` when calling `list_description_entities4`") # noqa: E501 + # verify the required parameter 'resource_type' is set + if ('resource_type' not in params or + params['resource_type'] is None): + raise ValueError("Missing the required parameter `resource_type` when calling `list_description_entities4`") # noqa: E501 # verify the required parameter 'id_project' is set if ('id_project' not in params or params['id_project'] is None): @@ -7438,10 +7438,10 @@ def list_description_entities4_with_http_info(self, resource_type, id_org, id_pr collection_formats = {} path_params = {} - if 'resource_type' in params: - path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'id_org' in params: path_params['id.org'] = params['id_org'] # noqa: E501 + if 'resource_type' in params: + path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'id_project' in params: path_params['id.project'] = params['id_project'] # noqa: E501 if 'id_domain' in params: @@ -7479,7 +7479,7 @@ def list_description_entities4_with_http_info(self, resource_type, id_org, id_pr auth_settings = [] # noqa: E501 return self.api_client.call_api( - '/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}', 'GET', + '/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}', 'GET', path_params, query_params, header_params, @@ -8909,17 +8909,17 @@ def list_named_entities_with_http_info(self, resource_type, project, domain, **k _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def list_named_entities2(self, resource_type, org, project, domain, **kwargs): # noqa: E501 + def list_named_entities2(self, org, resource_type, project, domain, **kwargs): # noqa: E501 """Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_named_entities2(resource_type, org, project, domain, async_req=True) + >>> thread = api.list_named_entities2(org, resource_type, project, domain, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Resource type of the metadata to query. One of Task, Workflow or LaunchPlan. +required (required) :param str org: Optional, org key applied to the resource. (required) + :param str resource_type: Resource type of the metadata to query. One of Task, Workflow or LaunchPlan. +required (required) :param str project: Name of the project that contains the identifiers. +required (required) :param str domain: Name of the domain the identifiers belongs to within the project. (required) :param int limit: Indicates the number of resources to be returned. @@ -8933,22 +8933,22 @@ def list_named_entities2(self, resource_type, org, project, domain, **kwargs): """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.list_named_entities2_with_http_info(resource_type, org, project, domain, **kwargs) # noqa: E501 + return self.list_named_entities2_with_http_info(org, resource_type, project, domain, **kwargs) # noqa: E501 else: - (data) = self.list_named_entities2_with_http_info(resource_type, org, project, domain, **kwargs) # noqa: E501 + (data) = self.list_named_entities2_with_http_info(org, resource_type, project, domain, **kwargs) # noqa: E501 return data - def list_named_entities2_with_http_info(self, resource_type, org, project, domain, **kwargs): # noqa: E501 + def list_named_entities2_with_http_info(self, org, resource_type, project, domain, **kwargs): # noqa: E501 """Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.list_named_entities2_with_http_info(resource_type, org, project, domain, async_req=True) + >>> thread = api.list_named_entities2_with_http_info(org, resource_type, project, domain, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Resource type of the metadata to query. One of Task, Workflow or LaunchPlan. +required (required) :param str org: Optional, org key applied to the resource. (required) + :param str resource_type: Resource type of the metadata to query. One of Task, Workflow or LaunchPlan. +required (required) :param str project: Name of the project that contains the identifiers. +required (required) :param str domain: Name of the domain the identifiers belongs to within the project. (required) :param int limit: Indicates the number of resources to be returned. @@ -8961,7 +8961,7 @@ def list_named_entities2_with_http_info(self, resource_type, org, project, domai returns the request thread. """ - all_params = ['resource_type', 'org', 'project', 'domain', 'limit', 'token', 'sort_by_key', 'sort_by_direction', 'filters'] # noqa: E501 + all_params = ['org', 'resource_type', 'project', 'domain', 'limit', 'token', 'sort_by_key', 'sort_by_direction', 'filters'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -8976,14 +8976,14 @@ def list_named_entities2_with_http_info(self, resource_type, org, project, domai ) params[key] = val del params['kwargs'] - # verify the required parameter 'resource_type' is set - if ('resource_type' not in params or - params['resource_type'] is None): - raise ValueError("Missing the required parameter `resource_type` when calling `list_named_entities2`") # noqa: E501 # verify the required parameter 'org' is set if ('org' not in params or params['org'] is None): raise ValueError("Missing the required parameter `org` when calling `list_named_entities2`") # noqa: E501 + # verify the required parameter 'resource_type' is set + if ('resource_type' not in params or + params['resource_type'] is None): + raise ValueError("Missing the required parameter `resource_type` when calling `list_named_entities2`") # noqa: E501 # verify the required parameter 'project' is set if ('project' not in params or params['project'] is None): @@ -8996,10 +8996,10 @@ def list_named_entities2_with_http_info(self, resource_type, org, project, domai collection_formats = {} path_params = {} - if 'resource_type' in params: - path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'org' in params: path_params['org'] = params['org'] # noqa: E501 + if 'resource_type' in params: + path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'project' in params: path_params['project'] = params['project'] # noqa: E501 if 'domain' in params: @@ -9035,7 +9035,7 @@ def list_named_entities2_with_http_info(self, resource_type, org, project, domai auth_settings = [] # noqa: E501 return self.api_client.call_api( - '/api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain}', 'GET', + '/api/v1/named_entities/org/{org}/{resource_type}/{project}/{domain}', 'GET', path_params, query_params, header_params, @@ -9711,7 +9711,7 @@ def list_node_executions_for_task2_with_http_info(self, task_execution_id_node_e auth_settings = [] # noqa: E501 return self.api_client.call_api( - '/api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}', 'GET', + '/api/v1/children/org/{task_execution_id.node_execution_id.execution_id.org}/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}', 'GET', path_params, query_params, header_params, @@ -13363,17 +13363,17 @@ def update_named_entity_with_http_info(self, resource_type, id_project, id_domai _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_named_entity2(self, resource_type, id_org, id_project, id_domain, id_name, body, **kwargs): # noqa: E501 + def update_named_entity2(self, id_org, resource_type, id_project, id_domain, id_name, body, **kwargs): # noqa: E501 """Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_named_entity2(resource_type, id_org, id_project, id_domain, id_name, body, async_req=True) + >>> thread = api.update_named_entity2(id_org, resource_type, id_project, id_domain, id_name, body, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Resource type of the metadata to update +required (required) :param str id_org: Optional, org key applied to the resource. (required) + :param str resource_type: Resource type of the metadata to update +required (required) :param str id_project: Name of the project the resource belongs to. (required) :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) :param str id_name: User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' (required) @@ -13384,22 +13384,22 @@ def update_named_entity2(self, resource_type, id_org, id_project, id_domain, id_ """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.update_named_entity2_with_http_info(resource_type, id_org, id_project, id_domain, id_name, body, **kwargs) # noqa: E501 + return self.update_named_entity2_with_http_info(id_org, resource_type, id_project, id_domain, id_name, body, **kwargs) # noqa: E501 else: - (data) = self.update_named_entity2_with_http_info(resource_type, id_org, id_project, id_domain, id_name, body, **kwargs) # noqa: E501 + (data) = self.update_named_entity2_with_http_info(id_org, resource_type, id_project, id_domain, id_name, body, **kwargs) # noqa: E501 return data - def update_named_entity2_with_http_info(self, resource_type, id_org, id_project, id_domain, id_name, body, **kwargs): # noqa: E501 + def update_named_entity2_with_http_info(self, id_org, resource_type, id_project, id_domain, id_name, body, **kwargs): # noqa: E501 """Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.update_named_entity2_with_http_info(resource_type, id_org, id_project, id_domain, id_name, body, async_req=True) + >>> thread = api.update_named_entity2_with_http_info(id_org, resource_type, id_project, id_domain, id_name, body, async_req=True) >>> result = thread.get() :param async_req bool - :param str resource_type: Resource type of the metadata to update +required (required) :param str id_org: Optional, org key applied to the resource. (required) + :param str resource_type: Resource type of the metadata to update +required (required) :param str id_project: Name of the project the resource belongs to. (required) :param str id_domain: Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. (required) :param str id_name: User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' (required) @@ -13409,7 +13409,7 @@ def update_named_entity2_with_http_info(self, resource_type, id_org, id_project, returns the request thread. """ - all_params = ['resource_type', 'id_org', 'id_project', 'id_domain', 'id_name', 'body'] # noqa: E501 + all_params = ['id_org', 'resource_type', 'id_project', 'id_domain', 'id_name', 'body'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -13424,14 +13424,14 @@ def update_named_entity2_with_http_info(self, resource_type, id_org, id_project, ) params[key] = val del params['kwargs'] - # verify the required parameter 'resource_type' is set - if ('resource_type' not in params or - params['resource_type'] is None): - raise ValueError("Missing the required parameter `resource_type` when calling `update_named_entity2`") # noqa: E501 # verify the required parameter 'id_org' is set if ('id_org' not in params or params['id_org'] is None): raise ValueError("Missing the required parameter `id_org` when calling `update_named_entity2`") # noqa: E501 + # verify the required parameter 'resource_type' is set + if ('resource_type' not in params or + params['resource_type'] is None): + raise ValueError("Missing the required parameter `resource_type` when calling `update_named_entity2`") # noqa: E501 # verify the required parameter 'id_project' is set if ('id_project' not in params or params['id_project'] is None): @@ -13452,10 +13452,10 @@ def update_named_entity2_with_http_info(self, resource_type, id_org, id_project, collection_formats = {} path_params = {} - if 'resource_type' in params: - path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'id_org' in params: path_params['id.org'] = params['id_org'] # noqa: E501 + if 'resource_type' in params: + path_params['resource_type'] = params['resource_type'] # noqa: E501 if 'id_project' in params: path_params['id.project'] = params['id_project'] # noqa: E501 if 'id_domain' in params: @@ -13485,7 +13485,7 @@ def update_named_entity2_with_http_info(self, resource_type, id_org, id_project, auth_settings = [] # noqa: E501 return self.api_client.call_api( - '/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}', 'PUT', + '/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}', 'PUT', path_params, query_params, header_params, diff --git a/flyteidl/protos/flyteidl/service/admin.proto b/flyteidl/protos/flyteidl/service/admin.proto index a8083ccaf1..37e0b1ecb5 100644 --- a/flyteidl/protos/flyteidl/service/admin.proto +++ b/flyteidl/protos/flyteidl/service/admin.proto @@ -451,7 +451,7 @@ service AdminService { option (google.api.http) = { get: "/api/v1/children/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}" additional_bindings { - get: "/api/v1/children/task_executions/org/{task_execution_id.node_execution_id.execution_id.org}/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}" + get: "/api/v1/children/org/{task_execution_id.node_execution_id.execution_id.org}/task_executions/{task_execution_id.node_execution_id.execution_id.project}/{task_execution_id.node_execution_id.execution_id.domain}/{task_execution_id.node_execution_id.execution_id.name}/{task_execution_id.node_execution_id.node_id}/{task_execution_id.task_id.project}/{task_execution_id.task_id.domain}/{task_execution_id.task_id.name}/{task_execution_id.task_id.version}/{task_execution_id.retry_attempt}" } }; // option (grpc.gateway.protoc_gen_swagger.options.openapiv2_operation) = { @@ -464,7 +464,7 @@ service AdminService { option (google.api.http) = { get: "/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}" additional_bindings { - get: "/api/v1/data/node_executions/org/{id.execution_id.org}/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}" + get: "/api/v1/data/org/{id.execution_id.org}/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}" } }; // option (grpc.gateway.protoc_gen_swagger.options.openapiv2_operation) = { @@ -594,7 +594,7 @@ service AdminService { option (google.api.http) = { get: "/api/v1/data/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}" additional_bindings { - get: "/api/v1/data/task_executions/org/{id.node_execution_id.execution_id.org}/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}" + get: "/api/v1/data/org/{id.node_execution_id.execution_id.org}/task_executions/{id.node_execution_id.execution_id.project}/{id.node_execution_id.execution_id.domain}/{id.node_execution_id.execution_id.name}/{id.node_execution_id.node_id}/{id.task_id.project}/{id.task_id.domain}/{id.task_id.name}/{id.task_id.version}/{id.retry_attempt}" } }; // option (grpc.gateway.protoc_gen_swagger.options.openapiv2_operation) = { @@ -748,7 +748,7 @@ service AdminService { option (google.api.http) = { get: "/api/v1/named_entities/{resource_type}/{project}/{domain}" additional_bindings { - get: "/api/v1/named_entities/{resource_type}/org/{org}/{project}/{domain}" + get: "/api/v1/named_entities/org/{org}/{resource_type}/{project}/{domain}" } }; // option (grpc.gateway.protoc_gen_swagger.options.openapiv2_operation) = { @@ -761,7 +761,7 @@ service AdminService { option (google.api.http) = { get: "/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}" additional_bindings { - get: "/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}" + get: "/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}" } }; // option (grpc.gateway.protoc_gen_swagger.options.openapiv2_operation) = { @@ -775,7 +775,7 @@ service AdminService { put: "/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}" body: "*" additional_bindings { - put: "/api/v1/named_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}" + put: "/api/v1/named_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}" body: "*" } }; @@ -811,13 +811,13 @@ service AdminService { option (google.api.http) = { get: "/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name}" additional_bindings { - get: "/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}/{id.name}" + get: "/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}/{id.name}" } additional_bindings { get: "/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}" } additional_bindings { - get: "/api/v1/description_entities/{resource_type}/org/{id.org}/{id.project}/{id.domain}" + get: "/api/v1/description_entities/org/{id.org}/{resource_type}/{id.project}/{id.domain}" } }; // option (grpc.gateway.protoc_gen_swagger.options.openapiv2_operation) = { From c379b7108a5ca90d2e32bdcc0358aedd63c553c6 Mon Sep 17 00:00:00 2001 From: Chao-Heng Lee Date: Wed, 31 Jan 2024 13:40:36 +0800 Subject: [PATCH 10/13] Update pyflyte serve into pyflyte serve agent (#4526) * update pyflyte serve to pyflyte serve agent Signed-off-by: Chao-Heng Lee * merge and update agent image version Signed-off-by: Future-Outlier --------- Signed-off-by: Chao-Heng Lee Signed-off-by: Future-Outlier Co-authored-by: Future-Outlier --- charts/flyteagent/README.md | 2 +- charts/flyteagent/templates/agent/deployment.yaml | 1 + charts/flyteagent/values.yaml | 2 +- deployment/agent/flyte_agent_helm_generated.yaml | 3 ++- docker/sandbox-bundled/manifests/complete-agent.yaml | 7 ++++--- docker/sandbox-bundled/manifests/complete.yaml | 4 ++-- docker/sandbox-bundled/manifests/dev.yaml | 4 ++-- 7 files changed, 13 insertions(+), 10 deletions(-) diff --git a/charts/flyteagent/README.md b/charts/flyteagent/README.md index 9db05060d0..6ca4e88927 100644 --- a/charts/flyteagent/README.md +++ b/charts/flyteagent/README.md @@ -20,7 +20,7 @@ A Helm chart for Flyte agent | fullnameOverride | string | `""` | | | image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | image.repository | string | `"ghcr.io/flyteorg/flyteagent"` | Docker image for flyteagent deployment | -| image.tag | string | `"1.10.2"` | Docker image tag | +| image.tag | string | `"1.10.3"` | Docker image tag | | nameOverride | string | `""` | | | nodeSelector | object | `{}` | nodeSelector for flyteagent deployment | | podAnnotations | object | `{}` | Annotations for flyteagent pods | diff --git a/charts/flyteagent/templates/agent/deployment.yaml b/charts/flyteagent/templates/agent/deployment.yaml index 82359cec64..5dd293bc14 100644 --- a/charts/flyteagent/templates/agent/deployment.yaml +++ b/charts/flyteagent/templates/agent/deployment.yaml @@ -23,6 +23,7 @@ spec: - command: - pyflyte - serve + - agent {{- if .Values.podEnv }} env: {{- with .Values.podEnv }} diff --git a/charts/flyteagent/values.yaml b/charts/flyteagent/values.yaml index b682600d46..2cf8d5d64c 100755 --- a/charts/flyteagent/values.yaml +++ b/charts/flyteagent/values.yaml @@ -23,7 +23,7 @@ image: # -- Docker image for flyteagent deployment repository: ghcr.io/flyteorg/flyteagent # -- Docker image tag - tag: 1.10.2 # FLYTEAGENT_TAG + tag: 1.10.3 # FLYTEAGENT_TAG # -- Docker image pull policy pullPolicy: IfNotPresent ports: diff --git a/deployment/agent/flyte_agent_helm_generated.yaml b/deployment/agent/flyte_agent_helm_generated.yaml index a74aad0d9c..cb698bec2a 100644 --- a/deployment/agent/flyte_agent_helm_generated.yaml +++ b/deployment/agent/flyte_agent_helm_generated.yaml @@ -75,7 +75,8 @@ spec: - command: - pyflyte - serve - image: "ghcr.io/flyteorg/flyteagent:1.10.2" + - agent + image: "ghcr.io/flyteorg/flyteagent:1.10.3" imagePullPolicy: "IfNotPresent" name: flyteagent volumeMounts: diff --git a/docker/sandbox-bundled/manifests/complete-agent.yaml b/docker/sandbox-bundled/manifests/complete-agent.yaml index 3797d02859..7c4df1e1d0 100644 --- a/docker/sandbox-bundled/manifests/complete-agent.yaml +++ b/docker/sandbox-bundled/manifests/complete-agent.yaml @@ -816,7 +816,7 @@ type: Opaque --- apiVersion: v1 data: - haSharedSecret: R3dGeldWcjRZb1d5dlVMbA== + haSharedSecret: dng4YnEzSHROOFhRaE1VZQ== proxyPassword: "" proxyUsername: "" kind: Secret @@ -1412,7 +1412,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: 11c2215901062e6c31e3f73ad634f47f23e3ce1c1b5b774e500e6592969a907c + checksum/secret: c4a7dad2d7c6ca293d589c7d9ace15b1b60e69b7110190644e7a8a1e959959e2 labels: app: docker-registry release: flyte-sandbox @@ -1747,6 +1747,7 @@ spec: - command: - pyflyte - serve + - agent env: - name: FLYTE_AWS_ENDPOINT value: http://flyte-sandbox-minio.flyte:9000 @@ -1754,7 +1755,7 @@ spec: value: minio - name: FLYTE_AWS_SECRET_ACCESS_KEY value: miniostorage - image: ghcr.io/flyteorg/flyteagent:1.10.2 + image: ghcr.io/flyteorg/flyteagent:1.10.3 imagePullPolicy: IfNotPresent name: flyteagent ports: diff --git a/docker/sandbox-bundled/manifests/complete.yaml b/docker/sandbox-bundled/manifests/complete.yaml index 4abe5dad66..9521ff41b1 100644 --- a/docker/sandbox-bundled/manifests/complete.yaml +++ b/docker/sandbox-bundled/manifests/complete.yaml @@ -796,7 +796,7 @@ type: Opaque --- apiVersion: v1 data: - haSharedSecret: dWZVZnFyN055a2NqT1lTTw== + haSharedSecret: c0pvT1NlMzViQkVLVWRBNQ== proxyPassword: "" proxyUsername: "" kind: Secret @@ -1360,7 +1360,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: c07763867933245f95f13aa477630c8c337c62efee4cba504729dc8a4f9e5ce2 + checksum/secret: 9512852ca2ca190980daf7ae998d1bc4e63e47e118ca1f4d5380547eb2fde321 labels: app: docker-registry release: flyte-sandbox diff --git a/docker/sandbox-bundled/manifests/dev.yaml b/docker/sandbox-bundled/manifests/dev.yaml index a8b9244f22..3d05837065 100644 --- a/docker/sandbox-bundled/manifests/dev.yaml +++ b/docker/sandbox-bundled/manifests/dev.yaml @@ -499,7 +499,7 @@ metadata: --- apiVersion: v1 data: - haSharedSecret: cDQ2bUZZQkg4bjg2Y2hGRQ== + haSharedSecret: Uml0TnZ2ektnOW5xNkJIYw== proxyPassword: "" proxyUsername: "" kind: Secret @@ -934,7 +934,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: e65c1b8ed75e538fd09b9d94538d1a99a986534b18625406a2bc9cce8aeffe1a + checksum/secret: ec4150cc8f428f2475c6db0d4be7fbd7192ab67cfa19a04961611e8581d855ae labels: app: docker-registry release: flyte-sandbox From 7711df2cebaaa6a2dc8d7de2149859eed5ba0cc2 Mon Sep 17 00:00:00 2001 From: Future-Outlier Date: Wed, 31 Jan 2024 20:03:58 +0800 Subject: [PATCH 11/13] Agent ClientSet (#4718) * v1 Signed-off-by: Future-Outlier * kevin wip Signed-off-by: Kevin Su * add mockery AsyncAgentClient Signed-off-by: Future-Outlier * improve error message Signed-off-by: Future-Outlier * improve error message Signed-off-by: Future-Outlier * improve error message Signed-off-by: Future-Outlier * need to use mockery AsyncAgentClient FIrst Signed-off-by: Future-Outlier * set config TestInitializeAgentRegistry Signed-off-by: Future-Outlier * push change Signed-off-by: Future-Outlier * make generate Signed-off-by: Kevin Su * update tests Signed-off-by: Kevin Su * nit Signed-off-by: Kevin Su --------- Signed-off-by: Future-Outlier Signed-off-by: Kevin Su Signed-off-by: Future-Outlier Co-authored-by: Future-Outlier Co-authored-by: Kevin Su --- .../go/tasks/plugins/webapi/agent/client.go | 159 +++++++++++ .../tasks/plugins/webapi/agent/client_test.go | 18 ++ .../plugins/webapi/agent/integration_test.go | 168 +++--------- .../agent/mocks/AsyncAgentServiceClient.go | 258 ++++++++++++++++++ .../go/tasks/plugins/webapi/agent/plugin.go | 199 ++------------ .../tasks/plugins/webapi/agent/plugin_test.go | 103 ++----- 6 files changed, 522 insertions(+), 383 deletions(-) create mode 100644 flyteplugins/go/tasks/plugins/webapi/agent/client.go create mode 100644 flyteplugins/go/tasks/plugins/webapi/agent/client_test.go create mode 100644 flyteplugins/go/tasks/plugins/webapi/agent/mocks/AsyncAgentServiceClient.go diff --git a/flyteplugins/go/tasks/plugins/webapi/agent/client.go b/flyteplugins/go/tasks/plugins/webapi/agent/client.go new file mode 100644 index 0000000000..b118f64596 --- /dev/null +++ b/flyteplugins/go/tasks/plugins/webapi/agent/client.go @@ -0,0 +1,159 @@ +package agent + +import ( + "context" + "crypto/x509" + "fmt" + + "golang.org/x/exp/maps" + "google.golang.org/grpc" + "google.golang.org/grpc/codes" + "google.golang.org/grpc/credentials" + "google.golang.org/grpc/credentials/insecure" + "google.golang.org/grpc/grpclog" + "google.golang.org/grpc/status" + + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flytestdlib/config" + "github.com/flyteorg/flyte/flytestdlib/logger" +) + +// ClientSet contains the clients exposed to communicate with various agent services. +type ClientSet struct { + agentClients map[string]service.AsyncAgentServiceClient // map[endpoint] => client + agentMetadataClients map[string]service.AgentMetadataServiceClient // map[endpoint] => client +} + +func getGrpcConnection(ctx context.Context, agent *Agent) (*grpc.ClientConn, error) { + var opts []grpc.DialOption + + if agent.Insecure { + opts = append(opts, grpc.WithTransportCredentials(insecure.NewCredentials())) + } else { + pool, err := x509.SystemCertPool() + if err != nil { + return nil, err + } + + creds := credentials.NewClientTLSFromCert(pool, "") + opts = append(opts, grpc.WithTransportCredentials(creds)) + } + + if len(agent.DefaultServiceConfig) != 0 { + opts = append(opts, grpc.WithDefaultServiceConfig(agent.DefaultServiceConfig)) + } + + var err error + conn, err := grpc.Dial(agent.Endpoint, opts...) + if err != nil { + return nil, err + } + defer func() { + if err != nil { + if cerr := conn.Close(); cerr != nil { + grpclog.Infof("Failed to close conn to %s: %v", agent, cerr) + } + return + } + go func() { + <-ctx.Done() + if cerr := conn.Close(); cerr != nil { + grpclog.Infof("Failed to close conn to %s: %v", agent, cerr) + } + }() + }() + + return conn, nil +} + +func getFinalTimeout(operation string, agent *Agent) config.Duration { + if t, exists := agent.Timeouts[operation]; exists { + return t + } + + return agent.DefaultTimeout +} + +func getFinalContext(ctx context.Context, operation string, agent *Agent) (context.Context, context.CancelFunc) { + timeout := getFinalTimeout(operation, agent).Duration + if timeout == 0 { + return ctx, func() {} + } + + return context.WithTimeout(ctx, timeout) +} + +func initializeAgentRegistry(cs *ClientSet) (map[string]*Agent, error) { + agentRegistry := make(map[string]*Agent) + cfg := GetConfig() + var agentDeployments []*Agent + + // Ensure that the old configuration is backward compatible + for taskType, agentID := range cfg.AgentForTaskTypes { + agentRegistry[taskType] = cfg.Agents[agentID] + } + + if len(cfg.DefaultAgent.Endpoint) != 0 { + agentDeployments = append(agentDeployments, &cfg.DefaultAgent) + } + agentDeployments = append(agentDeployments, maps.Values(cfg.Agents)...) + for _, agentDeployment := range agentDeployments { + client := cs.agentMetadataClients[agentDeployment.Endpoint] + + finalCtx, cancel := getFinalContext(context.Background(), "ListAgents", agentDeployment) + defer cancel() + + res, err := client.ListAgents(finalCtx, &admin.ListAgentsRequest{}) + if err != nil { + grpcStatus, ok := status.FromError(err) + if grpcStatus.Code() == codes.Unimplemented { + // we should not panic here, as we want to continue to support old agent settings + logger.Infof(context.Background(), "list agent method not implemented for agent: [%v]", agentDeployment) + continue + } + + if !ok { + return nil, fmt.Errorf("failed to list agent: [%v] with a non-gRPC error: [%v]", agentDeployment, err) + } + + return nil, fmt.Errorf("failed to list agent: [%v] with error: [%v]", agentDeployment, err) + } + + agents := res.GetAgents() + for _, agent := range agents { + supportedTaskTypes := agent.SupportedTaskTypes + for _, supportedTaskType := range supportedTaskTypes { + agentRegistry[supportedTaskType] = agentDeployment + } + } + } + + return agentRegistry, nil +} + +func initializeClients(ctx context.Context) (*ClientSet, error) { + agentClients := make(map[string]service.AsyncAgentServiceClient) + agentMetadataClients := make(map[string]service.AgentMetadataServiceClient) + + var agentDeployments []*Agent + cfg := GetConfig() + + if len(cfg.DefaultAgent.Endpoint) != 0 { + agentDeployments = append(agentDeployments, &cfg.DefaultAgent) + } + agentDeployments = append(agentDeployments, maps.Values(cfg.Agents)...) + for _, agentDeployment := range agentDeployments { + conn, err := getGrpcConnection(ctx, agentDeployment) + if err != nil { + return nil, err + } + agentClients[agentDeployment.Endpoint] = service.NewAsyncAgentServiceClient(conn) + agentMetadataClients[agentDeployment.Endpoint] = service.NewAgentMetadataServiceClient(conn) + } + + return &ClientSet{ + agentClients: agentClients, + agentMetadataClients: agentMetadataClients, + }, nil +} diff --git a/flyteplugins/go/tasks/plugins/webapi/agent/client_test.go b/flyteplugins/go/tasks/plugins/webapi/agent/client_test.go new file mode 100644 index 0000000000..d68811d037 --- /dev/null +++ b/flyteplugins/go/tasks/plugins/webapi/agent/client_test.go @@ -0,0 +1,18 @@ +package agent + +import ( + "context" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestInitializeClients(t *testing.T) { + cfg := defaultConfig + ctx := context.Background() + err := SetConfig(&cfg) + assert.NoError(t, err) + cs, err := initializeClients(ctx) + assert.NoError(t, err) + assert.NotNil(t, cs) +} diff --git a/flyteplugins/go/tasks/plugins/webapi/agent/integration_test.go b/flyteplugins/go/tasks/plugins/webapi/agent/integration_test.go index a2b2135591..fe3b45b881 100644 --- a/flyteplugins/go/tasks/plugins/webapi/agent/integration_test.go +++ b/flyteplugins/go/tasks/plugins/webapi/agent/integration_test.go @@ -10,7 +10,6 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" - "google.golang.org/grpc" "k8s.io/apimachinery/pkg/util/rand" "k8s.io/utils/strings/slices" @@ -25,6 +24,7 @@ import ( pluginCoreMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks" ioMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/webapi" + agentMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/webapi/agent/mocks" "github.com/flyteorg/flyte/flyteplugins/tests" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/promutils" @@ -33,101 +33,6 @@ import ( "github.com/flyteorg/flyte/flytestdlib/utils" ) -type MockPlugin struct { - Plugin -} - -type MockAsyncTask struct { -} - -func (m *MockAsyncTask) GetTaskMetrics(ctx context.Context, in *admin.GetTaskMetricsRequest, opts ...grpc.CallOption) (*admin.GetTaskMetricsResponse, error) { - panic("not implemented") -} - -func (m *MockAsyncTask) GetTaskLogs(ctx context.Context, in *admin.GetTaskLogsRequest, opts ...grpc.CallOption) (*admin.GetTaskLogsResponse, error) { - panic("not implemented") -} - -type MockSyncTask struct { -} - -func (m *MockSyncTask) GetTaskMetrics(ctx context.Context, in *admin.GetTaskMetricsRequest, opts ...grpc.CallOption) (*admin.GetTaskMetricsResponse, error) { - panic("not implemented") -} - -func (m *MockSyncTask) GetTaskLogs(ctx context.Context, in *admin.GetTaskLogsRequest, opts ...grpc.CallOption) (*admin.GetTaskLogsResponse, error) { - panic("not implemented") -} - -func (m *MockAsyncTask) CreateTask(_ context.Context, createTaskRequest *admin.CreateTaskRequest, _ ...grpc.CallOption) (*admin.CreateTaskResponse, error) { - expectedArgs := []string{"pyflyte-fast-execute", "--output-prefix", "fake://bucket/prefix/nhv"} - if slices.Equal(createTaskRequest.Template.GetContainer().Args, expectedArgs) { - return nil, fmt.Errorf("args not as expected") - } - return &admin.CreateTaskResponse{ - Res: &admin.CreateTaskResponse_ResourceMeta{ - ResourceMeta: []byte{1, 2, 3, 4}, - }}, nil -} - -func (m *MockAsyncTask) GetTask(_ context.Context, req *admin.GetTaskRequest, _ ...grpc.CallOption) (*admin.GetTaskResponse, error) { - if req.GetTaskType() == "bigquery_query_job_task" { - return &admin.GetTaskResponse{Resource: &admin.Resource{State: admin.State_SUCCEEDED, Outputs: &flyteIdlCore.LiteralMap{ - Literals: map[string]*flyteIdlCore.Literal{ - "arr": coreutils.MustMakeLiteral([]interface{}{[]interface{}{"a", "b"}, []interface{}{1, 2}}), - }, - }}}, nil - } - return &admin.GetTaskResponse{Resource: &admin.Resource{State: admin.State_SUCCEEDED}}, nil -} - -func (m *MockAsyncTask) DeleteTask(_ context.Context, _ *admin.DeleteTaskRequest, _ ...grpc.CallOption) (*admin.DeleteTaskResponse, error) { - return &admin.DeleteTaskResponse{}, nil -} - -func (m *MockSyncTask) CreateTask(_ context.Context, createTaskRequest *admin.CreateTaskRequest, _ ...grpc.CallOption) (*admin.CreateTaskResponse, error) { - return &admin.CreateTaskResponse{ - Res: &admin.CreateTaskResponse_Resource{ - Resource: &admin.Resource{ - State: admin.State_SUCCEEDED, - Outputs: &flyteIdlCore.LiteralMap{ - Literals: map[string]*flyteIdlCore.Literal{}, - }, - Message: "Sync task finished", - LogLinks: []*flyteIdlCore.TaskLog{{Uri: "http://localhost:3000/log", Name: "Log Link"}}, - }, - }, - }, nil - -} - -func (m *MockSyncTask) GetTask(_ context.Context, req *admin.GetTaskRequest, _ ...grpc.CallOption) (*admin.GetTaskResponse, error) { - if req.GetTaskType() == "fake_task" { - return &admin.GetTaskResponse{Resource: &admin.Resource{State: admin.State_SUCCEEDED, Outputs: &flyteIdlCore.LiteralMap{ - Literals: map[string]*flyteIdlCore.Literal{ - "arr": coreutils.MustMakeLiteral([]interface{}{[]interface{}{"a", "b"}, []interface{}{1, 2}}), - }, - }}}, nil - } - return &admin.GetTaskResponse{Resource: &admin.Resource{State: admin.State_SUCCEEDED}}, nil -} - -func (m *MockSyncTask) DeleteTask(_ context.Context, _ *admin.DeleteTaskRequest, _ ...grpc.CallOption) (*admin.DeleteTaskResponse, error) { - return &admin.DeleteTaskResponse{}, nil -} - -func mockAsyncTaskClientFunc(_ context.Context, _ *Agent, _ map[*Agent]*grpc.ClientConn) (service.AsyncAgentServiceClient, error) { - return &MockAsyncTask{}, nil -} - -func mockSyncTaskClientFunc(_ context.Context, _ *Agent, _ map[*Agent]*grpc.ClientConn) (service.AsyncAgentServiceClient, error) { - return &MockSyncTask{}, nil -} - -func mockGetBadAsyncClientFunc(_ context.Context, _ *Agent, _ map[*Agent]*grpc.ClientConn) (service.AsyncAgentServiceClient, error) { - return nil, fmt.Errorf("error") -} - func TestEndToEnd(t *testing.T) { iter := func(ctx context.Context, tCtx pluginCore.TaskExecutionContext) error { return nil @@ -137,6 +42,7 @@ func TestEndToEnd(t *testing.T) { cfg.WebAPI.ResourceQuotas = map[core.ResourceNamespace]int{} cfg.WebAPI.Caching.Workers = 1 cfg.WebAPI.Caching.ResyncInterval.Duration = 5 * time.Second + cfg.DefaultAgent.Endpoint = "localhost:8000" err := SetConfig(&cfg) assert.NoError(t, err) @@ -158,10 +64,10 @@ func TestEndToEnd(t *testing.T) { inputs, _ := coreutils.MakeLiteralMap(map[string]interface{}{"x": 1}) template := flyteIdlCore.TaskTemplate{ - Type: "bigquery_query_job_task", + Type: "spark", Custom: st, Target: &flyteIdlCore.TaskTemplate_Container{ - Container: &flyteIdlCore.Container{Args: []string{"pyflyte-fast-execute", "--output-prefix", "{{.outputPrefix}}"}}, + Container: &flyteIdlCore.Container{Args: []string{"pyflyte-fast-execute", "--output-prefix", "/tmp/123"}}, }, } basePrefix := storage.DataReference("fake://bucket/prefix/") @@ -174,20 +80,20 @@ func TestEndToEnd(t *testing.T) { phase := tests.RunPluginEndToEndTest(t, plugin, &template, inputs, nil, nil, iter) assert.Equal(t, true, phase.Phase().IsSuccess()) - template.Type = "spark_job" + template.Type = "spark" phase = tests.RunPluginEndToEndTest(t, plugin, &template, inputs, nil, nil, iter) assert.Equal(t, true, phase.Phase().IsSuccess()) - }) t.Run("failed to create a job", func(t *testing.T) { agentPlugin := newMockAgentPlugin() agentPlugin.PluginLoader = func(ctx context.Context, iCtx webapi.PluginSetupContext) (webapi.AsyncPlugin, error) { - return &MockPlugin{ - Plugin{ - metricScope: iCtx.MetricsScope(), - cfg: GetConfig(), - getClient: mockGetBadAsyncClientFunc, + return Plugin{ + metricScope: iCtx.MetricsScope(), + cfg: GetConfig(), + cs: &ClientSet{ + agentClients: map[string]service.AsyncAgentServiceClient{}, + agentMetadataClients: map[string]service.AgentMetadataServiceClient{}, }, }, nil } @@ -319,31 +225,41 @@ func getTaskContext(t *testing.T) *pluginCoreMocks.TaskExecutionContext { } func newMockAgentPlugin() webapi.PluginEntry { - return webapi.PluginEntry{ - ID: "agent-service", - SupportedTaskTypes: []core.TaskType{"bigquery_query_job_task", "spark_job", "api_task"}, - PluginLoader: func(ctx context.Context, iCtx webapi.PluginSetupContext) (webapi.AsyncPlugin, error) { - return &MockPlugin{ - Plugin{ - metricScope: iCtx.MetricsScope(), - cfg: GetConfig(), - getClient: mockAsyncTaskClientFunc, - }, - }, nil - }, - } -} -func newMockSyncAgentPlugin() webapi.PluginEntry { + agentClient := new(agentMocks.AsyncAgentServiceClient) + + mockCreateRequestMatcher := mock.MatchedBy(func(request *admin.CreateTaskRequest) bool { + expectedArgs := []string{"pyflyte-fast-execute", "--output-prefix", "/tmp/123"} + return slices.Equal(request.Template.GetContainer().Args, expectedArgs) + }) + agentClient.On("CreateTask", mock.Anything, mockCreateRequestMatcher).Return(&admin.CreateTaskResponse{ + Res: &admin.CreateTaskResponse_ResourceMeta{ + ResourceMeta: []byte{1, 2, 3, 4}, + }}, nil) + + mockGetRequestMatcher := mock.MatchedBy(func(request *admin.GetTaskRequest) bool { + return request.GetTaskType() == "spark" + }) + agentClient.On("GetTask", mock.Anything, mockGetRequestMatcher).Return( + &admin.GetTaskResponse{Resource: &admin.Resource{State: admin.State_SUCCEEDED}}, nil) + + agentClient.On("DeleteTask", mock.Anything, mock.Anything).Return( + &admin.DeleteTaskResponse{}, nil) + + cfg := defaultConfig + cfg.DefaultAgent.Endpoint = "localhost:8000" + return webapi.PluginEntry{ ID: "agent-service", - SupportedTaskTypes: []core.TaskType{"bigquery_query_job_task", "spark_job", "api_task"}, + SupportedTaskTypes: []core.TaskType{"bigquery_query_job_task", "spark", "api_task"}, PluginLoader: func(ctx context.Context, iCtx webapi.PluginSetupContext) (webapi.AsyncPlugin, error) { - return &MockPlugin{ - Plugin{ - metricScope: iCtx.MetricsScope(), - cfg: GetConfig(), - getClient: mockSyncTaskClientFunc, + return Plugin{ + metricScope: iCtx.MetricsScope(), + cfg: &cfg, + cs: &ClientSet{ + agentClients: map[string]service.AsyncAgentServiceClient{ + "localhost:8000": agentClient, + }, }, }, nil }, diff --git a/flyteplugins/go/tasks/plugins/webapi/agent/mocks/AsyncAgentServiceClient.go b/flyteplugins/go/tasks/plugins/webapi/agent/mocks/AsyncAgentServiceClient.go new file mode 100644 index 0000000000..f11ef1adfe --- /dev/null +++ b/flyteplugins/go/tasks/plugins/webapi/agent/mocks/AsyncAgentServiceClient.go @@ -0,0 +1,258 @@ +// Code generated by mockery v1.0.1. DO NOT EDIT. + +package mocks + +import ( + context "context" + + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + + grpc "google.golang.org/grpc" + + mock "github.com/stretchr/testify/mock" +) + +// AsyncAgentServiceClient is an autogenerated mock type for the AsyncAgentServiceClient type +type AsyncAgentServiceClient struct { + mock.Mock +} + +type AsyncAgentServiceClient_CreateTask struct { + *mock.Call +} + +func (_m AsyncAgentServiceClient_CreateTask) Return(_a0 *admin.CreateTaskResponse, _a1 error) *AsyncAgentServiceClient_CreateTask { + return &AsyncAgentServiceClient_CreateTask{Call: _m.Call.Return(_a0, _a1)} +} + +func (_m *AsyncAgentServiceClient) OnCreateTask(ctx context.Context, in *admin.CreateTaskRequest, opts ...grpc.CallOption) *AsyncAgentServiceClient_CreateTask { + c_call := _m.On("CreateTask", ctx, in, opts) + return &AsyncAgentServiceClient_CreateTask{Call: c_call} +} + +func (_m *AsyncAgentServiceClient) OnCreateTaskMatch(matchers ...interface{}) *AsyncAgentServiceClient_CreateTask { + c_call := _m.On("CreateTask", matchers...) + return &AsyncAgentServiceClient_CreateTask{Call: c_call} +} + +// CreateTask provides a mock function with given fields: ctx, in, opts +func (_m *AsyncAgentServiceClient) CreateTask(ctx context.Context, in *admin.CreateTaskRequest, opts ...grpc.CallOption) (*admin.CreateTaskResponse, error) { + _va := make([]interface{}, len(opts)) + for _i := range opts { + _va[_i] = opts[_i] + } + var _ca []interface{} + _ca = append(_ca, ctx, in) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) + + var r0 *admin.CreateTaskResponse + if rf, ok := ret.Get(0).(func(context.Context, *admin.CreateTaskRequest, ...grpc.CallOption) *admin.CreateTaskResponse); ok { + r0 = rf(ctx, in, opts...) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*admin.CreateTaskResponse) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *admin.CreateTaskRequest, ...grpc.CallOption) error); ok { + r1 = rf(ctx, in, opts...) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + +type AsyncAgentServiceClient_DeleteTask struct { + *mock.Call +} + +func (_m AsyncAgentServiceClient_DeleteTask) Return(_a0 *admin.DeleteTaskResponse, _a1 error) *AsyncAgentServiceClient_DeleteTask { + return &AsyncAgentServiceClient_DeleteTask{Call: _m.Call.Return(_a0, _a1)} +} + +func (_m *AsyncAgentServiceClient) OnDeleteTask(ctx context.Context, in *admin.DeleteTaskRequest, opts ...grpc.CallOption) *AsyncAgentServiceClient_DeleteTask { + c_call := _m.On("DeleteTask", ctx, in, opts) + return &AsyncAgentServiceClient_DeleteTask{Call: c_call} +} + +func (_m *AsyncAgentServiceClient) OnDeleteTaskMatch(matchers ...interface{}) *AsyncAgentServiceClient_DeleteTask { + c_call := _m.On("DeleteTask", matchers...) + return &AsyncAgentServiceClient_DeleteTask{Call: c_call} +} + +// DeleteTask provides a mock function with given fields: ctx, in, opts +func (_m *AsyncAgentServiceClient) DeleteTask(ctx context.Context, in *admin.DeleteTaskRequest, opts ...grpc.CallOption) (*admin.DeleteTaskResponse, error) { + _va := make([]interface{}, len(opts)) + for _i := range opts { + _va[_i] = opts[_i] + } + var _ca []interface{} + _ca = append(_ca, ctx, in) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) + + var r0 *admin.DeleteTaskResponse + if rf, ok := ret.Get(0).(func(context.Context, *admin.DeleteTaskRequest, ...grpc.CallOption) *admin.DeleteTaskResponse); ok { + r0 = rf(ctx, in, opts...) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*admin.DeleteTaskResponse) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *admin.DeleteTaskRequest, ...grpc.CallOption) error); ok { + r1 = rf(ctx, in, opts...) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + +type AsyncAgentServiceClient_GetTask struct { + *mock.Call +} + +func (_m AsyncAgentServiceClient_GetTask) Return(_a0 *admin.GetTaskResponse, _a1 error) *AsyncAgentServiceClient_GetTask { + return &AsyncAgentServiceClient_GetTask{Call: _m.Call.Return(_a0, _a1)} +} + +func (_m *AsyncAgentServiceClient) OnGetTask(ctx context.Context, in *admin.GetTaskRequest, opts ...grpc.CallOption) *AsyncAgentServiceClient_GetTask { + c_call := _m.On("GetTask", ctx, in, opts) + return &AsyncAgentServiceClient_GetTask{Call: c_call} +} + +func (_m *AsyncAgentServiceClient) OnGetTaskMatch(matchers ...interface{}) *AsyncAgentServiceClient_GetTask { + c_call := _m.On("GetTask", matchers...) + return &AsyncAgentServiceClient_GetTask{Call: c_call} +} + +// GetTask provides a mock function with given fields: ctx, in, opts +func (_m *AsyncAgentServiceClient) GetTask(ctx context.Context, in *admin.GetTaskRequest, opts ...grpc.CallOption) (*admin.GetTaskResponse, error) { + _va := make([]interface{}, len(opts)) + for _i := range opts { + _va[_i] = opts[_i] + } + var _ca []interface{} + _ca = append(_ca, ctx, in) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) + + var r0 *admin.GetTaskResponse + if rf, ok := ret.Get(0).(func(context.Context, *admin.GetTaskRequest, ...grpc.CallOption) *admin.GetTaskResponse); ok { + r0 = rf(ctx, in, opts...) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*admin.GetTaskResponse) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *admin.GetTaskRequest, ...grpc.CallOption) error); ok { + r1 = rf(ctx, in, opts...) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + +type AsyncAgentServiceClient_GetTaskLogs struct { + *mock.Call +} + +func (_m AsyncAgentServiceClient_GetTaskLogs) Return(_a0 *admin.GetTaskLogsResponse, _a1 error) *AsyncAgentServiceClient_GetTaskLogs { + return &AsyncAgentServiceClient_GetTaskLogs{Call: _m.Call.Return(_a0, _a1)} +} + +func (_m *AsyncAgentServiceClient) OnGetTaskLogs(ctx context.Context, in *admin.GetTaskLogsRequest, opts ...grpc.CallOption) *AsyncAgentServiceClient_GetTaskLogs { + c_call := _m.On("GetTaskLogs", ctx, in, opts) + return &AsyncAgentServiceClient_GetTaskLogs{Call: c_call} +} + +func (_m *AsyncAgentServiceClient) OnGetTaskLogsMatch(matchers ...interface{}) *AsyncAgentServiceClient_GetTaskLogs { + c_call := _m.On("GetTaskLogs", matchers...) + return &AsyncAgentServiceClient_GetTaskLogs{Call: c_call} +} + +// GetTaskLogs provides a mock function with given fields: ctx, in, opts +func (_m *AsyncAgentServiceClient) GetTaskLogs(ctx context.Context, in *admin.GetTaskLogsRequest, opts ...grpc.CallOption) (*admin.GetTaskLogsResponse, error) { + _va := make([]interface{}, len(opts)) + for _i := range opts { + _va[_i] = opts[_i] + } + var _ca []interface{} + _ca = append(_ca, ctx, in) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) + + var r0 *admin.GetTaskLogsResponse + if rf, ok := ret.Get(0).(func(context.Context, *admin.GetTaskLogsRequest, ...grpc.CallOption) *admin.GetTaskLogsResponse); ok { + r0 = rf(ctx, in, opts...) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*admin.GetTaskLogsResponse) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *admin.GetTaskLogsRequest, ...grpc.CallOption) error); ok { + r1 = rf(ctx, in, opts...) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + +type AsyncAgentServiceClient_GetTaskMetrics struct { + *mock.Call +} + +func (_m AsyncAgentServiceClient_GetTaskMetrics) Return(_a0 *admin.GetTaskMetricsResponse, _a1 error) *AsyncAgentServiceClient_GetTaskMetrics { + return &AsyncAgentServiceClient_GetTaskMetrics{Call: _m.Call.Return(_a0, _a1)} +} + +func (_m *AsyncAgentServiceClient) OnGetTaskMetrics(ctx context.Context, in *admin.GetTaskMetricsRequest, opts ...grpc.CallOption) *AsyncAgentServiceClient_GetTaskMetrics { + c_call := _m.On("GetTaskMetrics", ctx, in, opts) + return &AsyncAgentServiceClient_GetTaskMetrics{Call: c_call} +} + +func (_m *AsyncAgentServiceClient) OnGetTaskMetricsMatch(matchers ...interface{}) *AsyncAgentServiceClient_GetTaskMetrics { + c_call := _m.On("GetTaskMetrics", matchers...) + return &AsyncAgentServiceClient_GetTaskMetrics{Call: c_call} +} + +// GetTaskMetrics provides a mock function with given fields: ctx, in, opts +func (_m *AsyncAgentServiceClient) GetTaskMetrics(ctx context.Context, in *admin.GetTaskMetricsRequest, opts ...grpc.CallOption) (*admin.GetTaskMetricsResponse, error) { + _va := make([]interface{}, len(opts)) + for _i := range opts { + _va[_i] = opts[_i] + } + var _ca []interface{} + _ca = append(_ca, ctx, in) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) + + var r0 *admin.GetTaskMetricsResponse + if rf, ok := ret.Get(0).(func(context.Context, *admin.GetTaskMetricsRequest, ...grpc.CallOption) *admin.GetTaskMetricsResponse); ok { + r0 = rf(ctx, in, opts...) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*admin.GetTaskMetricsResponse) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *admin.GetTaskMetricsRequest, ...grpc.CallOption) error); ok { + r1 = rf(ctx, in, opts...) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} diff --git a/flyteplugins/go/tasks/plugins/webapi/agent/plugin.go b/flyteplugins/go/tasks/plugins/webapi/agent/plugin.go index 7a9f92caaa..13115f89b4 100644 --- a/flyteplugins/go/tasks/plugins/webapi/agent/plugin.go +++ b/flyteplugins/go/tasks/plugins/webapi/agent/plugin.go @@ -2,22 +2,14 @@ package agent import ( "context" - "crypto/x509" "encoding/gob" "fmt" "time" "golang.org/x/exp/maps" - "google.golang.org/grpc" - "google.golang.org/grpc/codes" - "google.golang.org/grpc/credentials" - "google.golang.org/grpc/credentials/insecure" - "google.golang.org/grpc/grpclog" - "google.golang.org/grpc/status" "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" flyteIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" pluginErrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core" @@ -25,20 +17,15 @@ import ( "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/webapi" - "github.com/flyteorg/flyte/flytestdlib/config" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" ) -type GetClientFunc func(ctx context.Context, agent *Agent, connectionCache map[*Agent]*grpc.ClientConn) (service.AsyncAgentServiceClient, error) -type GetAgentMetadataClientFunc func(ctx context.Context, agent *Agent, connCache map[*Agent]*grpc.ClientConn) (service.AgentMetadataServiceClient, error) - type Plugin struct { - metricScope promutils.Scope - cfg *Config - getClient GetClientFunc - connectionCache map[*Agent]*grpc.ClientConn - agentRegistry map[string]*Agent // map[taskType] => Agent + metricScope promutils.Scope + cfg *Config + cs *ClientSet + agentRegistry map[string]*Agent // map[taskType] => Agent } type ResourceWrapper struct { @@ -97,9 +84,9 @@ func (p Plugin) Create(ctx context.Context, taskCtx webapi.TaskExecutionContextR agent := getFinalAgent(taskTemplate.Type, p.cfg, p.agentRegistry) - client, err := p.getClient(ctx, agent, p.connectionCache) - if err != nil { - return nil, nil, fmt.Errorf("failed to connect to agent with error: %v", err) + client := p.cs.agentClients[agent.Endpoint] + if client == nil { + return nil, nil, fmt.Errorf("default agent is not connected, please check if endpoint:[%v] is up and running", agent.Endpoint) } finalCtx, cancel := getFinalContext(ctx, "CreateTask", agent) @@ -141,17 +128,9 @@ func (p Plugin) Create(ctx context.Context, taskCtx webapi.TaskExecutionContextR func (p Plugin) Get(ctx context.Context, taskCtx webapi.GetContext) (latest webapi.Resource, err error) { metadata := taskCtx.ResourceMeta().(ResourceMetaWrapper) - agent := getFinalAgent(metadata.TaskType, p.cfg, p.agentRegistry) - if err != nil { - return nil, fmt.Errorf("failed to find agent with error: %v", err) - } - - client, err := p.getClient(ctx, agent, p.connectionCache) - if err != nil { - return nil, fmt.Errorf("failed to connect to agent with error: %v", err) - } + client := p.cs.agentClients[agent.Endpoint] finalCtx, cancel := getFinalContext(ctx, "GetTask", agent) defer cancel() @@ -174,18 +153,13 @@ func (p Plugin) Delete(ctx context.Context, taskCtx webapi.DeleteContext) error return nil } metadata := taskCtx.ResourceMeta().(ResourceMetaWrapper) - agent := getFinalAgent(metadata.TaskType, p.cfg, p.agentRegistry) - client, err := p.getClient(ctx, agent, p.connectionCache) - if err != nil { - return fmt.Errorf("failed to connect to agent with error: %v", err) - } - + client := p.cs.agentClients[agent.Endpoint] finalCtx, cancel := getFinalContext(ctx, "DeleteTask", agent) defer cancel() - _, err = client.DeleteTask(finalCtx, &admin.DeleteTaskRequest{TaskType: metadata.TaskType, ResourceMeta: metadata.AgentResourceMeta}) + _, err := client.DeleteTask(finalCtx, &admin.DeleteTaskRequest{TaskType: metadata.TaskType, ResourceMeta: metadata.AgentResourceMeta}) return err } @@ -271,71 +245,6 @@ func getFinalAgent(taskType string, cfg *Config, agentRegistry map[string]*Agent return &cfg.DefaultAgent } -func getGrpcConnection(ctx context.Context, agent *Agent, connectionCache map[*Agent]*grpc.ClientConn) (*grpc.ClientConn, error) { - conn, ok := connectionCache[agent] - if ok { - return conn, nil - } - var opts []grpc.DialOption - - if agent.Insecure { - opts = append(opts, grpc.WithTransportCredentials(insecure.NewCredentials())) - } else { - pool, err := x509.SystemCertPool() - if err != nil { - return nil, err - } - - creds := credentials.NewClientTLSFromCert(pool, "") - opts = append(opts, grpc.WithTransportCredentials(creds)) - } - - if len(agent.DefaultServiceConfig) != 0 { - opts = append(opts, grpc.WithDefaultServiceConfig(agent.DefaultServiceConfig)) - } - - var err error - conn, err = grpc.Dial(agent.Endpoint, opts...) - if err != nil { - return nil, err - } - connectionCache[agent] = conn - defer func() { - if err != nil { - if cerr := conn.Close(); cerr != nil { - grpclog.Infof("Failed to close conn to %s: %v", agent, cerr) - } - return - } - go func() { - <-ctx.Done() - if cerr := conn.Close(); cerr != nil { - grpclog.Infof("Failed to close conn to %s: %v", agent, cerr) - } - }() - }() - - return conn, nil -} - -func getClientFunc(ctx context.Context, agent *Agent, connectionCache map[*Agent]*grpc.ClientConn) (service.AsyncAgentServiceClient, error) { - conn, err := getGrpcConnection(ctx, agent, connectionCache) - if err != nil { - return nil, err - } - - return service.NewAsyncAgentServiceClient(conn), nil -} - -func getAgentMetadataClientFunc(ctx context.Context, agent *Agent, connectionCache map[*Agent]*grpc.ClientConn) (service.AgentMetadataServiceClient, error) { - conn, err := getGrpcConnection(ctx, agent, connectionCache) - if err != nil { - return nil, err - } - - return service.NewAgentMetadataServiceClient(conn), nil -} - func buildTaskExecutionMetadata(taskExecutionMetadata core.TaskExecutionMetadata) admin.TaskExecutionMetadata { taskExecutionID := taskExecutionMetadata.GetTaskExecutionID().GetID() return admin.TaskExecutionMetadata{ @@ -348,82 +257,19 @@ func buildTaskExecutionMetadata(taskExecutionMetadata core.TaskExecutionMetadata } } -func getFinalTimeout(operation string, agent *Agent) config.Duration { - if t, exists := agent.Timeouts[operation]; exists { - return t - } - - return agent.DefaultTimeout -} - -func getFinalContext(ctx context.Context, operation string, agent *Agent) (context.Context, context.CancelFunc) { - timeout := getFinalTimeout(operation, agent).Duration - if timeout == 0 { - return ctx, func() {} - } - - return context.WithTimeout(ctx, timeout) -} - -func initializeAgentRegistry(cfg *Config, connectionCache map[*Agent]*grpc.ClientConn, getAgentMetadataClientFunc GetAgentMetadataClientFunc) (map[string]*Agent, error) { - agentRegistry := make(map[string]*Agent) - var agentDeployments []*Agent - - // Ensure that the old configuration is backward compatible - for taskType, agentID := range cfg.AgentForTaskTypes { - agentRegistry[taskType] = cfg.Agents[agentID] - } - - if len(cfg.DefaultAgent.Endpoint) != 0 { - agentDeployments = append(agentDeployments, &cfg.DefaultAgent) - } - agentDeployments = append(agentDeployments, maps.Values(cfg.Agents)...) - for _, agentDeployment := range agentDeployments { - client, err := getAgentMetadataClientFunc(context.Background(), agentDeployment, connectionCache) - if err != nil { - return nil, fmt.Errorf("failed to connect to agent [%v] with error: [%v]", agentDeployment, err) - } - - finalCtx, cancel := getFinalContext(context.Background(), "ListAgents", agentDeployment) - defer cancel() - - res, err := client.ListAgents(finalCtx, &admin.ListAgentsRequest{}) - if err != nil { - grpcStatus, ok := status.FromError(err) - if grpcStatus.Code() == codes.Unimplemented { - // we should not panic here, as we want to continue to support old agent settings - logger.Infof(context.Background(), "list agent method not implemented for agent: [%v]", agentDeployment) - continue - } - - if !ok { - return nil, fmt.Errorf("failed to list agent: [%v] with a non-gRPC error: [%v]", agentDeployment, err) - } - - return nil, fmt.Errorf("failed to list agent: [%v] with error: [%v]", agentDeployment, err) - } - - agents := res.GetAgents() - for _, agent := range agents { - supportedTaskTypes := agent.SupportedTaskTypes - for _, supportedTaskType := range supportedTaskTypes { - agentRegistry[supportedTaskType] = agentDeployment - } - } - } - - return agentRegistry, nil -} - func newAgentPlugin() webapi.PluginEntry { - cfg := GetConfig() - connectionCache := make(map[*Agent]*grpc.ClientConn) - agentRegistry, err := initializeAgentRegistry(cfg, connectionCache, getAgentMetadataClientFunc) + cs, err := initializeClients(context.Background()) if err != nil { // We should wait for all agents to be up and running before starting the server - panic(err) + panic(fmt.Sprintf("failed to initialize clients with error: %v", err)) } + agentRegistry, err := initializeAgentRegistry(cs) + if err != nil { + panic(fmt.Sprintf("failed to initialize agent registry with error: %v", err)) + } + + cfg := GetConfig() supportedTaskTypes := append(maps.Keys(agentRegistry), cfg.SupportedTaskTypes...) logger.Infof(context.Background(), "Agent supports task types: %v", supportedTaskTypes) @@ -432,11 +278,10 @@ func newAgentPlugin() webapi.PluginEntry { SupportedTaskTypes: supportedTaskTypes, PluginLoader: func(ctx context.Context, iCtx webapi.PluginSetupContext) (webapi.AsyncPlugin, error) { return &Plugin{ - metricScope: iCtx.MetricsScope(), - cfg: cfg, - getClient: getClientFunc, - connectionCache: connectionCache, - agentRegistry: agentRegistry, + metricScope: iCtx.MetricsScope(), + cfg: cfg, + cs: cs, + agentRegistry: agentRegistry, }, nil }, } diff --git a/flyteplugins/go/tasks/plugins/webapi/agent/plugin_test.go b/flyteplugins/go/tasks/plugins/webapi/agent/plugin_test.go index d5b5fae5fe..e66f46f1bc 100644 --- a/flyteplugins/go/tasks/plugins/webapi/agent/plugin_test.go +++ b/flyteplugins/go/tasks/plugins/webapi/agent/plugin_test.go @@ -6,57 +6,22 @@ import ( "testing" "time" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/mock" - "golang.org/x/exp/maps" - "google.golang.org/grpc" - - "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" flyteIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" - "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery" pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core" pluginCoreMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks" - ioMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks" webapiPlugin "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/webapi/mocks" agentMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/webapi/agent/mocks" - "github.com/flyteorg/flyte/flyteplugins/tests" "github.com/flyteorg/flyte/flytestdlib/config" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyte/flytestdlib/storage" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/mock" + "golang.org/x/exp/maps" ) -func TestSyncTask(t *testing.T) { - tCtx := getTaskContext(t) - taskReader := new(pluginCoreMocks.TaskReader) - - template := flyteIdlCore.TaskTemplate{ - Type: "api_task", - } - - taskReader.On("Read", mock.Anything).Return(&template, nil) - - tCtx.OnTaskReader().Return(taskReader) - - agentPlugin := newMockSyncAgentPlugin() - pluginEntry := pluginmachinery.CreateRemotePlugin(agentPlugin) - plugin, err := pluginEntry.LoadPlugin(context.TODO(), newFakeSetupContext("create_task_sync_test")) - assert.NoError(t, err) - - inputs, err := coreutils.MakeLiteralMap(map[string]interface{}{"x": 1}) - assert.NoError(t, err) - basePrefix := storage.DataReference("fake://bucket/prefix/") - inputReader := &ioMocks.InputReader{} - inputReader.OnGetInputPrefixPath().Return(basePrefix) - inputReader.OnGetInputPath().Return(basePrefix + "/inputs.pb") - inputReader.OnGetMatch(mock.Anything).Return(inputs, nil) - tCtx.OnInputReader().Return(inputReader) - - phase := tests.RunPluginEndToEndTest(t, plugin, &template, inputs, nil, nil, nil) - assert.Equal(t, true, phase.Phase().IsSuccess()) -} +const defaultAgentEndpoint = "localhost:8000" func TestPlugin(t *testing.T) { fakeSetupContext := pluginCoreMocks.SetupContext{} @@ -102,39 +67,6 @@ func TestPlugin(t *testing.T) { assert.Equal(t, agent.Endpoint, cfg.DefaultAgent.Endpoint) }) - t.Run("test getAgentMetadataClientFunc", func(t *testing.T) { - client, err := getAgentMetadataClientFunc(context.Background(), &Agent{Endpoint: "localhost:80"}, map[*Agent]*grpc.ClientConn{}) - assert.NoError(t, err) - assert.NotNil(t, client) - }) - - t.Run("test getClientFunc", func(t *testing.T) { - client, err := getClientFunc(context.Background(), &Agent{Endpoint: "localhost:80"}, map[*Agent]*grpc.ClientConn{}) - assert.NoError(t, err) - assert.NotNil(t, client) - }) - - t.Run("test getClientFunc more config", func(t *testing.T) { - client, err := getClientFunc(context.Background(), &Agent{Endpoint: "localhost:80", Insecure: true, DefaultServiceConfig: "{\"loadBalancingConfig\": [{\"round_robin\":{}}]}"}, map[*Agent]*grpc.ClientConn{}) - assert.NoError(t, err) - assert.NotNil(t, client) - }) - - t.Run("test getClientFunc cache hit", func(t *testing.T) { - connectionCache := make(map[*Agent]*grpc.ClientConn) - agent := &Agent{Endpoint: "localhost:80", Insecure: true, DefaultServiceConfig: "{\"loadBalancingConfig\": [{\"round_robin\":{}}]}"} - - client, err := getClientFunc(context.Background(), agent, connectionCache) - assert.NoError(t, err) - assert.NotNil(t, client) - assert.NotNil(t, client, connectionCache[agent]) - - cachedClient, err := getClientFunc(context.Background(), agent, connectionCache) - assert.NoError(t, err) - assert.NotNil(t, cachedClient) - assert.Equal(t, client, cachedClient) - }) - t.Run("test getFinalTimeout", func(t *testing.T) { timeout := getFinalTimeout("CreateTask", &Agent{Endpoint: "localhost:8080", Timeouts: map[string]config.Duration{"CreateTask": {Duration: 1 * time.Millisecond}}}) assert.Equal(t, 1*time.Millisecond, timeout.Duration) @@ -334,8 +266,8 @@ func TestPlugin(t *testing.T) { }) } -func TestInitializeAgentRegistry(t *testing.T) { - mockClient := new(agentMocks.AgentMetadataServiceClient) +func getMockMetadataServiceClient() *agentMocks.AgentMetadataServiceClient { + mockMetadataServiceClient := new(agentMocks.AgentMetadataServiceClient) mockRequest := &admin.ListAgentsRequest{} mockResponse := &admin.ListAgentsResponse{ Agents: []*admin.Agent{ @@ -346,16 +278,27 @@ func TestInitializeAgentRegistry(t *testing.T) { }, } - mockClient.On("ListAgents", mock.Anything, mockRequest).Return(mockResponse, nil) - getAgentMetadataClientFunc := func(ctx context.Context, agent *Agent, connCache map[*Agent]*grpc.ClientConn) (service.AgentMetadataServiceClient, error) { - return mockClient, nil + mockMetadataServiceClient.On("ListAgents", mock.Anything, mockRequest).Return(mockResponse, nil) + return mockMetadataServiceClient +} + +func TestInitializeAgentRegistry(t *testing.T) { + agentClients := make(map[string]service.AsyncAgentServiceClient) + agentMetadataClients := make(map[string]service.AgentMetadataServiceClient) + agentClients[defaultAgentEndpoint] = &agentMocks.AsyncAgentServiceClient{} + agentMetadataClients[defaultAgentEndpoint] = getMockMetadataServiceClient() + + cs := &ClientSet{ + agentClients: agentClients, + agentMetadataClients: agentMetadataClients, } cfg := defaultConfig - cfg.Agents = map[string]*Agent{"custom_agent": {Endpoint: "localhost:80"}} + cfg.Agents = map[string]*Agent{"custom_agent": {Endpoint: defaultAgentEndpoint}} cfg.AgentForTaskTypes = map[string]string{"task1": "agent-deployment-1", "task2": "agent-deployment-2"} - connectionCache := make(map[*Agent]*grpc.ClientConn) - agentRegistry, err := initializeAgentRegistry(&cfg, connectionCache, getAgentMetadataClientFunc) + err := SetConfig(&cfg) + assert.NoError(t, err) + agentRegistry, err := initializeAgentRegistry(cs) assert.NoError(t, err) // In golang, the order of keys in a map is random. So, we sort the keys before asserting. From 27948942d46f3f07ba6e7ea082e955f6da2e3ad5 Mon Sep 17 00:00:00 2001 From: Yicheng-Lu-llll <51814063+Yicheng-Lu-llll@users.noreply.github.com> Date: Wed, 31 Jan 2024 14:35:35 -0600 Subject: [PATCH 12/13] Support kuberay v1.0.0 (#4656) * support-kuberay-v1.0.0 Signed-off-by: Yicheng-Lu-llll * nit Signed-off-by: Yicheng-Lu-llll * nit Signed-off-by: Yicheng-Lu-llll * fix test Signed-off-by: Yicheng-Lu-llll --------- Signed-off-by: Yicheng-Lu-llll --- flyteadmin/go.mod | 2 +- flyteadmin/go.sum | 4 +-- flyteplugins/go.mod | 14 +++++----- flyteplugins/go.sum | 26 +++++++++---------- flyteplugins/go/tasks/plugins/k8s/ray/ray.go | 12 ++++----- .../go/tasks/plugins/k8s/ray/ray_test.go | 4 ++- flytepropeller/go.mod | 12 ++++----- flytepropeller/go.sum | 24 ++++++++--------- go.mod | 4 +-- go.sum | 8 +++--- 10 files changed, 56 insertions(+), 54 deletions(-) diff --git a/flyteadmin/go.mod b/flyteadmin/go.mod index 2389a5bcd7..e6e770f8c2 100644 --- a/flyteadmin/go.mod +++ b/flyteadmin/go.mod @@ -159,7 +159,7 @@ require ( github.com/prometheus/procfs v0.10.1 // indirect github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect github.com/sendgrid/rest v2.6.8+incompatible // indirect - github.com/sirupsen/logrus v1.9.2 // indirect + github.com/sirupsen/logrus v1.9.3 // indirect github.com/spf13/afero v1.9.2 // indirect github.com/spf13/cast v1.4.1 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect diff --git a/flyteadmin/go.sum b/flyteadmin/go.sum index 0a35d9e7f7..7280df0570 100644 --- a/flyteadmin/go.sum +++ b/flyteadmin/go.sum @@ -1196,8 +1196,8 @@ github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMB github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.5.0/go.mod h1:+F7Ogzej0PZc/94MaYx/nvG9jOFMD2osvC3s+Squfpo= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.9.2 h1:oxx1eChJGI6Uks2ZC4W1zpLlVgqB8ner4EuQwV4Ik1Y= -github.com/sirupsen/logrus v1.9.2/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= +github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a/go.mod h1:XDJAKZRPZ1CvBcN2aX5YOUTYGHki24fSF0Iv48Ibg0s= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= diff --git a/flyteplugins/go.mod b/flyteplugins/go.mod index 4992ae6072..f05f87e219 100644 --- a/flyteplugins/go.mod +++ b/flyteplugins/go.mod @@ -22,10 +22,11 @@ require ( github.com/mitchellh/mapstructure v1.5.0 github.com/pkg/errors v0.9.1 github.com/prometheus/client_golang v1.16.0 - github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c + github.com/ray-project/kuberay/ray-operator v1.0.0 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.8.4 - golang.org/x/net v0.15.0 + golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e + golang.org/x/net v0.17.0 golang.org/x/oauth2 v0.8.0 google.golang.org/api v0.114.0 google.golang.org/grpc v1.56.1 @@ -102,7 +103,7 @@ require ( github.com/prometheus/client_model v0.4.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.10.1 // indirect - github.com/sirupsen/logrus v1.8.1 // indirect + github.com/sirupsen/logrus v1.9.3 // indirect github.com/spf13/afero v1.9.2 // indirect github.com/spf13/cast v1.4.1 // indirect github.com/spf13/cobra v1.7.0 // indirect @@ -117,10 +118,9 @@ require ( go.opentelemetry.io/otel/metric v1.19.0 // indirect go.opentelemetry.io/otel/sdk v1.19.0 // indirect go.opentelemetry.io/otel/trace v1.19.0 // indirect - golang.org/x/crypto v0.13.0 // indirect - golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect - golang.org/x/sys v0.12.0 // indirect - golang.org/x/term v0.12.0 // indirect + golang.org/x/crypto v0.14.0 // indirect + golang.org/x/sys v0.13.0 // indirect + golang.org/x/term v0.13.0 // indirect golang.org/x/text v0.13.0 // indirect golang.org/x/time v0.3.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect diff --git a/flyteplugins/go.sum b/flyteplugins/go.sum index 6cd1d9bf49..7b6b73bd79 100644 --- a/flyteplugins/go.sum +++ b/flyteplugins/go.sum @@ -331,15 +331,15 @@ github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdO github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY= github.com/prometheus/procfs v0.10.1 h1:kYK1Va/YMlutzCGazswoHKo//tZVlFpKYh+PymziUAg= github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM= -github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c h1:eEqXhtlsUVt798HNUEbdQsMRZSjHSOF5Ilsywuhlgfc= -github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c/go.mod h1:uLBlYqsCS2nsKiVlxJxI5EVgq8CrqNeHDP5uq3hde+c= +github.com/ray-project/kuberay/ray-operator v1.0.0 h1:i69nvbV7az2FG41VHQgxrmhD+SUl8ca+ek4RPbSE2Q0= +github.com/ray-project/kuberay/ray-operator v1.0.0/go.mod h1:7C7ebIkxtkmOX8w1iiLrKM1j4hkZs/Guzm3WdePk/yg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE= -github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= +github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= +github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72 h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= @@ -405,8 +405,8 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck= -golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= +golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc= +golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -477,8 +477,8 @@ golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8= -golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= +golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM= +golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -510,7 +510,6 @@ golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -540,13 +539,14 @@ golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= -golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= +golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.12.0 h1:/ZfYdc3zq+q02Rv9vGqTeSItdzZTSNDmfTi0mBAuidU= -golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= +golang.org/x/term v0.13.0 h1:bb+I9cTfFazGW51MZqBVmZy7+JEJMouUHTUSKVQLBek= +golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= diff --git a/flyteplugins/go/tasks/plugins/k8s/ray/ray.go b/flyteplugins/go/tasks/plugins/k8s/ray/ray.go index 3f8d678ef5..6b2af127df 100644 --- a/flyteplugins/go/tasks/plugins/k8s/ray/ray.go +++ b/flyteplugins/go/tasks/plugins/k8s/ray/ray.go @@ -191,7 +191,7 @@ func (rayJobResourceHandler) BuildResource(ctx context.Context, taskCtx pluginsC } jobSpec := rayv1alpha1.RayJobSpec{ - RayClusterSpec: rayClusterSpec, + RayClusterSpec: &rayClusterSpec, Entrypoint: strings.Join(primaryContainer.Args, " "), ShutdownAfterJobFinishes: shutdownAfterJobFinishes, TTLSecondsAfterFinished: ttlSecondsAfterFinished, @@ -524,7 +524,9 @@ func (plugin rayJobResourceHandler) GetTaskPhase(ctx context.Context, pluginCont case rayv1alpha1.JobDeploymentStatusFailedJobDeploy: reason := fmt.Sprintf("Failed to submit Ray job %s with error: %s", rayJob.Name, rayJob.Status.Message) return pluginsCore.PhaseInfoFailure(flyteerr.TaskFailedWithError, reason, info), nil - case rayv1alpha1.JobDeploymentStatusWaitForDashboard, rayv1alpha1.JobDeploymentStatusFailedToGetJobStatus: + // JobDeploymentStatusSuspended is used when the suspend flag is set in rayJob. The suspend flag allows the temporary suspension of a Job's execution, which can be resumed later. + // Certain versions of KubeRay use a K8s job to submit a Ray job to the Ray cluster. JobDeploymentStatusWaitForK8sJob indicates that the K8s job is under creation. + case rayv1alpha1.JobDeploymentStatusWaitForDashboard, rayv1alpha1.JobDeploymentStatusFailedToGetJobStatus, rayv1alpha1.JobDeploymentStatusWaitForDashboardReady, rayv1alpha1.JobDeploymentStatusWaitForK8sJob, rayv1alpha1.JobDeploymentStatusSuspended: return pluginsCore.PhaseInfoRunning(pluginsCore.DefaultPhaseVersion, info), nil case rayv1alpha1.JobDeploymentStatusRunning, rayv1alpha1.JobDeploymentStatusComplete: switch rayJob.Status.JobStatus { @@ -533,7 +535,8 @@ func (plugin rayJobResourceHandler) GetTaskPhase(ctx context.Context, pluginCont return pluginsCore.PhaseInfoFailure(flyteerr.TaskFailedWithError, reason, info), nil case rayv1alpha1.JobStatusSucceeded: return pluginsCore.PhaseInfoSuccess(info), nil - case rayv1alpha1.JobStatusPending: + // JobStatusStopped can occur when the suspend flag is set in rayJob. + case rayv1alpha1.JobStatusPending, rayv1alpha1.JobStatusStopped: return pluginsCore.PhaseInfoRunning(pluginsCore.DefaultPhaseVersion, info), nil case rayv1alpha1.JobStatusRunning: phaseInfo := pluginsCore.PhaseInfoRunning(pluginsCore.DefaultPhaseVersion, info) @@ -541,9 +544,6 @@ func (plugin rayJobResourceHandler) GetTaskPhase(ctx context.Context, pluginCont phaseInfo = phaseInfo.WithVersion(pluginsCore.DefaultPhaseVersion + 1) } return phaseInfo, nil - case rayv1alpha1.JobStatusStopped: - // There is no current usage of this job status in KubeRay. It's unclear what it represents - fallthrough default: // We already handle all known job status, so this should never happen unless a future version of ray // introduced a new job status. diff --git a/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go b/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go index beab938768..f4d802ff9a 100644 --- a/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go +++ b/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go @@ -676,6 +676,8 @@ func TestGetTaskPhase(t *testing.T) { {"", rayv1alpha1.JobDeploymentStatusInitializing, pluginsCore.PhaseInitializing, false}, {rayv1alpha1.JobStatusPending, rayv1alpha1.JobDeploymentStatusFailedToGetOrCreateRayCluster, pluginsCore.PhasePermanentFailure, false}, {rayv1alpha1.JobStatusPending, rayv1alpha1.JobDeploymentStatusWaitForDashboard, pluginsCore.PhaseRunning, false}, + {rayv1alpha1.JobStatusPending, rayv1alpha1.JobDeploymentStatusWaitForDashboardReady, pluginsCore.PhaseRunning, false}, + {rayv1alpha1.JobStatusPending, rayv1alpha1.JobDeploymentStatusWaitForK8sJob, pluginsCore.PhaseRunning, false}, {rayv1alpha1.JobStatusPending, rayv1alpha1.JobDeploymentStatusFailedJobDeploy, pluginsCore.PhasePermanentFailure, false}, {rayv1alpha1.JobStatusPending, rayv1alpha1.JobDeploymentStatusRunning, pluginsCore.PhaseRunning, false}, {rayv1alpha1.JobStatusPending, rayv1alpha1.JobDeploymentStatusFailedToGetJobStatus, pluginsCore.PhaseRunning, false}, @@ -683,7 +685,7 @@ func TestGetTaskPhase(t *testing.T) { {rayv1alpha1.JobStatusFailed, rayv1alpha1.JobDeploymentStatusRunning, pluginsCore.PhasePermanentFailure, false}, {rayv1alpha1.JobStatusSucceeded, rayv1alpha1.JobDeploymentStatusRunning, pluginsCore.PhaseSuccess, false}, {rayv1alpha1.JobStatusSucceeded, rayv1alpha1.JobDeploymentStatusComplete, pluginsCore.PhaseSuccess, false}, - {rayv1alpha1.JobStatusStopped, rayv1alpha1.JobDeploymentStatusComplete, pluginsCore.PhaseUndefined, true}, + {rayv1alpha1.JobStatusStopped, rayv1alpha1.JobDeploymentStatusSuspended, pluginsCore.PhaseRunning, false}, } for _, tc := range testCases { diff --git a/flytepropeller/go.mod b/flytepropeller/go.mod index 83f5c60055..66ef27dc5d 100644 --- a/flytepropeller/go.mod +++ b/flytepropeller/go.mod @@ -21,7 +21,7 @@ require ( github.com/mitchellh/mapstructure v1.5.0 github.com/pkg/errors v0.9.1 github.com/prometheus/client_golang v1.16.0 - github.com/sirupsen/logrus v1.9.0 + github.com/sirupsen/logrus v1.9.3 github.com/spf13/cobra v1.7.0 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.8.4 @@ -112,7 +112,7 @@ require ( github.com/prometheus/client_model v0.4.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.10.1 // indirect - github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c // indirect + github.com/ray-project/kuberay/ray-operator v1.0.0 // indirect github.com/spf13/afero v1.9.2 // indirect github.com/spf13/cast v1.4.1 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect @@ -124,11 +124,11 @@ require ( go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.19.0 // indirect go.opentelemetry.io/otel/metric v1.19.0 // indirect go.opentelemetry.io/otel/sdk v1.19.0 // indirect - golang.org/x/crypto v0.13.0 // indirect - golang.org/x/net v0.15.0 // indirect + golang.org/x/crypto v0.14.0 // indirect + golang.org/x/net v0.17.0 // indirect golang.org/x/oauth2 v0.8.0 // indirect - golang.org/x/sys v0.12.0 // indirect - golang.org/x/term v0.12.0 // indirect + golang.org/x/sys v0.13.0 // indirect + golang.org/x/term v0.13.0 // indirect golang.org/x/text v0.13.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect diff --git a/flytepropeller/go.sum b/flytepropeller/go.sum index ad11190315..2e91bbfcb7 100644 --- a/flytepropeller/go.sum +++ b/flytepropeller/go.sum @@ -356,16 +356,16 @@ github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdO github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY= github.com/prometheus/procfs v0.10.1 h1:kYK1Va/YMlutzCGazswoHKo//tZVlFpKYh+PymziUAg= github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM= -github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c h1:eEqXhtlsUVt798HNUEbdQsMRZSjHSOF5Ilsywuhlgfc= -github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c/go.mod h1:uLBlYqsCS2nsKiVlxJxI5EVgq8CrqNeHDP5uq3hde+c= +github.com/ray-project/kuberay/ray-operator v1.0.0 h1:i69nvbV7az2FG41VHQgxrmhD+SUl8ca+ek4RPbSE2Q0= +github.com/ray-project/kuberay/ray-operator v1.0.0/go.mod h1:7C7ebIkxtkmOX8w1iiLrKM1j4hkZs/Guzm3WdePk/yg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= -github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= +github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72 h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= @@ -439,8 +439,8 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck= -golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= +golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc= +golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -509,8 +509,8 @@ golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8= -golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= +golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM= +golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -577,12 +577,12 @@ golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= -golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= +golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.12.0 h1:/ZfYdc3zq+q02Rv9vGqTeSItdzZTSNDmfTi0mBAuidU= -golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= +golang.org/x/term v0.13.0 h1:bb+I9cTfFazGW51MZqBVmZy7+JEJMouUHTUSKVQLBek= +golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= diff --git a/go.mod b/go.mod index 9630132fd8..02ecdacbb8 100644 --- a/go.mod +++ b/go.mod @@ -157,12 +157,12 @@ require ( github.com/prometheus/client_model v0.4.0 // indirect github.com/prometheus/common v0.44.0 // indirect github.com/prometheus/procfs v0.10.1 // indirect - github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c // indirect + github.com/ray-project/kuberay/ray-operator v1.0.0 // indirect github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect github.com/robfig/cron/v3 v3.0.0 // indirect github.com/sendgrid/rest v2.6.8+incompatible // indirect github.com/sendgrid/sendgrid-go v3.10.0+incompatible // indirect - github.com/sirupsen/logrus v1.9.2 // indirect + github.com/sirupsen/logrus v1.9.3 // indirect github.com/spf13/afero v1.9.2 // indirect github.com/spf13/cast v1.4.1 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect diff --git a/go.sum b/go.sum index 585e45ec4b..24fb43cff6 100644 --- a/go.sum +++ b/go.sum @@ -1170,8 +1170,8 @@ github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDa github.com/prometheus/procfs v0.10.1 h1:kYK1Va/YMlutzCGazswoHKo//tZVlFpKYh+PymziUAg= github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= -github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c h1:eEqXhtlsUVt798HNUEbdQsMRZSjHSOF5Ilsywuhlgfc= -github.com/ray-project/kuberay/ray-operator v0.0.0-20220728052838-eaa75fa6707c/go.mod h1:uLBlYqsCS2nsKiVlxJxI5EVgq8CrqNeHDP5uq3hde+c= +github.com/ray-project/kuberay/ray-operator v1.0.0 h1:i69nvbV7az2FG41VHQgxrmhD+SUl8ca+ek4RPbSE2Q0= +github.com/ray-project/kuberay/ray-operator v1.0.0/go.mod h1:7C7ebIkxtkmOX8w1iiLrKM1j4hkZs/Guzm3WdePk/yg= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 h1:MkV+77GLUNo5oJ0jf870itWm3D0Sjh7+Za9gazKc5LQ= @@ -1234,8 +1234,8 @@ github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMB github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.5.0/go.mod h1:+F7Ogzej0PZc/94MaYx/nvG9jOFMD2osvC3s+Squfpo= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.9.2 h1:oxx1eChJGI6Uks2ZC4W1zpLlVgqB8ner4EuQwV4Ik1Y= -github.com/sirupsen/logrus v1.9.2/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= +github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a/go.mod h1:XDJAKZRPZ1CvBcN2aX5YOUTYGHki24fSF0Iv48Ibg0s= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= From 5d24d23ab6c70f6d1ec3a5d8dc3ba5ea4edf7f5b Mon Sep 17 00:00:00 2001 From: Flyte Bot Date: Wed, 31 Jan 2024 15:36:13 -0800 Subject: [PATCH 13/13] Update Flyte components (#4803) Signed-off-by: Flyte-Bot --- .github/workflows/tests.yml | 1 + CHANGELOG/CHANGELOG-v1.10.7-b3.md | 3 + charts/flyte-binary/README.md | 2 +- charts/flyte-binary/values.yaml | 2 +- charts/flyte-core/README.md | 12 +-- charts/flyte-core/values.yaml | 10 +- charts/flyte/README.md | 16 ++-- charts/flyte/values.yaml | 10 +- .../flyte_aws_scheduler_helm_generated.yaml | 30 +++--- deployment/eks/flyte_generated.yaml | 22 ++--- .../flyte_helm_controlplane_generated.yaml | 20 ++-- .../eks/flyte_helm_dataplane_generated.yaml | 14 +-- deployment/eks/flyte_helm_generated.yaml | 34 +++---- .../flyte_helm_controlplane_generated.yaml | 20 ++-- .../gcp/flyte_helm_dataplane_generated.yaml | 14 +-- deployment/gcp/flyte_helm_generated.yaml | 34 +++---- .../flyte_sandbox_binary_helm_generated.yaml | 4 +- deployment/sandbox/flyte_helm_generated.yaml | 34 +++---- .../manifests/complete-agent.yaml | 8 +- .../sandbox-bundled/manifests/complete.yaml | 8 +- docker/sandbox-bundled/manifests/dev.yaml | 4 +- docs/conf.py | 2 +- .../generated/flyteadmin_config.rst | 12 --- .../generated/flytepropeller_config.rst | 92 +++++-------------- .../generated/scheduler_config.rst | 12 --- .../flyte/golang_support_tools/tools.go | 2 + .../golang_test_targets/download_tooling.sh | 1 + .../flyte/golang_test_targets/goimports | 1 + kustomize/overlays/eks/kustomization.yaml | 8 +- 29 files changed, 184 insertions(+), 248 deletions(-) create mode 100644 CHANGELOG/CHANGELOG-v1.10.7-b3.md diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bc40027df3..aea9e0fabb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,6 +40,7 @@ jobs: - shell: bash -el {0} run: | conda activate monodocs-env + pip install -e ./flyteidl conda info conda list conda config --show-sources diff --git a/CHANGELOG/CHANGELOG-v1.10.7-b3.md b/CHANGELOG/CHANGELOG-v1.10.7-b3.md new file mode 100644 index 0000000000..78517f5c24 --- /dev/null +++ b/CHANGELOG/CHANGELOG-v1.10.7-b3.md @@ -0,0 +1,3 @@ +# Flyte v1.10.7-b3 Release + +Pre-release testing. diff --git a/charts/flyte-binary/README.md b/charts/flyte-binary/README.md index db31ef5a42..5c64a01ad1 100644 --- a/charts/flyte-binary/README.md +++ b/charts/flyte-binary/README.md @@ -42,7 +42,7 @@ Chart for basic single Flyte executable deployment | configuration.auth.oidc.clientId | string | `""` | | | configuration.auth.oidc.clientSecret | string | `""` | | | configuration.co-pilot.image.repository | string | `"cr.flyte.org/flyteorg/flytecopilot"` | | -| configuration.co-pilot.image.tag | string | `"v1.10.7-b2"` | | +| configuration.co-pilot.image.tag | string | `"v1.10.7-b3"` | | | configuration.database.dbname | string | `"flyte"` | | | configuration.database.host | string | `"127.0.0.1"` | | | configuration.database.options | string | `"sslmode=disable"` | | diff --git a/charts/flyte-binary/values.yaml b/charts/flyte-binary/values.yaml index 070bd4f82a..3b0186f8a5 100644 --- a/charts/flyte-binary/values.yaml +++ b/charts/flyte-binary/values.yaml @@ -159,7 +159,7 @@ configuration: # repository CoPilot sidecar image repository repository: cr.flyte.org/flyteorg/flytecopilot # FLYTECOPILOT_IMAGE # tag CoPilot sidecar image tag - tag: v1.10.7-b2 # FLYTECOPILOT_TAG + tag: v1.10.7-b3 # FLYTECOPILOT_TAG # agentService Flyte Agent configuration agentService: defaultAgent: diff --git a/charts/flyte-core/README.md b/charts/flyte-core/README.md index 5ccb9f60f0..566a30ce54 100644 --- a/charts/flyte-core/README.md +++ b/charts/flyte-core/README.md @@ -92,8 +92,8 @@ helm install gateway bitnami/contour -n flyte | configmap.clusters.clusterConfigs | list | `[]` | | | configmap.clusters.labelClusterMap | object | `{}` | | | configmap.console | object | `{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"}` | Configuration for Flyte console UI | -| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration | -| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) | +| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration | +| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) | | configmap.core | object | `{"manager":{"pod-application":"flytepropeller","pod-template-container-name":"flytepropeller","pod-template-name":"flytepropeller-template"},"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}}` | Core propeller configuration | | configmap.core.manager | object | `{"pod-application":"flytepropeller","pod-template-container-name":"flytepropeller","pod-template-name":"flytepropeller-template"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/manager/config#Config). | | configmap.core.propeller | object | `{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/config). | @@ -127,7 +127,7 @@ helm install gateway bitnami/contour -n flyte | datacatalog.extraArgs | object | `{}` | Appends extra command line arguments to the main command | | datacatalog.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | datacatalog.image.repository | string | `"cr.flyte.org/flyteorg/datacatalog"` | Docker image for Datacatalog deployment | -| datacatalog.image.tag | string | `"v1.10.7-b2"` | Docker image tag | +| datacatalog.image.tag | string | `"v1.10.7-b3"` | Docker image tag | | datacatalog.nodeSelector | object | `{}` | nodeSelector for Datacatalog deployment | | datacatalog.podAnnotations | object | `{}` | Annotations for Datacatalog pods | | datacatalog.podEnv | object | `{}` | Additional Datacatalog container environment variables | @@ -161,7 +161,7 @@ helm install gateway bitnami/contour -n flyte | flyteadmin.extraArgs | object | `{}` | Appends extra command line arguments to the serve command | | flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | | | flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment | -| flyteadmin.image.tag | string | `"v1.10.7-b2"` | | +| flyteadmin.image.tag | string | `"v1.10.7-b3"` | | | flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create | | flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment | | flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods | @@ -216,7 +216,7 @@ helm install gateway bitnami/contour -n flyte | flytepropeller.extraArgs | object | `{}` | Appends extra command line arguments to the main command | | flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | | | flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment | -| flytepropeller.image.tag | string | `"v1.10.7-b2"` | | +| flytepropeller.image.tag | string | `"v1.10.7-b3"` | | | flytepropeller.manager | bool | `false` | | | flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment | | flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods | @@ -245,7 +245,7 @@ helm install gateway bitnami/contour -n flyte | flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment | -| flytescheduler.image.tag | string | `"v1.10.7-b2"` | Docker image tag | +| flytescheduler.image.tag | string | `"v1.10.7-b3"` | Docker image tag | | flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment | | flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods | | flytescheduler.podEnv | object | `{}` | Additional Flytescheduler container environment variables | diff --git a/charts/flyte-core/values.yaml b/charts/flyte-core/values.yaml index 36a9b22e5e..28b8b48e7d 100755 --- a/charts/flyte-core/values.yaml +++ b/charts/flyte-core/values.yaml @@ -16,7 +16,7 @@ flyteadmin: image: # -- Docker image for Flyteadmin deployment repository: cr.flyte.org/flyteorg/flyteadmin # FLYTEADMIN_IMAGE - tag: v1.10.7-b2 # FLYTEADMIN_TAG + tag: v1.10.7-b3 # FLYTEADMIN_TAG pullPolicy: IfNotPresent # -- Additional flyteadmin container environment variables # @@ -134,7 +134,7 @@ flytescheduler: # -- Docker image for Flytescheduler deployment repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE # -- Docker image tag - tag: v1.10.7-b2 # FLYTESCHEDULER_TAG + tag: v1.10.7-b3 # FLYTESCHEDULER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytescheduler deployment @@ -192,7 +192,7 @@ datacatalog: # -- Docker image for Datacatalog deployment repository: cr.flyte.org/flyteorg/datacatalog # DATACATALOG_IMAGE # -- Docker image tag - tag: v1.10.7-b2 # DATACATALOG_TAG + tag: v1.10.7-b3 # DATACATALOG_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Datacatalog deployment @@ -264,7 +264,7 @@ flytepropeller: image: # -- Docker image for Flytepropeller deployment repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE - tag: v1.10.7-b2 # FLYTEPROPELLER_TAG + tag: v1.10.7-b3 # FLYTEPROPELLER_TAG pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytepropeller deployment resources: @@ -671,7 +671,7 @@ configmap: # -- Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) co-pilot: name: flyte-copilot- - image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2 # FLYTECOPILOT_IMAGE + image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3 # FLYTECOPILOT_IMAGE start-timeout: 30s # -- Core propeller configuration diff --git a/charts/flyte/README.md b/charts/flyte/README.md index cf9b247998..65735ae072 100644 --- a/charts/flyte/README.md +++ b/charts/flyte/README.md @@ -71,7 +71,7 @@ helm upgrade -f values-sandbox.yaml flyte . | contour.tolerations | list | `[]` | tolerations for Contour deployment | | daskoperator | object | `{"enabled":false}` | Optional: Dask Plugin using the Dask Operator | | daskoperator.enabled | bool | `false` | - enable or disable the dask operator deployment installation | -| flyte | object | `{"cluster_resource_manager":{"config":{"cluster_resources":{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}},"enabled":true,"service_account_name":"flyteadmin","templates":[{"key":"aa_namespace","value":"apiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ namespace }}\nspec:\n finalizers:\n - kubernetes\n"},{"key":"ab_project_resource_quota","value":"apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }}\nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }}\n limits.memory: {{ projectQuotaMemory }}\n"}]},"common":{"databaseSecret":{"name":"","secretManifest":{}},"flyteNamespaceTemplate":{"enabled":false},"ingress":{"albSSLRedirect":false,"annotations":{"nginx.ingress.kubernetes.io/app-root":"/console"},"enabled":true,"host":"","separateGrpcIngress":false,"separateGrpcIngressAnnotations":{"nginx.ingress.kubernetes.io/backend-protocol":"GRPC"},"tls":{"enabled":false},"webpackHMR":true}},"configmap":{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}}},"k8s":{"plugins":{"agent-service":{"defaultAgent":{"endpoint":"dns:///flyteagent.flyte.svc.cluster.local:8000","insecure":true},"supportedTaskTypes":["bigquery_query_job_task"]},"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}},"datacatalog":{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v1.10.7-b2"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"NodePort"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"db":{"admin":{"database":{"dbname":"flyteadmin","host":"postgres","port":5432,"username":"postgres"}},"datacatalog":{"database":{"dbname":"datacatalog","host":"postgres","port":5432,"username":"postgres"}}},"deployRedoc":true,"flyteadmin":{"additionalVolumeMounts":[],"additionalVolumes":[],"affinity":{},"configPath":"/etc/flyte/config/*.yaml","env":[],"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteadmin","tag":"v1.10.7-b2"},"initialProjects":["flytesnacks","flytetester","flyteexamples"],"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"loadBalancerSourceRanges":[],"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flyteconsole":{"affinity":{},"ga":{"enabled":true,"tracking_id":"G-0QW4DJWJ20"},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v1.10.2"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"275Mi"},"requests":{"cpu":"10m","memory":"250Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]},"flytepropeller":{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v1.10.7-b2"},"manager":false,"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"200m","ephemeral-storage":"100Mi","memory":"200Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flytescheduler":{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v1.10.7-b2"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"storage":{"bucketName":"my-s3-bucket","custom":{},"gcs":null,"s3":{"region":"us-east-1"},"type":"sandbox"},"webhook":{"enabled":true,"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]}},"workflow_notifications":{"config":{},"enabled":false},"workflow_scheduler":{"enabled":true,"type":"native"}}` | ------------------------------------------------------------------- Core System settings This section consists of Core components of Flyte and their deployment settings. This includes FlyteAdmin service, Datacatalog, FlytePropeller and Flyteconsole | +| flyte | object | `{"cluster_resource_manager":{"config":{"cluster_resources":{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}},"enabled":true,"service_account_name":"flyteadmin","templates":[{"key":"aa_namespace","value":"apiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ namespace }}\nspec:\n finalizers:\n - kubernetes\n"},{"key":"ab_project_resource_quota","value":"apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }}\nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }}\n limits.memory: {{ projectQuotaMemory }}\n"}]},"common":{"databaseSecret":{"name":"","secretManifest":{}},"flyteNamespaceTemplate":{"enabled":false},"ingress":{"albSSLRedirect":false,"annotations":{"nginx.ingress.kubernetes.io/app-root":"/console"},"enabled":true,"host":"","separateGrpcIngress":false,"separateGrpcIngressAnnotations":{"nginx.ingress.kubernetes.io/backend-protocol":"GRPC"},"tls":{"enabled":false},"webpackHMR":true}},"configmap":{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}}},"k8s":{"plugins":{"agent-service":{"defaultAgent":{"endpoint":"dns:///flyteagent.flyte.svc.cluster.local:8000","insecure":true},"supportedTaskTypes":["bigquery_query_job_task"]},"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}},"datacatalog":{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v1.10.7-b3"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"NodePort"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"db":{"admin":{"database":{"dbname":"flyteadmin","host":"postgres","port":5432,"username":"postgres"}},"datacatalog":{"database":{"dbname":"datacatalog","host":"postgres","port":5432,"username":"postgres"}}},"deployRedoc":true,"flyteadmin":{"additionalVolumeMounts":[],"additionalVolumes":[],"affinity":{},"configPath":"/etc/flyte/config/*.yaml","env":[],"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteadmin","tag":"v1.10.7-b3"},"initialProjects":["flytesnacks","flytetester","flyteexamples"],"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"loadBalancerSourceRanges":[],"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flyteconsole":{"affinity":{},"ga":{"enabled":true,"tracking_id":"G-0QW4DJWJ20"},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v1.10.2"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"275Mi"},"requests":{"cpu":"10m","memory":"250Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]},"flytepropeller":{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v1.10.7-b3"},"manager":false,"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"200m","ephemeral-storage":"100Mi","memory":"200Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flytescheduler":{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v1.10.7-b3"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"storage":{"bucketName":"my-s3-bucket","custom":{},"gcs":null,"s3":{"region":"us-east-1"},"type":"sandbox"},"webhook":{"enabled":true,"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]}},"workflow_notifications":{"config":{},"enabled":false},"workflow_scheduler":{"enabled":true,"type":"native"}}` | ------------------------------------------------------------------- Core System settings This section consists of Core components of Flyte and their deployment settings. This includes FlyteAdmin service, Datacatalog, FlytePropeller and Flyteconsole | | flyte.cluster_resource_manager | object | `{"config":{"cluster_resources":{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}},"enabled":true,"service_account_name":"flyteadmin","templates":[{"key":"aa_namespace","value":"apiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ namespace }}\nspec:\n finalizers:\n - kubernetes\n"},{"key":"ab_project_resource_quota","value":"apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }}\nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }}\n limits.memory: {{ projectQuotaMemory }}\n"}]}` | Configuration for the Cluster resource manager component. This is an optional component, that enables automatic cluster configuration. This is useful to set default quotas, manage namespaces etc that map to a project/domain | | flyte.cluster_resource_manager.config.cluster_resources | object | `{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}` | ClusterResource parameters Refer to the [structure](https://pkg.go.dev/github.com/lyft/flyteadmin@v0.3.37/pkg/runtime/interfaces#ClusterResourceConfig) to customize. | | flyte.cluster_resource_manager.config.cluster_resources.standaloneDeployment | bool | `false` | Starts the cluster resource manager in standalone mode with requisite auth credentials to call flyteadmin service endpoints | @@ -91,15 +91,15 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.common.ingress.separateGrpcIngressAnnotations | object | `{"nginx.ingress.kubernetes.io/backend-protocol":"GRPC"}` | - Extra Ingress annotations applied only to the GRPC ingress. Only makes sense if `separateGrpcIngress` is enabled. | | flyte.common.ingress.tls | object | `{"enabled":false}` | - TLS Settings | | flyte.common.ingress.webpackHMR | bool | `true` | - Enable or disable HMR route to flyteconsole. This is useful only for frontend development. | -| flyte.configmap | object | `{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}}},"k8s":{"plugins":{"agent-service":{"defaultAgent":{"endpoint":"dns:///flyteagent.flyte.svc.cluster.local:8000","insecure":true},"supportedTaskTypes":["bigquery_query_job_task"]},"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}}` | ----------------------------------------------------------------- CONFIGMAPS SETTINGS | +| flyte.configmap | object | `{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"bigquery_query_job_task":"agent-service","container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array","agent-service"]}}},"k8s":{"plugins":{"agent-service":{"defaultAgent":{"endpoint":"dns:///flyteagent.flyte.svc.cluster.local:8000","insecure":true},"supportedTaskTypes":["bigquery_query_job_task"]},"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}}` | ----------------------------------------------------------------- CONFIGMAPS SETTINGS | | flyte.configmap.adminServer | object | `{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}}` | FlyteAdmin server configuration | | flyte.configmap.adminServer.auth | object | `{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}}` | Authentication configuration | | flyte.configmap.adminServer.server.security.secure | bool | `false` | Controls whether to serve requests over SSL/TLS. | | flyte.configmap.adminServer.server.security.useAuth | bool | `false` | Controls whether to enforce authentication. Follow the guide in https://docs.flyte.org/ on how to setup authentication. | | flyte.configmap.catalog | object | `{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}}` | Catalog Client configuration [structure](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/catalog#Config) Additional advanced Catalog configuration [here](https://pkg.go.dev/github.com/lyft/flyteplugins/go/tasks/pluginmachinery/catalog#Config) | | flyte.configmap.console | object | `{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"}` | Configuration for Flyte console UI | -| flyte.configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration | -| flyte.configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) | +| flyte.configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration | +| flyte.configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) | | flyte.configmap.core | object | `{"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}}` | Core propeller configuration | | flyte.configmap.core.propeller | object | `{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/config). | | flyte.configmap.datacatalogServer | object | `{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}}` | Datacatalog server config | @@ -120,7 +120,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.datacatalog.configPath | string | `"/etc/datacatalog/config/*.yaml"` | Default regex string for searching configuration files | | flyte.datacatalog.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.datacatalog.image.repository | string | `"cr.flyte.org/flyteorg/datacatalog"` | Docker image for Datacatalog deployment | -| flyte.datacatalog.image.tag | string | `"v1.10.7-b2"` | Docker image tag | +| flyte.datacatalog.image.tag | string | `"v1.10.7-b3"` | Docker image tag | | flyte.datacatalog.nodeSelector | object | `{}` | nodeSelector for Datacatalog deployment | | flyte.datacatalog.podAnnotations | object | `{}` | Annotations for Datacatalog pods | | flyte.datacatalog.replicaCount | int | `1` | Replicas count for Datacatalog deployment | @@ -136,7 +136,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flyteadmin.env | list | `[]` | Additional flyteadmin container environment variables e.g. SendGrid's API key - name: SENDGRID_API_KEY value: "" e.g. secret environment variable (you can combine it with .additionalVolumes): - name: SENDGRID_API_KEY valueFrom: secretKeyRef: name: sendgrid-secret key: api_key | | flyte.flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment | -| flyte.flyteadmin.image.tag | string | `"v1.10.7-b2"` | Docker image tag | +| flyte.flyteadmin.image.tag | string | `"v1.10.7-b3"` | Docker image tag | | flyte.flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create | | flyte.flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment | | flyte.flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods | @@ -162,7 +162,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flytepropeller.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flyte.flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment | -| flyte.flytepropeller.image.tag | string | `"v1.10.7-b2"` | Docker image tag | +| flyte.flytepropeller.image.tag | string | `"v1.10.7-b3"` | Docker image tag | | flyte.flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment | | flyte.flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods | | flyte.flytepropeller.replicaCount | int | `1` | Replicas count for Flytepropeller deployment | @@ -176,7 +176,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flyte.flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment | -| flyte.flytescheduler.image.tag | string | `"v1.10.7-b2"` | Docker image tag | +| flyte.flytescheduler.image.tag | string | `"v1.10.7-b3"` | Docker image tag | | flyte.flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment | | flyte.flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods | | flyte.flytescheduler.resources | object | `{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}}` | Default resources requests and limits for Flytescheduler deployment | diff --git a/charts/flyte/values.yaml b/charts/flyte/values.yaml index fc53ada74f..1903986110 100755 --- a/charts/flyte/values.yaml +++ b/charts/flyte/values.yaml @@ -16,7 +16,7 @@ flyte: # -- Docker image for Flyteadmin deployment repository: cr.flyte.org/flyteorg/flyteadmin # FLYTEADMIN_IMAGE # -- Docker image tag - tag: v1.10.7-b2 # FLYTEADMIN_TAG + tag: v1.10.7-b3 # FLYTEADMIN_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Additional flyteadmin container environment variables @@ -84,7 +84,7 @@ flyte: # -- Docker image for Flytescheduler deployment repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE # -- Docker image tag - tag: v1.10.7-b2 # FLYTESCHEDULER_TAG + tag: v1.10.7-b3 # FLYTESCHEDULER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytescheduler deployment @@ -129,7 +129,7 @@ flyte: # -- Docker image for Datacatalog deployment repository: cr.flyte.org/flyteorg/datacatalog # DATACATALOG_IMAGE # -- Docker image tag - tag: v1.10.7-b2 # DATACATALOG_TAG + tag: v1.10.7-b3 # DATACATALOG_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Datacatalog deployment @@ -178,7 +178,7 @@ flyte: # -- Docker image for Flytepropeller deployment repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE # -- Docker image tag - tag: v1.10.7-b2 # FLYTEPROPELLER_TAG + tag: v1.10.7-b3 # FLYTEPROPELLER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytepropeller deployment @@ -471,7 +471,7 @@ flyte: # -- Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) co-pilot: name: flyte-copilot- - image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2 # FLYTECOPILOT_IMAGE + image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3 # FLYTECOPILOT_IMAGE start-timeout: 30s # -- Core propeller configuration diff --git a/deployment/eks/flyte_aws_scheduler_helm_generated.yaml b/deployment/eks/flyte_aws_scheduler_helm_generated.yaml index c4f557836a..1006ac92a7 100644 --- a/deployment/eks/flyte_aws_scheduler_helm_generated.yaml +++ b/deployment/eks/flyte_aws_scheduler_helm_generated.yaml @@ -431,7 +431,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2 + image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -867,7 +867,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -884,7 +884,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -898,7 +898,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -911,7 +911,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -934,7 +934,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1035,7 +1035,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1156,7 +1156,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1170,7 +1170,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1229,7 +1229,7 @@ spec: template: metadata: annotations: - configChecksum: "ea2c2cd8898cdabd21a443862894799a49efd108e5118f4605b5e7c94008e0a" + configChecksum: "87019ef8664a2b4a1cc7701ad3388e287b5b6fb95a7e55cd208f36303c92349" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -1255,7 +1255,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1309,9 +1309,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.10.7-b2 + app.kubernetes.io/version: v1.10.7-b3 annotations: - configChecksum: "ea2c2cd8898cdabd21a443862894799a49efd108e5118f4605b5e7c94008e0a" + configChecksum: "87019ef8664a2b4a1cc7701ad3388e287b5b6fb95a7e55cd208f36303c92349" spec: securityContext: fsGroup: 65534 @@ -1320,7 +1320,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1343,7 +1343,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/eks/flyte_generated.yaml b/deployment/eks/flyte_generated.yaml index 5729fea0e2..2d9821858a 100644 --- a/deployment/eks/flyte_generated.yaml +++ b/deployment/eks/flyte_generated.yaml @@ -8640,7 +8640,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: cr.flyte.org/flyteorg/datacatalog:v1.10.6 + image: cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3 imagePullPolicy: IfNotPresent name: datacatalog ports: @@ -8663,7 +8663,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/datacatalog:v1.10.6 + image: cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8724,7 +8724,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.10.6 + image: cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -8751,7 +8751,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.10.6 + image: cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8799,7 +8799,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v1.10.6 + image: cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -8846,7 +8846,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.10.6 + image: cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8863,7 +8863,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v1.10.6 + image: cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -8877,7 +8877,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.10.6 + image: cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -8897,7 +8897,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v1.10.6 + image: cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -9002,7 +9002,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.10.6 + image: cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -9270,7 +9270,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.10.6 + image: cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/eks/flyte_helm_controlplane_generated.yaml b/deployment/eks/flyte_helm_controlplane_generated.yaml index 47a75cae25..18581603d1 100644 --- a/deployment/eks/flyte_helm_controlplane_generated.yaml +++ b/deployment/eks/flyte_helm_controlplane_generated.yaml @@ -573,7 +573,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -590,7 +590,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -604,7 +604,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -617,7 +617,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -640,7 +640,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -741,7 +741,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -862,7 +862,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -876,7 +876,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -952,7 +952,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -968,7 +968,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: diff --git a/deployment/eks/flyte_helm_dataplane_generated.yaml b/deployment/eks/flyte_helm_dataplane_generated.yaml index c1d6b96380..c8157bc14d 100644 --- a/deployment/eks/flyte_helm_dataplane_generated.yaml +++ b/deployment/eks/flyte_helm_dataplane_generated.yaml @@ -94,7 +94,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2 + image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -427,7 +427,7 @@ spec: template: metadata: annotations: - configChecksum: "ea2c2cd8898cdabd21a443862894799a49efd108e5118f4605b5e7c94008e0a" + configChecksum: "87019ef8664a2b4a1cc7701ad3388e287b5b6fb95a7e55cd208f36303c92349" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -453,7 +453,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -507,9 +507,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.10.7-b2 + app.kubernetes.io/version: v1.10.7-b3 annotations: - configChecksum: "ea2c2cd8898cdabd21a443862894799a49efd108e5118f4605b5e7c94008e0a" + configChecksum: "87019ef8664a2b4a1cc7701ad3388e287b5b6fb95a7e55cd208f36303c92349" spec: securityContext: fsGroup: 65534 @@ -518,7 +518,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -541,7 +541,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/eks/flyte_helm_generated.yaml b/deployment/eks/flyte_helm_generated.yaml index 910b2746b8..2b7d54646e 100644 --- a/deployment/eks/flyte_helm_generated.yaml +++ b/deployment/eks/flyte_helm_generated.yaml @@ -462,7 +462,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2 + image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -898,7 +898,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -915,7 +915,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -929,7 +929,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -942,7 +942,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -965,7 +965,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1066,7 +1066,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1187,7 +1187,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1201,7 +1201,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1277,7 +1277,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -1293,7 +1293,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: @@ -1348,7 +1348,7 @@ spec: template: metadata: annotations: - configChecksum: "ea2c2cd8898cdabd21a443862894799a49efd108e5118f4605b5e7c94008e0a" + configChecksum: "87019ef8664a2b4a1cc7701ad3388e287b5b6fb95a7e55cd208f36303c92349" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -1374,7 +1374,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1428,9 +1428,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.10.7-b2 + app.kubernetes.io/version: v1.10.7-b3 annotations: - configChecksum: "ea2c2cd8898cdabd21a443862894799a49efd108e5118f4605b5e7c94008e0a" + configChecksum: "87019ef8664a2b4a1cc7701ad3388e287b5b6fb95a7e55cd208f36303c92349" spec: securityContext: fsGroup: 65534 @@ -1439,7 +1439,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1462,7 +1462,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/gcp/flyte_helm_controlplane_generated.yaml b/deployment/gcp/flyte_helm_controlplane_generated.yaml index a31446875c..c465136c26 100644 --- a/deployment/gcp/flyte_helm_controlplane_generated.yaml +++ b/deployment/gcp/flyte_helm_controlplane_generated.yaml @@ -588,7 +588,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -605,7 +605,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -619,7 +619,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -632,7 +632,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -655,7 +655,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -756,7 +756,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -877,7 +877,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -891,7 +891,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -967,7 +967,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -983,7 +983,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: diff --git a/deployment/gcp/flyte_helm_dataplane_generated.yaml b/deployment/gcp/flyte_helm_dataplane_generated.yaml index c0cb5c5a6d..88dc92e317 100644 --- a/deployment/gcp/flyte_helm_dataplane_generated.yaml +++ b/deployment/gcp/flyte_helm_dataplane_generated.yaml @@ -94,7 +94,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2 + image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -435,7 +435,7 @@ spec: template: metadata: annotations: - configChecksum: "063bb0277c649fa12017e257aa4bb51aae517b3563e0593925680cb89bf2d55" + configChecksum: "ad240e3ef8a53820b388ee7a1a40fecb1bc14c7e20fc0b6d54fbbfeeb8c1f08" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -460,7 +460,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -514,9 +514,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.10.7-b2 + app.kubernetes.io/version: v1.10.7-b3 annotations: - configChecksum: "063bb0277c649fa12017e257aa4bb51aae517b3563e0593925680cb89bf2d55" + configChecksum: "ad240e3ef8a53820b388ee7a1a40fecb1bc14c7e20fc0b6d54fbbfeeb8c1f08" spec: securityContext: fsGroup: 65534 @@ -525,7 +525,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -548,7 +548,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/gcp/flyte_helm_generated.yaml b/deployment/gcp/flyte_helm_generated.yaml index 0627ba986c..46348b01c7 100644 --- a/deployment/gcp/flyte_helm_generated.yaml +++ b/deployment/gcp/flyte_helm_generated.yaml @@ -475,7 +475,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2 + image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -921,7 +921,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -938,7 +938,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -952,7 +952,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -965,7 +965,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -988,7 +988,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1089,7 +1089,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1210,7 +1210,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1224,7 +1224,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1300,7 +1300,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -1316,7 +1316,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: @@ -1371,7 +1371,7 @@ spec: template: metadata: annotations: - configChecksum: "063bb0277c649fa12017e257aa4bb51aae517b3563e0593925680cb89bf2d55" + configChecksum: "ad240e3ef8a53820b388ee7a1a40fecb1bc14c7e20fc0b6d54fbbfeeb8c1f08" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -1396,7 +1396,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1450,9 +1450,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.10.7-b2 + app.kubernetes.io/version: v1.10.7-b3 annotations: - configChecksum: "063bb0277c649fa12017e257aa4bb51aae517b3563e0593925680cb89bf2d55" + configChecksum: "ad240e3ef8a53820b388ee7a1a40fecb1bc14c7e20fc0b6d54fbbfeeb8c1f08" spec: securityContext: fsGroup: 65534 @@ -1461,7 +1461,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1484,7 +1484,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml b/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml index 039b6628e4..554b20022a 100644 --- a/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml +++ b/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml @@ -116,7 +116,7 @@ data: stackdriver-enabled: false k8s: co-pilot: - image: "cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3" k8s-array: logs: config: @@ -358,7 +358,7 @@ spec: app.kubernetes.io/instance: flyte app.kubernetes.io/component: flyte-binary annotations: - checksum/configuration: 4566d9bb7575f535ccf8481c719474e72b926b8029d83e3b6318549e3cdd2f14 + checksum/configuration: 2016033070fdc6625a4e9da4f3a3fedebaad4ea02e53de3aa68d5ab45dcaac00 checksum/configuration-secret: d5d93f4e67780b21593dc3799f0f6682aab0765e708e4020939975d14d44f929 checksum/cluster-resource-templates: 7dfa59f3d447e9c099b8f8ffad3af466fecbc9cf9f8c97295d9634254a55d4ae spec: diff --git a/deployment/sandbox/flyte_helm_generated.yaml b/deployment/sandbox/flyte_helm_generated.yaml index cade17e8d6..b42955ae43 100644 --- a/deployment/sandbox/flyte_helm_generated.yaml +++ b/deployment/sandbox/flyte_helm_generated.yaml @@ -587,7 +587,7 @@ data: plugins: k8s: co-pilot: - image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2 + image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3 name: flyte-copilot- start-timeout: 30s core.yaml: | @@ -6710,7 +6710,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -6726,7 +6726,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -6739,7 +6739,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -6751,7 +6751,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -6774,7 +6774,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -6865,7 +6865,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -6980,7 +6980,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -6993,7 +6993,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/datacatalog:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -7059,7 +7059,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -7074,7 +7074,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: @@ -7126,7 +7126,7 @@ spec: template: metadata: annotations: - configChecksum: "809822d98423c61b882d80deb62e9a8e59acd78ad56f875a4542a8154162ed7" + configChecksum: "88d4389a902fdbd092ad4bf6f20a5ce2baa97e9cb137585f0d52fb112c07ee5" labels: app.kubernetes.io/name: flytepropeller app.kubernetes.io/instance: flyte @@ -7151,7 +7151,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -7198,9 +7198,9 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.10.7-b2 + app.kubernetes.io/version: v1.10.7-b3 annotations: - configChecksum: "809822d98423c61b882d80deb62e9a8e59acd78ad56f875a4542a8154162ed7" + configChecksum: "88d4389a902fdbd092ad4bf6f20a5ce2baa97e9cb137585f0d52fb112c07ee5" spec: securityContext: fsGroup: 65534 @@ -7209,7 +7209,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -7232,7 +7232,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.10.7-b3" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/docker/sandbox-bundled/manifests/complete-agent.yaml b/docker/sandbox-bundled/manifests/complete-agent.yaml index 7c4df1e1d0..e85542f62c 100644 --- a/docker/sandbox-bundled/manifests/complete-agent.yaml +++ b/docker/sandbox-bundled/manifests/complete-agent.yaml @@ -468,7 +468,7 @@ data: stackdriver-enabled: false k8s: co-pilot: - image: "cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3" k8s-array: logs: config: @@ -816,7 +816,7 @@ type: Opaque --- apiVersion: v1 data: - haSharedSecret: dng4YnEzSHROOFhRaE1VZQ== + haSharedSecret: TkhxM2EwT3h6Skg3R0N2Nw== proxyPassword: "" proxyUsername: "" kind: Secret @@ -1246,7 +1246,7 @@ spec: metadata: annotations: checksum/cluster-resource-templates: 6fd9b172465e3089fcc59f738b92b8dc4d8939360c19de8ee65f68b0e7422035 - checksum/configuration: 267295f401ead24cac5d0e20fd495f2373d31774f0abaa3279d4a22f94dc954f + checksum/configuration: 165aa554378807a1f0cfb5bf6b98628dd78ff56ca09e0ab59b647c3eb657fee3 checksum/configuration-secret: 09216ffaa3d29e14f88b1f30af580d02a2a5e014de4d750b7f275cc07ed4e914 labels: app.kubernetes.io/component: flyte-binary @@ -1412,7 +1412,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: c4a7dad2d7c6ca293d589c7d9ace15b1b60e69b7110190644e7a8a1e959959e2 + checksum/secret: b6bb944cb515787479fe96fc21cc47bfcc7331c955ca165c5a032ac4fe670238 labels: app: docker-registry release: flyte-sandbox diff --git a/docker/sandbox-bundled/manifests/complete.yaml b/docker/sandbox-bundled/manifests/complete.yaml index 9521ff41b1..89ae3fda8d 100644 --- a/docker/sandbox-bundled/manifests/complete.yaml +++ b/docker/sandbox-bundled/manifests/complete.yaml @@ -457,7 +457,7 @@ data: stackdriver-enabled: false k8s: co-pilot: - image: "cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b2" + image: "cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b3" k8s-array: logs: config: @@ -796,7 +796,7 @@ type: Opaque --- apiVersion: v1 data: - haSharedSecret: c0pvT1NlMzViQkVLVWRBNQ== + haSharedSecret: VU5BUUFSN05XekZzZmNIaQ== proxyPassword: "" proxyUsername: "" kind: Secret @@ -1194,7 +1194,7 @@ spec: metadata: annotations: checksum/cluster-resource-templates: 6fd9b172465e3089fcc59f738b92b8dc4d8939360c19de8ee65f68b0e7422035 - checksum/configuration: 98f436232001bb629ccb144b80f87538ab271997bfc494a3f51c33a99b826d70 + checksum/configuration: 892759655c4285761d73a630705bae3966a16b040526ff6fa894d161bc3e4953 checksum/configuration-secret: 09216ffaa3d29e14f88b1f30af580d02a2a5e014de4d750b7f275cc07ed4e914 labels: app.kubernetes.io/component: flyte-binary @@ -1360,7 +1360,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: 9512852ca2ca190980daf7ae998d1bc4e63e47e118ca1f4d5380547eb2fde321 + checksum/secret: 563f44d555d8b883a30db6eb22de7e67a74d69d44c55bdd2cfa8e95653933179 labels: app: docker-registry release: flyte-sandbox diff --git a/docker/sandbox-bundled/manifests/dev.yaml b/docker/sandbox-bundled/manifests/dev.yaml index 3d05837065..9be6a51ebf 100644 --- a/docker/sandbox-bundled/manifests/dev.yaml +++ b/docker/sandbox-bundled/manifests/dev.yaml @@ -499,7 +499,7 @@ metadata: --- apiVersion: v1 data: - haSharedSecret: Uml0TnZ2ektnOW5xNkJIYw== + haSharedSecret: Z3RuSFFuT2xPVnRXNHF4Yg== proxyPassword: "" proxyUsername: "" kind: Secret @@ -934,7 +934,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: ec4150cc8f428f2475c6db0d4be7fbd7192ab67cfa19a04961611e8581d855ae + checksum/secret: 176bfd0d24829228adbebf20df1b21c46e860a65bce6cf4a60bfef212cc18914 labels: app: docker-registry release: flyte-sandbox diff --git a/docs/conf.py b/docs/conf.py index 0bb049a3bb..332eafcf9b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -35,7 +35,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "1.10.7-b2" +release = "1.10.7-b3" # -- General configuration --------------------------------------------------- diff --git a/docs/deployment/configuration/generated/flyteadmin_config.rst b/docs/deployment/configuration/generated/flyteadmin_config.rst index fe78df979c..532167b016 100644 --- a/docs/deployment/configuration/generated/flyteadmin_config.rst +++ b/docs/deployment/configuration/generated/flyteadmin_config.rst @@ -5337,7 +5337,6 @@ defaults (`interfaces.TaskResourceSet`_) ephemeralStorage: "0" gpu: "0" memory: 200Mi - storage: "0" limits (`interfaces.TaskResourceSet`_) @@ -5351,7 +5350,6 @@ limits (`interfaces.TaskResourceSet`_) ephemeralStorage: "0" gpu: "1" memory: 1Gi - storage: "0" interfaces.TaskResourceSet @@ -5387,16 +5385,6 @@ memory (`resource.Quantity`_) 200Mi -storage (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" - -**Default Value**: - -.. code-block:: yaml - - "0" - - ephemeralStorage (`resource.Quantity`_) """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" diff --git a/docs/deployment/configuration/generated/flytepropeller_config.rst b/docs/deployment/configuration/generated/flytepropeller_config.rst index 85c318e082..84cb473841 100644 --- a/docs/deployment/configuration/generated/flytepropeller_config.rst +++ b/docs/deployment/configuration/generated/flytepropeller_config.rst @@ -1066,8 +1066,7 @@ k8s-array (`k8s.Config`_) cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: true kubernetes-template-uri: http://localhost:30082/#!/log/{{ .namespace }}/{{ .podName @@ -1117,8 +1116,7 @@ logs (`logs.LogConfig`_) cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: true kubernetes-template-uri: http://localhost:30082/#!/log/{{ .namespace }}/{{ .podName @@ -1179,8 +1177,7 @@ ray (`ray.Config`_) cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -1247,8 +1244,7 @@ spark (`spark.Config`_) cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -1262,8 +1258,7 @@ spark (`spark.Config`_) cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: true kubernetes-template-uri: http://localhost:30082/#!/log/{{ .namespace }}/{{ .podName @@ -1278,8 +1273,7 @@ spark (`spark.Config`_) cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -1293,8 +1287,7 @@ spark (`spark.Config`_) cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -2941,8 +2934,7 @@ Config for log links for k8s array jobs. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: true kubernetes-template-uri: http://localhost:30082/#!/log/{{ .namespace }}/{{ .podName @@ -3060,8 +3052,7 @@ Defines the log config for k8s logs. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: true kubernetes-template-uri: http://localhost:30082/#!/log/{{ .namespace }}/{{ .podName @@ -3209,28 +3200,14 @@ Template Uri to use when building stackdriver log links "" -flyin-enabled (bool) +dynamic-log-links (map[string]tasklog.TemplateLogPlugin) """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -Enable Log-links to flyin logs - -**Default Value**: - -.. code-block:: yaml - - "false" - - -flyin-template-uri (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" - -Template Uri to use when building flyin log links - **Default Value**: .. code-block:: yaml - "" + null templates ([]tasklog.TemplateLogPlugin) @@ -3406,28 +3383,14 @@ Template Uri to use when building stackdriver log links "" -flyin-enabled (bool) +dynamic-log-links (map[string]tasklog.TemplateLogPlugin) """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -Enable Log-links to flyin logs - **Default Value**: .. code-block:: yaml - "false" - - -flyin-template-uri (string) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" - -Template Uri to use when building flyin log links - -**Default Value**: - -.. code-block:: yaml - - "" + null templates ([]tasklog.TemplateLogPlugin) @@ -3531,8 +3494,7 @@ logs (`logs.LogConfig`_) cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -3556,8 +3518,6 @@ logsSidecar (v1.Container) dashboardURLTemplate (tasklog.TemplateLogPlugin) """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -Template for URL of Ray dashboard running on a head node. - **Default Value**: .. code-block:: yaml @@ -3768,8 +3728,7 @@ Config for log links for spark applications. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -3783,8 +3742,7 @@ Config for log links for spark applications. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: true kubernetes-template-uri: http://localhost:30082/#!/log/{{ .namespace }}/{{ .podName @@ -3799,8 +3757,7 @@ Config for log links for spark applications. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -3814,8 +3771,7 @@ Config for log links for spark applications. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -3842,8 +3798,7 @@ Defines the log config that's not split into user/system. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: true kubernetes-template-uri: http://localhost:30082/#!/log/{{ .namespace }}/{{ .podName @@ -3868,8 +3823,7 @@ Defines the log config for user logs. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -3893,8 +3847,7 @@ Defines the log config for system logs. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" @@ -3918,8 +3871,7 @@ All user logs across driver and executors. cloudwatch-log-group: "" cloudwatch-region: "" cloudwatch-template-uri: "" - flyin-enabled: false - flyin-template-uri: "" + dynamic-log-links: null gcp-project: "" kubernetes-enabled: false kubernetes-template-uri: "" diff --git a/docs/deployment/configuration/generated/scheduler_config.rst b/docs/deployment/configuration/generated/scheduler_config.rst index c96746dd62..3700a95e1c 100644 --- a/docs/deployment/configuration/generated/scheduler_config.rst +++ b/docs/deployment/configuration/generated/scheduler_config.rst @@ -5337,7 +5337,6 @@ defaults (`interfaces.TaskResourceSet`_) ephemeralStorage: "0" gpu: "0" memory: 200Mi - storage: "0" limits (`interfaces.TaskResourceSet`_) @@ -5351,7 +5350,6 @@ limits (`interfaces.TaskResourceSet`_) ephemeralStorage: "0" gpu: "1" memory: 1Gi - storage: "0" interfaces.TaskResourceSet @@ -5387,16 +5385,6 @@ memory (`resource.Quantity`_) 200Mi -storage (`resource.Quantity`_) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" - -**Default Value**: - -.. code-block:: yaml - - "0" - - ephemeralStorage (`resource.Quantity`_) """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" diff --git a/flyteidl/boilerplate/flyte/golang_support_tools/tools.go b/flyteidl/boilerplate/flyte/golang_support_tools/tools.go index 01ef33939f..6c3da04107 100644 --- a/flyteidl/boilerplate/flyte/golang_support_tools/tools.go +++ b/flyteidl/boilerplate/flyte/golang_support_tools/tools.go @@ -8,4 +8,6 @@ import ( _ "github.com/alvaroloes/enumer" _ "github.com/golangci/golangci-lint/cmd/golangci-lint" _ "github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc" + + _ "github.com/flyteorg/flyte/flytestdlib/cli/pflags" ) diff --git a/flyteidl/boilerplate/flyte/golang_test_targets/download_tooling.sh b/flyteidl/boilerplate/flyte/golang_test_targets/download_tooling.sh index b1b5ba19d3..b05b353231 100755 --- a/flyteidl/boilerplate/flyte/golang_test_targets/download_tooling.sh +++ b/flyteidl/boilerplate/flyte/golang_test_targets/download_tooling.sh @@ -18,6 +18,7 @@ set -e tools=( "github.com/EngHabu/mockery/cmd/mockery" "github.com/golangci/golangci-lint/cmd/golangci-lint" + "github.com/daixiang0/gci" "github.com/alvaroloes/enumer" "github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc" ) diff --git a/flyteidl/boilerplate/flyte/golang_test_targets/goimports b/flyteidl/boilerplate/flyte/golang_test_targets/goimports index af1829036c..40f50d106e 100755 --- a/flyteidl/boilerplate/flyte/golang_test_targets/goimports +++ b/flyteidl/boilerplate/flyte/golang_test_targets/goimports @@ -6,3 +6,4 @@ # TO OPT OUT OF UPDATES, SEE https://github.com/flyteorg/boilerplate/blob/master/Readme.rst goimports -w $(find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./pkg/client/*" -not -path "./boilerplate/*") +gci write -s standard -s default -s "prefix(github.com/flyteorg)" --custom-order --skip-generated . diff --git a/kustomize/overlays/eks/kustomization.yaml b/kustomize/overlays/eks/kustomization.yaml index dc0f1f3398..cbdfe41b50 100644 --- a/kustomize/overlays/eks/kustomization.yaml +++ b/kustomize/overlays/eks/kustomization.yaml @@ -21,7 +21,7 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v1.10.6 # FLYTEADMIN_TAG override the tag + newTag: v1.10.7-b3 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name @@ -29,15 +29,15 @@ images: newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name - newTag: v1.10.6 # DATACATALOG_TAG override the tag + newTag: v1.10.7-b3 # DATACATALOG_TAG override the tag newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v1.10.6 # FLYTEPROPELLER_TAG override the tag + newTag: v1.10.7-b3 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v1.10.6 # FLYTEPROPELLER_TAG override the tag + newTag: v1.10.7-b3 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Override postgres image to use alpine based (rather smaller) docker image - name: postgres