From 9cba0926f11c014f91e6d4514d350b41f76e393e Mon Sep 17 00:00:00 2001 From: Katrina Rogan Date: Thu, 24 Mar 2022 21:41:15 -0700 Subject: [PATCH] Additional execution properties as matchable entities. (#253) * proposal Signed-off-by: Katrina Rogan * comments Signed-off-by: Katrina Rogan * Fixed the import and updated tooling Signed-off-by: Prafulla Mahindrakar * Updating the golang version to 1.7 Signed-off-by: Prafulla Mahindrakar * feedback Signed-off-by: Prafulla Mahindrakar Co-authored-by: Prafulla Mahindrakar --- flyteidl/.github/workflows/verification.yml | 4 +- .../golang_test_targets/download_tooling.sh | 4 +- flyteidl/clients/go/admin/config_flags.go | 4 +- .../clients/go/admin/config_flags_test.go | 4 +- .../flyteidl/admin/matchable_resource.pb.cc | 446 ++++++- .../flyteidl/admin/matchable_resource.pb.h | 222 ++++ .../flyteidl/admin/matchable_resource.pb.go | 195 +-- .../admin/matchable_resource.pb.validate.go | 40 + .../pb-go/flyteidl/service/admin.swagger.json | 16 + .../service/flyteadmin/api/swagger.yaml | 473 +++++++ .../model_admin_workflow_execution_config.go | 8 + .../gen/pb-go/flyteidl/service/openapi.go | 4 +- .../admin/MatchableResourceOuterClass.java | 1137 ++++++++++++++++- flyteidl/gen/pb-js/flyteidl.d.ts | 24 + flyteidl/gen/pb-js/flyteidl.js | 76 ++ .../flyteidl/admin/matchable_resource_pb2.py | 98 +- .../models/admin_workflow_execution_config.py | 123 +- .../flyteidl/admin/matchable_resource.proto | 14 + 18 files changed, 2651 insertions(+), 241 deletions(-) diff --git a/flyteidl/.github/workflows/verification.yml b/flyteidl/.github/workflows/verification.yml index acd164ebf4..65920adf34 100644 --- a/flyteidl/.github/workflows/verification.yml +++ b/flyteidl/.github/workflows/verification.yml @@ -16,13 +16,13 @@ jobs: with: fetch-depth: "0" - name: Unit Tests - uses: cedrickring/golang-action@1.6.0 + uses: cedrickring/golang-action@1.7.0 env: GO111MODULE: "on" with: args: make install && make test_unit - name: Lint - uses: cedrickring/golang-action@1.6.0 + uses: cedrickring/golang-action@1.7.0 env: GO111MODULE: "on" with: diff --git a/flyteidl/boilerplate/flyte/golang_test_targets/download_tooling.sh b/flyteidl/boilerplate/flyte/golang_test_targets/download_tooling.sh index c0ab06b063..02fb004881 100755 --- a/flyteidl/boilerplate/flyte/golang_test_targets/download_tooling.sh +++ b/flyteidl/boilerplate/flyte/golang_test_targets/download_tooling.sh @@ -17,8 +17,8 @@ set -e # In the format of ":" or ":" if no cli tools=( "github.com/vektra/mockery/cmd/mockery" - "github.com/flyteorg/flytestdlib/cli/pflags" - "github.com/golangci/golangci-lint/cmd/golangci-lint" + "github.com/flyteorg/flytestdlib/cli/pflags@latest" + "github.com/golangci/golangci-lint/cmd/golangci-lint@latest" "github.com/alvaroloes/enumer" "github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc" ) diff --git a/flyteidl/clients/go/admin/config_flags.go b/flyteidl/clients/go/admin/config_flags.go index 6d277e3263..df72d4244f 100755 --- a/flyteidl/clients/go/admin/config_flags.go +++ b/flyteidl/clients/go/admin/config_flags.go @@ -61,12 +61,12 @@ func (cfg Config) GetPFlagSet(prefix string) *pflag.FlagSet { cmdFlags.Bool(fmt.Sprintf("%v%v", prefix, "useAuth"), defaultConfig.DeprecatedUseAuth, "Deprecated: Auth will be enabled/disabled based on admin's dynamically discovered information.") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "clientId"), defaultConfig.ClientID, "Client ID") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "clientSecretLocation"), defaultConfig.ClientSecretLocation, "File containing the client secret") - cmdFlags.StringSlice(fmt.Sprintf("%v%v", prefix, "scopes"), []string{}, "List of scopes to request") + cmdFlags.StringSlice(fmt.Sprintf("%v%v", prefix, "scopes"), defaultConfig.Scopes, "List of scopes to request") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "authorizationServerUrl"), defaultConfig.DeprecatedAuthorizationServerURL, "This is the URL to your IdP's authorization server. It'll default to Endpoint") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "tokenUrl"), defaultConfig.TokenURL, "OPTIONAL: Your IdP's token endpoint. It'll be discovered from flyte admin's OAuth Metadata endpoint if not provided.") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "authorizationHeader"), defaultConfig.DeprecatedAuthorizationHeader, "Custom metadata header to pass JWT") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "pkceConfig.timeout"), defaultConfig.PkceConfig.BrowserSessionTimeout.String(), "") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "pkceConfig.refreshTime"), defaultConfig.PkceConfig.TokenRefreshGracePeriod.String(), "") - cmdFlags.StringSlice(fmt.Sprintf("%v%v", prefix, "command"), []string{}, "Command for external authentication token generation") + cmdFlags.StringSlice(fmt.Sprintf("%v%v", prefix, "command"), defaultConfig.Command, "Command for external authentication token generation") return cmdFlags } diff --git a/flyteidl/clients/go/admin/config_flags_test.go b/flyteidl/clients/go/admin/config_flags_test.go index fa4c192c22..e7a797e106 100755 --- a/flyteidl/clients/go/admin/config_flags_test.go +++ b/flyteidl/clients/go/admin/config_flags_test.go @@ -256,7 +256,7 @@ func TestConfig_SetFlags(t *testing.T) { t.Run("Test_scopes", func(t *testing.T) { t.Run("Override", func(t *testing.T) { - testValue := join_Config("1,1", ",") + testValue := join_Config(defaultConfig.Scopes, ",") cmdFlags.Set("scopes", testValue) if vStringSlice, err := cmdFlags.GetStringSlice("scopes"); err == nil { @@ -340,7 +340,7 @@ func TestConfig_SetFlags(t *testing.T) { t.Run("Test_command", func(t *testing.T) { t.Run("Override", func(t *testing.T) { - testValue := join_Config("1,1", ",") + testValue := join_Config(defaultConfig.Command, ",") cmdFlags.Set("command", testValue) if vStringSlice, err := cmdFlags.GetStringSlice("command"); err == nil { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc index 95a7f2c826..3ea3f9da8f 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc @@ -17,18 +17,22 @@ #include extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fcluster_5fassignment_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ClusterAssignment_flyteidl_2fadmin_2fcluster_5fassignment_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fcommon_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_RawOutputDataConfig_flyteidl_2fadmin_2fcommon_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fcommon_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Annotations_flyteidl_2fadmin_2fcommon_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fcommon_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Labels_flyteidl_2fadmin_2fcommon_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ClusterResourceAttributes_AttributesEntry_DoNotUse_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ExecutionClusterLabel_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ExecutionQueueAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_PluginOverride_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_TaskResourceSpec_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ClusterResourceAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_MatchableAttributesConfiguration_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_PluginOverrides_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TaskResourceAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<4> scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto ::google::protobuf::internal::SCCInfo<8> scc_info_MatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fexecution_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_QualityOfService_flyteidl_2fcore_2fexecution_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fsecurity_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_SecurityContext_flyteidl_2fcore_2fsecurity_2eproto; namespace flyteidl { namespace admin { class TaskResourceSpecDefaultTypeInternal { @@ -218,8 +222,12 @@ static void InitDefaultsWorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fr ::flyteidl::admin::WorkflowExecutionConfig::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsWorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto}, {}}; +::google::protobuf::internal::SCCInfo<4> scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 4, InitDefaultsWorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto}, { + &scc_info_SecurityContext_flyteidl_2fcore_2fsecurity_2eproto.base, + &scc_info_RawOutputDataConfig_flyteidl_2fadmin_2fcommon_2eproto.base, + &scc_info_Labels_flyteidl_2fadmin_2fcommon_2eproto.base, + &scc_info_Annotations_flyteidl_2fadmin_2fcommon_2eproto.base,}}; static void InitDefaultsMatchingAttributes_flyteidl_2fadmin_2fmatchable_5fresource_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -372,6 +380,10 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fmatchable_5freso ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowExecutionConfig, max_parallelism_), + PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowExecutionConfig, security_context_), + PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowExecutionConfig, raw_output_data_config_), + PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowExecutionConfig, labels_), + PROTOBUF_FIELD_OFFSET(::flyteidl::admin::WorkflowExecutionConfig, annotations_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::MatchingAttributes, _internal_metadata_), ~0u, // no _extensions_ @@ -419,10 +431,10 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 44, -1, sizeof(::flyteidl::admin::PluginOverride)}, { 52, -1, sizeof(::flyteidl::admin::PluginOverrides)}, { 58, -1, sizeof(::flyteidl::admin::WorkflowExecutionConfig)}, - { 64, -1, sizeof(::flyteidl::admin::MatchingAttributes)}, - { 78, -1, sizeof(::flyteidl::admin::MatchableAttributesConfiguration)}, - { 88, -1, sizeof(::flyteidl::admin::ListMatchableAttributesRequest)}, - { 94, -1, sizeof(::flyteidl::admin::ListMatchableAttributesResponse)}, + { 68, -1, sizeof(::flyteidl::admin::MatchingAttributes)}, + { 82, -1, sizeof(::flyteidl::admin::MatchableAttributesConfiguration)}, + { 92, -1, sizeof(::flyteidl::admin::ListMatchableAttributesRequest)}, + { 98, -1, sizeof(::flyteidl::admin::ListMatchableAttributesResponse)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -449,74 +461,83 @@ ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_fl const char descriptor_table_protodef_flyteidl_2fadmin_2fmatchable_5fresource_2eproto[] = "\n\'flyteidl/admin/matchable_resource.prot" - "o\022\016flyteidl.admin\032\'flyteidl/admin/cluste" - "r_assignment.proto\032\035flyteidl/core/execut" - "ion.proto\"h\n\020TaskResourceSpec\022\013\n\003cpu\030\001 \001" - "(\t\022\013\n\003gpu\030\002 \001(\t\022\016\n\006memory\030\003 \001(\t\022\017\n\007stora" - "ge\030\004 \001(\t\022\031\n\021ephemeral_storage\030\005 \001(\t\"~\n\026T" - "askResourceAttributes\0222\n\010defaults\030\001 \001(\0132" - " .flyteidl.admin.TaskResourceSpec\0220\n\006lim" - "its\030\002 \001(\0132 .flyteidl.admin.TaskResourceS" - "pec\"\235\001\n\031ClusterResourceAttributes\022M\n\natt" - "ributes\030\001 \003(\01329.flyteidl.admin.ClusterRe" - "sourceAttributes.AttributesEntry\0321\n\017Attr" - "ibutesEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:" - "\0028\001\"(\n\030ExecutionQueueAttributes\022\014\n\004tags\030" - "\001 \003(\t\"&\n\025ExecutionClusterLabel\022\r\n\005value\030" - "\001 \001(\t\"\301\001\n\016PluginOverride\022\021\n\ttask_type\030\001 " - "\001(\t\022\021\n\tplugin_id\030\002 \003(\t\022U\n\027missing_plugin" - "_behavior\030\004 \001(\01624.flyteidl.admin.PluginO" - "verride.MissingPluginBehavior\"2\n\025Missing" - "PluginBehavior\022\010\n\004FAIL\020\000\022\017\n\013USE_DEFAULT\020" - "\001\"D\n\017PluginOverrides\0221\n\toverrides\030\001 \003(\0132" - "\036.flyteidl.admin.PluginOverride\"2\n\027Workf" - "lowExecutionConfig\022\027\n\017max_parallelism\030\001 " - "\001(\005\"\341\004\n\022MatchingAttributes\022J\n\030task_resou" - "rce_attributes\030\001 \001(\0132&.flyteidl.admin.Ta" - "skResourceAttributesH\000\022P\n\033cluster_resour" - "ce_attributes\030\002 \001(\0132).flyteidl.admin.Clu" - "sterResourceAttributesH\000\022N\n\032execution_qu" - "eue_attributes\030\003 \001(\0132(.flyteidl.admin.Ex" - "ecutionQueueAttributesH\000\022H\n\027execution_cl" - "uster_label\030\004 \001(\0132%.flyteidl.admin.Execu" - "tionClusterLabelH\000\022=\n\022quality_of_service" - "\030\005 \001(\0132\037.flyteidl.core.QualityOfServiceH" - "\000\022;\n\020plugin_overrides\030\006 \001(\0132\037.flyteidl.a" - "dmin.PluginOverridesH\000\022L\n\031workflow_execu" - "tion_config\030\007 \001(\0132\'.flyteidl.admin.Workf" - "lowExecutionConfigH\000\022\?\n\022cluster_assignme" - "nt\030\010 \001(\0132!.flyteidl.admin.ClusterAssignm" - "entH\000B\010\n\006target\"\242\001\n MatchableAttributesC" - "onfiguration\0226\n\nattributes\030\001 \001(\0132\".flyte" - "idl.admin.MatchingAttributes\022\016\n\006domain\030\002" - " \001(\t\022\017\n\007project\030\003 \001(\t\022\020\n\010workflow\030\004 \001(\t\022" - "\023\n\013launch_plan\030\005 \001(\t\"Z\n\036ListMatchableAtt" - "ributesRequest\0228\n\rresource_type\030\001 \001(\0162!." - "flyteidl.admin.MatchableResource\"k\n\037List" - "MatchableAttributesResponse\022H\n\016configura" - "tions\030\001 \003(\01320.flyteidl.admin.MatchableAt" - "tributesConfiguration*\340\001\n\021MatchableResou" - "rce\022\021\n\rTASK_RESOURCE\020\000\022\024\n\020CLUSTER_RESOUR" - "CE\020\001\022\023\n\017EXECUTION_QUEUE\020\002\022\033\n\027EXECUTION_C" - "LUSTER_LABEL\020\003\022$\n QUALITY_OF_SERVICE_SPE" - "CIFICATION\020\004\022\023\n\017PLUGIN_OVERRIDE\020\005\022\035\n\031WOR" - "KFLOW_EXECUTION_CONFIG\020\006\022\026\n\022CLUSTER_ASSI" - "GNMENT\020\007B7Z5github.com/flyteorg/flyteidl" - "/gen/pb-go/flyteidl/adminb\006proto3" + "o\022\016flyteidl.admin\032\033flyteidl/admin/common" + ".proto\032\'flyteidl/admin/cluster_assignmen" + "t.proto\032\035flyteidl/core/execution.proto\032\034" + "flyteidl/core/security.proto\"h\n\020TaskReso" + "urceSpec\022\013\n\003cpu\030\001 \001(\t\022\013\n\003gpu\030\002 \001(\t\022\016\n\006me" + "mory\030\003 \001(\t\022\017\n\007storage\030\004 \001(\t\022\031\n\021ephemeral" + "_storage\030\005 \001(\t\"~\n\026TaskResourceAttributes" + "\0222\n\010defaults\030\001 \001(\0132 .flyteidl.admin.Task" + "ResourceSpec\0220\n\006limits\030\002 \001(\0132 .flyteidl." + "admin.TaskResourceSpec\"\235\001\n\031ClusterResour" + "ceAttributes\022M\n\nattributes\030\001 \003(\01329.flyte" + "idl.admin.ClusterResourceAttributes.Attr" + "ibutesEntry\0321\n\017AttributesEntry\022\013\n\003key\030\001 " + "\001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"(\n\030ExecutionQueue" + "Attributes\022\014\n\004tags\030\001 \003(\t\"&\n\025ExecutionClu" + "sterLabel\022\r\n\005value\030\001 \001(\t\"\301\001\n\016PluginOverr" + "ide\022\021\n\ttask_type\030\001 \001(\t\022\021\n\tplugin_id\030\002 \003(" + "\t\022U\n\027missing_plugin_behavior\030\004 \001(\01624.fly" + "teidl.admin.PluginOverride.MissingPlugin" + "Behavior\"2\n\025MissingPluginBehavior\022\010\n\004FAI" + "L\020\000\022\017\n\013USE_DEFAULT\020\001\"D\n\017PluginOverrides\022" + "1\n\toverrides\030\001 \003(\0132\036.flyteidl.admin.Plug" + "inOverride\"\213\002\n\027WorkflowExecutionConfig\022\027" + "\n\017max_parallelism\030\001 \001(\005\0228\n\020security_cont" + "ext\030\002 \001(\0132\036.flyteidl.core.SecurityContex" + "t\022C\n\026raw_output_data_config\030\003 \001(\0132#.flyt" + "eidl.admin.RawOutputDataConfig\022&\n\006labels" + "\030\004 \001(\0132\026.flyteidl.admin.Labels\0220\n\013annota" + "tions\030\005 \001(\0132\033.flyteidl.admin.Annotations" + "\"\341\004\n\022MatchingAttributes\022J\n\030task_resource" + "_attributes\030\001 \001(\0132&.flyteidl.admin.TaskR" + "esourceAttributesH\000\022P\n\033cluster_resource_" + "attributes\030\002 \001(\0132).flyteidl.admin.Cluste" + "rResourceAttributesH\000\022N\n\032execution_queue" + "_attributes\030\003 \001(\0132(.flyteidl.admin.Execu" + "tionQueueAttributesH\000\022H\n\027execution_clust" + "er_label\030\004 \001(\0132%.flyteidl.admin.Executio" + "nClusterLabelH\000\022=\n\022quality_of_service\030\005 " + "\001(\0132\037.flyteidl.core.QualityOfServiceH\000\022;" + "\n\020plugin_overrides\030\006 \001(\0132\037.flyteidl.admi" + "n.PluginOverridesH\000\022L\n\031workflow_executio" + "n_config\030\007 \001(\0132\'.flyteidl.admin.Workflow" + "ExecutionConfigH\000\022\?\n\022cluster_assignment\030" + "\010 \001(\0132!.flyteidl.admin.ClusterAssignment" + "H\000B\010\n\006target\"\242\001\n MatchableAttributesConf" + "iguration\0226\n\nattributes\030\001 \001(\0132\".flyteidl" + ".admin.MatchingAttributes\022\016\n\006domain\030\002 \001(" + "\t\022\017\n\007project\030\003 \001(\t\022\020\n\010workflow\030\004 \001(\t\022\023\n\013" + "launch_plan\030\005 \001(\t\"Z\n\036ListMatchableAttrib" + "utesRequest\0228\n\rresource_type\030\001 \001(\0162!.fly" + "teidl.admin.MatchableResource\"k\n\037ListMat" + "chableAttributesResponse\022H\n\016configuratio" + "ns\030\001 \003(\01320.flyteidl.admin.MatchableAttri" + "butesConfiguration*\340\001\n\021MatchableResource" + "\022\021\n\rTASK_RESOURCE\020\000\022\024\n\020CLUSTER_RESOURCE\020" + "\001\022\023\n\017EXECUTION_QUEUE\020\002\022\033\n\027EXECUTION_CLUS" + "TER_LABEL\020\003\022$\n QUALITY_OF_SERVICE_SPECIF" + "ICATION\020\004\022\023\n\017PLUGIN_OVERRIDE\020\005\022\035\n\031WORKFL" + "OW_EXECUTION_CONFIG\020\006\022\026\n\022CLUSTER_ASSIGNM" + "ENT\020\007B7Z5github.com/flyteorg/flyteidl/ge" + "n/pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, - "flyteidl/admin/matchable_resource.proto", &assign_descriptors_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, 2193, + "flyteidl/admin/matchable_resource.proto", &assign_descriptors_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, 2470, }; void AddDescriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto() { - static constexpr ::google::protobuf::internal::InitFunc deps[2] = + static constexpr ::google::protobuf::internal::InitFunc deps[4] = { + ::AddDescriptors_flyteidl_2fadmin_2fcommon_2eproto, ::AddDescriptors_flyteidl_2fadmin_2fcluster_5fassignment_2eproto, ::AddDescriptors_flyteidl_2fcore_2fexecution_2eproto, + ::AddDescriptors_flyteidl_2fcore_2fsecurity_2eproto, }; - ::google::protobuf::internal::AddDescriptors(&descriptor_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, deps, 2); + ::google::protobuf::internal::AddDescriptors(&descriptor_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, deps, 4); } // Force running AddDescriptors() at dynamic initialization time. @@ -3217,13 +3238,69 @@ ::google::protobuf::Metadata PluginOverrides::GetMetadata() const { // =================================================================== void WorkflowExecutionConfig::InitAsDefaultInstance() { + ::flyteidl::admin::_WorkflowExecutionConfig_default_instance_._instance.get_mutable()->security_context_ = const_cast< ::flyteidl::core::SecurityContext*>( + ::flyteidl::core::SecurityContext::internal_default_instance()); + ::flyteidl::admin::_WorkflowExecutionConfig_default_instance_._instance.get_mutable()->raw_output_data_config_ = const_cast< ::flyteidl::admin::RawOutputDataConfig*>( + ::flyteidl::admin::RawOutputDataConfig::internal_default_instance()); + ::flyteidl::admin::_WorkflowExecutionConfig_default_instance_._instance.get_mutable()->labels_ = const_cast< ::flyteidl::admin::Labels*>( + ::flyteidl::admin::Labels::internal_default_instance()); + ::flyteidl::admin::_WorkflowExecutionConfig_default_instance_._instance.get_mutable()->annotations_ = const_cast< ::flyteidl::admin::Annotations*>( + ::flyteidl::admin::Annotations::internal_default_instance()); } class WorkflowExecutionConfig::HasBitSetters { public: + static const ::flyteidl::core::SecurityContext& security_context(const WorkflowExecutionConfig* msg); + static const ::flyteidl::admin::RawOutputDataConfig& raw_output_data_config(const WorkflowExecutionConfig* msg); + static const ::flyteidl::admin::Labels& labels(const WorkflowExecutionConfig* msg); + static const ::flyteidl::admin::Annotations& annotations(const WorkflowExecutionConfig* msg); }; +const ::flyteidl::core::SecurityContext& +WorkflowExecutionConfig::HasBitSetters::security_context(const WorkflowExecutionConfig* msg) { + return *msg->security_context_; +} +const ::flyteidl::admin::RawOutputDataConfig& +WorkflowExecutionConfig::HasBitSetters::raw_output_data_config(const WorkflowExecutionConfig* msg) { + return *msg->raw_output_data_config_; +} +const ::flyteidl::admin::Labels& +WorkflowExecutionConfig::HasBitSetters::labels(const WorkflowExecutionConfig* msg) { + return *msg->labels_; +} +const ::flyteidl::admin::Annotations& +WorkflowExecutionConfig::HasBitSetters::annotations(const WorkflowExecutionConfig* msg) { + return *msg->annotations_; +} +void WorkflowExecutionConfig::clear_security_context() { + if (GetArenaNoVirtual() == nullptr && security_context_ != nullptr) { + delete security_context_; + } + security_context_ = nullptr; +} +void WorkflowExecutionConfig::clear_raw_output_data_config() { + if (GetArenaNoVirtual() == nullptr && raw_output_data_config_ != nullptr) { + delete raw_output_data_config_; + } + raw_output_data_config_ = nullptr; +} +void WorkflowExecutionConfig::clear_labels() { + if (GetArenaNoVirtual() == nullptr && labels_ != nullptr) { + delete labels_; + } + labels_ = nullptr; +} +void WorkflowExecutionConfig::clear_annotations() { + if (GetArenaNoVirtual() == nullptr && annotations_ != nullptr) { + delete annotations_; + } + annotations_ = nullptr; +} #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int WorkflowExecutionConfig::kMaxParallelismFieldNumber; +const int WorkflowExecutionConfig::kSecurityContextFieldNumber; +const int WorkflowExecutionConfig::kRawOutputDataConfigFieldNumber; +const int WorkflowExecutionConfig::kLabelsFieldNumber; +const int WorkflowExecutionConfig::kAnnotationsFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 WorkflowExecutionConfig::WorkflowExecutionConfig() @@ -3235,12 +3312,36 @@ WorkflowExecutionConfig::WorkflowExecutionConfig(const WorkflowExecutionConfig& : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); + if (from.has_security_context()) { + security_context_ = new ::flyteidl::core::SecurityContext(*from.security_context_); + } else { + security_context_ = nullptr; + } + if (from.has_raw_output_data_config()) { + raw_output_data_config_ = new ::flyteidl::admin::RawOutputDataConfig(*from.raw_output_data_config_); + } else { + raw_output_data_config_ = nullptr; + } + if (from.has_labels()) { + labels_ = new ::flyteidl::admin::Labels(*from.labels_); + } else { + labels_ = nullptr; + } + if (from.has_annotations()) { + annotations_ = new ::flyteidl::admin::Annotations(*from.annotations_); + } else { + annotations_ = nullptr; + } max_parallelism_ = from.max_parallelism_; // @@protoc_insertion_point(copy_constructor:flyteidl.admin.WorkflowExecutionConfig) } void WorkflowExecutionConfig::SharedCtor() { - max_parallelism_ = 0; + ::google::protobuf::internal::InitSCC( + &scc_info_WorkflowExecutionConfig_flyteidl_2fadmin_2fmatchable_5fresource_2eproto.base); + ::memset(&security_context_, 0, static_cast( + reinterpret_cast(&max_parallelism_) - + reinterpret_cast(&security_context_)) + sizeof(max_parallelism_)); } WorkflowExecutionConfig::~WorkflowExecutionConfig() { @@ -3249,6 +3350,10 @@ WorkflowExecutionConfig::~WorkflowExecutionConfig() { } void WorkflowExecutionConfig::SharedDtor() { + if (this != internal_default_instance()) delete security_context_; + if (this != internal_default_instance()) delete raw_output_data_config_; + if (this != internal_default_instance()) delete labels_; + if (this != internal_default_instance()) delete annotations_; } void WorkflowExecutionConfig::SetCachedSize(int size) const { @@ -3266,6 +3371,22 @@ void WorkflowExecutionConfig::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + if (GetArenaNoVirtual() == nullptr && security_context_ != nullptr) { + delete security_context_; + } + security_context_ = nullptr; + if (GetArenaNoVirtual() == nullptr && raw_output_data_config_ != nullptr) { + delete raw_output_data_config_; + } + raw_output_data_config_ = nullptr; + if (GetArenaNoVirtual() == nullptr && labels_ != nullptr) { + delete labels_; + } + labels_ = nullptr; + if (GetArenaNoVirtual() == nullptr && annotations_ != nullptr) { + delete annotations_; + } + annotations_ = nullptr; max_parallelism_ = 0; _internal_metadata_.Clear(); } @@ -3290,6 +3411,58 @@ const char* WorkflowExecutionConfig::_InternalParse(const char* begin, const cha GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } + // .flyteidl.core.SecurityContext security_context = 2; + case 2: { + if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::core::SecurityContext::_InternalParse; + object = msg->mutable_security_context(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + break; + } + // .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + case 3: { + if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::admin::RawOutputDataConfig::_InternalParse; + object = msg->mutable_raw_output_data_config(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + break; + } + // .flyteidl.admin.Labels labels = 4; + case 4: { + if (static_cast<::google::protobuf::uint8>(tag) != 34) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::admin::Labels::_InternalParse; + object = msg->mutable_labels(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + break; + } + // .flyteidl.admin.Annotations annotations = 5; + case 5: { + if (static_cast<::google::protobuf::uint8>(tag) != 42) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::admin::Annotations::_InternalParse; + object = msg->mutable_annotations(); + if (size > end - ptr) goto len_delim_till_end; + ptr += size; + GOOGLE_PROTOBUF_PARSER_ASSERT(ctx->ParseExactRange( + {parser_till_end, object}, ptr - size, ptr)); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -3305,6 +3478,9 @@ const char* WorkflowExecutionConfig::_InternalParse(const char* begin, const cha } // switch } // while return ptr; +len_delim_till_end: + return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg}, + {parser_till_end, object}, size); } #else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER bool WorkflowExecutionConfig::MergePartialFromCodedStream( @@ -3330,6 +3506,50 @@ bool WorkflowExecutionConfig::MergePartialFromCodedStream( break; } + // .flyteidl.core.SecurityContext security_context = 2; + case 2: { + if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_security_context())); + } else { + goto handle_unusual; + } + break; + } + + // .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + case 3: { + if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_raw_output_data_config())); + } else { + goto handle_unusual; + } + break; + } + + // .flyteidl.admin.Labels labels = 4; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_labels())); + } else { + goto handle_unusual; + } + break; + } + + // .flyteidl.admin.Annotations annotations = 5; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == (42 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_annotations())); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -3362,6 +3582,30 @@ void WorkflowExecutionConfig::SerializeWithCachedSizes( ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->max_parallelism(), output); } + // .flyteidl.core.SecurityContext security_context = 2; + if (this->has_security_context()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 2, HasBitSetters::security_context(this), output); + } + + // .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + if (this->has_raw_output_data_config()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 3, HasBitSetters::raw_output_data_config(this), output); + } + + // .flyteidl.admin.Labels labels = 4; + if (this->has_labels()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 4, HasBitSetters::labels(this), output); + } + + // .flyteidl.admin.Annotations annotations = 5; + if (this->has_annotations()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 5, HasBitSetters::annotations(this), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -3380,6 +3624,34 @@ ::google::protobuf::uint8* WorkflowExecutionConfig::InternalSerializeWithCachedS target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->max_parallelism(), target); } + // .flyteidl.core.SecurityContext security_context = 2; + if (this->has_security_context()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 2, HasBitSetters::security_context(this), target); + } + + // .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + if (this->has_raw_output_data_config()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 3, HasBitSetters::raw_output_data_config(this), target); + } + + // .flyteidl.admin.Labels labels = 4; + if (this->has_labels()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 4, HasBitSetters::labels(this), target); + } + + // .flyteidl.admin.Annotations annotations = 5; + if (this->has_annotations()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 5, HasBitSetters::annotations(this), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -3401,6 +3673,34 @@ size_t WorkflowExecutionConfig::ByteSizeLong() const { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; + // .flyteidl.core.SecurityContext security_context = 2; + if (this->has_security_context()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *security_context_); + } + + // .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + if (this->has_raw_output_data_config()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *raw_output_data_config_); + } + + // .flyteidl.admin.Labels labels = 4; + if (this->has_labels()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *labels_); + } + + // .flyteidl.admin.Annotations annotations = 5; + if (this->has_annotations()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *annotations_); + } + // int32 max_parallelism = 1; if (this->max_parallelism() != 0) { total_size += 1 + @@ -3435,6 +3735,18 @@ void WorkflowExecutionConfig::MergeFrom(const WorkflowExecutionConfig& from) { ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; + if (from.has_security_context()) { + mutable_security_context()->::flyteidl::core::SecurityContext::MergeFrom(from.security_context()); + } + if (from.has_raw_output_data_config()) { + mutable_raw_output_data_config()->::flyteidl::admin::RawOutputDataConfig::MergeFrom(from.raw_output_data_config()); + } + if (from.has_labels()) { + mutable_labels()->::flyteidl::admin::Labels::MergeFrom(from.labels()); + } + if (from.has_annotations()) { + mutable_annotations()->::flyteidl::admin::Annotations::MergeFrom(from.annotations()); + } if (from.max_parallelism() != 0) { set_max_parallelism(from.max_parallelism()); } @@ -3465,6 +3777,10 @@ void WorkflowExecutionConfig::Swap(WorkflowExecutionConfig* other) { void WorkflowExecutionConfig::InternalSwap(WorkflowExecutionConfig* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); + swap(security_context_, other->security_context_); + swap(raw_output_data_config_, other->raw_output_data_config_); + swap(labels_, other->labels_); + swap(annotations_, other->annotations_); swap(max_parallelism_, other->max_parallelism_); } diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.h b/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.h index 835ed1b088..70d8e7edc5 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.h +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.h @@ -35,8 +35,10 @@ #include #include #include +#include "flyteidl/admin/common.pb.h" #include "flyteidl/admin/cluster_assignment.pb.h" #include "flyteidl/core/execution.pb.h" +#include "flyteidl/core/security.pb.h" // @@protoc_insertion_point(includes) #include #define PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fmatchable_5fresource_2eproto @@ -1254,6 +1256,42 @@ class WorkflowExecutionConfig final : // accessors ------------------------------------------------------- + // .flyteidl.core.SecurityContext security_context = 2; + bool has_security_context() const; + void clear_security_context(); + static const int kSecurityContextFieldNumber = 2; + const ::flyteidl::core::SecurityContext& security_context() const; + ::flyteidl::core::SecurityContext* release_security_context(); + ::flyteidl::core::SecurityContext* mutable_security_context(); + void set_allocated_security_context(::flyteidl::core::SecurityContext* security_context); + + // .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + bool has_raw_output_data_config() const; + void clear_raw_output_data_config(); + static const int kRawOutputDataConfigFieldNumber = 3; + const ::flyteidl::admin::RawOutputDataConfig& raw_output_data_config() const; + ::flyteidl::admin::RawOutputDataConfig* release_raw_output_data_config(); + ::flyteidl::admin::RawOutputDataConfig* mutable_raw_output_data_config(); + void set_allocated_raw_output_data_config(::flyteidl::admin::RawOutputDataConfig* raw_output_data_config); + + // .flyteidl.admin.Labels labels = 4; + bool has_labels() const; + void clear_labels(); + static const int kLabelsFieldNumber = 4; + const ::flyteidl::admin::Labels& labels() const; + ::flyteidl::admin::Labels* release_labels(); + ::flyteidl::admin::Labels* mutable_labels(); + void set_allocated_labels(::flyteidl::admin::Labels* labels); + + // .flyteidl.admin.Annotations annotations = 5; + bool has_annotations() const; + void clear_annotations(); + static const int kAnnotationsFieldNumber = 5; + const ::flyteidl::admin::Annotations& annotations() const; + ::flyteidl::admin::Annotations* release_annotations(); + ::flyteidl::admin::Annotations* mutable_annotations(); + void set_allocated_annotations(::flyteidl::admin::Annotations* annotations); + // int32 max_parallelism = 1; void clear_max_parallelism(); static const int kMaxParallelismFieldNumber = 1; @@ -1265,6 +1303,10 @@ class WorkflowExecutionConfig final : class HasBitSetters; ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::flyteidl::core::SecurityContext* security_context_; + ::flyteidl::admin::RawOutputDataConfig* raw_output_data_config_; + ::flyteidl::admin::Labels* labels_; + ::flyteidl::admin::Annotations* annotations_; ::google::protobuf::int32 max_parallelism_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::TableStruct_flyteidl_2fadmin_2fmatchable_5fresource_2eproto; @@ -2617,6 +2659,186 @@ inline void WorkflowExecutionConfig::set_max_parallelism(::google::protobuf::int // @@protoc_insertion_point(field_set:flyteidl.admin.WorkflowExecutionConfig.max_parallelism) } +// .flyteidl.core.SecurityContext security_context = 2; +inline bool WorkflowExecutionConfig::has_security_context() const { + return this != internal_default_instance() && security_context_ != nullptr; +} +inline const ::flyteidl::core::SecurityContext& WorkflowExecutionConfig::security_context() const { + const ::flyteidl::core::SecurityContext* p = security_context_; + // @@protoc_insertion_point(field_get:flyteidl.admin.WorkflowExecutionConfig.security_context) + return p != nullptr ? *p : *reinterpret_cast( + &::flyteidl::core::_SecurityContext_default_instance_); +} +inline ::flyteidl::core::SecurityContext* WorkflowExecutionConfig::release_security_context() { + // @@protoc_insertion_point(field_release:flyteidl.admin.WorkflowExecutionConfig.security_context) + + ::flyteidl::core::SecurityContext* temp = security_context_; + security_context_ = nullptr; + return temp; +} +inline ::flyteidl::core::SecurityContext* WorkflowExecutionConfig::mutable_security_context() { + + if (security_context_ == nullptr) { + auto* p = CreateMaybeMessage<::flyteidl::core::SecurityContext>(GetArenaNoVirtual()); + security_context_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.admin.WorkflowExecutionConfig.security_context) + return security_context_; +} +inline void WorkflowExecutionConfig::set_allocated_security_context(::flyteidl::core::SecurityContext* security_context) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(security_context_); + } + if (security_context) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + security_context = ::google::protobuf::internal::GetOwnedMessage( + message_arena, security_context, submessage_arena); + } + + } else { + + } + security_context_ = security_context; + // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.WorkflowExecutionConfig.security_context) +} + +// .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; +inline bool WorkflowExecutionConfig::has_raw_output_data_config() const { + return this != internal_default_instance() && raw_output_data_config_ != nullptr; +} +inline const ::flyteidl::admin::RawOutputDataConfig& WorkflowExecutionConfig::raw_output_data_config() const { + const ::flyteidl::admin::RawOutputDataConfig* p = raw_output_data_config_; + // @@protoc_insertion_point(field_get:flyteidl.admin.WorkflowExecutionConfig.raw_output_data_config) + return p != nullptr ? *p : *reinterpret_cast( + &::flyteidl::admin::_RawOutputDataConfig_default_instance_); +} +inline ::flyteidl::admin::RawOutputDataConfig* WorkflowExecutionConfig::release_raw_output_data_config() { + // @@protoc_insertion_point(field_release:flyteidl.admin.WorkflowExecutionConfig.raw_output_data_config) + + ::flyteidl::admin::RawOutputDataConfig* temp = raw_output_data_config_; + raw_output_data_config_ = nullptr; + return temp; +} +inline ::flyteidl::admin::RawOutputDataConfig* WorkflowExecutionConfig::mutable_raw_output_data_config() { + + if (raw_output_data_config_ == nullptr) { + auto* p = CreateMaybeMessage<::flyteidl::admin::RawOutputDataConfig>(GetArenaNoVirtual()); + raw_output_data_config_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.admin.WorkflowExecutionConfig.raw_output_data_config) + return raw_output_data_config_; +} +inline void WorkflowExecutionConfig::set_allocated_raw_output_data_config(::flyteidl::admin::RawOutputDataConfig* raw_output_data_config) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(raw_output_data_config_); + } + if (raw_output_data_config) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + raw_output_data_config = ::google::protobuf::internal::GetOwnedMessage( + message_arena, raw_output_data_config, submessage_arena); + } + + } else { + + } + raw_output_data_config_ = raw_output_data_config; + // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.WorkflowExecutionConfig.raw_output_data_config) +} + +// .flyteidl.admin.Labels labels = 4; +inline bool WorkflowExecutionConfig::has_labels() const { + return this != internal_default_instance() && labels_ != nullptr; +} +inline const ::flyteidl::admin::Labels& WorkflowExecutionConfig::labels() const { + const ::flyteidl::admin::Labels* p = labels_; + // @@protoc_insertion_point(field_get:flyteidl.admin.WorkflowExecutionConfig.labels) + return p != nullptr ? *p : *reinterpret_cast( + &::flyteidl::admin::_Labels_default_instance_); +} +inline ::flyteidl::admin::Labels* WorkflowExecutionConfig::release_labels() { + // @@protoc_insertion_point(field_release:flyteidl.admin.WorkflowExecutionConfig.labels) + + ::flyteidl::admin::Labels* temp = labels_; + labels_ = nullptr; + return temp; +} +inline ::flyteidl::admin::Labels* WorkflowExecutionConfig::mutable_labels() { + + if (labels_ == nullptr) { + auto* p = CreateMaybeMessage<::flyteidl::admin::Labels>(GetArenaNoVirtual()); + labels_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.admin.WorkflowExecutionConfig.labels) + return labels_; +} +inline void WorkflowExecutionConfig::set_allocated_labels(::flyteidl::admin::Labels* labels) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(labels_); + } + if (labels) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + labels = ::google::protobuf::internal::GetOwnedMessage( + message_arena, labels, submessage_arena); + } + + } else { + + } + labels_ = labels; + // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.WorkflowExecutionConfig.labels) +} + +// .flyteidl.admin.Annotations annotations = 5; +inline bool WorkflowExecutionConfig::has_annotations() const { + return this != internal_default_instance() && annotations_ != nullptr; +} +inline const ::flyteidl::admin::Annotations& WorkflowExecutionConfig::annotations() const { + const ::flyteidl::admin::Annotations* p = annotations_; + // @@protoc_insertion_point(field_get:flyteidl.admin.WorkflowExecutionConfig.annotations) + return p != nullptr ? *p : *reinterpret_cast( + &::flyteidl::admin::_Annotations_default_instance_); +} +inline ::flyteidl::admin::Annotations* WorkflowExecutionConfig::release_annotations() { + // @@protoc_insertion_point(field_release:flyteidl.admin.WorkflowExecutionConfig.annotations) + + ::flyteidl::admin::Annotations* temp = annotations_; + annotations_ = nullptr; + return temp; +} +inline ::flyteidl::admin::Annotations* WorkflowExecutionConfig::mutable_annotations() { + + if (annotations_ == nullptr) { + auto* p = CreateMaybeMessage<::flyteidl::admin::Annotations>(GetArenaNoVirtual()); + annotations_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.admin.WorkflowExecutionConfig.annotations) + return annotations_; +} +inline void WorkflowExecutionConfig::set_allocated_annotations(::flyteidl::admin::Annotations* annotations) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(annotations_); + } + if (annotations) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + annotations = ::google::protobuf::internal::GetOwnedMessage( + message_arena, annotations, submessage_arena); + } + + } else { + + } + annotations_ = annotations; + // @@protoc_insertion_point(field_set_allocated:flyteidl.admin.WorkflowExecutionConfig.annotations) +} + // ------------------------------------------------------------------- // MatchingAttributes diff --git a/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.go index 39495cea65..9a13969a70 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.go @@ -446,10 +446,18 @@ func (m *PluginOverrides) GetOverrides() []*PluginOverride { // Adds defaults for customizable workflow-execution specifications and overrides. type WorkflowExecutionConfig struct { // Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness. - MaxParallelism int32 `protobuf:"varint,1,opt,name=max_parallelism,json=maxParallelism,proto3" json:"max_parallelism,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + MaxParallelism int32 `protobuf:"varint,1,opt,name=max_parallelism,json=maxParallelism,proto3" json:"max_parallelism,omitempty"` + // Indicates security context permissions for executions triggered with this matchable attribute. + SecurityContext *core.SecurityContext `protobuf:"bytes,2,opt,name=security_context,json=securityContext,proto3" json:"security_context,omitempty"` + // Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.). + RawOutputDataConfig *RawOutputDataConfig `protobuf:"bytes,3,opt,name=raw_output_data_config,json=rawOutputDataConfig,proto3" json:"raw_output_data_config,omitempty"` + // Custom labels to be applied to a triggered execution resource. + Labels *Labels `protobuf:"bytes,4,opt,name=labels,proto3" json:"labels,omitempty"` + // Custom annotations to be applied to a triggered execution resource. + Annotations *Annotations `protobuf:"bytes,5,opt,name=annotations,proto3" json:"annotations,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *WorkflowExecutionConfig) Reset() { *m = WorkflowExecutionConfig{} } @@ -484,6 +492,34 @@ func (m *WorkflowExecutionConfig) GetMaxParallelism() int32 { return 0 } +func (m *WorkflowExecutionConfig) GetSecurityContext() *core.SecurityContext { + if m != nil { + return m.SecurityContext + } + return nil +} + +func (m *WorkflowExecutionConfig) GetRawOutputDataConfig() *RawOutputDataConfig { + if m != nil { + return m.RawOutputDataConfig + } + return nil +} + +func (m *WorkflowExecutionConfig) GetLabels() *Labels { + if m != nil { + return m.Labels + } + return nil +} + +func (m *WorkflowExecutionConfig) GetAnnotations() *Annotations { + if m != nil { + return m.Annotations + } + return nil +} + // Generic container for encapsulating all types of the above attributes messages. type MatchingAttributes struct { // Types that are valid to be assigned to Target: @@ -836,76 +872,83 @@ func init() { } var fileDescriptor_1d15bcabb02640f4 = []byte{ - // 1121 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdb, 0x72, 0xe2, 0x46, - 0x13, 0x46, 0x3e, 0xb0, 0xb8, 0xf9, 0x17, 0xe4, 0xf9, 0xd7, 0xb6, 0x6c, 0xd7, 0xae, 0x1d, 0x55, - 0x12, 0x3b, 0x49, 0x2d, 0xa4, 0x48, 0x52, 0xd9, 0xa4, 0x92, 0x0b, 0x60, 0x85, 0xa1, 0x16, 0x1b, - 0x7b, 0x80, 0xf5, 0x6e, 0x6e, 0x54, 0x83, 0x18, 0x84, 0x82, 0x4e, 0x96, 0x46, 0xb6, 0xa9, 0xbc, - 0x44, 0x2e, 0x92, 0x47, 0xc9, 0xa3, 0xe4, 0x3e, 0x0f, 0x90, 0x87, 0x48, 0xe9, 0x8c, 0x65, 0xd8, - 0xda, 0x3b, 0x75, 0x4f, 0x77, 0x7f, 0x3d, 0xdd, 0x5f, 0xf7, 0x08, 0x4e, 0x26, 0xfa, 0x9c, 0x51, - 0x6d, 0xac, 0x57, 0xc9, 0xd8, 0xd0, 0xcc, 0xaa, 0x41, 0x98, 0x32, 0x25, 0x23, 0x9d, 0xca, 0x0e, - 0x75, 0x2d, 0xcf, 0x51, 0x68, 0xc5, 0x76, 0x2c, 0x66, 0xa1, 0x52, 0x6c, 0x58, 0x09, 0x0c, 0x0f, - 0xb2, 0x8e, 0x8a, 0xee, 0xb9, 0x8c, 0x3a, 0x32, 0x71, 0x5d, 0x4d, 0x35, 0x0d, 0x6a, 0xb2, 0xd0, - 0xf1, 0xe0, 0x79, 0x62, 0xa8, 0x58, 0x0e, 0xad, 0xd2, 0x7b, 0xaa, 0x78, 0x4c, 0xb3, 0xcc, 0xf0, - 0x58, 0xfc, 0x93, 0x03, 0x7e, 0x40, 0xdc, 0x19, 0x8e, 0xe0, 0xfa, 0x36, 0x55, 0x10, 0x0f, 0xeb, - 0x8a, 0xed, 0x09, 0xdc, 0x31, 0x77, 0xba, 0x85, 0xfd, 0x4f, 0x5f, 0xa3, 0xda, 0x9e, 0xb0, 0x16, - 0x6a, 0x54, 0xdb, 0x43, 0xbb, 0x90, 0x37, 0xa8, 0x61, 0x39, 0x73, 0x61, 0x3d, 0x50, 0x46, 0x12, - 0x12, 0xe0, 0x89, 0xcb, 0x2c, 0x87, 0xa8, 0x54, 0xd8, 0x08, 0x0e, 0x62, 0x11, 0x7d, 0x05, 0xdb, - 0xd4, 0x9e, 0x52, 0x83, 0x3a, 0x44, 0x97, 0x63, 0x9b, 0xcd, 0xc0, 0x86, 0x4f, 0x0e, 0xfa, 0xa1, - 0x5e, 0xfc, 0x9d, 0x83, 0xdd, 0xc5, 0xbc, 0xea, 0x8c, 0x39, 0xda, 0xc8, 0x63, 0xd4, 0x45, 0x3f, - 0x41, 0x61, 0x4c, 0x27, 0xc4, 0xd3, 0x99, 0x1b, 0xa4, 0x58, 0xac, 0x1d, 0x57, 0x1e, 0x56, 0xa7, - 0x92, 0xbd, 0x11, 0x4e, 0x3c, 0xd0, 0x2b, 0xc8, 0xeb, 0x9a, 0xa1, 0x31, 0x37, 0xb8, 0xcc, 0xc7, - 0xf8, 0x46, 0xf6, 0xe2, 0x5f, 0x1c, 0xec, 0x37, 0xc3, 0x32, 0x2f, 0xc9, 0xea, 0x3d, 0x00, 0x49, - 0x24, 0x81, 0x3b, 0x5e, 0x3f, 0x2d, 0xd6, 0x7e, 0xc8, 0xc6, 0x5e, 0xe9, 0x5e, 0x49, 0x3f, 0x25, - 0x93, 0x39, 0x73, 0xbc, 0x10, 0xec, 0xe0, 0x67, 0x28, 0x67, 0x8e, 0xfd, 0x7e, 0xcc, 0xe8, 0x3c, - 0xee, 0xd0, 0x8c, 0xce, 0xd1, 0x33, 0xd8, 0xbc, 0x25, 0xba, 0x47, 0xa3, 0x1e, 0x85, 0xc2, 0x8f, - 0x6b, 0xaf, 0x38, 0xb1, 0x02, 0x82, 0x14, 0x77, 0xfd, 0xca, 0xa3, 0xde, 0x62, 0xd6, 0x08, 0x36, - 0x18, 0x51, 0xc3, 0x7c, 0xb7, 0x70, 0xf0, 0x2d, 0xbe, 0x84, 0x9d, 0xc4, 0x3e, 0x4a, 0xb8, 0x4b, - 0x46, 0x54, 0x4f, 0x21, 0xb8, 0x05, 0x08, 0xf1, 0x5f, 0x0e, 0x4a, 0x97, 0xba, 0xa7, 0x6a, 0x66, - 0xef, 0x96, 0x3a, 0x8e, 0x36, 0xa6, 0xe8, 0x10, 0xb6, 0x18, 0x71, 0x67, 0x32, 0x9b, 0xdb, 0xb1, - 0x71, 0xc1, 0x57, 0x0c, 0xe6, 0x76, 0x70, 0x68, 0x07, 0xe6, 0xb2, 0x36, 0x16, 0xd6, 0x02, 0xdc, - 0x42, 0xa8, 0xe8, 0x8c, 0x91, 0x0e, 0x7b, 0x86, 0xe6, 0xba, 0x9a, 0xa9, 0xca, 0x91, 0xd1, 0x88, - 0x4e, 0xc9, 0xad, 0x66, 0x39, 0x01, 0x9b, 0x4a, 0xb5, 0x6f, 0xb3, 0x25, 0x7d, 0x08, 0x5d, 0x39, - 0x0f, 0xbd, 0x43, 0x6d, 0x23, 0xf2, 0xc5, 0x3b, 0xc6, 0x32, 0xb5, 0x58, 0x83, 0x9d, 0xa5, 0xf6, - 0xa8, 0x00, 0x1b, 0xad, 0x7a, 0xa7, 0xcb, 0xe7, 0x50, 0x19, 0x8a, 0xc3, 0xbe, 0x24, 0xbf, 0x96, - 0x5a, 0xf5, 0x61, 0x77, 0xc0, 0x73, 0x62, 0x0f, 0xca, 0x0f, 0x21, 0x7d, 0x42, 0x6e, 0x59, 0xb1, - 0x10, 0x75, 0xfe, 0xc5, 0x87, 0xd3, 0xc4, 0xa9, 0x83, 0xd8, 0x80, 0xbd, 0x6b, 0xcb, 0x99, 0x4d, - 0x74, 0xeb, 0x2e, 0x2d, 0xbb, 0x65, 0x4e, 0x34, 0x15, 0x9d, 0x40, 0xd9, 0x20, 0xf7, 0xb2, 0x4d, - 0x1c, 0xa2, 0xeb, 0x54, 0xd7, 0x5c, 0x23, 0xa8, 0xe6, 0x26, 0x2e, 0x19, 0xe4, 0xfe, 0x32, 0xd5, - 0x8a, 0x7f, 0xe4, 0x01, 0x9d, 0xfb, 0xab, 0x43, 0x33, 0xd5, 0x85, 0xee, 0x8e, 0x40, 0x08, 0xfa, - 0x10, 0xef, 0x12, 0xf9, 0x01, 0x43, 0x7d, 0xf6, 0x7f, 0xfe, 0x21, 0xf6, 0xa7, 0x91, 0xda, 0x39, - 0xbc, 0xcb, 0x96, 0x4f, 0xe3, 0x0c, 0x0e, 0xe3, 0xdd, 0xb3, 0x0c, 0x26, 0x1c, 0xb2, 0x2f, 0x3e, - 0x7a, 0x10, 0xda, 0x39, 0xbc, 0xaf, 0xac, 0x1c, 0xb2, 0x29, 0x1c, 0x24, 0x0b, 0x4c, 0xbe, 0xf1, - 0xb9, 0xbc, 0x88, 0xb5, 0x1e, 0x60, 0x9d, 0x66, 0xb1, 0x56, 0x91, 0xbf, 0x9d, 0xc3, 0x02, 0x5d, - 0x35, 0x18, 0x32, 0xec, 0xa5, 0x48, 0xf1, 0x05, 0x75, 0x7f, 0x0c, 0x02, 0x22, 0x16, 0x6b, 0x9f, - 0xad, 0x84, 0x59, 0x9c, 0x99, 0x76, 0x0e, 0xef, 0xd0, 0xa5, 0xc3, 0xd4, 0x03, 0x74, 0xe3, 0x11, - 0x5d, 0x63, 0x73, 0xd9, 0x9a, 0xc8, 0x2e, 0x75, 0x6e, 0x35, 0x25, 0x5c, 0x87, 0xc5, 0xda, 0x51, - 0x1a, 0xdb, 0x5f, 0xda, 0x95, 0xab, 0xd0, 0xb0, 0x37, 0xe9, 0x87, 0x66, 0xed, 0x1c, 0xe6, 0x6f, - 0x32, 0x3a, 0xd4, 0x05, 0x3e, 0x1a, 0x99, 0x94, 0x8c, 0xf9, 0x6c, 0xb8, 0x65, 0x64, 0xf4, 0x0b, - 0x51, 0xb6, 0x33, 0x9c, 0xa6, 0xb0, 0x7f, 0x17, 0xb1, 0x52, 0x5e, 0x28, 0x44, 0xc0, 0x4b, 0xe1, - 0x49, 0x10, 0xf6, 0x24, 0x1b, 0x76, 0x05, 0x8d, 0xdb, 0x39, 0xbc, 0x77, 0xb7, 0x82, 0xe1, 0x18, - 0xd0, 0xe3, 0x97, 0x4b, 0x28, 0x04, 0xf1, 0x3f, 0x59, 0x41, 0x9a, 0x7a, 0x62, 0xd8, 0xce, 0xe1, - 0x6d, 0x25, 0xab, 0x6c, 0x14, 0x20, 0xcf, 0x88, 0xa3, 0x52, 0x26, 0xfe, 0xcd, 0xc1, 0xf1, 0x79, - 0xfc, 0xa2, 0xa6, 0xcd, 0x0d, 0xb1, 0x3d, 0x87, 0xf8, 0x89, 0xa0, 0x46, 0x66, 0x71, 0xfb, 0xd0, - 0x62, 0x16, 0xfa, 0xf1, 0x70, 0x2d, 0x6e, 0x68, 0xff, 0x31, 0x1c, 0x5b, 0x06, 0xd1, 0xcc, 0x68, - 0xfb, 0x46, 0x92, 0xff, 0x18, 0xda, 0x8e, 0xf5, 0x2b, 0x55, 0x58, 0xf4, 0x4a, 0xc6, 0x22, 0x3a, - 0x80, 0x42, 0x5c, 0x93, 0xe8, 0x9d, 0x4c, 0x64, 0x74, 0x04, 0x45, 0x9d, 0x78, 0xa6, 0x32, 0x95, - 0x6d, 0x9d, 0x98, 0xd1, 0x13, 0x09, 0xa1, 0xea, 0x52, 0x27, 0xa6, 0x38, 0x85, 0x17, 0x5d, 0xcd, - 0x65, 0x4b, 0xae, 0x86, 0xe9, 0x8d, 0x47, 0x5d, 0x86, 0x5a, 0xf0, 0x34, 0x99, 0xc6, 0x64, 0x0b, - 0x97, 0x1e, 0x97, 0x34, 0x09, 0x11, 0x0f, 0x1b, 0xfe, 0x5f, 0xec, 0xe7, 0x2f, 0x6b, 0xf1, 0x37, - 0x38, 0x5a, 0x89, 0xe4, 0xda, 0x96, 0xe9, 0x52, 0xf4, 0x0e, 0x4a, 0xca, 0x62, 0x41, 0xe3, 0x15, - 0xf8, 0xf5, 0x4a, 0xac, 0x15, 0x9d, 0xc0, 0x99, 0x38, 0x5f, 0xfe, 0xc3, 0xc1, 0xf6, 0xa3, 0x04, - 0xd1, 0x36, 0x3c, 0x1d, 0xd4, 0xfb, 0x6f, 0x64, 0x2c, 0xf5, 0x7b, 0x43, 0xdc, 0x94, 0xf8, 0x1c, - 0x7a, 0x06, 0x7c, 0xb3, 0x3b, 0xec, 0x0f, 0x24, 0x9c, 0x6a, 0x39, 0xf4, 0x7f, 0x28, 0x4b, 0xef, - 0xa4, 0xe6, 0x70, 0xd0, 0xe9, 0x5d, 0xc8, 0x57, 0x43, 0x69, 0x28, 0xf1, 0x6b, 0xe8, 0x10, 0xf6, - 0x52, 0x65, 0xec, 0xd4, 0xad, 0x37, 0xa4, 0x2e, 0xbf, 0x8e, 0x3e, 0x85, 0xe3, 0xab, 0x61, 0xbd, - 0xdb, 0x19, 0xbc, 0x97, 0x7b, 0x2d, 0xb9, 0x2f, 0xe1, 0xb7, 0x9d, 0xa6, 0x24, 0xf7, 0x2f, 0xa5, - 0x66, 0xa7, 0xd5, 0x69, 0xd6, 0x7d, 0x1f, 0x7e, 0xc3, 0x8f, 0x7b, 0xd9, 0x1d, 0x9e, 0x75, 0x2e, - 0xe4, 0xde, 0x5b, 0x09, 0xe3, 0xce, 0x6b, 0x89, 0xdf, 0x44, 0xcf, 0x61, 0xff, 0xba, 0x87, 0xdf, - 0xb4, 0xba, 0xbd, 0x6b, 0x79, 0x01, 0xa0, 0x77, 0xd1, 0xea, 0x9c, 0xf1, 0x79, 0xb4, 0x0b, 0x28, - 0x06, 0xab, 0xf7, 0xfb, 0x9d, 0xb3, 0x8b, 0x73, 0xe9, 0x62, 0xc0, 0x3f, 0x69, 0x7c, 0xff, 0xcb, - 0x77, 0xaa, 0xc6, 0xa6, 0xde, 0xa8, 0xa2, 0x58, 0x46, 0x35, 0x28, 0x98, 0xe5, 0xa8, 0xd5, 0xe4, - 0x9f, 0x4d, 0xa5, 0x66, 0xd5, 0x1e, 0xbd, 0x54, 0xad, 0xea, 0xc3, 0xff, 0xbd, 0x51, 0x3e, 0xf8, - 0x7d, 0xfb, 0xe6, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7e, 0xd7, 0x52, 0xbe, 0x41, 0x0a, 0x00, - 0x00, + // 1242 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xeb, 0x72, 0xda, 0x46, + 0x14, 0x46, 0xbe, 0x10, 0x7c, 0x68, 0x8c, 0xbc, 0x89, 0x6d, 0x6c, 0x37, 0x89, 0xab, 0x5e, 0x92, + 0xb6, 0x13, 0xe8, 0xd0, 0x76, 0x9a, 0x76, 0x9a, 0x1f, 0x98, 0x88, 0xc0, 0x04, 0x1b, 0x7b, 0x81, + 0x5c, 0xfa, 0x47, 0xb3, 0x88, 0x45, 0xa8, 0xe8, 0x66, 0x69, 0x65, 0x9b, 0xe9, 0x4b, 0xf4, 0x47, + 0xfb, 0x28, 0x7d, 0x94, 0xf6, 0x77, 0x1f, 0xa0, 0x0f, 0xd1, 0xd1, 0xea, 0x82, 0x90, 0x21, 0x93, + 0x7f, 0xda, 0xb3, 0xdf, 0x39, 0xdf, 0xd1, 0xb9, 0xed, 0x81, 0xc7, 0x63, 0x63, 0xc6, 0xa8, 0x3e, + 0x32, 0xaa, 0x64, 0x64, 0xea, 0x56, 0xd5, 0x24, 0x4c, 0x9d, 0x90, 0xa1, 0x41, 0x15, 0x97, 0x7a, + 0xb6, 0xef, 0xaa, 0xb4, 0xe2, 0xb8, 0x36, 0xb3, 0xd1, 0x76, 0x0c, 0xac, 0x70, 0xe0, 0xe1, 0x51, + 0x46, 0x51, 0xb5, 0x4d, 0xd3, 0xb6, 0x42, 0xf0, 0x61, 0xd6, 0xaa, 0x6a, 0xf8, 0x1e, 0xa3, 0xae, + 0x42, 0x3c, 0x4f, 0xd7, 0x2c, 0x93, 0x5a, 0x2c, 0x02, 0x3e, 0x48, 0x80, 0xaa, 0xed, 0xd2, 0x2a, + 0xbd, 0xa1, 0xaa, 0xcf, 0xf4, 0xc4, 0xce, 0xc7, 0x8b, 0xd7, 0x1e, 0x55, 0x7d, 0x57, 0x67, 0xb3, + 0xf0, 0x56, 0xfa, 0x53, 0x00, 0xb1, 0x4f, 0xbc, 0x29, 0x8e, 0x3c, 0xed, 0x39, 0x54, 0x45, 0x22, + 0xac, 0xab, 0x8e, 0x5f, 0x16, 0x8e, 0x85, 0x27, 0x5b, 0x38, 0xf8, 0x0c, 0x24, 0x9a, 0xe3, 0x97, + 0xd7, 0x42, 0x89, 0xe6, 0xf8, 0x68, 0x0f, 0xf2, 0x26, 0x35, 0x6d, 0x77, 0x56, 0x5e, 0xe7, 0xc2, + 0xe8, 0x84, 0xca, 0x70, 0xc7, 0x63, 0xb6, 0x4b, 0x34, 0x5a, 0xde, 0xe0, 0x17, 0xf1, 0x11, 0x7d, + 0x0d, 0x3b, 0xd4, 0x99, 0x50, 0x93, 0xba, 0xc4, 0x50, 0x62, 0xcc, 0x26, 0xc7, 0x88, 0xc9, 0x45, + 0x2f, 0x94, 0x4b, 0xbf, 0x0b, 0xb0, 0x97, 0xf6, 0xab, 0xce, 0x98, 0xab, 0x0f, 0x7d, 0x46, 0x3d, + 0xf4, 0x33, 0x14, 0x46, 0x74, 0x4c, 0x7c, 0x83, 0x79, 0xdc, 0xc5, 0x62, 0xed, 0xb8, 0xb2, 0x18, + 0xd8, 0x4a, 0xf6, 0x8f, 0x70, 0xa2, 0x81, 0x9e, 0x41, 0xde, 0xd0, 0x4d, 0x9d, 0x79, 0xfc, 0x67, + 0x3e, 0x44, 0x37, 0xc2, 0x4b, 0x7f, 0x09, 0x70, 0xd0, 0x08, 0x93, 0xb0, 0xc4, 0xab, 0x77, 0x00, + 0x24, 0x39, 0x95, 0x85, 0xe3, 0xf5, 0x27, 0xc5, 0xda, 0x8f, 0x59, 0xdb, 0x2b, 0xd5, 0x2b, 0xf3, + 0x4f, 0xd9, 0x62, 0xee, 0x0c, 0xa7, 0x8c, 0x1d, 0x3e, 0x87, 0x52, 0xe6, 0x3a, 0xc8, 0xc7, 0x94, + 0xce, 0xe2, 0x0c, 0x4d, 0xe9, 0x0c, 0xdd, 0x87, 0xcd, 0x2b, 0x62, 0xf8, 0x34, 0xca, 0x51, 0x78, + 0xf8, 0x69, 0xed, 0x99, 0x20, 0x55, 0xa0, 0x2c, 0xc7, 0x35, 0x71, 0xe1, 0x53, 0x3f, 0xed, 0x35, + 0x82, 0x0d, 0x46, 0xb4, 0xd0, 0xdf, 0x2d, 0xcc, 0xbf, 0xa5, 0xa7, 0xb0, 0x9b, 0xe0, 0x23, 0x87, + 0x3b, 0x64, 0x48, 0x8d, 0x39, 0x85, 0x90, 0xa2, 0x90, 0xfe, 0x13, 0x60, 0xfb, 0xdc, 0xf0, 0x35, + 0xdd, 0xea, 0x5e, 0x51, 0xd7, 0xd5, 0x47, 0x14, 0x1d, 0xc1, 0x16, 0x23, 0xde, 0x54, 0x61, 0x33, + 0x27, 0x06, 0x17, 0x02, 0x41, 0x7f, 0xe6, 0xf0, 0x4b, 0x87, 0xc3, 0x15, 0x7d, 0x54, 0x5e, 0xe3, + 0xbc, 0x85, 0x50, 0xd0, 0x1e, 0x21, 0x03, 0xf6, 0x4d, 0xdd, 0xf3, 0x74, 0x4b, 0x53, 0x22, 0xd0, + 0x90, 0x4e, 0xc8, 0x95, 0x6e, 0xbb, 0xbc, 0x9a, 0xb6, 0x6b, 0xdf, 0x65, 0x43, 0xba, 0x48, 0x5d, + 0x39, 0x0d, 0xb5, 0x43, 0xe9, 0x49, 0xa4, 0x8b, 0x77, 0xcd, 0x65, 0x62, 0xa9, 0x06, 0xbb, 0x4b, + 0xf1, 0xa8, 0x00, 0x1b, 0xcd, 0x7a, 0xbb, 0x23, 0xe6, 0x50, 0x09, 0x8a, 0x83, 0x9e, 0xac, 0xbc, + 0x90, 0x9b, 0xf5, 0x41, 0xa7, 0x2f, 0x0a, 0x52, 0x17, 0x4a, 0x8b, 0x94, 0x41, 0x41, 0x6e, 0xd9, + 0xf1, 0x21, 0xca, 0xfc, 0xc3, 0xf7, 0xbb, 0x89, 0xe7, 0x0a, 0xd2, 0x3f, 0x6b, 0xb0, 0xff, 0xc6, + 0x76, 0xa7, 0x63, 0xc3, 0xbe, 0x9e, 0xc7, 0xdd, 0xb6, 0xc6, 0xba, 0x86, 0x1e, 0x43, 0xc9, 0x24, + 0x37, 0x8a, 0x43, 0x5c, 0x62, 0x18, 0xd4, 0xd0, 0x3d, 0x93, 0x87, 0x73, 0x13, 0x6f, 0x9b, 0xe4, + 0xe6, 0x7c, 0x2e, 0x45, 0x6d, 0x10, 0xe3, 0xc6, 0x56, 0x54, 0xdb, 0x62, 0xf4, 0x86, 0x45, 0xf5, + 0x9d, 0xf2, 0x24, 0xe8, 0xff, 0x4a, 0x2f, 0x82, 0x35, 0x42, 0x14, 0x2e, 0x79, 0x8b, 0x02, 0xf4, + 0x16, 0xf6, 0x5c, 0x72, 0xad, 0xd8, 0x3e, 0x73, 0x7c, 0xa6, 0x8c, 0x08, 0x23, 0x81, 0xc5, 0xb1, + 0xae, 0xf1, 0x46, 0x2f, 0xd6, 0x3e, 0xcd, 0xfe, 0x1a, 0x26, 0xd7, 0x5d, 0x0e, 0x7e, 0x41, 0x18, + 0x09, 0x1d, 0xc7, 0xf7, 0xdc, 0xdb, 0x42, 0x54, 0x81, 0xbc, 0x11, 0x14, 0x92, 0xc7, 0x73, 0x59, + 0xac, 0xed, 0x65, 0x2d, 0xf1, 0x32, 0xf3, 0x70, 0x84, 0x42, 0xcf, 0xa1, 0x48, 0x2c, 0xcb, 0x66, + 0x24, 0x88, 0x88, 0xc7, 0x47, 0x45, 0xb1, 0x76, 0x94, 0x55, 0xaa, 0xcf, 0x21, 0x38, 0x8d, 0x97, + 0xfe, 0xc8, 0x03, 0x3a, 0x0d, 0x46, 0xb1, 0x6e, 0x69, 0xa9, 0x92, 0x1f, 0x42, 0x99, 0x17, 0x67, + 0x3c, 0x9b, 0x95, 0x85, 0xb6, 0x0d, 0x28, 0xbe, 0x78, 0xdf, 0x48, 0x98, 0x5b, 0x6a, 0xe5, 0xf0, + 0x1e, 0x5b, 0x3e, 0xa2, 0xa6, 0x70, 0x14, 0x8f, 0xeb, 0x65, 0x34, 0x61, 0x66, 0xbe, 0xfc, 0xe0, + 0xe9, 0xd0, 0xca, 0xe1, 0x03, 0x75, 0xe5, 0xe4, 0x99, 0xc0, 0x61, 0x32, 0xf3, 0x95, 0xcb, 0xa0, + 0xc1, 0xd3, 0x5c, 0x61, 0xd2, 0x9e, 0x64, 0xb9, 0x56, 0x4d, 0x84, 0x56, 0x0e, 0x97, 0xe9, 0xaa, + 0x69, 0xa1, 0xc0, 0xfe, 0x9c, 0x29, 0xfe, 0x41, 0x9e, 0xac, 0x28, 0xa3, 0x9f, 0xaf, 0xa4, 0x49, + 0x0f, 0x92, 0x56, 0x0e, 0xef, 0xd2, 0xa5, 0x13, 0xa6, 0x0b, 0xe8, 0xd2, 0x27, 0x46, 0x50, 0xc5, + 0xf6, 0x58, 0xf1, 0xa8, 0x7b, 0xa5, 0xab, 0x34, 0x4a, 0xfc, 0xa3, 0x4c, 0x21, 0x5f, 0x84, 0xc0, + 0xee, 0xb8, 0x17, 0xc2, 0x5a, 0x39, 0x2c, 0x5e, 0x66, 0x64, 0xa8, 0x03, 0x62, 0x34, 0x47, 0xe6, + 0x1d, 0x9a, 0xcf, 0x9a, 0x5b, 0xd6, 0xa1, 0x41, 0x20, 0x4a, 0x4e, 0xa6, 0xd1, 0x29, 0x1c, 0x5c, + 0x47, 0x9d, 0xaa, 0xa4, 0x02, 0x11, 0x76, 0xc7, 0x1d, 0x6e, 0xf6, 0x71, 0xd6, 0xec, 0x8a, 0xd6, + 0x6e, 0xe5, 0xf0, 0xfe, 0xf5, 0x8a, 0xae, 0xc7, 0x80, 0x6e, 0x3f, 0xf6, 0xe5, 0x02, 0xb7, 0xff, + 0xc9, 0x8a, 0xa2, 0xa9, 0x27, 0xc0, 0x56, 0x0e, 0xef, 0xa8, 0x59, 0xe1, 0x49, 0x01, 0xf2, 0x8c, + 0xb8, 0x1a, 0x65, 0xd2, 0xdf, 0x02, 0x1c, 0x9f, 0xc6, 0x1b, 0xca, 0x3c, 0xb9, 0x21, 0xb7, 0xef, + 0xf2, 0xe6, 0x41, 0x27, 0x99, 0xd7, 0x2c, 0xa0, 0x96, 0xb2, 0xd4, 0xb7, 0x9b, 0x2b, 0xfd, 0x6c, + 0x05, 0x1b, 0xc2, 0xc8, 0x36, 0x89, 0x6e, 0x45, 0x4f, 0x52, 0x74, 0x0a, 0x36, 0x04, 0xc7, 0xb5, + 0x7f, 0xa5, 0x2a, 0x8b, 0x56, 0x87, 0xf8, 0x88, 0x0e, 0xa1, 0x10, 0xc7, 0x24, 0x5a, 0x1e, 0x92, + 0x33, 0x7a, 0x04, 0x45, 0x83, 0xf8, 0x96, 0x3a, 0x51, 0x1c, 0x83, 0x58, 0xd1, 0xde, 0x00, 0xa1, + 0xe8, 0xdc, 0x20, 0x96, 0x34, 0x81, 0x87, 0x1d, 0xdd, 0x63, 0x4b, 0x7e, 0x0d, 0xd3, 0x4b, 0x9f, + 0x7a, 0x0c, 0x35, 0xe1, 0x6e, 0xd2, 0x8d, 0xc9, 0xd3, 0xb4, 0x7d, 0x3b, 0xa4, 0x89, 0x89, 0xb8, + 0xd9, 0xf0, 0x47, 0xb1, 0x5e, 0xf0, 0x82, 0x49, 0xbf, 0xc1, 0xa3, 0x95, 0x4c, 0x9e, 0x63, 0x5b, + 0x1e, 0x45, 0x6f, 0x61, 0x5b, 0x4d, 0x07, 0x34, 0x7e, 0x17, 0xbe, 0x59, 0xc9, 0xb5, 0x22, 0x13, + 0x38, 0x63, 0xe7, 0xab, 0x7f, 0x05, 0xd8, 0xb9, 0xe5, 0x20, 0xda, 0x81, 0xbb, 0xfd, 0x7a, 0xef, + 0x95, 0x82, 0xe5, 0x5e, 0x77, 0x80, 0x1b, 0xb2, 0x98, 0x43, 0xf7, 0x41, 0x6c, 0x74, 0x06, 0xbd, + 0xbe, 0x8c, 0xe7, 0x52, 0x01, 0xdd, 0x83, 0x92, 0xfc, 0x56, 0x6e, 0x0c, 0xfa, 0xed, 0xee, 0x99, + 0x72, 0x31, 0x90, 0x07, 0xb2, 0xb8, 0x86, 0x8e, 0x60, 0x7f, 0x2e, 0x8c, 0x95, 0x3a, 0xf5, 0x13, + 0xb9, 0x23, 0xae, 0xa3, 0xcf, 0xe0, 0xf8, 0x62, 0x50, 0xef, 0xb4, 0xfb, 0xef, 0x94, 0x6e, 0x53, + 0xe9, 0xc9, 0xf8, 0x75, 0xbb, 0x21, 0x2b, 0xbd, 0x73, 0xb9, 0xd1, 0x6e, 0xb6, 0x1b, 0xf5, 0x40, + 0x47, 0xdc, 0x08, 0xec, 0x9e, 0x77, 0x06, 0x2f, 0xdb, 0x67, 0x4a, 0xf7, 0xb5, 0x8c, 0x71, 0xfb, + 0x85, 0x2c, 0x6e, 0xa2, 0x07, 0x70, 0xf0, 0xa6, 0x8b, 0x5f, 0x35, 0x3b, 0xdd, 0x37, 0x4a, 0x8a, + 0xa0, 0x7b, 0xd6, 0x6c, 0xbf, 0x14, 0xf3, 0x68, 0x0f, 0x50, 0x4c, 0x56, 0xef, 0xf5, 0xda, 0x2f, + 0xcf, 0x4e, 0xe5, 0xb3, 0xbe, 0x78, 0xe7, 0xe4, 0x87, 0x5f, 0xbe, 0xd7, 0x74, 0x36, 0xf1, 0x87, + 0x15, 0xd5, 0x36, 0xab, 0x3c, 0x60, 0xb6, 0xab, 0x55, 0x93, 0x3d, 0x56, 0xa3, 0x56, 0xd5, 0x19, + 0x3e, 0xd5, 0xec, 0xea, 0xe2, 0x8a, 0x3c, 0xcc, 0xf3, 0x9d, 0xf6, 0xdb, 0xff, 0x03, 0x00, 0x00, + 0xff, 0xff, 0xfe, 0x8c, 0xab, 0x41, 0x91, 0x0b, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.validate.go index c7eaec7bae..46e5312084 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.validate.go @@ -562,6 +562,46 @@ func (m *WorkflowExecutionConfig) Validate() error { // no validation rules for MaxParallelism + if v, ok := interface{}(m.GetSecurityContext()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return WorkflowExecutionConfigValidationError{ + field: "SecurityContext", + reason: "embedded message failed validation", + cause: err, + } + } + } + + if v, ok := interface{}(m.GetRawOutputDataConfig()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return WorkflowExecutionConfigValidationError{ + field: "RawOutputDataConfig", + reason: "embedded message failed validation", + cause: err, + } + } + } + + if v, ok := interface{}(m.GetLabels()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return WorkflowExecutionConfigValidationError{ + field: "Labels", + reason: "embedded message failed validation", + cause: err, + } + } + } + + if v, ok := interface{}(m.GetAnnotations()).(interface{ Validate() error }); ok { + if err := v.Validate(); err != nil { + return WorkflowExecutionConfigValidationError{ + field: "Annotations", + reason: "embedded message failed validation", + cause: err, + } + } + } + return nil } diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json index 5c9d1624a2..d5ff63ff14 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json @@ -4886,6 +4886,22 @@ "type": "integer", "format": "int32", "description": "Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness." + }, + "security_context": { + "$ref": "#/definitions/coreSecurityContext", + "description": "Indicates security context permissions for executions triggered with this matchable attribute." + }, + "raw_output_data_config": { + "$ref": "#/definitions/adminRawOutputDataConfig", + "description": "Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.)." + }, + "labels": { + "$ref": "#/definitions/adminLabels", + "description": "Custom labels to be applied to a triggered execution resource." + }, + "annotations": { + "$ref": "#/definitions/adminAnnotations", + "description": "Custom annotations to be applied to a triggered execution resource." } }, "description": "Adds defaults for customizable workflow-execution specifications and overrides." 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 c746c5e7c3..e676f25b9e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -6484,7 +6484,58 @@ definitions: spec: queueing_budget: "queueing_budget" workflow_execution_config: + raw_output_data_config: + output_location_prefix: "output_location_prefix" max_parallelism: 0 + annotations: + values: + key: "values" + security_context: + run_as: + iam_role: "iam_role" + oauth2_client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + k8s_service_account: "k8s_service_account" + tokens: + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + secrets: + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + labels: + values: + key: "values" cluster_assignment: affinity: selectors: @@ -6542,7 +6593,58 @@ definitions: spec: queueing_budget: "queueing_budget" workflow_execution_config: + raw_output_data_config: + output_location_prefix: "output_location_prefix" max_parallelism: 0 + annotations: + values: + key: "values" + security_context: + run_as: + iam_role: "iam_role" + oauth2_client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + k8s_service_account: "k8s_service_account" + tokens: + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + secrets: + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + labels: + values: + key: "values" cluster_assignment: affinity: selectors: @@ -6633,7 +6735,58 @@ definitions: spec: queueing_budget: "queueing_budget" workflow_execution_config: + raw_output_data_config: + output_location_prefix: "output_location_prefix" max_parallelism: 0 + annotations: + values: + key: "values" + security_context: + run_as: + iam_role: "iam_role" + oauth2_client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + k8s_service_account: "k8s_service_account" + tokens: + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + secrets: + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + labels: + values: + key: "values" cluster_assignment: affinity: selectors: @@ -6731,7 +6884,58 @@ definitions: spec: queueing_budget: "queueing_budget" workflow_execution_config: + raw_output_data_config: + output_location_prefix: "output_location_prefix" max_parallelism: 0 + annotations: + values: + key: "values" + security_context: + run_as: + iam_role: "iam_role" + oauth2_client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + k8s_service_account: "k8s_service_account" + tokens: + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + secrets: + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + labels: + values: + key: "values" cluster_assignment: affinity: selectors: @@ -13415,7 +13619,58 @@ definitions: spec: queueing_budget: "queueing_budget" workflow_execution_config: + raw_output_data_config: + output_location_prefix: "output_location_prefix" max_parallelism: 0 + annotations: + values: + key: "values" + security_context: + run_as: + iam_role: "iam_role" + oauth2_client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + k8s_service_account: "k8s_service_account" + tokens: + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + secrets: + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + labels: + values: + key: "values" cluster_assignment: affinity: selectors: @@ -13497,7 +13752,58 @@ definitions: spec: queueing_budget: "queueing_budget" workflow_execution_config: + raw_output_data_config: + output_location_prefix: "output_location_prefix" max_parallelism: 0 + annotations: + values: + key: "values" + security_context: + run_as: + iam_role: "iam_role" + oauth2_client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + k8s_service_account: "k8s_service_account" + tokens: + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + secrets: + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + labels: + values: + key: "values" cluster_assignment: affinity: selectors: @@ -21241,7 +21547,58 @@ definitions: spec: queueing_budget: "queueing_budget" workflow_execution_config: + raw_output_data_config: + output_location_prefix: "output_location_prefix" max_parallelism: 0 + annotations: + values: + key: "values" + security_context: + run_as: + iam_role: "iam_role" + oauth2_client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + k8s_service_account: "k8s_service_account" + tokens: + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + secrets: + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + labels: + values: + key: "values" cluster_assignment: affinity: selectors: @@ -21326,7 +21683,58 @@ definitions: spec: queueing_budget: "queueing_budget" workflow_execution_config: + raw_output_data_config: + output_location_prefix: "output_location_prefix" max_parallelism: 0 + annotations: + values: + key: "values" + security_context: + run_as: + iam_role: "iam_role" + oauth2_client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + k8s_service_account: "k8s_service_account" + tokens: + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + secrets: + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + labels: + values: + key: "values" cluster_assignment: affinity: selectors: @@ -27420,10 +27828,75 @@ definitions: format: "int32" description: "Can be used to control the number of parallel nodes to run within\ \ the workflow. This is useful to achieve fairness." + security_context: + description: "Indicates security context permissions for executions triggered\ + \ with this matchable attribute." + $ref: "#/definitions/coreSecurityContext" + raw_output_data_config: + description: "Encapsulates user settings pertaining to offloaded data (i.e.\ + \ Blobs, Schema, query data, etc.)." + $ref: "#/definitions/adminRawOutputDataConfig" + labels: + description: "Custom labels to be applied to a triggered execution resource." + $ref: "#/definitions/adminLabels" + annotations: + description: "Custom annotations to be applied to a triggered execution resource." + $ref: "#/definitions/adminAnnotations" description: "Adds defaults for customizable workflow-execution specifications\ \ and overrides." example: + raw_output_data_config: + output_location_prefix: "output_location_prefix" max_parallelism: 0 + annotations: + values: + key: "values" + security_context: + run_as: + iam_role: "iam_role" + oauth2_client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + k8s_service_account: "k8s_service_account" + tokens: + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + - idp_discovery_endpoint: "idp_discovery_endpoint" + name: "name" + client: + client_secret: + mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + client_id: "client_id" + type: {} + token_endpoint: "token_endpoint" + secrets: + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + - mount_requirement: {} + group_version: "group_version" + key: "key" + group: "group" + labels: + values: + key: "values" adminWorkflowExecutionEventRequest: type: "object" properties: diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_execution_config.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_execution_config.go index bbc97f92dd..9b7ecb8181 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_execution_config.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_execution_config.go @@ -13,4 +13,12 @@ package flyteadmin type AdminWorkflowExecutionConfig struct { // Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness. MaxParallelism int32 `json:"max_parallelism,omitempty"` + // Indicates security context permissions for executions triggered with this matchable attribute. + SecurityContext *CoreSecurityContext `json:"security_context,omitempty"` + // Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.). + RawOutputDataConfig *AdminRawOutputDataConfig `json:"raw_output_data_config,omitempty"` + // Custom labels to be applied to a triggered execution resource. + Labels *AdminLabels `json:"labels,omitempty"` + // Custom annotations to be applied to a triggered execution resource. + Annotations *AdminAnnotations `json:"annotations,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/openapi.go b/flyteidl/gen/pb-go/flyteidl/service/openapi.go index 46127f5bea..e558a3fc2b 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\xbd\x7b\x73\x23\xb9\x95\x27\xfa\xff\x7c\x0a\x6c\x79\x23\xba\xcb\x43\x49\xdd\xf6\x8c\xaf\x47\x13\x1b\xf7\xb2\x24\x56\x35\xb7\x55\x92\x2c\x51\xdd\xd3\x77\x39\xc1\x06\x33\x41\x12\x56\x12\xa0\x01\xa4\x54\xb4\xc3\xdf\x7d\x03\x07\x8f\x44\x3e\x99\x49\x52\xaf\x6a\xce\x44\xb8\x4b\xcc\x4c\x3c\x0f\x0e\xce\xf3\x77\xfe\xf1\x2f\x08\xbd\x93\x8f\x78\x3e\x27\xe2\xdd\x29\x7a\xf7\x87\xe3\xef\xde\xf5\xf4\x6f\x94\xcd\xf8\xbb\x53\xa4\x9f\x23\xf4\x4e\x51\x95\x10\xfd\x7c\x96\xac\x15\xa1\x71\x72\x22\x89\x78\xa0\x11\x39\xc1\xf1\x92\xb2\xe3\x95\xe0\x8a\xc3\x87\x08\xbd\x7b\x20\x42\x52\xce\xf4\xeb\xf6\x9f\x88\x71\x85\x24\x51\xef\xfe\x05\xa1\x7f\x42\xf3\x32\x5a\x90\x25\x91\xef\x4e\xd1\xff\x31\x1f\x2d\x94\x5a\xb9\x06\xf4\xbf\xa5\x7e\xf7\xbf\xe1\xdd\x88\x33\x99\xe6\x5e\xc6\xab\x55\x42\x23\xac\x28\x67\x27\x7f\x95\x9c\x65\xef\xae\x04\x8f\xd3\xa8\xe5\xbb\x58\x2d\x64\x36\xc7\x13\xbc\xa2\x27\x0f\xdf\x9f\xe0\x48\xd1\x07\x32\x49\x70\xca\xa2\xc5\x64\x95\x60\x26\x4f\xfe\x41\x63\x3d\xc7\xbf\x92\x48\xfd\x13\xfe\x88\xf9\x12\x53\x66\xfe\xcd\xf0\x92\xfc\xd3\xb7\x83\xd0\xbb\x39\x51\xc1\x9f\x7a\xb6\xe9\x72\x89\xc5\x5a\xaf\xc8\x47\xa2\xa2\x05\x52\x0b\x82\x4c\x3f\xc8\x2d\x11\x9f\x21\x8c\x4e\x05\x99\x9d\xfe\x2a\xc8\x6c\xe2\x16\xfa\xd8\x2c\xf0\x05\x8c\xe6\x3a\xc1\xec\xd7\x63\xbb\x4c\xd0\x72\x4c\x64\x24\xe8\x4a\xd9\xf5\xbe\x21\x4a\x50\xf2\x40\xc2\x0e\xcc\x44\x90\x9e\x88\xef\x4c\xae\x48\x44\x67\x94\xc4\x68\xba\x46\x94\xad\x52\x85\x04\xf9\x5b\x4a\xa4\x42\x33\x9a\x28\x22\x64\xae\x17\xbe\x22\x02\x56\x70\x18\xeb\x5e\x3e\x11\xd5\x87\xb6\xb3\x51\x85\x6f\x0b\x22\x57\x9c\x49\x22\x73\x8b\x80\xd0\xbb\x3f\x7c\xf7\x5d\xe1\xa7\xf2\x0c\xfa\x48\xa6\x51\x44\xa4\x9c\xa5\x09\x72\x2d\x85\x83\x31\x0b\xaa\xc9\x07\x97\x1a\x43\xe8\xdd\xff\x14\x64\xa6\xdb\xf9\xdd\x49\x4c\x66\x94\x51\xdd\xae\x34\x54\x1a\x8c\x36\xf7\xd5\x3f\xff\xa5\xea\xdf\xff\x0c\x66\xb4\xc2\x02\x2f\x89\x5e\x16\x4f\x57\xe6\xff\x0a\x73\xd1\x94\xa0\x3b\xcf\xa8\xa5\x38\xf0\xc2\x6c\x2f\xf1\x92\xe8\x9d\xd7\xdb\x65\xbf\x80\x7f\x0b\x22\x79\x2a\x22\x82\xa6\x24\xe1\x6c\x2e\x91\xe2\xa5\x35\xa0\xd0\x82\x26\xe2\xe2\x13\xbd\x95\x54\x10\xbd\x57\x4a\xa4\xa4\xf0\x54\xad\x57\x30\x48\xa9\x04\x65\xf3\x70\x29\xfe\xd9\x6b\x35\x35\x43\xfb\x1d\x66\x66\x3e\xa8\x9d\xd8\x98\xf5\xdd\x2b\x11\x66\x68\x4a\x90\x3e\xf1\x34\x26\x82\xc4\x08\x4b\x84\x91\x4c\xa7\x92\x28\xf4\x48\xd5\x82\x32\xfd\xb7\x21\xdf\xc8\xad\xd9\xeb\x59\x1b\xf8\x67\xf3\xca\xdc\x49\x22\xf4\xc0\x1f\x68\x4c\x62\xf4\x80\x93\x94\xa0\x19\x17\xb9\xe5\x39\x1e\xb3\xd1\x42\xaf\xc3\x72\x4a\x19\x9c\x3c\xbd\x96\x8e\x42\xfe\xd5\x2d\xd7\xbf\x22\xdd\x1f\x4a\x19\xfd\x5b\x4a\x92\x35\xa2\x31\x61\x4a\x9f\x6b\x59\x6c\xed\x5f\x39\xf4\x8f\x13\x74\x84\xf4\x3a\x13\xa1\x60\xbd\x39\x53\xe4\x8b\x92\xe8\x08\x25\xf4\x9e\xa0\x6f\x2e\xa8\x54\xa8\x7f\x3d\xfc\xa6\x87\xbe\xb9\xc8\x18\x87\xfc\xe6\x19\x56\xd8\xff\xfb\xbf\x83\xa3\xa7\xf0\xbc\x78\xe8\xde\xf5\xf5\x69\xbe\x35\x17\x50\xd6\xc2\x7f\xff\x4b\xd8\x8e\xdd\xaf\x66\xae\x9e\xb1\x74\xcb\xcf\xdb\x72\x71\x58\xa6\x3c\x03\x97\x7a\x87\x76\xe5\xdf\xa5\xdb\xa1\x82\x79\xcb\x1d\xb9\xb7\x1e\x7b\x91\x7d\xcb\xb7\xc5\xbf\xf5\x14\x9e\x9a\x87\xef\xc2\xc0\xb1\x82\x93\x85\x29\x33\x07\xd1\x9f\x4b\x21\xf5\x59\x74\x27\xe4\x95\xb0\xad\x5d\xf8\x79\x30\xb3\x80\xa5\x3b\x4e\x1d\xac\xca\x2b\x9c\x77\x42\x97\x74\xd3\xfe\x0e\x59\xac\x85\x47\xcb\x50\x59\xba\x9c\x12\xa1\x97\xc1\xb1\x56\x98\xed\x54\xb3\x5a\x95\x0a\x46\xe2\x16\xd3\xfc\x5b\x4a\xc4\xba\x61\x9e\x33\x9c\xc8\xba\x89\x52\xa6\x88\x96\xd4\x0b\x8f\x67\x5c\x2c\xb1\xb2\x2f\xfc\xe9\xdf\xba\x2e\x84\xe2\xf7\x64\xd3\xfe\x0f\xcd\x6e\x46\x58\x02\x19\x2c\xd3\x44\xd1\x55\x42\xd0\x0a\xcf\x89\xb4\x2b\x92\x26\x4a\xf6\xe0\x35\xad\x1d\x10\x71\xe4\x6f\x39\xe8\xc1\xdd\xee\xa9\x84\x5f\xd0\xcc\x33\x3b\x46\xbe\x28\x68\x69\xcc\xe0\x7e\x87\x25\x0a\x6f\xad\x27\x58\xca\xed\x68\x46\x72\xa1\x26\xd3\xf5\xf1\x3d\x29\xf5\x5b\x4b\x39\x98\x21\xac\x94\xa0\xd3\x54\x11\x3d\x6f\xdd\x86\xbb\x9f\x81\x3d\x1a\x21\xa0\x0d\x6b\x78\xb9\x09\xc7\x54\x90\x08\xe6\xd6\xe5\xc0\xf8\xaf\xf4\xbc\xb5\x26\xb6\x36\xb3\xbf\x27\x6b\x90\x79\x2a\x56\xc0\x6f\xf9\x98\x8d\x19\x3a\x42\xe7\x83\xdb\xb3\xc1\xe5\xf9\xf0\xf2\xd3\x29\xfa\xb0\x46\x31\x99\xe1\x34\x51\x3d\x34\xa3\x24\x89\x25\xc2\x82\x40\x93\x24\xd6\x72\x8d\x1e\x0c\x61\x31\x65\x73\xc4\x45\x4c\xc4\xd3\x2d\x63\xe1\x29\x61\xe9\xb2\x70\xaf\xc0\xef\xd9\xe8\x0b\x5f\x68\x31\xc6\x3f\xca\x3d\xf9\xef\xd2\x02\xc3\x8c\x75\xdf\x41\x6b\xcf\x26\x38\x45\x0b\x9a\xc4\x82\xb0\x13\x85\xe5\xfd\x84\x7c\x21\x51\x6a\xee\xe4\x7f\xe4\x7f\x98\x68\xe9\x97\xc7\x24\xff\x4b\xee\x8f\x4c\xdc\xea\xfc\xa9\xd7\xb7\x3b\x7f\x09\xda\x79\xbb\xef\xe0\x17\x1a\x57\xbe\x0d\xbf\x6c\x98\x83\x7b\xa7\x61\xb0\xee\x95\xda\x51\xb9\x17\xac\xb0\x57\xf9\x8e\x20\x4a\xac\x27\x58\x29\xb2\x5c\xa9\x8e\x96\x07\x8c\x12\x2d\xbb\x36\xc9\xaa\x97\x3c\x26\x03\xd7\xdf\xaf\x56\x04\x35\xc2\xa6\xe1\x5a\x33\x22\x08\x8b\x48\x7d\x0b\x23\x2c\xef\xb3\x16\x36\x0b\xbc\x40\x63\x48\x2f\x3f\xca\x08\xac\xd4\x71\x26\xf6\xea\x25\xc9\xde\xdc\x24\xec\xe6\xe6\x23\x3f\x72\xa1\x87\xf7\x16\x04\xde\xdc\xc0\x9f\x43\xe6\xdd\xf6\x44\x7f\x75\x56\x8e\x2d\xf9\xd3\xc1\x26\xb2\xfb\x4a\xb6\xb5\xa0\x70\x81\xe4\x5a\x2a\xb2\xdc\x68\x4b\x79\x3b\x0b\x61\x2f\xa0\xd7\x3a\xe0\xc2\x1d\xf8\x1b\x38\xf5\xf9\x1b\xfd\x70\xbc\x3b\x2c\xd9\xbe\x2c\xa1\xaf\x7d\x9e\xce\xdb\xd5\x3c\xd5\x5b\xb7\x7d\x81\xbb\xe7\x4d\x4c\x33\x27\x6b\xee\x7b\x90\x4f\x64\xce\xa8\xdd\x2b\xb7\xda\x13\x18\xc0\x06\x45\x36\x6f\x4b\xf7\xe7\x4f\x7f\x1a\x5a\x80\x8c\xb9\x4f\x2d\xa8\x0c\x8c\x61\x28\xe2\xc2\xc8\x82\xb1\x3d\xef\x46\x97\xed\x8f\xfa\xb7\x83\xd1\x29\xea\xa3\x18\x2b\xac\x0f\xb8\x20\x2b\x41\x24\x61\x0a\xec\x04\xfa\x7b\xb5\x46\x4b\x1e\x93\xc4\x68\xb4\x1f\xb5\x64\x8d\xce\xb1\xc2\x67\x58\xe1\x84\xcf\x8f\x51\x1f\xfe\xd4\x1f\x53\x89\x70\x22\x39\xc2\x8e\xac\x48\xec\x9a\xc0\x2c\x76\xac\x05\xa3\x88\x2f\x57\x34\xf1\x7e\x04\x6f\xbc\xa1\x2c\xa6\x0f\x34\x4e\x71\x82\xf8\x54\x73\x15\xad\x81\x0f\x1e\x08\x53\x29\x4e\x92\x35\xc2\x49\x82\x6c\xb7\xee\x05\x24\x17\x3c\x4d\x62\xdd\xae\x1b\xa5\xa4\x4b\x9a\x60\xa1\x55\x7c\x33\xda\x2b\xdb\x16\x1a\x2d\x88\x1f\x2b\x8c\x4b\xaf\xe6\x12\xdf\x13\x89\xa8\x42\x2b\x2e\x25\x9d\x26\xd9\x99\xbf\x1b\x22\x18\xf7\xd9\xc5\x10\xec\x05\x91\x42\xdc\xf0\x50\xd7\xb9\xb5\x0f\xb9\x1e\x97\x98\x31\x02\x1d\x73\xb5\x20\xc2\x76\x6f\x5f\x7e\x69\xd5\xff\xee\xf2\xf6\x7a\x70\x36\xfc\x38\x1c\x9c\x97\x75\xff\x51\xff\xf6\xc7\xf2\xaf\x3f\x5f\xdd\xfc\xf8\xf1\xe2\xea\xe7\xf2\x93\x8b\xfe\xdd\xe5\xd9\x0f\x93\xeb\x8b\xfe\x65\xf9\xa1\x25\xab\xd6\x66\x84\x70\x64\x1d\xcf\xd6\xc1\x66\xfa\x54\x36\xd3\xde\xd7\x6b\x34\xb5\x4e\xa9\xf6\x06\x53\x6f\xa3\xb0\x5f\xa2\x15\x96\xd2\x48\x46\x66\x04\xc7\x63\xf6\x99\x0b\xcd\xc0\x66\x5c\xf3\x08\x2d\x3d\x29\x91\x46\x8a\xb2\xb9\xff\xe8\x14\x8d\xd3\xef\xbe\xfb\x63\x74\x41\xd9\x3d\xfc\x8b\xbc\xc6\xc5\x39\x58\x94\x0f\x16\xe5\xdf\x96\x45\x59\x8b\x3e\x27\xa1\x21\x79\xbf\xc1\x55\x5a\xb8\x00\x9f\xb8\x16\x25\x78\xaa\xf4\x3f\x75\x97\x40\x1e\x0d\x21\x56\xed\x0c\x96\x3e\xc2\xaa\xa6\x0f\xc1\x97\x20\xc8\x7d\xa1\x12\x98\xd1\x23\x17\xf7\xb3\x84\x3f\xb6\x33\x57\x7e\x22\xca\x0f\x43\x0b\x4e\x6f\xc1\x4a\xf9\xb3\x9d\xa1\x1f\xf8\x27\xa2\xf4\xd8\x6f\x6c\x2f\x87\x60\xab\x43\xb0\xd5\xcb\x06\x5b\xbd\x2a\x53\xe1\xd3\xb3\xd6\xbc\x5d\xd1\xf0\xd7\x1a\x3f\x5c\xad\x9b\xad\xc6\x8b\x16\x38\xc9\x9e\x85\x27\xe7\x5d\x51\xfb\xe4\xcb\x79\x67\xd3\x06\x9e\x9c\x1b\xc6\x5b\xe1\xcb\xb9\x41\x3f\x3f\x4f\xfe\x4d\xf8\x89\x0e\x6e\xa0\x2d\x17\xea\x4d\xb2\xee\x96\xb7\xd2\xb3\x39\x71\x9e\xfe\x2a\x29\xc5\x7c\x74\x09\xf2\xe8\x10\xd5\xd1\x3a\x8c\x63\x43\xdc\x46\x65\xa0\x46\x55\x64\x46\x39\x14\xa3\x32\xf6\x62\xb7\x60\x8b\x6d\x6f\xbd\xf6\xe1\x13\x5d\x6f\xbd\xf6\x81\x13\x9f\x88\xca\x0d\xe3\xad\xdc\x7a\xb9\x41\x3f\xff\xad\xf7\x1b\x8d\x97\x38\x04\x48\x3c\xe1\xd2\x7d\xed\x77\xe5\xeb\x0d\x81\xf8\x0d\xc4\x3c\x1c\x82\x1c\x3a\xad\xd1\xd7\x15\xd5\xf0\xb5\x86\x31\xbc\xcd\xb8\x85\x43\xa0\xc2\x21\x50\xe1\x25\x3c\x4a\x6f\x2f\x50\xe1\x49\x15\x5f\xa2\xc9\x4a\x82\x15\x35\x54\x6e\xde\xad\xb8\xac\xd7\xf7\x42\xe7\x75\x85\x5e\x07\x6d\xe6\xad\x99\x40\xbd\xbf\xa2\x05\x96\x88\x47\x51\x2a\x0a\x2e\xda\xe2\x29\x3f\x13\x04\x2b\x7d\x44\xf2\x86\x4b\x04\x2d\x23\x41\x22\x2e\xc0\x49\x89\xd1\x6a\x81\x25\x41\x4a\x60\x26\xe9\x26\x2d\xcf\xb4\x0a\xe3\xd2\xed\xbc\x05\x05\xaf\xbc\x88\xcf\xa5\xde\x4d\x79\x5c\x3a\x90\xe6\xac\x56\x3d\x69\xbe\x49\xf6\x36\x75\x48\xfb\x6d\x33\xf3\x27\x3c\x2a\xfa\xd6\xda\xf3\x51\xc9\xa9\xf1\xdb\x1e\x95\xbc\xb5\x63\x2f\x47\x05\xc6\xf5\x56\x8e\x4a\x79\x11\x7f\x33\x47\xa5\x6a\xea\xaf\xe1\xa8\xb8\x70\x80\x3d\x1f\x97\x92\x0f\x7e\xdb\x23\x53\x0e\x57\xd8\xcb\xb1\xf1\xe3\x7b\x2b\x47\xa7\x7a\x41\x7f\x33\xc7\xa7\x6e\xfa\x2f\x7b\x84\xbc\x1f\xa2\xf5\xe1\x19\x09\x3a\x9f\x13\x61\x34\xa3\x48\x93\xe2\x66\xa8\xa5\xcc\xf2\xbe\xdd\x81\xd9\x7c\x1a\x7c\x0f\x6f\xe1\x24\xf8\xc1\x9a\xb1\xff\x66\x8e\x40\x69\xde\xaf\x84\xf6\x4f\x34\x27\x7e\x00\xb4\xb6\x76\x67\xe0\x86\x00\xe1\xc3\x05\xb2\x12\xe4\x81\xf2\x54\x26\xeb\x23\x91\xb2\x2a\x6e\x0f\x46\x82\x47\x9a\x24\x88\xb3\x64\x8d\xa4\xc2\x42\xb9\xc7\x6c\x6e\x3c\x4a\xfa\x30\x25\x58\x2a\x74\xcf\xf8\x23\x43\x33\x4c\x93\x54\x10\xb4\xe2\x94\xa9\xe3\x31\x1b\x32\x74\x63\xc6\x08\x9a\x77\x0f\xa5\x52\x1f\xc1\x08\x33\xc6\x15\x8a\x16\x98\xcd\x09\xc2\xcc\x41\xd7\x64\x94\x81\xb8\x40\xe9\x2a\xd6\x07\x4b\x77\x51\xb0\x31\x65\x07\x6c\xcc\x46\x60\xc5\x90\x88\x7c\x51\x82\x2c\x49\xb2\xd6\x7d\x68\xda\x57\x1c\xd9\xf5\x31\x43\xb5\x06\x71\x22\x04\x17\x12\x74\xf6\xe9\xfa\xef\x98\x29\xca\x08\x02\x35\x53\x1a\xe0\xa3\x23\x74\xc1\x25\xc4\x64\xff\xf8\x67\x89\xa2\x24\x95\x8a\x88\x1e\x9a\xa6\x73\x89\x28\x43\xab\x04\xab\x19\x17\x4b\x3d\x42\xca\xa4\xc2\x53\x9a\x50\xb5\xee\xa1\x25\x8e\x16\xa6\x2d\x58\x03\xd9\x1b\xb3\x98\x3f\x32\xa9\x04\xc1\xbe\x77\xf7\x10\x7d\x1b\x3e\x33\x04\x20\xdf\xf7\xc0\x70\x4f\x97\xab\x64\x1d\x0e\x3f\x48\x84\x86\x3d\xd1\x8d\x90\x18\x4d\x49\x84\x53\x69\x0d\x3b\x4a\xac\x11\xf9\xb2\xc0\xa9\x84\xbd\xd3\xd3\xb3\x56\x8f\x88\x2f\x57\x09\x51\x04\xd1\x19\x52\x82\x92\x18\xe1\x39\xa6\x7a\xe9\x6e\x49\x43\xe2\xb6\x27\x7a\xbb\x81\x96\xea\x7f\x05\xcb\xc7\x92\x0b\x82\x62\xa2\x30\x4d\x64\xb3\x53\xf2\x59\x09\x0e\x3d\x39\xbd\xa1\xd7\x4b\x6e\xe8\x55\x53\x5b\xc3\x4d\x68\x77\xec\x70\x15\xbe\xa5\xab\x30\xcf\x15\x5e\xc5\x5d\x68\x40\x22\xf6\x20\x10\x32\x6b\x15\x8f\x70\xb2\xa3\x6c\x78\x63\x07\xd5\x59\x3a\x74\x1f\x1e\x0e\xc5\xdb\x3a\x14\x66\xd7\x5e\xcf\xa9\xa8\x4b\xa8\xd8\x3b\x52\x4c\x17\x8c\x97\x86\x8c\x08\x89\x96\x58\xe9\x8b\x6d\x6e\xaf\xe8\x96\x28\x86\x19\xa8\xcb\x9b\x3a\x28\xcf\x81\xe4\xf2\x75\x47\x2c\x1c\x22\x15\x7e\x83\x08\xb4\xaf\x26\x81\xf1\x90\x03\xfd\x44\x39\xd0\x54\x1e\x72\xa0\x0f\x39\xd0\x6d\x17\xe8\x90\x03\x7d\xc8\x81\x7e\xb3\x39\xd0\x4f\x9a\xfe\xbc\xbf\x24\xe7\xfd\x64\x32\xbf\x29\xe9\xfc\x20\x99\x1f\x24\xf3\x43\xba\xb2\x9f\xda\xbe\xb8\xa0\xfb\xfa\x5d\x4c\x12\xa2\x48\xbd\x81\x8e\x88\xa5\x56\x38\xcc\x0d\x4f\x99\x16\x05\xe7\x82\x48\xb9\x2b\x4f\xf3\x0d\x87\xe5\x15\x2a\xfc\x11\x19\xca\xac\x27\x4b\xb0\xeb\x34\x31\x3b\xdf\xf6\xdb\x64\x79\x7e\xf8\x07\xc8\x86\x03\x0f\x3c\xf0\xc0\x6d\xa6\xf6\x7a\xcc\xd1\xc1\x61\x7e\x2e\x7b\xb4\xe7\xed\xab\xb4\x5e\x38\xbd\x33\x8e\xd6\x8c\xd1\x1a\x0a\x87\xac\x54\xee\x0f\xb7\xa5\xf3\x1d\x79\x7d\x97\xbe\x9a\xf8\xba\x69\xe7\x6d\x32\x75\x33\xf6\x03\x47\x3f\x70\xf4\x03\x47\x7f\xdb\x1c\xdd\x9d\xe4\x17\x75\x2f\x06\x85\xd3\x26\x34\xde\xa5\x76\x5a\xfb\x3a\x14\x78\x49\xe2\x01\x64\x89\xf9\x1c\x37\xf1\xab\xfe\x24\xac\x8a\xe6\xf2\xc1\xda\x3b\x20\xc3\xaf\xb3\x55\xcf\x95\xb2\xda\xce\x1f\x99\x15\x28\x1b\xc6\x6f\xc2\x25\x59\xb9\xc2\x5f\x49\x71\xb5\xd7\xc1\x45\x9e\xbd\xb6\xda\xeb\x98\xf6\xc1\x45\x76\x28\xad\x76\x70\x02\xb5\x9c\xf0\xc1\x09\xf4\x7a\x9d\x40\x2d\xb6\xf1\x49\x3c\xbb\xcf\x7c\x3c\x9f\x4b\x74\x6c\x9f\xb9\xe3\x12\x6c\x58\x8c\xd2\x55\xc2\x71\xdc\xb2\x3a\x7a\x20\xd1\xb5\x48\xdf\x61\x31\x12\x64\x4e\xa5\x22\x42\xef\x4b\xa5\x60\xb8\x39\x9f\xe7\xad\x96\x41\x6f\x1d\xb1\x19\x76\xfb\xee\xdf\x5a\x0c\xff\xc6\xde\xd9\xc0\x89\xa6\x38\xf6\xf5\x89\x41\x7c\x5b\xe2\x35\x5a\xe0\x07\xe2\xa2\xcc\x1f\x70\x42\x63\x5c\x5c\xeb\xc2\x0c\x9b\x06\xf4\x1f\xdd\x06\x84\xf3\xc3\xf1\x05\xed\x64\x3e\x0a\xd8\x02\x54\xc0\x3b\x0b\xad\x95\x27\x82\xe0\x78\x8d\xa6\x84\x30\x4f\x36\x15\xf7\x49\xcd\x98\xf7\x22\x38\xbf\xb8\x56\x5a\xa6\x9e\xd7\xa2\x96\x3e\x63\xdc\x6b\x35\xbf\xd9\x5d\x07\xdd\x5d\xf1\x94\x7f\x78\x5b\x2c\xe8\x10\x0b\x7b\xb0\x4d\xbe\xbc\x6d\xf2\x10\x0b\x7b\x50\xf4\x5f\x99\xa2\x7f\x88\x85\x3d\xc4\xc2\x1e\xcc\x20\xcd\xd3\x3e\x98\x41\xbe\x8a\x58\xd8\x56\x32\xfc\x96\xd1\xb0\x6f\x5c\x9a\x3f\x08\xf3\xee\xbd\x83\x30\x7f\x10\xe6\xbf\x52\x61\xfe\x75\xac\xf0\x41\x92\x3f\x48\xf2\x07\x49\xfe\x20\xc9\x1f\x24\xf9\xbd\x2f\xe3\x41\x92\xaf\x96\xe4\xe1\x5f\xae\xd8\x4e\x57\xb1\xbe\xa3\x38\xdf\x39\xdd\xad\xbb\x33\xf0\x13\x51\x6f\xd5\x13\x78\x90\xda\x0f\x52\xfb\xeb\x96\xda\x5f\xcd\x84\xbe\xbe\x42\x19\x87\x52\x13\x87\x52\x13\x87\x52\x13\x4f\x5c\x6a\xc2\x7d\xdd\x22\x47\xca\x1e\x2e\x85\x55\x2a\x0d\x56\x71\x16\x6c\xd2\x4a\xec\x69\x91\x1a\x55\xe8\x61\xb3\xdc\x83\xfa\x0a\x2d\xb9\xd6\xdd\x18\xc9\xbd\xe3\x18\x9c\x09\xac\x99\xd3\x07\xc2\x90\x4b\x0e\xe8\xd9\x6b\xac\x07\xc6\x94\x7f\xfa\xc3\x67\x92\x6f\xb1\x42\x18\x29\xba\x24\xc7\x68\x38\x33\xdc\x22\xd2\xa7\x4b\x12\x25\x0b\xd1\x58\x86\xf2\xe1\x23\x16\x67\x63\x75\x7d\xd3\x2c\x38\xc7\xbc\xd6\x73\xcc\x36\x4d\x94\x61\xbd\xae\x71\x40\x1a\x9d\x7a\x0e\x05\x07\x6d\x49\x44\xe2\xbe\xcc\x75\xeb\x5e\x5e\xe2\x58\x33\x86\x60\x08\x59\x96\x70\xf8\x3e\xdc\xe9\x54\xfa\xf0\xa2\xdc\xf7\xe6\x6b\x80\x2b\x05\x78\x51\x80\x55\x6f\x35\x8c\x05\x44\xbf\x69\x11\x2f\x4e\x13\x82\xb0\x94\x3c\xa2\x18\xd4\x18\x23\x03\x20\xaa\x9c\xa5\xc1\xbd\xe4\xba\x8e\xa9\xc4\xd3\x84\xc4\x76\x8d\x49\x16\xed\xd4\x38\x72\x2a\xd1\x94\xe8\x25\xd6\x6c\x2a\xbf\xfa\x0b\x23\x81\x54\x8c\x26\x18\x0a\x29\x8f\x84\x30\x33\x90\x06\x09\xda\x10\xe7\x5b\x15\xa2\x0f\x19\x77\xfe\xe9\x41\xa4\x3e\x88\xd4\xbf\x51\x91\xfa\x15\x45\x68\xbe\x8a\xc4\x41\xf0\x81\x6a\xce\x3f\xf1\x86\x4d\xd9\xd6\xd6\x73\x41\xa5\x92\x28\x4a\xa5\xe2\xcb\x7a\xc9\xe7\xb3\xeb\xa1\xef\x3b\x38\xe3\x6c\x46\xe7\xa9\xb9\x5b\x7e\xb5\xb2\x89\x3f\xd1\x99\x9a\xb2\x5e\x91\x76\x86\x21\x6f\xb7\xde\xd4\x59\x65\x3e\x62\x85\x93\xb7\xa2\x9d\x37\x71\xdb\x55\x0f\xfd\xb9\x2e\xbd\x2e\xca\x6a\x66\x1f\xb7\x9a\xa6\xd6\x2f\x26\x37\x83\xdb\xab\xbb\x9b\xb3\xc1\x29\xea\xaf\x56\x09\x35\x2e\x2b\x43\x61\xf4\xef\x7a\x52\xa6\x6a\x94\x27\x11\x2b\x10\x19\x30\x77\xf0\x91\x69\x7d\x10\x1d\xa1\xb3\x8b\xbb\xdb\xd1\xe0\xa6\xa6\x41\x4b\x12\x80\x38\x40\x96\xab\x04\xe4\xa3\xfb\x74\x4a\x04\x23\x5a\xc2\xb7\x90\xef\x99\xe7\xcc\x34\x3a\xf8\xaf\xc1\xd9\xdd\x68\x78\x75\x39\xf9\xcb\xdd\xe0\x6e\x70\x8a\x1c\x6d\xe9\x66\xf5\xb8\xf4\x28\xe2\x35\xc3\x4b\xad\x75\xe7\xcb\x5b\xfd\x2d\x25\x29\x88\x63\x74\xce\x96\x04\x2a\x31\xe4\x5a\x74\x03\xbe\xe8\x7f\x18\x5c\xe4\x5b\x5e\x90\x10\x87\x1e\x25\x78\x4a\x12\xeb\xca\x03\xef\x94\x3e\x3f\x01\x62\xbf\xf1\xf1\xa5\x66\x55\xff\x72\xd7\xbf\x18\x8e\x7e\x99\x5c\x7d\x9c\xdc\x0e\x6e\x7e\x1a\x9e\x0d\x26\x56\x93\x3a\xeb\xeb\x7e\x73\x3d\x59\x85\x0b\xfd\x2d\xc5\x89\xd6\xc8\xf9\xcc\x21\xd3\xa3\xc7\x05\x61\x28\x65\x40\x71\x46\xcd\x07\xad\x24\x84\xe5\x31\x33\xba\xbe\xb8\xfb\x34\xbc\x9c\x5c\xfd\x34\xb8\xb9\x19\x9e\x0f\x4e\xd1\x2d\x49\x40\x11\x76\x8b\x0e\xbb\xb8\x4a\xd2\x39\x65\x88\x2e\x57\x09\xd1\xab\x81\x2d\x0e\xc4\x02\x3f\x50\x2e\x72\xda\x0a\xac\x23\xb0\x02\x68\xdf\x29\x9c\x93\x60\xe9\xae\x2e\x3f\x0e\x3f\x9d\xa2\x7e\x1c\xfb\x39\x48\x68\x23\x47\x39\x0e\x4d\xe8\xa8\x84\x26\x14\x61\x13\x10\x02\x05\xda\x1f\x88\x10\x34\x26\x05\x3a\xea\xdf\xde\x0e\x3f\x5d\x7e\x1e\x5c\x8e\x60\xc5\x94\xe0\x89\x44\x0b\xfe\x08\x5e\x20\x98\x21\x38\x87\x1e\x30\x4d\xa0\x33\xb7\x59\x9c\xa1\xc7\x05\x05\xcf\x21\x54\x28\xf0\x3d\x1b\x9b\x84\x48\xcb\x49\x15\xcf\xad\xf5\xe7\x0e\x5e\x59\x55\x2f\x9e\xa4\xf2\x1b\x85\x63\xd1\xf4\x42\x8e\xca\xcb\x2f\x6e\xa2\xd6\xf2\x17\x05\x72\xab\x37\x50\x94\xe8\xa5\x7e\xa6\xd9\x5e\xb7\xb6\x4f\xe4\xd7\xf0\xd9\x6e\x6f\xcd\x78\xe3\x89\xb3\x53\x9d\xfc\x23\xc7\x80\xff\xb9\xc7\x68\x2d\x93\xa0\xd3\x88\x5d\x18\x64\xab\xff\x6a\xaf\xd9\x96\x97\x77\xf0\x65\xd5\x87\x65\x3f\x4e\xf0\xc1\x5b\xb8\x95\xc3\xe1\xbe\xa2\x1b\xf8\x26\x94\xb3\x9c\xb8\xbe\x24\x0a\xc7\x58\x61\xcd\xd7\xe6\x44\x1d\xa3\x2b\x06\xcf\x46\x58\xde\xf7\x90\x2b\x3c\x86\xb8\x40\x99\x20\xfb\x0c\x09\xee\x6f\xc4\x80\xd9\x5d\xb9\x3a\x18\x09\x0e\x46\x82\xea\x95\x39\x44\xcb\xd5\xac\xf0\xbe\x6e\xd4\x4e\x36\xff\xfd\x5d\x7c\x81\x89\xdf\x05\xbe\x14\x6c\xb4\xb9\x1b\x71\xa3\x3d\xf6\xed\x5e\x86\xcf\x6b\x91\xdd\xeb\xd5\x68\xea\x92\x1d\xee\x3d\xf3\x7f\x87\x7b\xef\x70\xef\x1d\xee\xbd\x57\xb0\xc2\x2f\x6e\xdd\xae\xe0\xee\x2f\x6a\xde\xde\xa4\x20\x6f\x0d\x93\x97\x29\xc4\x5d\x80\xf2\x7e\x6d\x83\x87\x57\x61\xd6\x2e\x6b\xc8\x12\xc9\x05\x16\xa6\xe0\x77\xc4\x97\x4b\xce\xf2\x76\xf3\x1e\xf2\x4e\x7e\x30\x4a\x6e\x04\x53\xd5\x94\x9d\x75\x43\xdf\x86\xbd\x3b\x58\x97\xe7\xc8\x6e\xda\xab\x08\x61\xd2\x06\x0e\xfa\xf5\x13\xca\x19\x07\x1c\xc3\xbd\xe2\x18\xbe\x8e\xb9\x3e\x49\x26\xd4\xfe\x6d\xf0\x6f\x23\xfb\xe9\x00\x58\x78\xc8\xef\x39\xe4\xf7\xc0\xef\x07\xc0\xc2\xfd\x51\xeb\xd3\xca\xf4\x3c\x26\x93\x42\x85\x2e\xff\xe7\xa4\xe8\xf2\xca\x3d\x09\xfd\x5f\xb9\x07\x59\xc2\x13\xb4\x4e\xe3\x7d\x56\xf5\xba\xe4\x31\xd9\xa1\xb2\x97\x1e\x51\xeb\xaa\x5e\xb9\xbe\x5e\xb9\x08\xef\x96\xc9\x88\xf2\xb9\x81\x3f\xb1\x20\x5f\x43\x31\x5f\xa3\x35\xaa\x82\xfe\x0f\xa6\xa9\x8d\x0b\xf5\xb5\x96\x4d\xc8\x18\xdc\x1b\x72\xd4\xb4\xbb\x05\x5c\x78\xcf\xa4\xe6\x2e\xa8\x7e\xee\x6f\x84\xea\xc7\x4f\x03\x69\xd3\xfe\x42\x28\x20\xd9\xe4\xaf\x82\x6d\x11\x6c\x72\xdd\xbf\x0d\x3b\x4f\x38\xe2\xe7\xb0\xf4\x34\x12\xd3\x57\x77\x4d\x34\x1d\x8d\xc3\x65\xd1\x72\xb9\xbe\xd6\x2b\xe3\x80\x3c\xd3\x64\x7b\x39\x40\xbb\x1c\x4c\x3f\xaf\x67\xc2\x07\xd3\xcf\x9b\x36\xfd\x18\x47\xf5\x64\x85\x05\x61\xaa\x42\x46\x2f\x5e\x27\xf0\x7a\x98\xc3\xef\xa4\x0e\x68\xc0\x48\x8b\xf6\x42\xf6\x57\xd5\xd7\x65\x0b\xb2\x82\xc1\xc4\xc8\x15\x41\x0e\xd3\xc9\x3f\xb2\x7f\x07\x4a\x40\xf0\x63\x85\xc3\xb7\x29\x10\xcc\xe0\xe9\x4b\x7d\x7d\xa7\x36\x26\x6c\x5f\x99\x4f\x4e\x48\xac\x71\xd4\xd6\xc7\x8f\xb9\xf4\x06\x12\x67\x02\x57\x36\xc3\x8a\xb8\x32\xdb\xd3\x91\x13\xc3\xb2\xf8\x89\x8d\x61\x66\xd7\xe6\xd3\x73\xf8\xf2\x6d\x65\x45\xd5\x0c\xfd\x79\xc3\xcf\xca\xe4\xd8\xee\x74\x3b\xe2\xa0\x26\xcf\x27\x48\x26\xd1\xa2\x32\x9f\x85\x1b\xee\x72\xb9\x31\xa4\x3a\xd5\x5d\x4f\xcf\x2d\x40\x96\xce\x5c\xbb\x89\x5b\x1a\x7d\xbb\xf3\x7e\xf1\x60\x9c\x0d\x74\xff\xa2\x81\x39\x0d\x8c\x7b\xb7\xd2\x95\x2f\xc6\x97\xbd\xed\xfe\xf9\x38\xf3\x27\xa2\xbe\x3e\xb6\xfc\x89\xa8\xe7\xe2\xc9\xdb\x32\xe2\x46\x66\x94\xd5\x2b\x7a\xa3\x71\x22\x25\xfe\xfb\x66\xa7\xdb\x25\x5e\xeb\x67\x33\x49\x1b\xac\xe5\xd3\xe2\xc3\xa9\x2a\x6e\x0d\x18\x39\x1d\xf0\x90\xbe\x7c\x48\x5f\x3e\xa4\x2f\x17\x8f\xfa\x21\x7d\xf9\x90\xbe\x5c\x99\x6c\x15\x93\x84\x28\x52\x2b\xc3\x9d\xc3\xe3\x97\x92\xe1\x4c\xef\xcf\x28\xc1\x99\x0e\xbf\x3e\x21\xce\xcc\xeb\x20\xc7\x1d\xe4\xb8\x7d\x4c\xf7\xb5\x6a\xd2\x8e\xca\x5f\x83\x26\xdd\x1a\xb5\x29\x0b\x58\xdb\x18\xa7\x60\xa7\xfd\xeb\xc6\x00\x85\x00\x01\xd3\x0d\x67\x53\x10\xc2\xb5\x1b\xf6\xdb\x61\x72\xf2\xa9\xf9\xd8\x2e\xae\x56\xb7\xee\x5f\xad\xa7\xf5\x50\xe3\xa3\x72\xad\x0e\x8e\xe0\x86\xc5\x39\x38\x82\x0f\x8e\xe0\x57\xe7\x08\xde\xbb\x4a\xd5\x58\xa9\xff\xc6\x5e\xcd\x8d\x11\xea\xee\xa2\x37\xba\x8c\x26\x05\x83\x4b\x1e\x93\x55\xc2\xd7\x60\xef\x69\xb4\x7c\xfb\x1a\xfd\x15\x81\x5a\xc5\xcb\xdf\xbd\x7d\x5d\x12\xda\x5f\xfb\xfd\xef\x46\xfe\x5c\x6a\xcd\x6b\x11\x7b\xb3\x79\xbf\x0a\x41\xf7\xe4\x1f\x85\xf4\x8c\x56\xf8\x2d\x41\x42\xc5\xe6\x63\x30\x66\xd5\x4f\x82\x52\x02\xf6\xd6\x9c\xa6\x2a\x88\x7d\x94\xfa\x00\xac\x88\x50\xeb\xe0\x4d\xb2\x5c\xa9\xf5\x7f\x8e\x19\xcd\x10\xc7\xe9\x9c\x71\x61\x78\xa0\xfe\x78\x81\x59\x9c\xe8\xf3\x23\x7d\x3b\x11\x66\x8c\x2b\x10\x4e\x60\x06\x31\x7a\xa0\xd8\x88\x32\xfd\xeb\x61\x8b\xf8\x80\x56\x67\x31\xe7\xda\x7f\x43\x27\xf1\xb9\xb1\xbc\x37\xdc\xa2\x9f\x12\x3e\x85\xea\x13\x69\xde\xc4\xa0\x1b\x38\x38\xa3\x73\x3b\xf7\x52\xcc\x43\x61\x79\x5f\x4c\x1a\xcb\xa7\x10\x4c\x1a\xd3\xc8\x36\xbc\x9b\x03\x56\x6c\x7e\xb5\x90\x6a\x96\x7f\x66\x93\xcf\xe0\x31\x0c\xb9\x38\x0e\xf7\x63\xd8\xa1\xfb\x2d\x6b\xd9\xfd\xe2\xaa\x77\xc1\x8f\x82\x28\xb1\x9e\x60\xa5\x34\x43\xda\x67\x7e\xdb\x08\xcb\xfb\x1d\xf2\xdb\xf2\x9e\xa6\x0d\xf9\x6d\xb9\xbe\x5e\x39\xc7\xca\xe5\xb7\xe5\x07\xfe\xe4\x1c\xab\x25\x71\x7f\x75\xa9\x0c\x6d\x8f\xea\x21\xad\x61\x8b\xa5\xfb\x5a\x53\x1c\x9a\x78\xf1\xab\x19\x61\xe1\x3a\xf8\x1a\x4f\x6e\xfe\x72\x3b\x1c\xd1\xa6\x35\xfa\xea\xca\x8c\x14\x64\x96\x0d\x73\x7b\x23\xe5\x46\x8a\x62\xd7\xbe\x47\xf5\x34\xf6\xf7\x60\x37\x0e\xf5\x07\x0f\xf5\x07\x0f\xf5\x07\x9f\xbc\xfe\x60\x3b\x9d\xb5\xb5\xc2\xda\x56\x5b\x6d\xa7\xaa\xd6\xeb\xa9\x4f\xe0\x73\x6e\xaf\x4c\x16\x72\xe3\xf3\x6a\xe4\xb6\xb9\xf1\xb9\xee\xdf\x84\x73\x3a\x37\xe2\xe7\xc8\x8d\xff\x8d\x6a\x96\x07\xb5\xf2\x49\xd6\xed\x6b\xd5\x29\x5f\xb9\x42\x79\xc8\xea\x3f\x20\x2a\x1e\x42\x4d\xf6\xb8\x38\x87\x50\x93\x43\xa8\xc9\x57\x1b\x6a\x52\xaf\x9e\xd0\x78\xe7\x8c\xcd\x8e\x18\xea\xde\xca\x20\x7e\x05\x51\x4a\x8b\xfd\x2d\x50\xd5\xab\xb4\x85\x4c\x96\xce\xa1\x20\x6f\xaf\x39\x0c\xe3\x37\xa1\x32\x54\xae\xe6\x73\xa8\x0e\x07\x40\xee\xbd\x02\x72\xbf\xba\x69\x1f\xa4\xca\x83\x54\x79\x10\x9c\x5a\x4e\xf8\x20\x38\xbd\x5e\xc1\xe9\xa5\xb4\xa1\xaf\x09\x9b\x49\x8b\x58\xb9\xac\xa4\xc6\x38\x65\x83\xaf\x04\xce\x8c\x74\x95\x70\x1c\x6f\x8a\x38\xfa\x35\x10\xdf\x1a\xe4\xbe\xa0\x5d\x91\xc5\x29\x17\xc4\xbf\x26\xd9\xce\x34\xa0\x7b\x7c\x0b\xa2\x9d\x1e\xa7\x19\x71\x8b\xe8\xc8\xb0\xc3\x77\xff\xd6\x62\xe0\x37\xf6\x4e\x06\x4e\x33\xc5\xb1\x03\x30\x30\xe2\xd9\x12\xaf\xd1\x02\x3f\x10\x34\xc3\x34\x31\xf6\x39\x1a\xe3\xe2\xfa\x16\xe6\xd6\x34\xa0\xff\xe8\x36\x20\x9c\x1f\x4e\x96\xd1\xa8\xef\x0b\x23\x55\x45\x38\x71\xee\x3e\x78\x67\x81\x25\xc2\x89\x20\x38\x5e\xa3\x29\x21\x2c\xc8\x64\x6b\x3b\xe6\xbd\x08\xc6\x2f\x1e\x9e\x19\xd2\xcd\x8b\x46\x79\x03\xd7\xa8\xad\x5c\xbd\x77\xc5\xb2\xc8\x49\x76\xd0\x21\x77\x51\x1c\xe5\x1f\xde\x0a\x73\x79\x0e\x35\xf1\x2b\xf6\x22\x1d\x3c\x45\xbf\xcd\xfa\x90\xaf\x46\xfb\x38\xa8\xe8\x87\x24\xe3\x83\xe7\xe7\x60\xc0\x38\x18\x30\xf6\xbe\x8c\xaf\xc9\x80\xf1\x82\x32\xba\xc9\x6d\x7a\x92\xc2\x29\xaf\x45\x5a\x3f\x08\xeb\x07\x61\xfd\x20\xac\x7f\xb5\xc2\xfa\xeb\x58\xe1\x83\xa4\x7e\x90\xd4\x0f\x92\xfa\x41\x52\x3f\x48\xea\x7b\x5f\xc6\x83\xa4\x5e\x90\xd4\xe1\x5f\x0e\x2d\xa0\xab\xd8\xde\x5a\x5c\xdf\x0e\x1a\xa0\x9d\x9b\xce\x62\x03\xbc\x15\xc9\xfc\x20\x95\x1f\xa4\xf2\xd7\x2d\x95\xbf\x9a\x09\x7d\x7d\x09\xc1\x87\x94\xda\x43\x4a\xed\x21\xa5\xf6\x25\x52\x6a\x1d\x2f\x69\x92\x70\x9a\xea\xfa\xfc\x64\x99\xcb\xb7\x94\x45\x49\x0a\xa2\xaa\xfe\xf9\x43\x4a\x93\x18\x81\x8a\xa4\x35\x5d\xca\xd9\x7b\xa0\x27\x20\x05\x18\xa7\xab\x44\xd1\x2c\xc1\xfc\x54\x62\x75\xaf\x56\x88\xc9\x46\xbb\x2d\x0c\xdb\xbe\xf6\xd4\x97\xe3\xdd\xa2\xfa\x5f\xee\x37\xd7\xd0\x2b\xaa\x09\xd8\x73\x62\x89\xe6\x48\x6e\x7c\x4f\x5c\x1d\xb0\xb2\xcf\x4e\xb5\x02\x7f\xb6\x1f\xbd\xad\x52\x06\xe5\x51\x1f\x2a\x04\xa2\x60\xd7\x0e\x15\x02\x9f\x70\xde\xee\x9c\x6d\x98\xb9\xa3\x51\x63\x0b\x7f\xa3\xd3\x7e\xf1\x60\xc7\xfa\x93\xfe\xa2\xa1\x8f\x95\x17\x59\x29\xb7\xee\xe4\x1f\x95\xf7\xd4\x0b\x14\x46\xec\x7c\x39\xed\xa5\x44\xe2\x2e\xd7\xd3\x27\xa2\xbe\x96\xbb\xe9\x50\x26\xf1\x50\x5e\x67\x4f\xd3\xdd\xea\xee\x79\xb3\xb3\x3d\x14\x85\x3c\x14\x85\x3c\x14\x85\x3c\x14\x85\x3c\x14\x85\x44\xbf\xf1\xa2\x90\x9d\xe5\xd7\x3d\x94\x87\xdc\x45\x7a\x35\xdd\x7f\x2d\x02\xec\xa1\x44\xe4\x41\x86\xdd\xdf\x74\x7f\x5b\x32\xec\x2b\xb4\xa0\xbc\x8a\x5a\x98\xde\x82\xf2\xe2\xb0\x44\x9e\xb5\xb7\x86\x26\x0a\xe3\x5e\xfc\xd7\x7b\x45\x28\x72\x9b\x76\x40\x29\xb2\xff\x77\x40\x29\x3a\xa0\x14\xd5\xcc\xfa\x10\x58\x7d\x40\x29\x42\x87\xd0\xe1\x43\xe8\xf0\x6b\x0e\x1d\x6e\xb1\x8d\x07\x94\xa2\x96\x22\xe3\x13\x21\x15\x39\x99\x6b\x27\xb4\xa2\x0a\x71\x70\x33\x62\xd1\xcf\x65\x8d\xe8\xd5\x8a\x7a\x6e\xac\x07\xe4\xa2\x03\x72\xd1\xae\xb4\xf3\x2a\x14\xd0\x67\x44\x30\xaa\xe2\x30\x5d\xf2\xa2\x2b\x98\xcb\xae\x0a\xe6\xdb\x40\x33\x72\xa3\x3d\x24\x49\x1f\xd2\x31\x5e\x7f\x3a\xc6\xab\x4b\x92\x7e\x35\x9a\xca\x41\x9d\x3f\xe4\x49\x1f\xf2\xa4\x0f\xc6\x8e\x83\xb1\x63\xef\xcb\xf8\x9a\x8c\x1d\x2f\x2c\xb7\x3f\x21\xaa\xd1\x6b\x94\xe0\x0f\x02\xbc\x79\xef\x20\xc0\x1f\x04\xf8\xaf\x54\x80\x7f\x1d\x2b\x7c\x90\xde\x0f\xd2\xfb\x41\x7a\x3f\x48\xef\x07\xe9\x7d\xef\xcb\x78\x90\xde\x9f\x0d\xe9\xa8\x4a\x84\xef\x8c\x76\xd4\xd1\xcd\x17\x24\xb3\xbd\x25\x69\xfd\x20\xa9\x1f\x24\xf5\xd7\x2d\xa9\xbf\x9a\x09\x1d\x90\x8f\x0e\xc8\x47\x07\xe4\xa3\x03\xf2\xd1\x56\x32\xd2\xbf\xd8\x63\xf9\x2e\xb8\x89\xfd\x95\xfd\xee\x43\xc2\xa7\xa3\xf5\x8a\xe8\xff\x9e\xd3\x25\x61\x12\x24\x5a\xaa\xd6\xa1\x4c\x54\xb3\xf2\xe5\x35\x7f\x77\x3b\xbc\xfc\x74\x11\xa6\xaa\xbd\xfb\x7c\x77\x31\x1a\x5e\xf7\x6f\xfc\xba\xf8\x59\x85\x6b\x61\xbf\xcb\x89\x75\x96\xe4\x6f\x88\xd6\x5f\xe1\xd4\xdc\x2a\xac\x52\xb9\xdd\xc8\x6e\x06\xb7\x83\x9b\x9f\x20\xd5\x6e\x72\x3e\xbc\xed\x7f\xb8\xc8\x11\x44\xee\x79\xff\xec\x2f\x77\xc3\x9b\xfa\xe7\x83\xff\x1a\xde\x8e\x6e\xeb\x9e\xde\x0c\x2e\x06\xfd\xdb\xfa\xaf\x3f\xf6\x87\x17\x77\x37\x83\xc6\xf5\x68\x1c\x6d\xb3\x22\x23\x61\x91\x20\x8b\x05\x45\x96\x6b\x88\x6c\x0d\x91\x17\x1f\x1d\x3b\xac\xea\xeb\x14\xdd\x59\xbb\x00\xb5\x8d\xbb\x90\x24\xdf\x90\x51\x68\x62\x2a\xf1\x34\x21\x71\xa9\x25\xb7\x86\x75\x2d\xe1\xdc\xa0\x1e\xb5\x06\xee\x45\x4e\xcd\xf3\x22\xc3\x0b\x10\x24\x00\x2b\xc2\xe2\x8a\x3e\xcc\x3e\xd4\xf6\xc0\x34\xef\xa2\x0f\x24\xd7\x53\x94\x0a\x41\x98\x4a\xd6\x46\xe0\x96\xa5\x46\xdd\xf6\xd5\x35\x6b\xef\x54\xdf\xe0\x02\x4b\x13\x79\x95\x1b\xbf\x20\x09\xc1\xb2\x62\xcc\x76\xf7\xdb\x2d\x8b\xdf\x2b\x6b\xd1\x31\x97\xd1\x0c\xd3\x24\x15\xa4\x70\x5a\x38\xfb\x6b\xca\x40\x83\x1d\x7c\xd1\x97\x99\x3e\xc9\x17\x7c\x4e\x23\x9c\x5c\x41\x33\x5c\x6c\x77\x72\xfa\x97\x39\x52\xbe\xba\x69\xa4\xdc\xf0\xed\x22\xa1\x1e\xa1\xfe\xe5\x39\x24\x19\xbb\xa1\x66\xaf\x2a\xaa\x12\x18\xd0\x25\x91\x7a\x9e\x11\x67\xb1\x75\x81\xe8\x0b\x6c\x1d\xc8\xa5\x7f\xe5\x90\xa8\x9d\x4a\xad\x2d\xf5\x2f\xcf\xd1\x09\xba\xba\x19\xb3\x2b\xad\x46\x6b\xba\x27\x5a\xa0\x33\xcb\x46\x25\x62\x5c\x21\xba\x5c\x71\xa1\x30\x53\x5a\x96\x85\x9b\xcc\xae\x88\x21\xe2\x33\xbe\x5c\xa6\x0a\x6b\x5a\x29\x2d\x2a\x33\x56\x81\x5b\xa2\x86\x31\x78\x18\x2a\xd6\xd0\x5c\x75\xd9\x5c\x56\x42\xb7\xaf\xaf\xd9\xbc\x2a\x49\xe3\x92\x36\xe6\x9a\xc0\x42\xe0\xfc\x85\xf8\x8e\x2a\xb2\x2c\xbe\xdf\x32\x42\xf6\x9f\x95\x7a\xf2\x99\xc9\x48\x21\xa2\x2f\xa2\x05\x55\x24\x52\x9a\x8a\xb6\xa2\x89\xbb\xcb\x1f\x2f\xaf\x7e\x0e\x2f\xc1\x77\xfd\xcf\xe7\x7f\xfa\xb7\xdc\x0f\x37\x9f\x4b\x3f\x4c\x7e\xfa\x53\xe9\x97\xff\xa7\x91\x9e\x8a\x3d\x95\x54\xd5\x60\x2e\x47\x20\x15\x82\x69\xd4\x4d\x15\xd1\x25\x9e\x13\x24\xd3\x95\xa6\x00\x79\x9c\xdf\x5f\x2d\x15\x5d\x70\x1c\x53\x36\x37\x19\xc2\x17\x54\x11\x81\x93\xcf\x78\xf5\xd1\x99\x71\xb7\x58\x9d\xff\x7d\x9b\xcb\xe7\x7e\xf7\x4b\xff\x73\x98\x11\xfe\xee\xfa\xe6\x6a\x74\xd5\x38\xeb\x5c\x0b\xe5\x63\xa4\x1f\x9f\xc2\xff\xa2\x13\xa4\x5b\xf7\xc2\xdb\x92\x28\xac\x85\x5a\xf4\xad\xc9\x6a\xf4\x59\x48\x94\x25\x70\x6a\x56\x82\x2e\x29\x70\x45\x63\xc8\x7a\x6f\xe4\x43\x2f\x00\xfb\x73\x63\x3e\x30\x79\xcb\xf6\x5e\x61\x31\x16\x31\xfa\xab\x2c\xc2\x0b\x80\xfd\xd4\xfc\x40\x62\x74\x84\x16\x4a\xad\xe4\xe9\xc9\xc9\xe3\xe3\xe3\xb1\x7e\xfb\x98\x8b\xf9\x89\xfe\xc7\x11\x61\xc7\x0b\xb5\x4c\x0c\x9c\x82\x5e\x85\x53\x74\x2d\xb8\xe6\x82\xa0\x63\x12\x41\x71\x02\xd9\xd4\x53\xca\xb0\x00\x98\x86\x5f\x23\x2e\xc8\x71\xb6\x31\xd6\xb6\x62\x59\xa1\xb5\xbf\x9c\xe8\x97\x2a\x98\x49\x71\x3f\x51\x4c\x22\x1a\xdb\x9b\x92\xb0\x88\x83\x01\xce\x98\xec\x75\x7b\x2e\x15\x94\x58\x7f\xa9\x5f\xce\x40\xde\xc6\x31\x09\xd0\x10\x14\xcf\x13\x9c\x96\xdd\x87\x46\xf3\x4a\xb5\x96\x09\x01\xba\x70\x31\xb8\x57\x57\x7a\xc2\x11\x4f\xd0\x34\x9d\xcd\x88\x08\xdd\xb5\x3d\x2d\x90\x53\x89\x04\x89\xf8\x72\x09\x97\x9e\xfe\x2a\x95\x86\xaa\x61\xc5\xec\x68\x8f\xc7\x0c\xf6\x5f\x4b\xea\x40\x01\x31\x07\x56\xc7\x88\xd6\xd8\xd9\xda\x74\x33\x4d\x67\x39\x77\x30\xc0\x94\xe0\x18\x51\x35\x66\xfd\x24\x41\x82\x2c\xb9\x22\x61\xa4\x31\xf8\x8e\x72\x0b\x0e\x2c\x52\x90\x55\x82\x23\x97\xc7\x9e\xf0\x08\x27\x68\x46\x13\x22\xd7\x52\x91\x65\xd8\xc0\xb7\x60\x6e\xd0\x6b\x46\x25\x8a\xf9\x23\x4b\x38\xb6\xf3\x28\x7e\xf6\x3e\x7f\x1a\x07\x0e\x42\x62\x20\x04\x17\xf0\x3f\x3f\x52\x16\xef\x8d\x43\xdd\xdd\x0e\x6e\xc2\xbf\x6f\x7f\xb9\x1d\x0d\x3e\x77\xe3\x3e\x9e\xb2\x60\x78\xa0\x86\x9e\xa2\x5b\xb3\x08\x5c\xe8\x4b\x5d\xd4\x4c\xea\xb3\x25\xa5\xec\x07\x1e\x6f\xc9\x7d\x3f\xf7\x2f\xef\xfa\x39\x8e\x72\x7b\xf6\xc3\xe0\xfc\xae\x20\xd2\xda\xf9\xe5\xc4\x50\xa3\xc1\x84\xbf\x9d\xfd\x30\xbc\x38\x9f\x54\xe8\x3c\xef\x6e\x06\x67\x57\x3f\x0d\x6e\x32\xf5\xa4\x72\x89\x0a\x83\x29\x32\xab\x91\x61\x4a\x0b\x1e\xa3\xe9\xba\x1a\x30\x44\x0b\x7f\x09\xb8\x24\x33\xc8\x1c\xd3\xea\x29\xf0\x26\x87\xdd\x92\x7d\xa1\x75\xde\x9e\x7d\x07\x90\x56\x8c\x7d\xc0\x08\x7d\xd5\x0d\xeb\xde\x31\x0b\x74\x6d\x03\x82\xe2\x17\xee\x14\xf5\x91\xd4\x2f\xa6\xfa\x50\x0b\x3a\x9f\x83\xed\xab\x30\x54\xd3\x9a\xfd\x14\x96\x17\xbe\x33\xfb\xbf\x12\x1c\xce\xb9\xee\xd6\x1a\x4d\xbd\x62\x6d\x3e\x34\x40\xb1\xb9\x16\x05\x06\x9d\xb9\x62\x68\x6e\xb3\xf4\x22\xd4\xae\x97\x39\x8f\x59\x6e\x00\xb0\x2d\x69\x4c\x76\x2b\x41\x1e\x28\x4f\x83\x4f\x2d\xf0\x4b\x6e\xc7\x2b\x9b\xcf\x16\x00\x96\xcd\xe8\xf5\x85\x66\x3c\x79\x54\xb6\xa0\x59\xd8\x03\xb4\x30\x13\x7c\x59\xd1\x46\xfe\x98\x0c\xaf\x6e\x95\xc0\x8a\xcc\xd7\xe7\x96\x65\x6c\x7f\x3c\xce\xaf\x7e\xbe\xbc\xb8\xea\x9f\x4f\x06\xfd\x4f\xf9\x13\xef\x9f\xdc\x8e\x6e\x06\xfd\xcf\xf9\x47\x93\xcb\xab\xd1\xc4\xbd\xd1\x48\xf2\x35\x1d\x94\xef\xe9\xfc\x8b\xa7\x48\xb3\x5c\x60\x8d\x0e\x91\x31\xe0\x8f\x53\x32\xe3\xc2\xf0\xf9\xa5\xf3\xe0\x5b\x11\xc6\xad\xad\x55\x27\x0a\xb3\x38\x05\xe3\x4e\x55\x93\xc6\x70\xab\x04\xc1\x4b\xb8\x27\x30\x43\x03\x16\x1f\x5d\xcd\x8e\x6e\xcd\x8f\x4b\x2c\xee\x89\xf0\x9f\x3e\x0a\xaa\x14\x61\x39\xad\x04\xbb\x21\x7b\x3d\x27\xeb\xe0\x18\xdd\x68\xbe\xaf\xdf\xf7\x97\x9a\x26\xf6\x98\x28\x4c\x13\x69\x07\x9b\x5b\xd7\x53\x74\x81\xc5\x3c\x33\x25\x7d\xcb\x67\x33\xd3\xd8\x7b\x33\x0c\x7d\x87\xe5\x66\x51\xc1\x7b\x35\x69\xb8\x7b\x11\xfa\xb3\x2f\x7b\x79\xb8\x4c\x55\x77\xab\xdd\x68\xea\xee\x1a\x56\xdc\x28\x9d\xa3\xdc\xad\x72\x5d\x47\x6b\x30\x71\xf3\xb8\xf9\x92\xa9\x6e\xbb\x4c\x4e\xf9\x17\x2b\xc8\xc9\x24\xa2\xe9\x9d\x9f\x29\x22\xaa\x68\x89\x7c\xa1\x56\xe7\x0d\xc7\x5d\x20\xa1\xac\x19\xb0\x10\xe2\xd5\x8a\x60\x21\xab\x76\x3b\x2f\x06\xd6\xec\xbd\xe9\x29\xec\xc3\x6e\xb2\xeb\xa7\x87\x38\x03\x9d\xd9\x0b\x11\x05\x8a\x6c\x41\x03\xa6\xad\x12\x05\x5c\x03\x1a\xd7\x95\x45\xbe\xfa\x4c\xa5\x56\x1a\xcd\x8f\x1f\x2c\x24\xd7\x76\x04\xa1\xf5\xf8\x82\x70\x31\x39\x1f\x7c\xec\xdf\x5d\x34\x5b\xba\x72\xdf\x15\xb7\x18\x1d\x21\xfd\x3c\xef\x3e\xa6\x33\x73\x67\x38\x60\x31\xa3\xd2\x12\x06\x76\x17\x9b\x37\x66\x4c\xae\x31\x59\x25\x7c\xbd\x24\x0c\xac\x14\xb9\x9b\x50\xaf\xe7\x0c\x53\x7b\xb5\x04\x83\x05\x43\x84\xb5\x1c\xc1\x35\x76\xe4\xd0\xcc\x48\xec\x6f\xde\x3c\x98\x59\x81\x75\x5f\x1b\x07\x90\xfd\xcf\xad\xc2\x6a\xcb\x33\xd6\x3f\x1b\x0d\x7f\x1a\xe4\xf5\xc3\xb3\x1f\x86\x3f\x55\x49\x35\x93\x4f\x83\xcb\xc1\x4d\x7f\xb4\x41\x38\x29\x34\x59\x25\x9c\x48\x3d\xe0\xa2\x03\x90\x4a\x1f\x18\x13\x19\x48\x34\x44\x95\x44\x0f\x54\xd2\x29\x05\x00\x39\xeb\x4c\xbb\x1b\x02\x67\x85\x4c\x41\xaa\xd6\x4e\x7c\x31\xfd\xe6\xf7\x51\x73\x52\xdb\xbe\x31\x3b\x84\x2e\x36\x30\x54\x99\xcd\x71\x93\x3e\x45\xa0\xdb\x3e\x80\xd2\x16\x7c\xc6\xb4\x20\xcd\xe6\x44\x98\xe1\x80\x03\x21\x1c\x4b\xf0\x5c\x8f\x2a\x14\x56\xb2\x55\xf3\x42\xeb\x9c\x30\x22\x00\xa1\xca\x77\x62\x04\x29\x41\xd8\x37\x5a\xe6\x5a\x25\x34\xa2\x2a\x59\xa3\x08\x32\xeb\xc0\x22\xb7\xc4\x0c\xcf\xad\x70\x00\x6a\x4e\x81\x24\xfe\x62\x50\xf6\xae\x66\xd6\x3a\x3d\xa2\x64\xcb\x63\x76\x77\x79\x3e\xf8\x38\xbc\xcc\x93\xc0\x0f\xc3\x4f\x39\x11\xf6\xf3\xe0\x7c\x78\x97\xbb\xcd\xb5\x24\xdb\x2c\xd7\x17\x9b\xad\x38\x8a\xfe\xa5\x53\x74\x6e\x3e\x3d\xd5\x8b\x5b\x01\x21\xe8\x95\xdf\xc2\x3a\xdc\xb8\xc8\x34\xf7\x8f\x01\x53\xa2\xd2\xb4\xde\xd6\x84\x64\xdd\x68\x39\x1b\x52\xb5\xb7\xbd\xd4\xf7\x65\xd1\x2f\x5a\x8e\x46\xb0\xbe\x34\xdd\xc9\x71\x66\x59\x0a\xdd\xf0\x60\x34\xa8\x33\x62\x55\x78\x66\x32\x86\xfd\x13\x78\x59\x97\xa9\x54\xc6\x1b\x06\xc4\x89\xee\xff\x2c\xf5\x82\x82\xb7\xec\x18\xdd\x12\x32\x66\xce\x7a\x30\xa7\x6a\x91\x4e\x8f\x23\xbe\x3c\xc9\xf0\x2b\x4f\xf0\x8a\x2e\xb1\x96\xa4\x89\x58\x9f\x4c\x13\x3e\x3d\x59\x62\xa9\x88\x38\x59\xdd\xcf\x21\x10\xc4\x79\x04\x4f\x7c\xb3\x73\xfe\xbb\x8b\x3f\x7e\x77\x74\xf1\xe7\xef\xde\x95\x2d\x64\x75\xfb\x3f\x60\x11\x5e\xc9\x34\xb1\x81\x63\x22\x5c\x1b\x77\xe4\x53\xb2\x69\xbf\x2f\xf3\xdb\xb5\x9b\xfe\x7a\x76\x7d\x17\xfe\xf9\x29\xff\xe7\xe7\xc1\xe7\xab\x9b\x5f\x72\x9c\x72\x74\x75\xd3\xff\x94\x63\xa8\x83\xeb\x1f\x06\x9f\x07\x37\xfd\x8b\x89\x7b\xb8\x8b\xed\xed\x47\xc6\x1f\x59\x7e\x69\xa4\xe3\x80\xa5\x9e\x4e\xd1\x47\x2e\xd0\x8f\x7e\x27\x8f\xa6\x58\xc2\x15\xe3\xee\x2c\xd9\x43\x2b\x1e\x03\xe3\x45\x64\xb5\x20\x4b\x22\x70\x62\x6d\x06\x52\x71\x81\xe7\xe6\xa6\x97\x91\xc0\x2a\x5a\x20\xb9\xc2\x11\xe9\xa1\x08\xa8\x61\xde\x83\x4d\x01\x55\x8b\xcf\x8b\x76\xbe\x9b\x94\x29\xba\x24\x4e\x05\xb7\x7f\x8e\xcc\x66\x6c\xb1\x39\x57\xa3\x1f\xf2\xc2\xde\xc7\x8b\x5f\x46\x83\xc9\xed\xf9\x8f\x8d\xeb\x69\x3e\xcb\x8d\xec\x16\x62\x68\xce\x78\x92\x2e\x59\xf8\xef\xed\xc7\x36\xbc\x1c\x0d\x3e\x15\x47\x77\xd5\x1f\xe5\x29\xe3\x26\x1f\xe7\xf5\xee\xc3\xd5\xd5\xc5\x20\xe7\xd5\x7c\x77\xde\x1f\x0d\x46\xc3\xcf\x39\xfa\x39\xbf\xbb\x31\x68\x95\x4d\xd3\x74\x23\xa8\x98\xa8\x9e\x56\x38\xcd\x7d\xb3\xc2\x56\x9c\xa8\x6f\xe3\xaa\xcd\x59\x3e\x0a\xb0\x8a\x4c\x44\x13\x58\x75\x8e\xbc\x49\x35\x32\x23\xad\x64\x87\x2a\xbf\x4d\xa8\x9e\x1d\x37\x6e\x74\x13\x57\x1e\xf9\x21\x18\xa8\x58\xa3\x6c\xe3\x24\xe1\x8f\x26\xa2\x75\x49\xf5\xad\x6c\x91\xeb\xf4\x2b\x32\x73\x72\x1d\x57\x70\xbc\xfc\xb6\x90\x48\x10\xf5\x99\xa7\x4c\x6d\x4f\x72\xfd\xcb\x1c\xdf\x19\x5c\xfe\x34\xf9\xa9\x9f\xa7\xc0\xe1\x45\x33\xab\x09\x9b\xa8\xb8\x8a\xfb\x97\xbf\xf8\x4b\x18\xe2\x9e\x7b\x5e\x43\x35\xb2\x6b\x94\x50\x2d\xf6\x46\x58\x6b\xaf\x09\x48\x34\x88\x50\x30\x39\x2c\xf5\xe4\x20\xce\x72\x65\xfc\x49\x86\x3f\x99\x41\x9e\xba\x7f\x14\xda\x93\xb0\x2e\x60\x4d\x75\x61\xe5\xd0\x8e\xd5\xaa\x19\x22\xec\x81\x0a\x0e\x78\xc7\xe8\x01\x0b\xaa\xa5\x71\xd3\xb2\x9e\xeb\x29\xfc\x6f\xb7\x36\xc1\x30\x5a\x60\x5c\xb7\x5c\xa8\x73\x1f\xcf\xba\x9d\x35\xa4\x2a\xae\xb3\x1c\xd1\x59\x6d\xe8\x28\x7f\x5b\xb1\x39\x3b\xc6\xbd\xe6\x27\xfc\xb7\xe4\x9c\xe2\x44\x33\x80\xfd\xc9\x8b\xfd\xcb\xdb\x61\x5e\x7e\xcc\xab\x19\x01\x5f\xde\x5a\x5e\x04\x43\xa5\x19\xb9\x53\x26\x6e\xff\x72\x61\xb4\x0b\x00\xc5\x36\xe7\x36\x50\x2c\x2c\xba\x88\x91\x26\x56\x58\xc8\xc2\x17\x12\x01\x8a\x5c\x16\x33\xa4\xef\x2c\x88\xc8\x79\xe0\x34\x1e\x33\xf2\x65\x45\x98\x04\xff\xb6\xb9\xcf\x32\x77\xb1\x3c\x46\xc3\x19\xb0\x04\xfd\x3a\x43\x29\xb3\x0e\x30\x7d\xe1\x9a\x41\xf6\xb4\x28\x9b\x01\x9c\x04\xe6\x23\x46\x5c\xbc\x4f\x36\xf8\x31\xfb\xd9\x3b\xd1\xe0\xd1\x8c\x6b\x06\xa4\x77\xd1\xb6\x77\x8a\x30\x93\xb4\x87\xb4\xc2\x52\xdc\x53\x88\xa0\xd7\x0a\xa5\x8d\x42\xd2\x9c\xc6\xfe\xf3\xf9\xaf\x81\x52\xa8\x6b\x78\x19\x54\xdf\x05\x85\xab\xa0\x46\x34\x4e\x8c\xc7\x64\xd2\xfe\x4e\x88\xb8\x20\xd6\xcf\xd2\xf9\x1a\xd8\xc4\xd8\x47\x58\xde\x97\x7c\x0f\x43\x26\x15\x66\x11\x39\x4b\xb0\xdc\x32\x8e\xc6\xd9\x38\x7a\x79\x89\xe3\xe6\xe6\xee\x7a\x34\xfc\xb0\x81\xcb\x17\x3f\x2e\x47\xb2\x44\x49\xea\xdc\x73\x53\xc1\x71\x8c\x34\xfb\x9c\x73\xe3\x0a\xb4\x82\x7f\x06\x0d\x6f\xd2\x5b\x7c\x4c\x60\x0e\x96\x3e\x8b\xca\xb7\x76\x8e\xd0\x95\x40\xed\x42\xa0\x48\xaf\x04\x0a\x4c\x1e\x6e\xab\xc1\xb3\x68\x2a\xe6\x58\xeb\xd6\x2a\xc1\x6a\xc6\xc5\xd2\x70\xf9\xdc\xa4\x4d\xe3\xcd\x8d\x52\xa6\x88\x10\xe9\x4a\x51\x87\xf5\x5f\x94\x52\xf5\x96\x5d\xf0\xf9\x67\x22\x25\x9e\x93\x5d\x1c\xd0\x55\xca\xc3\xed\x4f\xe1\x9f\xe0\x60\x6e\x23\xfb\xe7\x46\xe8\x82\xb7\x1d\x3d\x5d\xb1\x8f\x26\x16\xe5\x9a\x27\x34\xda\x32\x66\xec\x63\x7f\x78\x31\x19\x7e\xd6\x4a\x7c\x7f\x34\xb8\xc8\x89\x12\xf0\xac\xff\x71\x34\xb8\xb1\x20\xe7\xfd\x0f\x17\x83\xc9\xe5\xd5\xf9\xe0\x76\x72\x76\xf5\xf9\xfa\x62\x30\x6a\xa6\xb8\xda\xc6\xcb\xd6\xd5\xe2\xab\xa7\xa5\x5f\x60\x87\x35\x2f\x0b\xed\x65\x90\x3c\x85\x69\x02\x4e\x70\x6e\x9c\xe1\x18\x31\x1e\x1b\x18\x29\xe9\xac\x33\x1e\x59\x1c\x0d\xd5\x37\x49\x82\x70\xaa\xf8\x12\x83\xd7\x26\x59\x8f\x19\x9e\x6a\xd6\x8a\x93\x24\x88\x50\x12\x29\x63\x9a\xc5\xea\xc6\x0c\x84\x7f\x94\x10\xcd\xce\x57\x41\xce\x9b\xf5\x1b\xcc\x28\x83\x60\xd1\x25\x16\xf7\xae\x1e\xa1\xcf\x24\xf0\x87\x42\x22\x2c\xc7\xcc\xc0\x5b\x59\x69\xa5\xc5\x0a\x9f\xb6\x7a\xab\x76\x75\x96\xf8\x9e\xe8\x55\x59\xa6\xd1\x02\xad\x04\x9f\x0b\x22\xa5\xb5\x2d\x47\x98\x99\x00\x04\xfb\xba\xbe\x86\xc6\x8c\x71\xbd\x14\xce\x84\x1d\x93\x15\x61\x31\x61\x11\x35\xd9\x6d\xe0\xbb\xf7\xa6\xcd\xb9\xc0\xab\x05\x92\x1c\x9c\xde\xb0\xec\x60\xbf\x32\x1f\xb9\x9b\xcc\x02\x7a\xc1\xe3\xd0\x02\x2d\x52\xcd\x27\xae\x40\x4e\x34\xab\x0c\x1f\xbb\xcb\xd0\xb9\x5d\x8c\x1d\x70\xb9\x4a\x88\x32\xc5\x1c\x60\xc9\x61\x33\xf4\x5a\xe7\xf6\x43\x6f\x53\xd5\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xe3\x0a\xcb\xb6\x3d\x52\xe8\x07\xcc\xe2\x44\xb7\xe2\x7c\x18\xf9\xb3\x08\xd9\x14\x7d\x4d\x35\xee\x34\xee\x72\x8b\x46\x38\x95\xbb\x5c\xa3\x85\x94\x44\x63\x15\x3c\xca\x82\x42\x80\xbc\x6d\x3e\x22\xac\xee\x4a\xb3\x48\x9c\x70\xbb\x4a\xe6\xf5\xd4\x14\x28\x43\x30\x9a\x9a\x6b\x76\x25\x28\x8b\xe8\x0a\x27\x5b\xe9\x7e\x85\x78\x72\x1b\xa6\xfd\x2d\x9d\x69\xf2\x79\x5f\x72\xdb\x2a\x22\x96\x90\xa7\x6b\x87\xe9\xb7\xb0\x83\x25\xc9\x06\xe6\x13\x99\x45\x93\x60\xc1\x53\xe3\x8f\x83\x75\x21\x71\xc5\x51\x3d\xae\xda\xee\x19\x08\x0f\x3b\x59\x10\x4d\x49\x0f\x2e\xf6\x10\x8a\xd6\x90\xe6\x73\x6b\x7b\xa9\x4d\x0f\x28\xae\xd2\x67\x1b\x0d\x2f\x91\x1f\x20\x68\x0e\xdf\x60\x16\x7f\x73\x04\x47\x70\x4e\xe0\x9c\x1a\xff\x53\x9c\x46\xc6\x59\xea\x52\x3a\x1d\xd2\x41\x0f\x91\x84\xce\x61\x07\x3d\xe8\x76\xfb\xcd\x3a\x87\xd8\x22\x13\x8c\x04\xcd\x9a\x0c\x50\x4c\xb5\x3c\xee\x24\x77\x5b\x15\xa5\xd8\x0f\x32\x16\x2d\x08\x13\x98\x92\x04\x28\x6c\x0d\xf1\xf5\x44\x16\xef\x7a\xb3\x9d\x9a\xd1\xe1\x7c\x48\xf6\x16\x3b\x6a\x02\xb9\xea\xb6\xb3\xd0\x8a\xed\xdd\xc4\x56\xe2\xe4\xba\xba\xcd\xaa\x03\xd5\x7a\x27\xf1\x0a\x16\xce\x54\xe9\xc0\xd9\x1c\xad\xce\x6b\xab\x10\xba\x70\xa8\x20\x14\xc2\x67\xaa\xb4\xdf\xaf\x6c\x09\x6d\x3c\x5b\xb9\x93\x5c\x48\x48\x90\x39\x6f\x59\xd6\x2c\xd5\xaa\x09\xc2\x10\x54\x82\xbe\x25\xc7\xf3\x63\xe4\x6a\xae\xf4\x50\xff\xfa\x7a\x70\x79\xde\x43\x44\x45\xef\x5d\x08\xaa\x8d\x3f\x1b\x33\x4d\x0a\x70\xb8\xd7\xae\x5e\xce\x92\x88\x39\xc9\xcd\xd9\x05\xab\x41\xf0\xf4\x9c\x6a\x5a\x32\x57\x00\x8b\xc3\xca\x46\x74\x59\xd4\x9a\x0c\x85\xa4\x6a\xb1\x0b\x69\x60\x29\xd3\x25\x9e\x26\x64\x42\xf1\x72\x22\x78\xb2\x0b\x8f\xf7\x67\x83\x21\x0f\x3a\x40\xf1\x12\xe9\x66\x6d\x64\x8f\xf7\x20\x7b\x09\x5d\xcb\xb9\xfa\x9a\xd5\x62\x50\x20\x86\x38\x67\x92\x0d\x2f\xa4\x2e\xa2\x05\x40\x09\x6a\x38\x7f\xe6\x05\x98\x58\xc7\xcb\x04\x47\x11\x4f\x99\xda\xf3\xa4\x82\x72\x59\xce\xc3\x63\x3b\x7a\xb2\x69\xb6\xe5\x4b\x2b\x7d\x21\x41\x6c\x77\xb9\xba\x4c\x45\xbf\xd3\x75\xa9\x57\x57\xd0\xea\x4e\x7a\x0b\x99\x91\xa9\x24\x81\x9d\x94\xa6\x20\x16\xf0\x2e\x00\x43\x0d\xbb\x74\x29\x3a\xba\xe1\x35\x4f\x45\xd5\xbd\x35\x66\xe7\x64\x25\x88\x56\xdc\x8a\xfe\x30\x4f\xd3\x37\x79\x4a\x3c\xd0\xf5\x81\xae\xdf\x3c\x5d\x9f\x99\xba\x68\x7d\x5f\x07\x6f\x27\x02\x2f\x4b\x7a\x68\x83\xc8\xe5\x85\xc3\xf6\xab\x9f\x73\x72\x16\x2a\xc6\x01\xe8\x01\x4f\x41\xf4\xcd\x5d\xa1\x5c\xdf\x7b\x41\x02\xb0\xad\x07\xd7\xb0\x24\xce\x1b\x1a\xd4\xaa\xda\x65\x69\xaa\x5a\x69\x6a\x09\x3d\xb9\xc8\x73\x66\x64\x9d\xaa\x12\x60\xf9\x83\xe5\xc4\x12\xca\x4a\x85\x18\x0d\x6d\xeb\x05\x36\x32\xc8\xdf\x52\xae\xb0\x7c\x7f\x3c\x66\x5a\xa0\xba\x27\x6b\x23\x0f\x6b\x91\xe5\xf7\x5a\xcd\x3a\x92\x84\x49\x88\xe4\xff\xbd\xf1\xbc\x6a\x72\x77\x9e\x08\x63\x75\x30\xf5\x1f\xf3\xd5\xc9\x20\xfa\xda\x36\x6a\x25\xa6\x2c\xb6\x3d\x2b\x69\xe6\x9e\x99\xe1\xcf\x89\x82\x04\x70\x45\x15\xa8\xc3\xb1\x29\x30\x59\x1a\xfa\x46\xab\xa4\xa1\x0a\xc1\xc1\x05\x16\xa7\xbb\x5d\x02\xb2\xdc\xc6\x46\x2e\xe9\x15\xc1\x5b\x9b\xce\x70\xe2\x4c\x82\x91\xe0\xa5\xaa\x8d\x58\x22\xb3\xd3\x53\xc3\x1a\x5c\x68\x02\x61\xc7\x8f\xf4\x9e\xae\x48\x4c\x31\x24\x37\xe8\xbf\x4e\xf4\xbc\x7e\x77\x76\x73\x75\x39\x21\x3e\x03\xeb\x3f\xc7\xac\x9f\x48\xee\x13\x50\x10\xe3\xcc\x67\x52\xac\x04\x71\xe2\xa1\x9d\x0b\x18\xd4\xb3\x83\x3d\x66\x75\x23\x88\x79\x24\x8f\xf1\xa3\x3c\xc6\x4b\xfc\x77\xce\x20\x4a\xa2\x0f\xff\x3c\x4b\x78\x1a\xff\xac\x95\xa1\x13\x38\xd7\xea\x84\x3c\x10\xa6\x8c\x07\x52\x2f\x57\x0c\xa9\xc5\x12\x12\x31\x7e\xa7\xc7\x9c\xe5\x8b\xc9\x31\x23\x5f\x22\xb2\x52\xe8\xff\x13\x64\xca\xb9\xaa\xbe\xb0\xf8\x6c\x26\x49\xa7\xcb\x29\xd3\xbf\x6f\xaf\xd0\x9f\xff\xf4\xdd\xf7\x9a\x84\xb6\x59\xe3\xe1\xed\xd5\x44\x7f\xff\xbb\x73\xfb\xbd\xec\xc0\xee\xae\x56\x19\x6b\x73\xc4\x63\x72\x22\x52\x06\x37\xa1\x00\xbf\x14\xb0\x37\x20\x87\x6c\x1f\xab\xb8\xdb\xb9\x01\x61\xd8\x29\x21\x6c\x87\x1b\xfe\x53\xc2\xa7\x60\xf2\x4b\x73\xe5\xdb\x1a\x82\x77\x76\x74\x95\x9c\x53\xb9\x4a\xf0\xba\xd4\xc3\xa6\x65\xbf\xd4\xdc\x69\x85\x23\x92\xa1\x47\xb8\x38\xbb\x88\x2f\x97\x10\xfb\xe9\x54\xeb\x98\xce\x20\x08\x54\xe9\xfb\x1f\x4d\x89\x7a\x84\x90\x63\xf7\xab\x97\x5b\x9c\xad\x5d\xb3\x32\x60\x97\xe3\x77\xc6\x28\xa0\x3b\x1d\xbf\xeb\xa1\xf1\xbb\x98\x3c\x90\x84\xaf\xf4\x69\xd6\x3f\x10\x15\x55\x6d\xe2\x60\x89\x69\x72\xc9\x95\xbf\xf9\x76\xd9\x4f\x41\x22\xba\xa2\xfa\x74\x4d\x88\x6e\xf7\x49\xb3\xfd\xaa\x0f\xd8\x28\x30\x89\xc0\x18\x10\x8e\x63\x4d\xc4\x50\xcb\xce\x0d\x2f\xf3\x9e\xb0\x60\xea\xb9\x1a\x4d\x5b\xd8\x4c\x98\xed\x31\x6c\x33\x2f\x56\x54\xee\x80\xb7\xa9\xed\xf5\x24\xd5\xbb\xdc\x9c\x17\xc3\x77\x9c\xd5\x15\x6b\xa4\x7f\x5b\x26\x31\xc0\x97\xb0\xc6\xe8\x5a\xe3\x5d\xf1\x00\xea\xb5\xe8\x20\xd1\xf9\x01\xde\xea\xef\x1a\x87\x26\x43\x80\xb7\x28\xac\x76\x0a\x96\x06\x9b\x16\x52\xcc\x44\x21\x1b\x47\x1c\x25\x5c\xe6\xb3\x44\x5b\x0f\xfa\xcc\x7e\xda\x34\xee\x41\x68\x98\x49\x93\x6e\xb6\xba\x7e\xc5\xc2\x17\x90\x3c\x0c\x9b\x50\x56\x99\xb0\x6f\xf7\x10\x05\x3f\x23\x48\xb6\x49\x96\x33\xc3\x62\x94\x49\x89\x63\x96\x59\x6b\x25\x7a\x24\x09\x38\x78\x22\xbe\x5c\x81\x04\x64\x87\x6b\x5b\xd2\x17\xb8\xc2\x8a\xf4\x10\x4f\x95\x6e\xcc\x44\xa3\xb9\x3b\xce\x86\xba\x65\x52\xa1\x51\x53\x6c\xd8\x87\x47\x16\x33\xb4\x6e\x58\x21\x65\xe8\x13\x51\xd0\x0a\x20\x37\x86\x13\x34\x75\xc1\x1b\x8f\xd2\x59\x69\xdb\x3a\x9f\x28\x3b\x93\x0e\x3b\x9f\xa5\x0c\x7e\x48\xf8\xb4\x71\xdf\xaf\xa0\x71\x74\x77\x33\x74\xee\xb1\xcc\x73\x10\x40\x4f\xe5\x94\xaf\xc1\xf5\xcd\xe0\xac\x3f\x1a\x9c\x1f\x23\xad\xe3\x7d\x22\xca\x4f\x17\x32\x0b\x3c\x88\xa1\x19\xb9\xcd\x41\x64\x52\x11\x1c\xd7\x50\x37\x11\x22\x17\xff\xbf\x81\x71\xe4\x13\x14\x9b\x09\x1b\xd2\x03\x29\x33\xc9\x9a\x90\x52\x5b\x9c\xa7\xf5\x49\x6d\x3a\x81\xe0\x21\x98\xbc\x1d\xff\x8c\x19\xef\xb2\xec\x93\xda\x44\x3e\x79\x5f\xd6\x53\x4f\x06\x8e\x96\x5a\x10\x2a\x50\xab\x69\x19\xa2\x9a\xb4\x9f\x53\x10\xdc\xf1\x19\xaf\x9a\x03\xaf\xf1\x63\x8e\x68\xad\x7b\x23\x33\x73\x3c\xf5\x39\x70\x6c\x6d\x62\x58\xe1\xee\x13\xcc\xe4\x7d\xc3\x5b\x3d\xdf\x34\xb1\x4e\xb2\x54\xdb\xff\x78\xcc\x0a\x83\xb0\x1e\x5c\x89\xe0\xec\xc0\x2f\x94\xa1\xdc\x95\xd8\x43\x33\xfa\xc5\x36\x9a\x45\x76\xb8\x57\x03\xdb\x50\x8d\x27\x71\x81\xcb\x67\xaa\x83\xd8\x70\x0d\xdf\x37\xba\x42\xb8\x54\x5a\xea\xd2\x92\xab\x20\x5a\xbf\x20\x31\x82\x6e\x7d\x9c\xc9\x46\x91\x41\x61\xa1\x17\x05\x77\xd2\xb7\x32\x10\xda\x18\x2b\x72\xa4\xe8\xc6\xd0\x7f\x1b\x1d\x06\x71\x64\x58\x05\x89\xf0\xd9\xcd\x33\x25\x73\xcc\x5c\x50\x42\xcd\x70\xdd\x95\xb7\x03\xab\xd2\x12\x2c\x86\xc0\x48\x90\xaf\x20\xe8\x2d\x37\x0e\xb9\x82\xf5\x6c\x1c\x87\x35\x14\xbe\x86\x65\x7b\xc4\xde\x6e\x59\x33\xd8\x74\x15\xbf\xa6\xc1\x26\x58\x2a\x64\xc7\x54\xa7\x49\x06\x12\xfe\xd3\x3a\x92\x73\xaa\x59\x5b\x7b\x9c\x26\xa1\xbc\x12\x42\x94\xa2\xb6\x36\x6d\x2a\x89\xcd\x8f\x5c\x12\x31\x77\x82\xb0\xa9\x1b\xe6\xcf\xb6\x2d\x20\xe6\x6e\x89\x90\x99\x40\x78\x4a\xb9\xe9\x63\xd4\x67\xa5\x4c\x71\x67\xc2\xce\xad\x97\xb9\x93\x70\xf2\x88\xd7\x12\xad\x84\x49\xaa\x34\x31\x2b\x6e\xf2\xe0\x5b\xcc\x7f\xe4\x2d\x45\xca\x05\x0d\x21\x50\xa5\x37\xfb\x17\x82\x72\xd8\xed\xb9\x5d\x4b\x9d\xa8\x10\x4f\x51\x55\xb1\xda\xab\x9a\x2d\x58\x9d\x22\x93\x68\x81\xd9\x9c\x4c\x6c\x1e\xe9\x56\xda\x92\x6e\xe7\x0c\x9a\x39\xb7\xad\x54\x5f\x4e\xd7\x46\x61\xb2\x00\xc0\xe6\x55\xa7\xd3\xc1\x21\x90\x0a\xcf\x09\x32\x23\x6a\x52\x4c\x32\x54\x88\xd0\xa0\x6e\x91\xa2\x40\x4f\xb0\xad\x0e\xf2\xf1\x23\x75\xc2\x3b\x58\x86\x2f\xf0\x94\x24\x3b\xc7\x05\x6c\x65\xa5\x83\xae\x2d\x2e\xa6\xe2\x7a\x69\x20\x0e\x86\xa0\xc7\x05\x11\x45\x76\xec\x6c\xdb\x22\xad\x8a\x8a\x69\x9a\x67\xae\x54\xdf\x0e\x13\x75\x40\xaf\xdb\x4c\xb5\x0e\xfe\x35\xbc\xf6\x02\x98\xd4\x2a\xfb\x48\x78\xfd\x15\x4d\x82\xdb\x0d\x24\x40\x6b\xad\x19\xc7\xce\x70\xad\x1b\xa7\xb2\x75\x7a\x4d\xcb\x32\x08\xc3\x19\x62\x9c\x11\x44\x65\xf6\xb2\xca\x07\x02\xfa\xe4\x54\x2d\xe2\x1b\xe3\x4b\xb9\xf8\xec\x53\x5b\x5a\xb2\xb4\x21\x6f\x1b\x70\x99\x0d\x8c\x68\x45\x15\x8b\x35\x80\xdb\x18\x3e\x9c\x97\xe9\x36\x8e\x73\xef\x02\xf7\xc8\x61\x17\x05\x4e\x4d\xc5\x11\x88\x91\x85\xc1\x21\x83\x00\x64\x5f\xb2\x1f\xd9\x04\xcd\x31\xf3\x96\x0d\x20\x44\x2a\xd1\x12\xaf\x20\xad\x80\x71\x95\x7d\x65\x12\x8e\x95\xdf\xc2\x9e\x13\xc4\xa5\x01\x51\xaf\x59\x81\x4d\xa6\x1d\x77\xfd\x66\xeb\x9a\x07\x76\x71\xa0\x54\x73\xfa\x40\x98\xa3\xe9\x9e\x3b\x13\x7a\x50\xae\xd3\x64\x7d\x84\xc1\x23\x4b\xe2\xd0\x70\xdd\xcc\x91\x6c\xe1\xd9\x57\x60\x8f\x6c\xbf\x64\x7a\xe3\xd3\x92\x85\xd2\xc0\x03\xe4\xa0\x09\x9d\x0f\x3d\xa4\x52\x8b\x58\x65\x72\x20\xb0\x44\xbf\x67\x5c\xfd\x3e\xc0\xf4\x72\xc6\x0b\x53\x97\xd8\x9a\xa0\x7a\x25\xbc\x5d\x38\xb4\x96\x70\x10\x0e\x72\xcb\x37\xae\xfc\xae\xd0\x7a\x59\x8c\xc0\x93\x4a\xa3\x83\x72\xfc\x67\x1d\x60\xb9\x29\xe4\xb1\x37\x8b\xcd\x73\x54\xdc\x47\x86\x0c\x04\x71\x38\x03\x4b\x2e\x48\xa1\x98\x88\xe1\xe7\x3e\x40\x7a\xb9\x52\x95\x49\x86\x65\xd1\xa8\xc2\xe0\x69\xea\x2a\x64\x27\x3d\x67\xe8\x94\xc7\x63\x76\x4b\x48\x3d\xd8\xbe\xdf\x8b\x5f\xa1\x21\x18\xab\x93\x1a\x1b\x28\x6d\x1f\xd1\xd2\xcb\x3c\x8e\x4c\x03\xd5\x6c\x80\xff\xaa\xb6\x4b\x6c\x13\xe1\x5c\x27\x97\x7b\x27\x45\x58\x35\xba\x0e\xdf\xea\x78\xcc\x3e\x72\x61\xaf\x60\x69\x11\x36\xa7\x38\xba\x3f\x22\x2c\x46\x38\x55\x0b\x83\x33\x65\xfd\x0a\x6b\x4b\x0d\x5a\xd2\x00\xb2\xf1\x49\x64\x54\x46\x58\xc4\x0e\xae\xf4\x81\xbb\x51\x8c\x59\xd0\x08\x60\x78\x02\x4a\x37\xd4\x2a\xaa\x53\x35\x09\x94\x45\xa8\x5b\x8b\xaa\x2a\x3c\xa5\x1a\x3c\xcd\xe7\x2c\x57\x55\x08\xd0\x47\x19\x91\x56\x64\x2f\xac\xce\xd0\x59\x1b\x9d\x7e\x27\xc3\xba\xec\xfe\xcd\x9e\xd5\x28\x8c\x49\xca\xce\x40\x4b\x3a\xdf\x39\x5e\x9b\xc3\xcb\x9a\xa5\x02\xe2\x95\xaa\xda\xfc\x36\x5a\xd0\x24\xf3\x5d\xbc\xef\xf9\x61\xea\x26\x13\xf2\x40\x12\x83\xd6\x18\x09\x08\x5c\x30\x56\xc3\xef\xd0\xff\x32\x95\x69\xd0\xf7\x63\xf6\x09\xd8\x70\x92\xac\x01\x4b\xc6\xb7\x8c\x55\xa1\x99\xfb\xca\x01\x28\x1b\x35\x85\xf2\x03\x31\x7b\xbd\xc0\x0f\x64\xcc\x5c\x33\xff\x0b\xdd\xa3\x7f\x45\xdf\xd7\xa9\x77\x2e\xfe\xe0\x89\xed\x1c\x1f\x03\xef\x7e\x70\xcb\x59\x46\x69\xf9\x8d\x33\x83\xe4\x8c\x90\x15\x39\x65\x1e\x12\x8e\xb2\x07\x1e\x95\x82\x5c\xc2\x53\x8b\x05\x61\x6a\xc2\x78\x4c\x26\xa4\xc2\xa5\xd9\xc0\x24\xb4\x10\x70\xc9\x63\xb2\xd1\x21\xe9\x99\xe9\xcf\x60\xba\x91\xe9\xd4\x6f\x07\xa4\xb6\xf8\x3c\x06\x6f\x7d\xc8\x53\x5a\xf5\xc8\x3d\xee\xd2\x36\xe3\xde\xd6\x99\x7a\x65\xe5\xb3\x1e\x5c\x08\x76\x00\xd5\x0e\xbd\x04\x2b\x17\x2e\x5e\x3c\x8e\x45\x47\x80\x7e\x59\xcf\xdc\x5e\x56\x01\xa2\x14\xa0\xfe\x0a\x3a\xa7\x5a\x7e\x6f\xef\xb0\x05\x4e\xb8\x8d\x37\xc3\xc0\xeb\xb4\x72\x67\x64\x4b\xe1\x52\x0c\x8f\x3c\xfd\x65\x4e\xc8\x29\x4f\x8b\x02\xbc\x5d\x00\x2a\xc3\x40\x76\x2b\xab\xaf\x35\x1f\x9e\x9b\x60\x49\xb2\xa0\x26\xdb\xa4\x7f\x76\x81\xf4\xe9\xe0\x4b\x93\x92\x0d\x8b\x96\xaa\x05\x17\xf4\xef\xb5\x01\x5c\xf5\x32\x7a\xe6\x69\xcd\xe2\xdd\xcc\x38\xf3\xd2\x3a\x10\xab\x11\x29\x54\x4e\x2b\xa9\xd2\x99\xd0\x34\x05\xf4\x21\xcd\x66\x67\x69\x62\x20\x4b\x23\x2e\x62\x53\x3a\x4f\xe6\xa2\xeb\xf4\x7b\x5e\xbc\xc7\xca\x37\x48\x2d\x48\x8b\x05\x45\x35\x16\x9c\x46\x01\xf4\x2f\x29\x49\xf7\x14\xa0\x68\xb1\xfa\x9f\x29\xf2\xa3\xa8\x06\xe0\xb9\xcc\xe2\x77\xcd\xda\x68\xde\x9c\xad\xef\xdf\xf4\x4c\x65\x10\xde\xeb\x2c\x8b\x3e\xf9\xd9\xa8\xe4\xa6\xaa\x4b\x27\x8b\xce\x8d\x01\x7d\xdc\x83\x49\xe7\x39\xe2\x39\xca\x32\x52\x05\xfb\xb1\xe4\xf7\xe0\x03\x5c\x8b\x2c\xe2\x89\xec\x24\x0e\x3d\xb3\x20\x7d\x3c\xa1\xc9\x64\x0b\x26\x57\x16\xaa\x9b\xd6\x3b\x30\xa0\x78\xb6\x56\x11\x77\xae\x38\xd2\x73\x7f\x14\x14\xb0\x11\xd6\xd9\xcb\xbe\x80\x91\xbb\x2e\x42\x1e\xa3\xa5\x14\x23\xd6\x42\x5c\x87\x5b\xc2\x75\x35\x8f\xef\x60\x80\xb0\x0d\xe5\xbb\x2e\xfb\xed\xeb\x4e\x84\x61\x49\xaf\xf5\x48\x94\x13\x23\x37\x1e\x06\x8f\x81\xfb\x32\x06\x44\x2f\xda\x3c\xf1\xc9\xe8\x44\x21\xc1\x45\xd6\x99\x44\x6e\xf3\xa6\xca\xce\x74\x61\xfa\x9e\x80\x9f\x7b\x67\xf7\x4e\xe0\x02\xc8\x32\x2b\x4c\x4a\x9d\x4b\x86\x7e\x26\x43\x26\x44\x0e\xe4\x93\xfa\x82\xc0\x81\xba\x64\xdc\x27\xe5\x67\x19\xf8\xa8\xe3\x48\x2d\x87\xd2\xe8\x2e\x6d\xe9\xfc\x04\x0b\x59\x13\x7b\xbd\xb0\x51\x9f\x79\xb7\xa1\xcf\x49\xcd\x42\xed\x6c\x85\x18\x25\x30\x24\x10\x40\xd8\xf7\xcf\x46\xcb\xa3\xd2\x58\x61\x1c\xc8\xe8\x72\xa5\xd6\x16\x93\x1e\x78\xb3\x45\xab\x56\x0b\xcc\x6c\xbe\x7d\x95\x8b\xb2\xc8\xa7\xe3\x9c\x93\xb2\xaa\x33\xe8\xc8\xaa\xb6\x95\x4d\xba\x85\x0e\x13\x7e\x0a\x49\x15\x75\x11\x09\xa6\x42\xcd\x04\x27\xb5\xf6\x94\x29\xe7\x09\xc1\xac\x4e\xed\xac\x7c\x5c\xb2\xbe\xd2\x30\x91\xc2\x42\xef\x28\x91\x12\xad\x73\xe3\x24\x29\xcc\x0b\x43\x91\x59\xe5\x21\xfe\xa7\x59\x29\x9d\xf6\x0e\x53\x93\x66\xdc\x25\x42\xcf\x7c\xd0\x48\x45\x36\x75\xd9\x15\x41\x6d\x95\xa5\x1b\x86\x7f\x55\xe6\x34\x6f\x1a\x58\x98\x09\xdd\x28\x42\xe4\xb3\x89\xb7\x1b\xa2\x24\x51\x2a\xa8\x5a\x4f\xac\xe1\xa9\x3d\xd3\xba\xb5\x5f\x9e\xd9\x0f\xdb\x68\x75\xa7\xc8\xf5\xe7\x0c\x5d\x20\xde\x08\x6a\xf0\x8b\xed\x14\xda\x6c\xb7\xd6\xd4\x2a\x73\x1d\x9b\x16\xd6\x25\x5b\xb6\x1b\xaa\xee\x62\xdb\xe1\x59\x5c\xd4\x09\x9f\xb9\x34\xc6\xf6\x0b\x5b\x04\x8c\xed\x60\xb1\x73\xe0\x57\x2b\x41\xb9\xb0\xb8\xac\x6d\x02\xab\x96\xf8\xcb\x64\x85\x05\x4e\x12\x92\x50\xb9\xdc\xde\xbe\xf8\xc7\x3f\x34\x8e\xf6\xcc\xe0\x07\x4b\x8b\xc6\xfd\x85\x2e\xd3\x65\x50\xbc\x1c\x40\x8b\x02\xe8\x11\x6b\xb2\xb7\x29\x97\x6e\x80\xd9\x45\xc3\x14\x15\x01\x98\x8c\xd6\x89\x3d\xac\x98\x55\x97\x71\xb4\x80\xa2\xb2\x33\x4c\x05\x23\x52\x1e\xa3\x4b\xae\xc8\x29\xfa\x8c\x57\x23\x50\xf8\x4c\x41\x8f\xb9\xb1\xd0\x62\x89\xb4\xe4\x94\x32\xaa\x7a\x63\x66\xb1\xc8\xdc\xaa\x9c\x44\x9c\x19\x3c\x9a\x08\x16\xd6\x37\x01\x26\x47\x07\xcc\xa2\x0c\xc6\xbf\xa6\x92\x9a\xc5\x16\xf8\x71\x12\x44\x50\x4e\x4c\x84\x7a\x07\x3a\xbe\xc1\x8f\x26\x66\x18\x6a\x30\x9a\xaf\x1b\xa4\x47\x1b\x94\x63\xf1\x9b\x0d\x0c\x93\x0b\x5e\xe0\x80\x26\x4a\x90\x47\x9e\x37\x11\x92\xdf\xd2\x63\x72\x8c\x3e\x24\x7c\x2a\x7b\x48\x7a\xc8\x32\x57\x22\x52\xf6\x8c\x93\x04\xfe\x36\xd9\x24\xef\xdd\xea\x67\x7c\x1f\x8a\x2e\xcc\xe8\x17\x53\x74\x5f\xfe\xf1\xf4\xe4\x64\xb9\x3e\x9a\xa6\xd1\x3d\x51\xfa\x5f\x20\x53\x54\xae\x90\x4d\x07\x9c\xe0\xaa\xf4\xd1\x4d\xab\x53\x4e\x3d\x6d\x45\x91\x16\xb4\xc0\xc2\x59\xe8\x2b\xdd\x97\xb5\x71\xd9\x89\x9c\x55\xd7\xec\xb0\x53\x16\x69\x27\xad\xaa\x5f\x08\xe0\x84\x12\x3c\x4b\x10\xeb\x64\x56\x69\xc0\x69\x81\x5e\xa8\xce\x31\x1f\x40\x0b\x82\x8f\x63\x4e\x64\x60\xde\x41\x5e\x4b\x4b\xe8\x8c\x68\x9e\x30\x66\x7c\x96\x37\x45\x19\xd0\x21\x87\x41\xa4\x3b\x8d\x04\x97\xd2\xc6\x64\x9a\x76\x9a\x23\xeb\x77\xc0\x37\x37\xc8\x49\xa6\x38\x5e\x11\xe9\x3c\x78\xe6\x30\xcf\xed\xc3\x4a\x58\xab\xda\xa6\x36\x22\x9c\x67\x6b\xd1\x01\xe3\xfc\xe4\xec\x62\xe8\x81\x7d\x0b\x5d\x97\x41\xce\x43\xb4\xa9\x7a\x98\xf3\xf2\x8c\x03\xc0\xf3\x42\x13\x0d\x90\xe7\x9b\x37\x2b\x1f\x09\xb6\x4b\xbe\x69\x61\xeb\x37\x9d\xca\x02\xcd\x6c\x0a\x58\xdc\xd3\x36\xd5\x84\xaf\x47\xc0\xc6\x9f\xda\xf7\x02\xec\x50\xbf\x25\x15\x5e\xae\xc2\x64\x1c\x97\x7c\x6f\xa7\x69\x8e\x5a\x9d\xcc\xfe\xac\x18\x4f\x11\x36\x7e\xce\xe2\xe0\x4a\x5b\xd1\xcd\x16\x3a\xb2\xd0\x51\xfb\x08\x70\x7b\xbe\xec\xb6\x64\x9d\xc5\x73\x48\x5b\x08\xcd\x57\x27\xae\xb6\x08\x4d\x89\x87\xc9\xaa\xdd\xd0\x5d\xd3\x57\x9c\x84\x8a\x04\xc1\xd2\x3a\xea\x20\xcb\xa3\x10\x01\xde\xc1\x68\xe3\xc7\x6c\xf2\xc4\x8e\x3c\x30\x5d\x70\xd5\x58\xac\xe5\xc8\x1d\x44\x2a\x04\x81\x1a\xcf\x06\xec\x77\x58\xb8\x5d\x00\x97\x59\x10\x1c\xaf\x83\x15\xf1\xae\x28\xd3\x33\x28\xad\x92\x2e\xb5\x58\x0d\x02\x03\xe3\x47\x7c\xe5\x24\x89\xdc\x5b\x80\x2a\x48\x67\xfa\xc6\x0a\x1c\x59\xfa\x0b\x76\x04\xc5\x4b\xb5\xe4\x55\x11\xc5\xe3\x1a\x81\xa8\x1f\xc0\x1a\x5e\x10\x7b\xc3\x8d\xdf\xf5\x3f\x5c\xdd\x8c\x06\xe7\xe3\x77\x59\xdc\xa6\x4b\x4c\x70\x32\xa6\x07\x3d\xe3\x6c\xcc\x7c\xa8\x95\x47\x11\x81\xbd\x44\x38\x8e\x33\x0c\x27\x2b\xda\x99\x48\x91\x46\x8e\x1c\x9c\x8a\x8d\x41\x56\x0d\xcd\xdc\x41\x74\xfa\x6b\x3d\x59\x0d\x46\xd5\xdc\xc9\x31\x31\xf6\x0d\xc1\xd0\x7b\xba\x6c\x42\xd0\x03\x65\x24\x60\xe2\x4b\xa1\x32\xf2\x68\x6d\xac\xe6\x76\x3e\xc1\xe6\x12\xee\xc6\xed\xdc\x86\x6c\xb1\xa9\x1f\xe9\x17\x12\xdf\xd4\x48\x55\x7b\x89\x75\x6e\x15\x23\x52\xb9\x0b\x5a\x2b\xea\xb0\x09\x7e\x2a\x77\xfa\xbb\xf6\x6c\xc9\xb0\xb7\x02\x2e\x01\x80\x12\x28\x84\x51\x44\x84\xc2\x94\xa1\x19\x1c\x6c\xad\x89\x41\xc6\x3b\x01\xef\xc6\x1f\xd0\x92\x32\xc8\x29\x6d\x5a\xda\xbb\xfc\x3c\xba\xd4\x1a\x1c\x5e\xde\x8d\x72\xa2\xea\x0f\x57\x77\xf9\x42\x57\xfd\x5f\x1a\x65\xd5\x42\x0b\x4d\x6e\xe4\x60\x8a\x59\x7e\x8a\x85\x67\xf0\x2b\x53\x35\xd1\x4f\x44\xfd\x64\x6a\xef\xef\x23\x78\xd3\xca\x59\x60\x52\x27\x13\x5b\xd4\xbf\x03\x19\xd8\xa1\x34\x44\xe8\x3a\x49\x0e\x7a\x40\xb6\x87\x30\x5d\xf4\xd8\x94\x74\x82\x12\xef\xe0\xc9\x76\x61\x10\x5a\x5f\xe2\x4c\x2f\xd7\x18\xde\x46\xaa\xd4\x1c\x9f\x99\x8f\x5b\x85\xe5\xdd\x84\xc1\x78\xba\xad\x6c\x29\x51\xff\x7a\x58\xb1\xd6\x17\x45\xab\xe3\xd7\x05\x58\x98\x78\x03\xe8\xbe\xb1\x0a\x83\xac\x8a\x57\x01\x53\x68\x67\xba\x1b\x42\xa1\xf1\x13\x5d\xe7\x9d\x4f\x4f\x7a\x0d\xef\x20\xcf\xe6\xb2\xa5\xac\x62\xb0\x1f\xa8\x86\x6c\x19\x3a\x62\x35\x84\x03\xb2\xd1\xab\x21\x3e\x41\x39\x34\xaa\x17\xe2\x15\x98\xa2\x9a\xce\xd3\xb5\x37\x0c\x87\x6c\x36\x6d\x40\x1c\x7e\x32\x14\xed\x73\x7c\x21\x6b\xd9\x21\xa8\xbb\x90\x26\x9b\x72\x17\x4e\x37\xa4\xb6\x6e\xb8\x0f\xd9\xf8\x9c\xbb\xd7\x56\x01\xc1\x2b\x6c\x95\x62\x90\xf0\x1d\xfe\x55\x15\x12\xf6\xf1\x98\x05\x3e\x4e\x69\x64\x72\x7d\x46\x1c\xfc\x1c\x94\xa8\xd0\xec\xd4\xc6\x16\xfb\x9b\x39\xb7\x03\xc5\xcc\x3e\xb5\xc8\x03\xc8\x95\xfa\xb1\xa7\x53\x2e\xb0\xcb\x9f\x70\xea\xbd\x0d\x5f\x08\x8d\x1f\xd0\x5e\x00\x13\x65\x3b\x26\x0f\xc4\x86\x3c\xe0\x00\x5f\x3a\xc8\xb9\x8b\x39\x91\xec\x1b\xe5\x33\x54\x68\x62\x41\xef\xb0\x8f\x4a\xcd\xfc\xea\x12\x53\xdb\x72\xf3\x01\xdf\x03\xa8\x44\x57\xa9\x36\x38\x56\x1b\x6d\x28\xce\x2d\x00\x94\x10\xba\xaf\xa1\xd3\x3a\x04\x88\x2f\x2b\x12\x6d\x93\xf9\x7e\x8d\x05\x5e\x12\x45\x44\x93\x07\x3b\x5f\xfd\x05\xbc\xb3\x6e\x07\x6d\xbf\x66\x17\x0d\x7e\x5a\x11\x68\xcf\xab\x5e\x17\x9b\x32\xd9\xfd\x2c\x3a\x81\x76\xe8\x69\xfc\x64\x01\xe3\x3a\xce\xc2\xf6\x93\x4d\xc3\x3a\xe8\x03\xe0\x82\x5d\xe7\xf4\x3c\x19\xdc\xa3\x52\x2e\x74\xce\xc3\xfc\x4a\x52\xb7\x37\x8f\xb2\x2e\x67\x7b\x13\x2f\xdd\x0b\xef\x76\x81\x99\x2e\xf3\xa7\x70\xa8\x72\x21\x9f\x40\x25\x20\xef\x9b\xf4\xe5\xea\xbc\x6b\x10\x5a\xaa\x82\x6a\x82\xf0\x75\x8b\xca\x93\x59\x1b\xad\x64\x55\x84\x0f\x2d\x2c\xd7\x06\x1e\xb7\xaf\x9c\xd4\x83\x44\xb3\x6f\x89\xa6\x83\x6d\xcf\x50\x27\x11\x85\xf4\x78\x5b\xa5\xc5\xe6\x35\xe6\x27\x08\x21\xd3\xf6\x8a\xb4\xa5\x1e\xe0\xea\xa7\xcc\xff\x95\xe7\xe0\x8e\xa8\x43\x52\xad\xca\x05\x39\x0e\xfc\x23\xe0\x1e\x49\x42\x69\xc0\xba\x62\x61\xb4\x26\x72\xc6\x98\xa0\x87\x97\xc6\xbb\x02\x39\x59\x6b\x9e\xa2\x47\x2a\xb5\x2e\x3c\x66\x10\x5a\xe2\x4d\xd5\x8a\xdb\x5a\xb3\x3d\x78\x0b\xb2\x37\x65\x3a\x5d\x52\x85\x70\x30\xc3\x9c\xbd\xac\x67\xcf\xb3\xfe\x00\x66\x5c\x99\x1e\x58\x85\x2c\xb0\xe1\xd0\x6c\x61\xfc\xc9\x1a\xd9\x35\x03\x30\x08\x83\x7b\xda\x1c\xc0\x40\xe3\x09\x35\xcc\xca\x33\x77\x48\x02\x44\xd5\xd6\x06\x8b\x75\x06\x80\x74\x54\xaa\xc2\xdd\x62\x11\xce\x36\x24\x00\x66\x1b\xd1\x2a\x03\x30\x7b\x7d\x1f\x29\x80\x75\xe0\xb3\x4d\x29\x21\xee\x93\x1a\xe3\xac\x4b\x35\x52\xdc\xc5\x5a\x86\x92\xd2\x75\xad\xa4\xf4\xda\xc0\x58\xb2\x18\xd2\xed\x23\x12\xbb\xa8\x83\x59\x58\x79\x48\x45\x41\x96\x48\x3e\x95\x9d\x14\x39\x3f\xe3\x0a\x42\x81\x23\xa8\xb9\x54\x4a\x4f\x19\xb3\x6a\x09\xa4\x99\x27\xee\x1a\xd5\xbb\x57\xd0\x96\xe0\xfc\xb9\x59\x58\x8b\xd6\xcf\x3e\xcd\xcf\x28\xcb\xb6\x7a\x52\x51\xc4\xcc\xfc\x4f\x35\x0a\x08\x08\x1e\xdb\xe4\x49\x55\x9c\xca\x96\x31\xb7\x1b\xcf\x85\xbd\x74\xf7\xa8\xda\x95\xb8\x73\xeb\x10\x65\x2f\x23\x5b\x6e\xec\x62\xec\x9c\x1a\x5f\x70\x23\x6e\x53\x46\x00\xb0\xd0\xf6\x86\xe0\x56\x4c\xaa\xd4\x8d\xf7\xc0\xf5\x68\x87\x8e\x4d\x18\x86\xc7\x15\x2d\x6c\x49\x6e\xc2\xb6\xda\xd6\x13\x4c\xba\x6b\xe9\x87\xc0\x15\x26\x6c\x80\x18\x0d\xed\x06\x50\xf3\xc1\x82\x44\x15\xf8\xb0\x17\xed\x52\x16\x13\xc1\x08\x56\x8b\xe7\x0b\xcb\x3d\xdb\xd5\x38\xfd\x6c\x21\xba\x67\x7b\xa9\xfb\x53\x08\x7b\xed\x18\xf1\xda\x21\x7c\x34\xab\x02\x51\x52\x1c\xab\xca\xe7\x65\x99\xf3\x5d\xa8\x74\xa7\xc8\xdd\x6a\x65\xee\x69\x62\x98\x2b\xac\x3e\xa5\xe8\x65\x7d\xd8\xc3\xda\x19\x1b\x96\xe4\xab\x08\x16\x7e\xfa\xf8\xd5\xa6\xca\x1c\x69\x10\xd2\x0a\xa5\x52\x14\xa6\xcc\x72\xaf\xa6\x28\x56\x53\x67\xbc\x2a\x70\xf5\xd5\x87\x44\x7f\x9d\x11\xd1\x9b\x44\xd9\x26\x43\x8a\xb7\xed\x43\x1d\xd0\x1c\xc2\xb7\x91\x40\x36\xc8\xa3\xdb\xc7\xad\x3a\x5b\x44\xe8\xf4\xb7\xbf\xd8\x1f\x2a\xfd\xfe\xa5\xcf\x8a\xb3\x0d\xed\x22\x6c\x5d\x34\x2f\x62\x11\x27\x16\x86\xc3\x46\xe5\xe5\xf5\xd8\x26\x93\xcb\x98\xfd\xc0\x1f\xc9\x03\x11\x3d\x84\x15\x5a\x72\xad\x86\x04\x7e\x76\x80\x0a\xc8\x21\x3a\x1a\x7f\x2a\x46\x97\x78\x49\xe2\x01\x08\xb3\x41\xec\x8e\x35\xfc\x58\x97\x4d\x15\xda\x14\x00\x27\x99\x6d\x70\xfe\xd7\x31\x33\xf1\x34\x26\x86\x03\xb8\x0e\x75\x13\x83\x2b\xf1\xf7\xde\xa1\xf4\xfb\x63\x34\xd2\x94\x4e\x65\x7e\xbc\x01\xf8\x44\xdd\xd8\xc6\x6c\x2e\x78\xba\xf2\xba\x38\x9f\x82\x11\xc0\x38\x96\x2a\x1c\x4a\x30\x18\xe7\x4d\x8a\x70\xac\x65\xfa\x66\xc2\x79\x91\x50\xab\xad\x32\xb8\x43\x02\xd2\xdc\xc1\xc7\x8f\xd8\x78\x4e\xe3\x07\x0a\xf2\x56\x9b\x70\x28\x9f\xc8\x49\x75\x4e\x24\x68\x97\xde\x7a\x97\x4b\x61\xca\xa7\xc9\x55\x8e\xb3\xc9\xb6\xe2\xed\x9f\xce\x46\x58\x9d\x81\x97\x75\x6e\x63\x47\x5c\x99\x6a\x20\xe0\x27\xb3\xba\xb4\x0e\x11\xab\xe3\x17\xd7\xa9\x58\x71\xe0\xe9\xc9\xda\x65\x0c\x5a\xa0\x8b\x15\x5f\xa5\x26\x3e\x86\x86\xe1\x12\x95\x94\x4d\xa5\xfa\x8c\x55\xb4\xd0\x0a\x4c\x06\xf8\xb0\xa7\xb8\xa1\x8c\x2b\x3f\xad\x25\xa6\x62\x06\x67\x61\xef\x35\xa6\xc9\x16\x96\x39\x83\x18\xe7\x62\x48\xe1\xaf\x24\xf1\xd5\x55\x2b\x6b\x5c\xb9\x4f\xec\x13\xa8\x4f\xbf\x81\x8a\x36\x8d\xbf\x1d\x6d\xe5\x0b\x0e\xec\x3d\x22\x69\x87\xec\xe5\x73\x8b\x57\x90\xbd\x88\xac\x84\x54\xc9\x72\x52\x41\xb7\x0b\x75\xb7\x20\xa1\x0f\x5a\xe4\xf0\x96\x9b\x25\x5e\x69\x71\x44\x71\x7d\x4b\x8a\x39\xe9\xa1\x47\xcd\x0b\x54\x2a\xf4\x3d\x92\x0a\xea\xce\x7e\x21\x1d\xa9\x9e\x3a\xc0\xd2\x71\x12\x02\xca\x47\x38\xa8\xb5\x61\x1c\x87\x38\x52\x29\xf6\x01\x4e\x40\x13\x09\x65\xf7\xba\x33\x93\x7a\xe5\x1c\x74\x82\x98\x14\xac\xb8\x62\x4f\x37\x12\xf6\x0e\xbb\x5c\x5f\x39\x6e\xd3\x49\xa3\x6c\x1e\x60\xc3\x54\x5b\x9b\xda\x40\xbf\x56\x7e\xd9\x0e\xbe\xb6\xf2\x53\x27\xfb\x6c\xf3\x6d\x03\x6e\x40\xed\xe7\x9b\x04\xd8\x5c\x30\xa7\x0d\xa8\xb3\xd2\x53\x88\xda\x63\x2d\x01\x00\xbe\x65\x4a\x35\x62\x2b\x4d\xfd\xa7\xff\x97\x29\x15\x60\x96\xe6\x3f\x11\x17\x63\x66\x7e\xef\x79\x98\x5e\xfd\x42\x86\x7f\x85\x97\x24\x43\x08\x12\x79\x2c\x11\xc8\x66\xb5\x58\x10\x06\xeb\xcc\xa3\x94\xea\x31\x04\x75\x31\x4b\x55\xf9\x96\x98\xe1\x39\x20\xab\xf5\x20\xc2\x06\xc4\xd5\xcc\x76\x61\x48\xda\x94\x7b\x01\x6e\xa5\x99\xa5\x4d\x2a\xcb\xaa\x56\x41\x9f\x46\x94\xb5\xc0\x4e\x99\x9b\xb6\x9a\xfa\x5d\xc9\xc4\xed\x24\xf6\x51\xff\xf6\xc7\xc9\xcd\xe0\xf6\xea\xee\xe6\x2c\x27\xb6\x9f\x5d\xdc\xdd\x8e\x06\x37\x95\xcf\xb2\x84\xac\xbf\xdc\x0d\xee\x6a\x1e\xb9\x06\x2e\xfa\x1f\x06\x17\xe1\x2b\x7f\xb9\xeb\x5f\x0c\x47\xbf\x4c\xae\x3e\x4e\x6e\x07\x37\x3f\x0d\xcf\x06\x93\xdb\xeb\xc1\xd9\xf0\xe3\xf0\xac\xaf\xbf\x0c\xdf\xbd\xbe\xb8\xfb\x34\xbc\x9c\xb8\xf0\xc5\xf0\xd1\xcf\x57\x37\x3f\x7e\xbc\xb8\xfa\x79\x12\x74\x79\x75\xf9\x71\xf8\xa9\x6a\x16\xfd\xdb\xdb\xe1\xa7\xcb\xcf\x83\xcb\x51\xa3\x22\x52\xbd\x1a\xf5\x95\xbf\xb3\x8b\x2c\x50\x3f\x03\x31\x69\xba\xb6\xa4\x4d\xff\x0e\x46\xd0\x6b\x43\x8f\x47\x3d\xf7\x2f\x53\x18\xee\x48\xb3\x40\x67\x5f\xcf\xb8\xc7\x98\x79\x07\x88\xbf\x54\x15\x9e\x4b\x97\x5f\x97\x1b\xed\x29\xea\xc3\x59\x01\x85\x21\xd7\x29\xe4\x0d\xfb\x91\x3a\x97\x19\xd0\x61\x42\x97\x14\xbc\x67\xe8\x08\x15\x37\x3c\xdf\xa0\x9d\x13\x0c\xc1\xda\xff\xe3\xa6\xd3\x20\x8b\xa9\x7b\x40\x29\xa7\xc8\x71\x68\xdd\xac\x1e\x17\x40\x6f\xad\x19\x5e\xd2\xc8\xfc\x50\x40\x9f\x42\x59\x96\x6b\xb1\xc5\x1c\x81\xe5\x5b\x5e\x10\xf4\xe3\x9f\xb3\x41\x81\x2d\xd4\xda\x16\xd3\x52\x41\x11\xfb\x40\xa4\x66\x55\x37\x91\x67\xae\x27\x77\xcc\xad\x91\x0a\xce\xad\xad\x3b\x07\x86\xeb\x94\x05\x48\x17\x39\x2b\xb6\xad\x41\x8b\x8e\x50\x81\xc6\x4f\x91\xa9\x88\x2f\x33\xd5\x5d\xef\xe2\x2a\x49\xe7\xb4\x54\x76\x72\x4a\x16\xf8\x81\x72\x87\xde\x6b\x40\x8e\x61\x1d\xad\x68\x85\x8e\x50\xed\x41\x39\x45\xfd\x38\x96\x79\x06\x97\xa3\x1c\xc7\x32\x8f\xf2\xc3\x0e\xc1\x29\x58\xec\xd9\x66\x81\x8e\xb2\x23\x07\x2b\xb6\xff\x3c\xe2\x32\x3b\xcc\xdf\xbd\x3b\xe1\xb2\xc9\xfb\x89\x23\xe5\xc9\x56\xc2\xc0\x08\xcb\xfb\x8a\x6a\xb6\x95\xf7\xab\xcb\xe8\xde\xad\xc7\xfa\x12\xba\x95\x9d\xfa\x95\x9d\xc0\x41\xdb\xae\xcf\x5a\x50\xbc\x0d\x5d\xba\x19\x27\x85\xca\x05\xad\xfb\xcb\x55\x3e\x78\x7a\xbb\x71\xb5\x34\x06\x47\x72\xe2\xe9\xbf\xc3\x3c\xae\xe1\xd3\x2b\xff\x65\xa3\xc8\x36\x09\xd6\xad\xab\x35\xb9\x94\x89\x66\x2d\xca\x8d\x74\xb8\x27\x64\x81\xf6\xc2\x20\xe0\xce\xd2\x08\x1c\x07\x98\x32\x8b\x46\x4e\xbc\x65\xdb\xd5\xdf\xd3\xe7\xd8\x57\xc8\xc0\x53\xfe\x90\x53\x2e\x97\x44\x4a\x5c\x93\x95\x1f\x98\xc4\x76\x61\x0c\xfe\x84\xda\x0f\x5b\xd2\x93\x3b\x93\x23\xfd\x55\x93\xd1\xe7\x26\xd4\x8c\xdd\x44\xb5\xc0\x1a\xbb\x88\x3d\x74\x65\xf2\x76\x34\x7f\xe9\x65\x4e\x79\x2e\x82\x58\x85\x1a\x6b\x55\x5b\xb3\x5a\x71\xc1\x2a\x41\xe6\x43\x67\x40\x77\x5f\x7e\xd0\xfa\xd6\x80\x80\x58\xf0\x94\xc5\x08\xe7\xd7\xa7\x03\xd5\xe5\x3c\x27\x61\x01\x3e\x53\x6b\xd6\x54\xf7\x0d\x46\xda\x43\xd8\xa4\x4b\x65\xd2\x94\x4c\xa3\x85\x81\x2a\xd7\x57\x46\x6f\xcc\x1e\x83\x0d\xc9\x05\x14\xf6\xc3\x96\x00\xc8\xea\x8b\x3e\x6e\xf4\x21\x17\xa6\x09\x22\x23\x85\x98\xc1\x80\x10\x8c\x6b\x21\x43\xcf\xdf\x40\xe0\xc1\x7e\xed\x40\xea\x5b\x94\x4a\xa9\xa8\xe6\x5b\x55\x30\xc5\xcf\x2d\xa8\x53\xb2\x83\xa6\xdc\x76\x08\x41\xa9\x94\xaa\x11\xec\xa1\x52\xca\xb3\xa2\x1b\xfa\xb4\x2f\x93\x25\xb8\x9c\xda\x44\x6c\x3d\x5d\xb7\xda\xff\xea\x66\xf4\xaf\xc6\xef\x90\xd6\x64\xee\x07\xad\x79\x80\x43\x74\x04\xb5\xe7\x6d\x46\xa9\x75\xe9\x4a\x74\x64\x00\x6b\xbe\x81\x88\xad\xfe\xf5\xf0\x9b\x1e\xfa\x26\xcc\x5a\xf9\x66\xab\x03\x68\xc7\x6d\xab\xa5\x80\x36\x95\x0b\x5d\xce\x1f\x3b\xd8\xab\xc2\x49\xb4\x7b\x66\x0f\x22\xaa\x3b\x87\xfa\xcb\xdc\x37\x94\x29\x22\xa0\xfa\x87\x89\x70\xf5\x81\x93\xd6\x05\x64\x64\x5c\x2a\x2b\xd6\x2e\x1e\xb3\xe9\xba\xe8\xe4\xe9\x79\x2f\x4f\xeb\x53\xba\x73\x45\x0b\xdd\x5e\x39\xcd\x71\xcf\x01\x7d\xcd\xf7\xc1\x86\xc4\xc9\xbe\xaf\x34\x9d\x71\xb1\x3a\x04\xa8\x43\x24\x6c\xd5\xac\x72\xf6\x32\xb7\x98\x95\x9b\xb2\x49\xfe\x79\x6b\xe4\xd6\x22\x7c\xb4\x5f\xb5\x22\x36\x72\xb8\x46\xb8\x3e\x50\xd9\xd3\x52\xd9\x3e\x22\xa7\xf3\x83\xeb\x7e\x81\x9e\x19\x39\x2e\x68\xc6\x19\x5c\xb5\x32\xe1\x19\x7c\xae\xec\xc9\xe6\x7a\x61\x1d\x7d\xbe\xc1\x9a\x6c\x76\xfa\xde\x9a\xc0\x01\xe3\x76\x2d\x8f\xb5\x38\xd4\xbe\xb2\x18\xec\x9c\x9a\x2c\x29\x45\x97\xa4\x87\x38\x4b\xd6\x41\xb0\x83\x3d\xaf\x40\x6e\x70\xc7\xd9\x62\xc6\xa6\x13\x0b\xa4\xd5\x29\xad\xb6\xa3\x34\x5e\x47\x23\x3b\x44\x9a\x5c\xf6\x3f\x0f\xce\x27\x83\xcb\xd1\x70\xf4\x4b\x05\x48\x5a\xfe\xb1\xc3\x49\x0b\x5e\xb8\xfd\xe5\x76\x34\xf8\x3c\xf9\x34\xb8\x1c\xdc\xf4\x47\x1b\x30\xd4\x9a\x3a\xab\xc3\xe7\x4a\x65\x95\xfa\xd6\x05\xa3\xcb\x99\x79\x2b\x7a\x2f\x23\xa9\x05\x9d\x50\x52\x83\xa6\x66\x52\x88\x59\x4c\x04\x8a\xc9\x03\x49\xf8\x2a\x33\xab\x56\x2e\x58\x00\xb3\x56\xd1\x7e\x13\xd4\x1a\xb4\x59\x5c\xe3\x53\x64\x4a\x5d\x04\xd5\xbe\x7c\x83\x20\xf2\x61\x41\xd8\x37\x0a\x91\x2f\xab\x84\x46\x54\x05\x29\x46\x5c\x58\xf7\x8a\x71\x1f\x42\x9c\xdb\x06\xe2\xda\x5b\x34\xca\xde\x75\xfe\xd0\x93\x5e\xd6\xf6\xfd\x89\xf2\xb0\x3f\x1b\xf1\xd3\xf7\xa0\xd8\xd7\x38\x8d\x4b\xa8\x44\x5b\x8c\xee\x29\xcc\x03\xe5\x58\x7f\x9b\x26\x54\x83\x58\x54\x3d\xc8\xcd\xb7\x61\x53\x9c\x4c\xee\x5c\x37\x07\xca\xb4\xa3\xd4\x17\x0e\x77\xc9\xd5\x15\xda\x43\x06\xbf\x8d\x82\xed\x18\xb0\x50\x82\x2a\x67\xf7\x06\xc0\x19\x09\xb2\xe4\x4a\x2b\x60\x26\x22\xa0\xa7\x85\x2a\x8a\x13\xfa\x77\xc0\xba\x11\xe4\x38\x88\xa0\x80\x54\xa2\x38\x0c\x1d\xb7\x79\xe8\xd5\x65\xf1\x73\x53\xdf\xb6\x34\x3e\x11\x82\x8b\xf6\xfc\xc1\xf7\x37\x80\xef\xaa\xc9\x1b\x9e\xe5\x6c\x53\xce\x00\x70\x59\x5b\x14\x2e\x88\x3e\xde\x7b\x72\xc7\x0d\x7e\xcc\xad\x48\x98\xc6\x0f\x92\x48\x7e\xd5\x9f\x70\xb5\x3b\x96\xe4\xcf\xf5\xb9\xb9\x1c\xff\xc8\xd5\x75\xae\xac\xc5\x5f\x9e\x67\xad\xa8\xf8\x0c\x15\xf9\xcb\x29\xff\x05\xd2\x7f\xd9\x6a\xfc\x85\xc1\xbc\x9e\x92\xfc\x1b\xd7\xed\xf5\x62\x3a\x54\x0c\xb4\x45\x29\x7e\xef\x4f\x82\xca\x73\xdd\xae\x65\x17\x94\x97\x73\x2a\xe9\x43\xe5\xef\xe7\x6a\x2d\x1b\xcb\xfb\x9d\xbb\x1b\x61\x79\x5f\xd3\xd5\xa6\x1b\xfc\x2c\xe7\x50\x2a\x2c\x9b\xab\xe3\x6e\x40\xd3\x40\x8b\xde\x78\x2f\x0e\x1e\x08\x53\x7b\x11\x2a\xa1\x89\x8a\x9c\xcd\x76\xa6\x61\x53\x96\x66\x78\x9e\x71\x24\x5f\x1e\x35\x08\x45\x51\x02\x03\x73\x26\xea\x91\x10\xe6\x42\x13\xea\xbc\xb3\x0f\xad\x1d\x7e\xf0\x6a\x79\x5d\x36\xc4\x33\xdb\xd5\xce\xca\xd3\x65\xb1\x88\x0e\x74\x78\x4b\x14\x07\x49\x8c\xea\x19\x64\x0f\x5b\x8d\xa2\xb8\xe7\xa6\xcf\x05\x96\xc5\x2e\x37\x6e\xf9\x16\x90\x05\xb9\x66\x3e\x11\xc8\xe8\xd9\x4b\xc9\xe8\x0e\x99\x9b\x30\x90\x3b\x91\x40\xdc\x6b\xa3\xe9\xc1\x94\xc6\x4b\x45\x92\x5d\xc7\xb8\x85\x60\x65\x06\xa3\x6f\x7a\xb2\x12\x04\x8a\xb5\x9e\xa2\xeb\x84\xe8\xeb\x32\xd5\x57\x66\x9a\x24\x0e\xde\xa5\xf9\x4a\xef\x04\x49\xf4\xe4\xf3\x0a\x04\xc6\x86\x89\x39\x78\xa3\xe6\x99\x05\x6b\xb0\xff\x7c\xdb\x60\x7d\xc1\xee\x07\xd6\x9f\xbc\xe8\x0f\xba\xdb\xda\x04\x3b\x82\xfe\x8f\x43\x1d\x45\xd2\xbf\xeb\xab\x5a\x10\xb9\xe0\x49\xe3\x14\x3a\x83\x46\x75\x99\x83\x5b\xca\x27\x9c\x84\x8d\x34\x9b\xd4\x05\xc3\xb6\xb8\x8c\xce\x4d\x13\x95\x57\x60\xd3\x14\x3d\x2e\xb5\x77\xd9\x5b\xb0\x3d\x1b\xba\x65\x87\x06\x8e\xa8\xcc\x3e\x12\x02\xdf\x64\xf6\xe6\x4c\x02\x5d\x1b\x87\x99\xff\x3c\x28\xba\xeb\xe3\xb8\xa9\x92\x59\x95\x0a\xa8\xbe\xdc\x8d\xcb\xda\x68\xff\xac\x09\x3d\xe0\x6a\xd6\x66\x21\xa9\x41\x4e\xb1\xb1\x1c\x32\x07\xd9\x63\xb7\xd8\x4c\xb9\x52\x86\xae\x67\xa0\xbb\xfa\x2d\xf2\xf5\x76\x9f\xcc\x7d\x91\xa3\x96\xdc\x04\x0e\x20\x30\xdd\x41\x60\x2c\x3e\xb9\xa7\x3d\x80\x6c\x52\x02\x72\x34\x33\x0f\x45\xf1\x92\xb7\x56\xc5\x4d\xa9\x25\xb9\xdd\x69\x95\x47\x92\xfb\x42\x9f\xfb\xf3\x1d\x5d\x1c\x7a\x32\xeb\x09\x64\xe6\xed\x12\xe6\x90\x9b\xbf\x31\xcf\x42\x9b\x24\x46\x26\xd1\xd4\x40\x54\xda\xb5\xf3\xa6\x69\x53\x89\x7a\xcc\x6e\xf4\x28\xcc\x17\x99\xab\x3b\xab\xf2\x4a\xb2\x7a\x54\x33\x84\xed\x57\xb0\xe8\x75\x91\x46\x72\x12\x14\xb9\xae\x9b\xd8\x1e\x8a\xa9\x7d\x30\xef\xa0\x59\x82\xe7\x0e\x9e\x01\x0a\xa8\xcf\x32\x3d\x49\x0b\x7b\xa6\x22\xb9\x49\x15\x36\x97\x07\x55\x36\xfd\xd7\x8b\xca\x29\x71\x40\x99\xf0\x99\xe7\x5f\x55\xcc\xd5\x69\x62\xcc\x59\x40\xe4\x98\x05\x7d\x34\xe0\xaa\x19\x6d\x68\x4b\xb1\x1f\xf6\x99\xc6\xde\xb3\x00\x7f\x9a\x1d\x2a\x55\xac\xb6\xd3\x5b\xe2\x15\xd8\xcf\xcc\x19\xe4\x33\x7f\xff\x8c\x6c\x18\xf7\x31\x8c\xf8\xff\xfc\xd7\x7f\x1f\xd3\x3a\xf3\xb2\x9c\xd8\x15\x78\x0d\x3b\xd9\x6d\x5b\xc2\x9d\x0f\x12\xbe\x15\x47\x31\x85\x52\xf4\x29\x95\x8b\x4c\x41\xca\xca\xa4\xcb\x5c\x68\x7a\xf6\xab\xbd\xdc\x34\xd1\x70\xb5\x30\xfe\xb4\x3c\xb9\x83\xf1\x59\xa4\xcd\xb7\x6c\xc0\xe2\x32\x8f\x6b\xe6\x56\x0b\xa2\x1a\x83\xaa\xe6\x18\xae\x5d\x54\xb8\x50\x0a\x0c\x2a\xc0\x5d\xda\x25\xfa\x6b\x81\xe5\xd3\xb9\xf8\x2b\x6b\x24\x18\xab\x5c\x78\x47\x6e\x72\xf6\x9b\x41\x9a\xac\x31\xbd\x2b\xa9\x24\xc2\x1c\x68\x0f\xd0\x51\x51\x28\x12\x62\xbd\x36\xf8\x2c\xc8\x12\xd3\x4e\x71\xc9\xfa\xfd\x6a\xcc\xab\x9c\xd1\x12\xcf\x89\x98\xc4\x69\x2e\x08\x75\x53\xdb\xd7\xfa\xa3\xf3\x54\xad\x37\xb7\x2f\x13\x1c\xdd\x77\xc1\x19\xd3\xef\xd7\x34\xbb\x59\x30\x0c\x42\x05\xf2\xc2\x61\x0d\x8a\x17\x29\xa0\x78\xd9\xd8\xb5\x9c\xd6\x0e\x17\x0d\x83\x4a\x9f\x81\x70\x6f\x6f\x22\x83\x35\x0a\x23\x87\xda\xef\x8e\x75\x7b\xf4\xe6\xf8\x78\xcc\x3e\x1a\xf8\x73\x50\x3c\xcc\x00\x22\x48\x1c\x20\x5f\x56\x5c\x92\x5c\x26\x4b\x05\x22\xb3\xcd\x44\xb3\xc3\xa8\x96\x49\x0b\x95\x56\x77\x12\x49\x5f\x1c\x8f\xad\xbc\xe1\xe5\x29\x57\x53\xe0\x4e\x52\x4f\x44\x57\x54\xd3\xce\xa4\xf2\xa4\x3d\x5d\x0d\xfc\x2c\x36\x04\x90\x39\x54\xb2\xee\x21\x3f\xbd\x02\x41\x24\xe4\x81\x08\x3c\xd7\x12\x2b\xa6\x49\x88\xbb\x9d\x37\x35\xd5\xb0\x93\x4d\x07\x28\x4b\x23\x03\xb6\x80\xe2\xe2\x08\xf2\xc9\x36\x55\xb4\x98\x4f\x23\xd8\x39\xe3\xa5\xca\xc1\xdd\x41\x0a\xed\x87\xf8\xe3\x6b\xa2\x10\xf9\xa2\x88\x2d\x9f\x35\x72\x39\x49\xe5\x30\x66\x54\x9d\x56\x51\x2f\x22\xed\x9f\x2a\x4a\x13\xb1\x99\xa8\x2e\xe9\x2a\x76\xf7\xbe\x4d\x42\x5a\x60\x16\xdb\xcc\x3a\x2b\x4b\x6b\x99\x02\x66\x67\xec\x40\x3e\xe6\xd8\xe6\x87\x05\xc0\xad\xa6\x4d\x83\x30\x0b\x17\x99\xd3\x8b\xb4\x64\x0e\x6e\x5a\x2e\xb4\x80\x9a\x32\x45\x13\x4d\x1c\x76\x0c\x5a\x6b\x4e\x99\x87\x4e\x82\x08\xd9\x3a\x74\x1e\x2a\x25\x65\xf3\x89\x5d\x49\x97\x24\xd6\xee\x62\xc8\xd3\xd4\x67\xd3\x94\xf9\xf1\x83\x6b\xa8\xd9\xce\x6b\xc8\x5a\x4f\xdf\xa7\xa7\x81\x60\xcd\xb8\x9b\x8c\x85\xbc\x71\x59\x6d\x13\x1a\xe7\x8a\x49\xc3\x44\xbb\x18\x29\x40\xac\x2b\xe7\x83\x67\x57\x88\xb4\x29\x67\x26\x91\x04\x22\x7e\x55\x4d\x4e\x9d\xac\xcd\xa5\x1b\x32\x2f\xa2\xd9\x32\x1c\x3e\x63\xb8\x90\x96\x87\x5d\x77\x36\xac\x19\x27\xc9\x14\x47\xf7\x5e\xd9\xf0\x2a\x37\x17\x0e\xc6\x58\x0b\xa8\x50\xa7\xc5\x10\x97\x1e\x68\x04\xd2\x8d\xad\x45\x0a\xc4\x64\x10\x41\xec\xb0\xb3\xce\x6d\x09\x6e\x66\x8a\x42\x83\x72\x6e\x46\x6f\x62\xa4\x63\xb2\x4a\xf8\x7a\x59\x73\x9f\x15\x53\x91\x76\xf1\xf8\xd7\x65\x42\xed\xf5\x2a\x2b\x30\xbd\xce\x97\x59\x29\xaf\x61\x0f\xf8\x34\x1d\xb8\xe4\xa7\x84\x4f\xc1\xca\x67\xb5\x6c\x17\xab\x1f\x84\x8c\x17\xcf\x73\xd7\x0c\x82\xe2\x89\xa4\x72\x95\xe0\x75\x53\x0f\x26\x76\xfd\x69\xf7\xcd\xe4\x3a\x6f\x36\x82\xb5\x8f\xfa\xac\xfc\xfc\x49\x4a\x9d\x3b\x49\xc0\xd6\x3c\x07\xfe\x65\x8d\x49\xc4\x59\x93\x4c\xd6\xd0\xf1\x4a\x70\x2d\x29\xf0\x31\x53\x78\xee\x76\xd7\x4a\x97\xfc\x91\x11\x21\x17\x74\x95\x2b\xe0\xb4\x73\x9c\xa9\x25\x69\xfb\x1f\x13\x55\xd9\x81\x79\xf2\xd5\x91\x81\x3a\xd0\x04\x22\x57\x38\xca\xac\x7f\x51\x82\xa5\xa4\xb3\x75\x80\x50\xe0\x43\xf6\x20\x0f\x24\xaf\x2e\x07\x35\x53\xaa\x38\x4d\x98\xf3\xbe\x9f\x44\xdd\xdd\x93\x94\xee\xf2\xa7\x90\xc6\x21\x20\x14\x94\x6c\x2e\x81\x52\xb8\x0b\xdb\x82\x53\x3c\x55\xee\x92\x1d\x99\xcd\xe0\xd9\xdf\xc0\x1c\x96\xc0\x76\x19\xbf\x8d\x20\x27\xf5\x66\x8e\x4c\xd8\xb5\xc3\xb6\x8a\x96\x07\x36\x08\xa7\x01\x73\x8c\xed\x17\x3e\x5b\x27\x97\xa7\x8e\x73\xd8\x1e\x66\x8d\xb4\xf2\xe7\x4c\xb8\xfa\x7c\x79\xe0\x04\xc8\x2f\xcf\x3a\xe8\x21\xb9\x13\xe0\x50\x7b\xd2\x3e\x27\x09\xd9\x4b\x0c\xea\x16\x74\x5e\x8c\x15\x08\x28\xbc\x91\x88\x32\x00\xe7\xcd\x66\x92\xee\x34\x5e\x1c\x55\x46\xdd\x7b\x1b\xd4\x16\xf1\xba\x35\x88\x2a\xd5\x23\xff\xd9\x0c\xd4\x86\xec\x56\x11\x18\x98\x17\x61\xeb\xdb\xaa\x86\x55\xd0\x6c\xa6\x05\x7b\x62\xb2\x6e\xdc\x3e\x3a\xec\x1b\x2f\xec\x3a\xe9\xeb\xf5\x1e\x83\x17\x0e\x70\xad\x19\xdd\x27\xd2\x26\xba\x63\xe3\x11\xdd\x8a\x9b\xd6\x5d\x89\xed\x48\xc5\x7a\x66\x15\x47\x73\xa2\x4c\x71\x62\x5f\x81\xf9\x0d\x92\xc9\xde\x22\xf6\xf7\xba\x15\xd5\x4c\xa0\xdb\xa9\xbe\x25\x4a\xba\x1b\xaf\x84\x86\x67\x77\xea\xc8\x25\x1f\x67\xa9\xbc\xaf\x77\x8b\x5e\xc7\x49\xbe\xb1\x56\x95\xa7\xbb\x60\x37\xd3\xcb\x5e\xe8\x03\x70\x78\x30\xa4\x2b\xa4\x16\xd8\x17\x0e\x6f\xe0\x81\x2d\xa9\xf2\x1b\x7c\xdb\x76\x78\xad\xbc\xda\xa5\xe5\x7c\x8a\xed\xb5\xb1\xa9\xad\x37\xf7\x29\x49\xad\xeb\x58\xf6\xa1\xa3\x3c\xb1\x51\xc4\x52\xe3\x46\xed\xfa\x10\x62\x82\x50\x9d\xff\x35\x73\x2c\xda\x2d\xdb\xe7\x21\xab\xc2\x75\xdf\x3d\xbb\x26\xe1\xc6\x3b\x30\x59\x09\x32\xa3\x5f\xb6\x12\xc5\xaf\xe1\x53\xab\x5e\xea\x65\x2e\x20\xc5\x83\xb5\x03\x90\xe5\x03\x37\xb8\x5d\xe9\x47\x41\x95\x22\x6c\xcc\x00\x16\x5b\xfe\xf1\xf4\xe4\x64\x9a\x46\xf7\x44\x9d\xdc\x93\x35\xe2\x22\xf7\xd3\xb6\xd8\x2c\xfb\x47\xb5\x37\xfb\xba\x50\x6a\x25\x4f\x4f\x4e\xe6\x54\x2d\xd2\xe9\x71\xc4\x97\x26\x7a\x8b\x8b\xb9\xf9\xc7\x09\x95\x32\x25\xf2\xe4\x0f\xdf\x7f\x9f\x6d\xf1\x14\x47\xf7\x73\x93\xed\x5a\xb6\xe2\xe4\xb6\xfc\xb6\x5c\xf9\xa9\x3b\x52\xb0\xe0\x6c\x42\xbe\x68\x22\xad\xaa\x2d\xde\x16\x48\x44\xa2\xfe\xcf\xb7\x48\xae\x99\xc2\x5f\x4e\xd1\x67\x53\x08\x1e\xfd\xc0\x53\x21\xd1\x39\x5e\x1f\xf1\xd9\xd1\x92\x33\xb5\x40\x9f\xe1\x7f\xed\x4f\x8f\x84\xdc\xa3\x5f\x08\x16\x76\x7f\x8d\xc0\xe2\xc1\xc6\xc1\x0b\x21\x52\x26\x6d\x85\xf9\xef\xff\xdd\x95\x98\x3f\x45\xdf\x9d\x7c\xff\xef\xe8\xf7\xf0\xff\xff\x2f\xfa\x7d\x8d\xa6\xd6\x2d\x93\x3a\x2b\xff\x5f\xd9\x1a\xac\xd4\x16\xc5\xb6\xce\x04\xcf\x76\xaa\xb2\xe5\x7b\x1a\xdd\xf3\xd9\x6c\xa2\xe8\x92\x98\x50\xdb\x09\x16\x25\x14\xae\x2d\x61\x69\xa8\x2d\x0d\x64\xaa\xab\x66\xd0\xbc\xb6\x53\x93\x48\xe3\x8e\x9b\x4c\xb3\xd2\x28\xe0\x53\xc9\x95\x9b\xa1\x12\xbe\x22\xb1\x3e\x15\x5d\xfc\x27\xce\x3a\x53\x2e\x60\x98\x25\x9e\x85\xe5\xae\xbc\x1f\x34\x74\xea\xf3\x4d\xa5\xf7\x0d\xae\x21\xdf\x09\x95\xe8\x9e\x94\x42\x27\x3a\xa6\x28\x19\x30\xc8\x7b\x52\x57\xfc\x12\x6e\x92\x17\x73\x3d\x5e\x05\x65\xa4\x2d\x08\xb2\xbb\x26\x41\xf2\xb7\x75\x7d\xac\x66\x40\x1c\xee\xe4\xb7\x90\x25\xe8\xfe\x7c\xef\x36\x4b\x0b\x8a\xb2\xe7\x1a\x82\x92\x8f\x36\x7e\x4a\x6f\x15\x65\xf3\x84\x20\x62\x1c\x57\xb6\x45\x49\xd4\x91\x09\xd8\xa8\x6e\x02\xaf\x7d\x0b\x61\xc5\x6b\xdb\x48\x5d\xe0\x9b\xde\x4b\xac\xda\x7a\x20\x73\xc4\x72\xe5\x3e\x6d\x4f\xcd\x7d\xe4\x3e\xd6\x27\x02\xe7\xdd\xe8\xc0\xc3\xac\x0f\x7a\x0d\x86\x47\x5f\xa9\x78\x1a\x58\xea\x23\x2e\x04\x88\x9e\x10\x39\x69\x17\xbd\x81\xa6\xaf\xca\x33\xec\x80\x66\x30\xf8\xcb\x5d\xff\xe2\x36\x07\x60\x70\x35\x9a\x94\x7f\x1d\x5e\x16\xdf\xc9\xff\x32\xf8\xaf\xe1\xed\xe8\xb6\x11\xcb\xa0\xd0\x68\x1d\x27\x58\xf0\x47\xa8\x7c\xa1\xcf\x0a\x2c\x08\x2e\x2c\x89\xbe\xde\x31\x73\xb0\x54\xd4\x39\x58\x8d\x4f\x13\xb0\xcd\xe2\xea\xdc\x9a\x72\xcc\xd1\x57\x13\x48\x02\x53\x7b\xa9\x20\x12\x59\xea\x7c\x73\xfc\xc8\x2d\x17\x3b\x69\xcd\x1d\xb9\x71\x45\xcd\xa8\xb0\xfc\x22\x64\x72\x71\xe1\x41\xe2\x8c\x75\xcb\x96\xac\xd9\x6c\x8b\xa6\xc2\x78\xdc\xdb\x31\x19\x3d\xf5\x73\xff\xc9\xa6\x61\x82\xfb\xdd\xbd\x9d\x15\xe3\x80\xd1\xea\x93\xa0\x99\x4a\xc5\x88\x2b\x90\x64\x36\x6d\xe8\xad\xd9\x33\x22\x4d\xe3\x10\x0b\x02\x71\xb0\xcc\xe9\x27\x36\xd1\xaf\x72\x3f\x01\x5f\x63\x1f\xd0\x3b\x25\xa8\xd6\x1d\x6e\x5d\x63\x30\xcf\x04\x05\x87\xf4\x5b\x00\xf8\x15\x58\xdf\x29\x5b\xa2\x15\x19\xc8\xf6\x1e\x12\x18\xc2\x29\xd4\x02\x33\x63\x4a\x99\xe1\x88\xb2\x79\x2f\x00\xaa\x81\xfc\xc3\x50\x72\xa9\x5a\xc9\x11\x96\xf7\xfb\x0d\x11\xd8\xb9\x84\x0d\x8d\xb3\x32\x0a\x86\x22\x6d\x04\x01\x2d\xa1\x74\x28\x2c\xef\xeb\x72\xab\x4b\xc0\x0e\x0d\xa3\xf3\x4b\xe1\xe0\x20\x9a\xc6\xe7\xf2\x99\x48\xa8\xba\x01\x6a\xeb\x82\xe4\x90\xfd\x5c\x48\xba\x29\x9f\x4d\x13\x12\x17\xf1\x8d\x8a\xe3\xdf\x44\x08\xc6\x38\x16\xf8\xa2\x01\xfe\x66\xb9\xe2\x10\x79\x3a\x43\x4b\xcc\xd6\xe6\x28\x69\x51\x0a\xcb\x7b\xe9\xeb\x28\x21\xb9\xc4\x49\xd2\x43\x82\xa4\x52\x0b\xe0\x3d\x7d\x91\xcd\x8e\x1c\x12\x6d\x8c\x12\x3e\xa7\x11\x4e\xd0\x34\xe1\xd1\xbd\x1c\x33\x7d\x95\xb0\xb9\x11\xc9\x56\x82\x47\x44\xca\x40\x02\xcf\x72\x9d\x6c\x04\x3a\x14\x51\x52\x44\x2c\x29\xa3\x52\xd1\xc8\x4b\x1b\x3e\xbd\xd0\x14\x05\x8b\x30\x98\x7e\x21\x9e\x1f\x86\xab\x35\x02\x62\xb0\x71\x52\x66\x31\xcb\x81\xa1\x5b\xc8\x0b\x17\x5b\x55\x47\xbd\x7b\x40\xf0\x70\xdb\x33\x51\xf9\xd3\xb0\x81\x9e\xcf\xec\x67\x70\x86\x9a\x28\xe6\x26\x4f\xce\x9e\x1a\x3c\x99\x7b\x60\x48\x47\x14\x59\xe4\x58\x5e\xa8\x73\x06\xa6\x57\x06\x28\x00\x43\xae\x81\x11\xd8\x44\xd3\x7a\x15\xe1\x52\x04\x98\xfc\xa2\x77\xdc\x16\x2a\x76\x72\xb9\xbe\x24\x1e\x34\x91\xb8\xe5\xd1\x6b\xaf\xaf\x92\x1e\xc2\x12\x3d\x92\x24\xd1\xff\x35\x81\x63\x47\x1e\xb7\x54\xf3\x43\x83\x2d\x0b\x9d\x14\x4a\xe9\x97\x29\xca\x16\x6f\x7f\x15\xf5\xbd\xfc\x25\xdd\x95\x2d\x6e\x14\x24\x64\xbe\x1e\x73\xc3\xf8\xfc\xca\x40\x09\xe7\xea\xe1\x15\x68\xbc\xac\x8b\x34\x0c\xaa\x44\x22\xd5\x56\x4b\x51\x95\x25\x67\x28\x0e\x9e\x3e\xd0\xac\x96\x9d\xed\xad\xd1\xaa\xa9\x67\xd4\xca\xa4\x19\x12\xc5\xd6\x66\xfa\xc2\x54\x4a\xd9\xa6\xd4\x94\x79\x34\x13\x02\xa9\x36\x8d\x22\x42\xe2\x4a\x75\x4c\x8f\xe8\xd5\x61\x18\x5d\x63\xb5\x30\x89\x8b\x4b\xae\x4c\x29\x25\x83\x61\xe4\xcc\xad\x06\xf4\x66\x9a\xf0\x29\x5c\x48\x00\x6f\xe4\x12\x9f\x82\xa4\x09\x33\x6f\x12\xa3\x6f\x83\xfb\xc5\x27\xd5\xbe\xaf\x06\xdb\xc9\xad\xc8\x2b\x80\x36\x2a\xda\x79\x6b\x01\x8e\xf2\xd5\x40\x8e\xd1\x75\x21\x13\x3c\x58\x99\x19\xd6\xd7\x46\x23\xaa\xc0\x0b\xc1\x21\x15\x26\xf1\x74\x3b\xd4\x11\x0e\x29\xd7\xe7\x1e\xe0\x90\x0a\xf3\xac\x89\xcc\xe4\xf3\x27\xcd\x28\xd3\x93\xba\xe0\xed\x6d\x6d\x06\x91\xc4\x88\x78\x39\x12\x74\x07\x72\x5d\x45\x88\xaf\x0b\xea\xa9\x50\x33\xe7\x65\xa1\x9e\x0a\x83\x79\xcd\x50\x4f\x85\xa1\xbe\x5e\xa8\xa7\x8a\x81\xb6\x80\x7a\x32\xb1\x26\x13\x4d\xd4\xed\x98\x02\x44\x2d\x4f\xd3\xd9\x2d\xdc\xbb\x8d\x63\xb4\x65\xdb\xcd\x35\xe6\x44\x49\x8b\x7c\x08\xa3\xb5\x19\x2e\x75\xd1\x79\x58\xee\x44\x7b\xde\x19\x4c\xa5\xd1\xe2\x57\x09\x66\xf9\xab\x03\xca\xe2\x0a\x12\x69\xf2\x33\x8c\x4a\x09\xcc\x24\x4c\xb5\x67\xad\x4b\x7a\x14\xc6\xad\x12\xe1\x95\xcd\x18\xac\x03\x24\x7f\x3d\xb9\x51\xdd\x50\xb4\x00\xec\x28\xc7\xea\x5b\x41\x95\x7c\x2e\x60\xfa\x1a\x5b\xb0\xd7\x65\x0c\x31\x76\x55\x66\x42\x1c\xae\x02\x4d\xb7\xc4\xe1\xca\x4d\xe4\x80\xc3\x55\xbd\xc1\xaf\x16\x87\xab\xb0\xe7\xed\x70\xb8\xaa\xb6\x7c\x0b\x1c\xae\x5c\x33\x5f\x0d\x0e\x57\x61\x45\xbf\x1a\x1c\xae\xc2\xbc\x0e\x38\x5c\x5f\x09\x0e\xd7\x66\x3e\x52\x89\x34\x55\x7d\x78\xbb\x21\x4d\x55\x8a\xf0\xf5\x2c\x62\xd7\xb4\x7e\x10\x18\x9e\x19\x69\x2a\x37\x81\x43\x18\x60\xf7\x30\xc0\x4a\xe2\xb3\x7d\xeb\xe1\xb9\xd8\xc0\xe2\x45\xd6\x12\x6b\x2a\xb7\x3f\xad\xad\x6b\xfb\xa0\xc4\xa7\x0d\x3c\x05\x23\x7f\x5b\x8d\xbb\x9f\x5b\x45\x69\x11\xea\xb4\x64\xe4\x30\x42\x8c\x70\x1e\x3a\x38\x0f\x94\xbb\x45\x00\x6b\x61\x79\xbd\x5b\xc0\xd0\xe2\x3e\xed\xbf\x15\xe5\x46\x77\xa0\x57\x97\xe3\xd7\xd1\xfe\xee\x06\x01\x76\xf8\x6a\xdb\x13\x54\x3a\xde\x4f\xb3\x9b\x2e\x32\x8f\x80\x90\x2b\xbc\xec\xd3\x17\xb3\xc2\xcb\x46\x36\x2e\x64\x6d\x6a\xf5\xdf\x7e\x39\xa7\x52\x89\xda\xe0\x8d\xd2\x08\x77\xf1\xf4\xad\xd2\x6d\x72\xad\xe7\xdb\x7d\xb6\x24\x4b\x2e\x36\x45\x8e\x54\x7e\x29\x15\x17\x78\xbe\x49\x11\xaf\x56\xab\x56\x0b\xb2\xd4\x42\xd0\xa4\x6b\x23\x6d\xf7\x3b\x8b\x24\x33\x29\x56\x15\xd5\xb7\x03\x3f\x9e\x7e\x37\xb6\x15\xb5\xdb\x6e\xf7\xae\xdb\xec\x4a\x77\x77\x33\x14\x3b\xa4\xb8\x66\xcb\x95\x7d\x29\xe7\xad\x05\xfa\xae\x8c\x07\xf0\xe1\x18\x5b\x7a\xfc\x6b\xd0\xa7\xca\x1d\x82\x43\x50\x12\x71\x14\xca\xa8\x39\x27\x5c\x79\x04\xb9\x75\x77\xba\xcd\x0e\xcb\x9e\x8a\xda\xc0\xb4\x36\xa6\xa3\x48\xa5\x38\x01\xc5\x29\xac\x26\x52\xa4\xef\xe9\xba\x22\xdf\xad\x9d\x6d\x92\x32\xf5\xa7\x7f\xeb\xe2\xa9\x07\x21\xdf\xae\xdb\x8c\x26\x04\xe1\x28\x22\xd2\x58\xb3\x6c\xf8\xb2\xa9\xce\x9b\x8a\x64\x97\x5d\xd5\x87\x43\xcf\x5b\xb3\x4c\x0f\xe9\x16\x67\xc4\x63\x2e\xe0\x85\xe0\xe9\x7c\xe1\xac\x19\x9a\x0a\xf5\xd4\xaa\xf6\xf2\x27\x13\x66\xb2\xcb\x5e\x7e\x48\x69\xb2\x9d\xad\x28\x8b\xec\xd2\xc3\xfc\x34\x1c\x21\xb9\xf0\xf4\x3f\x85\x66\x2b\x37\xb6\x3c\xe8\xf6\x7d\xda\x6f\xbd\x65\x14\xba\xe9\x39\x18\xa3\x19\x4f\x12\xb0\xed\x49\xb2\x7c\xa8\xab\xee\x0b\x13\x1e\xd1\x2d\x6b\x98\xc2\xd7\xe0\x21\x90\x0a\x2f\x57\xad\x24\x9a\x6b\x23\x6c\x49\xe4\x46\x5f\x74\x0f\x9a\xc0\x21\xce\x7c\x91\xe9\xdc\x26\xff\x5c\x06\x77\x7e\x63\xe1\x5b\x2e\x9c\x68\x6f\x21\x5c\x6e\x49\x9e\x39\x8c\xab\x6a\x1e\x1d\x58\x40\x2e\xb7\x21\xe3\xf1\xce\x3f\x6e\xe4\xf8\xbe\x9e\xdf\x98\xf5\x73\x59\x10\xae\x6c\xd8\x74\x9d\x05\x50\x1a\x91\x38\xe4\x24\x80\x89\x6b\xed\x04\x8a\x5b\xeb\x01\x08\xee\x06\x81\xcb\x04\x78\xb9\x20\x2e\x88\xfe\x24\xf1\x11\x8e\xd6\x51\x42\xa3\x40\x05\x9c\x0b\xbc\x5a\x54\xb1\x1b\xb7\xec\x07\xac\x93\x97\xc2\x3a\xa9\x03\x7a\xef\x12\xbd\xea\xe8\x0a\x2a\x28\x1f\x30\x58\x2a\x30\x58\x7a\x1e\x65\x80\x65\x90\xf5\x2f\x98\xbc\x5e\x3e\x77\x07\x20\x96\x17\x00\x62\xd9\xe6\xf0\x65\x28\x2b\xb9\x63\x77\x00\x87\x79\xd7\x0a\x1c\xc6\x5f\x82\xaf\x0a\xef\xa3\xfe\x3c\xbe\x30\x8e\x44\x79\x60\x2f\x09\x06\x53\x21\x2e\x74\x91\x9b\x9a\xd0\x60\x9a\xe8\xa2\xd5\xba\xbc\x2c\x36\x4b\xb7\x95\xe9\x04\xbb\x52\x79\x77\xbd\x12\x10\x96\xfa\x6d\x78\x25\xe7\x66\x9f\x39\x06\xdd\x6a\xf2\x84\x79\x06\x5d\xb4\x9b\x6e\x29\x07\x9e\x1e\xde\x56\xda\x41\x56\x10\x61\xbb\xd4\x83\xbe\x73\xa9\x12\x81\x16\x3c\x81\x7c\xcf\xdc\x6a\xf9\x0e\x7c\xc0\xab\x5f\x20\xb7\x19\xb7\x2b\x12\x19\x6d\xab\x5c\x2c\xbc\x91\xa4\xde\x7a\x92\x41\x20\xff\xee\x37\xd1\x20\x5c\xd9\x6d\x93\x0d\x36\x0c\xae\x49\xf4\xd8\x32\xe1\x20\xe8\xb1\xd1\xe9\xe4\x66\xd7\xca\xf1\x54\x24\x96\x2d\x62\x82\x4a\xe5\x27\x76\x87\x64\x59\xe2\x2f\x93\x15\x16\x38\x49\x48\x42\xe5\xb2\xee\xcc\x53\xa6\xc8\xbc\x48\x69\x39\x63\xec\x1f\xff\xd0\x1c\x80\x99\xf7\x3e\xba\x3a\xf2\xe0\x7f\x4c\x97\x53\x43\x8a\x6e\x20\xb6\xe8\x8d\xe2\x48\xa4\x2c\x04\x94\xf2\x1b\x83\x5c\x51\x94\x14\xee\x05\x30\xe9\x44\x0b\xa8\xb0\x34\xc3\x54\x30\x22\x65\x27\xe6\x11\xc7\x32\xaf\x27\x9a\x1b\x98\xfe\x3d\x27\xa1\x1e\xe5\xe2\x84\xa3\x20\x63\x1a\xc2\x37\x1c\x92\x74\x13\xab\x38\x04\x03\x96\x83\x01\xab\xd7\xe6\x35\x06\x04\xfa\x3b\xa4\x6b\x50\x60\xdd\xf6\xef\x83\x09\xec\x31\x38\xf0\x85\xa3\xe8\x9e\x26\x80\xee\x65\x23\x1e\x9f\x22\xd8\xf1\x10\x12\xf8\xf6\x42\x02\xeb\x8f\x6d\xa7\xb0\xc0\x0d\x10\x00\xae\x97\x5d\x63\xb0\x7c\x5a\xfa\x93\xc6\x61\x79\xaf\x57\xf0\x45\xcb\x58\xac\x2c\x6f\xfe\x10\x8f\xf5\x44\xf1\x58\x15\x4b\xdc\x2d\x26\x6b\x2b\xf1\xf8\xf9\xc3\x45\x8a\xc5\x05\x9f\x32\x64\x64\x83\x97\x54\xa6\xd3\xc9\x93\x1f\xbd\xca\x39\xb7\x3d\x81\x3f\x7b\xa2\x30\x22\x91\xd0\x74\x36\x25\x71\x0c\x26\x18\xc5\x6d\x69\x98\x8c\x76\x18\x31\xf4\xad\x99\x2f\x96\x9a\xd8\x71\xc2\xd9\x5c\xd2\x98\x04\xe5\x3c\x33\xc9\xca\x24\x65\x8d\x19\xec\x6f\x92\x10\xe1\x34\x78\x81\xbe\x95\x94\x45\x24\xd4\xea\x05\x8a\x39\x91\xec\x1b\x65\x6a\x1a\x62\xb6\x46\xf7\x8c\x3f\x26\x24\x9e\xc3\x0e\x15\x07\x73\x84\x28\xe9\x21\xaa\xfc\x67\x82\x60\x93\xb2\x3a\xd6\x63\x07\xbf\xac\x11\x01\x89\xfd\x36\x28\x82\xe4\x9b\x79\x7f\x8c\xd0\x90\xa1\x19\x8e\x54\x2f\x5f\x7e\x31\xe6\xa6\xaa\xcd\x03\x61\xe1\xc4\xb3\x46\x9e\x2c\x5c\xa8\x32\x3c\xa8\x40\x6d\xee\xbc\x69\x02\xe8\x27\x14\xef\xe4\xd9\x7d\xc0\xbb\xc0\xeb\x7c\x4e\xa5\x75\x01\x18\x48\x36\x33\x5e\x9b\xc3\xea\x71\x05\xa1\xb6\x87\xc1\xe8\x6b\x28\xdc\x8a\x0b\x53\xe9\x3a\x96\xcc\x0d\x6f\x4b\x8a\x58\x33\x09\xb4\x6b\x96\x3b\xe6\x8f\x4c\x2a\x41\xf0\xd2\xaa\xa6\x9a\x79\x83\x0b\xc7\x38\xe1\xf5\xe8\xa9\x30\x97\x76\x97\x2d\xbe\xa0\xec\x5e\xef\x6e\x86\xa4\x08\x25\x9a\xa0\xe7\x8a\x4d\xfb\x40\x19\xce\xc5\x20\x6e\xb1\x6b\x0d\x40\x81\xcd\x86\xbd\xe9\xba\x0e\xc4\x52\xe1\x4d\xb8\x92\x5d\xcc\x78\x12\xea\x52\xa1\x29\x94\x4d\xd4\xac\xce\x61\xb9\x29\x0c\xe0\xa9\x0b\x92\xac\x82\xd2\x2e\x2b\x2c\x94\xaf\x0d\x6c\x10\x95\x34\x77\x58\xa6\x0c\x60\xb0\xac\x86\xf8\x68\x81\x73\xac\x1d\x21\x6b\xfc\x78\xcc\x86\xea\x1b\x28\x36\xce\xd9\x3c\x59\x23\x1c\x3f\x50\x99\xa1\x5a\x46\x9c\xc9\x74\x49\x44\xa1\x64\x9a\x71\x32\x23\xec\x68\x45\x8f\xcd\x22\xcb\xd1\xd8\x95\xf0\xd4\x3f\x4e\xc9\x4c\xdf\x7b\x2b\x2c\xa4\xb3\x48\x56\x58\x13\xed\xe6\xc6\x7a\xad\x5e\xec\x4c\xfe\x14\x1e\x3b\x03\xbc\x68\x4e\x28\xb6\xba\xcb\x49\xf1\x7c\x06\x25\x7d\xeb\x02\xfc\x4a\x93\x42\xcd\x17\x93\x5d\x85\xf3\x4d\xf9\x9e\x0e\x73\x20\x35\xde\x23\xdd\x8f\x93\x81\xcc\xe0\x3a\x99\x7f\x0a\x13\xb4\xa3\x36\xc6\xc0\xf0\x6c\x12\x0a\x97\x82\x54\x58\xd1\xc8\x95\x27\xf6\x65\xe1\xcd\xd7\xf5\x5b\xbb\x6b\xdd\x6d\x19\xe1\xa4\xbc\xc3\xf5\x6b\x79\x6b\xde\x6f\xe6\x7d\xf6\xb8\x99\xb6\x1b\x83\x35\x23\x9e\x24\x5d\xd0\xea\x0a\x33\x3f\xcb\x3e\x6f\x1e\x51\xd6\x8f\xde\x00\xb7\x17\x70\x6a\x8c\xd9\x0f\x27\x56\xb2\x90\xca\xee\x52\xf8\x92\xe1\xa1\x6b\x6b\x56\x1c\x33\x3e\x03\x3c\xc3\xa4\x0e\xe7\x73\x25\xf8\x92\x76\xc1\xa1\x30\x88\xd8\x37\xce\x81\xbf\xc1\x75\xe3\xdc\xfc\x50\x7a\xcf\x90\x97\xed\x11\x42\xbd\x30\x33\x72\x46\xc3\x19\x5a\xe2\x52\x99\xf5\x56\x0b\xbe\x49\x4b\xee\xa3\xa5\x31\x51\xd8\xd5\x93\xa6\xbe\xe3\x3d\x59\x43\x9a\x7a\xf2\x88\xd7\x59\x48\x6b\x1d\xc2\x00\xeb\x44\x0e\x77\xfa\xf5\x21\x9b\xf1\xad\xc0\x05\xed\xe9\xc3\x8e\x66\x83\xf3\xe7\xc3\x29\xcc\xee\x9b\x35\x6d\x73\x1e\xcf\xaa\x88\xba\xf3\xc9\x74\x2b\xf8\x94\x22\x7b\xc8\x44\x42\x69\xbd\xcb\xdd\x9a\x3f\x5a\x41\x8b\x08\x86\xd3\xbc\x54\x9f\x73\x74\xb8\xf7\x35\x2a\xb4\x83\x8c\x66\xe8\xfc\x70\xd7\xd5\xad\x3e\xc3\x9a\xd9\x43\xd2\x6a\xb1\x76\x8c\xb9\xef\x86\x94\xe0\x7a\xf4\xf8\x08\xd5\x27\x74\x23\x0c\x54\x17\x8d\x64\xa6\x25\x21\x5b\x47\xd4\x83\xd8\xdb\xe8\xa6\x19\x4d\x88\x3c\x46\xc3\x0a\xed\xc4\xc5\x16\x81\x8c\x06\x28\x52\xe0\x65\x75\xd2\x53\x2a\x68\x80\xe4\xef\x64\x24\x44\x6d\xb5\xed\xcc\xe6\x21\x88\x1e\x73\x64\x7c\x2e\x9c\x01\xca\x03\x38\x36\x05\x35\xc5\x66\xb5\xb0\xaa\xc0\x7c\xa7\x79\x01\xb5\x89\x4a\x31\x59\x11\x16\xfb\x0f\xb4\xc4\xae\x88\xc0\xb6\x58\x49\x36\xaa\x9a\x2d\xdd\x07\x36\x69\xfb\xd0\x2d\xd7\xeb\x48\x7f\x51\xde\x9b\xca\x11\x8e\xf2\xad\x77\x1e\x9d\x97\xf2\xbb\x3b\x90\x3e\xc2\xa7\xce\x9a\x85\xd1\x4c\x10\x30\x78\x2e\x7d\x2e\x04\x8b\x89\x90\x8a\x73\xb8\xef\x6e\xcf\x7f\x3c\xb9\x1b\x22\xa2\x22\xa8\xc5\x38\x66\x91\x7c\xe8\x69\xf1\xf8\x6f\x29\x51\xfa\xe7\x9a\x58\x41\xba\x24\x4c\x02\x27\xa0\x6d\x0b\xd1\xbb\x85\xd1\xff\x3d\xcf\x7f\xdf\x40\xf2\xa5\xc8\x53\xa0\x5d\x5f\x14\x58\x93\x29\x80\x9e\x59\xe4\xed\x0a\x8a\xe1\x3c\x21\x98\x0d\xaa\xca\x1f\x6c\x11\x69\xc2\xfe\x9a\xb2\x8e\x42\xd7\x59\xf6\x51\x30\x8a\x1a\x99\x6e\xb9\xc2\x82\x56\xa0\xdb\x34\x87\xb0\x98\x6f\x2a\x5b\xdf\xc4\x44\xb2\x88\xde\xa9\x59\x29\x94\x55\x8a\x40\x4a\x10\x02\x2c\xc4\xd3\x93\xbd\xeb\x6d\x06\x85\x9f\x58\xf0\xd1\xf1\x98\x7d\x76\x06\xd8\xec\x57\x5f\xb7\xd8\x84\x45\x91\x18\xa5\xd2\x40\xa7\x87\xad\x40\xb3\x31\x95\xfe\x07\x80\xbc\x93\x69\xa2\x0c\x78\xf1\x8c\x32\x9c\xf8\x81\x9a\x27\x55\x5c\x42\x60\x16\x2d\x2e\xf9\x6e\xf5\xcc\xe9\x6c\x42\x92\x2e\x92\xe8\x70\x36\x48\xa4\xa6\xef\xe8\xbe\xe6\x74\x6e\x03\xcf\x9d\x4d\x26\x80\xa2\xc7\xc6\x29\x6f\xad\x7e\x89\x81\x42\x26\x08\x4c\x76\xc5\xc0\x23\x93\x5b\xa0\x77\xd1\x4a\xea\xc6\x62\x67\x3c\xfe\xce\xc8\x37\x85\x5e\x10\x56\x63\x26\x52\x06\x70\x5c\xde\x80\x8f\x91\x24\x82\x1a\x4b\x7a\xc4\x99\x91\x01\xac\x29\x66\xae\xd9\x84\x96\xfc\xc0\x8b\xc3\x19\xe8\x67\x3c\x95\x10\x3c\xb0\x24\x4a\x5f\x50\xdf\x42\xe1\x0f\xe3\x42\xe9\xa1\x95\xa0\x4b\xaa\xe8\x03\x91\xef\x2b\xb6\xee\x0c\x2b\x9c\xf0\x79\x5f\x28\x3a\xc3\x91\x1a\xe1\x9d\x34\x70\x6c\x9b\xd9\xd6\x1d\xef\x86\x81\x86\xe7\x7a\xf1\xe7\x84\x11\x01\x13\x85\x72\xca\x95\x47\xb8\x6b\xa1\xe5\x8c\x73\x03\x00\x71\x64\x20\x5b\xa5\xb7\x58\xe0\x54\xf1\xa5\xd6\x6f\x71\x92\xac\x01\x8a\x55\x3f\x59\x60\xb9\x70\x1b\x6d\xf0\x5b\xdb\xdc\x4d\x76\x71\xcf\x70\xb4\x20\xb7\x0a\xab\xb4\xd2\xe4\xb8\xb9\xd6\xc0\x59\xff\xec\x87\xc1\xe4\x7c\x78\xdb\xff\x70\x31\x38\x0f\xe6\x63\x9f\x7c\x1e\xde\xde\x96\x7f\xfd\x61\x38\x2a\xff\x78\x7d\x75\x7d\x77\xd1\x1f\x55\xb5\x72\x71\x75\xf5\xe3\xdd\xf5\xe4\x63\x7f\x78\x71\x77\x33\xa8\xf8\xf4\x6e\xe4\x1f\xda\x67\x95\xe5\x0a\x6a\x46\x5b\x3c\x67\x47\x28\xff\xe2\x29\xba\xb3\xbe\x20\x6a\x31\xdc\x5d\x08\x86\xc9\x74\x78\xc4\x52\xb3\x2a\x28\x98\x3e\x66\xc8\x7d\xae\xe7\x5e\xf7\xa9\x71\x52\x45\x0b\x82\x12\xce\xef\xd3\x95\xe5\x60\x26\x5c\x92\xd9\xf2\x1c\x44\x06\xad\xfd\x30\x1c\x9d\x7a\x9f\x54\xb9\xb1\x20\xa1\xd1\x91\x3a\x8c\x0b\x3b\xae\x09\x26\x93\x95\x20\x0f\x70\x26\xbd\xaf\x32\xe8\xc1\x6f\x40\x53\x3f\xa6\x35\xcc\x54\xa1\x9b\x38\xb6\xc5\x5c\xdc\xc4\x82\x86\xf3\xdb\xd7\xb4\x9a\x7e\x39\x0c\x08\x27\x9a\x92\x08\xa7\xc6\x95\xa7\xaf\x23\x21\xb8\x08\x07\x9c\x6d\xfb\x8e\x8d\xbe\x2b\x4b\x19\x79\xb8\x7e\x09\x67\x44\x7f\x12\x9c\x1c\xad\x7d\x83\x66\xee\x00\xe0\x16\x16\xa8\xd3\xd5\xd0\xcf\xfc\x2f\x00\x3c\xa3\x39\xb7\x87\x43\xa3\xe0\x1b\xc4\x0a\x3d\x12\x88\x99\x4d\x2d\x02\xa6\xd1\x90\xf5\x09\x84\xee\x8c\x55\xdb\xc1\x2e\xe7\x62\x69\x6b\x59\xe6\x3e\xc4\x62\xfd\xbd\x24\x55\xec\x72\x87\xc0\xc7\x73\xd3\x28\xf0\x50\xe7\xa8\x85\x11\xd7\xf8\x0f\x1c\xcf\xae\xb0\x63\x37\x48\x41\xe5\x7b\x63\x03\x4b\xd7\xcc\xb5\xcd\x78\x5c\xb2\x47\x0e\x90\xa7\x5b\xf6\xbb\x0f\x32\xd8\xb8\x56\x23\x1e\xe3\xb5\x26\x0e\x88\x90\x90\xe9\x6a\xc5\x85\x42\x35\x6d\x20\x38\xe9\x66\x7c\x70\x33\xd8\x79\x78\x16\x05\x8d\x68\x39\x40\x56\x60\xe6\xb5\x8b\x7f\xb7\xeb\x9a\x9d\xfb\x30\x91\x16\xd4\x35\x8f\xdf\xb8\xcc\x29\xbe\x39\x0a\xad\x12\x51\x77\x89\x8b\xea\x54\x0b\xa8\x6e\x04\x15\x65\x81\x82\x6d\x4f\xc8\x4c\x4d\x2a\xfd\x33\x0d\xa6\x48\xdd\x22\xab\x4b\x1b\xa2\xf3\xc5\x1e\x5a\x6c\x2f\xcf\xff\xc1\xfa\xcf\xb4\x10\x1f\xe8\xf2\x82\x73\x65\x24\xc9\x4c\xdb\x40\x6e\x45\xc1\x10\x60\x3b\x35\x35\x10\x32\x71\x4d\x4b\xe7\xf7\x8c\x3f\x32\x6f\x83\x97\xc7\x63\x36\xc0\x50\x98\xc3\xab\x0c\x36\x04\xc2\xc8\xeb\x1b\x25\xf5\xc6\x7d\xd9\x4a\x36\x19\xfc\x25\x94\x14\x2e\xf3\x7f\x7e\x1a\xe5\xff\xca\x49\x15\x17\xa3\xfc\x5f\xcd\x52\x45\xd0\x70\x59\x92\xf8\x34\x3a\x45\x9f\x20\xb0\x58\xa0\xd1\x02\x9b\xfb\xf6\x62\x74\x8a\x2e\x88\x94\xf0\x4b\xc5\xdd\x63\xdc\x89\xc8\x4d\x1f\x8e\x2c\xc9\xaf\x6e\xf5\x02\xfa\x42\x09\xcf\x1a\xa7\x51\x0f\xeb\x91\x31\x0f\x5b\x0b\x2e\xf1\x15\xbf\x48\x8c\x72\xdf\xb5\x61\x41\xc6\xc0\xef\xa4\x5d\x33\x61\x0b\xe3\xae\xc8\xca\x3a\x21\xcc\x3c\xb3\x08\x7b\xf0\x63\xeb\xae\x8e\xd1\xcf\xce\xc8\x05\x21\x2f\x59\x11\x17\x65\xae\xed\x04\xaf\x1d\x6e\x41\xd5\xc2\xee\x03\x0a\x60\xdf\x41\x30\xcd\x0b\xec\xd3\x1e\x2b\x56\x39\x67\x6b\x60\xcc\x18\x9f\x3b\x44\xfc\x9d\xf9\x8f\x6e\x49\x73\x48\xf0\x47\xc0\x64\x57\x44\x68\x8d\x1d\x04\x2f\x96\xac\xff\x87\xd9\x2c\x80\x00\xb0\xe1\xe2\xb1\xc3\xc8\xb6\xce\x62\xcd\x80\xc0\xd9\xa9\x65\xa9\x29\x60\x83\x24\x20\x4c\x1d\xa3\x3e\x94\x34\x81\x62\x15\x5a\x9e\x70\x81\x55\x74\xce\xf8\xa6\x58\x8e\x1a\x62\x8a\x02\x62\xba\xad\x27\x26\x09\xd4\x94\x45\xbb\xef\x87\xa2\xf6\x90\xf9\xa4\x99\x33\x2e\xc3\x20\xb5\xcf\x77\xea\x60\xa7\x78\x89\xb8\xa8\xd2\x70\x83\x0f\xff\x59\x3d\xf4\x4f\x29\x16\x98\x29\x88\xf6\xb1\xea\x8b\x20\x41\xd4\x29\xf9\x02\xf1\x74\xcc\xd8\xbc\xe1\xa7\x70\x73\x5d\x74\xc3\x9c\x3e\x10\x86\x68\xdc\x43\xf4\x98\x1c\xf7\x6c\x75\x52\x99\x4e\xb3\x37\x17\x5a\xfc\x1a\xb3\x52\x16\xcf\x31\xea\x27\x92\xdb\x2f\x08\x8b\x12\x28\x21\x14\x04\x26\x79\xca\xb7\x1e\xb4\xe9\x1a\x94\x34\xd8\xca\xac\x79\x6e\x1f\x04\x1f\x8e\x19\x96\xc6\xfd\x9f\xc0\x49\xcf\x7e\xaf\x2a\x13\x96\x0b\x09\x79\x42\x0c\xbf\xd2\x35\xf4\x64\x9b\x64\xf0\xa3\x9b\x36\x08\xde\x80\x8d\xc9\xb2\xab\x82\x3c\x25\xf4\x2d\x56\x28\x21\x58\x2a\xf4\xfd\xfb\x4e\x61\x30\x6e\x82\x19\x77\xb5\xc7\x37\x8b\x11\x76\x41\x86\x75\x15\x4f\x01\xdf\xdf\x96\x68\xf7\x52\x78\x4f\xef\xb3\xe2\xe8\x81\xca\x14\xaa\x32\x05\x69\x0d\xa6\xae\x0e\x55\xd2\xc5\x69\x1a\xbd\xb3\x86\x8f\x38\x44\x1e\xeb\x29\xce\x8a\x74\x16\x29\xcb\x6a\xa0\xd4\xe8\xb8\x90\xb8\x9a\x85\xfb\x2d\xb0\x1a\x33\xcb\x59\x5d\x84\x4c\x50\x41\xa3\x9f\x24\xf9\x10\x3b\x0c\x51\xa4\x4c\x4f\x18\x6a\x4a\x1d\xfb\x05\xba\x04\x1d\xd6\x47\x65\xe5\xab\xcc\xfa\xc3\xa2\xd5\xdd\x31\xf3\x59\x81\x61\xdb\x95\xe2\x62\x95\x29\xfd\xd9\x34\x89\xca\xee\x2f\x4c\x71\xaf\x16\xda\x44\x7d\x09\xe6\x06\xd7\x53\xc9\x7d\xd1\xa0\x5c\xec\xbb\x83\xf6\xba\x46\xb5\x2b\x00\xae\xd9\x47\x5e\xe1\x59\xa8\xd9\xdc\x40\xb6\xd8\xc5\x8a\xe1\xc3\x03\x9f\xcb\xb9\x9d\x1b\xfa\x30\x86\x70\xff\xcd\x5c\x30\x0b\x9f\x77\xac\x03\x6c\xfa\x34\x0e\xa2\x79\x83\x50\x47\x88\xf6\x76\x8c\xcf\xbe\x59\xe3\x64\x5e\xbd\xed\xe9\xf7\xb2\xf9\xbb\xa9\xf8\x78\xbf\xf2\xc4\xeb\x85\xbd\x7e\xfc\x57\x1c\x11\x16\xad\x4d\x4f\x0e\xc1\xac\x9c\xb6\xe8\xc0\x9e\x30\xf8\x2d\x2a\xc5\x43\x5b\xa7\xef\x18\x0d\xe0\xa2\x71\x65\xfb\xf0\xcc\xf9\x5e\x82\x97\xc7\x4c\x6b\x26\xfa\x8e\x97\x66\xd0\xae\xfd\x3c\x89\x57\x9d\x00\x93\x32\xbd\x93\xdb\x6a\xb9\x19\x98\xb2\x4e\x9b\x70\x19\xdb\xd0\x06\x20\xef\xa1\xc1\xfc\x14\xc5\x3c\xba\x27\xe2\x44\x90\x98\xca\x53\x08\x23\x50\xb5\xfe\xcb\x25\x66\xb5\xbe\x96\x27\x2f\x7d\x7d\x66\xfa\xb7\x71\xde\xae\xca\x44\x0f\xd1\x19\xa8\x13\x2e\xe5\xc3\xe4\x81\x58\x65\x1e\x11\xa6\xc4\x7a\xc5\x29\x53\xde\x1e\x58\x58\x08\xa7\x69\x68\xa1\xad\x2e\xea\x59\xec\x23\xdc\x68\xcb\x69\x8f\x16\x44\x12\x17\x5b\x61\x26\xa5\x38\x32\x0e\x25\xc3\x2e\x56\x58\x2d\x24\x24\xad\xe4\xd7\xc0\x2a\x5d\xf0\xa9\x5e\x21\xbc\x82\xd0\x0c\x63\xe6\xc9\x3e\xf2\xa9\x15\x52\xd1\x24\x19\x33\x46\x48\x2c\x11\xe4\x97\x7c\x53\x99\x1c\xa5\x3f\xed\x21\x1c\xc7\xe8\x7f\x7e\xfb\xf1\xe2\x97\xd1\x60\x32\xbc\x04\xc3\xfd\xf0\x62\xf0\xbe\xe7\x7f\xbc\xba\x1b\xf9\x5f\x8d\x89\xea\x81\x08\xb4\xc4\xf7\xa0\xe2\x31\x69\xe4\x3f\x48\x40\x08\x47\xea\xd2\xc6\xf4\x13\x49\x5c\x50\xaf\x15\x53\x3c\xd0\x80\xdd\xc3\xda\x22\x32\xc6\x70\xda\x41\xf9\xbd\xf1\x9f\x34\xd3\xa0\x23\x1e\xdf\x45\x58\x08\x5d\xf3\x18\x6b\x32\xcd\x74\xdf\x8c\xe0\x08\x9b\x53\x56\x17\x7a\x48\xd8\xc3\x53\x0a\xf1\x3f\x92\xf5\x4f\x5a\xbd\xbe\xc6\x54\xb4\xa6\xbd\x01\x7b\xa0\x82\x33\x98\x9a\xb7\x0b\xfa\x13\xa3\xf5\x74\x2c\x8b\x87\x4a\x1a\x59\x18\xc2\x51\x56\xb5\xe1\xad\x85\x5c\xfa\xd7\x31\xdd\xbe\x71\xa1\x93\x2f\x4a\xb8\x04\x45\x69\xd9\x0d\x7e\xc0\x34\x81\xd0\x64\x77\xd1\x64\x34\x38\x66\xa3\xab\xf3\xab\x53\x44\x12\x3c\xe5\x02\x12\x96\x4c\xf4\x93\x6b\xc2\x2e\x18\x94\x6f\xf5\x0d\xe5\x92\x53\x7b\x68\x95\x25\xa7\x86\x46\xb4\x63\xd3\xc6\xa6\xea\x6e\x5c\x94\x53\x3b\xf7\xab\x02\xda\xc9\x5e\x73\xd1\xe6\xfa\xd7\xaf\xc1\xd2\xf1\x95\x56\xe4\x0a\x9c\xd7\xde\xcd\x33\x82\x4d\x61\x25\xe3\x5b\xb3\x0e\x11\x1b\xab\x9b\x24\x39\x10\x7d\x7d\x70\xe4\xb1\x8d\x36\xc8\xde\xe4\x0c\xfd\xf8\x67\x89\xa6\xa9\x1a\xb3\x7c\x1b\x9c\xa1\xfe\xcf\xb7\xe8\x03\x56\xd1\xe2\xfd\x98\x5d\x69\x35\xf3\xc7\x3f\xd7\x64\xd1\xc7\x58\xe1\x49\x35\x51\xd6\xaf\xc9\x39\x56\xf8\x82\xe3\x98\xb2\xb9\xc5\x86\xa8\x5e\x8b\x0f\x83\x51\xff\x14\x5d\x59\x1d\xde\x27\xbe\x66\xa0\x1b\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x9e\xf5\x5b\x13\x19\x48\x4f\xfa\xc2\x1a\x33\x58\x4a\xc3\x55\xa9\x42\x2b\x6e\x61\x76\xb5\x56\x66\x30\x1d\x8c\x2f\xc0\x5a\x12\xf5\xea\x00\x19\xfb\xcd\xb0\xf2\x18\xc8\x33\x65\x66\x3f\x66\xa0\xa0\xfb\x64\xc4\x84\x47\x38\x81\xf0\xc3\xa3\xc0\xa6\xa7\xd5\x76\x9e\x42\x66\x18\xc4\xfd\xb0\x75\x3e\x4a\xd8\x27\x2b\x7a\xa1\x2c\xdc\x28\x30\x00\xc0\x3e\x5a\x8f\xf4\x92\x6b\x8e\x73\x3c\x66\xc3\x99\x89\x4e\x4c\xcc\xea\xe8\x0f\x09\x03\xa7\xbc\x5b\x16\xfd\xd4\xf1\x23\x28\x38\x67\x7c\xb3\x38\x02\xff\x07\x5b\x43\xa4\x3a\x40\x73\x72\x88\x72\xc9\xb8\xb3\x25\xca\xd2\x2e\xfa\x3b\x31\xf8\x6c\xcc\x4c\x50\x64\x6e\x5f\xc2\xc4\xed\xa0\x77\xce\x20\x66\x33\xbb\x2e\xbd\x80\xb1\xb2\x31\x9c\x56\xd6\x5f\x09\x72\xe4\x4a\x3f\xeb\x5f\x83\x35\xd5\x37\xec\x31\xba\x09\xd5\xeb\x98\x47\xe9\xd2\xe1\x0f\x41\x06\x9d\x0d\xf6\xb3\x97\xa8\xa7\x10\x73\xb1\x6f\xa2\x78\x2c\xa2\x05\x55\x04\xd2\xdc\x5a\xeb\xc7\x86\x60\xfa\xe1\xa7\x65\x49\xbd\x5e\xf0\x05\xde\xb1\x5b\x80\x9e\x69\x68\xb2\xca\xb7\x94\x6b\x6d\x33\x7c\xca\x06\x2c\xeb\xcb\x0c\x23\x85\x0b\x10\xb6\xc8\x97\x15\x07\x23\xb7\xc9\xa2\xe4\xf1\x37\x12\x0d\xaf\xb5\x04\xa4\x35\x5e\x7f\x06\x53\xa9\x4c\x1c\x1d\x64\x26\x99\xaf\x4d\x66\x44\x0f\x7d\x87\xc6\xe9\x77\xdf\xfd\x31\x42\x5f\xdc\x3f\xfe\xf4\xef\xff\xfe\xc7\x3f\x75\xc9\x9c\x71\x0a\x39\xb4\x9b\xad\x91\x47\x3c\xce\x8b\x44\xe1\x0e\x94\x39\xd5\x0e\xbb\x60\x0f\x60\xdd\xf2\x5b\x73\x40\x6d\x66\x5b\xd5\xe3\x20\x4c\x0a\xcf\xed\x09\x97\xe1\xc9\x44\xb9\xa3\x99\x85\x63\x48\xa2\x7a\x79\x0e\xe1\x85\x5d\x2b\xd1\xff\x8f\x06\x9c\x8a\x89\x3e\x2a\xdb\x85\x73\xd1\xc4\x8b\xd7\xba\x11\xf4\xad\xb5\xff\x29\xf0\xc0\xbe\x77\x17\x1c\x4f\x62\x22\x6c\x15\x41\x67\xb2\xf3\x86\x44\x60\x0e\xe4\xcb\x2a\xe1\x36\xd0\x06\x23\x49\x56\x18\x04\x08\xcd\x0c\x8e\xc7\x6c\xf0\x05\x6b\xce\xdd\x73\x25\x6d\xe1\x23\xe3\x79\x99\xe1\x88\x20\x23\xaa\x7f\xfb\xe5\x54\xff\xd6\x43\xeb\x53\x88\x97\xed\xa1\xbf\x9f\xda\x3c\x79\x2c\xd4\x44\xff\xf4\xde\xc9\xda\xb6\x09\x18\x34\x95\x68\xfc\xee\xe4\x01\x0b\x53\x29\xe8\xc4\x02\x1c\xbf\xb3\xbc\xd5\x83\xb7\x87\xd2\x79\xc2\xf9\xbd\x8d\x26\x2e\x7d\x79\xe2\x50\x37\x80\xc0\xbd\xe7\xc4\x6c\xbe\x0d\x0c\xd7\x92\xe4\x11\xbc\x40\xd0\xf1\x6a\x8a\x8e\xff\x2a\x39\x43\xc7\x6b\xbc\x4c\xec\xaf\xee\xa9\x0d\x76\xc6\x12\xb9\xb2\x88\x2e\xd4\x29\x59\x1b\x5b\xe9\x87\x84\x4f\x61\x5e\x9f\xdd\x5c\x4d\xb8\x30\x0c\x34\xbb\x7f\xb2\x2b\xcb\x4e\xc4\xca\x52\x06\x3b\x00\x4a\x2e\xeb\x57\x80\xcb\x55\xcd\xea\x8b\x1f\xd2\x7f\x19\xd7\x3a\x2c\x8a\xcb\x58\x34\xe6\x61\x1f\xaa\xa7\x1b\xfd\x82\xbe\xb5\x4c\xe8\xbd\xbe\x65\x6c\x6c\xb6\x59\x86\xaa\x0e\xd6\xbe\x83\x5f\x82\x0e\x28\x43\xd6\x69\x5c\xff\xe5\xdf\x4f\x8e\x8f\x8f\xfd\xd7\x97\x7a\x2a\xff\x3f\xa2\x4a\x92\x64\x66\x5a\x72\x77\xd8\x7a\xcc\x3e\x3b\x80\x42\x67\xbe\xce\xf0\x7c\xa0\xb8\x67\xc4\x13\x74\x94\x99\x74\x63\x1e\x49\xf4\x3b\x2d\xd8\x06\x4b\x09\x3f\x6a\x4d\xae\xfa\x54\xd9\x52\xca\xcf\x74\xac\xac\x49\xbc\x78\xb0\x42\x08\x0f\xaf\xda\x62\x19\xa2\x5d\x02\x2d\x68\xca\x39\xb1\x30\x1f\x50\x64\x5a\x91\x2f\x0a\x1e\xd5\xa0\xa8\x54\xc6\xed\x57\xdf\x95\x25\x86\x9b\x81\xa9\x18\xb2\xae\x59\x00\x8b\x75\x61\x79\x83\x99\x67\x2f\x74\xa0\xe8\xeb\x85\x85\x90\x79\x32\x5d\x2e\xb1\x58\x9f\x64\xa7\xad\x4c\x9c\x19\xfe\x2d\x70\x99\xc4\x2d\x00\x38\x71\x13\x7b\xb4\x6c\x20\x88\x15\x30\xdd\x9d\xe6\xcf\x6e\x04\x80\xfb\x10\x96\x68\xca\x4d\x10\x16\xf1\xd8\xd2\x75\x96\x6a\x9b\x97\x59\xfc\x3b\x65\x69\xc5\x05\x16\xc9\xcc\x1c\xc7\x94\xc9\xbf\xb7\x6f\xb8\x8f\x6b\x18\x38\x9f\x40\x31\x14\x32\xef\xe0\x20\x1d\x5e\xdd\xba\x6f\xda\x5f\xbb\xb0\x0e\x79\xa1\x1d\x3b\x3d\xd1\xd9\x24\x04\x7e\xcc\x2e\x60\x08\x8f\x31\xf6\x99\xd4\x27\x22\x9b\xbf\xcf\xf8\x35\x4d\xf4\xbd\x05\x34\x7e\x3c\x66\xb9\x9f\x7b\x88\x24\x74\x49\x99\x0f\x51\x34\xec\x9d\xcf\x8c\xfc\x7c\x4f\x95\xde\x32\x19\xdf\x6b\x0e\xe6\x30\x1d\x02\xa5\xaa\xcf\xd6\x8e\x74\xbc\x6b\xca\xda\x20\x52\xa9\xc7\x95\x69\xe9\x5a\x9c\xd5\x4d\x1c\x59\x91\x94\x06\x84\x07\xe7\x77\xcc\x74\x6b\xee\x2c\x65\xb1\xd1\x41\x7b\x41\x73\x47\x0e\x38\x2e\xe0\x00\xd0\x47\x2e\xc0\xd9\x4b\xc0\x15\x22\xca\x80\xa5\xcb\x5d\x33\x6b\x6c\xac\xf4\x4b\x19\xea\xae\xb3\x02\xbe\x36\x4b\x8b\xb0\x74\xe9\x0e\x54\x07\x8a\x1b\x58\x01\x28\x26\x51\x82\xe1\xee\x80\x86\x20\x80\xb4\x67\x5c\xa4\x41\xb1\x60\x7b\xbd\x98\x6e\x0c\x16\x6d\x42\xd8\xb7\xe6\xef\xf7\xc8\xde\x0d\xdf\xf5\xec\x7d\x2e\xa4\x55\x22\xdd\x9e\x43\x2d\x03\x12\x1b\x2b\x3a\x40\xd2\xcd\x31\x94\x70\xb7\xa6\x9d\x9c\xe6\x09\x12\xd8\x9a\xa7\xe8\x91\xca\xc5\x98\x8d\xb8\x33\x39\x22\xc6\x3d\xa8\x5f\x0f\xd4\xd1\x52\x7f\x58\x02\x13\x80\x51\x57\x51\x00\x44\xed\xee\x92\x58\x05\xb1\xc0\x13\xc6\x63\xd2\x31\x25\xa0\xa2\x7a\xb9\xf5\x44\x38\x0f\xb6\x20\x26\xf9\x0d\x6e\x8a\xda\xda\xcb\x52\x76\xb4\xce\x17\x37\x1e\xee\x21\xdb\x0e\xd4\xad\x79\x64\xdb\xa2\x98\xf8\x5b\x0d\x5a\x71\x3a\x67\x90\xfa\x9c\x5b\x7b\x0f\x95\xb7\xeb\x26\x44\xf9\xbc\x9c\x8d\x2b\xe0\xaf\x3e\x33\xf7\x08\x96\xdd\xc7\x69\x63\x34\x17\x3c\x5d\x79\x7c\x00\x97\xdb\x68\xb6\xc1\xca\x34\x43\x36\xe3\xa7\x56\xab\xba\xa0\xec\xde\x50\xfc\x53\xed\x91\x41\x43\x24\x31\x0a\x7e\x77\x77\x98\x59\xf1\x23\x44\x59\x94\xa4\x70\xf1\x49\x85\xa3\x7b\x83\xe8\x58\x67\xf6\xd5\xdf\x4c\x36\x67\x8e\xd6\x48\x4c\x69\x92\xd8\x6e\xb3\x0b\x34\xab\xb5\xf4\x40\x31\xc2\xe8\xee\x66\x58\xdd\xf7\x3d\x2d\xbb\x73\xaa\x6f\xcf\x3c\x81\xc0\xff\xfc\x48\x3b\x85\xae\x16\xa0\x67\x49\x8e\xd4\xbd\x79\xa9\x0e\x70\xad\x70\x7b\xef\xe8\x3f\xd6\xb7\xd0\x64\x59\x41\xa9\xd5\x93\xcf\x3a\x3e\xb7\x1f\x7f\xd6\xdf\x56\xef\xc8\x67\xc8\xdc\xf2\x60\x19\x4b\xcc\xf4\x04\x5d\xaf\x35\xd6\x18\x73\x31\x6e\x35\xa4\xbb\xd5\x56\x03\x32\x3d\xb6\x84\x49\xb7\x5d\xb9\x56\x1e\x8d\x41\x12\x27\x46\xe1\x56\x0b\xd0\xc4\x7a\xe8\x36\x5a\x90\x25\x86\xa0\x97\x65\x5e\x23\x03\xc9\xf4\xdb\x04\x8b\xb9\x91\x13\x25\x51\xf2\x7d\xc5\x0e\x67\x11\xf4\x3b\xec\xf0\x16\x25\x1c\x42\x07\x10\x48\x21\x4d\x1c\xc0\x8f\x32\x8f\x06\xe5\x99\x93\x2f\x86\x62\xef\x0e\x2a\x43\x14\xe8\x88\x0b\x01\xa8\x85\xb1\x96\xc6\xeb\x71\x32\x76\x2c\xe5\x73\x89\x97\x3e\x0b\xdc\x15\x14\xb1\xc9\x3e\x66\x70\x53\x02\xd0\x60\xf5\x63\xd8\xb9\x66\x4f\x38\x04\x8b\xa1\x5f\x37\x82\x31\xeb\xbb\x57\x7c\x26\x29\x88\xb8\xc2\xc8\x21\x10\x28\x67\xc2\x42\x41\xcc\xc4\xd9\xaa\xdb\xc9\xd5\x4c\xa2\x6b\xc2\x5e\xb1\xec\x90\x16\x73\x3d\x96\xa0\x11\x63\x9c\xbe\xe3\xe6\x51\xd3\xf3\x43\xf7\xaa\x6c\xd5\x60\x1c\x51\xb1\x6a\x56\x55\xc7\x9b\x45\x4a\x87\x12\x60\x1b\x0a\x0b\x75\x99\x60\xba\x64\x9d\x91\xa9\x5e\x71\xa3\x9a\x14\x3a\x2b\x9f\x56\xb5\x13\x37\xa6\x78\x39\x11\x3c\xd9\x65\x8f\x5c\x13\x39\x35\x77\x61\x20\x5e\xd7\xe8\x6f\x29\x4e\x8c\xbd\x9f\x59\x72\x74\xc3\x06\x89\xe1\x0f\x7f\x42\x7d\xb8\x2e\xd1\x67\xe0\x8b\xe0\xe9\x84\xd6\x14\x47\x74\xb9\x22\x42\x72\xad\x8f\xd5\x6c\xf2\xfd\x9f\xe5\xc4\xe2\x33\x4f\x70\x14\xf1\xb4\x8c\xc5\xdc\x61\x26\x15\xad\x85\x93\xc2\xe8\x3e\x9d\x12\xc1\x88\xa9\x0e\x0a\xef\x21\xf7\x5e\xab\xe1\x72\x9c\xaa\xc5\x1f\x26\x51\x42\x5b\x83\x46\x43\x9e\x4a\x5f\x7f\x76\x66\xbe\x6a\x9a\x40\xae\xfd\xdc\xd0\x19\x32\xcf\x90\x79\x76\x8c\x3e\xe0\xe8\x9e\xb0\x18\xad\x92\x74\x4e\x6d\x02\x39\xdc\x50\xc0\x2e\x03\x2b\x55\x7e\x62\x46\xe5\x35\xed\xeb\x6b\x68\xcc\x96\xf8\x1e\x34\xa4\x2f\x36\x1a\x5d\x6b\x9a\x9d\xb4\x2d\x4f\x0f\x25\x24\x0d\x97\xed\x2c\x49\x94\x0a\xfd\x86\x39\x1f\xca\x9c\x0f\xb0\x2b\x01\x36\x5d\xca\x10\x06\x30\x8e\x6f\x24\x4a\x57\xce\xf8\x01\x06\x8f\x04\x1c\x50\x66\x92\x50\x2f\x8e\x6a\x71\x70\x41\xc6\x0c\x82\xfa\x5c\x8b\x6b\xcf\x55\x42\x9f\xa7\xf7\xbd\x57\x1d\xbe\x99\x49\x45\xdf\xcd\x9d\x62\xcc\x48\x7b\x0f\x58\x54\x0b\xc2\x40\x0f\x6b\xdf\x32\xe4\xf3\xb7\xdf\xb4\x5c\x70\xa2\x99\x45\x66\x38\xf2\x4b\x98\x32\x6a\x61\xca\xad\xad\x30\x88\x1b\x72\x26\xf5\xec\x7b\x2a\x91\xc4\x8a\xca\x19\xad\xd4\x4f\x43\x00\x80\x5d\x56\x1d\x77\x43\x1d\xa8\x40\x1c\x28\xac\x85\x0f\x80\x3e\x46\x1f\x41\xdd\xce\xa6\xa4\xb8\xcf\xdf\xaf\x63\x09\x6a\x41\x6a\x81\xec\xf6\x11\x39\xe0\x66\xd0\xd6\x8a\xe2\x83\xdd\x8f\x51\x3f\x33\x73\x1a\x04\x03\x63\xc0\xdc\x30\x23\x92\x48\xb2\x0d\xf1\xb5\xb2\x08\x80\x33\x10\x08\x08\x81\xac\x22\xf5\xef\x19\xa8\xa6\x1f\xe6\x23\x24\xe4\xe1\x7b\xc2\x9a\xd4\xbe\xf6\x23\x1c\xe4\x52\x9a\xab\x86\xd8\xf7\x0a\x3f\x37\x3a\xff\x36\x03\x6c\x7f\xec\x32\xd0\x08\x3a\x3b\xd1\x4b\xae\x05\xfd\xe8\xde\x46\xb1\x1b\xb3\x8f\x85\x9d\x78\x5c\x70\x19\x9e\x33\xb7\x7f\xb0\x99\x4a\xa4\xc4\x45\xab\x43\x16\x80\x5f\x60\xe3\xfe\x67\x3c\x44\xa5\x80\x51\xfb\x43\x6a\x4c\x5a\x7e\xbf\x91\x63\xa1\xb0\x0c\x60\x2e\x77\x4d\x95\x4f\xf3\x8f\x7f\x96\x57\x70\x62\xf7\x91\x59\x9d\xe0\x29\x49\x9e\x00\x6c\x6b\x4b\x43\xa4\x0f\x35\x31\xe3\x02\xa3\x7f\xec\x53\xf9\x57\x3c\x46\x19\x79\xd5\x45\x3c\x32\xc6\x4d\xa8\xc1\x2b\x9c\x56\x30\xb8\xd6\x73\xdb\x44\xd9\x9f\x03\x6f\xa5\xa9\x82\x6c\x00\x6c\x02\x91\xcb\x26\x8e\x81\xf6\x6b\xaf\x7f\x2a\xfd\x7d\x52\x4d\x63\xd7\x3c\xde\x85\xb0\xba\x83\x94\x95\xe9\xba\x45\x38\xa3\xac\x2a\xc2\xd4\xb0\x12\x2b\x5e\x1f\x88\x16\x4f\xda\x97\x2d\x02\xbf\xe3\x34\x9d\xdd\x02\xe0\x72\x1d\xc2\x80\xc3\x86\x5a\x10\x9f\xed\xa2\xf7\x59\x77\xe3\x63\xaf\xeb\x36\xc5\xba\xb1\xb2\xeb\x1f\xa3\xff\x7d\x7b\x75\x79\xb4\xc4\x42\x2e\x30\x24\x1f\xba\xb6\x7a\xae\x2c\x80\x51\x40\x9d\x79\x9d\x32\x34\x66\x47\x68\xce\x7b\xc6\x9b\x73\x8a\x16\x4a\xad\xe4\xe9\xc9\xc9\x9c\xaa\x45\x3a\x3d\x8e\xf8\xf2\x24\x5b\x9b\x13\xbc\xa2\x27\xd3\x84\x4f\x4f\x04\x81\x88\xbe\xa3\xef\x8f\xff\xf0\x3d\x6c\xcd\xc9\xc3\xf7\x27\x60\xc3\x3f\x9e\xf3\xdf\x5d\xfc\xe1\x3f\xfe\xf8\x27\xdd\xf0\x6a\xad\x16\x9c\x9d\x5a\x57\x51\x63\xdb\x47\x46\xf0\x3d\x31\x9f\x14\x7a\xf9\x8f\xe3\xef\xc2\x61\xd8\x57\x97\x3c\x26\x89\x3c\x79\xf8\x7e\xe2\x76\xe6\x78\xd5\xc5\xf9\x95\x31\x7c\xbf\xe4\x85\x9a\x5d\xfa\x77\x4f\x32\x2e\xf7\x68\xd3\xb6\x54\x9c\x95\x30\x5e\x73\x87\x13\x73\x4f\x4a\xfe\xc0\x0e\x1a\x98\x97\xa4\x6a\x74\xfa\xae\x88\xce\xb5\xb2\x4d\xa7\xf4\x34\xf0\xbe\xd1\x08\xd0\x42\x8d\x0d\x62\x85\x69\x55\x9c\x8f\xf5\x32\xef\xb2\x7e\x4f\x89\x7b\xbb\x6f\xc0\x5b\x3b\xdd\x2d\xc1\x6e\x13\xf3\xb5\xf3\x89\xf3\x47\x07\x72\xbb\x0f\x68\xd8\x96\xc5\x53\x3c\xe2\xa5\x21\x1e\x18\x8b\x1b\x57\xcd\x30\x16\x58\x6e\x17\x5c\xd1\x37\xb8\x52\x3e\xef\xd9\x78\xa6\xa9\x74\x1d\x3a\x5e\xe9\xf2\x57\xa1\x32\x97\xc5\x1a\x59\x99\xaa\x90\xf2\x18\x7d\x2c\x54\x97\xc8\x02\x46\x6e\x3e\x9e\xa1\xef\xff\xfc\x1f\x7f\x1c\xb3\x6f\x2b\xb8\x18\x78\xb0\xb9\x98\xdb\xf8\x15\xe0\x5d\x4b\x2c\x15\x11\x27\x62\x16\x9d\x18\x87\xf8\x89\xfe\xfe\xc8\x76\x7a\xc4\x67\x47\x1e\xf7\xf2\xc8\x42\x00\x1e\x2f\xe3\x6e\xa9\x9d\x39\xd2\x33\xe1\x23\x36\xf4\x54\x42\x98\xaa\x41\xd1\xe0\x33\x8f\x70\x6c\x22\x8c\x0d\x18\x3a\x9f\x55\xfc\xe3\x43\xc2\xa7\xf2\xbd\xc7\xef\xc1\xd2\xf5\x91\x81\x69\xd4\x1f\xcd\xfd\x40\xe0\x3a\x12\x79\x4a\xbd\xcd\xf1\x92\x50\x3a\xeb\xb2\xf0\xd5\x87\x2d\x0b\x00\x36\x99\xb0\x58\xf0\x94\x39\x08\x51\xce\x08\x9f\x41\xf4\x04\x08\x06\xce\x3b\x04\xc6\x21\xc6\x55\x90\xf5\x2a\xc8\xca\x5c\x30\x60\xc6\xac\x5f\xee\x1d\x61\x74\x37\xad\xf3\x53\xc0\xe8\xee\xba\xee\x96\xa1\xbc\xd0\x82\xef\x1a\xc2\x61\x8e\x52\x87\xeb\x07\xde\xdf\xe8\xb2\xf1\x7c\x00\x7c\x34\x61\xb1\x3d\x03\x93\x03\x61\xdb\xe4\x48\xf1\x23\x80\x0b\x80\x24\x74\x03\x6c\x5d\x57\x3c\x06\x5c\x5d\x5d\xae\x49\xfd\x7e\x8b\x71\x9a\x50\xfd\x2f\xc1\x40\xad\x4c\x22\xb3\x32\xfc\x5a\xe9\x66\x8c\x08\x6b\xc4\xdf\x78\xa3\x76\x74\x84\x85\x5b\xd9\xec\x09\xcf\x04\xf3\x10\x74\xd8\xc7\x41\xe2\x80\x09\x1c\x23\x88\x47\x5f\xf0\x25\xd7\xe2\x0c\x4f\x65\xf0\xd0\xe4\x33\xc0\x25\x5c\x2b\x7b\x2d\xf1\xca\xe0\x2b\xbd\xdc\x6c\xf4\xd1\xd2\x8f\x8c\x8d\x23\x7c\xa9\x13\x8e\xfb\x34\x8f\x5c\xbd\x61\xfc\x1e\x72\xb8\x99\x6e\xc0\xcd\xba\x04\x9b\x32\x94\xe7\xb1\x40\xa2\xf4\xef\x5a\x85\xd1\x24\xe5\x73\x07\xfc\xcd\x6d\x02\x72\x0d\x94\x58\x08\x36\x58\xa8\xc2\x5b\x1c\x3e\x61\xe9\xb2\xe3\x1e\xf8\xe0\xae\x36\x1b\x80\x99\x09\x77\x72\x71\x4e\x47\x95\x81\x4e\x75\xe7\xd2\x95\xee\x89\x27\x0e\xee\xae\xdb\x50\x6f\x7d\x03\x16\xd9\xae\x3c\xee\x0c\xe8\x02\xa2\xe2\xcc\x1a\x1b\x86\xe0\x64\x8b\x1a\x2f\x3f\xeb\x7e\x18\x01\xc5\xbf\xcb\xda\x41\x27\x86\x38\x4b\x2b\x18\x9c\x85\xba\x05\xec\x66\x71\x68\x52\xe0\xab\xc2\x28\x0d\x36\x50\x16\x35\xad\x47\x59\x52\x1e\xfd\x87\x0f\x59\xe5\xaf\xf5\x8a\xf4\xd0\x34\x85\xe7\x97\x57\xa3\xd0\x3d\x4c\xcd\x6c\x8f\xa2\x05\x89\xee\x21\x85\xca\x5c\x79\xe6\x30\xb8\xaa\x6f\xd3\xf5\x98\x65\xf5\x65\x14\x77\xbe\xce\xb5\x87\xdc\xf5\xb0\xd3\x5c\xa0\x98\xca\x55\x82\xd7\xe0\x55\x62\x26\x3e\x32\xf3\x48\xf9\xc0\x62\xcd\x0a\x36\x99\xcf\xda\xef\xb4\xde\x95\x7e\xf6\x5d\xd7\xb5\xc4\x62\x4a\x95\xc0\x62\x8d\xb2\xc5\x2c\xf3\x03\x24\xc9\x12\x33\x45\xa3\x31\x5b\x12\xcc\xc2\xf8\x5d\xeb\x55\xd3\x8b\x1c\x73\x62\xe1\x2e\x67\x33\x12\xa9\x0c\xea\x09\x84\x77\xbf\x52\x9b\xce\x60\xb7\xb9\xfb\x93\xd7\x38\xf5\x1f\x28\x33\x89\x85\x74\xb9\x12\xfc\xc1\xb2\x61\x77\x35\x6e\x69\xcb\x86\x7a\x44\xf6\xca\x75\xca\x20\xfc\xe5\x68\xca\x17\xe3\xf5\xa9\x17\x55\x32\xfe\xce\x98\xd4\xbb\x04\x2d\xd6\x55\xd6\x0a\x42\x4f\xcc\x01\x0b\xa3\x57\x3c\xe4\x42\xb1\xe4\xf3\xf8\x9d\x4b\x06\x01\x7b\xcf\xd8\x55\xab\xd5\x7f\x9b\x52\x88\x44\x3c\x90\x78\xcc\xf2\xa0\x16\x56\x6e\xcc\x0e\x1d\xca\x2a\xae\xec\x87\xe3\xb8\x75\x6e\x65\xde\x1c\x40\x22\x6f\x06\xe1\xe5\x13\x1e\x1a\x2a\xc0\x54\x97\x7a\x7d\x82\xe2\x22\xad\xed\xde\x59\x51\x16\x5b\x51\xc1\x16\x60\xca\xb9\x98\x3d\x61\xfa\x94\x7d\x83\xe7\xe3\x03\xc1\x6d\x60\x78\x29\xff\xb1\xaa\x8d\x31\x73\xb9\x6c\xb3\x34\x31\x18\x6d\x75\x35\x69\x2c\x82\x87\x8b\xba\x7d\xb9\xe8\x6b\x6f\x5b\x43\x41\x11\x1b\xef\x09\x76\xc9\x47\xd1\x3a\xab\xbd\x0d\xa4\x4b\x98\x4c\x41\xac\x70\xf5\x2b\x20\x1d\x75\x4e\x14\xdc\xe8\x71\x9a\x98\xd4\x2c\xf0\xf1\x03\x1a\x08\x4e\x12\x44\x95\x1c\x33\x0f\x5e\x62\xf0\x7c\x81\xcb\xba\x44\xdb\xd8\xaa\x5d\xd0\x05\x34\x6b\x6b\x26\x82\x2c\x46\x23\xaa\xc2\x11\x81\xef\x7a\x1d\x62\xbe\xaf\x56\x04\x9b\x3c\x02\x7b\x0c\x59\xa8\x77\x15\x37\xc1\x06\xdd\x43\x25\xbb\x7d\xc4\xbf\xd7\x93\xae\xa9\x64\xd8\x79\x4b\x8e\x51\xdf\xcc\x4e\x2b\x5d\xae\x9c\x9b\x19\xad\xcd\x5e\xb4\xe1\x5d\x5a\xb3\x51\xd2\x57\xa4\xf6\xba\xeb\x0a\x0b\x45\xa3\x34\xc1\x22\x59\xbb\x32\xf4\x74\x16\x54\xa6\x83\x3d\x30\xd0\x15\xb6\xe4\x3d\x94\xc5\xb0\x6e\x21\x89\x97\x24\xc8\x9a\xb3\x26\x9e\x24\x70\x2b\x1b\x40\x53\xe3\xaf\xd4\x6d\xbd\x3f\x46\xe7\xc5\x3a\x84\x70\x26\x02\xc8\x2b\x2a\x0d\xfb\xf3\xe3\x0d\xd2\x3d\x4c\x3d\x43\x3a\xd3\x6a\xe5\x37\xc1\xa9\xab\xab\x91\x8b\xe5\x7d\x47\x9f\xb5\x43\x9f\x6e\x0e\x55\xac\x4c\xf7\x1a\x41\x1d\xd5\x9c\x27\xdb\x1f\x88\x9a\x01\xba\x9b\xa1\xe3\x20\x43\xb8\xb0\x2d\x06\xfa\x73\x50\xa8\xb4\x38\xd8\x65\x43\x21\x3c\xd8\xc7\x8e\x43\x0d\xca\x4a\x74\x1f\x68\x40\x39\x61\x84\x42\xed\xca\x6e\x36\xe3\xfc\x9c\x2b\xf0\x80\xf4\xb8\xb4\x0a\x4d\x4c\x4c\x4b\xa1\xd6\x39\x8c\xc1\x56\x82\x00\xc8\x5e\x7f\xd8\xa6\x04\x25\x94\xdd\xbb\xfc\x52\xbd\xf3\x3d\x84\xb3\xd6\xe1\xf0\x99\xd1\x1b\x62\xae\x11\x6b\xaa\x40\xae\x77\x90\x74\xda\xe5\x68\x54\xab\x9f\x6e\x24\x9d\x70\xcc\x4b\x15\xc1\x83\x79\xb4\xdf\x96\xc6\x28\x4a\xaf\x50\xb8\xd0\x49\x73\xbf\x04\xf1\x5c\x8a\xfa\x1a\xd1\xb5\xeb\x7b\xbd\xc8\xc7\x07\x75\x00\x47\xbe\xbb\x3c\x1f\x7c\x1c\x5e\xe6\xab\x2d\xfc\xe5\x6e\x70\x97\xff\xe5\xe6\xee\xf2\x72\x78\xf9\x29\xfc\xe9\xf6\xee\xec\x6c\x30\x38\xcf\xbf\xf7\xb1\x3f\xbc\x28\xbc\xa7\x7f\xca\xbf\xd4\xff\x70\x75\x53\xa8\xef\x70\xfb\xe3\xf0\xfa\x3a\xff\xd3\x68\xf8\x79\x70\x3e\xb9\xba\xcb\x61\x30\x9f\xff\x72\xd9\xff\x3c\x3c\x9b\x54\x8c\xe7\x66\x70\x76\xf5\xd3\xe0\x66\x70\xde\x08\xd2\x9c\xcd\xb7\x72\x49\xf7\x11\xd8\xb1\x75\xbd\x8f\x3e\x9a\x09\x4a\x58\x9c\xac\x4d\xdc\xa9\x53\xb2\x0a\x61\x6e\xe1\x15\x40\x97\x84\xa7\xbb\x84\x8f\x8e\x16\x04\xf1\x07\xad\xe0\x27\xc8\xb6\x66\xb3\x66\xb0\xbc\xaf\x05\x4a\x52\xa2\x6c\xa0\x6e\x8c\x92\x57\x62\xed\xf3\x30\x9a\x86\x93\xc1\x28\xd8\x4e\xd0\x8a\x88\xa6\xb1\xc0\x05\x2d\xd2\x95\xa2\xd3\xfa\x80\xe0\x96\xf0\x02\xdd\xd5\x40\x03\xfa\x53\x9d\x1f\x7d\x59\xcd\x18\x73\x71\xb1\xbb\x84\x04\x42\x0b\xdb\x96\xb1\xf1\x5f\xbb\x30\xaa\x55\x3a\x4d\x68\x84\x68\x5c\x54\xed\x4d\xfa\x86\xb1\x5e\x16\xb1\xc1\x56\x44\x80\xc4\xa4\x05\xd1\x95\x20\x47\x38\x55\x0b\x57\x61\x17\x0c\x4a\x16\xc9\x75\xcc\x24\x89\x04\x51\xae\xe8\x3f\x89\x5d\x61\x93\xa0\x27\x18\x8c\x4d\xe2\x8a\x21\x5f\xfc\x38\xc0\x69\xad\x31\x57\x9b\x2f\x4d\xeb\x1d\xec\x75\xe6\xfd\xc6\xa5\xb1\x23\xa6\xb2\x58\xbc\x12\x64\x43\xf3\xd0\x95\x47\xd1\xf3\xd6\x9c\x3a\x72\xc1\xc6\x66\x93\x5d\xdc\x72\xf5\x34\x36\xd1\x58\x48\x28\xf9\x30\x63\xdb\xba\x7d\x74\x26\x08\x5c\x22\xd6\x2b\xed\xd4\x68\x88\xa2\xb0\x71\xce\x10\xde\xac\x35\x86\x29\x59\xe0\x64\x66\x0c\x64\x7a\x6b\xb2\x73\x55\x26\xd1\x11\xbf\x27\xec\xc6\x6c\xd8\x8b\xb0\x43\x66\x04\xf0\x2c\xad\xcf\x1b\x27\x32\x6b\x9a\x1e\xa3\xa3\x2a\x97\xe7\x61\x8a\x40\x1b\x71\x35\x78\x6c\x82\xad\x33\xd8\x3e\x97\x22\x32\x9b\xd1\x2f\xba\xc1\x31\x23\x95\xc0\x65\x10\xba\xe2\x00\x16\x3c\x5f\x06\xe0\x1e\x93\xa5\x7e\x4f\x18\x54\x66\x31\xe5\x15\x37\xd2\x6c\x37\x53\x6e\x79\x2f\x1a\x6c\xcb\x60\x7e\xa2\xb9\x82\x35\xa1\xc3\xc1\xad\x13\x24\x74\xdd\x93\x63\x74\x6e\x73\x6f\xf5\x2f\x67\x17\xc3\xc1\xe5\x68\x72\x76\x33\x38\x1f\x5c\x8e\xfe\x2f\x7b\xdf\xd6\xdc\x46\x72\xa5\xf9\x3e\xbf\x22\xc3\xfb\x20\x69\x03\x24\xb7\x3d\x31\x11\x13\x8a\x98\x07\x88\xa2\xdc\x70\x53\x24\x4d\x52\x52\xef\x0e\x1c\x50\xa2\x2a\x01\x94\x59\xc8\x84\xb2\xaa\x48\xc1\x6e\xff\xf7\x8d\x3c\xe7\xe4\xa5\xae\xa8\x02\x40\xb5\xdc\xd3\x0f\x76\x77\x4b\xa8\xbc\xe7\xc9\x73\xfd\xbe\xc9\xf8\xf2\xae\xef\xf5\x3b\x46\x4d\x40\xe5\xf6\x55\xcb\x32\x9c\x84\x38\xa3\x9b\xe7\x4b\xd3\xdc\xa4\xfc\xb5\x83\x2d\xd9\x3d\xfa\x24\xde\xcc\xe2\x24\x8b\xcc\xf3\xb7\x9d\x09\x19\x03\xe2\xe3\x5e\x47\xb5\xb9\xa9\xea\x2c\xdc\x2f\x98\xfb\x85\x95\x20\xf8\xda\x3d\xda\x13\xed\xfe\x1e\x20\xa1\xc0\x1b\xa6\x85\xb9\xfc\xf1\x54\x06\xaf\xcd\xe9\x6e\x98\x6f\xd3\xdc\x61\x73\x2b\x37\x51\x9d\x13\x8e\x37\xc9\xb2\x82\x1b\xf9\x68\x7f\x06\x25\xdf\x2d\xab\x42\x30\x3c\x21\xec\x64\x12\xb0\xc3\x31\x63\x22\xaf\xb9\x8c\x79\xae\xf4\xb6\x65\x8a\xfd\x84\x67\x78\x6d\xca\x22\x34\x7c\xb2\x8d\xfd\x6f\x77\x01\x7f\xca\x65\xf5\x28\x21\x38\xe5\xfd\xf5\x4f\x17\x57\x77\xb3\x8b\xab\x8f\xb3\x9b\xdb\x8b\x77\x93\x9f\x1d\xbe\xc6\x86\x67\x75\xde\x29\x61\x1e\x45\x23\x5d\x6c\xa5\x6f\xa3\x7c\x41\xf2\x27\xdb\x0e\x71\x55\x24\x8b\xa9\xb4\x92\x45\xfb\xe6\x57\x5a\x15\xcb\x55\x73\x43\xd5\x51\xde\x8c\xef\x7f\xdc\x6b\x98\x80\xc3\x80\xec\x30\x78\xdb\xea\x70\x65\xc9\x82\xe4\x1e\x62\x9c\x55\x86\x07\x68\x22\xf0\xd3\x26\x87\x77\x8b\x44\xdb\xcb\x7a\xa9\x0b\xad\x4e\xe5\xbf\xe1\xe7\x6d\x07\xe8\x3e\x90\x9b\xa5\x67\x04\xf2\x43\x91\x7c\xac\xd6\xda\xeb\x86\x3f\x2b\xbd\x60\x7f\x3c\x49\xc5\x72\x29\x62\x3c\x5e\xd5\x86\xc9\x15\x44\x22\x30\xf2\xef\x7a\xd3\x2a\x12\x0d\xd0\x01\x0f\xb3\x4b\x3d\xea\x2f\xc0\x6f\xdc\x27\xcd\xb2\xe2\xdc\x92\x82\x46\x4a\x66\x39\x97\x2d\x31\xcd\xc7\x7a\xb2\x60\x2f\x51\x74\xad\x99\x2b\x4b\x20\x07\x89\xf5\x5c\xfb\x7b\xb0\x4f\x34\x87\xe8\x8e\x24\x79\x3c\x02\x1a\xa4\x80\xc5\xb4\x61\x13\x2a\x44\xf3\xcf\xee\xdc\xe8\x34\x9d\x08\x7c\x02\x3c\x8e\x48\x97\x40\xc8\x88\xe8\x0d\x02\x0e\x92\xd6\x1c\xd5\x41\x1b\x52\xe9\xf9\x23\x2d\x3d\x5a\xad\x65\x8f\xa7\x27\xd5\xb7\x1b\xe4\x94\xb7\xe1\xfe\xad\x0a\x89\x7c\x40\xd7\x1f\x17\x11\x41\x80\x62\xb3\x3e\xd9\x82\x1c\x5a\xf6\x81\x8d\xd9\x89\xd9\x66\x32\x52\x44\x7c\x02\x30\x02\x53\xd9\x16\xd5\xb0\x32\xa0\xc5\xcd\x75\x63\x5f\xad\xc3\x20\x68\x06\xe4\xce\xda\xc5\xee\x57\xdd\xc5\xec\xcf\x41\xd9\x6b\xc9\x55\xa1\x7d\x99\x73\x0c\x5b\x96\x9f\xe3\xb6\x42\x6f\x27\x55\x87\xa5\xd4\xf4\xcb\x48\x28\xe3\xc7\xe0\x13\xb9\xe2\x19\x6a\xae\x79\xb4\x2a\x0f\x1c\x66\x53\xc6\x88\xa9\x0e\xd7\x69\x82\x87\x79\x08\x7a\x05\x2e\x46\x68\x53\x27\x19\x8d\x3e\x64\xfc\x70\xf4\x45\xc3\x0e\x7e\xa8\x1c\x39\xe3\x05\xe5\x1e\x08\xac\x94\x17\x32\x5a\xb1\x4d\xca\xb1\xa2\x71\xc5\x33\x3c\xd2\x36\x82\xcf\xe7\x49\x9a\xe4\x00\xc6\x80\x41\xa5\xca\x0a\x1b\x8b\x86\xeb\x07\x0b\x03\xc7\x3d\x18\x54\xd7\xa1\x3f\x30\x53\xd2\x13\x02\x7f\xcb\x5c\x49\x7f\x65\x83\x2f\x3a\x43\x52\xfe\x58\x52\x9e\xa4\xdf\x0e\x23\xf1\xe0\x58\xfa\xb9\x0c\xdb\x59\x6a\xf1\xa6\xfa\x79\x69\xbd\x1b\x1e\xea\xe1\x79\x02\x84\x70\x3a\x40\xcc\x57\xf1\x4f\x1b\x6f\xd6\x22\x55\xbc\x85\xc4\xd0\xb6\x8d\x70\xa6\x6d\x6d\xc7\xaa\x98\xb7\xc1\xe7\xe1\xa8\xba\x5b\xef\xf2\xfb\xdb\x7b\x7b\x2c\xbf\x60\x28\x00\x79\x2e\xf2\x64\x98\x6b\x23\x98\x34\xcf\xc5\x09\x7c\xde\xdc\x38\x81\xc6\xf5\x9e\x73\xed\xa0\x79\x50\x6d\x07\xd2\x07\x19\x5c\xf5\xd3\xf5\x97\x02\x28\xf7\xaf\x17\x77\x88\x0e\x70\xc8\x21\xcb\x93\xfa\x09\x6b\xbe\x89\xd5\x5e\xef\xcb\x41\x95\xf0\x0c\xf4\xae\x0c\x6b\x9a\xcd\x9d\xf9\xba\xff\x85\x2c\xb3\xfd\x6e\x74\xa2\xa0\x86\x9f\x28\x82\x3b\x70\x86\x1a\xfb\x3d\x60\x25\xbf\x14\xa2\x10\xe6\xec\xcf\x8b\x78\x59\xf7\x6d\x0e\xd0\xce\xfc\x94\x56\xea\x89\xad\x8b\x68\xc5\x6c\xe3\x2c\x16\x29\xdf\x96\xa6\x06\xfa\x52\xae\x52\x40\xee\xdb\x13\x46\x2c\x2a\xb2\x5c\xad\x21\xc3\xd1\xb7\xab\x0b\x09\x07\x9e\xf1\x3c\xd7\xc9\xbc\xc8\x1b\xb3\xa1\x4a\x78\x3a\x7b\x06\xb4\xee\x6e\x2e\xce\x27\xef\x26\x95\x68\xd2\xf8\xee\xa7\xf0\xbf\x3f\x5d\xdf\xfe\xf4\xee\xf2\xfa\x53\xf8\x67\x97\xe3\x0f\x57\xe7\x3f\xce\x6e\x2e\xc7\x57\xa5\x98\xd3\xf8\x7e\x7c\x77\x71\xbf\x23\xac\x54\xef\xb5\x7d\x23\x78\x00\xf7\x63\x73\x2e\x2d\xfc\xa3\xb5\x2e\xa9\xd7\xd7\x6c\x6c\xc1\x8f\x42\xf6\x41\x6e\x43\x83\x10\xd2\x46\x3a\x44\x8a\x20\xbe\xe5\x39\x27\x8e\xde\x53\x36\x66\x96\x6b\x19\x32\x8d\x33\xa3\x2c\x10\x32\x8c\xd9\x1d\x6c\xc2\x68\x0c\x91\xb7\xdc\x3c\xc3\x8d\x5a\x10\x26\x53\x2a\x42\x24\x54\x5b\x56\x33\x95\x17\x8f\x42\xe6\x05\xc0\x34\xf2\x34\xb5\x9c\xd8\xf6\x07\x41\x05\xa5\x1d\x65\x96\xac\x93\x94\x6b\x4f\x46\x72\x4d\x6d\x81\xc2\x6e\xc7\xea\x00\x33\xea\x08\xf5\xd6\x78\xf8\x30\x61\x30\xee\xf3\xcb\x09\xa8\x40\x51\x6e\x91\xb6\x6d\xe7\x53\x89\x98\x3f\xd4\xe3\x9a\x43\xf6\x7b\xae\xc8\x9f\x86\xdd\xd3\x8f\xdb\x0f\x62\x23\x1f\x7e\x7f\x50\x29\xf4\x3c\x3f\x57\x76\x8d\x1b\xa4\xfd\x97\x0b\x99\xeb\x6d\x6f\xbd\xe6\x1e\x80\x1a\x33\xd0\x4d\x29\x91\xa6\x4c\x50\x82\xee\x0e\x66\x5b\xbf\x02\x65\xc7\x66\x79\x91\x37\xde\x39\xdd\x05\x80\x41\xb6\xe8\xdf\xa9\x79\x84\xbe\xd7\x75\x08\x01\x0a\x60\x15\xe6\xaa\x90\x71\x46\x29\x3f\xeb\x44\x9e\xad\xf9\xd7\x57\x76\xa6\x58\xf0\xeb\x40\x82\x01\xcc\x45\xa4\xc6\x12\xd9\x1a\x21\xd7\xbd\x5c\x53\xd9\xb1\x5e\xbb\xb5\x45\x2b\x59\xc1\xec\xf1\x36\x2a\x26\x2f\x3d\x8a\x6d\xd3\xfe\xd5\xa0\xde\x31\x41\x8a\x2e\x3c\x34\xb2\xd1\xc2\xfc\xd0\x65\x46\xa5\x98\xf0\xe6\xfe\x1b\xb2\xa0\x4b\x74\x34\xcd\xb2\x3b\x8c\xf2\x1e\x74\x6d\x1a\xe3\xcb\xcf\x80\xd5\x4f\x3d\x99\x3d\xc3\x68\xb3\x75\x74\x52\xd6\x37\x85\xd1\xcc\x66\xfd\x4d\xcd\xd9\x02\x4a\x20\x88\x6e\x52\x0b\x70\x6c\xc3\x56\x58\x68\x49\x80\xfc\xa8\x85\xb0\xed\x11\x48\x45\x06\xee\x5e\x69\xcc\x2d\xf1\xa5\xa0\x88\xdd\x0f\xff\x67\xd8\x3b\x9b\xeb\x2d\xb3\x30\xc6\x61\x09\x06\x55\x20\xd1\x9b\x0b\xe3\x2a\x64\xd2\x84\x03\x74\x5b\x48\xf3\x14\x1f\x23\xd9\xa1\x7f\x34\xab\xd2\x29\xfd\xe7\xce\x2a\x05\xeb\x88\xd5\xf8\xfb\x67\x03\x4e\xfb\x58\xc1\x4b\xa3\xee\x20\x1f\x96\x5a\x0f\x1f\xb4\x39\x8f\x1e\x9e\xb8\x8e\xd1\x57\x08\xd9\x07\xa7\xec\x47\xf5\x24\x1e\x85\x1e\xb1\x48\xe8\x9c\x13\x94\x4a\x06\xe1\x57\xb8\x50\xd4\xce\x54\x42\x8a\x38\xe2\xd2\x48\x60\xea\xcc\x93\xe5\xca\xd8\x93\x41\xf0\x5c\x69\x23\x8e\x72\xc4\xa9\xda\x88\x88\xc0\x2b\x5a\x16\x60\x91\xf2\xc7\x3a\x36\xcc\x3e\x65\xe6\x6c\xe2\xea\xdc\x6c\x74\xca\xc2\xf5\x76\xa5\x3b\xd0\x82\x91\xd0\x44\xb4\x81\x11\x5b\xaa\x94\xcb\xe5\xe9\xe9\x29\x13\x79\x74\xfa\x6a\xd0\x41\xa7\x06\xc3\x78\x97\xcb\xed\x4c\x95\xca\x44\xba\x75\x80\x0b\x2e\x03\x1f\x28\xd2\xbf\xe6\x42\x66\x09\xba\x3c\x1a\x8e\xff\x5d\xb5\x5c\xfd\xdb\xba\xce\x9b\x2d\xd5\xc1\xf5\x5d\x2d\xed\x00\xfa\xff\x80\x96\xf0\xf7\xcd\x96\xd7\x80\x7a\x45\x4b\xd6\xe3\xeb\x16\x5b\xb0\x15\x95\x1c\x5a\x8c\xf7\x51\xb5\xb1\x5a\xee\x85\x87\xd4\xd8\x12\xa1\x25\xec\x55\xc0\xd4\xe6\xb9\xa8\xd4\x94\x1d\x50\x4e\xd6\x51\x19\x36\xb0\x28\xac\xe1\xfe\x35\x5c\x0f\x57\x76\x7a\x48\x7e\x92\x4a\x8b\x75\x3b\x10\xd0\xa1\x2a\x9f\x1f\x24\xfe\xdb\x39\x74\xd7\x5b\xe5\xf3\x4c\xa3\x16\xc9\x9c\xc6\x8b\x8e\x5b\x2a\xcc\x33\xb2\x5d\x27\x19\x40\x56\xed\x53\x25\xe4\x9a\xc1\xa6\x21\xbe\xb4\xdd\xa0\xc3\x10\xeb\x87\xd2\x2d\xd6\xa1\xd9\x78\x04\x7d\x92\xa1\x5e\x06\x41\xa9\x76\x31\x56\xcd\x7a\x1a\xbc\x47\x80\x93\xbd\x57\x24\x0e\x14\x9d\x00\xaa\x95\xd2\x32\xa0\x41\x8a\x1d\xe7\x8a\x2d\x6c\xcd\xc9\x83\x08\xb8\xbd\x62\x00\x71\x7d\x42\x58\x88\x9f\xfe\x33\xb3\x51\x66\x4a\x04\xf0\x6f\x6c\xee\x3b\x41\x6f\xf6\xe3\x0f\x36\xff\x03\x67\x88\x4d\x00\x59\x46\xcc\x65\xde\xd8\x80\x4f\x8f\x82\xb6\xf0\x93\x8f\xc6\x6e\x6f\xfc\x39\xb5\x0f\x3f\x45\x5c\xfc\xf1\xa7\x3b\x86\x4b\x4d\x70\x9f\xba\x6b\xa0\x41\x23\xbb\x33\x50\x60\xb9\x66\x7b\xe8\x2e\xa5\x7d\xc0\x45\xb7\x78\xaf\x66\xd9\x45\x1e\xad\xfc\x5b\x59\xa6\xb8\x23\xd2\x13\x9a\xe7\xda\x03\x98\x62\x72\x5f\x98\x25\x95\x2c\xa5\xd2\xc2\x67\x5b\x29\x29\x20\xac\xc0\x73\x16\xab\xb0\x59\x96\xe4\xbb\x53\x51\x06\x82\xec\xec\x3a\x6a\xb9\xc2\x14\x03\x9a\x67\x29\x3a\x04\x4a\x70\x82\xd0\x1c\x36\x8f\x0f\xb5\x78\xe2\xd0\xa8\xc2\x6e\x96\x8b\x9d\xa7\xb2\xdc\x55\x6d\x91\x6c\xae\x48\xa2\x05\xa2\xe5\x65\x46\xdf\xc8\x93\x47\x73\x51\xeb\xc7\xda\x1d\x50\x90\x00\xf5\xb3\x37\x95\x38\xec\x00\x72\xef\x41\x6c\xb3\x90\xb0\x83\x4e\x14\x6b\x3b\x90\x89\x99\x0f\xed\xd7\xee\xad\x80\x85\x9b\x05\x14\xa4\xfd\x5e\x11\xec\xf4\xbd\xf9\xb8\x23\x09\xad\xd6\xb8\x39\x83\xbe\xa8\xc7\x7b\xc1\x48\x4c\xf8\x75\xa6\x3d\xf4\x79\x26\x0d\xf4\xb4\xde\xa1\x08\xa6\x9a\xb1\xc8\xa6\x92\x50\x39\x83\xf8\xad\x11\x38\xf5\x6d\xa3\x4a\x43\xc4\x02\xdc\x96\x90\x12\x00\x31\xd5\xf2\x28\x36\xb3\x02\x5b\xbe\x27\x62\xc3\xc7\x5a\x2c\xeb\x75\x6a\xec\x70\xcf\xe4\x25\xda\xdc\xd6\x84\x25\xaf\x74\xd3\xc2\x11\x58\x16\x32\xbf\xa0\xbe\x1e\x09\xb3\x7c\x63\xd9\x98\x2b\x64\x33\x85\xee\x2e\xce\x6f\x2f\xee\xbf\x59\x42\x93\xcd\x26\x1a\x9c\xd1\x64\xc7\xf9\xf6\xe2\xdd\xf8\xc3\xe5\xfd\xec\xed\xe4\xf6\x39\x52\x9a\xe8\xaf\xf6\xc8\x69\xba\x23\xb0\xdf\x73\x25\x73\xf1\xf5\xa0\x37\x59\x17\x72\xc6\x07\xe4\xd6\x3b\x40\xed\x2e\x75\x07\x1b\xad\x83\x15\x3b\x24\x61\x82\x6a\xc3\x17\xcd\x61\x13\x07\x34\xcf\x8b\x24\x4d\xa1\xe2\xcd\x39\x84\xa9\x8c\xc5\x2c\x2a\xc8\x1f\xcb\x57\x49\x32\x75\x2a\xe7\x25\xb4\x66\x70\x52\xad\x8c\xd9\x86\xb5\x6e\x1b\xb3\x00\x3a\x81\x82\xa7\x2e\x3c\xe3\x65\x22\x85\x1f\x06\xb2\xb4\x15\x92\xb5\x82\x50\xd2\x26\x3e\x67\x41\x23\x29\x5e\x7d\x75\x4d\x7b\xe2\x4a\xe7\xd3\xaa\x9f\xf6\x2f\xdd\x0c\xf1\x12\x27\x12\x15\xd3\xd2\x6d\xbe\x6b\x3e\xba\x67\xfe\x0a\xc0\xba\x9b\x9d\xe4\xe0\x35\x07\x22\x34\xbf\x91\xb4\x11\xc8\x24\xe0\xdd\xe9\x0f\x09\xe6\x7d\xa8\x45\x65\x9d\x8d\x28\x34\x6b\x9d\x80\x6f\x9d\x53\x21\x7f\x94\x16\x59\x2e\x34\x19\xfa\xe3\x4f\x77\x53\x89\x7c\xb9\xf4\x0a\x11\xda\x3c\x76\x81\x59\x07\xaa\xd4\xbf\xd5\x50\x42\x09\xf6\x12\xbd\xaa\x6b\xc1\x65\x86\x34\x95\x69\x2a\xb4\x3f\x19\x38\x1e\x21\x62\x22\x2a\x01\x2e\x53\xff\x3d\x31\x15\x2a\xb8\xb5\x66\xbc\xf4\xb7\xc4\xd4\x57\x3d\x4f\x6d\x05\x95\x90\xd2\xf8\x9c\x27\xa7\x21\xb3\xbe\xef\x29\xa2\x6c\xd0\xc6\x43\x54\xce\x73\xef\x75\x96\xee\xb1\xb9\xdf\x8f\xd2\x11\x8f\x52\x8f\x77\x3d\x7c\x25\xd8\x4a\x19\x01\xea\x80\xe2\x7d\x60\xd4\x15\x74\xa7\x90\xb1\x63\x96\xb1\xf1\xd5\xf1\x38\x56\x7b\x85\x4a\xaf\xae\xaf\x2e\xc2\x40\xe7\xe4\xea\xfe\xe2\x4f\x17\xb7\xa5\xe2\xbd\xcb\xeb\x71\xa9\x00\xef\xee\xfe\xb6\x52\x77\xf7\xe6\xfa\xfa\xf2\xa2\x16\x31\xbd\xb8\x9f\xbc\x2f\x35\xfe\xf6\xc3\xed\xf8\x7e\x72\x5d\xfa\xdd\x9b\xc9\xd5\xf8\xf6\xff\x86\x7f\x72\x71\x7b\x7b\x7d\x5b\xe9\xef\xc3\x79\x77\xec\xb5\x34\x8d\x66\x53\xdc\x87\x76\x02\x48\xaf\xc6\x25\xfd\x72\x18\x10\x66\xce\xf3\x46\x85\xba\xb7\xa5\x43\x44\x89\x5f\x0a\xa1\xb7\x84\x21\x80\x5a\x28\xfe\x49\xc4\x25\x26\x70\xe5\x44\xf5\x1e\x87\x99\x47\x53\xf9\x09\xc9\xe0\x21\xb8\xf9\x22\x63\x7f\x02\xf7\xab\xfd\xb1\x27\x14\x85\xcb\xfa\x17\xec\xc3\xfd\xdd\xe9\x54\x96\x88\x18\x83\xaf\x4a\x3c\xd2\xa7\x53\x69\xb1\x1a\x63\x15\x65\xa7\x70\x97\x4f\x95\x5e\x9e\x11\xad\x8a\x91\x75\xea\x61\xae\xd4\xc3\x99\x90\x67\xa0\x6d\xe4\x67\xbc\xc8\xd5\x19\x84\x6e\x30\xb5\x25\x3b\xb3\xec\x0b\x96\xbe\x22\x3b\x5b\x25\x8f\x02\xfe\xef\x74\x95\xaf\xd3\xff\x95\x6d\x56\x5f\x4f\x96\xa9\x3e\x31\xdf\x9e\x84\xdf\x9e\xd8\x6f\x4f\xec\xb7\x27\xe6\x33\xfc\xbf\xcd\x16\x0d\x77\x41\x3c\xb8\x53\x99\xc8\x4c\xe8\x1c\xea\x1c\x9f\x74\x92\x7b\x96\xee\x2d\x7b\xf1\x8f\x7f\xb0\x53\xcd\x9f\x30\x95\xf7\x2d\xcf\xf9\x0d\x6a\x8e\xff\xfc\xe7\x0b\x96\xe5\x8a\xb8\x64\x36\x5c\x7f\x29\x44\x6e\x74\xd8\x54\x44\x39\xfb\xdf\x53\x09\xf4\x53\xeb\xed\x2c\x47\x8d\x1a\xb5\xcb\x38\x63\xff\x85\x6d\x4e\x10\x4f\x23\xce\x4c\x4b\x2d\x59\x3e\x09\x4f\x1b\x08\x7b\x5a\x8c\xaf\x2f\xe9\x5b\xfa\xfd\x00\x89\xf3\x25\x2d\x65\x0d\x38\x54\xd8\xec\x4b\x0a\xc0\x2d\xa9\xe2\x36\x70\xc4\xdc\xe1\x05\x09\x48\x83\x6b\xba\x23\x35\xf7\xe4\x01\x37\x66\x5f\x0e\xb3\x3b\xc4\xf5\xb2\x36\x59\x8d\x8e\x06\xac\x40\x6f\x61\x02\x94\x4b\x62\x6e\xc8\x1d\xea\xb8\xc8\x11\x0b\x33\x07\xd9\x9f\x2b\xcd\x97\x9e\xd3\x97\x9e\xa4\xec\xdf\x5f\x9f\x9d\x8d\xd8\x32\x83\x7f\xcc\xbf\xc0\x3f\x20\x92\x71\x2c\x58\x9a\xda\x62\xba\xa0\x5c\x1f\x4f\x6d\xeb\xc7\x07\xc9\xb0\xe7\x47\x43\xab\x1c\xd3\x37\x85\x8c\x53\xe1\x33\x93\x4b\xc6\x6e\xaa\x2c\x61\x18\xaa\x3c\x55\xdc\x59\xd8\xe3\xb9\x88\xb8\x11\x7c\xb5\xbe\x31\xd0\xad\x16\xb9\x90\xa8\xe7\x68\x8f\xd2\xcd\x51\x27\x81\x28\x13\x84\x65\x81\xff\x76\xbd\x01\x32\xdc\x04\x1c\x80\xf7\x08\x2f\x36\xaa\xfe\x15\xd0\x59\x22\x52\x16\x60\xbf\x20\xeb\xa6\xb0\x96\x38\x56\x74\x15\xda\xa8\x3a\x1b\x2e\x63\x9e\xc1\x09\x5c\x68\xf0\x63\x69\xc6\xeb\x03\x1d\x61\x6a\x80\xb1\xec\xb9\xdc\x92\xcf\x38\x5c\x09\x84\x32\x0b\xc6\x3c\x0a\x06\x81\x6f\x02\x12\xf8\x56\x3f\x3c\x9d\x4a\x47\x05\x8b\x71\x39\x4b\x2e\xbe\xd9\x52\xb1\x64\x75\xd1\x13\xab\x13\xd1\x72\x8f\x3c\xd9\x5e\xf5\xb7\x40\x33\x1e\x3a\x4d\x00\x35\x2d\x64\xc2\xb1\x6c\x3d\x2f\x81\x9c\x57\xe8\xec\x95\xb9\x86\x80\x25\x9a\x7b\x4c\xb2\x24\xf3\x9b\xe1\x98\x63\x49\x0f\x34\xcd\x3b\x78\x61\xb3\x3a\x25\x9c\xad\x26\x15\x6c\xf7\x55\xf9\xde\xe3\x1b\x4d\xe3\xa5\x7f\xfd\xa6\xb1\x8e\x30\xc6\xdc\x48\x66\x3d\x08\x6c\x00\xaf\x6c\x28\x71\xb1\x51\x22\x9a\x45\xe5\xc4\xd2\x8e\x24\xe6\xc9\xca\x8d\x05\x90\x4f\x25\xbd\xc0\x23\xb6\x10\x3c\x5f\x41\x90\x3d\x7b\x44\x61\x8c\xcf\x7d\xfe\xa4\x7c\x74\xc5\x82\xb4\x42\x60\xbe\xd4\xb8\x57\xff\xf1\x67\xe0\x2b\xe6\x51\x8e\xae\xe3\x36\xf8\x4a\xa7\xaa\xc0\x62\x35\x0a\xc4\x3d\xd6\xc1\x62\x7e\x56\xf1\xb5\x43\xc8\x59\x58\x89\x2d\xba\x00\x59\x75\x1c\xf8\x17\x46\xf0\xe0\xec\xd0\xc1\x1f\x08\x47\xa8\x6c\xa2\xb8\x3e\xde\x33\xef\x9d\x0b\x41\xd7\xc0\xf3\xd2\x76\xa9\x3a\x16\x02\x06\xb0\x5f\x0a\xb4\xf9\x74\x27\x34\x45\x26\xb4\x05\x24\xc5\xb9\x22\x36\xc5\x2a\xd1\xf1\xc9\x86\xeb\x7c\x6b\x8f\x6f\x9a\xcc\x01\xc7\x30\x4d\x1e\x04\x1b\x6b\xad\x9e\x8e\xbd\x0a\xad\xa2\xe5\x9e\x67\x0f\x47\x86\xba\x01\x68\xa7\x21\x50\x35\x8d\xc8\x34\xa5\xb0\x7b\x2c\x66\xfb\xa1\xe0\xb4\x21\xf9\x34\xf6\xa3\x45\xae\xb7\x33\x73\x10\xd7\x9b\x56\x49\xd1\x2b\x81\xab\xbf\x92\x3b\x0c\x60\x07\xde\xe7\x1e\x00\x3b\xa5\x5d\xfd\x7e\x00\x76\x1a\xb0\x73\xea\x00\x3b\x93\xab\xc9\xfd\x64\x7c\x39\xf9\x7f\x95\x16\x3f\x8d\x27\xf7\x93\xab\x3f\xcd\xde\x5d\xdf\xce\x6e\x2f\xee\xae\x3f\xdc\x9e\x5f\x74\x57\xcc\xd6\x47\xef\x55\xf0\x13\x16\xf6\xf3\x9a\xdd\x07\x2e\x78\x4c\x7c\x22\xfd\x9b\x88\x3c\xe0\x54\x99\xcb\x9c\xc8\xe5\x08\x2e\xea\x6b\x76\xa1\xf5\x64\xcd\x97\xe2\xa6\x48\x53\x08\x94\x61\x96\xe1\xb9\x16\x60\x78\x8e\xd8\x8d\x8a\x27\xc1\x77\x90\x1a\xdd\x38\x0d\xe8\x9f\xc7\xb1\x16\x59\x86\xdd\x8f\xa8\xff\x20\x2c\xe4\xd2\xae\x29\x2c\xca\x1f\x79\x92\x1a\xfb\xed\x35\x70\x0b\xaa\x05\xb1\x44\x8f\x5c\x12\x27\xfb\x52\xa8\x9c\x33\xf1\x35\x82\x2a\xf1\xe6\x73\x72\xa9\x96\xcf\x6b\x03\x35\xdf\xe9\xdd\xc0\x1a\x2d\x46\x0a\x00\xb6\xcf\x9a\x9f\xf3\x66\x41\x40\xb3\x7c\x8f\x9f\xbe\xc3\x2f\x1b\x5b\xcf\xf3\xf4\x08\x55\x2b\x97\x6a\xd9\x0c\x9f\x0b\xda\x35\x61\xfe\x7a\x12\x5d\xa8\x81\x53\x4b\x96\x25\xf2\x61\x2a\x3f\xad\x84\x64\xaa\xd0\xf8\x47\x60\xe6\x1b\x35\x33\x2d\xb2\x95\x88\x99\x2a\xf2\x11\x7b\x12\x6c\xcd\xb7\xa8\x36\x83\x4d\xe0\xf0\x3e\xe1\xc8\xc0\x2b\x62\xbe\x4e\x13\x69\xa4\xc5\x26\xb1\x39\x52\xd5\xad\x3f\x86\xc5\x65\x31\x12\xf8\xe1\x10\x46\xfd\x0a\x41\x9e\x56\x02\x72\xe0\x7d\x44\xdc\x86\x7e\x48\x72\x03\xa5\x88\x52\x0f\xc5\xc6\xa3\xa9\xbc\xb0\x90\x85\xb0\xdc\x8f\x2a\x89\x59\x5c\x6c\xd2\x24\x72\x72\xf7\x49\xe9\x56\xc8\x28\x4c\xe6\x1b\x00\x19\x55\x49\x51\xed\x9a\x58\x43\xa6\x60\x10\x23\xed\x00\x8f\x7a\x66\xf8\xac\x80\xd2\xbd\xc8\x84\x3e\xc9\x75\xb2\x5c\x82\x02\x6e\xf3\x8e\xbf\x7f\x7c\x2d\x8f\xdf\x71\x78\x8a\x6d\x58\x00\x93\xaa\x65\x12\xf1\x34\x4c\x5b\xf1\xfe\x6e\x07\xe0\x63\xaf\x3d\x51\xc9\x98\x71\xbb\x01\xb5\x16\x26\x6f\xb4\x00\x0c\xa9\x19\xb2\xe4\x1f\xce\xde\x3f\x59\x30\x63\xa0\x5b\x9a\x59\x5f\x21\x66\x99\xba\xed\x0b\xe7\xfb\xb6\x78\xe2\x48\x28\x28\x21\x19\x5b\x3d\x49\xa1\x41\x83\x05\x87\xbe\x99\xa9\x54\xa0\x9b\x38\x8c\x71\x97\x79\x62\x31\xf6\x17\x2e\xc5\x06\xb3\xf8\x97\xc9\xa3\x90\xdf\x1e\x0f\x2d\xe8\x20\xe2\xd1\x4a\xcc\xac\x5e\x7e\x6c\x91\xe5\x1e\x80\x81\xc2\xca\x02\x7d\x86\xa2\x94\x25\x80\x41\x11\xa1\xe9\x84\x23\xae\xcb\x2e\x04\xb0\xee\xf5\x28\x01\x04\x6a\xd9\x3f\x57\x7d\x0e\x0e\x45\xf3\x76\x49\x72\xfb\x6a\xff\xdd\x8e\x80\x65\xaa\xe6\x50\xad\x55\xc7\xf9\x0e\x5f\xd8\x36\xc8\xe0\x47\xa1\x75\x12\x0f\x91\x4c\x76\x4d\xae\xdd\xa7\x5d\x03\x74\x64\x8d\xae\x27\x10\x0a\x09\xfa\xea\x2a\x9a\x7b\xb5\x1a\x60\x97\x99\x00\xb1\x8d\xcc\x05\x37\x9c\x22\x61\xb1\xfa\xc0\x31\xa1\x3a\xd8\x3f\xeb\x73\x39\x68\xa3\xeb\xf5\x65\x3b\xd6\xd2\x97\xa4\x75\x6f\xf2\x01\x45\x42\x58\xd1\xe4\x2a\x85\x86\x00\x2e\xd9\xad\xc3\xc0\x33\x30\xab\xba\x4d\x2c\x65\x04\xf5\xda\xd1\xea\xba\xdf\x53\xb8\xeb\xa0\x0a\xf8\x67\xb8\x51\x45\xae\xbc\xb7\x12\xe6\x33\x01\x18\x92\x30\xd7\x10\xc4\xc6\x24\x6e\x64\xcc\xf7\xcf\x87\xbd\x9a\x6d\xaa\xca\x61\x1e\xa7\x31\xdb\x68\x61\xfd\xde\x5b\x91\xbb\x1a\x89\xd4\x22\x3b\x83\x5b\xd7\xcd\xba\x5c\x24\x66\xeb\x40\x5c\x61\x2f\x38\x61\x95\xe5\xc2\x5e\x6f\x94\x14\x92\xb2\x03\xa4\x9a\x4a\x6a\xdc\x72\xf4\x38\xcf\x70\x29\x09\x73\x44\x06\x39\xa6\xf4\x88\x4c\xa5\x8f\x14\x02\x08\xf0\xfb\x00\xd9\xdb\x0c\xf0\xdc\xe8\x36\x46\x93\x87\xd8\x14\x65\xe4\x41\x8e\x42\x85\xa8\x46\x8b\x65\x92\xe5\x22\xcc\x5b\x0d\xbf\x3f\x1a\x9f\x40\x49\xf9\xef\x5a\xfa\x56\x3e\x81\x5d\xaf\xb8\xb9\xb5\x03\xc6\xb3\xdd\x88\x78\xe2\xbe\xeb\x3e\x0c\xa5\xe4\xf3\x38\x10\x12\xa5\x57\x00\xcf\x00\x6a\x2f\x19\x96\xcd\x66\x0e\x79\xcf\x6d\x12\x15\x34\x72\x47\x04\x01\x5b\xb4\x2c\xb8\xe6\x32\x17\x22\x9b\x4a\x0a\x9c\x60\xf9\x77\x58\xe1\xb4\x28\x11\x48\xf8\xb7\x39\x52\x59\x8e\xd5\x94\xf0\xc9\x82\x27\x69\xa1\x5b\xd5\x65\x3c\x95\x7b\x95\x6e\x74\xad\xd2\x39\x34\xcb\x9a\x36\xcd\xa5\x56\x07\xb7\xc8\x55\x20\x55\xc3\x1e\xe5\xcc\xe3\x96\x29\x58\x91\xdb\x7f\xbf\x9d\xaf\xa4\x25\xdb\xfa\x3f\xb3\xd9\x46\x0d\x90\x78\xc4\x3b\xdc\xd8\x58\xf6\xa5\x66\xd3\x77\x84\xff\xbe\xb4\x61\x11\xf2\xec\x01\x3c\xe7\xbb\x4c\x89\xdd\xfe\xc1\x7f\xff\xe3\x6e\xff\x7a\xab\xec\x82\x53\xbb\xe2\x32\x4e\x81\xa3\x38\xaf\xbc\x40\xee\x0e\x00\x01\x40\x6e\x85\x63\x7b\xba\x21\x64\xef\xcc\xa2\x5a\xea\xe7\xae\x75\xaa\xe4\x8c\xee\x48\x21\x2c\xf5\x52\xce\xe4\x6c\xca\x20\xf2\x2f\x3b\x11\x51\xb8\x0b\xdb\x7e\x04\x17\xc9\xf2\xf8\x40\x3c\x7d\x99\x39\x9c\x96\xfd\xbe\x2e\x29\x23\xba\x8a\xf4\x7e\x39\x32\x8e\x03\x2f\x23\x64\x7e\x19\x61\x16\xc2\x1d\x4d\x25\xf1\xd4\x60\xd0\x08\xa2\x05\x58\xd2\x9b\xb1\x1f\x5c\x3a\xf0\x0f\xff\x61\x0b\x3a\xb7\x6c\x01\x6b\x0d\x55\xd3\x2a\x8a\x0a\x0d\x11\x1d\xb2\x3a\x99\xc0\xb7\x69\x08\x2a\xdd\x18\x5f\x64\x17\x87\x47\xf5\xa9\x49\x7b\x70\x6e\x86\xd2\xa4\xee\xc1\xba\x44\xc6\x1d\xf7\x16\x12\x82\xad\xce\x72\x96\xe5\x62\xd3\x28\x95\x4a\x4a\x57\x99\x58\xea\x00\xb5\xab\x83\x15\xfe\x60\x19\x3d\x0e\x18\xac\xfe\x7c\x77\x7d\xc5\x36\x7c\x0b\x29\x2d\xb9\x22\x46\x30\xc0\xb4\xa8\xde\xdf\x5d\x3b\x50\x9e\x7c\xf9\xb2\xe1\x9a\x6a\xee\xe5\x45\xdd\xed\xc4\x1d\xe3\x5f\x45\x0e\xc1\x99\xa1\x23\x69\xae\xb2\x56\xe9\xc9\x26\xe5\x52\x20\xfe\x20\x16\xf8\xb2\x4a\xf7\x61\x98\xca\x39\xac\x29\x11\x00\x06\x10\x12\x66\xeb\x42\x36\xe5\xb5\x95\xb9\xb2\x0e\x8a\x4c\xb5\xca\x88\xce\x7c\x9d\xf7\x88\x4a\xc8\x23\x73\x4d\xb0\xdc\xc5\x46\xdb\x5c\xc0\x96\x67\x90\x4b\x35\x60\xa3\xba\x89\xbd\xa6\xd2\x72\xb6\xa8\xa7\x8c\xc5\x58\x10\x54\x24\x19\xf2\x61\xa2\x2f\x13\xf2\x1a\x48\xbe\x60\xd0\x55\x73\x99\x99\x0d\x05\x77\x8c\x78\x14\x92\xd5\xcb\x4b\x26\x6f\x2f\x5d\x68\x12\x37\x89\xf0\xcc\x5b\x96\x3e\x50\xcc\x0e\x82\xf0\x6a\x62\x99\xda\x0d\x15\xf8\x9e\x6f\x5a\x0c\x7a\xa4\xa0\x39\xb4\xc5\x5d\xbb\xe4\xca\x21\xab\x5a\x27\xf0\xdf\x00\xc4\x31\x71\xf7\xd4\x57\xef\x83\x3c\x50\xfc\x34\x62\x87\x0d\x60\xd2\xdd\x1f\xba\x3b\x24\x11\x1d\x20\x7b\x82\x5a\x7a\x97\x16\xe0\xf4\x65\x73\xcb\x01\x40\x16\x19\x1b\x89\xa1\xfa\x4e\x08\xf6\xd9\x91\x3e\x7e\x26\x80\x72\xcf\xb7\xdd\xb6\xae\x13\xb9\x50\x87\x09\x03\xbd\xac\x65\xd2\x1c\xb4\x2a\xcd\xe3\x3c\x34\x57\x07\x2a\x8a\xe4\xf3\x16\x85\x34\xce\x6b\x47\x66\xce\x8d\xb7\xc9\x29\x3d\xd9\x8e\xd4\xbc\xcf\xb0\xc5\xfb\x91\x13\x96\x0e\x49\x0e\x3c\x98\x00\xfe\xf4\x20\xd5\x93\x44\x5d\x80\x7a\x62\x2f\xcd\xfd\x83\x07\x0c\x50\x9c\x28\x39\xa7\x40\x69\xf8\x0a\xd0\xa8\xc6\xee\xbf\xd9\x1d\xba\xb9\x71\xcc\x00\xb7\x9a\x81\xf2\x43\x40\xa9\x20\xcd\x5f\x8e\x47\xec\xcd\x88\x9d\x8f\xd8\xe9\xe9\xe9\xab\x11\x13\x3c\x5a\xd9\x11\xe1\x27\x98\xf4\x92\xf3\xa5\x69\xdb\x71\xe5\xfa\x0e\x00\x3d\xd8\x3c\x56\xe6\xc9\x34\x02\x9a\x07\x8c\xba\xde\xf3\x60\xa7\x80\xc9\xdc\xc8\x50\x61\x43\x82\xd1\x4a\x25\x7e\x50\x90\x5d\x26\x22\xa5\x6d\x7e\x5a\x96\x2b\x6d\x73\x6d\x1e\xb9\xe6\x89\x84\x7a\x03\x5e\xcf\x34\xa4\x9e\x03\x8c\x2c\xf1\x95\xaf\x61\xfe\x89\x74\x30\x21\x66\x99\xee\xdd\xf8\xf3\xed\x26\x89\x60\x3d\x9f\x74\x92\xe7\xe6\x75\xce\xa6\xf2\x8e\xbd\xfe\x2f\x36\xde\x6c\x52\xc1\xc6\xec\x17\xf6\x86\x4b\x2e\x39\x7b\xc3\x7e\x61\xe7\x5c\xe6\x3c\x55\xc5\x46\xb0\x73\xf6\x8b\x59\x36\xd3\xde\x95\x32\xcf\xe1\x76\xc4\x38\x93\x45\x8a\xaf\xfe\x4b\x9b\xc7\xf2\xca\xcd\x8b\xfb\xdd\xb1\x84\x93\x99\x5a\xd3\x53\xf8\x33\x56\x33\x98\x95\x49\xe4\x32\x15\xb9\xa5\x79\x2d\x65\x1c\x61\x07\x27\x30\xd3\xd7\x53\xe9\x7c\x79\x3f\x9b\x11\xff\xcc\x7e\x61\x57\x45\x9a\x9a\x21\x19\x41\x63\x0e\xd2\x6b\x66\x33\xc0\x85\x3c\x7d\x4a\x1e\x92\x8d\x88\x13\x0e\x39\xe0\xe6\xbf\xce\xee\x61\xb7\x67\x85\x87\x1c\x08\xef\xb4\x83\xb0\xfd\x26\xb8\x33\x43\xf8\x9c\x1d\x92\xb1\xdd\xfc\x0e\xcb\xaf\xfc\xe9\x70\x8d\xc8\x03\xae\xd0\x7d\x20\x85\x15\xe1\x87\x43\xc4\xe4\xbd\x44\x40\xe5\xb1\xb5\x6d\x35\x3c\x05\xe1\xa3\x7e\xa8\x90\x05\x00\xee\xa3\xdb\x90\x3d\xd0\x90\xfb\x8a\xdc\x1a\x96\xeb\x63\x08\x5e\x0d\xba\xa4\xaf\x3f\xed\x15\x15\x72\x18\xae\x1f\xcb\x08\xe4\xa5\x25\x56\x49\x2f\xa8\xf6\xca\x60\x3f\x90\xef\x22\x16\x52\xe5\xc6\x90\x91\x49\x7a\x66\xae\xea\xd9\x95\x92\xc6\x6c\xcd\x92\x25\xd6\xcc\x42\x06\x44\x06\xb8\x36\x56\x29\xb8\x2f\xab\xac\xc1\x15\x00\xfd\xc0\x0c\x09\xb3\x72\x72\x23\x05\xcc\x16\xa4\xdb\xa9\x34\x5f\xd0\x8b\x04\x19\xba\x89\x03\x03\xc2\xde\x2c\x29\x1c\xf5\x45\x02\x39\x68\xbc\xe1\x80\x75\xf1\xa8\x1d\x04\xc2\x03\xd5\x26\x07\x78\xc5\xaf\x02\x58\x01\x6a\xcd\xd6\x9c\x61\xf2\xcf\x5c\xa4\x4a\x2e\xcd\xa9\x68\x13\x02\x6a\xcd\x93\x43\x62\xe2\xe1\x10\xb0\xb1\xd6\x11\x98\xc7\x92\x7e\x42\x5b\x12\x10\x5a\x13\x99\x0d\x10\x62\x3a\x8f\xac\x7b\x0d\x69\x72\x2d\x93\x18\xca\xd0\x53\x3f\xa5\xc0\x7f\x4d\xc1\x59\xe7\xed\xc7\x87\xd3\x7a\xd3\xec\x8c\xfa\x5d\xaa\xce\x9c\xbe\x66\x57\x08\x45\x13\xac\x33\xd9\x39\xf5\x7a\x9c\xc7\x5f\x33\xbd\xef\x39\x59\xf5\x1a\x29\xf4\xe0\x77\xa6\x35\xfa\xa3\xa1\x34\x79\x76\xf5\x8e\x91\xf9\xf4\x05\x51\x73\x67\x6a\x61\x8b\xc0\xfa\xbf\xe9\x35\xdc\xe2\x7e\xa9\x27\x21\x56\x59\x88\xef\x5b\x3f\x38\x6d\xf1\x06\x25\x67\x14\x91\xe8\x37\xd8\xea\x82\x5d\xcb\x77\xf8\xf9\x8d\x4a\x93\xa8\x3b\x5f\xc7\x3e\x57\x40\xe2\x5c\x4b\x80\x00\x4e\x75\xe7\xff\xa1\x41\xa1\x86\x9e\x8b\x28\xf7\x11\xb7\xfa\xe4\x06\xb9\xc3\xc8\xc1\xea\x5a\x01\x2a\x09\x17\xd2\x82\xa7\x06\x40\x50\x00\xad\x0e\x5d\x8f\x50\x15\x03\xa1\xde\x88\x93\x47\xb6\x34\x10\x90\x57\x4f\x2b\x95\x1a\xd3\x44\xc6\x04\x28\x33\x95\x1b\xa1\x23\x95\xf2\xdc\x48\xc3\x27\x02\x0d\x48\xd2\xd8\x43\xc2\xbe\x84\xdc\x3c\xc8\xa0\x79\x45\xb8\xf7\xc2\x85\x5c\x1d\x17\xf9\xee\x63\x6b\xb9\xaf\x0e\x73\xc8\x1c\x2f\xd9\xa6\xeb\x14\x7c\xa2\x14\x18\x5c\x0a\xa2\x0f\xae\x04\xcf\xcc\xa2\x97\xc6\x33\x6c\x87\x85\x43\xfb\x8c\xbc\x1d\x91\x57\xf6\x95\x4c\x89\xea\x52\x02\x30\x10\xd6\x75\x60\x3e\x45\x26\x60\x38\x6b\xc1\x51\x35\xf1\x30\x1d\xb4\xa9\x53\xe9\xc3\x85\x2f\xb2\x50\x4d\x69\xdc\x67\xc4\xbd\xb1\xe9\x3c\x23\xf6\xa2\x34\xd1\x17\x00\x1c\x23\x15\xf4\x47\x21\x9d\xd2\xd2\xc0\x71\x1d\xb1\x24\x9f\xca\x24\xc3\x93\xa9\x45\x2a\x1e\xcd\xe8\x42\xdf\x29\xa5\x7e\x58\x53\xd2\x4e\x1b\x32\x42\xb9\x2d\x24\x74\x94\x69\x50\xa2\xad\x43\x00\x12\x0e\x7e\x5a\xe0\x94\x2e\x24\x80\x7d\x8a\xaf\x48\xdc\x9d\x6e\x6d\x36\x44\x2c\xa4\x1d\x1f\x24\x49\x20\x2b\xcb\x54\x4e\x16\x50\xcd\x05\x35\x64\x71\x8c\x46\x99\x85\x7f\x74\xd5\xe0\x09\xf9\x4a\x15\x99\xa8\x8e\x91\x17\x69\x1b\xf0\x26\x89\x47\xa1\xb7\x39\xf8\x38\x61\x5d\xa5\xe0\xf9\x8a\x25\xf9\x08\xca\xf8\xad\xe0\x98\x4a\x1e\x13\xeb\x15\x35\x67\x96\x06\xce\x7d\xc7\x3e\xd3\xdf\xcf\xd5\x63\x97\x9e\x77\x68\x12\x14\xde\xea\x4d\xca\xe5\x0c\x05\xea\xaf\x90\x06\x15\x30\x6a\xb4\x45\xfe\x8a\xf9\xcc\x31\x5c\x1f\x65\x9c\x4e\xfb\xb9\x2d\xf1\xdc\x18\xb5\xce\x76\x34\xc2\xc3\xe0\xa1\xc7\xac\xb6\xee\xdc\x16\x14\x6c\xd7\xcc\x06\x24\xfb\x4b\x01\x9f\x21\xc5\x2b\x81\x79\x7b\x5a\x77\xa5\x48\xd9\x13\xf0\xbd\xa6\xeb\xf4\xd9\xf9\xca\x1b\x52\xdd\xf6\xe1\x99\x22\x35\x85\x69\xaf\x6c\x91\x1d\xc3\x7a\xde\x8c\x91\x56\xb7\x42\x3d\x73\xc4\xce\x36\x88\x7e\x61\x1a\xb4\x40\xb7\x94\xf3\x7a\x34\x33\xa6\x84\x66\x89\x6a\x48\x35\x3c\xa6\xcb\xb6\xcc\xab\xdc\xbb\x8a\x12\xc6\x75\xca\x26\x92\x59\xef\xc5\x88\x4d\xff\x80\x27\x2b\x9b\xfe\x81\x7c\x72\x44\xbc\x43\xc1\xe4\x98\xee\x0f\x55\x9e\x55\x73\x13\x30\xff\xd7\x5f\x38\x0c\x8d\xb4\xe9\x9f\xcd\x51\x9b\x63\xae\xcc\x9b\x04\xf2\x8f\xf7\x29\x31\xc5\xb0\xda\x1c\x1b\xa0\x67\x12\xed\xd0\x2d\x6a\xb1\xca\xbb\x77\xfd\x84\x6d\x00\x88\xbd\xb1\x1f\x9a\x25\xda\x14\xf4\xa2\xda\xbf\x67\x4a\x4f\xa5\x6d\x8d\x7c\x74\x19\x62\x34\x57\x9b\xb2\xc6\xaf\x57\x82\x83\xb3\x0a\x51\x7d\x0b\xcb\x0d\x68\xef\x1e\x25\xa7\x2a\x07\x20\x4b\x60\x2e\x3c\x65\xd8\x29\x1b\xfb\xde\x8c\xea\x61\x8e\xf8\x1a\x1f\x7a\x42\x85\x13\x32\xda\x02\xd0\x4d\x9a\x9a\x45\x49\xf2\x8c\xb4\xb6\x20\x55\x39\x2b\x00\x7e\x66\x51\x18\x71\x14\x60\xf4\x4c\xa5\x59\x3c\xb6\x48\x20\x11\x96\xd6\x65\x2a\xdf\xab\xcc\x56\xc6\x66\x7e\x3d\x6c\x52\x25\x2d\xdb\x0b\x87\x4e\x4e\x7f\xf0\x16\x9e\x6d\x72\x82\x57\xe8\xea\x20\x47\x9d\xca\xdb\xb7\xaa\xd0\x7e\x52\x11\x97\x53\xf9\x37\xb3\x3c\x48\x16\xe5\x98\xd6\xd4\x02\x2f\xb1\xa5\xf7\x63\x2f\x3f\x63\xa3\x2f\xff\xe3\xd5\xe7\x57\x58\xa1\x5e\x64\x40\x08\x31\x2a\x3f\x21\x0e\xae\xad\x48\x53\x08\xcd\xda\x19\xb8\xc2\x72\xdf\x45\x27\xf9\x38\x59\x39\x33\x59\x56\x32\xfa\x5c\xf5\xae\x13\xec\xbd\xb1\x63\x16\xf1\x3c\x5a\x9d\x58\x6d\x8e\x04\x99\x7d\xff\x68\xfb\x10\x19\xde\xe8\x5a\xcd\x88\x65\xc6\x02\xd3\x6b\x47\xb8\x56\x3a\x2f\x66\x0a\x90\x69\x72\x5f\x3a\x95\x21\xad\x21\x1e\x4e\xcf\x75\xe6\x35\x3d\xf7\x73\x0b\xf7\xee\x5d\xa8\xe4\x36\x96\x7c\x2d\x62\x36\x45\x74\xe4\xe9\x1f\xec\xf6\x4f\xe5\x66\x7e\x9a\x6e\x17\x39\x01\xb6\x98\x65\x39\x05\x48\xe4\x1d\x2f\xdd\x2c\xae\x9b\x4a\x3b\x96\xbb\xd5\xd8\x6a\xd6\x77\xdc\xea\xb8\x9e\xfa\x2b\x2d\xe8\xf6\x71\xeb\x73\x57\xce\x9a\x29\x23\xde\xf1\xec\x61\xc4\xe6\x9a\x4b\xc0\x08\x8d\x43\xc5\xca\xdf\x4f\x64\x34\x07\x34\x14\x0a\xe2\x70\xc9\xd3\x2d\xa4\x53\x8f\xa6\x12\xa1\x63\x00\x3d\x6a\x1b\xa5\x49\x84\xec\x8a\x15\x5d\x48\x3c\x0a\x99\x5f\x50\xad\xb4\xcd\xdb\x3e\x34\xda\xea\x6a\xaf\x0f\xa2\x89\x9c\x94\x35\x1e\xee\x8b\xca\xbd\xd3\x31\xd2\x02\xf2\x99\xe7\xdb\x20\xcf\xd3\x1d\xf1\x11\x81\xac\x03\xba\x0e\xfb\x4b\x31\x57\xa9\x85\x27\x9a\xbc\x65\x4a\x03\xe6\x63\xae\xe8\x8f\x92\xb8\xed\x1d\x4b\x64\x2c\xbe\x1e\x54\x23\xdc\xfd\x24\x59\x15\xcf\x74\x13\x40\x0b\x56\x27\x0b\xf7\x48\x0b\xf3\x5c\xe4\xd6\x8a\xab\xfd\x2a\xab\x26\x9d\x8d\xd3\x7c\x05\x99\x60\x98\x83\xec\x17\x75\xcd\xb7\x2c\x5a\x71\xb9\x0c\xcc\x68\x48\xcc\x11\x1b\xa5\x11\xcd\xff\x11\xc0\x78\x94\xb6\x35\x58\x54\x59\x44\x89\xd0\xce\x07\x8c\xf9\x87\xca\x96\x0f\xf1\xe5\x52\x8b\x25\x94\xc5\x96\x48\xa0\x51\x82\x3a\x58\x46\xec\xa7\xab\xb4\xec\x38\xf5\xd9\x6d\x96\x4b\xae\xb7\xae\x30\x87\xa8\x30\xdc\xd2\xd5\x96\x75\xc4\x12\x71\x3a\x62\x7f\xf4\x39\x97\x22\x52\xd2\x55\xf6\x34\xcf\x61\x53\xf1\xd6\xee\x90\x45\x0d\x85\xdc\xcd\x63\x87\xbf\xab\x11\x6a\x34\x1e\x9a\xa1\xce\x33\x9b\x0d\x48\x79\xbe\x59\x55\xc1\x6f\x38\x6f\x8e\xd4\x54\x69\xd4\x13\x31\x74\xee\x4a\x5e\x4b\x57\xb2\x49\xfc\x94\xea\xf6\x81\xa8\xe9\x5b\x59\x63\x6d\x88\x01\xcd\xcb\xfe\xa1\xc5\x12\xb3\x2f\x61\xc5\x91\x5f\x3b\x0d\xb8\x4e\x7a\xa0\x54\xf4\xf4\xe6\x00\x83\x6a\xdd\x69\x4a\x27\xcb\x44\xf2\x5c\x69\xf6\xf2\xc6\x62\x07\xbe\x72\x78\xb7\xb0\x8a\xc7\x38\x94\xa5\x25\xc2\x43\xd9\xac\xeb\x43\x42\xa9\x88\x67\xc3\x70\x57\x9a\x88\x06\x77\x26\x4c\x9b\x5f\x65\x39\x5f\x6f\x42\xc8\x30\xc7\x7f\x43\x2b\x93\xe2\x22\x30\x3b\x30\xf0\x2a\x25\x99\x2f\x82\x99\x4a\xf2\xc5\xe2\xbe\x29\xdd\xc0\xa0\x5b\x9d\x25\xe8\x2d\xb3\x3d\xcb\xe0\x51\x6f\xec\xf1\x75\x67\x0c\xeb\xf6\xd2\xba\xa8\xbd\x1e\x5a\x52\xec\x60\xa2\x88\x60\x94\xc1\x1b\x81\x26\x85\x13\xc3\x46\x26\xdb\x6a\xdf\xf3\x54\x15\x31\xa3\xf7\x85\xe2\x61\xfa\x14\x65\x1d\x40\x8a\x9d\x9e\xb6\xe1\xab\x0c\x64\xb4\x70\xf7\x1b\xbe\x6b\x3e\xe1\xf0\x77\x8d\xd5\xf4\x3b\xae\x16\xad\xec\x30\x6f\x07\x85\x82\xdf\xf3\x4d\x77\xcd\x36\xb7\x96\x1a\x56\x58\x84\x1c\xce\x0d\x77\xbf\x65\xb9\x9c\xff\x0d\xf0\x4d\x86\xb9\x66\x2c\x63\x09\x9c\xe7\xd0\x75\xd9\x80\xc0\x16\xe6\x00\xf2\xec\xe1\xe0\xee\x6c\x29\x61\x77\x57\x1b\xae\x85\xcc\x67\xd0\xe3\xb0\xce\xa0\x93\x1b\xf8\xbc\xf4\xfc\xf5\x72\x41\xfd\xf7\xbd\x42\xcf\xa2\x2d\x66\xfe\x2b\xbb\x23\x5b\x3a\xb3\xec\x67\xe6\xf5\x79\x99\x40\xf0\x3f\x88\xc2\xb8\x8d\x6b\xd9\x2e\x9a\xd0\x1e\xab\x17\x4c\xa8\x24\x3a\x7b\x4d\xc8\x8f\x1e\xb1\xc0\x4d\x2b\xe4\x56\xa0\x12\x36\x23\xca\xec\x9f\xf9\x33\x87\x65\xa1\x3e\x1e\xc8\x78\xce\xcc\xfe\xa5\xec\xef\x42\x2b\x9f\x97\x4d\x8c\xca\x41\xc3\x9d\xda\xd7\xfe\xac\x1b\xa8\x5d\x21\xdf\x43\x08\x78\x0e\x7f\x42\xf5\xe2\x68\xc7\xcc\xb7\x56\xb9\x6c\x71\x5e\x6f\x44\x34\xdb\x83\x73\xde\xd7\x67\xfb\xe7\x3a\x90\xef\xd6\xd5\xe2\x1e\x0b\x7b\x41\xcf\xc0\x4a\x22\x44\xa6\x35\xdf\x50\xa2\x0d\xe5\xf4\x55\xdd\xc6\xa7\x30\x89\xff\xfe\xf9\xaf\xa7\x6d\xcc\x3f\x30\xf4\xa1\x79\x0b\x6e\xf0\xef\x74\x22\x64\x0c\x61\x20\x1e\x7b\xe6\xfa\x90\x98\x7e\x57\x6e\xea\xce\x03\x79\x80\xae\x75\xc8\xbe\xd4\xb5\x29\x07\x81\xef\x8f\x78\x12\x87\xb4\x8d\xee\x80\x7b\xc0\x2c\xb7\x33\xe0\x24\x68\xd1\xe7\x4e\x69\x9c\x0d\x3d\x0c\x58\xbd\x66\xf9\xf4\x8d\x34\xd5\x36\xe8\xae\x3e\xc3\xb7\x66\xfd\x8d\x52\xe9\xa1\xa6\x3d\x4f\x2d\xf0\xe8\x0c\xb0\xbc\x0f\xd1\x64\xf0\x00\x38\xf3\x76\xf2\xd6\xb9\x99\x1d\x16\x16\x19\x63\x8e\x49\x03\x62\xa0\x34\x04\x88\x3c\xc2\x20\x3a\xb2\x85\xb2\x4d\x43\xa4\x61\x60\xd6\x13\xb4\x81\x21\x4a\xc7\xa9\x59\xf3\x35\x04\x75\x6c\xdc\x8f\x11\xf0\x42\x2a\x23\x1c\x64\x87\x21\xf2\x76\xa5\x2b\x67\x93\x85\xb8\x42\x6e\x1d\x83\xbe\xed\x7a\x22\xdf\x87\x31\xea\xe8\x01\x99\xca\xe0\xb1\xc0\x8a\x7a\x9b\x56\xe6\x56\xad\xc9\x54\x2b\x1d\xc3\x83\x4d\xb5\x43\xc0\xe3\x3a\x3d\x47\x6f\x43\x5c\x77\x08\x80\x44\x6a\x3d\x37\xe6\x12\x96\x29\x91\xb5\x0c\xaf\xdc\xd8\x62\x73\x38\xcf\x86\x7d\xad\x10\x1c\xb4\xb2\xf6\x2e\xa5\x2b\x84\x39\x09\x45\xd6\x2e\x4d\x30\x54\x2d\x8e\x8b\x73\xd7\x2c\x67\xc7\xd5\x19\x00\xbf\xf2\x13\xdf\x66\x00\x82\x6f\xec\xf6\xc5\x02\x6d\xf6\xf2\xf8\x47\xde\x92\x74\xb8\x2f\xc4\x28\x53\x10\x37\x06\xcd\x25\xc1\xda\x4d\x91\x5a\xb8\x7f\x5f\x13\xff\x22\x6b\x5e\x9c\x5f\xc7\xe9\xa3\x3b\x9d\x3e\xe8\x75\xfd\xd7\xf0\xf3\x74\xd8\xf7\x07\xba\x19\x82\x67\x52\xab\x88\x88\x60\x73\x06\xdc\x38\x28\x8e\x4d\xdf\x23\xb6\xe6\x89\xa4\x6b\x90\x6b\x23\x20\x63\x31\x2f\x96\xcb\x56\xeb\x37\x55\xcb\x67\x8d\x04\x5a\x78\xbb\xe0\xf7\x2d\x75\xbb\x69\x17\x64\xdb\x2e\x4b\xf3\xb7\xe3\xe6\xe8\x44\x75\x38\x86\xa3\x62\x62\x7b\xc2\x68\xcf\x22\x49\xc5\xb7\xf1\x4d\x1c\xc9\xd1\x32\xe9\xe3\x68\xb1\xe1\x42\x48\x63\x26\xe4\x5e\x1b\xd0\xf9\xdd\x03\xf3\x6d\x3c\x30\x8d\x2e\xe6\xea\x08\xb1\x74\x76\x96\x94\x15\xe0\x8e\x11\xee\x89\xc0\xe1\xa0\x9a\x60\x54\x44\xff\x92\x09\x19\x67\x40\xc5\x7c\x7c\x48\x0e\x78\x7d\x0e\x47\xaa\xd8\x11\xa5\xba\x53\x6b\xc1\xa0\xab\x0c\x21\x51\x19\x65\x8a\x8f\x20\x01\xc2\x4c\xd0\x87\x76\x28\x70\x04\xcf\x15\x86\x98\x62\xaf\xb4\xbe\x94\xe2\x89\x99\xd7\x60\x14\x46\x84\x83\xed\x01\xac\xec\x57\xc4\xdf\xe8\x13\xc8\x5c\x59\x9c\x16\x4b\xae\x63\x48\x5b\xa4\x2b\x99\xf2\xe8\xc1\xfc\x3b\x8c\x8f\x7a\xa4\xa8\xb5\x85\xed\xc3\x4c\x0a\xdf\x5a\x22\x23\xe4\xd2\xb3\xd4\xe9\x6e\x7c\xf8\x79\xc6\x78\xa4\x55\x86\x9e\x98\xb8\xd0\xbe\xb0\x55\x82\x82\xf8\x98\xc4\x05\x4f\xb1\xc7\x56\x27\x0a\xcf\x0e\x82\x21\x1c\x07\x68\xd0\xe2\xeb\x26\xe5\xb2\x7c\x27\x71\xba\x50\x07\x9e\x74\x9c\x7c\x07\x67\xf2\x4d\x61\x99\x42\x4e\x36\x7f\xad\x50\xfb\xd4\x82\xc7\xdb\x10\xf4\x21\x91\x44\xb4\xc4\xe3\x75\x22\xcd\xd6\x5b\xb0\x7f\x27\x5f\xa1\xe9\x88\xa7\x98\xbb\x01\x98\xb8\x69\x5a\xb9\xfa\x19\x93\xc2\xa8\x2c\x5c\x27\xe9\x16\xb4\xd4\x8d\x16\x27\x41\x3f\xc1\xfd\xa6\xe4\xd1\x24\x9b\x4a\x5b\xa0\x58\x64\x62\x51\xa4\xa8\xcb\x82\xb5\xe7\x26\x40\xf7\xf0\xc3\x64\x64\x9e\xb1\x9c\x90\x28\x83\x8e\x11\xdf\xfd\x18\x89\x78\x75\x3b\xab\x97\xeb\xd0\x83\x91\x68\xc8\x12\x5a\xa9\x27\x9b\x2d\xfc\xc4\x7d\x32\xc8\x10\x43\xf4\x86\x64\x97\x35\x32\x83\xd4\x11\x50\x39\x4a\x7c\xe7\x00\x6c\x0f\x78\x1e\x20\x1c\x6e\x88\x56\xfd\xc7\xe4\x51\x8c\xd8\xdd\x86\xeb\x87\x11\x7b\xbb\x95\x7c\x9d\x44\x7f\x56\xf3\x9d\xb6\xe5\x31\xfc\x2b\x4e\x05\x1a\xec\x7f\x6b\xf4\x54\x8c\x02\xfc\xb4\xc0\x0b\x57\xf7\x04\xd8\x20\x28\x00\xe2\x23\xb5\xe0\x2e\x90\xfa\x56\x90\xbd\x63\x69\xc8\xed\x79\x1e\xad\xfa\x72\x55\x02\x78\x59\x4d\xa9\xf4\x4d\xc1\x60\x23\x23\xa1\x02\xc0\x4c\xfc\x04\x5e\x3d\xa5\xd9\x26\xe5\xb9\x39\x2b\x19\xb1\xd5\xe0\xa9\xc0\x84\x0c\x94\xf6\x95\x02\x89\xbe\x8f\xba\xed\x78\xb6\x51\x2a\x6d\x7c\xdb\x8f\xba\x80\x35\x4f\x5a\xdf\xc5\x9b\x60\x62\x69\x16\xbe\x78\x76\x15\xbd\x57\xc6\xfb\x70\x02\x82\x56\x38\x4d\x71\x01\x85\xb7\x7e\x39\x42\xce\x00\x63\x1e\x60\x1a\x0c\x3e\x72\x96\x62\x86\x5b\xed\xc3\x3c\xd0\xe4\x9e\x0a\xd3\x2f\x6a\xfe\xa2\xac\xde\x4f\x8b\xca\x01\xed\xce\x92\xa6\xea\xc8\xa1\x97\xeb\x7e\xd5\xe8\x04\xc6\x91\x5b\x07\x96\x4d\x45\xdc\x85\x0d\x65\x2b\x2f\x66\x51\xca\xb3\x9e\x69\x60\x8d\x72\x67\x42\x0d\x9d\x43\x3b\xfd\x65\xe6\x8f\xe0\xaf\x5b\xf7\x14\xc6\x53\x39\x76\xd8\x48\xfe\x19\x77\xaa\x07\x8a\x59\x54\xba\x6a\x5b\x83\xf9\x8d\x1e\x48\x6b\xc4\xb2\x22\x5a\x41\x06\x67\x59\x4e\x85\x72\xab\x7e\x63\x47\x53\x69\x1e\x42\x84\x16\xe7\x10\xb3\x79\x02\x14\xda\xe4\xef\xc2\xbd\xb4\x94\x26\x14\x3e\xae\x73\x6e\xb6\x86\x38\x85\xab\x8a\x88\x4d\xa6\xe5\xfa\x41\xc4\x81\x1b\xa9\xd8\x18\xf3\xf7\x74\xea\x96\x19\xcf\xaf\x03\x95\xb3\x9a\x4d\x16\x4e\x2c\x54\xc4\x2a\x92\x36\x4d\x16\x22\xda\x46\xb5\x62\xf1\x52\xa4\xf4\x78\xfe\xca\xfd\xdc\x75\x5d\x45\xc5\xcd\x56\xd8\xa7\x5a\x11\x1c\x6b\x0b\x2f\xfd\x6b\x26\x95\xb4\xd4\xb5\xfe\xd6\x3d\x2e\x3b\x2a\x23\x7e\xcf\x0f\xf9\x4d\x7a\x27\xfa\x95\xb4\x96\xe4\x97\x4d\xc1\x00\x6b\x88\xb4\xe6\xc6\xc4\x8f\xef\xab\x6a\x29\x89\xc3\x7b\x83\x48\x64\x2d\x41\xde\x1d\x57\x81\x6a\xc3\x62\x57\xb7\xd6\x7f\xac\xe7\xf4\xa9\x5d\xaf\xf3\x54\x65\x85\xee\xbe\xfc\xb7\xe5\x51\xdb\xde\x1b\x60\xad\xe0\xb0\xad\xe7\x02\x4a\x12\x63\xdc\x99\xc6\xc9\xec\x52\x14\x8c\xbd\x54\xfd\x9e\x52\x22\x9e\x04\x8b\xf8\x06\x52\xc3\x9b\x89\x22\x6a\xdf\x05\xf6\x35\xbc\xbc\x4b\x11\x6a\x01\x95\xc7\xb1\x74\xb8\x4a\xb1\xa4\xef\x2a\xed\xb2\xd1\x06\xab\x40\x29\x94\x5c\x31\xbd\xa2\x6f\xc7\xf0\x6c\xdf\xf0\x7c\x85\x4e\x02\x20\x5a\xc6\x48\x6c\x6e\x14\x28\xa4\xf1\x41\x77\xf7\x3c\x55\x73\xe0\x7e\x01\x6a\xd6\xb6\x73\x4e\x87\xb3\xd7\xd2\xd5\x37\xac\xcf\xd9\x36\xf7\x01\xca\x40\xb4\xc8\xa0\x1e\xb8\x1e\x4f\xea\x9b\xc4\x36\xcc\x91\x51\x1f\xae\x11\x5b\x6f\x6b\x8e\x8c\x3a\x9e\xaa\x91\xea\x90\xd1\x74\xd1\x20\xd6\x77\x5d\xac\x8b\xb0\x90\xc2\x3c\x6f\x04\x2d\x47\x01\x5b\x44\x97\xaa\xcc\xd7\x92\x6b\x4d\xe5\x18\xff\xa6\x44\x45\xeb\x70\xc3\x5d\xd2\x10\xf1\xa8\xb8\xfb\x87\x95\x15\x6c\x6c\x2b\xa5\xa1\x22\x97\x53\x40\xd1\x59\x5c\xe0\x1e\x19\x41\x21\x83\xcc\x13\x6d\xf4\xe9\x0c\xd4\x85\xac\x98\x9f\xf8\xba\x59\xa5\x41\xc1\x80\xb2\xea\x0d\xd7\x40\x52\xb5\x4a\xd2\xf8\xa4\xe1\x21\x41\x1f\xa7\xc7\xff\xb5\x70\x2b\x3c\x25\xf1\x05\x76\x21\x96\x6d\xb9\xb9\xbb\x76\x8c\x7a\x0f\x98\x67\xb6\x64\x08\xc5\x75\x97\xbc\x28\x19\x4b\xbf\x76\xf2\x4b\x8f\xec\x92\x16\xde\x88\xdf\xbe\x9c\x28\xad\x59\x1f\x39\x71\x5f\x36\xad\xec\xad\x31\xc6\x21\x49\x8e\xb6\xa5\xca\x66\x18\xe2\xff\x06\xb8\x12\xde\x33\x94\x6d\xf8\x93\xa4\x6a\xd5\x6e\xfc\xab\xbd\xe4\x43\x33\xf9\x9e\x91\x0f\xb5\xb4\x1f\x2f\x29\x24\x21\x3f\xe4\x89\x23\x59\x18\x05\xd4\x4a\x3c\x4d\x43\x28\x51\xef\x0a\x9a\x4a\xef\x30\x30\xcf\x7f\x9a\x9a\x7f\x46\x55\xc1\x4d\xd5\xc9\x31\xf2\x5f\x8f\x6c\x69\x25\xc1\x92\x50\x88\xe2\x04\x0d\x73\x6f\x3e\xef\xba\xcd\xc7\xd2\x27\x89\x6e\x27\xe7\x79\x31\xa0\xfe\xee\x9c\xe7\x3c\x55\xcb\x73\xf3\xf1\x1d\x7e\xdb\xf9\x98\xa1\x5e\x64\x89\x59\xcd\xef\x21\xf9\x8f\x03\x8c\x6e\x58\xbf\xb3\x23\x18\x88\xdd\xce\x1e\xc4\x76\xf0\x58\x9b\xdd\xf1\x01\x37\x3e\x5c\x66\x5b\xdc\x17\x71\xad\x6d\x42\x2f\xf5\xca\xb8\xce\x93\x05\x8f\x4a\x1e\xf4\x5e\x60\x53\xa5\x17\x12\x5b\xcc\x20\xf4\x6c\xd3\xd2\x3c\xfa\x01\x67\x8e\xe5\xa7\x7d\xff\x8f\x6d\x53\x08\x2f\xa4\x9f\xc1\x3f\xd2\xed\x38\xc4\xeb\x5b\x7f\x23\x4b\x9e\x65\x5e\x4b\x7a\xee\xb9\xd8\x9c\x95\x30\x43\x1a\x97\x14\xb0\xf2\x81\xe4\xf5\x90\x35\xdc\xb3\xb8\x64\x18\xcc\x24\x0e\x73\x20\xe0\x6f\x8d\x8d\x83\x18\x6d\xc1\xe4\x88\x09\x78\x21\xaf\x56\x0a\xc3\x12\x62\x8a\xf7\xa3\x45\x49\xad\x80\x54\x5b\x86\xe5\xb5\x88\x93\xa2\x8a\xf1\x5e\x2a\x47\xf8\xdd\x16\xfe\x9f\x67\x0b\x43\x6a\xc1\x73\x1a\xc2\xcd\x85\x2e\xbf\x3f\x85\xdf\xc1\x53\x58\x0e\xf5\x09\xfd\x88\xa9\xe7\x43\x96\x96\x86\x7a\xeb\x3f\x3f\x6c\x71\x05\x0b\x46\x92\xf5\x5f\x67\x3a\xab\x03\x6f\x71\x6f\xe9\xd7\x1d\x7d\xf4\xca\x82\xd7\xa0\xdd\xbb\xc8\xeb\xf7\x28\x74\x41\xe5\xe1\x1e\x1a\xc3\xa5\xb7\xfb\xb2\xbd\x60\xed\xbb\x0a\xc2\xf4\x51\x06\x8c\x88\x72\x61\x99\x2b\x2b\x9a\x2c\x3b\x7f\x87\x88\x0a\xa0\xa9\x78\xfe\x22\x73\xab\x5e\x16\x45\x36\xd7\xec\x32\xc9\xf2\x8f\x15\x1e\x80\xfd\x88\x04\x9e\x2d\x93\xc0\x0e\x15\x87\x19\x7c\xd1\x19\x00\xbf\x2d\x87\xa8\x8d\x5e\x80\x67\x0e\x70\x2b\x2c\xf2\xb3\x19\xf7\x90\x87\xe3\xb3\x5b\xaf\xcf\xa8\xf3\x3e\x69\xbe\xd9\x08\x6d\xe3\xae\xb5\xd0\x38\xc0\x28\x43\x2f\x80\x83\xbe\x12\x48\xc6\x52\x79\xdb\xcc\x9d\xae\x34\x0d\x3f\x83\xa5\x3b\x6d\xde\xb9\xab\x22\x4d\x5b\x77\x6e\x37\x3a\xeb\xd5\x87\xcb\xcb\xd9\xc7\xf1\xe5\x87\x8b\x4e\xb4\xd3\xe0\x67\xad\x6b\xe2\x46\x42\x6b\xe2\xf1\xd4\x4d\xb7\xc2\x12\xc2\x28\x3f\x6b\x34\x1c\x8a\x34\x2d\x23\xe1\x4e\xe5\x67\x6a\x07\x12\xa4\x10\xe5\xdf\xac\x1b\xeb\x5c\xb8\x72\xff\xf0\xb3\xcf\xa6\xf1\xcf\xf8\xed\x09\xf3\x93\x78\x0d\x78\xed\x84\x03\xdd\xbc\xae\x94\x7d\x79\xc0\x75\x40\x40\xde\xb6\xeb\x70\x6c\xac\xef\xfd\xae\xc7\x07\x09\xa0\x4a\x22\xb6\x10\xdd\x47\xb9\x1d\xb8\x76\x9f\xcb\xde\x4c\x27\xcb\x63\x54\xcd\xa1\xdd\x11\x22\x34\x03\xef\x8c\x07\x31\x9e\x4a\xb4\x2b\xcd\x98\x72\xd5\x3e\x26\x36\xa1\x6c\x84\x94\xcb\x65\xc1\x97\x22\x1b\x31\xdb\xf9\x54\xae\x93\xe5\x0a\xe0\xab\x88\x20\xd8\x59\x62\x3c\x4f\x1e\xab\xd4\x21\x98\x48\x46\x90\x2d\x23\x96\xc8\xa9\xa4\x39\xc9\xa5\x6f\x1e\x73\xcc\xfe\x7c\xe7\xa6\x83\xb4\x09\xd4\x10\x81\x4c\xcb\xa9\xc4\xcd\x45\x94\x4c\xeb\xe6\x01\xc5\x95\xe7\xd5\xa3\xcb\x81\x84\x04\x89\x98\x8c\x4c\x5f\x82\xc3\x69\x2a\x5d\xc9\x05\x6c\x6c\x89\xe4\x18\x33\x4f\x71\x48\xbb\xe5\x89\xdd\x0c\x7b\x27\x68\x6c\xcd\xa7\xfe\xe0\x37\xc0\x5c\xb8\xd9\x00\x46\x99\xba\x18\xeb\x69\x23\xf0\x40\x70\xb4\xd5\xe1\x41\x9d\x4d\xf3\x68\xec\xbc\xf0\x37\xad\x21\x7c\x55\xcc\xd3\x01\x43\xc2\xdf\x77\x0e\x0a\x45\x72\xf7\xa0\x7a\xf8\x78\x6f\x2b\x57\xcb\x1c\xd3\xae\x6e\xe7\x4a\xb5\xec\xcb\x11\xbd\xa5\xa5\x41\xd1\x07\xbb\x16\xa3\x88\xf2\x7d\xce\x4b\x8f\xe4\xf8\xea\x12\x59\xe9\xd3\x35\xa0\x34\xc9\xf6\x1a\x8e\xd7\x9f\x7a\x8f\xc8\x69\x08\xf4\xd8\x0d\x92\xb0\xf4\xce\x95\x04\x6c\x8b\x98\x24\x1f\x9d\xa5\x66\x49\x50\xbc\x98\xcb\x83\xbc\x29\xe6\xfc\x8f\xdc\x21\x1a\xf9\x9d\x1b\xc1\x20\xa3\x42\x67\x46\x5c\x92\xbc\x23\xa9\xad\x34\xe3\x53\x69\x21\x0d\xad\x38\x1e\xdb\x24\x04\xed\xfe\x14\x0b\x0e\x36\x08\x08\x06\x1a\x6b\xce\x94\x14\x56\x1a\x4e\xa5\xe5\xf3\x19\x31\x3e\xcf\x2c\x4d\x0e\x97\x5b\xc7\x5d\xe3\xe9\xe4\xb9\x64\x90\xdd\xb1\x5b\xe6\x55\xd4\x80\xd2\x3b\xff\x6f\xe6\x7f\xff\xfc\xb7\xff\x1f\x00\x00\xff\xff\x2a\xae\x43\x97\xb3\x27\x04\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x73\x23\x37\x96\x27\xfa\xff\x7c\x0a\x6c\xf5\x46\xd8\xd5\x43\x49\xb6\x7b\xa6\x6f\x8f\x26\x36\xee\xa5\x25\x56\x99\x6b\x95\xa4\x96\x28\x7b\x7c\x97\x13\x34\x98\x09\x92\x68\x25\x01\x36\x80\x94\x8a\xee\xe8\xef\xbe\x81\x83\x47\x22\x9f\xcc\x24\xa9\x57\x99\x33\x11\xed\x12\x33\x13\xcf\x83\x83\xf3\xfc\x9d\x7f\xfc\x0b\x42\xef\xe4\x23\x9e\xcf\x89\x78\x77\x8a\xde\x7d\x77\xfc\xcd\xbb\x9e\xfe\x8d\xb2\x19\x7f\x77\x8a\xf4\x73\x84\xde\x29\xaa\x12\xa2\x9f\xcf\x92\xb5\x22\x34\x4e\x4e\x24\x11\x0f\x34\x22\x27\x38\x5e\x52\x76\xbc\x12\x5c\x71\xf8\x10\xa1\x77\x0f\x44\x48\xca\x99\x7e\xdd\xfe\x13\x31\xae\x90\x24\xea\xdd\xbf\x20\xf4\x4f\x68\x5e\x46\x0b\xb2\x24\xf2\xdd\x29\xfa\x3f\xe6\xa3\x85\x52\x2b\xd7\x80\xfe\xb7\xd4\xef\xfe\x37\xbc\x1b\x71\x26\xd3\xdc\xcb\x78\xb5\x4a\x68\x84\x15\xe5\xec\xe4\x6f\x92\xb3\xec\xdd\x95\xe0\x71\x1a\xb5\x7c\x17\xab\x85\xcc\xe6\x78\x82\x57\xf4\xe4\xe1\xdb\x13\x1c\x29\xfa\x40\x26\x09\x4e\x59\xb4\x98\xac\x12\xcc\xe4\xc9\x3f\x68\xac\xe7\xf8\x37\x12\xa9\x7f\xc2\x1f\x31\x5f\x62\xca\xcc\xbf\x19\x5e\x92\x7f\xfa\x76\x10\x7a\x37\x27\x2a\xf8\x53\xcf\x36\x5d\x2e\xb1\x58\xeb\x15\xf9\x40\x54\xb4\x40\x6a\x41\x90\xe9\x07\xb9\x25\xe2\x33\x84\xd1\xa9\x20\xb3\xd3\x5f\x05\x99\x4d\xdc\x42\x1f\x9b\x05\xbe\x80\xd1\x5c\x27\x98\xfd\x7a\x6c\x97\x09\x5a\x8e\x89\x8c\x04\x5d\x29\xbb\xde\x37\x44\x09\x4a\x1e\x48\xd8\x81\x99\x08\xd2\x13\xf1\x9d\xc9\x15\x89\xe8\x8c\x92\x18\x4d\xd7\x88\xb2\x55\xaa\x90\x20\x7f\x4f\x89\x54\x68\x46\x13\x45\x84\xcc\xf5\xc2\x57\x44\xc0\x0a\x0e\x63\xdd\xcb\x47\xa2\xfa\xd0\x76\x36\xaa\xf0\x6d\x41\xe4\x8a\x33\x49\x64\x6e\x11\x10\x7a\xf7\xdd\x37\xdf\x14\x7e\x2a\xcf\xa0\x8f\x64\x1a\x45\x44\xca\x59\x9a\x20\xd7\x52\x38\x18\xb3\xa0\x9a\x7c\x70\xa9\x31\x84\xde\xfd\x4f\x41\x66\xba\x9d\x3f\x9c\xc4\x64\x46\x19\xd5\xed\x4a\x43\xa5\xc1\x68\x73\x5f\xfd\xf3\x5f\xaa\xfe\xfd\xcf\x60\x46\x2b\x2c\xf0\x92\xe8\x65\xf1\x74\x65\xfe\xaf\x30\x17\x4d\x09\xba\xf3\x8c\x5a\x8a\x03\x2f\xcc\xf6\x12\x2f\x89\xde\x79\xbd\x5d\xf6\x0b\xf8\xb7\x20\x92\xa7\x22\x22\x68\x4a\x12\xce\xe6\x12\x29\x5e\x5a\x03\x0a\x2d\x68\x22\x2e\x3e\xd1\x5b\x49\x05\xd1\x7b\xa5\x44\x4a\x0a\x4f\xd5\x7a\x05\x83\x94\x4a\x50\x36\x0f\x97\xe2\x9f\xbd\x56\x53\x33\xb4\xdf\x61\x66\xe6\x83\xda\x89\x8d\x59\xdf\xbd\x12\x61\x86\xa6\x04\xe9\x13\x4f\x63\x22\x48\x8c\xb0\x44\x18\xc9\x74\x2a\x89\x42\x8f\x54\x2d\x28\xd3\x7f\x1b\xf2\x8d\xdc\x9a\xbd\x9e\xb5\x81\x7f\x36\xaf\xcc\x9d\x24\x42\x0f\xfc\x81\xc6\x24\x46\x0f\x38\x49\x09\x9a\x71\x91\x5b\x9e\xe3\x31\x1b\x2d\xf4\x3a\x2c\xa7\x94\xc1\xc9\xd3\x6b\xe9\x28\xe4\x5f\xdd\x72\xfd\x2b\xd2\xfd\xa1\x94\xd1\xbf\xa7\x24\x59\x23\x1a\x13\xa6\xf4\xb9\x96\xc5\xd6\xfe\x95\x43\xff\x38\x41\x47\x48\xaf\x33\x11\x0a\xd6\x9b\x33\x45\x3e\x2b\x89\x8e\x50\x42\xef\x09\xfa\xea\x82\x4a\x85\xfa\xd7\xc3\xaf\x7a\xe8\xab\x8b\x8c\x71\xc8\xaf\x9e\x61\x85\xfd\xbf\xff\x3b\x38\x7a\x0a\xcf\x8b\x87\xee\x5d\x5f\x9f\xe6\x5b\x73\x01\x65\x2d\xfc\xf7\xbf\x84\xed\xd8\xfd\x6a\xe6\xea\x19\x4b\xb7\xfc\xbc\x2d\x17\x87\x65\xca\x33\x70\xa9\x77\x68\x57\xfe\x5d\xba\x1d\x2a\x98\xb7\xdc\x91\x7b\xeb\xb1\x17\xd9\xb7\x7c\x5b\xfc\x5b\x4f\xe1\xa9\x79\xf8\x2e\x0c\x1c\x2b\x38\x59\x98\x32\x73\x10\xfd\xb9\x14\x52\x9f\x45\x77\x42\x5e\x09\xdb\xda\x85\x9f\x07\x33\x0b\x58\xba\xe3\xd4\xc1\xaa\xbc\xc2\x79\x27\x74\x49\x37\xed\xef\x90\xc5\x5a\x78\xb4\x0c\x95\xa5\xcb\x29\x11\x7a\x19\x1c\x6b\x85\xd9\x4e\x35\xab\x55\xa9\x60\x24\x6e\x31\xcd\xbf\xa7\x44\xac\x1b\xe6\x39\xc3\x89\xac\x9b\x28\x65\x8a\x68\x49\xbd\xf0\x78\xc6\xc5\x12\x2b\xfb\xc2\x9f\xff\xad\xeb\x42\x28\x7e\x4f\x36\xed\xff\xd0\xec\x66\x84\x25\x90\xc1\x32\x4d\x14\x5d\x25\x04\xad\xf0\x9c\x48\xbb\x22\x69\xa2\x64\x0f\x5e\xd3\xda\x01\x11\x47\xfe\x96\x83\x1e\xdc\xed\x9e\x4a\xf8\x05\xcd\x3c\xb3\x63\xe4\xb3\x82\x96\xc6\x0c\xee\x77\x58\xa2\xf0\xd6\x7a\x82\xa5\xdc\x8e\x66\x24\x17\x6a\x32\x5d\x1f\xdf\x93\x52\xbf\xb5\x94\x83\x19\xc2\x4a\x09\x3a\x4d\x15\xd1\xf3\xd6\x6d\xb8\xfb\x19\xd8\xa3\x11\x02\xda\xb0\x86\x97\x9b\x70\x4c\x05\x89\x60\x6e\x5d\x0e\x8c\xff\x4a\xcf\x5b\x6b\x62\x6b\x33\xfb\x7b\xb2\x06\x99\xa7\x62\x05\xfc\x96\x8f\xd9\x98\xa1\x23\x74\x3e\xb8\x3d\x1b\x5c\x9e\x0f\x2f\x3f\x9e\xa2\xef\xd7\x28\x26\x33\x9c\x26\xaa\x87\x66\x94\x24\xb1\x44\x58\x10\x68\x92\xc4\x5a\xae\xd1\x83\x21\x2c\xa6\x6c\x8e\xb8\x88\x89\x78\xba\x65\x2c\x3c\x25\x2c\x5d\x16\xee\x15\xf8\x3d\x1b\x7d\xe1\x0b\x2d\xc6\xf8\x47\xb9\x27\xff\x5d\x5a\x60\x98\xb1\xee\x3b\x68\xed\xd9\x04\xa7\x68\x41\x93\x58\x10\x76\xa2\xb0\xbc\x9f\x90\xcf\x24\x4a\xcd\x9d\xfc\x8f\xfc\x0f\x13\x2d\xfd\xf2\x98\xe4\x7f\xc9\xfd\x91\x89\x5b\x9d\x3f\xf5\xfa\x76\xe7\x2f\x41\x3b\x6f\xf7\x1d\xfc\x42\xe3\xca\xb7\xe1\x97\x0d\x73\x70\xef\x34\x0c\xd6\xbd\x52\x3b\x2a\xf7\x82\x15\xf6\x2a\xdf\x11\x44\x89\xf5\x04\x2b\x45\x96\x2b\xd5\xd1\xf2\x80\x51\xa2\x65\xd7\x26\x59\xf5\x92\xc7\x64\xe0\xfa\xfb\xd5\x8a\xa0\x46\xd8\x34\x5c\x6b\x46\x04\x61\x11\xa9\x6f\x61\x84\xe5\x7d\xd6\xc2\x66\x81\x17\x68\x0c\xe9\xe5\x47\x19\x81\x95\x3a\xce\xc4\x5e\xbd\x24\xd9\x9b\x9b\x84\xdd\xdc\x7c\xe4\x07\x2e\xf4\xf0\xde\x82\xc0\x9b\x1b\xf8\x73\xc8\xbc\xdb\x9e\xe8\x2f\xce\xca\xb1\x25\x7f\x3a\xd8\x44\x76\x5f\xc9\xb6\x16\x14\x2e\x90\x5c\x4b\x45\x96\x1b\x6d\x29\x6f\x67\x21\xec\x05\xf4\x5a\x07\x5c\xb8\x03\x7f\x07\xa7\x3e\x7f\xa3\x1f\x8e\x77\x87\x25\xdb\x97\x25\xf4\xb5\xcf\xd3\x79\xbb\x9a\xa7\x7a\xeb\xb6\x2f\x70\xf7\xbc\x89\x69\xe6\x64\xcd\x7d\x0f\xf2\x89\xcc\x19\xb5\x7b\xe5\x56\x7b\x02\x03\xd8\xa0\xc8\xe6\x6d\xe9\xfe\xfc\xe9\x4f\x43\x0b\x90\x31\xf7\xa9\x05\x95\x81\x31\x0c\x45\x5c\x18\x59\x30\xb6\xe7\xdd\xe8\xb2\xfd\x51\xff\x76\x30\x3a\x45\x7d\x14\x63\x85\xf5\x01\x17\x64\x25\x88\x24\x4c\x81\x9d\x40\x7f\xaf\xd6\x68\xc9\x63\x92\x18\x8d\xf6\x83\x96\xac\xd1\x39\x56\xf8\x0c\x2b\x9c\xf0\xf9\x31\xea\xc3\x9f\xfa\x63\x2a\x11\x4e\x24\x47\xd8\x91\x15\x89\x5d\x13\x98\xc5\x8e\xb5\x60\x14\xf1\xe5\x8a\x26\xde\x8f\xe0\x8d\x37\x94\xc5\xf4\x81\xc6\x29\x4e\x10\x9f\x6a\xae\xa2\x35\xf0\xc1\x03\x61\x2a\xc5\x49\xb2\x46\x38\x49\x90\xed\xd6\xbd\x80\xe4\x82\xa7\x49\xac\xdb\x75\xa3\x94\x74\x49\x13\x2c\xb4\x8a\x6f\x46\x7b\x65\xdb\x42\xa3\x05\xf1\x63\x85\x71\xe9\xd5\x5c\xe2\x7b\x22\x11\x55\x68\xc5\xa5\xa4\xd3\x24\x3b\xf3\x77\x43\x04\xe3\x3e\xbb\x18\x82\xbd\x20\x52\x88\x1b\x1e\xea\x3a\xb7\xf6\x21\xd7\xe3\x12\x33\x46\xa0\x63\xae\x16\x44\xd8\xee\xed\xcb\x2f\xad\xfa\xdf\x5d\xde\x5e\x0f\xce\x86\x1f\x86\x83\xf3\xb2\xee\x3f\xea\xdf\xfe\x58\xfe\xf5\xe7\xab\x9b\x1f\x3f\x5c\x5c\xfd\x5c\x7e\x72\xd1\xbf\xbb\x3c\xfb\x61\x72\x7d\xd1\xbf\x2c\x3f\xb4\x64\xd5\xda\x8c\x10\x8e\xac\xe3\xd9\x3a\xd8\x4c\x9f\xca\x66\xda\xfb\x72\x8d\xa6\xd6\x29\xd5\xde\x60\xea\x6d\x14\xf6\x4b\xb4\xc2\x52\x1a\xc9\xc8\x8c\xe0\x78\xcc\x3e\x71\xa1\x19\xd8\x8c\x6b\x1e\xa1\xa5\x27\x25\xd2\x48\x51\x36\xf7\x1f\x9d\xa2\x71\xfa\xcd\x37\x7f\x8a\x2e\x28\xbb\x87\x7f\x91\xd7\xb8\x38\x07\x8b\xf2\xc1\xa2\xfc\xfb\xb2\x28\x6b\xd1\xe7\x24\x34\x24\xef\x37\xb8\x4a\x0b\x17\xe0\x13\xd7\xa2\x04\x4f\x95\xfe\xa7\xee\x12\xc8\xa3\x21\xc4\xaa\x9d\xc1\xd2\x47\x58\xd5\xf4\x21\xf8\x12\x04\xb9\xcf\x54\x02\x33\x7a\xe4\xe2\x7e\x96\xf0\xc7\x76\xe6\xca\x8f\x44\xf9\x61\x68\xc1\xe9\x2d\x58\x29\x7f\xb6\x33\xf4\x03\xff\x48\x94\x1e\xfb\x8d\xed\xe5\x10\x6c\x75\x08\xb6\x7a\xd9\x60\xab\x57\x65\x2a\x7c\x7a\xd6\x9a\xb7\x2b\x1a\xfe\x5a\xe3\x87\xab\x75\xb3\xd5\x78\xd1\x02\x27\xd9\xb3\xf0\xe4\xbc\x2b\x6a\x9f\x7c\x39\xef\x6c\xda\xc0\x93\x73\xc3\x78\x2b\x7c\x39\x37\xe8\xe7\xe7\xc9\xbf\x0b\x3f\xd1\xc1\x0d\xb4\xe5\x42\xbd\x49\xd6\xdd\xf2\x56\x7a\x36\x27\xce\xd3\x5f\x25\xa5\x98\x8f\x2e\x41\x1e\x1d\xa2\x3a\x5a\x87\x71\x6c\x88\xdb\xa8\x0c\xd4\xa8\x8a\xcc\x28\x87\x62\x54\xc6\x5e\xec\x16\x6c\xb1\xed\xad\xd7\x3e\x7c\xa2\xeb\xad\xd7\x3e\x70\xe2\x23\x51\xb9\x61\xbc\x95\x5b\x2f\x37\xe8\xe7\xbf\xf5\x7e\xa7\xf1\x12\x87\x00\x89\x27\x5c\xba\x2f\xfd\xae\x7c\xbd\x21\x10\xbf\x83\x98\x87\x43\x90\x43\xa7\x35\xfa\xb2\xa2\x1a\xbe\xd4\x30\x86\xb7\x19\xb7\x70\x08\x54\x38\x04\x2a\xbc\x84\x47\xe9\xed\x05\x2a\x3c\xa9\xe2\x4b\x34\x59\x49\xb0\xa2\x86\xca\xcd\xbb\x15\x97\xf5\xfa\x5e\xe8\xbc\xae\xd0\xeb\xa0\xcd\xbc\x35\x13\xa8\xf7\x57\xb4\xc0\x12\xf1\x28\x4a\x45\xc1\x45\x5b\x3c\xe5\x67\x82\x60\xa5\x8f\x48\xde\x70\x89\xa0\x65\x24\x48\xc4\x05\x38\x29\x31\x5a\x2d\xb0\x24\x48\x09\xcc\x24\xdd\xa4\xe5\x99\x56\x61\x5c\xba\x9d\xb7\xa0\xe0\x95\x17\xf1\xb9\xd4\xbb\x29\x8f\x4b\x07\xd2\x9c\xd5\xaa\x27\xcd\x37\xc9\xde\xa6\x0e\x69\xbf\x6d\x66\xfe\x84\x47\x45\xdf\x5a\x7b\x3e\x2a\x39\x35\x7e\xdb\xa3\x92\xb7\x76\xec\xe5\xa8\xc0\xb8\xde\xca\x51\x29\x2f\xe2\xef\xe6\xa8\x54\x4d\xfd\x35\x1c\x15\x17\x0e\xb0\xe7\xe3\x52\xf2\xc1\x6f\x7b\x64\xca\xe1\x0a\x7b\x39\x36\x7e\x7c\x6f\xe5\xe8\x54\x2f\xe8\xef\xe6\xf8\xd4\x4d\xff\x65\x8f\x90\xf7\x43\xb4\x3e\x3c\x23\x41\xe7\x73\x22\x8c\x66\x14\x69\x52\xdc\x0c\xb5\x94\x59\xde\xb7\x3b\x30\x9b\x4f\x83\xef\xe1\x2d\x9c\x04\x3f\x58\x33\xf6\xdf\xcd\x11\x28\xcd\xfb\x95\xd0\xfe\x89\xe6\xc4\x0f\x80\xd6\xd6\xee\x0c\xdc\x10\x20\x7c\xb8\x40\x56\x82\x3c\x50\x9e\xca\x64\x7d\x24\x52\x56\xc5\xed\xc1\x48\xf0\x48\x93\x04\x71\x96\xac\x91\x54\x58\x28\xf7\x98\xcd\x8d\x47\x49\x1f\xa6\x04\x4b\x85\xee\x19\x7f\x64\x68\x86\x69\x92\x0a\x82\x56\x9c\x32\x75\x3c\x66\x43\x86\x6e\xcc\x18\x41\xf3\xee\xa1\x54\xea\x23\x18\x61\xc6\xb8\x42\xd1\x02\xb3\x39\x41\x98\x39\xe8\x9a\x8c\x32\x10\x17\x28\x5d\xc5\xfa\x60\xe9\x2e\x0a\x36\xa6\xec\x80\x8d\xd9\x08\xac\x18\x12\x91\xcf\x4a\x90\x25\x49\xd6\xba\x0f\x4d\xfb\x8a\x23\xbb\x3e\x66\xa8\xd6\x20\x4e\x84\xe0\x42\x82\xce\x3e\x5d\xff\x86\x99\xa2\x8c\x20\x50\x33\xa5\x01\x3e\x3a\x42\x17\x5c\x42\x4c\xf6\x8f\x7f\x91\x28\x4a\x52\xa9\x88\xe8\xa1\x69\x3a\x97\x88\x32\xb4\x4a\xb0\x9a\x71\xb1\xd4\x23\xa4\x4c\x2a\x3c\xa5\x09\x55\xeb\x1e\x5a\xe2\x68\x61\xda\x82\x35\x90\xbd\x31\x8b\xf9\x23\x93\x4a\x10\xec\x7b\x77\x0f\xd1\xd7\xe1\x33\x43\x00\xf2\x7d\x0f\x0c\xf7\x74\xb9\x4a\xd6\xe1\xf0\x83\x44\x68\xd8\x13\xdd\x08\x89\xd1\x94\x44\x38\x95\xd6\xb0\xa3\xc4\x1a\x91\xcf\x0b\x9c\x4a\xd8\x3b\x3d\x3d\x6b\xf5\x88\xf8\x72\x95\x10\x45\x10\x9d\x21\x25\x28\x89\x11\x9e\x63\xaa\x97\xee\x96\x34\x24\x6e\x7b\xa2\xb7\x1b\x68\xa9\xfe\x57\xb0\x7c\x2c\xb9\x20\x28\x26\x0a\xd3\x44\x36\x3b\x25\x9f\x95\xe0\xd0\x93\xd3\x1b\x7a\xbd\xe4\x86\x5e\x35\xb5\x35\xdc\x84\x76\xc7\x0e\x57\xe1\x5b\xba\x0a\xf3\x5c\xe1\x55\xdc\x85\x06\x24\x62\x0f\x02\x21\xb3\x56\xf1\x08\x27\x3b\xca\x86\x37\x76\x50\x9d\xa5\x43\xf7\xe1\xe1\x50\xbc\xad\x43\x61\x76\xed\xf5\x9c\x8a\xba\x84\x8a\xbd\x23\xc5\x74\xc1\x78\x69\xc8\x88\x90\x68\x89\x95\xbe\xd8\xe6\xf6\x8a\x6e\x89\x62\x98\x81\xba\xbc\xa9\x83\xf2\x1c\x48\x2e\x5f\x76\xc4\xc2\x21\x52\xe1\x77\x88\x40\xfb\x6a\x12\x18\x0f\x39\xd0\x4f\x94\x03\x4d\xe5\x21\x07\xfa\x90\x03\xdd\x76\x81\x0e\x39\xd0\x87\x1c\xe8\x37\x9b\x03\xfd\xa4\xe9\xcf\xfb\x4b\x72\xde\x4f\x26\xf3\x9b\x92\xce\x0f\x92\xf9\x41\x32\x3f\xa4\x2b\xfb\xa9\xed\x8b\x0b\xba\xaf\xdf\xc5\x24\x21\x8a\xd4\x1b\xe8\x88\x58\x6a\x85\xc3\xdc\xf0\x94\x69\x51\x70\x2e\x88\x94\xbb\xf2\x34\xdf\x70\x58\x5e\xa1\xc2\x1f\x91\xa1\xcc\x7a\xb2\x04\xbb\x4e\x13\xb3\xf3\x6d\xbf\x4d\x96\xe7\x87\x7f\x80\x6c\x38\xf0\xc0\x03\x0f\xdc\x66\x6a\xaf\xc7\x1c\x1d\x1c\xe6\xe7\xb2\x47\x7b\xde\xbe\x4a\xeb\x85\xd3\x3b\xe3\x68\xcd\x18\xad\xa1\x70\xc8\x4a\xe5\xfe\x70\x5b\x3a\xdf\x91\xd7\x77\xe9\xab\x89\xaf\x9b\x76\xde\x26\x53\x37\x63\x3f\x70\xf4\x03\x47\x3f\x70\xf4\xb7\xcd\xd1\xdd\x49\x7e\x51\xf7\x62\x50\x38\x6d\x42\xe3\x5d\x6a\xa7\xb5\xaf\x43\x81\x97\x24\x1e\x40\x96\x98\xcf\x71\x13\xbf\xea\x4f\xc2\xaa\x68\x2e\x1f\xac\xbd\x03\x32\xfc\x3a\x5b\xf5\x5c\x29\xab\xed\xfc\x91\x59\x81\xb2\x61\xfc\x26\x5c\x92\x95\x2b\xfc\x85\x14\x57\x7b\x1d\x5c\xe4\xd9\x6b\xab\xbd\x8e\x69\x1f\x5c\x64\x87\xd2\x6a\x07\x27\x50\xcb\x09\x1f\x9c\x40\xaf\xd7\x09\xd4\x62\x1b\x9f\xc4\xb3\xfb\xcc\xc7\xf3\xb9\x44\xc7\xf6\x99\x3b\x2e\xc1\x86\xc5\x28\x5d\x25\x1c\xc7\x2d\xab\xa3\x07\x12\x5d\x8b\xf4\x1d\x16\x23\x41\xe6\x54\x2a\x22\xf4\xbe\x54\x0a\x86\x9b\xf3\x79\xde\x6a\x19\xf4\xd6\x11\x9b\x61\xb7\xef\xfe\xad\xc5\xf0\x6f\xec\x9d\x0d\x9c\x68\x8a\x63\x5f\x9f\x18\xc4\xb7\x25\x5e\xa3\x05\x7e\x20\x2e\xca\xfc\x01\x27\x34\xc6\xc5\xb5\x2e\xcc\xb0\x69\x40\xff\xd1\x6d\x40\x38\x3f\x1c\x5f\xd0\x4e\xe6\xa3\x80\x2d\x40\x05\xbc\xb3\xd0\x5a\x79\x22\x08\x8e\xd7\x68\x4a\x08\xf3\x64\x53\x71\x9f\xd4\x8c\x79\x2f\x82\xf3\x8b\x6b\xa5\x65\xea\x79\x2d\x6a\xe9\x33\xc6\xbd\x56\xf3\x9b\xdd\x75\xd0\xdd\x15\x4f\xf9\xdd\xdb\x62\x41\x87\x58\xd8\x83\x6d\xf2\xe5\x6d\x93\x87\x58\xd8\x83\xa2\xff\xca\x14\xfd\x43\x2c\xec\x21\x16\xf6\x60\x06\x69\x9e\xf6\xc1\x0c\xf2\x45\xc4\xc2\xb6\x92\xe1\xb7\x8c\x86\x7d\xe3\xd2\xfc\x41\x98\x77\xef\x1d\x84\xf9\x83\x30\xff\x85\x0a\xf3\xaf\x63\x85\x0f\x92\xfc\x41\x92\x3f\x48\xf2\x07\x49\xfe\x20\xc9\xef\x7d\x19\x0f\x92\x7c\xb5\x24\x0f\xff\x72\xc5\x76\xba\x8a\xf5\x1d\xc5\xf9\xce\xe9\x6e\xdd\x9d\x81\x1f\x89\x7a\xab\x9e\xc0\x83\xd4\x7e\x90\xda\x5f\xb7\xd4\xfe\x6a\x26\xf4\xe5\x15\xca\x38\x94\x9a\x38\x94\x9a\x38\x94\x9a\x78\xe2\x52\x13\xee\xeb\x16\x39\x52\xf6\x70\x29\xac\x52\x69\xb0\x8a\xb3\x60\x93\x56\x62\x4f\x8b\xd4\xa8\x42\x0f\x9b\xe5\x1e\xd4\x57\x68\xc9\xb5\xee\xc6\x48\xee\x1d\xc7\xe0\x4c\x60\xcd\x9c\x3e\x10\x86\x5c\x72\x40\xcf\x5e\x63\x3d\x30\xa6\xfc\xd3\x1f\x3e\x93\x7c\x8b\x15\xc2\x48\xd1\x25\x39\x46\xc3\x99\xe1\x16\x91\x3e\x5d\x92\x28\x59\x88\xc6\x32\x94\x0f\x1f\xb1\x38\x1b\xab\xeb\x9b\x66\xc1\x39\xe6\xb5\x9e\x63\xb6\x69\xa2\x0c\xeb\x75\x8d\x03\xd2\xe8\xd4\x73\x28\x38\x68\x4b\x22\x12\xf7\x65\xae\x5b\xf7\xf2\x12\xc7\x9a\x31\x04\x43\xc8\xb2\x84\xc3\xf7\xe1\x4e\xa7\xd2\x87\x17\xe5\xbe\x37\x5f\x03\x5c\x29\xc0\x8b\x02\xac\x7a\xab\x61\x2c\x20\xfa\x4d\x8b\x78\x71\x9a\x10\x84\xa5\xe4\x11\xc5\xa0\xc6\x18\x19\x00\x51\xe5\x2c\x0d\xee\x25\xd7\x75\x4c\x25\x9e\x26\x24\xb6\x6b\x4c\xb2\x68\xa7\xc6\x91\x53\x89\xa6\x44\x2f\xb1\x66\x53\xf9\xd5\x5f\x18\x09\xa4\x62\x34\xc1\x50\x48\x79\x24\x84\x99\x81\x34\x48\xd0\x86\x38\xdf\xaa\x10\x7d\xc8\xb8\xf3\x4f\x0f\x22\xf5\x41\xa4\xfe\x9d\x8a\xd4\xaf\x28\x42\xf3\x55\x24\x0e\x82\x0f\x54\x73\xfe\x89\x37\x6c\xca\xb6\xb6\x9e\x0b\x2a\x95\x44\x51\x2a\x15\x5f\xd6\x4b\x3e\x9f\x5c\x0f\x7d\xdf\xc1\x19\x67\x33\x3a\x4f\xcd\xdd\xf2\xab\x95\x4d\xfc\x89\xce\xd4\x94\xf5\x8a\xb4\x33\x0c\x79\xbb\xf5\xa6\xce\x2a\xf3\x11\x2b\x9c\xbc\x15\xed\xbc\x89\xdb\xae\x7a\xe8\xcf\x75\xe9\x75\x51\x56\x33\xfb\xb8\xd5\x34\xb5\x7e\x31\xb9\x19\xdc\x5e\xdd\xdd\x9c\x0d\x4e\x51\x7f\xb5\x4a\xa8\x71\x59\x19\x0a\xa3\xbf\xe9\x49\x99\xaa\x51\x9e\x44\xac\x40\x64\xc0\xdc\xc1\x47\xa6\xf5\x41\x74\x84\xce\x2e\xee\x6e\x47\x83\x9b\x9a\x06\x2d\x49\x00\xe2\x00\x59\xae\x12\x90\x8f\xee\xd3\x29\x11\x8c\x68\x09\xdf\x42\xbe\x67\x9e\x33\xd3\xe8\xe0\xbf\x06\x67\x77\xa3\xe1\xd5\xe5\xe4\xaf\x77\x83\xbb\xc1\x29\x72\xb4\xa5\x9b\xd5\xe3\xd2\xa3\x88\xd7\x0c\x2f\xb5\xd6\x9d\x2f\x6f\xf5\xf7\x94\xa4\x20\x8e\xd1\x39\x5b\x12\xa8\xc4\x90\x6b\xd1\x0d\xf8\xa2\xff\xfd\xe0\x22\xdf\xf2\x82\x84\x38\xf4\x28\xc1\x53\x92\x58\x57\x1e\x78\xa7\xf4\xf9\x09\x10\xfb\x8d\x8f\x2f\x35\xab\xfa\xd7\xbb\xfe\xc5\x70\xf4\xcb\xe4\xea\xc3\xe4\x76\x70\xf3\xd3\xf0\x6c\x30\xb1\x9a\xd4\x59\x5f\xf7\x9b\xeb\xc9\x2a\x5c\xe8\xef\x29\x4e\xb4\x46\xce\x67\x0e\x99\x1e\x3d\x2e\x08\x43\x29\x03\x8a\x33\x6a\x3e\x68\x25\x21\x2c\x8f\x99\xd1\xf5\xc5\xdd\xc7\xe1\xe5\xe4\xea\xa7\xc1\xcd\xcd\xf0\x7c\x70\x8a\x6e\x49\x02\x8a\xb0\x5b\x74\xd8\xc5\x55\x92\xce\x29\x43\x74\xb9\x4a\x88\x5e\x0d\x6c\x71\x20\x16\xf8\x81\x72\x91\xd3\x56\x60\x1d\x81\x15\x40\xfb\x4e\xe1\x9c\x04\x4b\x77\x75\xf9\x61\xf8\xf1\x14\xf5\xe3\xd8\xcf\x41\x42\x1b\x39\xca\x71\x68\x42\x47\x25\x34\xa1\x08\x9b\x80\x10\x28\xd0\xfe\x40\x84\xa0\x31\x29\xd0\x51\xff\xf6\x76\xf8\xf1\xf2\xd3\xe0\x72\x04\x2b\xa6\x04\x4f\x24\x5a\xf0\x47\xf0\x02\xc1\x0c\xc1\x39\xf4\x80\x69\x02\x9d\xb9\xcd\xe2\x0c\x3d\x2e\x28\x78\x0e\xa1\x42\x81\xef\xd9\xd8\x24\x44\x5a\x4e\xaa\x78\x6e\xad\x3f\x77\xf0\xca\xaa\x7a\xf1\x24\x95\xdf\x28\x1c\x8b\xa6\x17\x72\x54\x5e\x7e\x71\x13\xb5\x96\xbf\x28\x90\x5b\xbd\x81\xa2\x44\x2f\xf5\x33\xcd\xf6\xba\xb5\x7d\x22\xbf\x86\xcf\x76\x7b\x6b\xc6\x1b\x4f\x9c\x9d\xea\xe4\x1f\x39\x06\xfc\xcf\x3d\x46\x6b\x99\x04\x9d\x46\xec\xc2\x20\x5b\xfd\x57\x7b\xcd\xb6\xbc\xbc\x83\x2f\xab\x3e\x2c\xfb\x71\x82\x0f\xde\xc2\xad\x1c\x0e\xf7\x15\xdd\xc0\x37\xa1\x9c\xe5\xc4\xf5\x25\x51\x38\xc6\x0a\x6b\xbe\x36\x27\xea\x18\x5d\x31\x78\x36\xc2\xf2\xbe\x87\x5c\xe1\x31\xc4\x05\xca\x04\xd9\x67\x48\x70\x7f\x23\x06\xcc\xee\xca\xd5\xc1\x48\x70\x30\x12\x54\xaf\xcc\x21\x5a\xae\x66\x85\xf7\x75\xa3\x76\xb2\xf9\xef\xef\xe2\x0b\x4c\xfc\x2e\xf0\xa5\x60\xa3\xcd\xdd\x88\x1b\xed\xb1\x6f\xf7\x32\x7c\x5e\x8b\xec\x5e\xaf\x46\x53\x97\xec\x70\xef\x99\xff\x3b\xdc\x7b\x87\x7b\xef\x70\xef\xbd\x82\x15\x7e\x71\xeb\x76\x05\x77\x7f\x51\xf3\xf6\x26\x05\x79\x6b\x98\xbc\x4c\x21\xee\x02\x94\xf7\x6b\x1b\x3c\xbc\x0a\xb3\x76\x59\x43\x96\x48\x2e\xb0\x30\x05\xbf\x23\xbe\x5c\x72\x96\xb7\x9b\xf7\x90\x77\xf2\x83\x51\x72\x23\x98\xaa\xa6\xec\xac\x1b\xfa\x36\xec\xdd\xc1\xba\x3c\x47\x76\xd3\x5e\x45\x08\x93\x36\x70\xd0\xaf\x9f\x50\xce\x38\xe0\x18\xee\x15\xc7\xf0\x75\xcc\xf5\x49\x32\xa1\xf6\x6f\x83\x7f\x1b\xd9\x4f\x07\xc0\xc2\x43\x7e\xcf\x21\xbf\x07\x7e\x3f\x00\x16\xee\x8f\x5a\x9f\x56\xa6\xe7\x31\x99\x14\x2a\x74\xf9\x3f\x27\x45\x97\x57\xee\x49\xe8\xff\xca\x3d\xc8\x12\x9e\xa0\x75\x1a\xef\xb3\xaa\xd7\x25\x8f\xc9\x0e\x95\xbd\xf4\x88\x5a\x57\xf5\xca\xf5\xf5\xca\x45\x78\xb7\x4c\x46\x94\xcf\x0d\xfc\x89\x05\xf9\x1a\x8a\xf9\x12\xad\x51\x15\xf4\x7f\x30\x4d\x6d\x5c\xa8\x2f\xb5\x6c\x42\xc6\xe0\xde\x90\xa3\xa6\xdd\x2d\xe0\xc2\x7b\x26\x35\x77\x41\xf5\x73\x7f\x23\x54\x3f\x7e\x1a\x48\x9b\xf6\x17\x42\x01\xc9\x26\x7f\x15\x6c\x8b\x60\x93\xeb\xfe\x6d\xd8\x79\xc2\x11\x3f\x87\xa5\xa7\x91\x98\xbe\xb8\x6b\xa2\xe9\x68\x1c\x2e\x8b\x96\xcb\xf5\xa5\x5e\x19\x07\xe4\x99\x26\xdb\xcb\x01\xda\xe5\x60\xfa\x79\x3d\x13\x3e\x98\x7e\xde\xb4\xe9\xc7\x38\xaa\x27\x2b\x2c\x08\x53\x15\x32\x7a\xf1\x3a\x81\xd7\xc3\x1c\x7e\x27\x75\x40\x03\x46\x5a\xb4\x17\xb2\xbf\xaa\xbe\x2c\x5b\x90\x15\x0c\x26\x46\xae\x08\x72\x98\x4e\xfe\x91\xfd\x3b\x50\x02\x82\x1f\x2b\x1c\xbe\x4d\x81\x60\x06\x4f\x5f\xea\xeb\x3b\xb5\x31\x61\xfb\xca\x7c\x72\x42\x62\x8d\xa3\xb6\x3e\x7e\xcc\xa5\x37\x90\x38\x13\xb8\xb2\x19\x56\xc4\x95\xd9\x9e\x8e\x9c\x18\x96\xc5\x4f\x6c\x0c\x33\xbb\x36\x9f\x9e\xc3\x97\x6f\x2b\x2b\xaa\x66\xe8\xcf\x1b\x7e\x56\x26\xc7\x76\xa7\xdb\x11\x07\x35\x79\x3e\x41\x32\x89\x16\x95\xf9\x2c\xdc\x70\x97\xcb\x8d\x21\xd5\xa9\xee\x7a\x7a\x6e\x01\xb2\x74\xe6\xda\x4d\xdc\xd2\xe8\xdb\x9d\xf7\x8b\x07\xe3\x6c\xa0\xfb\x17\x0d\xcc\x69\x60\xdc\xbb\x95\xae\x7c\x31\xbe\xec\x6d\xf7\xcf\xc7\x99\x3f\x12\xf5\xe5\xb1\xe5\x8f\x44\x3d\x17\x4f\xde\x96\x11\x37\x32\xa3\xac\x5e\xd1\x1b\x8d\x13\x29\xf1\xdf\x37\x3b\xdd\x2e\xf1\x5a\x3f\x9b\x49\xda\x60\x2d\x9f\x16\x1f\x4e\x55\x71\x6b\xc0\xc8\xe9\x80\x87\xf4\xe5\x43\xfa\xf2\x21\x7d\xb9\x78\xd4\x0f\xe9\xcb\x87\xf4\xe5\xca\x64\xab\x98\x24\x44\x91\x5a\x19\xee\x1c\x1e\xbf\x94\x0c\x67\x7a\x7f\x46\x09\xce\x74\xf8\xe5\x09\x71\x66\x5e\x07\x39\xee\x20\xc7\xed\x63\xba\xaf\x55\x93\x76\x54\xfe\x1a\x34\xe9\xd6\xa8\x4d\x59\xc0\xda\xc6\x38\x05\x3b\xed\x5f\x37\x06\x28\x04\x08\x98\x6e\x38\x9b\x82\x10\xae\xdd\xb0\xdf\x0e\x93\x93\x4f\xcd\xc7\x76\x71\xb5\xba\x75\xff\x62\x3d\xad\x87\x1a\x1f\x95\x6b\x75\x70\x04\x37\x2c\xce\xc1\x11\x7c\x70\x04\xbf\x3a\x47\xf0\xde\x55\xaa\xc6\x4a\xfd\x37\xf6\x6a\x6e\x8c\x50\x77\x17\xbd\xd1\x65\x34\x29\x18\x5c\xf2\x98\xac\x12\xbe\x06\x7b\x4f\xa3\xe5\xdb\xd7\xe8\xaf\x08\xd4\x2a\x5e\xfe\xee\xed\xeb\x92\xd0\xfe\xda\xef\x7f\x37\xf2\xe7\x52\x6b\x5e\x8b\xd8\x9b\xcd\xfb\x55\x08\xba\x27\xff\x28\xa4\x67\xb4\xc2\x6f\x09\x12\x2a\x36\x1f\x83\x31\xab\x7e\x12\x94\x12\xb0\xb7\xe6\x34\x55\x41\xec\xa3\xd4\x07\x60\x45\x84\x5a\x07\x6f\x92\xe5\x4a\xad\xff\x73\xcc\x68\x86\x38\x4e\xe7\x8c\x0b\xc3\x03\xf5\xc7\x0b\xcc\xe2\x44\x9f\x1f\xe9\xdb\x89\x30\x63\x5c\x81\x70\x02\x33\x88\xd1\x03\xc5\x46\x94\xe9\x5f\x0f\x5b\xc4\x07\xb4\x3a\x8b\x39\xd7\xfe\x1b\x3a\x89\xcf\x8d\xe5\xbd\xe1\x16\xfd\x98\xf0\x29\x54\x9f\x48\xf3\x26\x06\xdd\xc0\xc1\x19\x9d\xdb\xb9\x97\x62\x1e\x0a\xcb\xfb\x62\xd2\x58\x3e\x85\x60\xd2\x98\x46\xb6\xe1\xdd\x1c\xb0\x62\xf3\xab\x85\x54\xb3\xfc\x33\x9b\x7c\x06\x8f\x61\xc8\xc5\x71\xb8\x1f\xc3\x0e\xdd\x6f\x59\xcb\xee\x17\x57\xbd\x0b\x7e\x14\x44\x89\xf5\x04\x2b\xa5\x19\xd2\x3e\xf3\xdb\x46\x58\xde\xef\x90\xdf\x96\xf7\x34\x6d\xc8\x6f\xcb\xf5\xf5\xca\x39\x56\x2e\xbf\x2d\x3f\xf0\x27\xe7\x58\x2d\x89\xfb\x8b\x4b\x65\x68\x7b\x54\x0f\x69\x0d\x5b\x2c\xdd\x97\x9a\xe2\xd0\xc4\x8b\x5f\xcd\x08\x0b\xd7\xc1\x97\x78\x72\xf3\x97\xdb\xe1\x88\x36\xad\xd1\x17\x57\x66\xa4\x20\xb3\x6c\x98\xdb\x1b\x29\x37\x52\x14\xbb\xf6\x3d\xaa\xa7\xb1\xbf\x07\xbb\x71\xa8\x3f\x78\xa8\x3f\x78\xa8\x3f\xf8\xe4\xf5\x07\xdb\xe9\xac\xad\x15\xd6\xb6\xda\x6a\x3b\x55\xb5\x5e\x4f\x7d\x02\x9f\x73\x7b\x65\xb2\x90\x1b\x9f\x57\x23\xb7\xcd\x8d\xcf\x75\xff\x26\x9c\xd3\xb9\x11\x3f\x47\x6e\xfc\xef\x54\xb3\x3c\xa8\x95\x4f\xb2\x6e\x5f\xaa\x4e\xf9\xca\x15\xca\x43\x56\xff\x01\x51\xf1\x10\x6a\xb2\xc7\xc5\x39\x84\x9a\x1c\x42\x4d\xbe\xd8\x50\x93\x7a\xf5\x84\xc6\x3b\x67\x6c\x76\xc4\x50\xf7\x56\x06\xf1\x2b\x88\x52\x5a\xec\x6f\x81\xaa\x5e\xa5\x2d\x64\xb2\x74\x0e\x05\x79\x7b\xcd\x61\x18\xbf\x09\x95\xa1\x72\x35\x9f\x43\x75\x38\x00\x72\xef\x15\x90\xfb\xd5\x4d\xfb\x20\x55\x1e\xa4\xca\x83\xe0\xd4\x72\xc2\x07\xc1\xe9\xf5\x0a\x4e\x2f\xa5\x0d\x7d\x49\xd8\x4c\x5a\xc4\xca\x65\x25\x35\xc6\x29\x1b\x7c\x25\x70\x66\xa4\xab\x84\xe3\x78\x53\xc4\xd1\xaf\x81\xf8\xd6\x20\xf7\x05\xed\x8a\x2c\x4e\xb9\x20\xfe\x35\xc9\x76\xa6\x01\xdd\xe3\x5b\x10\xed\xf4\x38\xcd\x88\x5b\x44\x47\x86\x1d\xbe\xfb\xb7\x16\x03\xbf\xb1\x77\x32\x70\x9a\x29\x8e\x1d\x80\x81\x11\xcf\x96\x78\x8d\x16\xf8\x81\xa0\x19\xa6\x89\xb1\xcf\xd1\x18\x17\xd7\xb7\x30\xb7\xa6\x01\xfd\x47\xb7\x01\xe1\xfc\x70\xb2\x8c\x46\x7d\x5f\x18\xa9\x2a\xc2\x89\x73\xf7\xc1\x3b\x0b\x2c\x11\x4e\x04\xc1\xf1\x1a\x4d\x09\x61\x41\x26\x5b\xdb\x31\xef\x45\x30\x7e\xf1\xf0\xcc\x90\x6e\x5e\x34\xca\x1b\xb8\x46\x6d\xe5\xea\xbd\x2b\x96\x45\x4e\xb2\x83\x0e\xb9\x8b\xe2\x28\xbf\x7b\x2b\xcc\xe5\x39\xd4\xc4\x2f\xd8\x8b\x74\xf0\x14\xfd\x3e\xeb\x43\xbe\x1a\xed\xe3\xa0\xa2\x1f\x92\x8c\x0f\x9e\x9f\x83\x01\xe3\x60\xc0\xd8\xfb\x32\xbe\x26\x03\xc6\x0b\xca\xe8\x26\xb7\xe9\x49\x0a\xa7\xbc\x16\x69\xfd\x20\xac\x1f\x84\xf5\x83\xb0\xfe\xc5\x0a\xeb\xaf\x63\x85\x0f\x92\xfa\x41\x52\x3f\x48\xea\x07\x49\xfd\x20\xa9\xef\x7d\x19\x0f\x92\x7a\x41\x52\x87\x7f\x39\xb4\x80\xae\x62\x7b\x6b\x71\x7d\x3b\x68\x80\x76\x6e\x3a\x8b\x0d\xf0\x56\x24\xf3\x83\x54\x7e\x90\xca\x5f\xb7\x54\xfe\x6a\x26\xf4\xe5\x25\x04\x1f\x52\x6a\x0f\x29\xb5\x87\x94\xda\x97\x48\xa9\x75\xbc\xa4\x49\xc2\x69\xaa\xeb\xf3\x93\x65\x2e\x5f\x53\x16\x25\x29\x88\xaa\xfa\xe7\xef\x53\x9a\xc4\x08\x54\x24\xad\xe9\x52\xce\xde\x03\x3d\x01\x29\xc0\x38\x5d\x25\x8a\x66\x09\xe6\xa7\x12\xab\x7b\xb5\x42\x4c\x36\xda\x6d\x61\xd8\xf6\xb5\xa7\xbe\x1c\xef\x16\xd5\xff\x72\xbf\xb9\x86\x5e\x51\x4d\xc0\x9e\x13\x4b\x34\x47\x72\xe3\x7b\xe2\xea\x80\x95\x7d\x76\xaa\x15\xf8\xb3\xfd\xe8\x6d\x95\x32\x28\x8f\xfa\x50\x21\x10\x05\xbb\x76\xa8\x10\xf8\x84\xf3\x76\xe7\x6c\xc3\xcc\x1d\x8d\x1a\x5b\xf8\x1b\x9d\xf6\x8b\x07\x3b\xd6\x9f\xf4\x17\x0d\x7d\xac\xbc\xc8\x4a\xb9\x75\x27\xff\xa8\xbc\xa7\x5e\xa0\x30\x62\xe7\xcb\x69\x2f\x25\x12\x77\xb9\x9e\x3e\x12\xf5\xa5\xdc\x4d\x87\x32\x89\x87\xf2\x3a\x7b\x9a\xee\x56\x77\xcf\x9b\x9d\xed\xa1\x28\xe4\xa1\x28\xe4\xa1\x28\xe4\xa1\x28\xe4\xa1\x28\x24\xfa\x9d\x17\x85\xec\x2c\xbf\xee\xa1\x3c\xe4\x2e\xd2\xab\xe9\xfe\x4b\x11\x60\x0f\x25\x22\x0f\x32\xec\xfe\xa6\xfb\xfb\x92\x61\x5f\xa1\x05\xe5\x55\xd4\xc2\xf4\x16\x94\x17\x87\x25\xf2\xac\xbd\x35\x34\x51\x18\xf7\xe2\xbf\xde\x2b\x42\x91\xdb\xb4\x03\x4a\x91\xfd\xbf\x03\x4a\xd1\x01\xa5\xa8\x66\xd6\x87\xc0\xea\x03\x4a\x11\x3a\x84\x0e\x1f\x42\x87\x5f\x73\xe8\x70\x8b\x6d\x3c\xa0\x14\xb5\x14\x19\x9f\x08\xa9\xc8\xc9\x5c\x3b\xa1\x15\x55\x88\x83\x9b\x11\x8b\x7e\x2e\x6b\x44\xaf\x56\xd4\x73\x63\x3d\x20\x17\x1d\x90\x8b\x76\xa5\x9d\x57\xa1\x80\x3e\x23\x82\x51\x15\x87\xe9\x92\x17\x5d\xc1\x5c\x76\x55\x30\xdf\x06\x9a\x91\x1b\xed\x21\x49\xfa\x90\x8e\xf1\xfa\xd3\x31\x5e\x5d\x92\xf4\xab\xd1\x54\x0e\xea\xfc\x21\x4f\xfa\x90\x27\x7d\x30\x76\x1c\x8c\x1d\x7b\x5f\xc6\xd7\x64\xec\x78\x61\xb9\xfd\x09\x51\x8d\x5e\xa3\x04\x7f\x10\xe0\xcd\x7b\x07\x01\xfe\x20\xc0\x7f\xa1\x02\xfc\xeb\x58\xe1\x83\xf4\x7e\x90\xde\x0f\xd2\xfb\x41\x7a\x3f\x48\xef\x7b\x5f\xc6\x83\xf4\xfe\x6c\x48\x47\x55\x22\x7c\x67\xb4\xa3\x8e\x6e\xbe\x20\x99\xed\x2d\x49\xeb\x07\x49\xfd\x20\xa9\xbf\x6e\x49\xfd\xd5\x4c\xe8\x80\x7c\x74\x40\x3e\x3a\x20\x1f\x1d\x90\x8f\xb6\x92\x91\xfe\xc5\x1e\xcb\x77\xc1\x4d\xec\xaf\xec\x77\xdf\x27\x7c\x3a\x5a\xaf\x88\xfe\xef\x39\x5d\x12\x26\x41\xa2\xa5\x6a\x1d\xca\x44\x35\x2b\x5f\x5e\xf3\x77\xb7\xc3\xcb\x8f\x17\x61\xaa\xda\xbb\x4f\x77\x17\xa3\xe1\x75\xff\xc6\xaf\x8b\x9f\x55\xb8\x16\xf6\xbb\x9c\x58\x67\x49\xfe\x86\x68\xfd\x15\x4e\xcd\xad\xc2\x2a\x95\xdb\x8d\xec\x66\x70\x3b\xb8\xf9\x09\x52\xed\x26\xe7\xc3\xdb\xfe\xf7\x17\x39\x82\xc8\x3d\xef\x9f\xfd\xf5\x6e\x78\x53\xff\x7c\xf0\x5f\xc3\xdb\xd1\x6d\xdd\xd3\x9b\xc1\xc5\xa0\x7f\x5b\xff\xf5\x87\xfe\xf0\xe2\xee\x66\xd0\xb8\x1e\x8d\xa3\x6d\x56\x64\x24\x2c\x12\x64\xb1\xa0\xc8\x72\x0d\x91\xad\x21\xf2\xe2\xa3\x63\x87\x55\x7d\x9d\xa2\x3b\x6b\x17\xa0\xb6\x71\x17\x92\xe4\x1b\x32\x0a\x4d\x4c\x25\x9e\x26\x24\x2e\xb5\xe4\xd6\xb0\xae\x25\x9c\x1b\xd4\xa3\xd6\xc0\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x04\x60\x45\x58\x5c\xd1\x87\xd9\x87\xda\x1e\x98\xe6\x5d\xf4\x81\xe4\x7a\x8a\x52\x21\x08\x53\xc9\xda\x08\xdc\xb2\xd4\xa8\xdb\xbe\xba\x66\xed\x9d\xea\x1b\x5c\x60\x69\x22\xaf\x72\xe3\x17\x24\x21\x58\x56\x8c\xd9\xee\x7e\xbb\x65\xf1\x7b\x65\x2d\x3a\xe6\x32\x9a\x61\x9a\xa4\x82\x14\x4e\x0b\x67\x7f\x4b\x19\x68\xb0\x83\xcf\xfa\x32\xd3\x27\xf9\x82\xcf\x69\x84\x93\x2b\x68\x86\x8b\xed\x4e\x4e\xff\x32\x47\xca\x57\x37\x8d\x94\x1b\xbe\x5d\x24\xd4\x23\xd4\xbf\x3c\x87\x24\x63\x37\xd4\xec\x55\x45\x55\x02\x03\xba\x24\x52\xcf\x33\xe2\x2c\xb6\x2e\x10\x7d\x81\xad\x03\xb9\xf4\x6f\x1c\x12\xb5\x53\xa9\xb5\xa5\xfe\xe5\x39\x3a\x41\x57\x37\x63\x76\xa5\xd5\x68\x4d\xf7\x44\x0b\x74\x66\xd9\xa8\x44\x8c\x2b\x44\x97\x2b\x2e\x14\x66\x4a\xcb\xb2\x70\x93\xd9\x15\x31\x44\x7c\xc6\x97\xcb\x54\x61\x4d\x2b\xa5\x45\x65\xc6\x2a\x70\x4b\xd4\x30\x06\x0f\x43\xc5\x1a\x9a\xab\x2e\x9b\xcb\x4a\xe8\xf6\xf5\x35\x9b\x57\x25\x69\x5c\xd2\xc6\x5c\x13\x58\x08\x9c\xbf\x10\xdf\x51\x45\x96\xc5\xf7\x5b\x46\xc8\xfe\xb3\x52\x4f\x3e\x33\x19\x29\x44\xf4\x45\xb4\xa0\x8a\x44\x4a\x53\xd1\x56\x34\x71\x77\xf9\xe3\xe5\xd5\xcf\xe1\x25\xf8\xae\xff\xe9\xfc\xcf\xff\x96\xfb\xe1\xe6\x53\xe9\x87\xc9\x4f\x7f\x2e\xfd\xf2\xff\x34\xd2\x53\xb1\xa7\x92\xaa\x1a\xcc\xe5\x08\xa4\x42\x30\x8d\xba\xa9\x22\xba\xc4\x73\x82\x64\xba\xd2\x14\x20\x8f\xf3\xfb\xab\xa5\xa2\x0b\x8e\x63\xca\xe6\x26\x43\xf8\x82\x2a\x22\x70\xf2\x09\xaf\x3e\x38\x33\xee\x16\xab\xf3\xbf\x6f\x73\xf9\xdc\xef\x7e\xe9\x7f\x0a\x33\xc2\xdf\x5d\xdf\x5c\x8d\xae\x1a\x67\x9d\x6b\xa1\x7c\x8c\xf4\xe3\x53\xf8\x5f\x74\x82\x74\xeb\x5e\x78\x5b\x12\x85\xb5\x50\x8b\xbe\x36\x59\x8d\x3e\x0b\x89\xb2\x04\x4e\xcd\x4a\xd0\x25\x05\xae\x68\x0c\x59\xef\x8d\x7c\xe8\x05\x60\x7f\x6e\xcc\x07\x26\x6f\xd9\xde\x2b\x2c\xc6\x22\x46\x7f\x93\x45\x78\x01\xb0\x9f\x9a\x1f\x48\x8c\x8e\xd0\x42\xa9\x95\x3c\x3d\x39\x79\x7c\x7c\x3c\xd6\x6f\x1f\x73\x31\x3f\xd1\xff\x38\x22\xec\x78\xa1\x96\x89\x81\x53\xd0\xab\x70\x8a\xae\x05\xd7\x5c\x10\x74\x4c\x22\x28\x4e\x20\x9b\x7a\x4a\x19\x16\x00\xd3\xf0\x6b\xc4\x05\x39\xce\x36\xc6\xda\x56\x2c\x2b\xb4\xf6\x97\x13\xfd\x52\x05\x33\x29\xee\x27\x8a\x49\x44\x63\x7b\x53\x12\x16\x71\x30\xc0\x19\x93\xbd\x6e\xcf\xa5\x82\x12\xeb\x2f\xf5\xcb\x19\xc8\xdb\x38\x26\x01\x1a\x82\xe2\x79\x82\xd3\xb2\xfb\xd0\x68\x5e\xa9\xd6\x32\x21\x40\x17\x2e\x06\xf7\xea\x4a\x4f\x38\xe2\x09\x9a\xa6\xb3\x19\x11\xa1\xbb\xb6\xa7\x05\x72\x2a\x91\x20\x11\x5f\x2e\xe1\xd2\xd3\x5f\xa5\xd2\x50\x35\xac\x98\x1d\xed\xf1\x98\xc1\xfe\x6b\x49\x1d\x28\x20\xe6\xc0\xea\x18\xd1\x1a\x3b\x5b\x9b\x6e\xa6\xe9\x2c\xe7\x0e\x06\x98\x12\x1c\x23\xaa\xc6\xac\x9f\x24\x48\x90\x25\x57\x24\x8c\x34\x06\xdf\x51\x6e\xc1\x81\x45\x0a\xb2\x4a\x70\xe4\xf2\xd8\x13\x1e\xe1\x04\xcd\x68\x42\xe4\x5a\x2a\xb2\x0c\x1b\xf8\x1a\xcc\x0d\x7a\xcd\xa8\x44\x31\x7f\x64\x09\xc7\x76\x1e\xc5\xcf\xde\xe7\x4f\xe3\xc0\x41\x48\x0c\x84\xe0\x02\xfe\xe7\x47\xca\xe2\xbd\x71\xa8\xbb\xdb\xc1\x4d\xf8\xf7\xed\x2f\xb7\xa3\xc1\xa7\x6e\xdc\xc7\x53\x16\x0c\x0f\xd4\xd0\x53\x74\x6b\x16\x81\x0b\x7d\xa9\x8b\x9a\x49\x7d\xb2\xa4\x94\xfd\xc0\xe3\x2d\xb9\xef\xa7\xfe\xe5\x5d\x3f\xc7\x51\x6e\xcf\x7e\x18\x9c\xdf\x15\x44\x5a\x3b\xbf\x9c\x18\x6a\x34\x98\xf0\xb7\xb3\x1f\x86\x17\xe7\x93\x0a\x9d\xe7\xdd\xcd\xe0\xec\xea\xa7\xc1\x4d\xa6\x9e\x54\x2e\x51\x61\x30\x45\x66\x35\x32\x4c\x69\xc1\x63\x34\x5d\x57\x03\x86\x68\xe1\x2f\x01\x97\x64\x06\x99\x63\x5a\x3d\x05\xde\xe4\xb0\x5b\xb2\x2f\xb4\xce\xdb\xb3\xef\x00\xd2\x8a\xb1\x0f\x18\xa1\xaf\xba\x61\xdd\x3b\x66\x81\xae\x6d\x40\x50\xfc\xc2\x9d\xa2\x3e\x92\xfa\xc5\x54\x1f\x6a\x41\xe7\x73\xb0\x7d\x15\x86\x6a\x5a\xb3\x9f\xc2\xf2\xc2\x77\x66\xff\x57\x82\xc3\x39\xd7\xdd\x5a\xa3\xa9\x57\xac\xcd\x87\x06\x28\x36\xd7\xa2\xc0\xa0\x33\x57\x0c\xcd\x6d\x96\x5e\x84\xda\xf5\x32\xe7\x31\xcb\x0d\x00\xb6\x25\x8d\xc9\x6e\x25\xc8\x03\xe5\x69\xf0\xa9\x05\x7e\xc9\xed\x78\x65\xf3\xd9\x02\xc0\xb2\x19\xbd\xbe\xd0\x8c\x27\x8f\xca\x16\x34\x0b\x7b\x80\x16\x66\x82\x2f\x2b\xda\xc8\x1f\x93\xe1\xd5\xad\x12\x58\x91\xf9\xfa\xdc\xb2\x8c\xed\x8f\xc7\xf9\xd5\xcf\x97\x17\x57\xfd\xf3\xc9\xa0\xff\x31\x7f\xe2\xfd\x93\xdb\xd1\xcd\xa0\xff\x29\xff\x68\x72\x79\x35\x9a\xb8\x37\x1a\x49\xbe\xa6\x83\xf2\x3d\x9d\x7f\xf1\x14\x69\x96\x0b\xac\xd1\x21\x32\x06\xfc\x71\x4a\x66\x5c\x18\x3e\xbf\x74\x1e\x7c\x2b\xc2\xb8\xb5\xb5\xea\x44\x61\x16\xa7\x60\xdc\xa9\x6a\xd2\x18\x6e\x95\x20\x78\x09\xf7\x04\x66\x68\xc0\xe2\xa3\xab\xd9\xd1\xad\xf9\x71\x89\xc5\x3d\x11\xfe\xd3\x47\x41\x95\x22\x2c\xa7\x95\x60\x37\x64\xaf\xe7\x64\x1d\x1c\xa3\x1b\xcd\xf7\xf5\xfb\xfe\x52\xd3\xc4\x1e\x13\x85\x69\x22\xed\x60\x73\xeb\x7a\x8a\x2e\xb0\x98\x67\xa6\xa4\xaf\xf9\x6c\x66\x1a\x7b\x6f\x86\xa1\xef\xb0\xdc\x2c\x2a\x78\xaf\x26\x0d\x77\x2f\x42\x7f\xf6\x65\x2f\x0f\x97\xa9\xea\x6e\xb5\x1b\x4d\xdd\x5d\xc3\x8a\x1b\xa5\x73\x94\xbb\x55\xae\xeb\x68\x0d\x26\x6e\x1e\x37\x5f\x32\xd5\x6d\x97\xc9\x29\xff\x62\x05\x39\x99\x44\x34\xbd\xf3\x33\x45\x44\x15\x2d\x91\xcf\xd4\xea\xbc\xe1\xb8\x0b\x24\x94\x35\x03\x16\x42\xbc\x5a\x11\x2c\x64\xd5\x6e\xe7\xc5\xc0\x9a\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\xf4\x10\x67\xa0\x33\x7b\x21\xa2\x40\x91\x2d\x68\xc0\xb4\x55\xa2\x80\x6b\x40\xe3\xba\xb2\xc8\x57\x9f\xa8\xd4\x4a\xa3\xf9\xf1\x7b\x0b\xc9\xb5\x1d\x41\x68\x3d\xbe\x20\x5c\x4c\xce\x07\x1f\xfa\x77\x17\xcd\x96\xae\xdc\x77\xc5\x2d\x46\x47\x48\x3f\xcf\xbb\x8f\xe9\xcc\xdc\x19\x0e\x58\xcc\xa8\xb4\x84\x81\xdd\xc5\xe6\x8d\x19\x93\x6b\x4c\x56\x09\x5f\x2f\x09\x03\x2b\x45\xee\x26\xd4\xeb\x39\xc3\xd4\x5e\x2d\xc1\x60\xc1\x10\x61\x2d\x47\x70\x8d\x1d\x39\x34\x33\x12\xfb\x9b\x37\x0f\x66\x56\x60\xdd\xd7\xc6\x01\x64\xff\x73\xab\xb0\xda\xf2\x8c\xf5\xcf\x46\xc3\x9f\x06\x79\xfd\xf0\xec\x87\xe1\x4f\x55\x52\xcd\xe4\xe3\xe0\x72\x70\xd3\x1f\x6d\x10\x4e\x0a\x4d\x56\x09\x27\x52\x0f\xb8\xe8\x00\xa4\xd2\x07\xc6\x44\x06\x12\x0d\x51\x25\xd1\x03\x95\x74\x4a\x01\x40\xce\x3a\xd3\xee\x86\xc0\x59\x21\x53\x90\xaa\xb5\x13\x5f\x4c\xbf\xf9\x7d\xd4\x9c\xd4\xb6\x6f\xcc\x0e\xa1\x8b\x0d\x0c\x55\x66\x73\xdc\xa4\x4f\x11\xe8\xb6\x0f\xa0\xb4\x05\x9f\x31\x2d\x48\xb3\x39\x11\x66\x38\xe0\x40\x08\xc7\x12\x3c\xd7\xa3\x0a\x85\x95\x6c\xd5\xbc\xd0\x3a\x27\x8c\x08\x40\xa8\xf2\x9d\x18\x41\x4a\x10\xf6\x95\x96\xb9\x56\x09\x8d\xa8\x4a\xd6\x28\x82\xcc\x3a\xb0\xc8\x2d\x31\xc3\x73\x2b\x1c\x80\x9a\x53\x20\x89\xbf\x1a\x94\xbd\xab\x99\xb5\x4e\x8f\x28\xd9\xf2\x98\xdd\x5d\x9e\x0f\x3e\x0c\x2f\xf3\x24\xf0\xc3\xf0\x63\x4e\x84\xfd\x34\x38\x1f\xde\xe5\x6e\x73\x2d\xc9\x36\xcb\xf5\xc5\x66\x2b\x8e\xa2\x7f\xe9\x14\x9d\x9b\x4f\x4f\xf5\xe2\x56\x40\x08\x7a\xe5\xb7\xb0\x0e\x37\x2e\x32\xcd\xfd\x63\xc0\x94\xa8\x34\xad\xb7\x35\x21\x59\x37\x5a\xce\x86\x54\xed\x6d\x2f\xf5\x7d\x59\xf4\x8b\x96\xa3\x11\xac\x2f\x4d\x77\x72\x9c\x59\x96\x42\x37\x3c\x18\x0d\xea\x8c\x58\x15\x9e\x99\x8c\x61\xff\x04\x5e\xd6\x65\x2a\x95\xf1\x86\x01\x71\xa2\xfb\xbf\x48\xbd\xa0\xe0\x2d\x3b\x46\xb7\x84\x8c\x99\xb3\x1e\xcc\xa9\x5a\xa4\xd3\xe3\x88\x2f\x4f\x32\xfc\xca\x13\xbc\xa2\x4b\xac\x25\x69\x22\xd6\x27\xd3\x84\x4f\x4f\x96\x58\x2a\x22\x4e\x56\xf7\x73\x08\x04\x71\x1e\xc1\x13\xdf\xec\x9c\xff\xe1\xe2\x4f\xdf\x1c\x5d\xfc\xe5\x9b\x77\x65\x0b\x59\xdd\xfe\x0f\x58\x84\x57\x32\x4d\x6c\xe0\x98\x08\xd7\xc6\x1d\xf9\x94\x6c\xda\xef\xcb\xfc\x76\xed\xa6\xbf\x9e\x5d\xdf\x85\x7f\x7e\xcc\xff\xf9\x69\xf0\xe9\xea\xe6\x97\x1c\xa7\x1c\x5d\xdd\xf4\x3f\xe6\x18\xea\xe0\xfa\x87\xc1\xa7\xc1\x4d\xff\x62\xe2\x1e\xee\x62\x7b\xfb\x91\xf1\x47\x96\x5f\x1a\xe9\x38\x60\xa9\xa7\x53\xf4\x81\x0b\xf4\xa3\xdf\xc9\xa3\x29\x96\x70\xc5\xb8\x3b\x4b\xf6\xd0\x8a\xc7\xc0\x78\x11\x59\x2d\xc8\x92\x08\x9c\x58\x9b\x81\x54\x5c\xe0\xb9\xb9\xe9\x65\x24\xb0\x8a\x16\x48\xae\x70\x44\x7a\x28\x02\x6a\x98\xf7\x60\x53\x40\xd5\xe2\xf3\xa2\x9d\xef\x26\x65\x8a\x2e\x89\x53\xc1\xed\x9f\x23\xb3\x19\x5b\x6c\xce\xd5\xe8\x87\xbc\xb0\xf7\xe1\xe2\x97\xd1\x60\x72\x7b\xfe\x63\xe3\x7a\x9a\xcf\x72\x23\xbb\x85\x18\x9a\x33\x9e\xa4\x4b\x16\xfe\x7b\xfb\xb1\x0d\x2f\x47\x83\x8f\xc5\xd1\x5d\xf5\x47\x79\xca\xb8\xc9\xc7\x79\xbd\xfb\xfe\xea\xea\x62\x90\xf3\x6a\xbe\x3b\xef\x8f\x06\xa3\xe1\xa7\x1c\xfd\x9c\xdf\xdd\x18\xb4\xca\xa6\x69\xba\x11\x54\x4c\x54\x4f\x2b\x9c\xe6\xbe\x59\x61\x2b\x4e\xd4\xb7\x71\xd5\xe6\x2c\x1f\x05\x58\x45\x26\xa2\x09\xac\x3a\x47\xde\xa4\x1a\x99\x91\x56\xb2\x43\x95\xdf\x26\x54\xcf\x8e\x1b\x37\xba\x89\x2b\x8f\xfc\x10\x0c\x54\xac\x51\xb6\x71\x92\xf0\x47\x13\xd1\xba\xa4\xfa\x56\xb6\xc8\x75\xfa\x15\x99\x39\xb9\x8e\x2b\x38\x5e\x7e\x5b\x48\x24\x88\xfa\xc4\x53\xa6\xb6\x27\xb9\xfe\x65\x8e\xef\x0c\x2e\x7f\x9a\xfc\xd4\xcf\x53\xe0\xf0\xa2\x99\xd5\x84\x4d\x54\x5c\xc5\xfd\xcb\x5f\xfc\x25\x0c\x71\xcf\x3d\xaf\xa1\x1a\xd9\x35\x4a\xa8\x16\x7b\x23\xac\xb5\xd7\x04\x24\x1a\x44\x28\x98\x1c\x96\x7a\x72\x10\x67\xb9\x32\xfe\x24\xc3\x9f\xcc\x20\x4f\xdd\x3f\x0a\xed\x49\x58\x17\xb0\xa6\xba\xb0\x72\x68\xc7\x6a\xd5\x0c\x11\xf6\x40\x05\x07\xbc\x63\xf4\x80\x05\xd5\xd2\xb8\x69\x59\xcf\xf5\x14\xfe\xb7\x5b\x9b\x60\x18\x2d\x30\xae\x5b\x2e\xd4\xb9\x8f\x67\xdd\xce\x1a\x52\x15\xd7\x59\x8e\xe8\xac\x36\x74\x94\xbf\xad\xd8\x9c\x1d\xe3\x5e\xf3\x13\xfe\x7b\x72\x4e\x71\xa2\x19\xc0\xfe\xe4\xc5\xfe\xe5\xed\x30\x2f\x3f\xe6\xd5\x8c\x80\x2f\x6f\x2d\x2f\x82\xa1\xd2\x8c\xdc\x29\x13\xb7\x7f\xbd\x30\xda\x05\x80\x62\x9b\x73\x1b\x28\x16\x16\x5d\xc4\x48\x13\x2b\x2c\x64\xe1\x0b\x89\x00\x45\x2e\x8b\x19\xd2\x77\x16\x44\xe4\x3c\x70\x1a\x8f\x19\xf9\xbc\x22\x4c\x82\x7f\xdb\xdc\x67\x99\xbb\x58\x1e\xa3\xe1\x0c\x58\x82\x7e\x9d\xa1\x94\x59\x07\x98\xbe\x70\xcd\x20\x7b\x5a\x94\xcd\x00\x4e\x02\xf3\x11\x23\x2e\xde\x27\x1b\xfc\x98\xfd\xec\x9d\x68\xf0\x68\xc6\x35\x03\xd2\xbb\x68\xdb\x3b\x45\x98\x49\xda\x43\x5a\x61\x29\xee\x29\x44\xd0\x6b\x85\xd2\x46\x21\x69\x4e\x63\xff\xf9\xfc\xd7\x40\x29\xd4\x35\xbc\x0c\xaa\xef\x82\xc2\x55\x50\x23\x1a\x27\xc6\x63\x32\x69\x7f\x27\x44\x5c\x10\xeb\x67\xe9\x7c\x0d\x6c\x62\xec\x23\x2c\xef\x4b\xbe\x87\x21\x93\x0a\xb3\x88\x9c\x25\x58\x6e\x19\x47\xe3\x6c\x1c\xbd\xbc\xc4\x71\x73\x73\x77\x3d\x1a\x7e\xbf\x81\xcb\x17\x3f\x2e\x47\xb2\x44\x49\xea\xdc\x73\x53\xc1\x71\x8c\x34\xfb\x9c\x73\xe3\x0a\xb4\x82\x7f\x06\x0d\x6f\xd2\x5b\x7c\x4c\x60\x0e\x96\x3e\x8b\xca\xb7\x76\x8e\xd0\x95\x40\xed\x42\xa0\x48\xaf\x04\x0a\x4c\x1e\x6e\xab\xc1\xb3\x68\x2a\xe6\x58\xeb\xd6\x2a\xc1\x6a\xc6\xc5\xd2\x70\xf9\xdc\xa4\x4d\xe3\xcd\x8d\x52\xa6\x88\x10\xe9\x4a\x51\x87\xf5\x5f\x94\x52\xf5\x96\x5d\xf0\xf9\x27\x22\x25\x9e\x93\x5d\x1c\xd0\x55\xca\xc3\xed\x4f\xe1\x9f\xe0\x60\x6e\x23\xfb\xe7\x46\xe8\x82\xb7\x1d\x3d\x5d\xb1\x0f\x26\x16\xe5\x9a\x27\x34\xda\x32\x66\xec\x43\x7f\x78\x31\x19\x7e\xd2\x4a\x7c\x7f\x34\xb8\xc8\x89\x12\xf0\xac\xff\x61\x34\xb8\xb1\x20\xe7\xfd\xef\x2f\x06\x93\xcb\xab\xf3\xc1\xed\xe4\xec\xea\xd3\xf5\xc5\x60\xd4\x4c\x71\xb5\x8d\x97\xad\xab\xc5\x57\x4f\x4b\xbf\xc0\x0e\x6b\x5e\x16\xda\xcb\x20\x79\x0a\xd3\x04\x9c\xe0\xdc\x38\xc3\x31\x62\x3c\x36\x30\x52\xd2\x59\x67\x3c\xb2\x38\x1a\xaa\xaf\x92\x04\xe1\x54\xf1\x25\x06\xaf\x4d\xb2\x1e\x33\x3c\xd5\xac\x15\x27\x49\x10\xa1\x24\x52\xc6\x34\x8b\xd5\x8d\x19\x08\xff\x28\x21\x9a\x9d\xaf\x82\x9c\x37\xeb\x37\x98\x51\x06\xc1\xa2\x4b\x2c\xee\x5d\x3d\x42\x9f\x49\xe0\x0f\x85\x44\x58\x8e\x99\x81\xb7\xb2\xd2\x4a\x8b\x15\x3e\x6d\xf5\x56\xed\xea\x2c\xf1\x3d\xd1\xab\xb2\x4c\xa3\x05\x5a\x09\x3e\x17\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x19\xe3\x7a\x29\x9c\x09\x3b\x26\x2b\xc2\x62\xc2\x22\x6a\xb2\xdb\xc0\x77\xef\x4d\x9b\x73\x81\x57\x0b\x24\x39\x38\xbd\x61\xd9\xc1\x7e\x65\x3e\x72\x37\x99\x05\xf4\x82\xc7\xa1\x05\x5a\xa4\x9a\x4f\x5c\x81\x9c\x68\x56\x19\x3e\x76\x97\xa1\x73\xbb\x18\x3b\xe0\x72\x95\x10\x65\x8a\x39\xc0\x92\xc3\x66\xe8\xb5\xce\xed\x87\xde\xa6\xaa\x4d\xd0\x17\xb6\x1b\x33\x96\x76\x44\xc7\x15\x96\x6d\x7b\xa4\xd0\x0f\x98\xc5\x89\x6e\xc5\xf9\x30\xf2\x67\x11\xb2\x29\xfa\x9a\x6a\xdc\x69\xdc\xe5\x16\x8d\x70\x2a\x77\xb9\x46\x0b\x29\x89\xc6\x2a\x78\x94\x05\x85\x00\x79\xdb\x7c\x44\x58\xdd\x95\x66\x91\x38\xe1\x76\x95\xcc\xeb\xa9\x29\x50\x86\x60\x34\x35\xd7\xec\x4a\x50\x16\xd1\x15\x4e\xb6\xd2\xfd\x0a\xf1\xe4\x36\x4c\xfb\x6b\x3a\xd3\xe4\xf3\xbe\xe4\xb6\x55\x44\x2c\x21\x4f\xd7\x0e\xd3\x6f\x61\x07\x4b\x92\x0d\xcc\x27\x32\x8b\x26\xc1\x82\xa7\xc6\x1f\x07\xeb\x42\xe2\x8a\xa3\x7a\x5c\xb5\xdd\x33\x10\x1e\x76\xb2\x20\x9a\x92\x1e\x5c\xec\x21\x14\xad\x21\xcd\xe7\xd6\xf6\x52\x9b\x1e\x50\x5c\xa5\x4f\x36\x1a\x5e\x22\x3f\x40\xd0\x1c\xbe\xc2\x2c\xfe\xea\x08\x8e\xe0\x9c\xc0\x39\x35\xfe\xa7\x38\x8d\x8c\xb3\xd4\xa5\x74\x3a\xa4\x83\x1e\x22\x09\x9d\xc3\x0e\x7a\xd0\xed\xf6\x9b\x75\x0e\xb1\x45\x26\x18\x09\x9a\x35\x19\xa0\x98\x6a\x79\xdc\x49\xee\xb6\x2a\x4a\xb1\x1f\x64\x2c\x5a\x10\x26\x30\x25\x09\x50\xd8\x1a\xe2\xeb\x89\x2c\xde\xf5\x66\x3b\x35\xa3\xc3\xf9\x90\xec\x2d\x76\xd4\x04\x72\xd5\x6d\x67\xa1\x15\xdb\xbb\x89\xad\xc4\xc9\x75\x75\x9b\x55\x07\xaa\xf5\x4e\xe2\x15\x2c\x9c\xa9\xd2\x81\xb3\x39\x5a\x9d\xd7\x56\x21\x74\xe1\x50\x41\x28\x84\xcf\x54\x69\xbf\x5f\xd9\x12\xda\x78\xb6\x72\x27\xb9\x90\x90\x20\x73\xde\xb2\xac\x59\xaa\x55\x13\x84\x21\xa8\x04\x7d\x4d\x8e\xe7\xc7\xc8\xd5\x5c\xe9\xa1\xfe\xf5\xf5\xe0\xf2\xbc\x87\x88\x8a\xde\xbb\x10\x54\x1b\x7f\x36\x66\x9a\x14\xe0\x70\xaf\x5d\xbd\x9c\x25\x11\x73\x92\x9b\xb3\x0b\x56\x83\xe0\xe9\x39\xd5\xb4\x64\xae\x00\x16\x87\x95\x8d\xe8\xb2\xa8\x35\x19\x0a\x49\xd5\x62\x17\xd2\xc0\x52\xa6\x4b\x3c\x4d\xc8\x84\xe2\xe5\x44\xf0\x64\x17\x1e\xef\xcf\x06\x43\x1e\x74\x80\xe2\x25\xd2\xcd\xda\xc8\x1e\xef\x41\xf6\x12\xba\x96\x73\xf5\x35\xab\xc5\xa0\x40\x0c\x71\xce\x24\x1b\x5e\x48\x5d\x44\x0b\x80\x12\xd4\x70\xfe\xcc\x0b\x30\xb1\x8e\x97\x09\x8e\x22\x9e\x32\xb5\xe7\x49\x05\xe5\xb2\x9c\x87\xc7\x76\xf4\x64\xd3\x6c\xcb\x97\x56\xfa\x42\x82\xd8\xee\x72\x75\x99\x8a\x7e\xa7\xeb\x52\xaf\xae\xa0\xd5\x9d\xf4\x16\x32\x23\x53\x49\x02\x3b\x29\x4d\x41\x2c\xe0\x5d\x00\x86\x1a\x76\xe9\x52\x74\x74\xc3\x6b\x9e\x8a\xaa\x7b\x6b\xcc\xce\xc9\x4a\x10\xad\xb8\x15\xfd\x61\x9e\xa6\x6f\xf2\x94\x78\xa0\xeb\x03\x5d\xbf\x79\xba\x3e\x33\x75\xd1\xfa\xbe\x0e\xde\x4e\x04\x5e\x96\xf4\xd0\x06\x91\xcb\x0b\x87\xed\x57\x3f\xe7\xe4\x2c\x54\x8c\x03\xd0\x03\x9e\x82\xe8\x9b\xbb\x42\xb9\xbe\xf7\x82\x04\x60\x5b\x0f\xae\x61\x49\x9c\x37\x34\xa8\x55\xb5\xcb\xd2\x54\xb5\xd2\xd4\x12\x7a\x72\x91\xe7\xcc\xc8\x3a\x55\x25\xc0\xf2\x07\xcb\x89\x25\x94\x95\x0a\x31\x1a\xda\xd6\x0b\x6c\x64\x90\xbf\xa7\x5c\x61\xf9\xfe\x78\xcc\xb4\x40\x75\x4f\xd6\x46\x1e\xd6\x22\xcb\x1f\xb5\x9a\x75\x24\x09\x93\x10\xc9\xff\x47\xe3\x79\xd5\xe4\xee\x3c\x11\xc6\xea\x60\xea\x3f\xe6\xab\x93\x41\xf4\xb5\x6d\xd4\x4a\x4c\x59\x6c\x7b\x56\xd2\xcc\x3d\x33\xc3\x9f\x13\x05\x09\xe0\x8a\x2a\x50\x87\x63\x53\x60\xb2\x34\xf4\x8d\x56\x49\x43\x15\x82\x83\x0b\x2c\x4e\x77\xbb\x04\x64\xb9\x8d\x8d\x5c\xd2\x2b\x82\xb7\x36\x9d\xe1\xc4\x99\x04\x23\xc1\x4b\x55\x1b\xb1\x44\x66\xa7\xa7\x86\x35\xb8\xd0\x04\xc2\x8e\x1f\xe9\x3d\x5d\x91\x98\x62\x48\x6e\xd0\x7f\x9d\xe8\x79\xfd\xe1\xec\xe6\xea\x72\x42\x7c\x06\xd6\x7f\x8e\x59\x3f\x91\xdc\x27\xa0\x20\xc6\x99\xcf\xa4\x58\x09\xe2\xc4\x43\x3b\x17\x30\xa8\x67\x07\x7b\xcc\xea\x46\x10\xf3\x48\x1e\xe3\x47\x79\x8c\x97\xf8\x37\xce\x20\x4a\xa2\x0f\xff\x3c\x4b\x78\x1a\xff\xac\x95\xa1\x13\x38\xd7\xea\x84\x3c\x10\xa6\x8c\x07\x52\x2f\x57\x0c\xa9\xc5\x12\x12\x31\xfe\xa0\xc7\x9c\xe5\x8b\xc9\x31\x23\x9f\x23\xb2\x52\xe8\xff\x13\x64\xca\xb9\xaa\xbe\xb0\xf8\x6c\x26\x49\xa7\xcb\x29\xd3\xbf\x6f\xaf\xd0\x5f\xfe\xfc\xcd\xb7\x9a\x84\xb6\x59\xe3\xe1\xed\xd5\x44\x7f\xff\x87\x73\xfb\xbd\xec\xc0\xee\xae\x56\x19\x6b\x73\xc4\x63\x72\x22\x52\x06\x37\xa1\x00\xbf\x14\xb0\x37\x20\x87\x6c\x1f\xab\xb8\xdb\xb9\x01\x61\xd8\x29\x21\x6c\x87\x1b\xfe\x63\xc2\xa7\x60\xf2\x4b\x73\xe5\xdb\x1a\x82\x77\x76\x74\x95\x9c\x53\xb9\x4a\xf0\xba\xd4\xc3\xa6\x65\xbf\xd4\xdc\x69\x85\x23\x92\xa1\x47\xb8\x38\xbb\x88\x2f\x97\x10\xfb\xe9\x54\xeb\x98\xce\x20\x08\x54\xe9\xfb\x1f\x4d\x89\x7a\x84\x90\x63\xf7\xab\x97\x5b\x9c\xad\x5d\xb3\x32\x60\x97\xe3\x77\xc6\x28\xa0\x3b\x1d\xbf\xeb\xa1\xf1\xbb\x98\x3c\x90\x84\xaf\xf4\x69\xd6\x3f\x10\x15\x55\x6d\xe2\x60\x89\x69\x72\xc9\x95\xbf\xf9\x76\xd9\x4f\x41\x22\xba\xa2\xfa\x74\x4d\x88\x6e\xf7\x49\xb3\xfd\xaa\x0f\xd8\x28\x30\x89\xc0\x18\x10\x8e\x63\x4d\xc4\x50\xcb\xce\x0d\x2f\xf3\x9e\xb0\x60\xea\xb9\x1a\x4d\x5b\xd8\x4c\x98\xed\x31\x6c\x33\x2f\x56\x54\xee\x80\xb7\xa9\xed\xf5\x24\xd5\xbb\xdc\x9c\x17\xc3\x77\x9c\xd5\x15\x6b\xa4\x7f\x5b\x26\x31\xc0\x97\xb0\xc6\xe8\x5a\xe3\x5d\xf1\x00\xea\xb5\xe8\x20\xd1\xf9\x01\xde\xea\xef\x1a\x87\x26\x43\x80\xb7\x28\xac\x76\x0a\x96\x06\x9b\x16\x52\xcc\x44\x21\x1b\x47\x1c\x25\x5c\xe6\xb3\x44\x5b\x0f\xfa\xcc\x7e\xda\x34\xee\x41\x68\x98\x49\x93\x6e\xb6\xba\x7e\xc5\xc2\x17\x90\x3c\x0c\x9b\x50\x56\x99\xb0\x6f\xf7\x10\x05\x3f\x23\x48\xb6\x49\x96\x33\xc3\x62\x94\x49\x89\x63\x96\x59\x6b\x25\x7a\x24\x09\x38\x78\x22\xbe\x5c\x81\x04\x64\x87\x6b\x5b\xd2\x17\xb8\xc2\x8a\xf4\x10\x4f\x95\x6e\xcc\x44\xa3\xb9\x3b\xce\x86\xba\x65\x52\xa1\x51\x53\x6c\xd8\x87\x47\x16\x33\xb4\x6e\x58\x21\x65\xe8\x23\x51\xd0\x0a\x20\x37\x86\x13\x34\x75\xc1\x1b\x8f\xd2\x59\x69\xdb\x3a\x9f\x28\x3b\x93\x0e\x3b\x9f\xa5\x0c\x7e\x9f\xf0\x69\xe3\xbe\x5f\x41\xe3\xe8\xee\x66\xe8\xdc\x63\x99\xe7\x20\x80\x9e\xca\x29\x5f\x83\xeb\x9b\xc1\x59\x7f\x34\x38\x3f\x46\x5a\xc7\xfb\x48\x94\x9f\x2e\x64\x16\x78\x10\x43\x33\x72\x9b\x83\xc8\xa4\x22\x38\xae\xa1\x6e\x22\x44\x2e\xfe\x7f\x03\xe3\xc8\x27\x28\x36\x13\x36\xa4\x07\x52\x66\x92\x35\x21\xa5\xb6\x38\x4f\xeb\x93\xda\x74\x02\xc1\x43\x30\x79\x3b\xfe\x19\x33\xde\x65\xd9\x27\xb5\x89\x7c\xf2\xbe\xac\xa7\x9e\x0c\x1c\x2d\xb5\x20\x54\xa0\x56\xd3\x32\x44\x35\x69\x3f\xa7\x20\xb8\xe3\x13\x5e\x35\x07\x5e\xe3\xc7\x1c\xd1\x5a\xf7\x46\x66\xe6\x78\xea\x73\xe0\xd8\xda\xc4\xb0\xc2\xdd\x27\x98\xc9\xfb\x86\xb7\x7a\xbe\x69\x62\x9d\x64\xa9\xb6\xff\xf1\x98\x15\x06\x61\x3d\xb8\x12\xc1\xd9\x81\x5f\x28\x43\xb9\x2b\xb1\x87\x66\xf4\xb3\x6d\x34\x8b\xec\x70\xaf\x06\xb6\xa1\x1a\x4f\xe2\x02\x97\xcf\x54\x07\xb1\xe1\x1a\xbe\x6f\x74\x85\x70\xa9\xb4\xd4\xa5\x25\x57\x41\xb4\x7e\x41\x62\x04\xdd\xfa\x38\x93\x8d\x22\x83\xc2\x42\x2f\x0a\xee\xa4\x6f\x65\x20\xb4\x31\x56\xe4\x48\xd1\x8d\xa1\xff\x36\x3a\x0c\xe2\xc8\xb0\x0a\x12\xe1\xb3\x9b\x67\x4a\xe6\x98\xb9\xa0\x84\x9a\xe1\xba\x2b\x6f\x07\x56\xa5\x25\x58\x0c\x81\x91\x20\x5f\x41\xd0\x5b\x6e\x1c\x72\x05\xeb\xd9\x38\x0e\x6b\x28\x7c\x0d\xcb\xf6\x88\xbd\xdd\xb2\x66\xb0\xe9\x2a\x7e\x4d\x83\x4d\xb0\x54\xc8\x8e\xa9\x4e\x93\x0c\x24\xfc\xa7\x75\x24\xe7\x54\xb3\xb6\xf6\x38\x4d\x42\x79\x25\x84\x28\x45\x6d\x6d\xda\x54\x12\x9b\x1f\xb9\x24\x62\xee\x04\x61\x53\x37\xcc\x9f\x6d\x5b\x40\xcc\xdd\x12\x21\x33\x81\xf0\x94\x72\xd3\xc7\xa8\xcf\x4a\x99\xe2\xce\x84\x9d\x5b\x2f\x73\x27\xe1\xe4\x11\xaf\x25\x5a\x09\x93\x54\x69\x62\x56\xdc\xe4\xc1\xb7\x98\xff\xc8\x5b\x8a\x94\x0b\x1a\x42\xa0\x4a\x6f\xf6\x2f\x04\xe5\xb0\xdb\x73\xbb\x96\x3a\x51\x21\x9e\xa2\xaa\x62\xb5\x57\x35\x5b\xb0\x3a\x45\x26\xd1\x02\xb3\x39\x99\xd8\x3c\xd2\xad\xb4\x25\xdd\xce\x19\x34\x73\x6e\x5b\xa9\xbe\x9c\xae\x8d\xc2\x64\x01\x80\xcd\xab\x4e\xa7\x83\x43\x20\x15\x9e\x13\x64\x46\xd4\xa4\x98\x64\xa8\x10\xa1\x41\xdd\x22\x45\x81\x9e\x60\x5b\x1d\xe4\xe3\x47\xea\x84\x77\xb0\x0c\x5f\xe0\x29\x49\x76\x8e\x0b\xd8\xca\x4a\x07\x5d\x5b\x5c\x4c\xc5\xf5\xd2\x40\x1c\x0c\x41\x8f\x0b\x22\x8a\xec\xd8\xd9\xb6\x45\x5a\x15\x15\xd3\x34\xcf\x5c\xa9\xbe\x1d\x26\xea\x80\x5e\xb7\x99\x6a\x1d\xfc\x6b\x78\xed\x05\x30\xa9\x55\xf6\x91\xf0\xfa\x2b\x9a\x04\xb7\x1b\x48\x80\xd6\x5a\x33\x8e\x9d\xe1\x5a\x37\x4e\x65\xeb\xf4\x9a\x96\x65\x10\x86\x33\xc4\x38\x23\x88\xca\xec\x65\x95\x0f\x04\xf4\xc9\xa9\x5a\xc4\x37\xc6\x97\x72\xf1\xd9\xa7\xb6\xb4\x64\x69\x43\xde\x36\xe0\x32\x1b\x18\xd1\x8a\x2a\x16\x6b\x00\xb7\x31\x7c\x38\x2f\xd3\x6d\x1c\xe7\xde\x05\xee\x91\xc3\x2e\x0a\x9c\x9a\x8a\x23\x10\x23\x0b\x83\x43\x06\x01\xc8\xbe\x64\x3f\xb2\x09\x9a\x63\xe6\x2d\x1b\x40\x88\x54\xa2\x25\x5e\x41\x5a\x01\xe3\x2a\xfb\xca\x24\x1c\x2b\xbf\x85\x3d\x27\x88\x4b\x03\xa2\x5e\xb3\x02\x9b\x4c\x3b\xee\xfa\xcd\xd6\x35\x0f\xec\xe2\x40\xa9\xe6\xf4\x81\x30\x47\xd3\x3d\x77\x26\xf4\xa0\x5c\xa7\xc9\xfa\x08\x83\x47\x96\xc4\xa1\xe1\xba\x99\x23\xd9\xc2\xb3\xaf\xc0\x1e\xd9\x7e\xc9\xf4\xc6\xa7\x25\x0b\xa5\x81\x07\xc8\x41\x13\x3a\x1f\x7a\x48\xa5\x16\xb1\xca\xe4\x40\x60\x89\xfe\xc8\xb8\xfa\x63\x80\xe9\xe5\x8c\x17\xa6\x2e\xb1\x35\x41\xf5\x4a\x78\xbb\x70\x68\x2d\xe1\x20\x1c\xe4\x96\x6f\x5c\xf9\x5d\xa1\xf5\xb2\x18\x81\x27\x95\x46\x07\xe5\xf8\xcf\x3a\xc0\x72\x53\xc8\x63\x6f\x16\x9b\xe7\xa8\xb8\x8f\x0c\x19\x08\xe2\x70\x06\x96\x5c\x90\x42\x31\x11\xc3\xcf\x7d\x80\xf4\x72\xa5\x2a\x93\x0c\xcb\xa2\x51\x85\xc1\xd3\xd4\x55\xc8\x4e\x7a\xce\xd0\x29\x8f\xc7\xec\x96\x90\x7a\xb0\x7d\xbf\x17\xbf\x42\x43\x30\x56\x27\x35\x36\x50\xda\x3e\xa2\xa5\x97\x79\x1c\x99\x06\xaa\xd9\x00\xff\x55\x6d\x97\xd8\x26\xc2\xb9\x4e\x2e\xf7\x4e\x8a\xb0\x6a\x74\x1d\xbe\xd5\xf1\x98\x7d\xe0\xc2\x5e\xc1\xd2\x22\x6c\x4e\x71\x74\x7f\x44\x58\x8c\x70\xaa\x16\x06\x67\xca\xfa\x15\xd6\x96\x1a\xb4\xa4\x01\x64\xe3\x93\xc8\xa8\x8c\xb0\x88\x1d\x5c\xe9\x03\x77\xa3\x18\xb3\xa0\x11\xc0\xf0\x04\x94\x6e\xa8\x55\x54\xa7\x6a\x12\x28\x8b\x50\xb7\x16\x55\x55\x78\x4a\x35\x78\x9a\xcf\x59\xae\xaa\x10\xa0\x8f\x32\x22\xad\xc8\x5e\x58\x9d\xa1\xb3\x36\x3a\xfd\x4e\x86\x75\xd9\xfd\x9b\x3d\xab\x51\x18\x93\x94\x9d\x81\x96\x74\xbe\x71\xbc\x36\x87\x97\x35\x4b\x05\xc4\x2b\x55\xb5\xf9\x75\xb4\xa0\x49\xe6\xbb\x78\xdf\xf3\xc3\xd4\x4d\x26\xe4\x81\x24\x06\xad\x31\x12\x10\xb8\x60\xac\x86\xdf\xa0\xff\x65\x2a\xd3\xa0\x6f\xc7\xec\x23\xb0\xe1\x24\x59\x03\x96\x8c\x6f\x19\xab\x42\x33\xf7\x95\x03\x50\x36\x6a\x0a\xe5\x07\x62\xf6\x7a\x81\x1f\xc8\x98\xb9\x66\xfe\x17\xba\x47\xff\x8a\xbe\xad\x53\xef\x5c\xfc\xc1\x13\xdb\x39\x3e\x04\xde\xfd\xe0\x96\xb3\x8c\xd2\xf2\x1b\x67\x06\xc9\x19\x21\x2b\x72\xca\x3c\x24\x1c\x65\x0f\x3c\x2a\x05\xb9\x84\xa7\x16\x0b\xc2\xd4\x84\xf1\x98\x4c\x48\x85\x4b\xb3\x81\x49\x68\x21\xe0\x92\xc7\x64\xa3\x43\xd2\x33\xd3\x9f\xc1\x74\x23\xd3\xa9\xdf\x0e\x48\x6d\xf1\x79\x0c\xde\xfa\x90\xa7\xb4\xea\x91\x7b\xdc\xa5\x6d\xc6\xbd\xad\x33\xf5\xca\xca\x67\x3d\xb8\x10\xec\x00\xaa\x1d\x7a\x09\x56\x2e\x5c\xbc\x78\x1c\x8b\x8e\x00\xfd\xb2\x9e\xb9\xbd\xac\x02\x44\x29\x40\xfd\x15\x74\x4e\xb5\xfc\xde\xde\x61\x0b\x9c\x70\x1b\x6f\x86\x81\xd7\x69\xe5\xce\xc8\x96\xc2\xa5\x18\x1e\x79\xfa\xcb\x9c\x90\x53\x9e\x16\x05\x78\xbb\x00\x54\x86\x81\xec\x56\x56\x5f\x6b\x3e\x3c\x37\xc1\x92\x64\x41\x4d\xb6\x49\xff\xec\x02\xe9\xd3\xc1\x97\x26\x25\x1b\x16\x2d\x55\x0b\x2e\xe8\x6f\xb5\x01\x5c\xf5\x32\x7a\xe6\x69\xcd\xe2\xdd\xcc\x38\xf3\xd2\x3a\x10\xab\x11\x29\x54\x4e\x2b\xa9\xd2\x99\xd0\x34\x05\xf4\x21\xcd\x66\x67\x69\x62\x20\x4b\x23\x2e\x62\x53\x3a\x4f\xe6\xa2\xeb\xf4\x7b\x5e\xbc\xc7\xca\x37\x48\x2d\x48\x8b\x05\x45\x35\x16\x9c\x46\x01\xf4\xaf\x29\x49\xf7\x14\xa0\x68\xb1\xfa\x9f\x29\xf2\xa3\xa8\x06\xe0\xb9\xcc\xe2\x77\xcd\xda\x68\xde\x9c\xad\xef\xdf\xf5\x4c\x65\x10\xde\xeb\x2c\x8b\x3e\xf9\xd9\xa8\xe4\xa6\xaa\x4b\x27\x8b\xce\x8d\x01\x7d\xdc\x83\x49\xe7\x39\xe2\x39\xca\x32\x52\x05\xfb\xb1\xe4\xf7\xe0\x03\x5c\x8b\x2c\xe2\x89\xec\x24\x0e\x3d\xb3\x20\x7d\x3c\xa1\xc9\x64\x0b\x26\x57\x16\xaa\x9b\xd6\x3b\x30\xa0\x78\xb6\x56\x11\x77\xae\x38\xd2\x73\x7f\x14\x14\xb0\x11\xd6\xd9\xcb\xbe\x80\x91\xbb\x2e\x42\x1e\xa3\xa5\x14\x23\xd6\x42\x5c\x87\x5b\xc2\x75\x35\x8f\xef\x60\x80\xb0\x0d\xe5\xbb\x2e\xfb\xed\xeb\x4e\x84\x61\x49\xaf\xf5\x48\x94\x13\x23\x37\x1e\x06\x8f\x81\xfb\x32\x06\x44\x2f\xda\x3c\xf1\xc9\xe8\x44\x21\xc1\x45\xd6\x99\x44\x6e\xf3\xa6\xca\xce\x74\x61\xfa\x9e\x80\x9f\x7b\x67\xf7\x4e\xe0\x02\xc8\x32\x2b\x4c\x4a\x9d\x4b\x86\x7e\x26\x43\x26\x44\x0e\xe4\x93\xfa\x82\xc0\x81\xba\x64\xdc\x27\xe5\x67\x19\xf8\xa8\xe3\x48\x2d\x87\xd2\xe8\x2e\x6d\xe9\xfc\x04\x0b\x59\x13\x7b\xbd\xb0\x51\x9f\x79\xb7\xa1\xcf\x49\xcd\x42\xed\x6c\x85\x18\x25\x30\x24\x10\x40\xd8\xf7\xcf\x46\xcb\xa3\xd2\x58\x61\x1c\xc8\xe8\x72\xa5\xd6\x16\x93\x1e\x78\xb3\x45\xab\x56\x0b\xcc\x6c\xbe\x7d\x95\x8b\xb2\xc8\xa7\xe3\x9c\x93\xb2\xaa\x33\xe8\xc8\xaa\xb6\x95\x4d\xba\x85\x0e\x13\x7e\x0a\x49\x15\x75\x11\x09\xa6\x42\xcd\x04\x27\xb5\xf6\x94\x29\xe7\x09\xc1\xac\x4e\xed\xac\x7c\x5c\xb2\xbe\xd2\x30\x91\xc2\x42\xef\x28\x91\x12\xad\x73\xe3\x24\x29\xcc\x0b\x43\x91\x59\xe5\x21\xfe\xa7\x59\x29\x9d\xf6\x0e\x53\x93\x66\xdc\x25\x42\xcf\x7c\xd0\x48\x45\x36\x75\xd9\x15\x41\x6d\x95\xa5\x1b\x86\x7f\x55\xe6\x34\x6f\x1a\x58\x98\x09\xdd\x28\x42\xe4\xb3\x89\xb7\x1b\xa2\x24\x51\x2a\xa8\x5a\x4f\xac\xe1\xa9\x3d\xd3\xba\xb5\x5f\x9e\xd9\x0f\xdb\x68\x75\xa7\xc8\xf5\xe7\x0c\x5d\x20\xde\x08\x6a\xf0\x8b\xed\x14\xda\x6c\xb7\xd6\xd4\x2a\x73\x1d\x9b\x16\xd6\x25\x5b\xb6\x1b\xaa\xee\x62\xdb\xe1\x59\x5c\xd4\x09\x9f\xb9\x34\xc6\xf6\x0b\x5b\x04\x8c\xed\x60\xb1\x73\xe0\x57\x2b\x41\xb9\xb0\xb8\xac\x6d\x02\xab\x96\xf8\xf3\x64\x85\x05\x4e\x12\x92\x50\xb9\xdc\xde\xbe\xf8\xa7\xef\x1a\x47\x7b\x66\xf0\x83\xa5\x45\xe3\xfe\x4c\x97\xe9\x32\x28\x5e\x0e\xa0\x45\x01\xf4\x88\x35\xd9\xdb\x94\x4b\x37\xc0\xec\xa2\x61\x8a\x8a\x00\x4c\x46\xeb\xc4\x1e\x56\xcc\xaa\xcb\x38\x5a\x40\x51\xd9\x19\xa6\x82\x11\x29\x8f\xd1\x25\x57\xe4\x14\x7d\xc2\xab\x11\x28\x7c\xa6\xa0\xc7\xdc\x58\x68\xb1\x44\x5a\x72\x4a\x19\x55\xbd\x31\xb3\x58\x64\x6e\x55\x4e\x22\xce\x0c\x1e\x4d\x04\x0b\xeb\x9b\x00\x93\xa3\x03\x66\x51\x06\xe3\x5f\x53\x49\xcd\x62\x0b\xfc\x38\x09\x22\x28\x27\x26\x42\xbd\x03\x1d\xdf\xe0\x47\x13\x33\x0c\x35\x18\xcd\xd7\x0d\xd2\xa3\x0d\xca\xb1\xf8\xcd\x06\x86\xc9\x05\x2f\x70\x40\x13\x25\xc8\x23\xcf\x9b\x08\xc9\xaf\xe9\x31\x39\x46\xdf\x27\x7c\x2a\x7b\x48\x7a\xc8\x32\x57\x22\x52\xf6\x8c\x93\x04\xfe\x36\xd9\x24\xef\xdd\xea\x67\x7c\x1f\x8a\x2e\xcc\xe8\x67\x53\x74\x5f\xfe\xe9\xf4\xe4\x64\xb9\x3e\x9a\xa6\xd1\x3d\x51\xfa\x5f\x20\x53\x54\xae\x90\x4d\x07\x9c\xe0\xaa\xf4\xd1\x4d\xab\x53\x4e\x3d\x6d\x45\x91\x16\xb4\xc0\xc2\x59\xe8\x2b\xdd\x97\xb5\x71\xd9\x89\x9c\x55\xd7\xec\xb0\x53\x16\x69\x27\xad\xaa\x5f\x08\xe0\x84\x12\x3c\x4b\x10\xeb\x64\x56\x69\xc0\x69\x81\x5e\xa8\xce\x31\x1f\x40\x0b\x82\x8f\x63\x4e\x64\x60\xde\x41\x5e\x4b\x4b\xe8\x8c\x68\x9e\x30\x66\x7c\x96\x37\x45\x19\xd0\x21\x87\x41\xa4\x3b\x8d\x04\x97\xd2\xc6\x64\x9a\x76\x9a\x23\xeb\x77\xc0\x37\x37\xc8\x49\xa6\x38\x5e\x11\xe9\x3c\x78\xe6\x30\xcf\xed\xc3\x4a\x58\xab\xda\xa6\x36\x22\x9c\x67\x6b\xd1\x01\xe3\xfc\xe4\xec\x62\xe8\x81\x7d\x0b\x5d\x97\x41\xce\x43\xb4\xa9\x7a\x98\xf3\xf2\x8c\x03\xc0\xf3\x42\x13\x0d\x90\xe7\x9b\x37\x2b\x1f\x09\xb6\x4b\xbe\x69\x61\xeb\x37\x9d\xca\x02\xcd\x6c\x0a\x58\xdc\xd3\x36\xd5\x84\xaf\x47\xc0\xc6\x9f\xda\xf7\x02\xec\x50\xbf\x25\x15\x5e\xae\xc2\x64\x1c\x97\x7c\x6f\xa7\x69\x8e\x5a\x9d\xcc\xfe\xac\x18\x4f\x11\x36\x7e\xce\xe2\xe0\x4a\x5b\xd1\xcd\x16\x3a\xb2\xd0\x51\xfb\x08\x70\x7b\xbe\xec\xb6\x64\x9d\xc5\x73\x48\x5b\x08\xcd\x57\x27\xae\xb6\x08\x4d\x89\x87\xc9\xaa\xdd\xd0\x5d\xd3\x57\x9c\x84\x8a\x04\xc1\xd2\x3a\xea\x20\xcb\xa3\x10\x01\xde\xc1\x68\xe3\xc7\x6c\xf2\xc4\x8e\x3c\x30\x5d\x70\xd5\x58\xac\xe5\xc8\x1d\x44\x2a\x04\x81\x1a\xcf\x06\xec\x77\x58\xb8\x5d\x00\x97\x59\x10\x1c\xaf\x83\x15\xf1\xae\x28\xd3\x33\x28\xad\x92\x2e\xb5\x58\x0d\x02\x03\xe3\x47\x7c\xe5\x24\x89\xdc\x5b\x80\x2a\x48\x67\xfa\xc6\x0a\x1c\x59\xfa\x0b\x76\x04\xc5\x4b\xb5\xe4\x55\x11\xc5\xe3\x1a\x81\xa8\x1f\xc0\x1a\x5e\x10\x7b\xc3\x8d\xdf\xf5\xbf\xbf\xba\x19\x0d\xce\xc7\xef\xb2\xb8\x4d\x97\x98\xe0\x64\x4c\x0f\x7a\xc6\xd9\x98\xf9\x50\x2b\x8f\x22\x02\x7b\x89\x70\x1c\x67\x18\x4e\x56\xb4\x33\x91\x22\x8d\x1c\x39\x38\x15\x1b\x83\xac\x1a\x9a\xb9\x83\xe8\xf4\xd7\x7a\xb2\x1a\x8c\xaa\xb9\x93\x63\x62\xec\x1b\x82\xa1\xf7\x74\xd9\x84\xa0\x07\xca\x48\xc0\xc4\x97\x42\x65\xe4\xd1\xda\x58\xcd\xed\x7c\x82\xcd\x25\xdc\x8d\xdb\xb9\x0d\xd9\x62\x53\x3f\xd0\xcf\x24\xbe\xa9\x91\xaa\xf6\x12\xeb\xdc\x2a\x46\xa4\x72\x17\xb4\x56\xd4\x61\x13\xfc\x54\xee\xf4\x77\xed\xd9\x92\x61\x6f\x05\x5c\x02\x00\x25\x50\x08\xa3\x88\x08\x85\x29\x43\x33\x38\xd8\x5a\x13\x83\x8c\x77\x02\xde\x8d\xef\xd0\x92\x32\xc8\x29\x6d\x5a\xda\xbb\xfc\x3c\xba\xd4\x1a\x1c\x5e\xde\x8d\x72\xa2\xea\x0f\x57\x77\xf9\x42\x57\xfd\x5f\x1a\x65\xd5\x42\x0b\x4d\x6e\xe4\x60\x8a\x59\x7e\x8a\x85\x67\xf0\x2b\x53\x35\xd1\x8f\x44\xfd\x64\x6a\xef\xef\x23\x78\xd3\xca\x59\x60\x52\x27\x13\x5b\xd4\xbf\x03\x19\xd8\xa1\x34\x44\xe8\x3a\x49\x0e\x7a\x40\xb6\x87\x30\x5d\xf4\xd8\x94\x74\x82\x12\xef\xe0\xc9\x76\x61\x10\x5a\x5f\xe2\x4c\x2f\xd7\x18\xde\x46\xaa\xd4\x1c\x9f\x99\x8f\x5b\x85\xe5\xdd\x84\xc1\x78\xba\xad\x6c\x29\x51\xff\x7a\x58\xb1\xd6\x17\x45\xab\xe3\x97\x05\x58\x98\x78\x03\xe8\xbe\xb1\x0a\x83\xac\x8a\x57\x01\x53\x68\x67\xba\x1b\x42\xa1\xf1\x13\x5d\xe7\x9d\x4f\x4f\x7a\x0d\xef\x20\xcf\xe6\xb2\xa5\xac\x62\xb0\x1f\xa8\x86\x6c\x19\x3a\x62\x35\x84\x03\xb2\xd1\xab\x21\x3e\x41\x39\x34\xaa\x17\xe2\x15\x98\xa2\x9a\xce\xd3\xb5\x37\x0c\x87\x6c\x36\x6d\x40\x1c\x7e\x32\x14\xed\x73\x7c\x21\x6b\xd9\x21\xa8\xbb\x90\x26\x9b\x72\x17\x4e\x37\xa4\xb6\x6e\xb8\x0f\xd9\xf8\x9c\xbb\xd7\x56\x01\xc1\x2b\x6c\x95\x62\x90\xf0\x1d\xfe\x55\x15\x12\xf6\xf1\x98\x05\x3e\x4e\x69\x64\x72\x7d\x46\x1c\xfc\x1c\x94\xa8\xd0\xec\xd4\xc6\x16\xfb\x9b\x39\xb7\x03\xc5\xcc\x3e\xb5\xc8\x03\xc8\x95\xfa\xb1\xa7\x53\x2e\xb0\xcb\x9f\x70\xea\xbd\x0d\x5f\x08\x8d\x1f\xd0\x5e\x00\x13\x65\x3b\x26\x0f\xc4\x86\x3c\xe0\x00\x5f\x3a\xc8\xb9\x8b\x39\x91\xec\x2b\xe5\x33\x54\x68\x62\x41\xef\xb0\x8f\x4a\xcd\xfc\xea\x12\x53\xdb\x72\xf3\x01\xdf\x03\xa8\x44\x57\xa9\x36\x38\x56\x1b\x6d\x28\xce\x2d\x00\x94\x10\xba\xaf\xa1\xd3\x3a\x04\x88\xcf\x2b\x12\x6d\x93\xf9\x7e\x8d\x05\x5e\x12\x45\x44\x93\x07\x3b\x5f\xfd\x05\xbc\xb3\x6e\x07\x6d\xbf\x66\x17\x0d\x7e\x5a\x11\x68\xcf\xab\x5e\x17\x9b\x32\xd9\xfd\x2c\x3a\x81\x76\xe8\x69\xfc\x64\x01\xe3\x3a\xce\xc2\xf6\x93\x4d\xc3\x3a\xe8\x03\xe0\x82\x5d\xe7\xf4\x3c\x19\xdc\xa3\x52\x2e\x74\xce\xc3\xfc\x4a\x52\xb7\x37\x8f\xb2\x2e\x67\x7b\x13\x2f\xdd\x0b\xef\x76\x81\x99\x2e\xf3\xa7\x70\xa8\x72\x21\x9f\x40\x25\x20\xef\x9b\xf4\xe5\xea\xbc\x6b\x10\x5a\xaa\x82\x6a\x82\xf0\x75\x8b\xca\x93\x59\x1b\xad\x64\x55\x84\x0f\x2d\x2c\xd7\x06\x1e\xb7\xaf\x9c\xd4\x83\x44\xb3\x6f\x89\xa6\x83\x6d\xcf\x50\x27\x11\x85\xf4\x78\x5b\xa5\xc5\xe6\x35\xe6\x27\x08\x21\xd3\xf6\x8a\xb4\xa5\x1e\xe0\xea\xa7\xcc\xff\x95\xe7\xe0\x8e\xa8\x43\x52\xad\xca\x05\x39\x0e\xfc\x23\xe0\x1e\x49\x42\x69\xc0\xba\x62\x61\xb4\x26\x72\xc6\x98\xa0\x87\x97\xc6\xbb\x02\x39\x59\x6b\x9e\xa2\x47\x2a\xb5\x2e\x3c\x66\x10\x5a\xe2\x4d\xd5\x8a\xdb\x5a\xb3\x3d\x78\x0b\xb2\x37\x65\x3a\x5d\x52\x85\x70\x30\xc3\x9c\xbd\xac\x67\xcf\xb3\xfe\x00\x66\x5c\x99\x1e\x58\x85\x2c\xb0\xe1\xd0\x6c\x61\xfc\xc9\x1a\xd9\x35\x03\x30\x08\x83\x7b\xda\x1c\xc0\x40\xe3\x09\x35\xcc\xca\x33\x77\x48\x02\x44\xd5\xd6\x06\x8b\x75\x06\x80\x74\x54\xaa\xc2\xdd\x62\x11\xce\x36\x24\x00\x66\x1b\xd1\x2a\x03\x30\x7b\x7d\x1f\x29\x80\x75\xe0\xb3\x4d\x29\x21\xee\x93\x1a\xe3\xac\x4b\x35\x52\xdc\xc5\x5a\x86\x92\xd2\x75\xad\xa4\xf4\xda\xc0\x58\xb2\x18\xd2\xed\x23\x12\xbb\xa8\x83\x59\x58\x79\x48\x45\x41\x96\x48\x3e\x95\x9d\x14\x39\x3f\xe3\x0a\x42\x81\x23\xa8\xb9\x54\x4a\x4f\x19\xb3\x6a\x09\xa4\x99\x27\xee\x1a\xd5\xbb\x57\xd0\x96\xe0\xfc\xb9\x59\x58\x8b\xd6\xcf\x3e\xcd\xcf\x28\xcb\xb6\x7a\x52\x51\xc4\xcc\xfc\x4f\x35\x0a\x08\x08\x1e\xdb\xe4\x49\x55\x9c\xca\x96\x31\xb7\x1b\xcf\x85\xbd\x74\xf7\xa8\xda\x95\xb8\x73\xeb\x10\x65\x2f\x23\x5b\x6e\xec\x62\xec\x9c\x1a\x5f\x70\x23\x6e\x53\x46\x00\xb0\xd0\xf6\x86\xe0\x56\x4c\xaa\xd4\x8d\xf7\xc0\xf5\x68\x87\x8e\x4d\x18\x86\xc7\x15\x2d\x6c\x49\x6e\xc2\xb6\xda\xd6\x13\x4c\xba\x6b\xe9\x87\xc0\x15\x26\x6c\x80\x18\x0d\xed\x06\x50\xf3\xc1\x82\x44\x15\xf8\xb0\x17\xed\x52\x16\x13\xc1\x08\x56\x8b\xe7\x0b\xcb\x3d\xdb\xd5\x38\xfd\x6c\x21\xba\x67\x7b\xa9\xfb\x53\x08\x7b\xed\x18\xf1\xda\x21\x7c\x34\xab\x02\x51\x52\x1c\xab\xca\xe7\x65\x99\xf3\x5d\xa8\x74\xa7\xc8\xdd\x6a\x65\xee\x69\x62\x98\x2b\xac\x3e\xa5\xe8\x65\x7d\xd8\xc3\xda\x19\x1b\x96\xe4\x8b\x08\x16\x7e\xfa\xf8\xd5\xa6\xca\x1c\x69\x10\xd2\x0a\xa5\x52\x14\xa6\xcc\x72\xaf\xa6\x28\x56\x53\x67\xbc\x2a\x70\xf5\xd5\x87\x44\x7f\x99\x11\xd1\x9b\x44\xd9\x26\x43\x8a\xb7\xed\x43\x1d\xd0\x1c\xc2\xb7\x91\x40\x36\xc8\xa3\xdb\xc7\xad\x3a\x5b\x44\xe8\xf4\xb7\xbf\xd8\x1f\x2a\xfd\xfe\xa5\xcf\x8a\xb3\x0d\xed\x22\x6c\x5d\x34\x2f\x62\x11\x27\x16\x86\xc3\x46\xe5\xe5\xf5\xd8\x26\x93\xcb\x98\xfd\xc0\x1f\xc9\x03\x11\x3d\x84\x15\x5a\x72\xad\x86\x04\x7e\x76\x80\x0a\xc8\x21\x3a\x1a\x7f\x2a\x46\x97\x78\x49\xe2\x01\x08\xb3\x41\xec\x8e\x35\xfc\x58\x97\x4d\x15\xda\x14\x00\x27\x99\x6d\x70\xfe\xd7\x31\x33\xf1\x34\x26\x86\x03\xb8\x0e\x75\x13\x83\x2b\xf1\x8f\xde\xa1\xf4\xc7\x63\x34\xd2\x94\x4e\x65\x7e\xbc\x01\xf8\x44\xdd\xd8\xc6\x6c\x2e\x78\xba\xf2\xba\x38\x9f\x82\x11\xc0\x38\x96\x2a\x1c\x4a\x30\x18\xe7\x4d\x8a\x70\xac\x65\xfa\x66\xc2\x79\x91\x50\xab\xad\x32\xb8\x43\x02\xd2\xdc\xc1\xc7\x8f\xd8\x78\x4e\xe3\x07\x0a\xf2\x56\x9b\x70\x28\x9f\xc8\x49\x75\x4e\x24\x68\x97\xde\x7a\x97\x4b\x61\xca\xa7\xc9\x55\x8e\xb3\xc9\xb6\xe2\xed\x9f\xce\x46\x58\x9d\x81\x97\x75\x6e\x63\x47\x5c\x99\x6a\x20\xe0\x27\xb3\xba\xb4\x0e\x11\xab\xe3\x17\xd7\xa9\x58\x71\xe0\xe9\xc9\xda\x65\x0c\x5a\xa0\x8b\x15\x5f\xa5\x26\x3e\x86\x86\xe1\x12\x95\x94\x4d\xa5\xfa\x84\x55\xb4\xd0\x0a\x4c\x06\xf8\xb0\xa7\xb8\xa1\x8c\x2b\x3f\xad\x25\xa6\x62\x06\x67\x61\xef\x35\xa6\xc9\x16\x96\x39\x83\x18\xe7\x62\x48\xe1\xaf\x24\xf1\xd5\x55\x2b\x6b\x5c\xb9\x4f\xec\x13\xa8\x4f\xbf\x81\x8a\x36\x8d\xbf\x1d\x6d\xe5\x0b\x0e\xec\x3d\x22\x69\x87\xec\xe5\x73\x8b\x57\x90\xbd\x88\xac\x84\x54\xc9\x72\x52\x41\xb7\x0b\x75\xb7\x20\xa1\x0f\x5a\xe4\xf0\x96\x9b\x25\x5e\x69\x71\x44\x71\x7d\x4b\x8a\x39\xe9\xa1\x47\xcd\x0b\x54\x2a\xf4\x3d\x92\x0a\xea\xce\x7e\x21\x1d\xa9\x9e\x3a\xc0\xd2\x71\x12\x02\xca\x47\x38\xa8\xb5\x61\x1c\x87\x38\x52\x29\xf6\x01\x4e\x40\x13\x09\x65\xf7\xba\x33\x93\x7a\xe5\x1c\x74\x82\x98\x14\xac\xb8\x62\x4f\x37\x12\xf6\x0e\xbb\x5c\x5f\x39\x6e\xd3\x49\xa3\x6c\x1e\x60\xc3\x54\x5b\x9b\xda\x40\xbf\x56\x7e\xd9\x0e\xbe\xb6\xf2\x53\x27\xfb\x6c\xf3\x6d\x03\x6e\x40\xed\xe7\x9b\x04\xd8\x5c\x30\xa7\x0d\xa8\xb3\xd2\x53\x88\xda\x63\x2d\x01\x00\xbe\x65\x4a\x35\x62\x2b\x4d\xfd\xa7\xff\x97\x29\x15\x60\x96\xe6\x3f\x11\x17\x63\x66\x7e\xef\x79\x98\x5e\xfd\x42\x86\x7f\x85\x97\x24\x43\x08\x12\x79\x2c\x11\xc8\x66\xb5\x58\x10\x06\xeb\xcc\xa3\x94\xea\x31\x04\x75\x31\x4b\x55\xf9\x96\x98\xe1\x39\x20\xab\xf5\x20\xc2\x06\xc4\xd5\xcc\x76\x61\x48\xda\x94\x7b\x01\x6e\xa5\x99\xa5\x4d\x2a\xcb\xaa\x56\x41\x9f\x46\x94\xb5\xc0\x4e\x99\x9b\xb6\x9a\xfa\x5d\xc9\xc4\xed\x24\xf6\x51\xff\xf6\xc7\xc9\xcd\xe0\xf6\xea\xee\xe6\x2c\x27\xb6\x9f\x5d\xdc\xdd\x8e\x06\x37\x95\xcf\xb2\x84\xac\xbf\xde\x0d\xee\x6a\x1e\xb9\x06\x2e\xfa\xdf\x0f\x2e\xc2\x57\xfe\x7a\xd7\xbf\x18\x8e\x7e\x99\x5c\x7d\x98\xdc\x0e\x6e\x7e\x1a\x9e\x0d\x26\xb7\xd7\x83\xb3\xe1\x87\xe1\x59\x5f\x7f\x19\xbe\x7b\x7d\x71\xf7\x71\x78\x39\x71\xe1\x8b\xe1\xa3\x9f\xaf\x6e\x7e\xfc\x70\x71\xf5\xf3\x24\xe8\xf2\xea\xf2\xc3\xf0\x63\xd5\x2c\xfa\xb7\xb7\xc3\x8f\x97\x9f\x06\x97\xa3\x46\x45\xa4\x7a\x35\xea\x2b\x7f\x67\x17\x59\xa0\x7e\x06\x62\xd2\x74\x6d\x49\x9b\xfe\x06\x46\xd0\x6b\x43\x8f\x47\x3d\xf7\x2f\x53\x18\xee\x48\xb3\x40\x67\x5f\xcf\xb8\xc7\x98\x79\x07\x88\xbf\x54\x15\x9e\x4b\x97\x5f\x97\x1b\xed\x29\xea\xc3\x59\x01\x85\x21\xd7\x29\xe4\x0d\xfb\x91\x3a\x97\x19\xd0\x61\x42\x97\x14\xbc\x67\xe8\x08\x15\x37\x3c\xdf\xa0\x9d\x13\x0c\xc1\xda\xff\xe3\xa6\xd3\x20\x8b\xa9\x7b\x40\x29\xa7\xc8\x71\x68\xdd\xac\x1e\x17\x40\x6f\xad\x19\x5e\xd2\xc8\xfc\x50\x40\x9f\x42\x59\x96\x6b\xb1\xc5\x1c\x81\xe5\x5b\x5e\x10\xf4\xe3\x5f\xb2\x41\x81\x2d\xd4\xda\x16\xd3\x52\x41\x11\xfb\x40\xa4\x66\x55\x37\x91\x67\xae\x27\x77\xcc\xad\x91\x0a\xce\xad\xad\x3b\x07\x86\xeb\x94\x05\x48\x17\x39\x2b\xb6\xad\x41\x8b\x8e\x50\x81\xc6\x4f\x91\xa9\x88\x2f\x33\xd5\x5d\xef\xe2\x2a\x49\xe7\xb4\x54\x76\x72\x4a\x16\xf8\x81\x72\x87\xde\x6b\x40\x8e\x61\x1d\xad\x68\x85\x8e\x50\xed\x41\x39\x45\xfd\x38\x96\x79\x06\x97\xa3\x1c\xc7\x32\x8f\xf2\xc3\x0e\xc1\x29\x58\xec\xd9\x66\x81\x8e\xb2\x23\x07\x2b\xb6\xff\x3c\xe2\x32\x3b\xcc\xdf\xbd\x3b\xe1\xb2\xc9\xfb\x89\x23\xe5\xc9\x56\xc2\xc0\x08\xcb\xfb\x8a\x6a\xb6\x95\xf7\xab\xcb\xe8\xde\xad\xc7\xfa\x12\xba\x95\x9d\xfa\x95\x9d\xc0\x41\xdb\xae\xcf\x5a\x50\xbc\x0d\x5d\xba\x19\x27\x85\xca\x05\xad\xfb\xcb\x55\x3e\x78\x7a\xbb\x71\xb5\x34\x06\x47\x72\xe2\xe9\xbf\xc3\x3c\xae\xe1\xd3\x2b\xff\x65\xa3\xc8\x36\x09\xd6\xad\xab\x35\xb9\x94\x89\x66\x2d\xca\x8d\x74\xb8\x27\x64\x81\xf6\xc2\x20\xe0\xce\xd2\x08\x1c\x07\x98\x32\x8b\x46\x4e\xbc\x65\xdb\xd5\xdf\xd3\xe7\xd8\x57\xc8\xc0\x53\xfe\x90\x53\x2e\x97\x44\x4a\x5c\x93\x95\x1f\x98\xc4\x76\x61\x0c\xfe\x84\xda\x0f\x5b\xd2\x93\x3b\x93\x23\xfd\x55\x93\xd1\xe7\x26\xd4\x8c\xdd\x44\xb5\xc0\x1a\xbb\x88\x3d\x74\x65\xf2\x76\x34\x7f\xe9\x65\x4e\x79\x2e\x82\x58\x85\x1a\x6b\x55\x5b\xb3\x5a\x71\xc1\x2a\x41\xe6\x43\x67\x40\x77\x5f\x7e\xd0\xfa\xd6\x80\x80\x58\xf0\x94\xc5\x08\xe7\xd7\xa7\x03\xd5\xe5\x3c\x27\x61\x01\x3e\x53\x6b\xd6\x54\xf7\x0d\x46\xda\x43\xd8\xa4\x4b\x65\xd2\x94\x4c\xa3\x85\x81\x2a\xd7\x57\x46\x6f\xcc\x1e\x83\x0d\xc9\x05\x14\xf6\xc3\x96\x00\xc8\xea\xb3\x3e\x6e\xf4\x21\x17\xa6\x09\x22\x23\x85\x98\xc1\x80\x10\x8c\x6b\x21\x43\xcf\xdf\x40\xe0\xc1\x7e\xed\x40\xea\x5b\x94\x4a\xa9\xa8\xe6\x5b\x55\x30\xc5\xcf\x2d\xa8\x53\xb2\x83\xa6\xdc\x76\x08\x41\xa9\x94\xaa\x11\xec\xa1\x52\xca\xb3\xa2\x1b\xfa\xb4\x2f\x93\x25\xb8\x9c\xda\x44\x6c\x3d\x5d\xb7\xda\xff\xea\x66\xf4\xaf\xc6\xef\x90\xd6\x64\xee\x07\xad\x79\x80\x43\x74\x04\xb5\xe7\x6d\x46\xa9\x75\xe9\x4a\x74\x64\x00\x6b\xbe\x82\x88\xad\xfe\xf5\xf0\xab\x1e\xfa\x2a\xcc\x5a\xf9\x6a\xab\x03\x68\xc7\x6d\xab\xa5\x80\x36\x95\x0b\x5d\xce\x1f\x3b\xd8\xab\xc2\x49\xb4\x7b\x66\x0f\x22\xaa\x3b\x87\xfa\xcb\xdc\x37\x94\x29\x22\xa0\xfa\x87\x89\x70\xf5\x81\x93\xd6\x05\x64\x64\x5c\x2a\x2b\xd6\x2e\x1e\xb3\xe9\xba\xe8\xe4\xe9\x79\x2f\x4f\xeb\x53\xba\x73\x45\x0b\xdd\x5e\x39\xcd\x71\xcf\x01\x7d\xcd\xf7\xc1\x86\xc4\xc9\xbe\xaf\x34\x9d\x71\xb1\x3a\x04\xa8\x43\x24\x6c\xd5\xac\x72\xf6\x32\xb7\x98\x95\x9b\xb2\x49\xfe\x79\x6b\xe4\xd6\x22\x7c\xb4\x5f\xb5\x22\x36\x72\xb8\x46\xb8\x3e\x50\xd9\xd3\x52\xd9\x3e\x22\xa7\xf3\x83\xeb\x7e\x81\x9e\x19\x39\x2e\x68\xc6\x19\x5c\xb5\x32\xe1\x19\x7c\xae\xec\xc9\xe6\x7a\x61\x1d\x7d\xbe\xc1\x9a\x6c\x76\xfa\xde\x9a\xc0\x01\xe3\x76\x2d\x8f\xb5\x38\xd4\xbe\xb2\x18\xec\x9c\x9a\x2c\x29\x45\x97\xa4\x87\x38\x4b\xd6\x41\xb0\x83\x3d\xaf\x40\x6e\x70\xc7\xd9\x62\xc6\xa6\x13\x0b\xa4\xd5\x29\xad\xb6\xa3\x34\x5e\x47\x23\x3b\x44\x9a\x5c\xf6\x3f\x0d\xce\x27\x83\xcb\xd1\x70\xf4\x4b\x05\x48\x5a\xfe\xb1\xc3\x49\x0b\x5e\xb8\xfd\xe5\x76\x34\xf8\x34\xf9\x38\xb8\x1c\xdc\xf4\x47\x1b\x30\xd4\x9a\x3a\xab\xc3\xe7\x4a\x65\x95\xfa\xd6\x05\xa3\xcb\x99\x79\x2b\x7a\x2f\x23\xa9\x05\x9d\x50\x52\x83\xa6\x66\x52\x88\x59\x4c\x04\x8a\xc9\x03\x49\xf8\x2a\x33\xab\x56\x2e\x58\x00\xb3\x56\xd1\x7e\x13\xd4\x1a\xb4\x59\x5c\xe3\x53\x64\x4a\x5d\x04\xd5\xbe\x7c\x83\x20\xf2\x61\x41\xd8\x57\x0a\x91\xcf\xab\x84\x46\x54\x05\x29\x46\x5c\x58\xf7\x8a\x71\x1f\x42\x9c\xdb\x06\xe2\xda\x5b\x34\xca\xde\x75\xfe\xd0\x93\x5e\xd6\xf6\xfd\x89\xf2\xb0\x3f\x1b\xf1\xd3\xf7\xa0\xd8\xd7\x38\x8d\x4b\xa8\x44\x5b\x8c\xee\x29\xcc\x03\xe5\x58\x7f\x9b\x26\x54\x83\x58\x54\x3d\xc8\xcd\xb7\x61\x53\x9c\x4c\xee\x5c\x37\x07\xca\xb4\xa3\xd4\x17\x0e\x77\xc9\xd5\x15\xda\x43\x06\xbf\x8d\x82\xed\x18\xb0\x50\x82\x2a\x67\xf7\x06\xc0\x19\x09\xb2\xe4\x4a\x2b\x60\x26\x22\xa0\xa7\x85\x2a\x8a\x13\xfa\x1b\x60\xdd\x08\x72\x1c\x44\x50\x40\x2a\x51\x1c\x86\x8e\xdb\x3c\xf4\xea\xb2\xf8\xb9\xa9\x6f\x5b\x1a\x9f\x08\xc1\x45\x7b\xfe\xe0\xfb\x1b\xc0\x77\xd5\xe4\x0d\xcf\x72\xb6\x29\x67\x00\xb8\xac\x2d\x0a\x17\x44\x1f\xef\x3d\xb9\xe3\x06\x3f\xe6\x56\x24\x4c\xe3\x07\x49\x24\xbf\xea\x4f\xb8\xda\x1d\x4b\xf2\xe7\xfa\xdc\x5c\x8e\x7f\xe4\xea\x3a\x57\xd6\xe2\x2f\xcf\xb3\x56\x54\x7c\x86\x8a\xfc\xe5\x94\xff\x02\xe9\xbf\x6c\x35\xfe\xc2\x60\x5e\x4f\x49\xfe\x8d\xeb\xf6\x7a\x31\x1d\x2a\x06\xda\xa2\x14\xbf\xf7\x27\x41\xe5\xb9\x6e\xd7\xb2\x0b\xca\xcb\x39\x95\xf4\xa1\xf2\xf7\x73\xb5\x96\x8d\xe5\xfd\xce\xdd\x8d\xb0\xbc\xaf\xe9\x6a\xd3\x0d\x7e\x96\x73\x28\x15\x96\xcd\xd5\x71\x37\xa0\x69\xa0\x45\x6f\xbc\x17\x07\x0f\x84\xa9\xbd\x08\x95\xd0\x44\x45\xce\x66\x3b\xd3\xb0\x29\x4b\x33\x3c\xcf\x38\x92\x2f\x8f\x1a\x84\xa2\x28\x81\x81\x39\x13\xf5\x48\x08\x73\xa1\x09\x75\xde\xd9\x87\xd6\x0e\x3f\x78\xb5\xbc\x2e\x1b\xe2\x99\xed\x6a\x67\xe5\xe9\xb2\x58\x44\x07\x3a\xbc\x25\x8a\x83\x24\x46\xf5\x0c\xb2\x87\xad\x46\x51\xdc\x73\xd3\xe7\x02\xcb\x62\x97\x1b\xb7\x7c\x0b\xc8\x82\x5c\x33\x1f\x09\x64\xf4\xec\xa5\x64\x74\x87\xcc\x4d\x18\xc8\x9d\x48\x20\xee\xb5\xd1\xf4\x60\x4a\xe3\xa5\x22\xc9\xae\x63\xdc\x42\xb0\x32\x83\xd1\x37\x3d\x59\x09\x02\xc5\x5a\x4f\xd1\x75\x42\xf4\x75\x99\xea\x2b\x33\x4d\x12\x07\xef\xd2\x7c\xa5\x77\x82\x24\x7a\xf2\x79\x05\x02\x63\xc3\xc4\x1c\xbc\x51\xf3\xcc\x82\x35\xd8\x7f\xbe\x6d\xb0\xbe\x60\xf7\x03\xeb\x4f\x5e\xf4\x07\xdd\x6d\x6d\x82\x1d\x41\xff\xc7\xa1\x8e\x22\xe9\x6f\xfa\xaa\x16\x44\x2e\x78\xd2\x38\x85\xce\xa0\x51\x5d\xe6\xe0\x96\xf2\x09\x27\x61\x23\xcd\x26\x75\xc1\xb0\x2d\x2e\xa3\x73\xd3\x44\xe5\x15\xd8\x34\x45\x8f\x4b\xed\x5d\xf6\x16\x6c\xcf\x86\x6e\xd9\xa1\x81\x23\x2a\xb3\x8f\x84\xc0\x37\x99\xbd\x39\x93\x40\xd7\xc6\x61\xe6\x3f\x0f\x8a\xee\xfa\x38\x6e\xaa\x64\x56\xa5\x02\xaa\x2f\x77\xe3\xb2\x36\xda\x3f\x6b\x42\x0f\xb8\x9a\xb5\x59\x48\x6a\x90\x53\x6c\x2c\x87\xcc\x41\xf6\xd8\x2d\x36\x53\xae\x94\xa1\xeb\x19\xe8\xae\x7e\x8b\x7c\xbd\xdd\x27\x73\x5f\xe4\xa8\x25\x37\x81\x03\x08\x4c\x77\x10\x18\x8b\x4f\xee\x69\x0f\x20\x9b\x94\x80\x1c\xcd\xcc\x43\x51\xbc\xe4\xad\x55\x71\x53\x6a\x49\x6e\x77\x5a\xe5\x91\xe4\xbe\xd0\xe7\xfe\x7c\x47\x17\x87\x9e\xcc\x7a\x02\x99\x79\xbb\x84\x39\xe4\xe6\x6f\xcc\xb3\xd0\x26\x89\x91\x49\x34\x35\x10\x95\x76\xed\xbc\x69\xda\x54\xa2\x1e\xb3\x1b\x3d\x0a\xf3\x45\xe6\xea\xce\xaa\xbc\x92\xac\x1e\xd5\x0c\x61\xfb\x15\x2c\x7a\x5d\xa4\x91\x9c\x04\x45\xae\xeb\x26\xb6\x87\x62\x6a\xdf\x9b\x77\xd0\x2c\xc1\x73\x07\xcf\x00\x05\xd4\x67\x99\x9e\xa4\x85\x3d\x53\x91\xdc\xa4\x0a\x9b\xcb\x83\x2a\x9b\xfe\xeb\x45\xe5\x94\x38\xa0\x4c\xf8\xcc\xf3\xaf\x2a\xe6\xea\x34\x31\xe6\x2c\x20\x72\xcc\x82\x3e\x1a\x70\xd5\x8c\x36\xb4\xa5\xd8\x0f\xfb\x4c\x63\xef\x59\x80\x3f\xcd\x0e\x95\x2a\x56\xdb\xe9\x2d\xf1\x0a\xec\x67\xe6\x0c\xf2\x99\xbf\x7f\x46\x36\x8c\xfb\x18\x46\xfc\x7f\xfe\xeb\xbf\x8f\x69\x9d\x79\x59\x4e\xec\x0a\xbc\x86\x9d\xec\xb6\x2d\xe1\xce\x07\x09\xdf\x8a\xa3\x98\x42\x29\xfa\x94\xca\x45\xa6\x20\x65\x65\xd2\x65\x2e\x34\x3d\xfb\xd5\x5e\x6e\x9a\x68\xb8\x5a\x18\x7f\x5a\x9e\xdc\xc1\xf8\x2c\xd2\xe6\x5b\x36\x60\x71\x99\xc7\x35\x73\xab\x05\x51\x8d\x41\x55\x73\x0c\xd7\x2e\x2a\x5c\x28\x05\x06\x15\xe0\x2e\xed\x12\xfd\xb5\xc0\xf2\xe9\x5c\xfc\x95\x35\x12\x8c\x55\x2e\xbc\x23\x37\x39\xfb\xcd\x20\x4d\xd6\x98\xde\x95\x54\x12\x61\x0e\xb4\x07\xe8\xa8\x28\x14\x09\xb1\x5e\x1b\x7c\x16\x64\x89\x69\xa7\xb8\x64\xfd\x7e\x35\xe6\x55\xce\x68\x89\xe7\x44\x4c\xe2\x34\x17\x84\xba\xa9\xed\x6b\xfd\xd1\x79\xaa\xd6\x9b\xdb\x97\x09\x8e\xee\xbb\xe0\x8c\xe9\xf7\x6b\x9a\xdd\x2c\x18\x06\xa1\x02\x79\xe1\xb0\x06\xc5\x8b\x14\x50\xbc\x6c\xec\x5a\x4e\x6b\x87\x8b\x86\x41\xa5\xcf\x40\xb8\xb7\x37\x91\xc1\x1a\x85\x91\x43\xed\x77\xc7\xba\x3d\x7a\x73\x7c\x3c\x66\x1f\x0c\xfc\x39\x28\x1e\x66\x00\x11\x24\x0e\x90\xcf\x2b\x2e\x49\x2e\x93\xa5\x02\x91\xd9\x66\xa2\xd9\x61\x54\xcb\xa4\x85\x4a\xab\x3b\x89\xa4\x2f\x8e\xc7\x56\xde\xf0\xf2\x94\xab\x29\x70\x27\xa9\x27\xa2\x2b\xaa\x69\x67\x52\x79\xd2\x9e\xae\x06\x7e\x16\x1b\x02\xc8\x1c\x2a\x59\xf7\x90\x9f\x5e\x81\x20\x12\xf2\x40\x04\x9e\x6b\x89\x15\xd3\x24\xc4\xdd\xce\x9b\x9a\x6a\xd8\xc9\xa6\x03\x94\xa5\x91\x01\x5b\x40\x71\x71\x04\xf9\x64\x9b\x2a\x5a\xcc\xa7\x11\xec\x9c\xf1\x52\xe5\xe0\xee\x20\x85\xf6\x43\xfc\xf1\x35\x51\x88\x7c\x56\xc4\x96\xcf\x1a\xb9\x9c\xa4\x72\x18\x33\xaa\x4e\xab\xa8\x17\x91\xf6\x4f\x15\xa5\x89\xd8\x4c\x54\x97\x74\x15\xbb\x7b\xdf\x26\x21\x2d\x30\x8b\x6d\x66\x9d\x95\xa5\xb5\x4c\x01\xb3\x33\x76\x20\x1f\x73\x6c\xf3\xc3\x02\xe0\x56\xd3\xa6\x41\x98\x85\x8b\xcc\xe9\x45\x5a\x32\x07\x37\x2d\x17\x5a\x40\x4d\x99\xa2\x89\x26\x0e\x3b\x06\xad\x35\xa7\xcc\x43\x27\x41\x84\x6c\x1d\x3a\x0f\x95\x92\xb2\xf9\xc4\xae\xa4\x4b\x12\x6b\x77\x31\xe4\x69\xea\x93\x69\xca\xfc\xf8\xbd\x6b\xa8\xd9\xce\x6b\xc8\x5a\x4f\xdf\xa7\xa7\x81\x60\xcd\xb8\x9b\x8c\x85\xbc\x71\x59\x6d\x13\x1a\xe7\x8a\x49\xc3\x44\xbb\x18\x29\x40\xac\x2b\xe7\x83\x67\x57\x88\xb4\x29\x67\x26\x91\x04\x22\x7e\x55\x4d\x4e\x9d\xac\xcd\xa5\x1b\x32\x2f\xa2\xd9\x32\x1c\x3e\x63\xb8\x90\x96\x87\x5d\x77\x36\xac\x19\x27\xc9\x14\x47\xf7\x5e\xd9\xf0\x2a\x37\x17\x0e\xc6\x58\x0b\xa8\x50\xa7\xc5\x10\x97\x1e\x68\x04\xd2\x8d\xad\x45\x0a\xc4\x64\x10\x41\xec\xb0\xb3\xce\x6d\x09\x6e\x66\x8a\x42\x83\x72\x6e\x46\x6f\x62\xa4\x63\xb2\x4a\xf8\x7a\x59\x73\x9f\x15\x53\x91\x76\xf1\xf8\xd7\x65\x42\xed\xf5\x2a\x2b\x30\xbd\xce\x97\x59\x29\xaf\x61\x0f\xf8\x34\x1d\xb8\xe4\xc7\x84\x4f\xc1\xca\x67\xb5\x6c\x17\xab\x1f\x84\x8c\x17\xcf\x73\xd7\x0c\x82\xe2\x89\xa4\x72\x95\xe0\x75\x53\x0f\x26\x76\xfd\x69\xf7\xcd\xe4\x3a\x6f\x36\x82\xb5\x8f\xfa\xac\xfc\xfc\x49\x4a\x9d\x3b\x49\xc0\xd6\x3c\x07\xfe\x65\x8d\x49\xc4\x59\x93\x4c\xd6\xd0\xf1\x4a\x70\x2d\x29\xf0\x31\x53\x78\xee\x76\xd7\x4a\x97\xfc\x91\x11\x21\x17\x74\x95\x2b\xe0\xb4\x73\x9c\xa9\x25\x69\xfb\x1f\x13\x55\xd9\x81\x79\xf2\xd5\x91\x81\x3a\xd0\x04\x22\x57\x38\xca\xac\x7f\x51\x82\xa5\xa4\xb3\x75\x80\x50\xe0\x43\xf6\x20\x0f\x24\xaf\x2e\x07\x35\x53\xaa\x38\x4d\x98\xf3\xbe\x9f\x44\xdd\xdd\x93\x94\xee\xf2\xa7\x90\xc6\x21\x20\x14\x94\x6c\x2e\x81\x52\xb8\x0b\xdb\x82\x53\x3c\x55\xee\x92\x1d\x99\xcd\xe0\xd9\xdf\xc0\x1c\x96\xc0\x76\x19\xbf\x8d\x20\x27\xf5\x66\x8e\x4c\xd8\xb5\xc3\xb6\x8a\x96\x07\x36\x08\xa7\x01\x73\x8c\xed\x17\x3e\x5b\x27\x97\xa7\x8e\x73\xd8\x1e\x66\x8d\xb4\xf2\xe7\x4c\xb8\xfa\x7c\x79\xe0\x04\xc8\x2f\xcf\x3a\xe8\x21\xb9\x13\xe0\x50\x7b\xd2\x3e\x27\x09\xd9\x4b\x0c\xea\x16\x74\x5e\x8c\x15\x08\x28\xbc\x91\x88\x32\x00\xe7\xcd\x66\x92\xee\x34\x5e\x1c\x55\x46\xdd\x7b\x1b\xd4\x16\xf1\xba\x35\x88\x2a\xd5\x23\xff\xd9\x0c\xd4\x86\xec\x56\x11\x18\x98\x17\x61\xeb\xdb\xaa\x86\x55\xd0\x6c\xa6\x05\x7b\x62\xb2\x6e\xdc\x3e\x3a\xec\x1b\x2f\xec\x3a\xe9\xeb\xf5\x1e\x83\x17\x0e\x70\xad\x19\xdd\x47\xd2\x26\xba\x63\xe3\x11\xdd\x8a\x9b\xd6\x5d\x89\xed\x48\xc5\x7a\x66\x15\x47\x73\xa2\x4c\x71\x62\x5f\x81\xf9\x0d\x92\xc9\xde\x22\xf6\xf7\xba\x15\xd5\x4c\xa0\xdb\xa9\xbe\x25\x4a\xba\x1b\xaf\x84\x86\x67\x77\xea\xc8\x25\x1f\x67\xa9\xbc\xaf\x77\x8b\x5e\xc7\x49\xbe\xb1\x56\x95\xa7\xbb\x60\x37\xd3\xcb\x5e\xe8\x03\x70\x78\x30\xa4\x2b\xa4\x16\xd8\x17\x0e\x6f\xe0\x81\x2d\xa9\xf2\x1b\x7c\xdb\x76\x78\xad\xbc\xda\xa5\xe5\x7c\x8a\xed\xb5\xb1\xa9\xad\x37\xf7\x29\x49\xad\xeb\x58\xf6\xa1\xa3\x3c\xb1\x51\xc4\x52\xe3\x46\xed\xfa\x10\x62\x82\x50\x9d\xff\x35\x73\x2c\xda\x2d\xdb\xe7\x21\xab\xc2\x75\xdf\x3d\xbb\x26\xe1\xc6\x3b\x30\x59\x09\x32\xa3\x9f\xb7\x12\xc5\xaf\xe1\x53\xab\x5e\xea\x65\x2e\x20\xc5\x83\xb5\x03\x90\xe5\x03\x37\xb8\x5d\xe9\x47\x41\x95\x22\x6c\xcc\x00\x16\x5b\xfe\xe9\xf4\xe4\x64\x9a\x46\xf7\x44\x9d\xdc\x93\x35\xe2\x22\xf7\xd3\xb6\xd8\x2c\xfb\x47\xb5\x37\xfb\xba\x50\x6a\x25\x4f\x4f\x4e\xe6\x54\x2d\xd2\xe9\x71\xc4\x97\x26\x7a\x8b\x8b\xb9\xf9\xc7\x09\x95\x32\x25\xf2\xe4\xbb\x6f\xbf\xcd\xb6\x78\x8a\xa3\xfb\xb9\xc9\x76\x2d\x5b\x71\x72\x5b\x7e\x5b\xae\xfc\xd4\x1d\x29\x58\x70\x36\x21\x9f\x35\x91\x56\xd5\x16\x6f\x0b\x24\x22\x51\xff\xe7\x5b\x24\xd7\x4c\xe1\xcf\xa7\xe8\x93\x29\x04\x8f\x7e\xe0\xa9\x90\xe8\x1c\xaf\x8f\xf8\xec\x68\xc9\x99\x5a\xa0\x4f\xf0\xbf\xf6\xa7\x47\x42\xee\xd1\x2f\x04\x0b\xbb\xbf\x46\x60\xf1\x60\xe3\xe0\x85\x10\x29\x93\xb6\xc2\xfc\xb7\xff\xee\x4a\xcc\x9f\xa2\x6f\x4e\xbe\xfd\x77\xf4\x47\xf8\xff\xff\x17\xfd\xb1\x46\x53\xeb\x96\x49\x9d\x95\xff\xaf\x6c\x0d\x56\x6a\x8b\x62\x5b\x67\x82\x67\x3b\x55\xd9\xf2\x3d\x8d\xee\xf9\x6c\x36\x51\x74\x49\x4c\xa8\xed\x04\x8b\x12\x0a\xd7\x96\xb0\x34\xd4\x96\x06\x32\xd5\x55\x33\x68\x5e\xdb\xa9\x49\xa4\x71\xc7\x4d\xa6\x59\x69\x14\xf0\xa9\xe4\xca\xcd\x50\x09\x5f\x91\x58\x9f\x8a\x2e\xfe\x13\x67\x9d\x29\x17\x30\xcc\x12\xcf\xc2\x72\x57\xde\x0f\x1a\x3a\xf5\xf9\xa6\xd2\xfb\x06\xd7\x90\xef\x84\x4a\x74\x4f\x4a\xa1\x13\x1d\x53\x94\x0c\x18\xe4\x3d\xa9\x2b\x7e\x09\x37\xc9\x8b\xb9\x1e\xaf\x82\x32\xd2\x16\x04\xd9\x5d\x93\x20\xf9\xdb\xba\x3e\x56\x33\x20\x0e\x77\xf2\x6b\xc8\x12\x74\x7f\xbe\x77\x9b\xa5\x05\x45\xd9\x73\x0d\x41\xc9\x47\x1b\x3f\xa5\xb7\x8a\xb2\x79\x42\x10\x31\x8e\x2b\xdb\xa2\x24\xea\xc8\x04\x6c\x54\x37\x81\xd7\xbe\x85\xb0\xe2\xb5\x6d\xa4\x2e\xf0\x4d\xef\x25\x56\x6d\x3d\x90\x39\x62\xb9\x72\x9f\xb6\xa7\xe6\x3e\x72\x1f\xeb\x13\x81\xf3\x6e\x74\xe0\x61\xd6\x07\xbd\x06\xc3\xa3\xaf\x54\x3c\x0d\x2c\xf5\x11\x17\x02\x44\x4f\x88\x9c\xb4\x8b\xde\x40\xd3\x57\xe5\x19\x76\x40\x33\x18\xfc\xf5\xae\x7f\x71\x9b\x03\x30\xb8\x1a\x4d\xca\xbf\x0e\x2f\x8b\xef\xe4\x7f\x19\xfc\xd7\xf0\x76\x74\xdb\x88\x65\x50\x68\xb4\x8e\x13\x2c\xf8\x23\x54\xbe\xd0\x67\x05\x16\x04\x17\x96\x44\x5f\xef\x98\x39\x58\x2a\xea\x1c\xac\xc6\xa7\x09\xd8\x66\x71\x75\x6e\x4d\x39\xe6\xe8\x8b\x09\x24\x81\xa9\xbd\x54\x10\x89\x2c\x75\xbe\x39\x7e\xe4\x96\x8b\x9d\xb4\xe6\x8e\xdc\xb8\xa2\x66\x54\x58\x7e\x11\x32\xb9\xb8\xf0\x20\x71\xc6\xba\x65\x4b\xd6\x6c\xb6\x45\x53\x61\x3c\xee\xed\x98\x8c\x9e\xfa\xb9\xff\x64\xd3\x30\xc1\xfd\xee\xde\xce\x8a\x71\xc0\x68\xf5\x49\xd0\x4c\xa5\x62\xc4\x15\x48\x32\x9b\x36\xf4\xd6\xec\x19\x91\xa6\x71\x88\x05\x81\x38\x58\xe6\xf4\x13\x9b\xe8\x57\xb9\x9f\x80\xaf\xb1\x0f\xe8\x9d\x12\x54\xeb\x0e\xb7\xae\x31\x98\x67\x82\x82\x43\xfa\x2d\x00\xfc\x0a\xac\xef\x94\x2d\xd1\x8a\x0c\x64\x7b\x0f\x09\x0c\xe1\x14\x6a\x81\x99\x31\xa5\xcc\x70\x44\xd9\xbc\x17\x00\xd5\x40\xfe\x61\x28\xb9\x54\xad\xe4\x08\xcb\xfb\xfd\x86\x08\xec\x5c\xc2\x86\xc6\x59\x19\x05\x43\x91\x36\x82\x80\x96\x50\x3a\x14\x96\xf7\x75\xb9\xd5\x25\x60\x87\x86\xd1\xf9\xa5\x70\x70\x10\x4d\xe3\x73\xf9\x4c\x24\x54\xdd\x00\xb5\x75\x41\x72\xc8\x7e\x2e\x24\xdd\x94\xcf\xa6\x09\x89\x8b\xf8\x46\xc5\xf1\x6f\x22\x04\x63\x1c\x0b\x7c\xd1\x00\x7f\xb3\x5c\x71\x88\x3c\x9d\xa1\x25\x66\x6b\x73\x94\xb4\x28\x85\xe5\xbd\xf4\x75\x94\x90\x5c\xe2\x24\xe9\x21\x41\x52\xa9\x05\xf0\x9e\xbe\xc8\x66\x47\x0e\x89\x36\x46\x09\x9f\xd3\x08\x27\x68\x9a\xf0\xe8\x5e\x8e\x99\xbe\x4a\xd8\xdc\x88\x64\x2b\xc1\x23\x22\x65\x20\x81\x67\xb9\x4e\x36\x02\x1d\x8a\x28\x29\x22\x96\x94\x51\xa9\x68\xe4\xa5\x0d\x9f\x5e\x68\x8a\x82\x45\x18\x4c\xbf\x10\xcf\x0f\xc3\xd5\x1a\x01\x31\xd8\x38\x29\xb3\x98\xe5\xc0\xd0\x2d\xe4\x85\x8b\xad\xaa\xa3\xde\x3d\x20\x78\xb8\xed\x99\xa8\xfc\x69\xd8\x40\xcf\x67\xf6\x33\x38\x43\x4d\x14\x73\x93\x27\x67\x4f\x0d\x9e\xcc\x3d\x30\xa4\x23\x8a\x2c\x72\x2c\x2f\xd4\x39\x03\xd3\x2b\x03\x14\x80\x21\xd7\xc0\x08\x6c\xa2\x69\xbd\x8a\x70\x29\x02\x4c\x7e\xd1\x3b\x6e\x0b\x15\x3b\xb9\x5c\x5f\x12\x0f\x9a\x48\xdc\xf2\xe8\xb5\xd7\x57\x49\x0f\x61\x89\x1e\x49\x92\xe8\xff\x9a\xc0\xb1\x23\x8f\x5b\xaa\xf9\xa1\xc1\x96\x85\x4e\x0a\xa5\xf4\xcb\x14\x65\x8b\xb7\xbf\x8a\xfa\x5e\xfe\x92\xee\xca\x16\x37\x0a\x12\x32\x5f\x8f\xb9\x61\x7c\x7e\x65\xa0\x84\x73\xf5\xf0\x0a\x34\x5e\xd6\x45\x1a\x06\x55\x22\x91\x6a\xab\xa5\xa8\xca\x92\x33\x14\x07\x4f\x1f\x68\x56\xcb\xce\xf6\xd6\x68\xd5\xd4\x33\x6a\x65\xd2\x0c\x89\x62\x6b\x33\x7d\x61\x2a\xa5\x6c\x53\x6a\xca\x3c\x9a\x09\x81\x54\x9b\x46\x11\x21\x71\xa5\x3a\xa6\x47\xf4\xea\x30\x8c\xae\xb1\x5a\x98\xc4\xc5\x25\x57\xa6\x94\x92\xc1\x30\x72\xe6\x56\x03\x7a\x33\x4d\xf8\x14\x2e\x24\x80\x37\x72\x89\x4f\x41\xd2\x84\x99\x37\x89\xd1\xd7\xc1\xfd\xe2\x93\x6a\xdf\x57\x83\xed\xe4\x56\xe4\x15\x40\x1b\x15\xed\xbc\xb5\x00\x47\xf9\x6a\x20\xc7\xe8\xba\x90\x09\x1e\xac\xcc\x0c\xeb\x6b\xa3\x11\x55\xe0\x85\xe0\x90\x0a\x93\x78\xba\x1d\xea\x08\x87\x94\xeb\x73\x0f\x70\x48\x85\x79\xd6\x44\x66\xf2\xf9\x93\x66\x94\xe9\x49\x5d\xf0\xf6\xb6\x36\x83\x48\x62\x44\xbc\x1c\x09\xba\x03\xb9\xae\x22\xc4\xd7\x05\xf5\x54\xa8\x99\xf3\xb2\x50\x4f\x85\xc1\xbc\x66\xa8\xa7\xc2\x50\x5f\x2f\xd4\x53\xc5\x40\x5b\x40\x3d\x99\x58\x93\x89\x26\xea\x76\x4c\x01\xa2\x96\xa7\xe9\xec\x16\xee\xdd\xc6\x31\xda\xb2\xed\xe6\x1a\x73\xa2\xa4\x45\x3e\x84\xd1\xda\x0c\x97\xba\xe8\x3c\x2c\x77\xa2\x3d\xef\x0c\xa6\xd2\x68\xf1\xab\x04\xb3\xfc\xd5\x01\x65\x71\x05\x89\x34\xf9\x19\x46\xa5\x04\x66\x12\xa6\xda\xb3\xd6\x25\x3d\x0a\xe3\x56\x89\xf0\xca\x66\x0c\xd6\x01\x92\xbf\x9e\xdc\xa8\x6e\x28\x5a\x00\x76\x94\x63\xf5\xad\xa0\x4a\x3e\x15\x30\x7d\x8d\x2d\xd8\xeb\x32\x86\x18\xbb\x2a\x33\x21\x0e\x57\x81\xa6\x5b\xe2\x70\xe5\x26\x72\xc0\xe1\xaa\xde\xe0\x57\x8b\xc3\x55\xd8\xf3\x76\x38\x5c\x55\x5b\xbe\x05\x0e\x57\xae\x99\x2f\x06\x87\xab\xb0\xa2\x5f\x0c\x0e\x57\x61\x5e\x07\x1c\xae\x2f\x04\x87\x6b\x33\x1f\xa9\x44\x9a\xaa\x3e\xbc\xdd\x90\xa6\x2a\x45\xf8\x7a\x16\xb1\x6b\x5a\x3f\x08\x0c\xcf\x8c\x34\x95\x9b\xc0\x21\x0c\xb0\x7b\x18\x60\x25\xf1\xd9\xbe\xf5\xf0\x5c\x6c\x60\xf1\x22\x6b\x89\x35\x95\xdb\x9f\xd6\xd6\xb5\x7d\x50\xe2\xd3\x06\x9e\x82\x91\xbf\xad\xc6\xdd\xcf\xad\xa2\xb4\x08\x75\x5a\x32\x72\x18\x21\x46\x38\x0f\x1d\x9c\x07\xca\xdd\x22\x80\xb5\xb0\xbc\xde\x2d\x60\x68\x71\x9f\xf6\xdf\x8a\x72\xa3\x3b\xd0\xab\xcb\xf1\xeb\x68\x7f\x77\x83\x00\x3b\x7c\xb5\xed\x09\x2a\x1d\xef\xa7\xd9\x4d\x17\x99\x47\x40\xc8\x15\x5e\xf6\xe9\x8b\x59\xe1\x65\x23\x1b\x17\xb2\x36\xb5\xfa\x6f\xbf\x9c\x53\xa9\x44\x6d\xf0\x46\x69\x84\xbb\x78\xfa\x56\xe9\x36\xb9\xd6\xf3\xed\x3e\x5b\x92\x25\x17\x9b\x22\x47\x2a\xbf\x94\x8a\x0b\x3c\xdf\xa4\x88\x57\xab\x55\xab\x05\x59\x6a\x21\x68\xd2\xb5\x91\xb6\xfb\x9d\x45\x92\x99\x14\xab\x8a\xea\xdb\x81\x1f\x4f\xbf\x1b\xdb\x8a\xda\x6d\xb7\x7b\xd7\x6d\x76\xa5\xbb\xbb\x19\x8a\x1d\x52\x5c\xb3\xe5\xca\xbe\x94\xf3\xd6\x02\x7d\x57\xc6\x03\xf8\x70\x8c\x2d\x3d\xfe\x35\xe8\x53\xe5\x0e\xc1\x21\x28\x89\x38\x0a\x65\xd4\x9c\x13\xae\x3c\x82\xdc\xba\x3b\xdd\x66\x87\x65\x4f\x45\x6d\x60\x5a\x1b\xd3\x51\xa4\x52\x9c\x80\xe2\x14\x56\x13\x29\xd2\xf7\x74\x5d\x91\xef\xd6\xce\x36\x49\x99\xfa\xf3\xbf\x75\xf1\xd4\x83\x90\x6f\xd7\x6d\x46\x13\x82\x70\x14\x11\x69\xac\x59\x36\x7c\xd9\x54\xe7\x4d\x45\xb2\xcb\xae\xea\xc3\xa1\xe7\xad\x59\xa6\x87\x74\x8b\x33\xe2\x31\x17\xf0\x42\xf0\x74\xbe\x70\xd6\x0c\x4d\x85\x7a\x6a\x55\x7b\xf9\x93\x09\x33\xd9\x65\x2f\xbf\x4f\x69\xb2\x9d\xad\x28\x8b\xec\xd2\xc3\xfc\x38\x1c\x21\xb9\xf0\xf4\x3f\x85\x66\x2b\x37\xb6\x3c\xe8\xf6\x7d\xda\x6f\xbd\x65\x14\xba\xe9\x39\x18\xa3\x19\x4f\x12\xb0\xed\x49\xb2\x7c\xa8\xab\xee\x0b\x13\x1e\xd1\x2d\x6b\x98\xc2\xd7\xe0\x21\x90\x0a\x2f\x57\xad\x24\x9a\x6b\x23\x6c\x49\xe4\x46\x5f\x74\x0f\x9a\xc0\x21\xce\x7c\x91\xe9\xdc\x26\xff\x5c\x06\x77\x7e\x63\xe1\x5b\x2e\x9c\x68\x6f\x21\x5c\x6e\x49\x9e\x39\x8c\xab\x6a\x1e\x1d\x58\x40\x2e\xb7\x21\xe3\xf1\xce\x3f\x6e\xe4\xf8\xbe\x9e\xdf\x98\xf5\x73\x59\x10\xae\x6c\xd8\x74\x9d\x05\x50\x1a\x91\x38\xe4\x24\x80\x89\x6b\xed\x04\x8a\x5b\xeb\x01\x08\xee\x06\x81\xcb\x04\x78\xb9\x20\x2e\x88\xfe\x24\xf1\x11\x8e\xd6\x51\x42\xa3\x40\x05\x9c\x0b\xbc\x5a\x54\xb1\x1b\xb7\xec\x07\xac\x93\x97\xc2\x3a\xa9\x03\x7a\xef\x12\xbd\xea\xe8\x0a\x2a\x28\x1f\x30\x58\x2a\x30\x58\x7a\x1e\x65\x80\x65\x90\xf5\x2f\x98\xbc\x5e\x3e\x77\x07\x20\x96\x17\x00\x62\xd9\xe6\xf0\x65\x28\x2b\xb9\x63\x77\x00\x87\x79\xd7\x0a\x1c\xc6\x5f\x82\xaf\x0a\xef\xa3\xfe\x3c\xbe\x30\x8e\x44\x79\x60\x2f\x09\x06\x53\x21\x2e\x74\x91\x9b\x9a\xd0\x60\x9a\xe8\xa2\xd5\xba\xbc\x2c\x36\x4b\xb7\x95\xe9\x04\xbb\x52\x79\x77\xbd\x12\x10\x96\xfa\x6d\x78\x25\xe7\x66\x9f\x39\x06\xdd\x6a\xf2\x84\x79\x06\x5d\xb4\x9b\x6e\x29\x07\x9e\x1e\xde\x56\xda\x41\x56\x10\x61\xbb\xd4\x83\xbe\x73\xa9\x12\x81\x16\x3c\x81\x7c\xcf\xdc\x6a\xf9\x0e\x7c\xc0\xab\x5f\x20\xb7\x19\xb7\x2b\x12\x19\x6d\xab\x5c\x2c\xbc\x91\xa4\xde\x7a\x92\x41\x20\xff\xee\x37\xd1\x20\x5c\xd9\x6d\x93\x0d\x36\x0c\xae\x49\xf4\xd8\x32\xe1\x20\xe8\xb1\xd1\xe9\xe4\x66\xd7\xca\xf1\x54\x24\x96\x2d\x62\x82\x4a\xe5\x27\x76\x87\x64\x59\xe2\xcf\x93\x15\x16\x38\x49\x48\x42\xe5\xb2\xee\xcc\x53\xa6\xc8\xbc\x48\x69\x39\x63\xec\x9f\xbe\x6b\x0e\xc0\xcc\x7b\x1f\x5d\x1d\x79\xf0\x3f\xa6\xcb\xa9\x21\x45\x37\x10\x5b\xf4\x46\x71\x24\x52\x16\x02\x4a\xf9\x8d\x41\xae\x28\x4a\x0a\xf7\x02\x98\x74\xa2\x05\x54\x58\x9a\x61\x2a\x18\x91\xb5\xf5\x6c\x48\x94\x0a\xaa\xd6\x13\x5b\x1e\xa8\xfd\x81\xbb\xb5\x5f\x9e\xd9\x0f\x9b\x1d\xb6\x2e\x0b\xd7\xf5\xe7\xcb\x11\xad\x88\x00\xac\x73\x87\xda\x1d\x94\x40\xb2\x59\xd6\xc4\x03\xa6\x43\x2d\x9c\xd2\xb5\x5d\x17\xa5\x8a\x1f\x27\x41\xe2\xc0\x24\x2a\x12\xc7\xa6\xc3\x5a\x85\xf6\xd3\x34\xc9\x27\xc6\xbb\xa9\x71\x8a\x3e\x01\x54\xb2\x8d\x0e\x36\x4d\xeb\x01\x07\x9e\x4d\x30\x16\x66\x1b\x13\xa4\xfe\x5a\xa5\xaa\x66\x9c\x98\x31\xae\xaa\x8b\x64\x34\x0c\xb6\x1f\x7c\xd5\x62\xc4\x41\x27\xbb\x0c\x7b\xe3\xdd\x1a\xc7\x32\x6f\x46\x31\x02\x2a\xfd\x2d\xa7\xc0\x1d\xe5\xc2\xe8\xa3\x00\x50\x00\xa2\x9b\x1c\xd0\x7a\xd3\x4d\x7a\x88\x95\x2d\xc7\xca\x56\xaf\xcd\x6b\x8c\x97\xf5\x22\x56\xd7\x98\xd9\xba\xed\xdf\xc7\x1d\xb9\xc7\xd8\xd9\x17\x0e\x32\x7d\x9a\xf8\xd2\x97\x0d\x08\x7e\x8a\x58\xe0\x43\xc4\xec\xdb\x8b\x98\xad\x3f\xb6\x9d\xa2\x66\x37\x20\x64\xb8\x5e\x76\x0d\x51\xf4\xa8\x0d\x4f\x1a\xa6\xe8\x9d\xc2\xc1\x17\x2d\x43\x15\x33\x58\x89\x43\xb8\xe2\x13\x85\x2b\x56\x2c\x71\xb7\x90\xc5\xad\xb4\xc7\xe7\x8f\xa6\x2a\xd6\xde\x7c\xca\x88\xaa\x0d\x41\x04\x32\x9d\x4e\x9e\xfc\xe8\x55\xce\xb9\xed\x09\xfc\xd9\x13\x85\x11\x89\x84\xa6\xb3\x29\x89\x63\xb0\x50\x6a\x55\x08\xa0\x7e\x32\xda\x61\xc4\xd0\xb7\x66\xbe\x58\x6a\x62\xc7\x09\x67\x73\x49\x63\x12\x54\xbb\xcd\x24\x2b\x93\xb3\x38\x66\xb0\xbf\x49\x42\x84\x33\x70\x09\xf4\xb5\xa4\x2c\x22\xa1\xd1\x4b\xa0\x98\x13\xc9\xbe\x52\xa6\xe4\x27\x66\x6b\x74\xcf\xf8\x63\x42\xe2\x39\xec\x50\x71\x30\x47\x88\x92\x1e\xa2\xca\x7f\x26\x08\x36\x19\xdd\x63\x3d\x76\x08\x5b\x30\x22\x20\xb1\xdf\x06\x35\xc2\x7c\x33\xef\x8f\x11\x1a\x32\x34\xc3\x91\xea\xe5\xab\x93\xc6\xdc\x14\x7d\x7a\x20\x2c\x9c\x78\xd6\xc8\x93\x45\xd3\x55\x46\xcf\x15\xa8\xcd\x9d\x37\x4d\x00\xfd\x84\xe2\x9d\x02\x1f\x1e\xf0\x2e\xe8\x53\x9f\x52\x69\x3d\x64\x06\xb1\xd0\x8c\xd7\xa6\x78\x7b\xd8\x4d\x28\x7d\x63\x20\x2c\x1b\xea\x1a\xe3\xc2\x54\xba\x8e\x25\x8b\x52\xb1\x15\x77\xac\x15\x11\xda\x35\xcb\x1d\xf3\x47\x26\x95\x20\x78\x69\x2d\x37\x9a\x79\x83\x87\xd3\xc4\xa8\xe8\xd1\x53\x61\x2e\xed\x2e\x5b\x7c\x41\xd9\xbd\xde\xdd\x0c\x68\x14\x2a\x98\x41\xcf\x15\x9b\xf6\x3d\x65\x38\x17\xa2\xbb\xc5\xae\x35\xe0\x68\x36\xdb\xbd\xa7\xeb\x3a\x8c\x57\x85\x37\xc1\xae\x76\xd0\xc4\x91\x84\xb2\x6d\x68\x0a\x55\x45\x35\xab\x73\x50\x87\x0a\x83\xad\x65\x41\x92\x55\x50\xf9\x68\x85\x85\xf2\xa5\xb3\x0d\xe0\x98\xe6\x0e\xcb\x94\x81\x7d\xca\x6a\x88\x8f\x16\x57\xca\x9a\xd9\xb2\xc6\x8f\xc7\x6c\xa8\xbe\x82\x5a\xfc\x9c\xcd\x93\x35\xc2\xf1\x03\x95\x19\xe8\x6b\xc4\x99\x4c\x97\x44\x14\x2a\x0a\x9a\x18\x0c\x84\x1d\xad\xe8\xb1\x59\xe0\x45\x1a\xbb\x0a\xb7\xfa\xc7\x29\x99\xe9\x7b\x6f\x85\x85\x74\x06\xfb\x0a\x63\xbb\xdd\xdc\x58\xaf\xd5\x8b\x9d\xc9\x9f\xc2\x63\x67\x70\x49\xcd\x09\xc5\x56\x77\x39\x29\x9e\xcf\xa0\xe2\x75\x5d\xfc\x6b\x69\x52\xa8\xf9\x62\xb2\xab\x70\xbe\x29\x1d\xda\x41\x72\xa4\xc6\xb9\xaa\xfb\x71\x32\x90\x19\x5c\x27\xf3\x4f\x61\x82\x76\xd4\xc6\x56\x1e\x9e\x4d\x42\xe1\x52\x90\x0a\x2b\x1a\xb9\xea\xdd\xc2\x15\x27\x37\x5f\xd7\x6f\xed\xae\x65\xe9\x65\x84\x93\xf2\x0e\x37\xd8\x73\xcd\xfb\xcd\xbc\xcf\x1e\x37\xd3\x76\x63\x2c\x73\xc4\x93\xa4\x0b\x98\x63\x61\xe6\x67\xd9\xe7\xcd\x23\xca\xfa\xd1\x1b\xe0\xf6\x02\x4e\x8d\xb1\x8a\xe3\xc4\x4a\x16\x52\xd9\x5d\x0a\x5f\x32\x3c\x74\x6d\xad\xee\x63\xc6\x67\x00\xf7\x99\xd4\xd9\xcb\x57\x82\x2f\x69\x17\x98\x16\x63\x42\xbe\x71\xf1\x2d\x1b\x3c\x9b\x2e\x0a\x06\x2a\x53\x1a\xf2\xb2\x3d\x42\x24\x24\x66\x46\xce\x68\x38\x43\x4b\xbc\xda\x6a\xc1\x37\x69\xc9\x7d\xb4\x34\x26\x0a\xbb\x7a\xd2\x94\x3f\xbd\x27\x6b\x40\x71\x48\x1e\xf1\x3a\x8b\xf8\xae\x03\xe0\x60\x9d\xc8\xe1\x4e\xbf\x3e\x64\x33\xbe\x15\xf6\xa6\x3d\x7d\xd8\xd1\x6c\x70\xfe\x7c\xb4\x91\xd9\x7d\xb3\xa6\x6d\xce\xe3\x59\x15\x51\x77\x3e\x99\x6e\x05\x9f\x52\x64\x0f\x99\x48\x28\xad\x77\xb9\x5b\xf3\x47\x2b\x68\x11\xc1\x70\x9a\x97\xea\x53\x8e\x0e\xf7\xbe\x46\x85\x76\x90\xd1\x0c\x9d\x9b\xfa\xba\xba\xd5\x67\x58\x33\x7b\x48\x5a\x2d\xd6\x8e\x29\x29\xdd\x80\x44\x5c\x8f\x1e\x3e\xa4\xfa\x84\x6e\x44\x49\xeb\xa2\x91\xcc\xb4\x24\x64\xcb\xec\x7a\x9f\x97\x0d\xfe\x9b\xd1\x84\xc8\x63\x34\xac\xd0\x4e\x5c\xe8\x1d\xc8\x68\x00\xb2\x06\x41\x08\x4e\x7a\x4a\x05\x0d\x0a\x5d\x38\x19\x09\x51\x5b\x8c\x3e\xb3\x79\x08\xa2\xc7\x1c\x19\x9f\x0b\x67\x00\x82\x02\x7e\x7f\x41\x4d\x2d\x66\x2d\xac\x2a\x30\xdf\x69\x5e\x40\x6d\x1e\x5f\x4c\x56\x84\xc5\xfe\x03\x2d\xb1\x2b\x22\xb0\xad\xe5\x93\x8d\xaa\x66\x4b\xf7\x01\xdd\xdb\x3e\xb2\xd1\xf5\x3a\xd2\x5f\x94\xf7\xa6\x72\x84\xa3\x7c\xeb\x9d\x47\xe7\xa5\xfc\xee\x0e\xa4\x0f\xf0\xa9\xb3\x66\x61\x34\x13\x04\x0c\x9e\x4b\x9f\x2a\xc4\x62\x22\xa4\xe2\x1c\xee\xbb\xdb\xf3\x1f\x4f\xee\x86\x88\xa8\x08\x4a\x95\x8e\x59\x24\x1f\x7a\x5a\x3c\xfe\x7b\x4a\x94\xfe\xb9\x26\x94\x96\x2e\x09\x93\xc0\x09\xa8\x2a\x25\x29\x56\x2f\xa4\x5b\x18\xfd\xdf\xf3\xfc\xf7\x0d\x24\x5f\x0a\xcc\x06\xda\xf5\x35\xb3\x35\x99\x02\x26\xa0\x05\xa6\xaf\xa0\x18\xce\x13\x82\xd9\xa0\xaa\x3a\xc8\x16\x81\x58\xec\x6f\x29\xeb\x28\x74\x9d\x65\x1f\x05\xa3\xa8\x91\xe9\x96\x2b\x2c\x68\x05\xf8\x53\x73\x84\x97\xf9\xa6\xb2\xf5\x4d\x4c\x24\x0b\x78\x9f\x9a\x95\x42\x59\x21\x15\xa4\x04\x21\xc0\x42\x3c\x3d\xd9\xbb\xde\x26\x18\xf9\x89\x05\x1f\x1d\x8f\xd9\x27\x67\x80\xcd\x7e\xf5\x65\xbd\x4d\xd4\x20\x89\x51\x2a\x4d\x65\x81\xb0\x15\x68\x36\xa6\xd2\xff\x00\x88\x90\x32\x4d\x94\xc1\xf6\x9e\x51\x86\x13\x3f\x50\xf3\xa4\x8a\x4b\x08\xcc\xa2\xc5\x25\xdf\xad\xdc\x3f\x9d\x4d\x48\xd2\x45\x12\x1d\xce\x06\x89\xd4\xf4\x1d\xdd\xd7\x9c\xce\x6d\xd0\xeb\xb3\xc9\x04\x95\x1a\xb0\x89\x59\xb1\x56\xbf\xc4\x20\x85\x13\x04\x26\xbb\x62\x5c\x9e\x49\xbd\xd1\xbb\x68\x25\x75\x63\xb1\x33\x01\x31\xce\xc8\x37\x85\x5e\x10\x56\x63\x26\x52\x06\x68\x75\xde\x80\x8f\x91\x24\x82\x1a\x4b\x7a\xc4\x99\x91\x01\xac\x29\x66\xae\xd9\x84\x96\xfc\xc0\x8b\xc3\x19\xe8\x67\x3c\x95\x10\x5b\xb3\x24\x4a\x5f\x50\x5f\x43\x5d\x1c\xe3\x42\xe9\xa1\x95\xa0\x4b\xaa\xe8\x03\x91\xef\x2b\xb6\xee\x0c\x2b\x9c\xf0\x79\x5f\x28\x3a\xc3\x91\x1a\xe1\x9d\x34\x70\x6c\x9b\xd9\xd6\x1d\xef\x86\x81\x86\xe7\x7a\xf1\xe7\x84\x11\x01\x13\x85\x6a\xe3\x95\x47\xb8\x6b\x1d\xf2\x8c\x73\x03\x3e\x77\x64\x10\x8d\xa5\xb7\x58\xe0\x54\xf1\xa5\xd6\x6f\x71\x92\xac\x01\xa9\x58\x3f\x59\x60\xb9\x70\x1b\x6d\xe0\x8d\xdb\xdc\x4d\x76\x71\xcf\x70\xb4\x20\xb7\x0a\xab\xb4\xd2\xe4\xb8\xb9\x14\xc7\x59\xff\xec\x87\xc1\xe4\x7c\x78\xdb\xff\xfe\x62\x70\x1e\xcc\xc7\x3e\xf9\x34\xbc\xbd\x2d\xff\xfa\xc3\x70\x54\xfe\xf1\xfa\xea\xfa\xee\xa2\x3f\xaa\x6a\xe5\xe2\xea\xea\xc7\xbb\xeb\xc9\x87\xfe\xf0\xe2\xee\x66\x50\xf1\xe9\xdd\xc8\x3f\xb4\xcf\x2a\xab\x79\xd4\x8c\xb6\x78\xce\x8e\x50\xfe\xc5\x53\x74\x67\x7d\x41\xd4\x06\x57\xb9\x10\x0c\x93\x08\xf4\x88\xa5\x66\x55\x78\x9a\x90\x78\xcc\x90\xfb\x5c\xcf\xbd\xee\x53\xe3\xa4\x8a\x16\x04\x25\x9c\xdf\xa7\x2b\xcb\xc1\x4c\x34\x31\xb3\xd5\x6b\x88\x0c\x5a\xfb\x61\x38\x3a\xf5\x3e\xa9\x72\x63\x41\xbe\xaf\x23\x75\x18\x17\x76\x5c\x13\x4c\x26\x2b\x41\x1e\xe0\x4c\x7a\x5f\x65\xd0\x83\xdf\x80\xa6\x7e\x4c\x6b\x98\xa9\x42\x37\x71\x6c\x6b\x1d\xb9\x89\x05\x0d\xe7\xb7\xaf\x69\x35\xfd\x72\x18\x8c\x5a\x34\x25\x11\x4e\x8d\x2b\x4f\x5f\x47\x42\x70\x11\x0e\x38\xdb\xf6\x1d\x1b\x7d\x57\x96\x32\xf2\xd5\x2c\x24\x9c\x11\xfd\x49\x70\x72\xb4\xf6\x0d\x9a\xb9\xc3\x47\x5c\x58\x1c\x5b\x2a\x8d\xb7\x21\xf3\xbf\x00\x2e\x93\xe6\xdc\x1e\x2d\x90\x82\x6f\x10\x2b\xf4\x48\x20\xa4\x3c\xb5\x00\xb1\x46\x43\xd6\x27\x10\xba\x33\x56\x6d\x87\x4a\x9e\x0b\x35\xaf\x65\x99\xfb\x10\x8b\xf5\xf7\x92\x54\xb1\xcb\x1d\xe2\x82\xcf\x4d\xa3\xc0\x43\x9d\xa3\x16\x46\x5c\xe3\x3f\x70\x3c\xbb\xc2\x8e\xdd\x20\x05\x95\xef\x8d\x0d\x2c\x5d\x33\xd7\x36\xe3\x71\xb9\x50\x39\xbc\xaa\x6e\xe0\x10\x3e\xc8\x60\xe3\x5a\x8d\x78\x8c\xd7\x9a\x38\x20\x42\x42\xa6\xab\x15\x17\x0a\xd5\xb4\x81\xe0\xa4\x9b\xf1\xc1\xcd\x60\xe7\xe1\x59\x14\x34\xa2\xe5\x00\x59\x01\x29\xd9\x2e\x3d\xc4\xae\x6b\x76\xee\xc3\x3c\x73\x50\xd7\x3c\xbc\xe9\x32\xa7\xf8\xe6\x28\xb4\x4a\x44\xdd\x25\x2e\xaa\x53\xa9\xac\xba\x11\x54\x54\xcd\x0a\xe3\x3e\xc9\x4c\x4d\x2a\xfd\x33\x0d\xa6\x48\xdd\x22\xab\xcb\xaa\xa3\xf3\xc5\x1e\x5a\x6c\x2f\xcf\x7f\x67\xfd\x67\x5a\x88\x0f\x74\x79\xc1\xb9\x32\x92\x64\xa6\x6d\x20\xb7\xa2\x60\x08\xb0\x9d\x9a\x12\x21\x99\xb8\xa6\xa5\xf3\x7b\xc6\x1f\x99\xb7\xc1\xcb\xe3\x31\x1b\x60\xa8\x5b\xe3\x55\x06\x1b\x02\x61\xe4\xf5\x8d\x92\x7a\xe3\xbe\x6c\x25\x9b\x0c\xfe\x1a\x4a\x0a\x97\xf9\x3f\x3f\x8e\xf2\x7f\xe5\xa4\x8a\x8b\x51\xfe\xaf\x66\xa9\x22\x68\xb8\x2c\x49\x7c\x1c\x9d\xa2\x8f\x10\x77\x2f\xd0\x68\x81\xcd\x7d\x7b\x31\x3a\x45\x17\x44\x4a\xf8\xa5\xe2\xee\x31\xee\x44\xe4\xa6\x6f\x82\xb5\xf3\xab\x5b\xbd\x80\xbe\x8e\xc8\xb3\xc6\x69\xd4\xa3\xde\x64\xcc\xc3\x96\x4a\x4c\x7c\x41\x3c\x12\xa3\xdc\x77\x6d\x58\x90\x31\xf0\x3b\x69\xd7\x4c\xd8\x56\x39\x50\x64\x65\x9d\x10\x66\x9e\x59\x02\x0a\xf8\xb1\x75\x57\xc7\xe8\x67\x67\xe4\x82\x90\x97\xac\xc6\x91\x32\xd7\x76\x82\xd7\x0e\xd6\xa3\x6a\x61\xf7\x81\x94\xb1\xef\x20\x98\xe6\x05\xf6\x59\xc1\x15\xab\x9c\xb3\x35\x30\x66\x8c\xcf\x1d\x22\xfe\xce\xfc\x47\xb7\xa4\x39\x24\xf8\x03\x94\x2c\x50\x44\x68\x8d\x1d\x04\x2f\x96\xac\xff\x87\xd9\x2c\x40\xc8\xb0\xd9\x14\xb1\x83\x90\xb7\xce\x62\xcd\x80\xc0\xd9\xa9\x65\xa9\x29\x40\xe7\x24\x20\x4c\x1d\xa3\x3e\x54\xfc\x81\x5a\x2e\x5a\x9e\x70\x81\x55\x74\xce\xf8\xa6\x58\x8e\x1a\x62\x8a\x02\x62\xba\xad\x27\x26\x09\xd4\x94\x25\x83\xec\x87\xa2\xf6\x90\x18\xa8\x99\x33\x2e\xa3\x84\xb5\x4f\x07\xec\x60\xa7\x78\x89\xb8\xa8\xd2\x70\x83\x0f\xff\x59\x3d\xf4\x8f\x29\x16\x98\x29\x88\xf6\xb1\xea\x8b\x20\x41\xd4\x29\xf9\x0c\xf1\x74\xcc\xd8\xbc\xe1\xa7\x70\x73\x5d\x74\xc3\x9c\x3e\x10\x86\x68\xdc\x43\xf4\x98\x1c\xf7\x6c\xf1\x5e\x99\x4e\xb3\x37\x17\x5a\xfc\x1a\xb3\x52\x92\xdb\x31\xea\x27\x92\xdb\x2f\x08\x8b\x12\xa8\xb0\x15\x04\x26\x79\xca\xb7\x1e\xb4\xe9\x1a\x94\x34\xd8\xca\xac\x79\x6e\x1f\x04\x1f\x8e\x19\x96\xc6\xfd\x9f\xc0\x49\xcf\x7e\xaf\xaa\xa2\x97\x0b\x09\x79\x42\x88\xcb\xd2\x35\xf4\x64\x9b\x64\xe0\xd5\x9b\x36\x08\xde\x80\x8d\xc9\x92\x0f\x83\x34\x3e\xf4\x35\x56\x28\x21\x58\x2a\xf4\xed\xfb\x4e\x61\x30\x6e\x82\x19\x77\xb5\xc7\x37\x8b\x11\x76\x41\x86\x75\x05\x81\xa1\xfc\x05\xc2\x88\x91\x20\x61\xa1\xa7\xf7\x59\x71\xf4\x40\x65\x0a\x45\xcb\x82\xb4\x06\x53\x76\x8a\x2a\xe9\xe2\x34\x8d\xde\x59\xc3\x47\x1c\x60\x95\xf5\x14\x67\x35\x6c\x8b\x94\x65\x35\x50\x6a\x74\x5c\xc8\xeb\xce\xc2\xfd\x16\x58\x8d\x99\xe5\xac\x2e\x42\x26\x28\x30\xd3\x4f\x92\x7c\x88\x1d\x86\x28\x52\xa6\x27\x0c\x25\xd7\x8e\xfd\x02\x5d\x82\x0e\xeb\xa3\xb2\xf2\x45\x98\xfd\x61\xd1\xea\xee\x98\xf9\xa4\xd9\xb0\xed\x4a\x71\xb1\xca\x94\xfe\x6c\x9a\x44\x65\xf7\x17\xa6\xf6\x5d\x0b\x6d\xa2\xbe\x42\x79\x83\xeb\xa9\xe4\xbe\x68\x50\x2e\xf6\xdd\x41\x7b\x5d\xa3\xda\x15\x00\xd7\xec\x23\xaf\xf0\x2c\xd4\x6c\x6e\x20\x5b\xec\x62\xc5\xf0\xe1\x81\xcf\xe5\xdc\xce\x0d\x7d\x18\x43\xb8\xff\x66\x2e\x98\x85\xcf\x3b\xd6\x01\x36\x7d\x1a\x07\xd1\xbc\x41\xa8\x23\x44\x7b\x3b\xc6\x67\xdf\xac\x71\x32\xaf\xde\xf6\xf4\x7b\xd9\xfc\xdd\x54\x7c\xbc\x5f\x79\xe2\xf5\xc2\x5e\x3f\xfe\x1b\x8e\x08\x8b\xd6\xa6\x27\x07\xf0\x57\xce\xea\x75\x58\x68\x18\xfc\x16\x95\xe2\xa1\x2d\x63\x79\x8c\x06\x70\xd1\xb8\xaa\x96\x78\xe6\x7c\x2f\xc1\xcb\x63\xa6\x35\x13\x7d\xc7\x4b\x33\x68\xd7\x7e\x9e\xc4\xab\x4e\x80\x41\x14\xd8\xc9\x6d\xb5\xdc\x8c\xdb\x5a\xa7\x4d\x38\x40\x03\x68\x03\x80\x29\xd1\x60\x7e\x8a\x62\x1e\xdd\x13\x71\x22\x48\x4c\xe5\x29\x84\x11\xa8\x5a\xff\xe5\x12\xb3\x5a\x5f\xcb\x93\x57\x86\x3f\x33\xfd\xdb\x38\x6f\x57\x84\xa5\x87\xe8\x0c\xd4\x09\x97\xf2\x61\xf2\x40\xac\x32\x8f\x08\x53\x62\xbd\xe2\x94\x29\x6f\x0f\x2c\x2c\x84\xd3\x34\xb4\xd0\x56\x17\xf5\x2c\xf6\x11\x6e\xb4\xe5\xb4\x47\x0b\x22\x89\x8b\xad\x30\x93\x52\x1c\x19\x87\x92\x61\x17\x2b\xac\x16\x12\x92\x56\xf2\x6b\x60\x95\x2e\xf8\x54\xaf\x10\x5e\x41\x68\x86\x31\xf3\x64\x1f\xf9\xd4\x0a\xa9\x68\x92\x8c\x19\x23\x24\x96\x08\xf2\x4b\xbe\xaa\x4c\x8e\xd2\x9f\xf6\x10\x8e\x63\xf4\x3f\xbf\xfe\x70\xf1\xcb\x68\x30\x19\x5e\x82\xe1\x7e\x78\x31\x78\xdf\xf3\x3f\x5e\xdd\x8d\xfc\xaf\xc6\x44\xf5\x40\x04\x5a\xe2\x7b\x50\xf1\x98\x34\xf2\x1f\x24\x20\x84\x23\x75\x69\x63\xfa\x89\x24\x2e\xa8\xd7\x8a\x29\x1e\x87\xc3\xee\x61\x6d\x8d\x25\x63\x38\xed\xa0\xfc\xde\xf8\x4f\x9a\x69\xd0\x11\x8f\xef\xc2\x89\x81\x4b\xc2\x94\xe6\x31\xd6\x64\x9a\xe9\xbe\x19\xc1\x11\x36\xa7\xac\x2e\xf4\x90\xb0\x87\xa7\x14\xe2\x7f\x24\xeb\x9f\xb4\x7a\x7d\x8d\xa9\x68\x4d\x7b\x03\xf6\x40\x05\x67\x30\x35\x6f\x17\xf4\x27\x46\xeb\xe9\x58\x16\x0f\x95\x34\xb2\x30\x84\xa3\xac\x6a\xc3\x5b\xab\xd0\x04\x5e\x7c\xba\x7d\xe3\x42\x27\x9f\x95\x70\x09\x8a\x3e\x15\xfe\x01\xd3\x04\x42\x93\xdd\x45\x93\xd1\xe0\x98\x8d\xae\xce\xaf\x4e\x11\x49\xf0\x94\x0b\x48\x58\x32\xd1\x4f\xae\x09\xbb\x60\x50\xdd\xd8\x37\x94\x4b\x4e\xed\xa1\x55\x96\x9c\x1a\x1a\xd1\x8e\x4d\x1b\x9b\x8a\x1f\x72\x51\x4e\xed\xdc\xaf\x0a\x68\x27\x7b\xcd\x45\x9b\xeb\x5f\xbf\x06\x4b\xc7\x57\x5a\x91\x2b\x70\x5e\x7b\x37\xcf\x08\x36\x75\xc7\x8c\x6f\xcd\x3a\x44\x6c\xac\x6e\x92\xe4\x6a\x4c\xe8\x83\x23\x8f\x6d\xb4\x41\xf6\x26\x67\xe8\xc7\xbf\x48\x34\x4d\xd5\x98\xe5\xdb\xe0\x0c\xf5\x7f\xbe\x45\xdf\x63\x15\x2d\xde\x8f\xd9\x95\x56\x33\x7f\xfc\x4b\x4d\x16\x7d\x67\x88\x0b\xbd\x26\xe7\x58\xe1\x0b\x8e\x63\xca\xe6\x55\xf8\x16\x99\xe9\x77\x30\xea\x9f\xa2\x2b\xab\xc3\xfb\xc4\xd7\x0c\x93\x26\x68\x08\x18\x32\x4c\xc4\x71\x11\x60\xe5\xcc\xb3\x7e\x6b\x22\x03\xe9\x49\x5f\x58\x63\x36\x32\xc0\x1e\x9a\xab\x52\x85\x56\xdc\xa2\x50\x6b\xad\xcc\x40\x9e\x18\x5f\x80\xb5\x24\xea\xd5\x01\x32\xf6\x9b\x61\xe5\x31\x90\x67\xca\xcc\x7e\xcc\x40\x41\xf7\xc9\x88\x09\x8f\x70\x02\xe1\x87\x47\x81\x4d\x4f\xab\xed\x3c\x85\xcc\x30\x88\xfb\x61\xeb\x7c\x94\xb0\x4f\x56\xf4\x42\x59\xb8\x51\x60\x00\x80\x7d\xb4\x1e\xe9\x25\xd7\x1c\xe7\x78\xcc\x86\x33\x13\x9d\x98\x98\xd5\xd1\x1f\x12\x06\x4e\x79\xb7\x2c\xfa\xa9\xe3\x47\x50\x8f\xd1\xf8\x66\x71\x04\xfe\x0f\xb6\x86\x48\x75\x40\xae\xe5\x10\xe5\x92\x71\x67\x4b\x94\xa5\x5d\xf4\x77\x62\xf0\xd9\x98\x99\xa0\xc8\xdc\xbe\x84\x89\xdb\x41\xef\x9c\x41\xcc\x66\x76\x5d\x7a\x01\x63\x65\x63\x38\xad\xac\xbf\x12\xe4\xc8\x55\x46\xd7\xbf\x06\x6b\xaa\x6f\xd8\x63\x74\x13\xaa\xd7\x31\x8f\xd2\xa5\x83\xe7\x82\x0c\x3a\x1b\xec\x67\x2f\x51\x4f\x21\xe6\x62\xdf\x44\xf1\x58\x44\x0b\xaa\x08\xa4\xb9\xb5\xd6\x8f\x0d\xc1\xf4\xc3\x4f\xcb\x92\x7a\xbd\xe0\x0b\xbc\x63\xb7\x00\x3d\xd3\xd0\x64\x95\x6f\x29\xd7\xda\x66\x74\xa1\x0d\x50\xef\x97\x19\x84\x10\x17\x20\x6c\x91\xcf\x2b\x0e\x46\x6e\x93\x45\xc9\xe3\xaf\x24\x1a\x5e\x6b\x09\x48\x6b\xbc\xfe\x0c\xa6\x52\x99\x38\x3a\xc8\x4c\x32\x5f\x9b\xcc\x88\x1e\xfa\x06\x8d\xd3\x6f\xbe\xf9\x53\x84\x3e\xbb\x7f\xfc\xf9\xdf\xff\xfd\x4f\x7f\xee\x92\x39\xe3\x14\x72\x68\x37\x5b\x23\x0f\x08\x9e\x17\x89\xc2\x1d\x28\x73\xaa\x1d\x76\xc1\x1e\xc0\xba\xe5\xb7\xe6\x80\xda\xcc\xb6\xaa\xc7\x41\x98\x14\x9e\xdb\x13\x2e\xc3\x93\x89\x72\x47\x33\x0b\xc7\x90\x44\xf5\xf2\x1c\xc2\x0b\xbb\x56\xa2\xff\x1f\x0d\x38\x15\x13\x7d\x54\xb6\x0b\xe7\xa2\x89\x17\xaf\x75\x23\xe8\x6b\x6b\xff\x53\xe0\x81\x7d\xef\x2e\x38\x9e\xc4\x44\xd8\x22\x9b\xce\x64\xe7\x0d\x89\xc0\x1c\xc8\xe7\x55\xc2\x63\x87\xb1\x23\xc9\x0a\x83\x00\xa1\x99\xc1\xf1\x98\x0d\x3e\x63\xcd\xb9\x7b\xae\xe2\x33\x7c\x64\x3c\x2f\x33\x1c\x11\x64\x44\xf5\xaf\x3f\x9f\xea\xdf\x7a\x68\x7d\x0a\xf1\xb2\x3d\xf4\xdb\xa9\xcd\x93\xc7\x42\x4d\xf4\x4f\xef\x9d\xac\x6d\x9b\x80\x41\x53\x89\xc6\xef\x4e\x1e\xb0\x30\x85\xb4\x4e\x2c\xfe\xf7\x3b\xcb\x5b\x7d\x6d\x83\x50\x3a\x4f\x38\xbf\xb7\xd1\xc4\xa5\x2f\x4f\x1c\xea\x06\x10\xb8\xf7\x9c\x98\xcd\xb7\x81\xe1\x5a\x92\x3c\x82\x17\x08\x3a\x5e\x4d\xd1\xf1\xdf\x24\x67\xe8\x78\x8d\x97\x89\xfd\xd5\x3d\xb5\xc1\xce\x58\x22\x57\x35\xd4\x85\x3a\x25\x6b\x63\x2b\xfd\x3e\xe1\x53\x98\xd7\x27\x37\x57\x13\x2e\x0c\x03\xcd\xee\x9f\xec\xca\xb2\x13\xb1\xb2\x94\xc1\x0e\x80\x8a\xe4\xfa\x15\xe0\x72\x55\xb3\xfa\xec\x87\xf4\x5f\xc6\xb5\x0e\x8b\xe2\x32\x16\x8d\x79\xd8\x87\xea\xe9\x46\x3f\xa3\xaf\x2d\x13\x7a\xaf\x6f\x19\x1b\x9b\x6d\x96\xa1\xaa\x83\xb5\xef\xe0\x97\xa0\x03\xca\x90\x75\x1a\xd7\x7f\xf9\xdb\xc9\xf1\xf1\xb1\xff\xfa\x52\x4f\xe5\xff\x47\x54\x49\x92\xcc\x4c\x4b\xee\x0e\x5b\x8f\xd9\x27\x87\xdf\xe9\xcc\xd7\x19\x9e\x0f\xd4\xbe\x8d\x78\x82\x8e\x32\x93\x6e\xcc\x23\x89\xfe\xa0\x05\xdb\x60\x29\xe1\x47\xad\xc9\x55\x9f\x2a\x0b\x18\xf6\x4c\xc7\xca\x9a\xc4\x8b\x07\x2b\x84\xf0\xf0\xaa\x2d\x96\x21\x18\x2c\xd0\x82\xa6\x9c\x13\x0b\xf3\x01\x35\xd8\x01\x50\x4d\x3f\xaa\x41\x51\xa9\x8c\xdb\xaf\xbe\x2b\x4b\x0c\x37\x03\x53\x31\x64\x5d\xb3\x00\x16\xeb\xc2\xf2\x06\x33\xcf\x5e\xe8\x40\xd1\xd7\x0b\x0b\x11\x25\x65\xba\x5c\x62\xb1\x3e\xc9\x4e\x5b\x99\x38\x33\x78\x68\xe0\x32\x89\x5b\x00\x70\xe2\x26\xf6\x68\xd9\x40\x10\x2b\x60\xba\x3b\xcd\x9f\xdd\x08\xea\x51\x40\x58\xa2\xa9\xc6\x42\x58\xc4\x63\x4b\xd7\x59\xaa\x6d\x5e\x66\xf1\xef\x94\xa5\x15\x17\x58\x24\x33\x73\x1c\x53\x26\xff\xde\xbe\xe1\x3e\xae\x61\xe0\x7c\x02\xb5\x82\xc8\xbc\x83\x83\x74\x78\x75\xeb\xbe\x69\x7f\xed\xc2\x3a\xe4\x85\x76\xec\xf4\x44\x67\x93\x10\xf8\x31\xbb\x80\x21\x3c\xc6\xd8\x67\x52\x9f\x88\x6c\xfe\x3e\xe3\xd7\x34\xd1\xf7\x16\xd0\xf8\xf1\x98\xe5\x7e\xee\x21\x92\xd0\x25\x65\x3e\x44\xd1\xb0\x77\x3e\x33\xf2\xf3\x3d\x55\x7a\xcb\x64\x7c\xaf\x39\x98\xc3\x74\x08\x94\xaa\x3e\x5b\x3b\xd2\xf1\xae\x29\x6b\x83\x48\xa5\x1e\x57\xa6\xa5\x6b\x71\x56\x37\x71\x64\x45\x52\x1a\x10\x1e\x9c\xdf\x31\xd3\xad\xb9\xb3\x94\xc5\x46\x07\xed\x05\xcd\x1d\x39\x5c\xc5\x80\x03\x40\x1f\xb9\x00\x67\x2f\x01\x57\x88\x28\x03\x96\x2e\x77\xcd\xac\xb1\xb1\xd2\x2f\x65\xa8\xbb\xce\xea\x5b\xdb\x2c\x2d\xc2\xd2\xa5\x3b\x50\x1d\x28\x6e\x60\x05\xa0\x98\x44\x09\x86\xbb\x03\x1a\x82\x00\xd2\x9e\x71\x91\x06\xb5\xb4\xed\xf5\x62\xba\x31\x50\xcd\x09\x61\x5f\x9b\xbf\xdf\x23\x7b\x37\x7c\xd3\xb3\xf7\xb9\x90\x56\x89\x74\x7b\x0e\xa5\x3e\x48\x6c\xac\xe8\x00\x49\x37\xc7\x22\x36\xf6\xf2\x50\xaf\x30\xe9\xca\x5a\x02\x5b\xf3\x14\x3d\x52\xb9\x18\xb3\x11\x77\x26\x47\xc4\xb8\x07\xf5\xeb\x81\x3a\x5a\xea\x0f\x4b\x60\x02\x30\xea\x2a\x0a\x80\xa8\xdd\x5d\x12\xab\x20\x16\x78\xc2\x78\x4c\x3a\xa6\x04\x54\x14\xf7\xb7\x9e\x08\xe7\xc1\x16\xc4\x24\xbf\xc1\x4d\x51\x5b\x9a\x5c\xca\x8e\xd6\xf9\xe2\xc6\xc3\x3d\x64\xdb\x81\xb2\x4e\x8f\x6c\x5b\x14\x13\x7f\xab\x41\x2b\x4e\xe7\x0c\x52\x9f\x73\x6b\xef\xa1\xf2\x76\xdd\x84\x28\x9f\x97\xb3\x71\x05\xfc\xd5\x67\xe6\x1e\xc1\xb2\xfb\x38\x6d\x8c\xe6\x82\xa7\x2b\x8f\x0f\xe0\x72\x1b\xcd\x36\x58\x99\x66\xc8\x66\xfc\xd4\x6a\x55\x17\x94\xdd\x1b\x8a\x7f\xaa\x3d\x32\x68\x88\x24\x46\xc1\xef\xee\x0e\x33\x2b\x7e\x84\x28\x8b\x92\x14\x2e\x3e\xa9\x70\x74\x6f\x10\x1d\xeb\xcc\xbe\xfa\x9b\xc9\xe6\xcc\xd1\x1a\x89\x29\x4d\x12\xdb\x6d\x76\x81\x66\xa5\xc8\x1e\x28\x46\x18\xdd\xdd\x0c\xab\xfb\xbe\xa7\x65\x77\x4e\xf5\xed\x99\x27\x10\xf8\x9f\x1f\x69\xa7\xd0\xd5\x02\x32\x33\xc9\x91\xba\x37\x2f\xd5\x01\xae\x15\x6e\xef\x1d\xfd\xc7\xfa\x16\x9a\x2c\x2b\x28\xb5\x7a\xf2\x59\xc7\xe7\xf6\xe3\x4f\xfa\xdb\xea\x1d\xf9\x04\x99\x5b\x1e\x2c\x63\x89\x99\x9e\xa0\xeb\xb5\xc6\x1a\x63\x2e\xc6\xad\x86\x74\xb7\xda\x6a\x40\xa6\xc7\x96\x55\x04\x6c\x57\xae\x95\x47\x63\x90\xc4\x89\x51\xb8\xd5\x02\x34\xb1\x0c\x7d\x57\x6f\x6c\x5e\x23\x33\x48\xbd\x09\x16\x73\x23\x27\x4a\xa2\xe4\xfb\x8a\x1d\xce\x22\xe8\x77\xd8\xe1\x2d\x2a\x9c\x84\x0e\x20\x90\x42\x9a\x38\x80\x1f\x65\x1e\x0d\xca\x33\x27\x5f\x2b\xc8\xde\x1d\x54\x86\x20\xe9\x11\x17\x02\x50\x0b\x63\x2d\x8d\xd7\xe3\x64\xec\x58\xe9\xea\x12\x2f\x7d\x16\xb8\xab\xb7\x63\x93\x7d\xcc\xe0\xa6\x04\xa0\xc1\xea\xc7\xb0\x73\x49\xab\x70\x08\xb6\xc4\x44\xdd\x08\xc6\xac\xef\x5e\xf1\x99\xa4\x20\xe2\x0a\x23\x87\x40\xa0\x9c\x09\x0b\x05\x31\x13\x67\xab\x6e\x27\x57\x33\x89\xae\x09\x7b\xc5\xaa\x5c\x5a\xcc\xf5\x58\x82\x46\x8c\x71\xfa\xce\x06\xc8\xe6\x87\xee\x45\x0b\xab\xc1\x38\xa2\x62\x51\xb9\x6d\x40\x97\x33\x74\x6d\xdb\x50\x58\xc7\xce\x04\xd3\x25\xeb\x8c\x4c\xf5\x8a\x1b\xd5\xa4\xd0\x59\xf9\xb4\xaa\x9d\xb8\x31\xc5\xcb\x89\xe0\xc9\x2e\x7b\xe4\x9a\xc8\xa9\xb9\x0b\x03\xf1\xba\x46\x7f\x4f\x71\x62\xec\xfd\xcc\x92\xa3\x1b\x36\x48\x0c\xdf\xfd\x19\xf5\xe1\xba\x44\x9f\x80\x2f\x82\xa7\x13\x5a\x53\x1c\xd1\xe5\x8a\x08\xc9\xb5\x3e\x56\xb3\xc9\xf7\x7f\x91\x13\x8b\xcf\x3c\xc1\x51\xc4\xd3\x32\x16\x73\x87\x99\x54\xb4\x16\x4e\x0a\xa3\xfb\x74\x4a\x04\x23\x06\x09\x1e\xde\x43\xee\xbd\x56\xc3\xe5\x38\x55\x8b\xef\x26\x51\x42\x5b\x83\x46\x43\x9e\x4a\x5f\x7f\x76\x66\xbe\x6a\x9a\x40\xae\xfd\xdc\xd0\x19\x32\xcf\x90\x79\x76\x8c\xbe\xc7\xd1\x3d\x61\x31\x5a\x25\xe9\x9c\xda\x04\x72\xb8\xa1\x80\x5d\x06\x56\xaa\xfc\xc4\x8c\xca\x6b\xda\xd7\xd7\xd0\x98\x2d\xf1\x3d\x68\x48\x9f\x6d\x34\xba\xd6\x34\x3b\x69\x5b\x9e\x1e\x4a\x48\x1a\x2e\xdb\xd9\xa3\xee\x9b\xf3\xa1\xcc\xf9\x00\xbb\x12\x60\xd3\xa5\x0c\x61\x00\xe3\xf8\x4a\xa2\x74\xe5\x8c\x1f\x60\xf0\x48\xc0\x01\x65\x26\x09\xe5\x14\xa9\x16\x07\x17\x64\xcc\x20\xa8\xcf\xb5\xb8\xf6\x5c\x25\xf4\x79\x7a\xdf\x7b\xd5\xe1\x9b\x99\x54\xf4\xdd\xdc\x29\xc6\x8c\xb4\xf7\x80\x45\xb5\x20\x0c\xf4\xb0\xf6\x2d\x43\x3e\x7f\xfb\x4d\xcb\x05\x27\x9a\x59\x64\x86\x23\xbf\x84\x29\xa3\x16\xa6\xdc\xda\x0a\x83\xb8\x21\x67\x52\xcf\xbe\xa7\x12\x49\xac\xa8\x9c\xd1\x4a\xfd\x34\x04\x00\xd8\x65\xd5\x71\x37\xd4\x81\x0a\xc4\x81\xc2\x5a\xf8\x00\xe8\x63\xf4\x01\xd4\xed\x6c\x4a\x8a\xfb\xfc\xfd\x3a\x96\xa0\x16\xa4\x16\xc8\x6e\x1f\x91\x03\x6e\x06\x6d\xad\x28\x3e\xd8\xfd\x18\xf5\x33\x33\xa7\x41\x30\x30\x06\xcc\x0d\x33\x22\x89\x24\xdb\x10\x5f\x2b\x8b\x00\x38\x03\x81\x80\x10\xc8\x2a\x52\xff\x9e\x81\x6a\xfa\x61\x3e\x42\x42\x1e\xbe\x27\xac\x49\xed\x6b\x3f\xc2\x41\x2e\xa5\xb9\x6a\x88\x7d\xaf\xf0\x73\xa3\xf3\x6f\x33\xc0\xf6\xc7\x2e\x03\x8d\xa0\xb3\x13\xbd\xe4\x5a\xd0\x8f\xee\x6d\x14\xbb\x31\xfb\x58\xd8\x89\xc7\x05\x97\xe1\x39\x73\xfb\x07\x9b\xa9\x44\x4a\x5c\xb4\x3a\x64\x01\xf8\x05\x36\xee\x7f\xc6\x43\x54\x0a\x18\xb5\x3f\xa4\xc6\xa4\xe5\xf7\x1b\x39\x16\x0a\xcb\x00\xe6\x72\xd7\x54\xf9\x34\xff\xf8\x17\x79\x05\x27\x76\x1f\x99\xd5\xd5\x65\x44\x76\x0f\xc8\xdd\xd2\x10\xe9\x43\x4d\xb2\x1a\x24\x38\xf6\xa9\xfc\x2b\x1e\xa3\x8c\xbc\xba\x17\x1c\x79\xf9\x69\x15\x0a\x95\xb4\x9a\xdb\x26\xca\xfe\x14\x78\x2b\x4d\x91\x70\x03\x60\x13\x88\x5c\x36\x71\x0c\xb4\x5f\x7b\xfd\x53\xe9\xef\x93\x6a\x1a\xbb\xe6\xf1\x2e\x84\xd5\x1d\xa4\xac\x4c\xd7\x2d\xc2\x19\x65\x55\x8d\xb2\x86\x95\x58\xf1\xfa\x40\xb4\x78\xd2\xbe\xaa\x17\xf8\x1d\xa7\xe9\xec\x16\x00\x97\xeb\x10\x06\x1c\x36\xd4\x82\xf8\x6c\x17\xbd\xcf\xba\x1b\x1f\x7b\x5d\xb7\x29\xd6\x8d\x95\x5d\xff\x18\xfd\xef\xdb\xab\xcb\xa3\x25\x16\x72\x81\x21\xf9\xd0\xb5\xd5\x73\x65\x01\x8c\x02\xea\xcc\xeb\x94\xa1\x31\x3b\x42\x73\xde\x33\xde\x9c\x53\xb4\x50\x6a\x25\x4f\x4f\x4e\xe6\x54\x2d\xd2\xe9\x71\xc4\x97\x27\xd9\xda\x9c\xe0\x15\x3d\x99\x26\x7c\x7a\x22\x08\x44\xf4\x1d\x7d\x7b\xfc\xdd\xb7\xb0\x35\x27\x0f\xdf\x9e\x80\x0d\xff\x78\xce\xff\x70\xf1\xdd\x7f\xfc\xe9\xcf\xba\xe1\xd5\x5a\x2d\x38\x3b\xb5\xae\xa2\xc6\xb6\x8f\x8c\xe0\x7b\x62\x3e\x29\xf4\xf2\x1f\xc7\xdf\x84\xc3\xb0\xaf\x2e\x79\x4c\x12\x79\xf2\xf0\xed\xc4\xed\xcc\xf1\xaa\x8b\xf3\x2b\x63\xf8\x7e\xc9\x0b\x25\xed\xf4\xef\x9e\x64\x5c\xee\xd1\xa6\x6d\xa9\x38\x2b\x61\xbc\xe6\x0e\x27\xe6\x9e\x94\xfc\x81\x1d\x34\x30\x2f\x49\xd5\xe8\xf4\x5d\x11\x9d\x6b\x65\x9b\x4e\xe9\x69\xe0\x7d\xa3\x11\xa0\x85\x1a\x1b\xc4\x0a\xd3\xaa\x38\x1f\xeb\x65\xde\x65\xfd\x9e\x12\xf7\x76\xdf\x80\xb7\x76\xba\x5b\x82\xdd\x26\xe6\x6b\xe7\x13\xe7\x8f\x0e\xe4\x76\x1f\xd0\xb0\x2d\x8b\xa7\x78\xc4\x4b\x43\x3c\x30\x16\x37\xae\x9a\x61\x2c\xb0\xdc\x2e\xb8\xa2\x6f\x70\xa5\x7c\xde\xb3\xf1\x4c\x53\xe9\x3a\x74\xbc\xd2\xe5\xaf\x42\x65\x2e\x8b\x35\xb2\x32\x45\x53\xe5\x31\xfa\x50\xa8\x2e\x91\x05\x8c\xdc\x7c\x38\x43\xdf\xfe\xe5\x3f\xfe\x34\x66\x5f\x57\x70\x31\xf0\x60\x73\x31\xb7\xf1\x2b\xc0\xbb\x96\x58\x2a\x22\x4e\xc4\x2c\x3a\x31\x0e\xf1\x13\xfd\xfd\x91\xed\xf4\x88\xcf\x8e\x3c\xee\xe5\x91\x85\x00\x3c\x5e\xc6\xdd\x52\x3b\x73\xa4\x67\xc2\x47\x6c\xe8\xa9\x84\x30\x55\x83\xa2\xc1\x67\x1e\xe1\xd8\x44\x18\x1b\x30\x74\x3e\xab\xf8\x07\x94\x9a\x7b\xef\xf1\x7b\xb0\x74\x7d\x64\x60\x1a\xf5\x47\x73\x3f\x10\xb8\x8e\x44\x9e\x52\x6f\x73\xbc\x24\x94\xce\xba\x2c\x7c\xf5\x61\xcb\x02\x80\x4d\x26\x2c\x16\x3c\x65\x0e\x42\x94\x33\xc2\x67\x10\x3d\x01\x82\x81\xf3\x0e\x81\x71\x88\x71\x15\x64\xbd\x0a\xb2\x32\x17\x0c\x98\x31\xeb\x97\x7b\x47\x18\xdd\x4d\xeb\xfc\x14\x30\xba\xbb\xae\xbb\x65\x28\x2f\xb4\xe0\xbb\x86\x70\x98\xa3\xd4\xe1\xfa\x81\xf7\x37\xba\x6c\x3c\x1f\x00\x1f\x4d\x58\x6c\xcf\xc0\xe4\x40\xd8\x36\x39\x52\xfc\x08\xe0\x02\x20\x09\xdd\x00\x5b\xd7\x15\x8f\x01\x57\x57\x97\x6b\x52\xbf\xdf\x62\x9c\x26\x54\xff\x73\x30\x50\x2b\x93\xd8\xe2\x9d\xd6\x15\x4e\x19\x23\xc2\x1a\xf1\x37\xde\xa8\x1d\x1d\x61\xe1\x56\x36\x7b\xc2\x33\xc1\x3c\x04\x1d\xf6\x71\x90\x38\x60\x02\xc7\x08\xe2\xd1\x17\x7c\xc9\xb5\x38\xc3\x53\x19\x3c\x34\xf9\x0c\x70\x09\xd7\xca\x5e\x4b\xbc\x32\xf8\x4a\x2f\x37\x1b\x7d\xb4\xf4\x23\x63\xe3\x08\x5f\xea\x84\xe3\x3e\xcd\x23\x57\x6f\x18\xbf\x87\x1c\x6e\xa6\x1b\x70\xb3\x2e\xc1\xa6\x0c\xe5\x79\x2c\x90\x28\xfd\x4d\xab\x30\x9a\xa4\x7c\xee\x80\xbf\xb9\x4d\x40\xae\x81\x12\x0b\xc1\x06\x0b\x45\xaa\x8b\xc3\x27\x2c\x5d\x76\xdc\x03\x1f\xdc\xd5\x66\x03\x30\x33\xe1\x4e\x2e\xce\xe9\xa8\x32\xd0\xa9\xee\x5c\xba\xd2\x3d\xf1\xc4\xc1\xdd\x75\x1b\xea\xad\x6f\xc0\x22\xdb\x95\xc7\x9d\x01\x5d\x40\x54\x9c\x59\x63\xc3\x10\x9c\x6c\x51\xe3\xe5\x67\xdd\x0f\x23\xa0\xf8\x77\x59\x3b\xe8\xc4\x10\x67\x69\x05\x83\xb3\x50\xb7\x80\xdd\x2c\x0e\x4d\x0a\x7c\x55\x18\xa5\xc1\x06\xca\xa2\xa6\xf5\x28\x4b\xca\xa3\xff\xf0\x21\xab\xfc\xb5\x5e\x91\x1e\x9a\xa6\xf0\xfc\xf2\x6a\x14\xba\x87\xa9\x99\xed\x51\xb4\x20\xd1\x3d\xa4\x50\x99\x2b\xcf\x1c\x06\x57\xf5\x6d\xba\x1e\xb3\xac\xbe\x8c\xe2\xce\xd7\xb9\xf6\x90\xbb\x1e\x76\x9a\x0b\x14\x53\xb9\x4a\xf0\x1a\xbc\x4a\xcc\xc4\x47\x66\x1e\x29\x1f\x58\xac\x59\xc1\x26\xf3\x59\xfb\x9d\xd6\xbb\x92\x55\xec\xed\xbc\x96\x58\x4c\xa9\x12\xd8\x96\x3d\x36\x8b\x59\xe6\x07\x48\x92\x25\x66\x8a\x46\x63\xb6\x24\x98\x85\xf1\xbb\xd6\xab\xa6\x17\x39\xe6\xc4\xc2\x5d\xce\x66\x24\x52\x19\xd4\x13\x08\xef\x7e\xa5\x36\x9d\xc1\x6e\x73\xf7\x27\xaf\x71\xea\x3f\x50\x66\x12\x0b\xe9\x72\x25\xf8\x83\x65\xc3\xee\x6a\xdc\xd2\x96\x0d\xf5\x88\xec\x95\xeb\x94\x41\xf8\xcb\xd1\x94\x2f\xc6\xeb\x53\x2f\xaa\x64\xfc\x9d\x31\xa9\x77\x09\x5a\xac\xab\xac\x15\x84\x9e\x98\x03\x16\x46\xaf\x78\xc8\x85\x62\x45\xf4\xf1\x3b\x97\x0c\x02\xf6\x9e\xb1\xab\x56\xab\xff\x36\xa5\x10\x89\x78\x20\xf1\x98\xe5\x41\x2d\xac\xdc\x98\x1d\x3a\x94\x55\x5c\xd9\x0f\xc7\x71\xeb\xdc\xca\xbc\x39\x80\x44\xde\x0c\xc2\xcb\x27\x3c\x34\x54\x80\xa9\x2e\xf5\xfa\x04\xc5\x45\x5a\xdb\xbd\xb3\xa2\x2c\xb6\xa2\x82\x2d\xc0\x94\x73\x31\x7b\xc2\xf4\x29\xfb\x06\xcf\xc7\x07\x82\xdb\xc0\xf0\x52\xfe\x63\x55\x1b\x63\xe6\x72\xd9\x66\x69\x62\x30\xda\xea\x6a\xd2\x58\x04\x0f\x17\x75\xfb\x72\xd1\xd7\xde\xb6\x86\x82\x22\x36\xde\x13\xec\x92\x8f\xa2\x75\x56\x7b\x1b\x48\x97\x30\x99\x82\x58\xe1\xea\x57\x40\x3a\xea\x9c\x28\xb8\xd1\xe3\x34\x31\xa9\x59\xe0\xe3\x07\x34\x10\x9c\x24\x88\x2a\x39\x66\x1e\xbc\xc4\xe0\xf9\x02\x97\x75\x89\xb6\xb1\x55\xbb\xa0\x0b\x68\xd6\xd6\x4c\x04\x59\x8c\x46\x54\x85\x23\x02\xdf\xf5\x3a\xc4\x7c\x5f\xad\x08\x36\x79\x04\xf6\x18\xb2\x50\xef\x2a\x6e\x82\x0d\xba\x87\x4a\x76\xfb\x88\x7f\xaf\x27\x5d\x53\xc9\xb0\xf3\x96\x1c\xa3\xbe\x99\x9d\x56\xba\x5c\x39\x37\x33\x5a\x9b\xbd\x68\xc3\xbb\xb4\x66\xa3\xa4\xaf\x48\xed\x75\xd7\x15\x16\x8a\x46\x69\x82\x45\x02\xb0\xca\xb3\x34\x41\x74\x16\x54\xa6\x83\x3d\x30\xd0\x15\x7a\xbb\x22\x0e\xf7\xb5\x73\x0b\x49\xbc\x24\x41\xd6\x9c\x35\xf1\x24\x81\x5b\xd9\x00\x9a\x1a\x7f\xa5\x6e\xeb\xfd\x31\x3a\x2f\xd6\x21\x84\x33\x11\x40\x5e\x51\x69\xd8\x9f\x1f\x6f\x90\xee\x61\xea\x19\xd2\x99\x56\x2b\xbf\x0a\x4e\x5d\x5d\x8d\x5c\x2c\xef\x3b\xfa\xac\x1d\xfa\x74\x73\xa8\x62\x65\xba\xd7\x08\xea\xa8\xe6\x3c\xd9\xfe\x40\xd4\x0c\xd0\xdd\x0c\x1d\x07\x19\xc2\x85\x6d\x31\xd0\x9f\x83\x42\xa5\xc5\xc1\x2e\x1b\x0a\xe1\xc1\x3e\x76\x1c\x6a\x50\x56\xa2\xfb\x40\x03\xca\x09\x23\x14\x6a\x57\x76\xb3\x19\xe7\xe7\x5c\x81\x07\xa4\xc7\xa5\x55\x68\x62\x62\x5a\x0a\xb5\xce\x61\x0c\xb6\x12\x04\x40\xf6\xfa\xc3\x36\x25\x28\xa1\xec\xde\xe5\x97\xea\x9d\xef\x21\x9c\xb5\x0e\x87\xcf\x8c\xde\x10\x73\x8d\x58\x53\x05\x72\xbd\x83\xa4\xd3\x2e\x47\xa3\x5a\xfd\x74\x23\xe9\x84\x63\x5e\xaa\x08\x1e\xcc\xa3\xfd\xb6\x34\x46\x51\x7a\x85\xc2\x85\x4e\x9a\xfb\x25\x88\xe7\x52\xd4\xd7\x88\xae\x5d\xdf\xeb\x45\x3e\x3e\xa8\x03\x38\xf2\xdd\xe5\xf9\xe0\xc3\xf0\x32\x5f\x6d\xe1\xaf\x77\x83\xbb\xfc\x2f\x37\x77\x97\x97\xc3\xcb\x8f\xe1\x4f\xb7\x77\x67\x67\x83\xc1\x79\xfe\xbd\x0f\xfd\xe1\x45\xe1\x3d\xfd\x53\xfe\xa5\xfe\xf7\x57\x37\x85\xfa\x0e\xb7\x3f\x0e\xaf\xaf\xf3\x3f\x8d\x86\x9f\x06\xe7\x93\xab\xbb\x1c\x06\xf3\xf9\x2f\x97\xfd\x4f\xc3\xb3\x49\xc5\x78\x6e\x06\x67\x57\x3f\x0d\x6e\x06\xe7\x8d\x20\xcd\xd9\x7c\x2b\x97\x74\x1f\x81\x1d\x5b\xd7\xfb\xe8\xa3\x99\xa0\x84\xc5\xc9\xda\xc4\x9d\x3a\x25\xab\x10\xe6\x16\x5e\x01\x74\x49\x78\xba\x4b\xf8\xe8\x68\x41\x10\x7f\xd0\x0a\x7e\x82\x6c\x6b\x36\x6b\x06\xcb\xfb\x5a\xa0\x24\x25\xca\x06\xea\xc6\x28\x79\x25\xd6\x3e\x0f\xa3\x69\x38\x19\x8c\x82\xed\x04\xad\x88\x68\x1a\x0b\x5c\xd0\x22\x5d\x29\x3a\xad\x0f\x08\x6e\x09\x2f\xd0\x5d\x0d\x34\xa0\x3f\xd5\xf9\xd1\x97\xd5\x8c\x31\x17\x17\xbb\x4b\x48\x20\xb4\xb0\x6d\x19\x1b\xff\xb5\x0b\xa3\x5a\xa5\xd3\x84\x46\x88\xc6\x45\xd5\xde\xa4\x6f\x18\xeb\x65\x11\x1b\x6c\x45\x04\x48\x4c\x5a\x10\x5d\x09\x72\x84\x53\xb5\x70\x15\x76\xc1\xa0\x64\x91\x5c\xc7\x4c\x92\x48\x10\xe5\x8a\xfe\x93\xd8\x15\x36\x09\x7a\x82\xc1\xd8\x24\xae\x18\xf2\xc5\x8f\x03\x9c\xd6\x1a\x73\xb5\xf9\xd2\xb4\xde\xc1\x5e\x67\xde\x6f\x5c\x1a\x3b\x62\x2a\x8b\xc5\x2b\x41\x36\x34\x0f\x5d\x79\x14\x3d\x6f\xcd\xa9\x23\x17\x6c\x6c\x36\xd9\xc5\x2d\x57\x4f\x63\x13\x8d\x85\x84\x92\x0f\x33\xb6\xad\xdb\x47\x67\x82\xc0\x25\x62\xbd\xd2\x4e\x8d\x86\x28\x0a\x1b\xe7\x0c\xe1\xcd\x5a\x63\x98\x92\x05\x4e\x66\xc6\x40\xa6\xb7\x26\x3b\x57\x65\x12\x1d\xf1\x7b\xc2\x6e\xcc\x86\xbd\x08\x3b\x64\x46\x00\xcf\xd2\xfa\xbc\x71\x22\xb3\xa6\xe9\x31\x3a\xaa\x72\x79\x1e\xa6\x08\xb4\x11\x57\x83\xc7\x26\xd8\x3a\x83\xed\x73\x29\x22\xb3\x19\xfd\xac\x1b\x1c\xb3\xff\xcb\xde\xb7\x35\xb7\x8d\x64\x69\xbe\xcf\xaf\xc8\xe8\x7d\xb0\xbd\x41\x51\xdb\x3d\x31\x11\x13\x8e\x98\x07\x96\x2c\x77\xb1\x5b\x96\xd4\x92\x6c\xd7\xee\x70\x82\x4e\x02\x49\x12\x23\x30\x93\x4e\x00\x92\x39\xd3\xfd\xdf\x37\xf2\x9c\x93\x17\x5c\x09\x90\x94\xdb\x5d\x53\x0f\x55\xb6\x25\x20\x91\xd7\x93\xe7\xfa\x7d\xa2\x11\xb8\x0c\x52\x57\x2c\xc0\x82\x93\xcb\x00\xdc\x83\x55\xea\x8f\x42\x02\x33\x0b\xd2\x2b\xee\xdd\xb3\xc3\x5c\xb9\xf5\xb5\xe8\xf0\x2d\x83\xfb\x29\x29\x11\xd6\x84\x01\x07\x3b\x4f\x50\xd0\xf5\x28\xc6\xec\x1d\xd5\xde\x9a\x9f\x5c\x5c\x4d\x2f\xaf\x1f\xe6\x17\x77\x97\xef\x2e\xaf\x1f\xa6\x93\xab\xfb\xbe\xc7\xef\x14\x35\x01\x95\xd3\x57\x2d\xcb\x70\x12\xe2\x9c\x4e\x9e\x2f\x4d\x73\x83\xf2\xc7\x0e\x96\x64\x7f\xef\x93\x78\x3b\x8f\x93\x2c\x32\xd7\xdf\x6e\x2e\x64\x0c\x88\x8f\x07\x6d\xd5\xe6\xa6\xaa\xa3\x70\x4f\x30\xf7\x84\x95\x20\x78\xdb\x3d\xd9\x1d\xed\x7e\x0f\x90\x50\xe0\x0d\xd3\xc2\x1c\xfe\x78\x26\x83\xdb\x66\xbc\x1f\xe6\xdb\x34\x77\xdc\xd8\xca\x4d\x54\xc7\x84\xfd\x4d\xb2\xac\xe0\x46\x3e\xda\xc7\xa0\xe4\xbb\x65\x56\x08\x86\x27\x84\x9d\x4c\x02\x76\x38\x66\x4c\xe4\x0d\x97\x31\xcf\x95\xde\xb5\x0c\xb1\x9f\xf0\x0c\x8f\x4d\x59\x84\x86\x57\xb6\xb1\xff\xed\x2a\xe0\xa3\x5c\x56\xb7\x12\x82\x53\x3e\xdc\xfc\xf9\xf2\xfa\x7e\x7e\x79\xfd\x69\x7e\x7b\x77\xf9\x7e\xfa\x8b\xc3\xd7\xd8\xf2\xac\xce\x3b\x25\xcc\xa5\x68\xa4\x8b\xad\xf4\x6d\x94\x2f\x48\xfe\x64\xdb\x21\xae\x8a\x64\x39\x93\x56\xb2\x68\xdf\xfc\x5a\xab\x62\xb5\x6e\x6e\xa8\xda\xcb\xdb\xc9\xc3\xcf\x07\x75\x13\x70\x18\x90\x1d\x06\x4f\x5b\x1d\xae\x2c\x59\x92\xdc\x43\x8c\xb3\x4a\xf7\x00\x4d\x04\x1e\x6d\x72\x78\xb7\x48\xb4\x83\xac\x97\xba\xd0\xea\x54\xfe\x1b\x1e\x6f\xdb\x40\x0f\x81\xdc\x2c\x5d\x23\x90\x1f\x8a\xe4\x63\xb5\xd6\xde\x36\xfc\xac\x74\x83\xfd\xe1\x2c\x15\xab\x95\x88\x71\x7b\x55\x1b\x26\x57\x10\x89\xc0\xc8\xdf\xeb\x4d\xb3\x48\x34\x40\x47\x5c\xcc\x2e\xf5\xa8\xbf\x00\xbf\x75\xaf\x34\xcb\x8a\x0b\x4b\x0a\x1a\x29\x99\xe5\x5c\xb6\xc4\x34\x9f\xea\xc9\x82\xbd\x44\xd1\x8d\x66\xae\x2c\x81\x1c\x24\xd6\x73\xed\xcf\xc1\x21\xd1\x1c\xa2\x3b\x92\xe4\xf1\x08\x68\x90\x02\x16\xd3\x86\x45\xa8\x10\xcd\xbf\xb8\x73\xa3\xd3\x74\x22\xf0\x09\xf0\x38\x22\x5d\x02\x21\x23\xa2\x37\x08\x38\x48\x5a\x73\x54\x07\x2d\x48\xe5\xcb\x9f\x68\xea\xd1\x6a\x2d\x7b\x3c\x3d\xa9\xbe\x5d\x20\xa7\xbc\x0d\xf7\x6f\x55\x48\xe4\x03\xba\xfe\xb8\x88\x08\x02\x14\x9b\xf5\xc9\x16\xe4\xd0\xb2\x17\x6c\xcc\xce\xcc\x32\x93\x91\x22\xe2\x33\x80\x11\x98\xc9\xb6\xa8\x86\x95\x01\x2d\x6e\xae\x5b\x7b\x6b\x1d\x07\x41\x33\x20\x77\xd6\x4e\x76\xbf\xea\x2e\x66\x1f\x07\x65\xaf\x25\x57\x85\xd6\x65\xc1\x31\x6c\x59\xbe\x8e\xdb\x0a\xbd\x9d\x54\x1d\x96\x52\xd3\x2f\x23\xa1\x8c\x1f\x83\x57\xe4\x9a\x67\xa8\xb9\xe6\xd1\xba\xdc\x71\x18\x4d\x19\x23\xa6\xda\x5d\xa7\x09\x1e\xe7\x21\xe8\x15\xb8\x18\xa1\x4d\x9d\x64\xd4\xfb\x90\xf1\xc3\xd1\x17\x0d\xdb\xf8\xa1\x72\xe4\x8c\x17\x94\x7b\x20\xb0\x52\x5e\xc8\x68\xcd\xb6\x29\xc7\x8a\xc6\x35\xcf\x70\x4b\xdb\x08\x3e\x5f\x24\x69\x92\x03\x18\x03\x06\x95\x2a\x33\x6c\x2c\x1a\xae\x1f\x2d\x0c\x1c\xf7\x60\x50\x5d\x9b\xfe\xc8\x4c\x49\x4f\x08\xfc\x3d\x73\x25\xfd\x91\x0d\xde\xe8\x0c\x49\xf9\x6d\x49\x79\x92\x7e\x39\x8c\xc4\x83\x6d\xe9\xc7\x32\x6c\x65\xa9\xc5\xdb\xea\xeb\xa5\xf9\x6e\xb8\xa8\x87\xe7\x09\x10\xc2\xe9\x00\x31\x5f\xc5\x3f\x6d\x3c\x59\xcb\x54\xf1\x16\x12\x43\xdb\x36\xc2\x99\xb6\xb5\x1d\xab\x62\xd1\x06\x9f\x87\xbd\xea\x6e\xbd\xcb\xef\x6f\xcf\xed\xa9\xfc\x82\xa1\x00\xe4\xb9\xc8\x93\x61\xae\x8d\x60\xd0\x3c\x17\x67\xf0\x7a\x73\xe3\x04\x1a\xd7\x7b\xcc\xb5\x8d\xe6\x41\xb5\x1d\x48\x1f\x64\x70\xd5\x77\xd7\x5f\x0a\xa0\xdc\xbf\x59\xde\x23\x3a\xc0\x31\x9b\x2c\x4f\xea\x3b\xac\xf9\x24\x56\xbf\xfa\x50\x0e\xaa\x84\x7b\xa0\x77\x65\x58\xd3\x68\xee\xcd\xdb\xfd\x0f\x64\x99\xed\x77\xab\x13\x05\x35\xfc\x44\x11\xdc\x81\x33\xd4\xf8\xdd\x23\x66\xf2\x6b\x21\x0a\x61\xf6\xfe\xa2\x88\x57\x75\xdf\xe6\x00\xed\xcc\x0f\x69\xad\x9e\xd9\xa6\x88\xd6\xcc\x36\xce\x62\x91\xf2\x5d\x69\x68\xa0\x2f\xe5\x2a\x05\xe4\xbe\x03\x61\xc4\xa2\x22\xcb\xd5\x06\x32\x1c\x7d\xbb\xba\x90\xb0\xe1\x19\xcf\x73\x9d\x2c\x8a\xbc\x31\x1b\xaa\x84\xa7\x73\x60\x40\xeb\xfe\xf6\xf2\x62\xfa\x7e\x5a\x89\x26\x4d\xee\xff\x1c\xfe\xfb\xf3\xcd\xdd\x9f\xdf\x5f\xdd\x7c\x0e\x7f\x76\x35\xf9\x78\x7d\xf1\xf3\xfc\xf6\x6a\x72\x5d\x8a\x39\x4d\x1e\x26\xf7\x97\x0f\x7b\xc2\x4a\xf5\xaf\xb6\x2f\x04\x0f\xe0\x7e\x6c\xce\xa5\x85\x7f\xb4\xd6\x25\x7d\xf5\x2d\x9b\x58\xf0\xa3\x90\x7d\x90\xdb\xd0\x20\x84\xb4\x91\x0e\x91\x22\x88\xef\x78\xce\x89\xa3\x77\xcc\x26\xcc\x72\x2d\x43\xa6\x71\x66\x94\x05\x42\x86\x31\xab\x83\x4d\x18\x8d\x21\xf2\x96\x9b\x67\xb8\x51\x4b\xc2\x64\x4a\x45\x88\x84\x6a\xcb\x6a\x66\xf2\xf2\x49\xc8\xbc\x00\x98\x46\x9e\xa6\x96\x13\xdb\x3e\x10\x54\x50\xda\x5e\x66\xc9\x26\x49\xb9\xf6\x64\x24\x37\xd4\x16\x28\xec\xb6\xaf\x0e\x30\xa3\x8e\x50\x6f\x8d\x87\x8f\x53\x06\xfd\xbe\xb8\x9a\x82\x0a\x14\xe5\x16\x69\xdb\x7e\x7c\x26\x11\xf3\x87\xbe\xb8\xe1\x90\xfd\x9e\x2b\xf2\xa7\xe1\xe7\xe9\xe1\xf6\x8d\xd8\xc8\x87\xdf\x1f\x54\x0a\x3d\xcf\x2f\x95\x5d\xe3\x3a\x69\xff\x72\x29\x73\xbd\xeb\xad\xd7\x3c\x00\x50\x63\x06\xba\x29\x25\xd2\x94\x09\x4a\xd0\xdd\xc1\x6c\xeb\xd7\xa0\xec\xd8\x2c\x2f\xf2\xc6\x3b\xa7\xbb\x00\x30\xc8\x16\xfd\x3b\x35\x97\xd0\x8f\x3a\x0f\x21\x40\x01\xcc\xc2\x42\x15\x32\xce\x28\xe5\x67\x93\xc8\xf3\x0d\xff\xf6\xc6\x8e\x14\x0b\x7e\x1d\x48\x30\x80\xb9\x88\xd4\x58\x22\x3b\x23\xe4\xba\xa7\x6b\x26\x3b\xe6\x6b\xbf\xb6\x68\x25\x2b\x98\x3d\xde\x46\xc5\xe4\xa5\x27\xb1\x6b\x5a\xbf\x1a\xd4\x3b\x26\x48\xd1\x81\x87\x46\xb6\x5a\x98\x07\x5d\x66\x54\x8a\x09\x6f\xee\xdf\x90\x05\x5d\xa2\xa3\x69\x96\xdd\x61\x94\xf7\xa8\x63\xd3\x18\x5f\x7e\x01\xac\x7e\xfa\x92\x59\x33\x8c\x36\x5b\x47\x27\x65\x7d\x53\x18\xcd\x2c\xd6\x7f\xaa\x05\x5b\x42\x09\x04\xd1\x4d\x6a\x01\x8e\x6d\x58\x0a\x0b\x2d\x09\x90\x1f\xb5\x10\xb6\xdd\x02\xa9\xc8\xc0\xdd\x2b\x8d\xb9\x25\xbe\x16\x14\xb1\xfb\xfd\xff\x19\x76\xcf\xe6\x7a\xc7\x2c\x8c\x71\x58\x82\x41\x15\x48\x74\xe7\x42\xbf\x0a\x99\x34\xe1\x00\xdd\x15\xd2\x5c\xc5\xa7\x48\x76\xe8\x1f\xcd\xaa\x7c\x94\xfe\xb9\xb7\x4a\xc1\x3a\x62\x35\x3e\xff\x62\xc0\x69\x9f\x2a\x78\x69\xf4\x39\xc8\x87\xa5\xd6\xc3\x0b\x6d\xc1\xa3\xc7\x67\xae\x63\xf4\x15\x42\xf6\xc1\x98\xfd\xac\x9e\xc5\x93\xd0\x23\x16\x09\x9d\x73\x82\x52\xc9\x20\xfc\x0a\x07\x8a\xda\x99\x49\x48\x11\x47\x5c\x1a\x09\x4c\x9d\x79\xb2\x5a\x1b\x7b\x32\x08\x9e\x2b\x6d\xc4\x51\x8e\x38\x55\x5b\x11\x11\x78\x45\xcb\x04\x2c\x53\xfe\x54\xc7\x86\x39\xa4\xcc\x9c\x4d\x5d\x9d\x9b\x8d\x4e\x59\xb8\xde\xae\x74\x07\x9a\x30\x12\x9a\x88\x36\x30\x62\x2b\x95\x72\xb9\x1a\x8f\xc7\x4c\xe4\xd1\xf8\xcd\xa0\x8d\x4e\x0d\x86\xf1\x2e\x97\xdb\x99\x2a\x95\x89\x74\xe7\x00\x17\x5c\x06\x3e\x50\xa4\x7f\xcb\x85\xcc\x12\x74\x79\x34\x6c\xff\xfb\x6a\xb9\xfa\xf7\x75\x9d\x37\x5b\xaa\x83\xeb\xbb\x5a\xda\x01\xf4\xff\x01\x2d\xe1\xf3\xcd\x96\xd7\x80\x7a\x45\x4b\xd6\xe3\xeb\x16\x5b\xb0\x15\x95\x1c\x5a\x8c\xf7\x49\xb5\xb1\x5a\x1e\x84\x87\xd4\xd8\x12\xa1\x25\x1c\x54\xc0\xd4\xe6\xb9\xa8\xd4\x94\x1d\x51\x4e\xd6\x51\x19\x36\xb0\x28\xac\xe1\xfc\x35\x1c\x0f\x57\x76\x7a\x4c\x7e\x92\x4a\x8b\x4d\x3b\x10\xd0\xb1\x2a\x9f\xef\x24\xfe\xed\x02\x3e\xd7\x5b\xe5\xf3\x4c\xa3\x16\xc9\x9c\xfa\x8b\x8e\x5b\x2a\xcc\x33\xb2\x5d\x27\x19\x40\x56\x1d\x52\x25\xe4\x9a\xc1\xa6\x21\xbe\xb4\xdb\xa2\xc3\x10\xeb\x87\xd2\x1d\xd6\xa1\xd9\x78\x04\xbd\x92\xa1\x5e\x06\x41\xa9\x76\x31\x56\xcd\x7a\x1a\xbc\x46\x80\x93\x7d\x50\x24\x0e\x14\x9d\x00\xaa\x95\xd2\x32\xa0\x41\x8a\x1d\xe7\x8a\x2d\x6d\xcd\xc9\xa3\x08\xb8\xbd\x62\x00\x71\x7d\x46\x58\x88\x3f\xff\x6b\x66\xa3\xcc\x94\x08\xe0\xef\xd8\xdc\x7f\x04\xbd\xd9\x4f\xbf\xb7\xf9\x1f\x38\x42\x6c\x02\xc8\x32\x62\x2e\xf3\xc6\x06\x7c\x7a\x14\xb4\x85\xaf\x7c\x32\x76\x7b\xe3\xe3\xd4\x3e\x3c\x8a\xb8\xf8\x93\xcf\xf7\x0c\xa7\x9a\xe0\x3e\x75\x57\x47\x83\x46\xf6\x67\xa0\xc0\x74\xcd\x0f\xd0\x5d\x4a\xeb\x80\x93\x6e\xf1\x5e\xcd\xb4\x8b\x3c\x5a\xfb\xbb\xb2\x4c\x71\x47\xa4\x27\x34\xce\x8d\x07\x30\xc5\xe4\xbe\x30\x4b\x2a\x59\x49\xa5\x85\xcf\xb6\x52\x52\x40\x58\x81\xe7\x2c\x56\x61\xb3\x2c\xc9\xf7\xa7\xa2\x0c\x04\xd9\xd9\xb7\xd5\x72\x85\x29\x06\x34\xce\x52\x74\x08\x94\xe0\x04\xa1\x39\x6c\x1e\x1f\x6a\xf1\xc4\xa1\x51\x85\xdd\x2c\x17\x3b\xcf\x64\xf9\x53\xb5\x49\xb2\xb9\x22\x89\x16\x88\x96\x97\x19\x7d\x23\x4f\x9e\xcc\x41\xad\x6f\x6b\xb7\x41\x41\x02\xd4\xf7\xde\x4c\x62\xb7\x03\xc8\xbd\x47\xb1\xcb\x42\xc2\x0e\xda\x51\xac\x6d\x43\x26\x66\x3c\xb4\x5e\xfb\x97\x02\x26\x6e\x1e\x50\x90\xf6\xbb\x45\xf0\xa3\x1f\xcc\xcb\x1d\x49\x68\xb5\xc6\xcd\x1e\xf4\x45\x3d\xde\x0b\x46\x62\xc2\xcf\x33\xad\xa1\xcf\x33\x69\xa0\xa7\xf5\x0e\x45\x30\xd5\x8c\x45\x36\x93\x84\xca\x19\xc4\x6f\x8d\xc0\xa9\x2f\x1b\x55\x1a\x22\x16\xe0\xae\x84\x94\x00\x88\xa9\x96\x47\xb1\x99\x15\xd8\xf2\x3d\x11\x1b\x3e\xd6\x62\x59\xaf\x53\xe3\x07\x0f\x4c\x5e\xa2\xc5\x6d\x4d\x58\xf2\x4a\x37\x4d\x1c\x81\x65\x21\xf3\x0b\xea\xeb\x91\x30\xd3\x37\x91\x8d\xb9\x42\x36\x53\xe8\xfe\xf2\xe2\xee\xf2\xe1\xbb\x25\x34\xd9\x6c\xa2\xc1\x19\x4d\xb6\x9f\xef\x2e\xdf\x4f\x3e\x5e\x3d\xcc\xdf\x4d\xef\x5e\x22\xa5\x89\x7e\x75\x40\x4e\xd3\x3d\x81\xfd\x5e\x28\x99\x8b\x6f\x47\xdd\xc9\xba\x90\x73\x3e\x20\xb7\xde\x01\x6a\x77\xa9\x3b\xd8\x68\x1d\xac\xd8\x21\x09\x13\x54\x1b\xde\x68\x0e\x9b\x38\xa0\x79\x5e\x26\x69\x0a\x15\x6f\xce\x21\x4c\x65\x2c\x66\x52\x41\xfe\x58\xbe\x4a\x92\xa9\x33\xb9\x28\xa1\x35\x83\x93\x6a\x6d\xcc\x36\xac\x75\xdb\x9a\x09\xd0\x09\x14\x3c\x75\xe1\x19\xaf\x12\x29\x7c\x37\x90\xa5\xad\x90\xac\x15\x84\x92\x16\xf1\x25\x0b\x1a\x49\xf1\xea\xab\x6b\xda\x1d\x57\xda\x9f\x56\xfd\xb4\xbf\x74\x23\xc4\x43\x9c\x48\x54\x4c\x4b\xa7\xf9\xbe\x79\xeb\x9e\xfb\x23\x00\xf3\x6e\x56\x92\x83\xd7\x1c\x88\xd0\xfc\x42\xd2\x42\x20\x93\x80\x77\xa7\x3f\x26\x98\xf7\xa1\x96\x95\x79\x36\xa2\xd0\xcc\x75\x02\xbe\x75\x4e\x85\xfc\x51\x5a\x64\xb9\xd0\x64\xe8\x4f\x3e\xdf\xcf\x24\xf2\xe5\xd2\x2d\x44\x68\xf3\xf8\x09\xcc\x3a\x50\xa5\xef\x5b\x0d\x25\x94\x60\xaf\xd1\xab\xba\x11\x5c\x66\x48\x53\x99\xa6\x42\xfb\x9d\x81\xfd\x11\x22\x26\xa2\x12\xe0\x32\xf5\xef\x13\x53\xa1\x82\x53\x6b\xfa\x4b\xbf\x25\xa6\xbe\xea\x7e\x6a\x2b\xa8\x84\x94\xc6\x97\xdc\x39\x0d\x99\xf5\x7d\x77\x11\x65\x83\x36\x6e\xa2\x72\x9e\x7b\xaf\xbd\xf4\x80\xcd\xfd\xb6\x95\x4e\xb8\x95\x7a\xdc\xeb\xe1\x2d\xc1\xd6\xca\x08\x50\x07\x14\xef\x03\xa3\xae\xa0\x3b\x85\x8c\x1d\x33\x8d\x8d\xb7\x8e\xc7\xb1\x3a\x28\x54\x7a\x7d\x73\x7d\x19\x06\x3a\xa7\xd7\x0f\x97\x7f\xbc\xbc\x2b\x15\xef\x5d\xdd\x4c\x4a\x05\x78\xf7\x0f\x77\x95\xba\xbb\x9f\x6e\x6e\xae\x2e\x6b\x11\xd3\xcb\x87\xe9\x87\x52\xe3\xef\x3e\xde\x4d\x1e\xa6\x37\xa5\xe7\x7e\x9a\x5e\x4f\xee\xfe\x6f\xf8\x93\xcb\xbb\xbb\x9b\xbb\xca\xf7\x3e\x5e\x74\xc7\x5e\x4b\xc3\x68\x36\xc5\x7d\x68\x27\x80\xf4\x6a\x9c\xd2\xaf\xc7\x01\x61\xe6\x3c\x6f\x54\xa8\x7b\x5b\x3a\x44\x94\xf8\xb5\x10\x7a\x47\x18\x02\xa8\x85\xe2\x4f\x22\x2e\x31\x81\x2b\x27\xaa\xf7\x38\xcc\x3c\x9a\xc9\xcf\x48\x06\x0f\xc1\xcd\x57\x19\xfb\x23\xb8\x5f\xed\xc3\x9e\x50\x14\x0e\xeb\x5f\xf0\x1b\xee\x77\xe3\x99\x2c\x11\x31\x06\x6f\x95\x78\xa4\xc7\x33\x69\xb1\x1a\x63\x15\x65\x63\x38\xcb\x63\xa5\x57\xe7\x44\xab\x62\x64\x9d\x7a\x5c\x28\xf5\x78\x2e\xe4\x39\x68\x1b\xf9\x39\x2f\x72\x75\x0e\xa1\x1b\x4c\x6d\xc9\xce\x2d\xfb\x82\xa5\xaf\xc8\xce\xd7\xc9\x93\x80\xff\x8d\xd7\xf9\x26\xfd\x5f\xd9\x76\xfd\xed\x6c\x95\xea\x33\xf3\xee\x59\xf8\xee\x99\x7d\xf7\xcc\xbe\x7b\x66\x5e\xc3\xff\x6d\x77\x68\xb8\x0b\xe2\xc1\x9d\xc9\x44\x66\x42\xe7\x50\xe7\xf8\xac\x93\xdc\xb3\x74\xef\xd8\xab\xff\xfe\x6f\x36\xd6\xfc\x19\x53\x79\xdf\xf1\x9c\xdf\xa2\xe6\xf8\xb7\xbf\xbd\x62\x59\xae\x88\x4b\x66\xcb\xf5\xd7\x42\xe4\x46\x87\x4d\x45\x94\xb3\xff\x3d\x93\x40\x3f\xb5\xd9\xcd\x73\xd4\xa8\x51\xbb\x8c\x33\xf6\x6f\xd8\xe6\x14\xf1\x34\xe2\xcc\xb4\xd4\x92\xe5\x93\xf0\xb4\x81\xb0\xa7\xc5\xf8\xfa\x9a\xbe\xa3\xe7\x07\x48\x9c\xaf\x69\x29\x6b\xc0\xa1\xc2\x66\x5f\x53\x00\x6e\x49\x15\xb7\x81\x23\xe6\x36\x2f\x48\x40\xea\x5c\xd3\x19\xa9\xb9\x27\x8f\x38\x31\x87\x72\x98\xdd\x23\xae\x97\xb5\xc9\x6a\x74\x34\x60\x05\x7a\x0b\x13\xa0\x5c\x12\x73\x42\xee\x51\xc7\x45\x8e\x58\x18\x39\xc8\xfe\x5c\x69\xbe\xf2\x9c\xbe\x74\x25\x65\xff\xfc\xf6\xfc\x7c\xc4\x56\x19\xfc\xb1\xf8\x0a\x7f\x40\x24\xe3\x54\xb0\x34\xb5\xc9\x74\x41\xb9\x3e\x9e\xda\xd6\x97\x8f\x92\x61\x2f\x8f\x86\x56\xd9\xa6\x3f\x15\x32\x4e\x85\xcf\x4c\x2e\x19\xbb\xa9\xb2\x84\x61\xa8\xf2\x54\x71\x67\x61\x8d\x17\x22\xe2\x46\xf0\xd5\xbe\x8d\x81\x6e\xb5\xcc\x85\x44\x3d\x47\x7b\x94\x6e\x8e\x3a\x09\x44\x99\x20\x2c\x0b\xfc\xb7\x9b\x2d\x90\xe1\x26\xe0\x00\x7c\x40\x78\xb1\x51\xf5\x57\x40\x67\x89\x48\x59\x80\xfd\x82\xac\x9b\xc2\x5a\xe2\x58\xd1\x55\x68\xa3\xea\x6c\xb9\x8c\x79\x06\x3b\x70\xa9\xc1\x8f\xa5\x19\xaf\x77\x74\x84\xa9\x01\xc6\xb2\xe7\x72\x47\x3e\xe3\x70\x26\x10\xca\x2c\xe8\xf3\x28\xe8\x04\xde\x09\x48\xe0\x5b\x7d\x71\x3c\x93\x8e\x0a\x16\xe3\x72\x96\x5c\x7c\xbb\xa3\x62\xc9\xea\xa4\x27\x56\x27\xa2\xe9\x1e\x79\xb2\xbd\xea\xb3\x40\x33\x1e\x3a\x4d\x00\x35\x2d\x64\xc2\xb1\x6c\x3d\xaf\x81\x9c\x57\xe8\xec\x8d\x39\x86\x80\x25\x9a\x7b\x4c\xb2\x24\xf3\x8b\xe1\x98\x63\x49\x0f\x34\xcd\x3b\x78\x61\x33\x3b\x25\x9c\xad\x26\x15\x6c\xff\x51\xf9\xd1\xe3\x1b\x4d\xfd\xa5\xbf\x7e\xd7\x58\x47\x18\x63\x6e\x24\xb3\x1e\x04\x36\x80\x47\x36\x94\xb8\xd8\x28\x11\xcd\xa2\x72\x62\x69\x47\x12\x73\x65\xe5\xc6\x02\xc8\x67\x92\x6e\xe0\x11\x5b\x0a\x9e\xaf\x21\xc8\x9e\x3d\xa1\x30\xc6\xeb\x3e\x7f\x56\x3e\xba\x62\x41\x5a\x21\x30\x5f\x6a\xdc\xab\xff\xf8\x18\xf8\x8a\x79\x94\xa3\xeb\xb8\x0d\xbe\xd2\xa9\x2a\x30\x59\x8d\x02\xf1\x80\x79\xb0\x98\x9f\x55\x7c\xed\x10\x72\x16\x66\x62\x87\x2e\x40\x56\xed\x07\xfe\xc2\x08\x1e\x1c\x1d\x3a\xf8\x03\xe1\x08\x95\x4d\x14\xd7\xc7\x73\xe6\xbd\x73\x21\xe8\x1a\x78\x5e\xda\x0e\x55\xc7\x44\x40\x07\x0e\x4b\x81\x36\xaf\xee\x85\xa6\xc8\x84\xb6\x80\xa4\x38\x56\xc4\xa6\x58\x27\x3a\x3e\xdb\x72\x9d\xef\xec\xf6\x4d\x93\x05\xe0\x18\xa6\xc9\xa3\x60\x13\xad\xd5\xf3\xa9\x67\xa1\x55\xb4\x3c\xf0\xec\xf1\xc4\x50\x37\x00\xed\x34\x04\xaa\xa6\x11\x99\xa6\x14\x76\x8f\xc5\xfc\x30\x14\x9c\x36\x24\x9f\xc6\xef\x68\x91\xeb\xdd\xdc\x6c\xc4\xcd\xb6\x55\x52\xf4\x4a\xe0\xea\xaf\xe4\x0e\x03\xd8\x81\xfb\xb9\x07\xc0\x4e\x69\x55\x7f\x1c\x80\x9d\x06\xec\x9c\x3a\xc0\xce\xf4\x7a\xfa\x30\x9d\x5c\x4d\xff\x5f\xa5\xc5\xcf\x93\xe9\xc3\xf4\xfa\x8f\xf3\xf7\x37\x77\xf3\xbb\xcb\xfb\x9b\x8f\x77\x17\x97\xdd\x15\xb3\xf5\xde\x7b\x15\xfc\x8c\x85\xdf\x79\xcb\x1e\x02\x17\x3c\x26\x3e\x91\xfe\x4d\x44\x1e\xb0\xab\xcc\x61\x4e\xe4\x6a\x04\x07\xf5\x2d\xbb\xd4\x7a\xba\xe1\x2b\x71\x5b\xa4\x29\x04\xca\x30\xcb\xf0\x42\x0b\x30\x3c\x47\xec\x56\xc5\xd3\xe0\x3d\x48\x8d\x6e\x1c\x06\x7c\x9f\xc7\xb1\x16\x59\x86\x9f\x1f\xd1\xf7\x83\xb0\x90\x4b\xbb\xa6\xb0\x28\x7f\xe2\x49\x6a\xec\xb7\xb7\xc0\x2d\xa8\x96\xc4\x12\x3d\x72\x49\x9c\xec\x6b\xa1\x72\xce\xc4\xb7\x08\xaa\xc4\x9b\xf7\xc9\x95\x5a\xbd\xac\x0d\xd4\x7c\xa6\xf7\x03\x6b\xb4\x18\x29\x00\xd8\x3e\x6f\xbe\xce\x9b\x05\x01\x8d\xf2\x03\xbe\xfa\x1e\xdf\x6c\x6c\x3d\xcf\xd3\x13\x54\xad\x5c\xa9\x55\x33\x7c\x2e\x68\xd7\x84\xf9\xeb\x49\x74\xa1\x06\x4e\xad\x58\x96\xc8\xc7\x99\xfc\xbc\x16\x92\xa9\x42\xe3\x8f\xc0\xcc\x37\x6a\x66\x5a\x64\x6b\x11\x33\x55\xe4\x23\xf6\x2c\xd8\x86\xef\x50\x6d\x06\x9b\xc0\xe1\x7d\xc2\x96\x81\x5b\xc4\xbc\x9d\x26\xd2\x48\x8b\x6d\x62\x73\xa4\xaa\x4b\x7f\x0a\x8b\xcb\x62\x24\xf0\xe3\x21\x8c\xfa\x15\x82\x3c\xaf\x05\xe4\xc0\xfb\x88\xb8\x0d\xfd\x90\xe4\x06\x4a\x11\xa5\x1e\x8b\xad\x47\x53\x79\x65\x21\x0b\x61\xba\x9f\x54\x12\xb3\xb8\xd8\xa6\x49\xe4\xe4\xee\xb3\xd2\xad\x90\x51\x98\xcc\x37\x00\x32\xaa\x92\xa2\xda\x35\xb0\x86\x4c\xc1\x20\x46\xda\x01\x1e\xf5\xc2\xf0\x59\x01\xa5\x7b\x91\x09\x7d\x96\xeb\x64\xb5\x02\x05\xdc\xe6\x1d\xff\xf8\xf8\x5a\x1e\xbf\xe3\xf8\x14\xdb\xb0\x00\x26\x55\xab\x24\xe2\x69\x98\xb6\xe2\xfd\xdd\x0e\xc0\xc7\x1e\x7b\xa2\x92\x31\xfd\x76\x1d\x6a\x2d\x4c\xde\x6a\x01\x18\x52\x73\x64\xc9\x3f\x9e\xbd\x7f\xba\x64\xc6\x40\xb7\x34\xb3\xbe\x42\xcc\x32\x75\xdb\x1b\xce\x7f\xdb\xe2\x89\x23\xa1\xa0\x84\x64\x6c\xf5\x2c\x85\x06\x0d\x16\x1c\xfa\x66\xa4\x52\x81\x6e\xe2\x30\xc6\x5d\xe6\x89\xc5\xd8\x5f\xba\x14\x1b\xcc\xe2\x5f\x25\x4f\x42\x7e\x7f\x3c\xb4\xe0\x03\x11\x8f\xd6\x62\x6e\xf5\xf2\x53\x8b\x2c\x77\x01\x0c\x14\x56\x16\xe8\x33\x14\xa5\x2c\x01\x0c\x8a\x08\x4d\x27\xec\x71\x5d\x76\x21\x80\x75\xaf\x4b\x09\x20\x50\xcb\xfe\xb9\xea\x75\x70\x2c\x9a\xb7\x4b\x92\x3b\x54\xfb\xef\x76\x04\xac\x52\xb5\x80\x6a\xad\x3a\xce\x77\x78\xc3\xb6\x41\x06\x3f\x09\xad\x93\x78\x88\x64\xb2\x73\x72\xe3\x5e\xed\xea\xa0\x23\x6b\x74\x5f\x02\xa1\x90\xa0\xaf\xae\xa2\xb9\x57\xab\x01\xf6\x99\x09\x10\xdb\xc8\x5c\x70\xc3\x29\x12\x16\xab\x0f\x1c\x13\xaa\x83\xfd\xb3\x3e\x96\xa3\x16\xba\x5e\x5f\xb6\x67\x2e\x7d\x49\x5a\xf7\x22\x1f\x51\x24\x84\x15\x4d\xae\x52\x68\x08\xe0\x92\x5d\x3a\x0c\x3c\x03\xb3\xaa\x5b\xc4\x52\x46\x50\xaf\x15\xad\xce\xfb\x03\x85\xbb\x8e\xaa\x80\x7f\x81\x13\x55\xe4\xca\x7b\x2b\x61\x3c\x53\x80\x21\x09\x73\x0d\x41\x6c\x4c\xe3\x46\xc6\x7c\x7f\x7d\xd8\xa3\xd9\xa6\xaa\x1c\xe7\x71\x9a\xb0\xad\x16\xd6\xef\xbd\x13\xb9\xab\x91\x48\x2d\xb2\x33\xb8\x75\xdd\xa8\xcb\x45\x62\xb6\x0e\xc4\x15\xf6\x82\x13\x56\x59\x2e\xec\xcd\x56\x49\x21\x29\x3b\x40\xaa\x99\xa4\xc6\x2d\x47\x8f\xf3\x0c\x97\x92\x30\x47\x64\x90\x63\x4a\x8f\xc8\x54\xfa\x44\x21\x80\x00\xbf\x0f\x90\xbd\x4d\x07\x2f\x8c\x6e\x63\x34\x79\x88\x4d\x51\x46\x1e\xe4\x28\x54\x88\x6a\xb4\x58\x25\x59\x2e\xc2\xbc\xd5\xf0\xfd\x93\xf1\x09\x94\x94\xff\xae\xa9\x6f\xe5\x13\xd8\x77\x8b\x9b\x53\x3b\xa0\x3f\xbb\xad\x88\xa7\xee\xbd\xee\xcd\x50\x4a\x3e\x8f\x03\x21\x51\xba\x05\x70\x0f\xa0\xf6\x92\x61\xd9\x6c\xe6\x90\xf7\xdc\x22\x51\x41\x23\x77\x44\x10\xb0\x44\xab\x82\x6b\x2e\x73\x21\xb2\x99\xa4\xc0\x09\x96\x7f\x87\x15\x4e\xcb\x12\x81\x84\xbf\x9b\x23\x95\xe5\x58\x4d\x09\xaf\x2c\x79\x92\x16\xba\x55\x5d\xc6\x5d\x79\x50\xe9\x46\xd7\x2c\x5d\x40\xb3\xac\x69\xd1\x5c\x6a\x75\x70\x8a\x5c\x05\x52\x35\xec\x51\xce\x3c\x6e\x19\x82\x15\xb9\xfd\xd7\xdb\xf9\x4a\x5a\xb2\xad\xff\x35\x9b\x6f\xd5\x00\x89\x47\xbc\xc3\x8d\x8d\x65\x5f\x6b\x36\x7d\x47\xf8\xef\x6b\x1b\x16\x21\xcf\x1e\xc1\x73\xbe\xcf\x94\xd8\xef\x1f\xfc\xe7\x3f\xec\xf7\xaf\xb7\xca\x2e\xd8\xb5\x6b\x2e\xe3\x14\x38\x8a\xf3\xca\x0d\xe4\xce\x00\x10\x00\xe4\x56\x38\xb6\xa7\x1b\x42\xf6\xce\x3c\xaa\xa5\x7e\xee\x9b\xa7\x4a\xce\xe8\x9e\x14\xc2\xd2\x57\xca\x99\x9c\x4d\x19\x44\xfe\x66\x27\x22\x0a\x77\x60\xdb\xb7\xe0\x32\x59\x9d\x1e\x88\xa7\x2f\x33\x87\xd3\xb2\x3f\xd4\x25\x65\x44\x47\x91\xee\x2f\x47\xc6\x71\xe4\x61\x84\xcc\x2f\x23\xcc\x42\xb8\xa3\x99\x24\x9e\x1a\x0c\x1a\x41\xb4\x00\x4b\x7a\x33\xf6\x7b\x97\x0e\xfc\xfb\x7f\xb1\x05\x9d\x3b\xb6\x84\xb9\x86\xaa\x69\x15\x45\x85\x86\x88\x0e\x59\x9d\x4c\xe0\xdd\x34\x04\x95\x6e\x82\x37\xb2\x8b\xc3\xa3\xfa\xd4\xa4\x3d\x38\x37\x43\x69\x50\x0f\x60\x5d\x22\xe3\x8e\xbb\x0b\x09\xc1\x56\x67\x39\xcb\x72\xb1\x6d\x94\x4a\x25\xa5\xab\x4c\x2c\x75\x84\xda\xd5\xc1\x0a\x7f\xb4\x8c\x9e\x04\x0c\x56\x7f\xba\xbf\xb9\x66\x5b\xbe\x83\x94\x96\x5c\x11\x23\x18\x60\x5a\x54\xcf\xef\xbe\x15\x28\x0f\xbe\x7c\xd8\x70\x4e\x35\xf7\xf2\xa2\xee\x76\xe2\x8e\xf1\xaf\x22\x87\x60\xcf\xd0\x96\x34\x47\x59\xab\xf4\x6c\x9b\x72\x29\x10\x7f\x10\x0b\x7c\x59\xe5\xf3\x61\x98\xca\x39\xac\x29\x11\x00\x3a\x10\x12\x66\xeb\x42\x36\xe5\xb5\x95\xb9\xb2\x8e\x8a\x4c\xb5\xca\x88\xce\x7c\x9d\x0f\x88\x4a\xc8\x23\x73\x4c\xb0\xdc\xc5\x46\xdb\x5c\xc0\x96\x67\x90\x4b\x35\x60\xa1\xba\x89\xbd\x66\xd2\x72\xb6\xa8\xe7\x8c\xc5\x58\x10\x54\x24\x19\xf2\x61\xa2\x2f\x13\xf2\x1a\x48\xbe\x60\xd0\x55\x73\x99\x99\x05\x05\x77\x8c\x78\x12\x92\xd5\xcb\x4b\xa6\xef\xae\x5c\x68\x12\x17\x89\xf0\xcc\x5b\xa6\x3e\x50\xcc\x8e\x82\xf0\x6a\x62\x99\xda\x0f\x15\xf8\x81\x6f\x5b\x0c\x7a\xa4\xa0\x39\xb6\xc5\x7d\xab\xe4\xca\x21\xab\x5a\x27\xf0\xdf\x00\xc4\x31\x71\xf7\xd4\x67\xef\xa3\x3c\x52\xfc\x34\x62\x87\x0d\x60\xd2\x3d\x1c\xba\x3b\x24\x11\x1d\x20\x7b\x82\x5a\x7a\x97\x16\xe0\xf4\x65\x73\xca\x01\x40\x16\x19\x1b\x89\xa1\xfa\x5e\x08\xf6\xc5\x91\x3e\x7e\x21\x80\x72\xcf\xb7\xdd\x36\xaf\x53\xb9\x54\xc7\x09\x03\xbd\xaa\x65\xd2\x1c\x35\x2b\xcd\xfd\x3c\x36\x57\x07\x2a\x8a\xe4\xcb\x16\x85\x34\x8e\x6b\x4f\x66\xce\xad\xb7\xc9\x29\x3d\xd9\xf6\xd4\xdc\xcf\xb0\xc4\x87\x91\x13\x96\x36\x49\x0e\x3c\x98\x00\xfe\xf4\x28\xd5\xb3\x44\x5d\x80\xbe\xc4\x5e\x9b\xf3\x07\x17\x18\xa0\x38\x51\x72\x4e\x81\xd2\xf0\x0d\xa0\x51\x4d\xdc\xbf\xd9\x3d\xba\xb9\xb1\xcf\x00\xb7\x9a\x81\xf2\x43\x40\xa9\x20\xcd\x5f\x4f\x46\xec\xa7\x11\xbb\x18\xb1\xf1\x78\xfc\x66\xc4\x04\x8f\xd6\xb6\x47\xf8\x0a\x26\xbd\xe4\x7c\x65\xda\x76\x5c\xb9\xfe\x03\x80\x1e\x6c\x2e\x2b\x73\x65\x1a\x01\xcd\x03\x46\x5d\xef\x79\xb0\x43\xc0\x64\x6e\x64\xa8\xb0\x21\xc1\x68\xad\x12\xdf\x29\xc8\x2e\x13\x91\xd2\x36\x3f\x2d\xcb\x95\xb6\xb9\x36\x4f\x5c\xf3\x44\x42\xbd\x01\xaf\x67\x1a\xd2\x97\x03\x8c\x2c\xf1\x8d\x6f\x60\xfc\x89\x74\x30\x21\x66\x9a\x1e\x5c\xff\xf3\xdd\x36\x89\x60\x3e\x9f\x75\x92\xe7\xe6\x76\xce\x66\xf2\x9e\xbd\xfd\x37\x36\xd9\x6e\x53\xc1\x26\xec\xaf\xec\x27\x2e\xb9\xe4\xec\x27\xf6\x57\x76\xc1\x65\xce\x53\x55\x6c\x05\xbb\x60\x7f\x35\xd3\x66\xda\xbb\x56\xe6\x3a\xdc\x8d\x18\x67\xb2\x48\xf1\xd6\x7f\x6d\xf3\x58\xde\xb8\x71\x71\xbf\x3a\x96\x70\x32\x53\x1b\xba\x0a\x7f\xc1\x6a\x06\x33\x33\x89\x5c\xa5\x22\xb7\x34\xaf\xa5\x8c\x23\xfc\xc0\x19\x8c\xf4\xed\x4c\x3a\x5f\xde\x2f\xa6\xc7\xbf\xb0\xbf\xb2\xeb\x22\x4d\x4d\x97\x8c\xa0\x31\x1b\xe9\x2d\xb3\x19\xe0\x42\x8e\x9f\x93\xc7\x64\x2b\xe2\x84\x43\x0e\xb8\xf9\xd7\xf9\x03\xac\xf6\xbc\xf0\x90\x03\xe1\x99\x76\x10\xb6\xdf\x05\x77\x66\x08\x9f\xb3\x43\x32\xb6\x8b\xdf\x61\xf9\x95\x5f\x1d\xae\x11\x79\xc0\x15\x3a\x0f\xa4\xb0\x22\xfc\x70\x88\x98\x7c\x90\x08\xa8\x5c\xb6\xb6\xad\x86\xab\x20\xbc\xd4\x8f\x15\xb2\x00\xc0\x7d\x72\x1b\xb2\x07\x1a\x72\x5f\x91\x5b\xc3\x72\x7d\x0a\xc1\xab\x41\x97\xf4\xf5\xa7\xbd\xa2\x42\x0e\xc3\xf5\x53\x19\x81\xbc\x34\xc5\x2a\xe9\x05\xd5\x5e\xe9\xec\x47\xf2\x5d\xc4\x42\xaa\xdc\x18\x32\x32\x49\xcf\xcd\x51\x3d\xbf\x56\xd2\x98\xad\x59\xb2\xc2\x9a\x59\xc8\x80\xc8\x00\xd7\xc6\x2a\x05\x0f\x65\x95\x35\x38\x02\xa0\x1f\x98\x2e\x61\x56\x4e\x6e\xa4\x80\x59\x82\x74\x37\x93\xe6\x0d\xba\x91\x20\x43\x37\x71\x60\x40\xf8\x35\x4b\x0a\x47\xdf\x22\x81\x1c\x34\xde\xb0\xc1\xba\x78\xd4\x8e\x02\xe1\x81\x6a\x93\x23\xbc\xe2\xd7\x01\xac\x00\xb5\x66\x6b\xce\x30\xf9\x67\x21\x52\x25\x57\x66\x57\xb4\x09\x01\xb5\xe1\xc9\x31\x31\xf1\xb0\x0b\xd8\x58\x6b\x0f\xcc\x65\x49\x8f\xd0\x92\x04\x84\xd6\x44\x66\x03\x84\x98\xce\x23\xeb\x6e\x43\x1a\x5c\xcb\x20\x86\x32\xf4\xd4\x77\x29\xf0\x5f\x53\x70\xd6\x79\xfb\xf1\xe2\xb4\xde\x34\x3b\xa2\x7e\x87\xaa\x33\xa7\xaf\xd9\x15\x42\xd1\x04\xeb\x4c\x76\x4e\xbd\x1e\xfb\xf1\xef\x99\xde\xf7\x92\xac\x7a\x8d\x14\x7a\xf0\x9c\x69\x8d\x7e\x34\x94\x26\xcf\xce\xde\x29\x32\x9f\xbe\x22\x6a\xee\x5c\x2d\x6d\x11\x58\xff\x3b\xbd\x86\x5b\xdc\x2f\xf5\x24\xc4\x2a\x0b\xf1\x7d\xeb\x1b\xa7\x2d\xde\xa0\xe4\x9c\x22\x12\xfd\x3a\x5b\x9d\xb0\x1b\xf9\x1e\x5f\xbf\x55\x69\x12\x75\xe7\xeb\xd8\xeb\x0a\x48\x9c\x6b\x09\x10\xc0\xa9\xee\xfc\x3f\xd4\x29\xd4\xd0\x73\x11\xe5\x3e\xe2\x56\x1f\xdc\x20\x77\x18\x39\x58\x5d\x2b\x40\x25\xe1\x42\x5a\x70\xd5\x00\x08\x0a\xa0\xd5\xa1\xeb\x11\xaa\x62\x20\xd4\x1b\x71\xf2\xc8\x96\x3a\x02\xf2\xea\x79\xad\x52\x63\x9a\xc8\x98\x00\x65\x66\x72\x2b\x74\xa4\x52\x9e\x1b\x69\xf8\x4c\xa0\x01\x49\x1a\x7b\x48\xd8\xd7\x90\x9b\x07\x19\x34\x6f\x08\xf7\x5e\xb8\x90\xab\xe3\x22\xdf\xbf\x6d\x2d\xf7\xd5\x71\x0e\x99\xd3\x25\xdb\x74\xed\x82\xcf\x94\x02\x83\x53\x41\xf4\xc1\x95\xe0\x99\x99\xf4\x52\x7f\x86\xad\xb0\x70\x68\x9f\x91\xb7\x23\xf2\xca\xba\x92\x29\x51\x9d\x4a\x00\x06\xc2\xba\x0e\xcc\xa7\xc8\x04\x74\x67\x23\x38\xaa\x26\x1e\xa6\x83\x16\x75\x26\x7d\xb8\xf0\x55\x16\xaa\x29\x8d\xeb\x8c\xb8\x37\x36\x9d\x67\xc4\x5e\x95\x06\xfa\x0a\x80\x63\xa4\x82\xef\x51\x48\xa7\x34\x35\xb0\x5d\x47\x2c\xc9\x67\x32\xc9\x70\x67\x6a\x91\x8a\x27\xd3\xbb\xd0\x77\x4a\xa9\x1f\xd6\x94\xb4\xc3\x86\x8c\x50\x6e\x0b\x09\x1d\x65\x1a\x94\x68\xeb\x10\x80\x84\x83\x9f\x16\x38\xa5\x0b\x09\x60\x9f\xe2\x1b\x12\x77\xa7\x3b\x9b\x0d\x11\x0b\x69\xfb\x07\x49\x12\xc8\xca\x32\x93\xd3\x25\x54\x73\x41\x0d\x59\x1c\xa3\x51\x66\xe1\x1f\x5d\x35\x78\x42\xbe\x52\x45\x26\xaa\x63\xe4\x45\xda\x06\x3c\x49\xe2\x49\xe8\x5d\x0e\x3e\x4e\x98\x57\x29\x78\xbe\x66\x49\x3e\x82\x32\x7e\x2b\x38\x66\x92\xc7\xc4\x7a\x45\xcd\x99\xa9\x81\x7d\xdf\xb1\xce\xf4\xfb\x85\x7a\xea\xd2\xf3\x8e\x4d\x82\xc2\x53\xbd\x4d\xb9\x9c\xa3\x40\xfd\x3b\xa4\x41\x05\x8c\x1a\x6d\x91\xbf\x62\x31\x77\x0c\xd7\x27\xe9\xa7\xd3\x7e\xee\x4a\x3c\x37\x46\xad\xb3\x1f\x1a\xe1\x66\xf0\xd0\x63\x56\x5b\x77\x6e\x0b\x0a\xb6\x6b\x66\x03\x92\xfd\xa5\x80\xcf\x90\xe2\x95\xc0\xbc\xdd\xad\xfb\x52\xa4\xec\x0e\xf8\x51\xd3\x75\xfa\xac\x7c\xe5\x0e\xa9\x2e\xfb\xf0\x4c\x91\x9a\xc2\x74\x50\xb6\xc8\x9e\x6e\xbd\x6c\xc6\x48\xab\x5b\xa1\x9e\x39\x62\x47\x1b\x44\xbf\x30\x0d\x5a\xa0\x5b\xca\x79\x3d\x9a\x19\x53\x42\xb3\x44\x35\xa4\x1a\x9e\xd2\x65\x5b\xe6\x55\xee\x5d\x45\x09\xfd\x1a\xb3\xa9\x64\xd6\x7b\x31\x62\xb3\xdf\xe1\xce\xca\x66\xbf\x23\x9f\x1c\x11\xef\x50\x30\x39\xa6\xf3\x43\x95\x67\xd5\xdc\x04\xcc\xff\xf5\x07\x0e\x43\x23\x6d\xfa\x67\x73\xd4\xe6\x94\x33\xf3\x53\x02\xf9\xc7\x87\x94\x98\x62\x58\x6d\x81\x0d\xd0\x35\x89\x76\xe8\x0e\xb5\x58\xe5\xdd\xbb\x7e\xc0\x36\x00\xc4\x7e\xb2\x2f\x9a\x29\xda\x16\x74\xa3\xda\xdf\x33\xa5\x67\xd2\xb6\x46\x3e\xba\x0c\x31\x9a\xab\x4d\x59\xe3\xd7\x2b\xc1\xc1\x5e\x85\xa8\xbe\x85\xe5\x06\xb4\x77\x8f\x92\x53\x95\x03\x90\x25\xb0\x10\x9e\x32\x6c\xcc\x26\xfe\x6b\x46\xf5\x30\x5b\x7c\x83\x17\x3d\xa1\xc2\x09\x19\xed\x00\xe8\x26\x4d\xcd\xa4\x24\x79\x46\x5a\x5b\x90\xaa\x9c\x15\x00\x3f\xb3\x2c\x8c\x38\x0a\x30\x7a\x66\xd2\x4c\x1e\x5b\x26\x90\x08\x4b\xf3\x32\x93\x1f\x54\x66\x2b\x63\x33\x3f\x1f\x36\xa9\x92\xa6\xed\x95\x43\x27\xa7\x1f\xbc\x83\x6b\x9b\x9c\xe0\x15\xba\x3a\xc8\x51\xa7\xf2\xf6\x9d\x2a\xb4\x1f\x54\xc4\xe5\x4c\xfe\xa7\x99\x1e\x24\x8b\x72\x4c\x6b\x6a\x89\x87\xd8\xd2\xfb\xb1\xd7\x5f\xb0\xd1\xd7\xff\xf2\xe6\xcb\x1b\xac\x50\x2f\x32\x20\x84\x18\x95\xaf\x10\x07\xd7\x56\xa4\x29\x84\x66\xed\x08\x5c\x61\xb9\xff\x44\x27\xf9\x38\x59\x39\x73\x59\x56\x32\xfa\x1c\xf5\xae\x1d\xec\xbd\xb1\x13\x16\xf1\x3c\x5a\x9f\x59\x6d\x8e\x04\x99\xbd\xff\x68\xf9\x10\x19\xde\xe8\x5a\xcd\x88\x65\xc6\x02\xd3\x1b\x47\xb8\x56\xda\x2f\x66\x08\x90\x69\xf2\x50\xda\x95\x21\xad\x21\x6e\x4e\xcf\x75\xe6\x35\x3d\xf7\xb8\x85\x7b\xf7\x2e\x54\x72\x1b\x4b\xbe\x11\x31\x9b\x21\x3a\xf2\xec\x77\x76\xf9\x67\x72\xbb\x18\xa7\xbb\x65\x4e\x80\x2d\x66\x5a\xc6\x00\x89\xbc\xe7\xa6\x9b\xc7\x75\x53\x69\xcf\x74\xb7\x1a\x5b\xcd\xfa\x8e\x9b\x1d\xf7\xa5\xfe\x4a\x0b\xba\x7d\xdc\xfc\xdc\x97\xb3\x66\xca\x88\x77\x3c\x7b\x1c\xb1\x85\xe6\x12\x30\x42\xe3\x50\xb1\xf2\xe7\x13\x19\xcd\x01\x0d\x85\x82\x38\x5c\xf2\x74\x07\xe9\xd4\xa3\x99\x44\xe8\x18\x40\x8f\xda\x45\x69\x12\x21\xbb\x62\x45\x17\x12\x4f\x42\xe6\x97\x54\x2b\x6d\xf3\xb6\x8f\x8d\xb6\xba\xda\xeb\xa3\x68\x22\xa7\x65\x8d\x87\xfb\xa2\x72\xef\x74\x8c\xb4\x80\x7c\xe6\xc5\x2e\xc8\xf3\x74\x5b\x7c\x44\x20\xeb\x80\xae\xc3\xfe\x52\x2c\x54\x6a\xe1\x89\xa6\xef\x98\xd2\x80\xf9\x98\x2b\xfa\x51\x12\xb7\xdd\x63\x89\x8c\xc5\xb7\xa3\x6a\x84\xbb\xaf\x24\xab\xe2\x99\xcf\x04\xd0\x82\xd5\xc1\xc2\x39\xd2\xc2\x5c\x17\xb9\xb5\xe2\x6a\x4f\x65\xd5\xa4\xb3\x49\x9a\xaf\x21\x13\x0c\x73\x90\xfd\xa4\x6e\xf8\x8e\x45\x6b\x2e\x57\x81\x19\x0d\x89\x39\x62\xab\x34\xa2\xf9\x3f\x01\x18\x8f\xd2\xb6\x06\x8b\x2a\x8b\x28\x11\xda\xf9\x80\x31\xff\x50\xd9\xf2\x21\xbe\x5a\x69\xb1\x82\xb2\xd8\x12\x09\x34\x4a\x50\x07\xcb\x88\xdf\xe9\x2a\x2d\x3b\x4d\x7d\x76\x9b\xe5\x92\xeb\x9d\x2b\xcc\x21\x2a\x0c\x37\x75\xb5\x69\x1d\xb1\x44\x8c\x47\xec\x0f\x3e\xe7\x52\x44\x4a\xba\xca\x9e\xe6\x31\x6c\x2b\xde\xda\x3d\xb2\xa8\xa1\x90\xbb\xb9\xef\xf0\xbb\x1a\xa1\x46\xe3\xa6\x19\xea\x3c\xb3\xd9\x80\x94\xe7\x9b\x55\x15\xfc\x86\xfd\xe6\x48\x4d\x95\x46\x3d\x11\x43\xe7\xae\xe4\xb5\x74\x24\x9b\xc4\x4f\xa9\x6e\x1f\x88\x9a\xbe\x97\x35\xd6\x86\x18\xd0\x3c\xed\x1f\x5b\x2c\x31\x7b\x13\x56\x1c\xf9\xb5\xdd\x80\xf3\xa4\x07\x4a\x45\x4f\x6f\x0e\x30\xa8\xd6\x9d\xa6\x74\xb2\x4a\x24\xcf\x95\x66\xaf\x6f\x2d\x76\xe0\x1b\x87\x77\x0b\xb3\x78\x8a\x4d\x59\x9a\x22\xdc\x94\xcd\xba\x3e\x24\x94\x8a\x78\x3e\x0c\x77\xa5\x89\x68\x70\x6f\xc2\xb4\x79\x2a\xcb\xf9\x66\x1b\x42\x86\x39\xfe\x1b\x9a\x99\x14\x27\x81\xd9\x8e\x81\x57\x29\xc9\x7c\x11\xcc\x4c\x92\x2f\x16\xd7\x4d\xe9\x06\x06\xdd\xea\x28\x41\x6f\x99\x1f\x58\x06\x8f\x7a\x63\x8f\xb7\x3b\x63\x58\x77\x57\xd6\x45\xed\xf5\xd0\x92\x62\x07\x03\x45\x04\xa3\x0c\xee\x08\x34\x29\x9c\x18\x36\x32\xd9\x56\xfb\x5e\xa4\xaa\x88\x19\xdd\x2f\x14\x0f\xd3\x63\x94\x75\x00\x29\x36\x1e\xb7\xe1\xab\x0c\x64\xb4\x70\xe7\x1b\xde\x6b\xde\xe1\xf0\xbb\xc6\x6a\xfa\x3d\x47\x8b\x66\x76\x98\xb7\x83\x42\xc1\x1f\xf8\xb6\xbb\x66\x9b\x5b\x4b\x0d\x2b\x2c\x42\x0e\xe7\x86\xb3\xdf\x32\x5d\xce\xff\x06\xf8\x26\xc3\x5c\x33\x96\xb1\x04\xf6\x73\xe8\xba\x6c\x40\x60\x0b\x73\x00\x79\xf6\x78\xf4\xe7\x6c\x29\x61\xf7\xa7\xb6\x5c\x0b\x99\xcf\xe1\x8b\xc3\x3e\x06\x1f\xb9\x85\xd7\x4b\xd7\x5f\x2f\x17\xd4\xbf\x3f\x28\xf4\x2c\xda\x62\xe6\xff\x60\xf7\x64\x4b\x67\x96\xfd\xcc\xdc\x3e\xaf\x13\x08\xfe\x07\x51\x18\xb7\x70\x2d\xcb\x45\x03\x3a\x60\xf6\x82\x01\x95\x44\x67\xaf\x01\xf9\xde\x23\x16\xb8\x69\x85\xdc\x0a\x54\xc2\x66\x44\x99\xfd\x99\xdf\x73\x58\x16\xea\xe3\x81\x8c\xe7\xcc\xac\x5f\xca\xfe\x4b\x68\xe5\xf3\xb2\x89\x51\x39\x68\xb8\x53\xfb\x3a\x9c\x75\x03\xb5\x2b\xe4\x7b\x08\x01\xcf\xe1\x27\x54\x2f\x8e\x76\xcc\x62\x67\x95\xcb\x16\xe7\xf5\x56\x44\xf3\x03\x38\xe7\x7d\x7d\xb6\xbf\xae\x03\xf9\x6e\x5d\x2d\xee\xb2\xb0\x07\xf4\x1c\xac\x24\x42\x64\xda\xf0\x2d\x25\xda\x50\x4e\x5f\xd5\x6d\x3c\x86\x41\xfc\xfb\x2f\xff\x31\x6e\x63\xfe\x81\xae\x0f\xcd\x5b\x70\x9d\x7f\xaf\x13\x21\x63\x08\x03\xf1\xd8\x33\xd7\x87\xc4\xf4\xfb\x72\x53\xf7\x6e\xc8\x23\x74\xad\x63\xd6\xa5\xae\x4d\x39\x08\x7c\xbf\xc5\x93\x38\xa4\x6d\x74\x1b\xdc\x03\x66\xb9\x95\x01\x27\x41\x8b\x3e\x37\xa6\x7e\x36\x7c\x61\xc0\xec\x35\xcb\xa7\xef\xa4\xa9\xb6\x41\x77\xf5\xe9\xbe\x35\xeb\x6f\x95\x4a\x8f\x35\xed\x79\x6a\x81\x47\xe7\x80\xe5\x7d\x8c\x26\x83\x1b\xc0\x99\xb7\xd3\x77\xce\xcd\xec\xb0\xb0\xc8\x18\x73\x4c\x1a\x10\x03\xa5\x2e\x40\xe4\x11\x3a\xd1\x91\x2d\x94\x6d\x1b\x22\x0d\x03\xb3\x9e\xa0\x0d\x0c\x51\x3a\x4e\xcd\x9a\xaf\x21\xa8\x63\xe3\xbe\x8f\x80\x17\x52\xe9\xe1\x20\x3b\x0c\x91\xb7\x2b\x9f\x72\x36\x59\x88\x2b\xe4\xe6\x31\xf8\xb6\x9d\x4f\xe4\xfb\x30\x46\x1d\x5d\x20\x33\x19\x5c\x16\x58\x51\x6f\xd3\xca\xdc\xac\x35\x99\x6a\xa5\x6d\x78\xb4\xa9\x76\x0c\x78\x5c\xa7\xe7\xe8\x5d\x88\xeb\x0e\x01\x90\x48\x6d\x16\xc6\x5c\xc2\x32\x25\xb2\x96\xe1\x96\x9b\x58\x6c\x0e\xe7\xd9\xb0\xb7\x15\x82\x83\x56\xe6\xde\xa5\x74\x85\x30\x27\xa1\xc8\xda\xa7\x09\x86\xaa\xc5\x69\x71\xee\x9a\xe5\xec\xa4\x3a\x02\xe0\x57\x7e\xe6\xbb\x0c\x40\xf0\x8d\xdd\xbe\x5c\xa2\xcd\x5e\xee\xff\xc8\x5b\x92\x0e\xf7\x85\x18\x65\x0a\xe2\xc6\xa0\xb1\x24\x58\xbb\x29\x52\x0b\xf7\xef\x6b\xe2\x5f\x65\xcd\x93\xf3\xf7\x71\xfa\xe8\x4e\xa7\x0f\x7a\x5d\xff\x31\xfc\x3c\x1d\xf6\xfd\x91\x6e\x86\xe0\x9a\xd4\x2a\x22\x22\xd8\x9c\x01\x37\x0e\x8a\x63\xf3\xed\x11\xdb\xf0\x44\xd2\x31\xc8\xb5\x11\x90\xb1\x58\x14\xab\x55\xab\xf5\x9b\xaa\xd5\x8b\x46\x02\x2d\xbc\x5d\xf0\x7c\x4b\xdd\x6e\xda\x05\xd9\xb6\xcf\xd2\xfc\xf5\xb8\x39\x3a\x51\x1d\x4e\xe1\xa8\x98\xda\x2f\x61\xb4\x67\x99\xa4\xe2\xfb\xf8\x26\x4e\xe4\x68\x99\xf6\x71\xb4\xd8\x70\x21\xa4\x31\x13\x72\xaf\x0d\xe8\xfc\xe6\x81\xf9\x3e\x1e\x98\x46\x17\x73\xb5\x87\x58\x3a\x3b\x4f\xca\x0a\x70\x47\x0f\x0f\x44\xe0\x70\x50\x4d\xd0\x2b\xa2\x7f\xc9\x84\x8c\x33\xa0\x62\x3e\x3d\x24\x07\xdc\x3e\xc7\x23\x55\xec\x89\x52\xdd\xab\x8d\x60\xf0\xa9\x0c\x21\x51\x19\x65\x8a\x8f\x20\x01\xc2\x0c\xd0\x87\x76\x28\x70\x04\xd7\x15\x86\x98\x62\xaf\xb4\xbe\x96\xe2\x99\x99\xdb\x60\x14\x46\x84\x83\xe5\x01\xac\xec\x37\xc4\xdf\xe8\x13\xc8\x5c\x59\x9c\x16\x2b\xae\x63\x48\x5b\xa4\x23\x99\xf2\xe8\xd1\xfc\x1d\xfa\x47\x5f\xa4\xa8\xb5\x85\xed\xc3\x4c\x0a\xdf\x5a\x22\x23\xe4\xd2\xb3\xd4\xe9\xae\x7f\xf8\x7a\xc6\x78\xa4\x55\x86\x9e\x98\xb8\xd0\xbe\xb0\x55\x82\x82\xf8\x94\xc4\x05\x4f\xf1\x8b\xad\x4e\x14\x9e\x1d\x05\x43\x38\x09\xd0\xa0\xc5\xb7\x6d\xca\x65\xf9\x4c\xe2\x70\xa1\x0e\x3c\xe9\xd8\xf9\x0e\xce\xe4\xbb\xc2\x32\x85\x9c\x6c\xfe\x58\xa1\xf6\xa9\x05\x8f\x77\x21\xe8\x43\x22\x89\x68\x89\xc7\x9b\x44\x9a\xa5\xb7\x60\xff\x4e\xbe\x42\xd3\x11\x4f\x31\x77\x03\x30\x71\xd3\xb4\x72\xf4\x33\x26\x85\x51\x59\xb8\x4e\xd2\x1d\x68\xa9\x5b\x2d\xce\x82\xef\x04\xe7\x9b\x92\x47\x93\x6c\x26\x6d\x81\x62\x91\x89\x65\x91\xa2\x2e\x0b\xd6\x9e\x1b\x00\x9d\xc3\x8f\xd3\x91\xb9\xc6\x72\x42\xa2\x0c\x3e\x8c\xf8\xee\xa7\x48\xc4\xab\xdb\x59\xbd\x5c\x87\x1e\x8c\x44\x43\x96\xd0\x5a\x3d\xdb\x6c\xe1\x67\xee\x93\x41\x86\x18\xa2\xb7\x24\xbb\xac\x91\x19\xa4\x8e\x80\xca\x51\xe2\x3b\x07\x60\x7b\xc0\xf3\x00\xe1\x70\x4b\xb4\xea\x3f\x27\x4f\x62\xc4\xee\xb7\x5c\x3f\x8e\xd8\xbb\x9d\xe4\x9b\x24\xfa\x93\x5a\xec\xb5\x2d\x4f\xe1\x5f\x71\x2a\xd0\x60\xff\x5b\xa3\xa7\x62\x14\xe0\xa7\x05\x5e\xb8\xba\x27\xc0\x06\x41\x01\x10\x1f\xa9\x05\xf7\x81\xd4\xb7\x82\xec\x9d\x4a\x43\x6e\xcf\xf3\x68\xd5\x97\xab\x12\xc0\xcb\x6a\x4a\xa5\x6f\x0a\x06\x1b\x19\x09\x15\x00\x66\xe0\x67\x70\xeb\x29\xcd\xb6\x29\xcf\xcd\x5e\xc9\x88\xad\x06\x77\x05\x26\x64\xa0\xb4\xaf\x14\x48\xf4\xbd\xd4\xed\x87\xe7\x5b\xa5\xd2\xc6\xbb\xfd\xa4\x13\x58\xf3\xa4\xf5\x9d\xbc\x29\x26\x96\x66\xe1\x8d\x67\x67\xd1\x7b\x65\xbc\x0f\x27\x20\x68\x85\xdd\x14\x17\x50\x78\xeb\xa7\x23\xe4\x0c\x30\xe6\x01\xa6\xc1\xe0\x25\x67\x29\x66\xb8\xd5\x3e\xcc\x05\x4d\xee\xa9\x30\xfd\xa2\xe6\x2f\xca\xea\xdf\x69\x51\x39\xa0\xdd\x79\xd2\x54\x1d\x39\xf4\x70\x3d\xac\x1b\x9d\xc0\xd8\x73\xeb\xc0\xb2\xa9\x88\xfb\xb0\xa1\x6c\xe5\xc5\x3c\x4a\x79\xd6\x33\x0d\xac\x51\xee\x4c\xa9\xa1\x0b\x68\xa7\xbf\xcc\xfc\x19\xfc\x75\x9b\x9e\xc2\x78\x26\x27\x0e\x1b\xc9\x5f\xe3\x4e\xf5\x40\x31\x8b\x4a\x57\x6d\x69\x30\xbf\xd1\x03\x69\x8d\x58\x56\x44\x6b\xc8\xe0\x2c\xcb\xa9\x50\x6e\xd5\x4f\xec\x68\x26\xcd\x45\x88\xd0\xe2\x1c\x62\x36\xcf\x80\x42\x9b\xfc\x97\x70\x37\x2d\xa5\x09\x85\x97\xeb\x82\x9b\xa5\x21\x4e\xe1\xaa\x22\x62\x93\x69\xb9\x7e\x14\x71\xe0\x46\x2a\xb6\xc6\xfc\x1d\xcf\xdc\x34\xe3\xfe\x75\xa0\x72\x56\xb3\xc9\xc2\x81\x85\x8a\x58\x45\xd2\xa6\xc9\x52\x44\xbb\xa8\x56\x2c\x5e\x8a\x94\x9e\xce\x5f\x79\x98\xbb\xae\xab\xa8\xb8\xd9\x0a\xfb\x5c\x2b\x82\x63\x6d\xe1\xa5\x7f\xcc\xa4\x92\x96\xba\xd6\x5f\xbb\xc7\x65\x4f\x65\xc4\x6f\xf9\x21\xbf\x4a\xef\x44\xbf\x92\xd6\x92\xfc\xb2\x29\x18\x60\x0d\x91\xd6\xdc\x98\xf8\xf1\x63\x55\x2d\x25\x71\x78\x6e\x10\x89\xac\x25\xc8\xbb\xe7\x28\x50\x6d\x58\xec\xea\xd6\xfa\xf7\xf5\x82\x5e\xb5\xf3\x75\x91\xaa\xac\xd0\xdd\x87\xff\xae\xdc\x6b\xfb\xf5\x06\x58\x2b\xd8\x6c\x9b\x85\x80\x92\xc4\x18\x57\xa6\x71\x30\xfb\x14\x05\x63\x2f\x55\xdf\xa7\x94\x88\x67\xc1\x22\xbe\x85\xd4\xf0\x66\xa2\x88\xda\x7b\x81\x7d\x0d\x37\xef\x4a\x84\x5a\x40\xe5\x72\x2c\x6d\xae\x52\x2c\xe9\x87\x4a\xbb\x6c\xb4\xc1\x2a\x50\x0a\x25\x57\x4c\xaf\xe8\xdb\x29\x3c\xdb\xb7\x3c\x5f\xa3\x93\x00\x88\x96\x31\x12\x9b\x1b\x05\x0a\x69\x7c\xd0\xdd\xbd\x48\xd5\x02\xb8\x5f\x80\x9a\xb5\x6d\x9f\xd3\xe6\xec\x35\x75\xf5\x05\xeb\xb3\xb7\xcd\x79\x80\x32\x10\x2d\x32\xa8\x07\xae\xc7\x93\xfa\x26\xb1\x0d\x73\x64\xd4\xbb\x6b\xc4\xd6\xbb\x9a\x23\xa3\x8e\xa7\x6a\xa4\x3a\x64\x34\x5d\x36\x88\xf5\x7d\x07\xeb\x32\x2c\xa4\x30\xd7\x1b\x41\xcb\x51\xc0\x16\xd1\xa5\x2a\xe3\xb5\xe4\x5a\x33\x39\xc1\xdf\x94\xa8\x68\x1d\x6e\xb8\x4b\x1a\x22\x1e\x15\x77\xfe\xb0\xb2\x82\x4d\x6c\xa5\x34\x54\xe4\x72\x0a\x28\x3a\x8b\x0b\xdc\x23\x23\x28\x64\x90\x79\xa2\x8d\x3e\x9d\x81\xba\x90\x15\x8b\x33\x5f\x37\xab\x34\x28\x18\x50\x56\xbd\xe5\x1a\x48\xaa\xd6\x49\x1a\x9f\x35\x5c\x24\xe8\xe3\xf4\xf8\xbf\x16\x6e\x85\xa7\x24\xbe\xc0\x2e\xc4\xb2\x2d\x37\x76\xd7\x8e\x51\xef\x01\xf3\xcc\x96\x0c\xa1\xb8\xee\x92\x17\x25\x63\xe9\xef\x9d\xfc\xd2\x23\xbb\xa4\x85\x37\xe2\xd7\x2f\x27\x4a\x73\xd6\x47\x4e\x3c\x94\x4d\x2b\x7b\x6a\x8c\x71\x48\x92\xa3\x6d\xaa\xb2\x39\x86\xf8\xbf\x03\xae\x84\xf7\x0c\x65\x5b\xfe\x2c\xa9\x5a\xb5\x1b\xff\xea\x20\xf9\xd0\x4c\xbe\x67\xe4\x43\x2d\xed\xc7\x4b\x0a\x49\xc8\x0f\x79\xe2\x48\x16\x46\x01\xb5\x12\x4f\xd3\x10\x4a\xd4\xbb\x82\x66\xd2\x3b\x0c\xcc\xf5\x9f\xa6\xe6\xcf\xa8\x2a\xb8\xa9\x3a\x39\x46\xfe\xeb\x91\x2d\xad\x24\x58\x12\x0a\x51\x9c\xa1\x61\xee\xcd\xe7\x7d\xa7\xf9\x54\xfa\x24\xd1\xed\xe4\x3c\x2f\x06\xd4\xdf\x5d\xf0\x9c\xa7\x6a\x75\x61\x5e\xbe\xc7\x77\x3b\x2f\x33\xd4\x8b\x2c\x31\xab\x79\x1e\x92\xff\x38\xc0\xe8\x86\xf5\x3b\x7b\x82\x81\xf8\xd9\xf9\xa3\xd8\x0d\xee\x6b\xb3\x3b\x3e\xe0\xc6\x87\xc3\x6c\x8b\xfb\x22\xae\xb5\x4d\xe8\xa5\xaf\x32\xae\xf3\x64\xc9\xa3\x92\x07\xbd\x17\xd8\x54\xe9\x86\xc4\x16\x33\x08\x3d\xdb\xb4\x34\x8f\x7e\xc0\x99\x63\xf9\x69\x5f\xff\x53\xdb\x14\xc2\x0b\xe9\x17\xf0\x8f\x74\x3b\x0e\xf1\xf8\xd6\xef\xc8\x92\x67\x99\xd7\x92\x9e\x7b\x4e\x36\x67\x25\xcc\x90\xc6\x29\x05\xac\x7c\x20\x79\x3d\x66\x0e\x0f\x2c\x2e\x19\x06\x33\x89\xdd\x1c\x08\xf8\x5b\x63\xe3\x20\x46\x5b\x30\x39\x62\x02\x5e\xc8\xab\x95\xc2\x30\x85\x98\xe2\xfd\x64\x51\x52\x2b\x20\xd5\x96\x61\x79\x23\xe2\xa4\xa8\x62\xbc\x97\xca\x11\x7e\xb3\x85\xff\xe7\xd9\xc2\x90\x5a\xf0\x92\x86\x70\x73\xa1\xcb\x6f\x57\xe1\x0f\x70\x15\x96\x43\x7d\x42\x3f\x61\xea\xf9\x90\xa9\xa5\xae\xde\xf9\xd7\x8f\x9b\x5c\xc1\x82\x9e\x64\xfd\xe7\x99\xf6\xea\xc0\x53\xdc\x5b\xfa\x75\x47\x1f\xbd\xb2\xe0\x35\x68\x77\x2f\xf2\xfa\x39\x0a\x5d\x50\x79\xb8\x86\xc6\x70\xe9\xed\xbe\x6c\x2f\x58\xfb\xa1\x82\x30\x7d\x94\x01\x23\xa2\x5c\x58\xe6\xda\x8a\x26\xcb\xce\xdf\x21\xa2\x02\x68\x2a\x9e\xbf\xca\xdc\xac\x97\x45\x91\xcd\x35\xbb\x4a\xb2\xfc\x53\x85\x07\xe0\x30\x22\x81\x17\xcb\x24\xb0\x5d\xc5\x6e\x06\x6f\x74\x06\xc0\xef\xca\x21\x6a\xa3\x17\xe0\x9e\x03\xdc\x0a\x8b\xfc\x6c\xfa\x3d\xe4\xe2\xf8\xe2\xe6\xeb\x0b\xea\xbc\xcf\x9a\x6f\xb7\x42\xdb\xb8\x6b\x2d\x34\x0e\x30\xca\xf0\x15\xc0\x41\x5f\x0b\x24\x63\xa9\xdc\x6d\xe6\x4c\x57\x9a\x86\xc7\x60\xea\xc6\xcd\x2b\x77\x5d\xa4\x69\xeb\xca\xed\x47\x67\xbd\xfe\x78\x75\x35\xff\x34\xb9\xfa\x78\xd9\x89\x76\x1a\x3c\xd6\x3a\x27\xae\x27\x34\x27\x1e\x4f\xdd\x7c\x56\x58\x42\x18\xe5\x47\x8d\x86\x43\x91\xa6\x65\x24\xdc\x99\xfc\x42\xed\x40\x82\x14\xa2\xfc\x9b\x79\x63\x9d\x13\x57\xfe\x3e\x3c\xf6\xc5\x34\xfe\x05\xdf\x3d\x63\x7e\x10\x6f\x01\xaf\x9d\x70\xa0\x9b\xe7\x95\xb2\x2f\x8f\x38\x0e\x08\xc8\xdb\x76\x1c\x4e\x8d\xf5\x7d\xd8\xf1\xf8\x28\x01\x54\x49\xc4\x16\xa2\xfb\x24\xa7\x03\xe7\xee\x4b\xd9\x9b\xe9\x64\x79\x8c\xaa\x39\xb4\x3b\x42\x84\x66\xe0\x9d\xf1\x20\xc6\x33\x89\x76\xa5\xe9\x53\xae\xda\xfb\xc4\xa6\x94\x8d\x90\x72\xb9\x2a\xf8\x4a\x64\x23\x66\x3f\x3e\x93\x9b\x64\xb5\x06\xf8\x2a\x22\x08\x76\x96\x18\xcf\x93\xa7\x2a\x75\x08\x26\x92\x11\x64\xcb\x88\x25\x72\x26\x69\x4c\x72\xe5\x9b\xc7\x1c\xb3\x3f\xdd\xbb\xe1\x20\x6d\x02\x35\x44\x20\xd3\x72\x26\x71\x71\x11\x25\xd3\xba\x79\x40\x71\xe5\x79\x75\xeb\x72\x20\x21\x41\x22\x26\x23\xd3\x57\xe0\x70\x9a\x49\x57\x72\x01\x0b\x5b\x22\x39\xc6\xcc\x53\xec\xd2\x7e\x79\x62\x17\xc3\x9e\x09\xea\x5b\xf3\xae\x3f\xfa\x0e\x30\x07\x6e\x3e\x80\x51\xa6\x2e\xc6\x7a\xda\x08\x3c\x10\x1c\x6d\x75\x78\x50\x67\xd3\xdc\x1b\x3b\x2e\x7c\xa6\x35\x84\xaf\x8a\x45\x3a\xa0\x4b\xf8\x7c\x67\xa7\x50\x24\x77\x77\xaa\x87\x8f\xf7\xae\x72\xb4\xcc\x36\xed\xfa\xec\x42\xa9\x96\x75\x39\xa1\xb7\xb4\xd4\x29\x7a\x61\xdf\x64\x14\x51\x7e\xc8\x7e\xe9\x91\x1c\x5f\x9d\x22\x2b\x7d\xba\x3a\x94\x26\xd9\x41\xdd\xf1\xfa\x53\xef\x1e\x39\x0d\x81\x2e\xbb\x41\x12\x96\xee\xb9\x92\x80\x6d\x11\x93\xe4\xa3\xb3\xd4\x2c\x09\x8a\x17\x73\x78\x90\x37\xc5\xec\xff\x91\xdb\x44\x23\xbf\x72\x23\xe8\x64\x54\xe8\xcc\x88\x4b\x92\x77\x24\xb5\x95\x66\x7c\x26\x2d\xa4\xa1\x15\xc7\x13\x9b\x84\xa0\xdd\x4f\xb1\xe0\x60\x8b\x80\x60\xa0\xb1\xe6\x4c\x49\x61\xa5\xe1\x4c\x5a\x3e\x9f\x11\xe3\x8b\xcc\xd2\xe4\x70\xb9\x73\xdc\x35\x9e\x4e\x9e\x4b\x06\xd9\x1d\xfb\x65\x5e\x45\x0d\x28\xdd\xf3\xff\x64\xfe\xfb\xdb\x3f\xfd\xff\x00\x00\x00\xff\xff\x16\x8f\x0a\xc4\xd2\x2a\x04\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 272307, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 273106, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/flyteidl/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java index f7de0a226d..5c484c423f 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java @@ -6117,6 +6117,106 @@ public interface WorkflowExecutionConfigOrBuilder extends * int32 max_parallelism = 1; */ int getMaxParallelism(); + + /** + *
+     * Indicates security context permissions for executions triggered with this matchable attribute. 
+     * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + boolean hasSecurityContext(); + /** + *
+     * Indicates security context permissions for executions triggered with this matchable attribute. 
+     * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + flyteidl.core.Security.SecurityContext getSecurityContext(); + /** + *
+     * Indicates security context permissions for executions triggered with this matchable attribute. 
+     * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + flyteidl.core.Security.SecurityContextOrBuilder getSecurityContextOrBuilder(); + + /** + *
+     * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+     * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + boolean hasRawOutputDataConfig(); + /** + *
+     * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+     * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + flyteidl.admin.Common.RawOutputDataConfig getRawOutputDataConfig(); + /** + *
+     * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+     * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + flyteidl.admin.Common.RawOutputDataConfigOrBuilder getRawOutputDataConfigOrBuilder(); + + /** + *
+     * Custom labels to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + boolean hasLabels(); + /** + *
+     * Custom labels to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + flyteidl.admin.Common.Labels getLabels(); + /** + *
+     * Custom labels to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + flyteidl.admin.Common.LabelsOrBuilder getLabelsOrBuilder(); + + /** + *
+     * Custom annotations to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + boolean hasAnnotations(); + /** + *
+     * Custom annotations to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + flyteidl.admin.Common.Annotations getAnnotations(); + /** + *
+     * Custom annotations to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + flyteidl.admin.Common.AnnotationsOrBuilder getAnnotationsOrBuilder(); } /** *
@@ -6166,6 +6266,58 @@ private WorkflowExecutionConfig(
               maxParallelism_ = input.readInt32();
               break;
             }
+            case 18: {
+              flyteidl.core.Security.SecurityContext.Builder subBuilder = null;
+              if (securityContext_ != null) {
+                subBuilder = securityContext_.toBuilder();
+              }
+              securityContext_ = input.readMessage(flyteidl.core.Security.SecurityContext.parser(), extensionRegistry);
+              if (subBuilder != null) {
+                subBuilder.mergeFrom(securityContext_);
+                securityContext_ = subBuilder.buildPartial();
+              }
+
+              break;
+            }
+            case 26: {
+              flyteidl.admin.Common.RawOutputDataConfig.Builder subBuilder = null;
+              if (rawOutputDataConfig_ != null) {
+                subBuilder = rawOutputDataConfig_.toBuilder();
+              }
+              rawOutputDataConfig_ = input.readMessage(flyteidl.admin.Common.RawOutputDataConfig.parser(), extensionRegistry);
+              if (subBuilder != null) {
+                subBuilder.mergeFrom(rawOutputDataConfig_);
+                rawOutputDataConfig_ = subBuilder.buildPartial();
+              }
+
+              break;
+            }
+            case 34: {
+              flyteidl.admin.Common.Labels.Builder subBuilder = null;
+              if (labels_ != null) {
+                subBuilder = labels_.toBuilder();
+              }
+              labels_ = input.readMessage(flyteidl.admin.Common.Labels.parser(), extensionRegistry);
+              if (subBuilder != null) {
+                subBuilder.mergeFrom(labels_);
+                labels_ = subBuilder.buildPartial();
+              }
+
+              break;
+            }
+            case 42: {
+              flyteidl.admin.Common.Annotations.Builder subBuilder = null;
+              if (annotations_ != null) {
+                subBuilder = annotations_.toBuilder();
+              }
+              annotations_ = input.readMessage(flyteidl.admin.Common.Annotations.parser(), extensionRegistry);
+              if (subBuilder != null) {
+                subBuilder.mergeFrom(annotations_);
+                annotations_ = subBuilder.buildPartial();
+              }
+
+              break;
+            }
             default: {
               if (!parseUnknownField(
                   input, unknownFields, extensionRegistry, tag)) {
@@ -6211,6 +6363,138 @@ public int getMaxParallelism() {
       return maxParallelism_;
     }
 
+    public static final int SECURITY_CONTEXT_FIELD_NUMBER = 2;
+    private flyteidl.core.Security.SecurityContext securityContext_;
+    /**
+     * 
+     * Indicates security context permissions for executions triggered with this matchable attribute. 
+     * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public boolean hasSecurityContext() { + return securityContext_ != null; + } + /** + *
+     * Indicates security context permissions for executions triggered with this matchable attribute. 
+     * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public flyteidl.core.Security.SecurityContext getSecurityContext() { + return securityContext_ == null ? flyteidl.core.Security.SecurityContext.getDefaultInstance() : securityContext_; + } + /** + *
+     * Indicates security context permissions for executions triggered with this matchable attribute. 
+     * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public flyteidl.core.Security.SecurityContextOrBuilder getSecurityContextOrBuilder() { + return getSecurityContext(); + } + + public static final int RAW_OUTPUT_DATA_CONFIG_FIELD_NUMBER = 3; + private flyteidl.admin.Common.RawOutputDataConfig rawOutputDataConfig_; + /** + *
+     * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+     * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public boolean hasRawOutputDataConfig() { + return rawOutputDataConfig_ != null; + } + /** + *
+     * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+     * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public flyteidl.admin.Common.RawOutputDataConfig getRawOutputDataConfig() { + return rawOutputDataConfig_ == null ? flyteidl.admin.Common.RawOutputDataConfig.getDefaultInstance() : rawOutputDataConfig_; + } + /** + *
+     * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+     * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public flyteidl.admin.Common.RawOutputDataConfigOrBuilder getRawOutputDataConfigOrBuilder() { + return getRawOutputDataConfig(); + } + + public static final int LABELS_FIELD_NUMBER = 4; + private flyteidl.admin.Common.Labels labels_; + /** + *
+     * Custom labels to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public boolean hasLabels() { + return labels_ != null; + } + /** + *
+     * Custom labels to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public flyteidl.admin.Common.Labels getLabels() { + return labels_ == null ? flyteidl.admin.Common.Labels.getDefaultInstance() : labels_; + } + /** + *
+     * Custom labels to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public flyteidl.admin.Common.LabelsOrBuilder getLabelsOrBuilder() { + return getLabels(); + } + + public static final int ANNOTATIONS_FIELD_NUMBER = 5; + private flyteidl.admin.Common.Annotations annotations_; + /** + *
+     * Custom annotations to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public boolean hasAnnotations() { + return annotations_ != null; + } + /** + *
+     * Custom annotations to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public flyteidl.admin.Common.Annotations getAnnotations() { + return annotations_ == null ? flyteidl.admin.Common.Annotations.getDefaultInstance() : annotations_; + } + /** + *
+     * Custom annotations to be applied to a triggered execution resource.
+     * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public flyteidl.admin.Common.AnnotationsOrBuilder getAnnotationsOrBuilder() { + return getAnnotations(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -6228,6 +6512,18 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (maxParallelism_ != 0) { output.writeInt32(1, maxParallelism_); } + if (securityContext_ != null) { + output.writeMessage(2, getSecurityContext()); + } + if (rawOutputDataConfig_ != null) { + output.writeMessage(3, getRawOutputDataConfig()); + } + if (labels_ != null) { + output.writeMessage(4, getLabels()); + } + if (annotations_ != null) { + output.writeMessage(5, getAnnotations()); + } unknownFields.writeTo(output); } @@ -6241,6 +6537,22 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeInt32Size(1, maxParallelism_); } + if (securityContext_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getSecurityContext()); + } + if (rawOutputDataConfig_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, getRawOutputDataConfig()); + } + if (labels_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, getLabels()); + } + if (annotations_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, getAnnotations()); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -6258,6 +6570,26 @@ public boolean equals(final java.lang.Object obj) { if (getMaxParallelism() != other.getMaxParallelism()) return false; + if (hasSecurityContext() != other.hasSecurityContext()) return false; + if (hasSecurityContext()) { + if (!getSecurityContext() + .equals(other.getSecurityContext())) return false; + } + if (hasRawOutputDataConfig() != other.hasRawOutputDataConfig()) return false; + if (hasRawOutputDataConfig()) { + if (!getRawOutputDataConfig() + .equals(other.getRawOutputDataConfig())) return false; + } + if (hasLabels() != other.hasLabels()) return false; + if (hasLabels()) { + if (!getLabels() + .equals(other.getLabels())) return false; + } + if (hasAnnotations() != other.hasAnnotations()) return false; + if (hasAnnotations()) { + if (!getAnnotations() + .equals(other.getAnnotations())) return false; + } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -6271,6 +6603,22 @@ public int hashCode() { hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + MAX_PARALLELISM_FIELD_NUMBER; hash = (53 * hash) + getMaxParallelism(); + if (hasSecurityContext()) { + hash = (37 * hash) + SECURITY_CONTEXT_FIELD_NUMBER; + hash = (53 * hash) + getSecurityContext().hashCode(); + } + if (hasRawOutputDataConfig()) { + hash = (37 * hash) + RAW_OUTPUT_DATA_CONFIG_FIELD_NUMBER; + hash = (53 * hash) + getRawOutputDataConfig().hashCode(); + } + if (hasLabels()) { + hash = (37 * hash) + LABELS_FIELD_NUMBER; + hash = (53 * hash) + getLabels().hashCode(); + } + if (hasAnnotations()) { + hash = (37 * hash) + ANNOTATIONS_FIELD_NUMBER; + hash = (53 * hash) + getAnnotations().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -6410,6 +6758,30 @@ public Builder clear() { super.clear(); maxParallelism_ = 0; + if (securityContextBuilder_ == null) { + securityContext_ = null; + } else { + securityContext_ = null; + securityContextBuilder_ = null; + } + if (rawOutputDataConfigBuilder_ == null) { + rawOutputDataConfig_ = null; + } else { + rawOutputDataConfig_ = null; + rawOutputDataConfigBuilder_ = null; + } + if (labelsBuilder_ == null) { + labels_ = null; + } else { + labels_ = null; + labelsBuilder_ = null; + } + if (annotationsBuilder_ == null) { + annotations_ = null; + } else { + annotations_ = null; + annotationsBuilder_ = null; + } return this; } @@ -6437,6 +6809,26 @@ public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig build( public flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig buildPartial() { flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig result = new flyteidl.admin.MatchableResourceOuterClass.WorkflowExecutionConfig(this); result.maxParallelism_ = maxParallelism_; + if (securityContextBuilder_ == null) { + result.securityContext_ = securityContext_; + } else { + result.securityContext_ = securityContextBuilder_.build(); + } + if (rawOutputDataConfigBuilder_ == null) { + result.rawOutputDataConfig_ = rawOutputDataConfig_; + } else { + result.rawOutputDataConfig_ = rawOutputDataConfigBuilder_.build(); + } + if (labelsBuilder_ == null) { + result.labels_ = labels_; + } else { + result.labels_ = labelsBuilder_.build(); + } + if (annotationsBuilder_ == null) { + result.annotations_ = annotations_; + } else { + result.annotations_ = annotationsBuilder_.build(); + } onBuilt(); return result; } @@ -6488,6 +6880,18 @@ public Builder mergeFrom(flyteidl.admin.MatchableResourceOuterClass.WorkflowExec if (other.getMaxParallelism() != 0) { setMaxParallelism(other.getMaxParallelism()); } + if (other.hasSecurityContext()) { + mergeSecurityContext(other.getSecurityContext()); + } + if (other.hasRawOutputDataConfig()) { + mergeRawOutputDataConfig(other.getRawOutputDataConfig()); + } + if (other.hasLabels()) { + mergeLabels(other.getLabels()); + } + if (other.hasAnnotations()) { + mergeAnnotations(other.getAnnotations()); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -6554,6 +6958,618 @@ public Builder clearMaxParallelism() { onChanged(); return this; } + + private flyteidl.core.Security.SecurityContext securityContext_; + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Security.SecurityContext, flyteidl.core.Security.SecurityContext.Builder, flyteidl.core.Security.SecurityContextOrBuilder> securityContextBuilder_; + /** + *
+       * Indicates security context permissions for executions triggered with this matchable attribute. 
+       * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public boolean hasSecurityContext() { + return securityContextBuilder_ != null || securityContext_ != null; + } + /** + *
+       * Indicates security context permissions for executions triggered with this matchable attribute. 
+       * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public flyteidl.core.Security.SecurityContext getSecurityContext() { + if (securityContextBuilder_ == null) { + return securityContext_ == null ? flyteidl.core.Security.SecurityContext.getDefaultInstance() : securityContext_; + } else { + return securityContextBuilder_.getMessage(); + } + } + /** + *
+       * Indicates security context permissions for executions triggered with this matchable attribute. 
+       * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public Builder setSecurityContext(flyteidl.core.Security.SecurityContext value) { + if (securityContextBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + securityContext_ = value; + onChanged(); + } else { + securityContextBuilder_.setMessage(value); + } + + return this; + } + /** + *
+       * Indicates security context permissions for executions triggered with this matchable attribute. 
+       * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public Builder setSecurityContext( + flyteidl.core.Security.SecurityContext.Builder builderForValue) { + if (securityContextBuilder_ == null) { + securityContext_ = builderForValue.build(); + onChanged(); + } else { + securityContextBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+       * Indicates security context permissions for executions triggered with this matchable attribute. 
+       * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public Builder mergeSecurityContext(flyteidl.core.Security.SecurityContext value) { + if (securityContextBuilder_ == null) { + if (securityContext_ != null) { + securityContext_ = + flyteidl.core.Security.SecurityContext.newBuilder(securityContext_).mergeFrom(value).buildPartial(); + } else { + securityContext_ = value; + } + onChanged(); + } else { + securityContextBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+       * Indicates security context permissions for executions triggered with this matchable attribute. 
+       * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public Builder clearSecurityContext() { + if (securityContextBuilder_ == null) { + securityContext_ = null; + onChanged(); + } else { + securityContext_ = null; + securityContextBuilder_ = null; + } + + return this; + } + /** + *
+       * Indicates security context permissions for executions triggered with this matchable attribute. 
+       * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public flyteidl.core.Security.SecurityContext.Builder getSecurityContextBuilder() { + + onChanged(); + return getSecurityContextFieldBuilder().getBuilder(); + } + /** + *
+       * Indicates security context permissions for executions triggered with this matchable attribute. 
+       * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + public flyteidl.core.Security.SecurityContextOrBuilder getSecurityContextOrBuilder() { + if (securityContextBuilder_ != null) { + return securityContextBuilder_.getMessageOrBuilder(); + } else { + return securityContext_ == null ? + flyteidl.core.Security.SecurityContext.getDefaultInstance() : securityContext_; + } + } + /** + *
+       * Indicates security context permissions for executions triggered with this matchable attribute. 
+       * 
+ * + * .flyteidl.core.SecurityContext security_context = 2; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Security.SecurityContext, flyteidl.core.Security.SecurityContext.Builder, flyteidl.core.Security.SecurityContextOrBuilder> + getSecurityContextFieldBuilder() { + if (securityContextBuilder_ == null) { + securityContextBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.Security.SecurityContext, flyteidl.core.Security.SecurityContext.Builder, flyteidl.core.Security.SecurityContextOrBuilder>( + getSecurityContext(), + getParentForChildren(), + isClean()); + securityContext_ = null; + } + return securityContextBuilder_; + } + + private flyteidl.admin.Common.RawOutputDataConfig rawOutputDataConfig_; + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.Common.RawOutputDataConfig, flyteidl.admin.Common.RawOutputDataConfig.Builder, flyteidl.admin.Common.RawOutputDataConfigOrBuilder> rawOutputDataConfigBuilder_; + /** + *
+       * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+       * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public boolean hasRawOutputDataConfig() { + return rawOutputDataConfigBuilder_ != null || rawOutputDataConfig_ != null; + } + /** + *
+       * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+       * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public flyteidl.admin.Common.RawOutputDataConfig getRawOutputDataConfig() { + if (rawOutputDataConfigBuilder_ == null) { + return rawOutputDataConfig_ == null ? flyteidl.admin.Common.RawOutputDataConfig.getDefaultInstance() : rawOutputDataConfig_; + } else { + return rawOutputDataConfigBuilder_.getMessage(); + } + } + /** + *
+       * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+       * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public Builder setRawOutputDataConfig(flyteidl.admin.Common.RawOutputDataConfig value) { + if (rawOutputDataConfigBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + rawOutputDataConfig_ = value; + onChanged(); + } else { + rawOutputDataConfigBuilder_.setMessage(value); + } + + return this; + } + /** + *
+       * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+       * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public Builder setRawOutputDataConfig( + flyteidl.admin.Common.RawOutputDataConfig.Builder builderForValue) { + if (rawOutputDataConfigBuilder_ == null) { + rawOutputDataConfig_ = builderForValue.build(); + onChanged(); + } else { + rawOutputDataConfigBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+       * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+       * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public Builder mergeRawOutputDataConfig(flyteidl.admin.Common.RawOutputDataConfig value) { + if (rawOutputDataConfigBuilder_ == null) { + if (rawOutputDataConfig_ != null) { + rawOutputDataConfig_ = + flyteidl.admin.Common.RawOutputDataConfig.newBuilder(rawOutputDataConfig_).mergeFrom(value).buildPartial(); + } else { + rawOutputDataConfig_ = value; + } + onChanged(); + } else { + rawOutputDataConfigBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+       * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+       * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public Builder clearRawOutputDataConfig() { + if (rawOutputDataConfigBuilder_ == null) { + rawOutputDataConfig_ = null; + onChanged(); + } else { + rawOutputDataConfig_ = null; + rawOutputDataConfigBuilder_ = null; + } + + return this; + } + /** + *
+       * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+       * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public flyteidl.admin.Common.RawOutputDataConfig.Builder getRawOutputDataConfigBuilder() { + + onChanged(); + return getRawOutputDataConfigFieldBuilder().getBuilder(); + } + /** + *
+       * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+       * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + public flyteidl.admin.Common.RawOutputDataConfigOrBuilder getRawOutputDataConfigOrBuilder() { + if (rawOutputDataConfigBuilder_ != null) { + return rawOutputDataConfigBuilder_.getMessageOrBuilder(); + } else { + return rawOutputDataConfig_ == null ? + flyteidl.admin.Common.RawOutputDataConfig.getDefaultInstance() : rawOutputDataConfig_; + } + } + /** + *
+       * Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.).
+       * 
+ * + * .flyteidl.admin.RawOutputDataConfig raw_output_data_config = 3; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.Common.RawOutputDataConfig, flyteidl.admin.Common.RawOutputDataConfig.Builder, flyteidl.admin.Common.RawOutputDataConfigOrBuilder> + getRawOutputDataConfigFieldBuilder() { + if (rawOutputDataConfigBuilder_ == null) { + rawOutputDataConfigBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.Common.RawOutputDataConfig, flyteidl.admin.Common.RawOutputDataConfig.Builder, flyteidl.admin.Common.RawOutputDataConfigOrBuilder>( + getRawOutputDataConfig(), + getParentForChildren(), + isClean()); + rawOutputDataConfig_ = null; + } + return rawOutputDataConfigBuilder_; + } + + private flyteidl.admin.Common.Labels labels_; + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.Common.Labels, flyteidl.admin.Common.Labels.Builder, flyteidl.admin.Common.LabelsOrBuilder> labelsBuilder_; + /** + *
+       * Custom labels to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public boolean hasLabels() { + return labelsBuilder_ != null || labels_ != null; + } + /** + *
+       * Custom labels to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public flyteidl.admin.Common.Labels getLabels() { + if (labelsBuilder_ == null) { + return labels_ == null ? flyteidl.admin.Common.Labels.getDefaultInstance() : labels_; + } else { + return labelsBuilder_.getMessage(); + } + } + /** + *
+       * Custom labels to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public Builder setLabels(flyteidl.admin.Common.Labels value) { + if (labelsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + labels_ = value; + onChanged(); + } else { + labelsBuilder_.setMessage(value); + } + + return this; + } + /** + *
+       * Custom labels to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public Builder setLabels( + flyteidl.admin.Common.Labels.Builder builderForValue) { + if (labelsBuilder_ == null) { + labels_ = builderForValue.build(); + onChanged(); + } else { + labelsBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+       * Custom labels to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public Builder mergeLabels(flyteidl.admin.Common.Labels value) { + if (labelsBuilder_ == null) { + if (labels_ != null) { + labels_ = + flyteidl.admin.Common.Labels.newBuilder(labels_).mergeFrom(value).buildPartial(); + } else { + labels_ = value; + } + onChanged(); + } else { + labelsBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+       * Custom labels to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public Builder clearLabels() { + if (labelsBuilder_ == null) { + labels_ = null; + onChanged(); + } else { + labels_ = null; + labelsBuilder_ = null; + } + + return this; + } + /** + *
+       * Custom labels to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public flyteidl.admin.Common.Labels.Builder getLabelsBuilder() { + + onChanged(); + return getLabelsFieldBuilder().getBuilder(); + } + /** + *
+       * Custom labels to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + public flyteidl.admin.Common.LabelsOrBuilder getLabelsOrBuilder() { + if (labelsBuilder_ != null) { + return labelsBuilder_.getMessageOrBuilder(); + } else { + return labels_ == null ? + flyteidl.admin.Common.Labels.getDefaultInstance() : labels_; + } + } + /** + *
+       * Custom labels to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Labels labels = 4; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.Common.Labels, flyteidl.admin.Common.Labels.Builder, flyteidl.admin.Common.LabelsOrBuilder> + getLabelsFieldBuilder() { + if (labelsBuilder_ == null) { + labelsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.Common.Labels, flyteidl.admin.Common.Labels.Builder, flyteidl.admin.Common.LabelsOrBuilder>( + getLabels(), + getParentForChildren(), + isClean()); + labels_ = null; + } + return labelsBuilder_; + } + + private flyteidl.admin.Common.Annotations annotations_; + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.Common.Annotations, flyteidl.admin.Common.Annotations.Builder, flyteidl.admin.Common.AnnotationsOrBuilder> annotationsBuilder_; + /** + *
+       * Custom annotations to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public boolean hasAnnotations() { + return annotationsBuilder_ != null || annotations_ != null; + } + /** + *
+       * Custom annotations to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public flyteidl.admin.Common.Annotations getAnnotations() { + if (annotationsBuilder_ == null) { + return annotations_ == null ? flyteidl.admin.Common.Annotations.getDefaultInstance() : annotations_; + } else { + return annotationsBuilder_.getMessage(); + } + } + /** + *
+       * Custom annotations to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public Builder setAnnotations(flyteidl.admin.Common.Annotations value) { + if (annotationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + annotations_ = value; + onChanged(); + } else { + annotationsBuilder_.setMessage(value); + } + + return this; + } + /** + *
+       * Custom annotations to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public Builder setAnnotations( + flyteidl.admin.Common.Annotations.Builder builderForValue) { + if (annotationsBuilder_ == null) { + annotations_ = builderForValue.build(); + onChanged(); + } else { + annotationsBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+       * Custom annotations to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public Builder mergeAnnotations(flyteidl.admin.Common.Annotations value) { + if (annotationsBuilder_ == null) { + if (annotations_ != null) { + annotations_ = + flyteidl.admin.Common.Annotations.newBuilder(annotations_).mergeFrom(value).buildPartial(); + } else { + annotations_ = value; + } + onChanged(); + } else { + annotationsBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+       * Custom annotations to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public Builder clearAnnotations() { + if (annotationsBuilder_ == null) { + annotations_ = null; + onChanged(); + } else { + annotations_ = null; + annotationsBuilder_ = null; + } + + return this; + } + /** + *
+       * Custom annotations to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public flyteidl.admin.Common.Annotations.Builder getAnnotationsBuilder() { + + onChanged(); + return getAnnotationsFieldBuilder().getBuilder(); + } + /** + *
+       * Custom annotations to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + public flyteidl.admin.Common.AnnotationsOrBuilder getAnnotationsOrBuilder() { + if (annotationsBuilder_ != null) { + return annotationsBuilder_.getMessageOrBuilder(); + } else { + return annotations_ == null ? + flyteidl.admin.Common.Annotations.getDefaultInstance() : annotations_; + } + } + /** + *
+       * Custom annotations to be applied to a triggered execution resource.
+       * 
+ * + * .flyteidl.admin.Annotations annotations = 5; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.Common.Annotations, flyteidl.admin.Common.Annotations.Builder, flyteidl.admin.Common.AnnotationsOrBuilder> + getAnnotationsFieldBuilder() { + if (annotationsBuilder_ == null) { + annotationsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.admin.Common.Annotations, flyteidl.admin.Common.Annotations.Builder, flyteidl.admin.Common.AnnotationsOrBuilder>( + getAnnotations(), + getParentForChildren(), + isClean()); + annotations_ = null; + } + return annotationsBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -11417,60 +12433,67 @@ public flyteidl.admin.MatchableResourceOuterClass.ListMatchableAttributesRespons static { java.lang.String[] descriptorData = { "\n\'flyteidl/admin/matchable_resource.prot" + - "o\022\016flyteidl.admin\032\'flyteidl/admin/cluste" + - "r_assignment.proto\032\035flyteidl/core/execut" + - "ion.proto\"h\n\020TaskResourceSpec\022\013\n\003cpu\030\001 \001" + - "(\t\022\013\n\003gpu\030\002 \001(\t\022\016\n\006memory\030\003 \001(\t\022\017\n\007stora" + - "ge\030\004 \001(\t\022\031\n\021ephemeral_storage\030\005 \001(\t\"~\n\026T" + - "askResourceAttributes\0222\n\010defaults\030\001 \001(\0132" + - " .flyteidl.admin.TaskResourceSpec\0220\n\006lim" + - "its\030\002 \001(\0132 .flyteidl.admin.TaskResourceS" + - "pec\"\235\001\n\031ClusterResourceAttributes\022M\n\natt" + - "ributes\030\001 \003(\01329.flyteidl.admin.ClusterRe" + - "sourceAttributes.AttributesEntry\0321\n\017Attr" + - "ibutesEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:" + - "\0028\001\"(\n\030ExecutionQueueAttributes\022\014\n\004tags\030" + - "\001 \003(\t\"&\n\025ExecutionClusterLabel\022\r\n\005value\030" + - "\001 \001(\t\"\301\001\n\016PluginOverride\022\021\n\ttask_type\030\001 " + - "\001(\t\022\021\n\tplugin_id\030\002 \003(\t\022U\n\027missing_plugin" + - "_behavior\030\004 \001(\01624.flyteidl.admin.PluginO" + - "verride.MissingPluginBehavior\"2\n\025Missing" + - "PluginBehavior\022\010\n\004FAIL\020\000\022\017\n\013USE_DEFAULT\020" + - "\001\"D\n\017PluginOverrides\0221\n\toverrides\030\001 \003(\0132" + - "\036.flyteidl.admin.PluginOverride\"2\n\027Workf" + - "lowExecutionConfig\022\027\n\017max_parallelism\030\001 " + - "\001(\005\"\341\004\n\022MatchingAttributes\022J\n\030task_resou" + - "rce_attributes\030\001 \001(\0132&.flyteidl.admin.Ta" + - "skResourceAttributesH\000\022P\n\033cluster_resour" + - "ce_attributes\030\002 \001(\0132).flyteidl.admin.Clu" + - "sterResourceAttributesH\000\022N\n\032execution_qu" + - "eue_attributes\030\003 \001(\0132(.flyteidl.admin.Ex" + - "ecutionQueueAttributesH\000\022H\n\027execution_cl" + - "uster_label\030\004 \001(\0132%.flyteidl.admin.Execu" + - "tionClusterLabelH\000\022=\n\022quality_of_service" + - "\030\005 \001(\0132\037.flyteidl.core.QualityOfServiceH" + - "\000\022;\n\020plugin_overrides\030\006 \001(\0132\037.flyteidl.a" + - "dmin.PluginOverridesH\000\022L\n\031workflow_execu" + - "tion_config\030\007 \001(\0132\'.flyteidl.admin.Workf" + - "lowExecutionConfigH\000\022?\n\022cluster_assignme" + - "nt\030\010 \001(\0132!.flyteidl.admin.ClusterAssignm" + - "entH\000B\010\n\006target\"\242\001\n MatchableAttributesC" + - "onfiguration\0226\n\nattributes\030\001 \001(\0132\".flyte" + - "idl.admin.MatchingAttributes\022\016\n\006domain\030\002" + - " \001(\t\022\017\n\007project\030\003 \001(\t\022\020\n\010workflow\030\004 \001(\t\022" + - "\023\n\013launch_plan\030\005 \001(\t\"Z\n\036ListMatchableAtt" + - "ributesRequest\0228\n\rresource_type\030\001 \001(\0162!." + - "flyteidl.admin.MatchableResource\"k\n\037List" + - "MatchableAttributesResponse\022H\n\016configura" + - "tions\030\001 \003(\01320.flyteidl.admin.MatchableAt" + - "tributesConfiguration*\340\001\n\021MatchableResou" + - "rce\022\021\n\rTASK_RESOURCE\020\000\022\024\n\020CLUSTER_RESOUR" + - "CE\020\001\022\023\n\017EXECUTION_QUEUE\020\002\022\033\n\027EXECUTION_C" + - "LUSTER_LABEL\020\003\022$\n QUALITY_OF_SERVICE_SPE" + - "CIFICATION\020\004\022\023\n\017PLUGIN_OVERRIDE\020\005\022\035\n\031WOR" + - "KFLOW_EXECUTION_CONFIG\020\006\022\026\n\022CLUSTER_ASSI" + - "GNMENT\020\007B7Z5github.com/flyteorg/flyteidl" + - "/gen/pb-go/flyteidl/adminb\006proto3" + "o\022\016flyteidl.admin\032\033flyteidl/admin/common" + + ".proto\032\'flyteidl/admin/cluster_assignmen" + + "t.proto\032\035flyteidl/core/execution.proto\032\034" + + "flyteidl/core/security.proto\"h\n\020TaskReso" + + "urceSpec\022\013\n\003cpu\030\001 \001(\t\022\013\n\003gpu\030\002 \001(\t\022\016\n\006me" + + "mory\030\003 \001(\t\022\017\n\007storage\030\004 \001(\t\022\031\n\021ephemeral" + + "_storage\030\005 \001(\t\"~\n\026TaskResourceAttributes" + + "\0222\n\010defaults\030\001 \001(\0132 .flyteidl.admin.Task" + + "ResourceSpec\0220\n\006limits\030\002 \001(\0132 .flyteidl." + + "admin.TaskResourceSpec\"\235\001\n\031ClusterResour" + + "ceAttributes\022M\n\nattributes\030\001 \003(\01329.flyte" + + "idl.admin.ClusterResourceAttributes.Attr" + + "ibutesEntry\0321\n\017AttributesEntry\022\013\n\003key\030\001 " + + "\001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"(\n\030ExecutionQueue" + + "Attributes\022\014\n\004tags\030\001 \003(\t\"&\n\025ExecutionClu" + + "sterLabel\022\r\n\005value\030\001 \001(\t\"\301\001\n\016PluginOverr" + + "ide\022\021\n\ttask_type\030\001 \001(\t\022\021\n\tplugin_id\030\002 \003(" + + "\t\022U\n\027missing_plugin_behavior\030\004 \001(\01624.fly" + + "teidl.admin.PluginOverride.MissingPlugin" + + "Behavior\"2\n\025MissingPluginBehavior\022\010\n\004FAI" + + "L\020\000\022\017\n\013USE_DEFAULT\020\001\"D\n\017PluginOverrides\022" + + "1\n\toverrides\030\001 \003(\0132\036.flyteidl.admin.Plug" + + "inOverride\"\213\002\n\027WorkflowExecutionConfig\022\027" + + "\n\017max_parallelism\030\001 \001(\005\0228\n\020security_cont" + + "ext\030\002 \001(\0132\036.flyteidl.core.SecurityContex" + + "t\022C\n\026raw_output_data_config\030\003 \001(\0132#.flyt" + + "eidl.admin.RawOutputDataConfig\022&\n\006labels" + + "\030\004 \001(\0132\026.flyteidl.admin.Labels\0220\n\013annota" + + "tions\030\005 \001(\0132\033.flyteidl.admin.Annotations" + + "\"\341\004\n\022MatchingAttributes\022J\n\030task_resource" + + "_attributes\030\001 \001(\0132&.flyteidl.admin.TaskR" + + "esourceAttributesH\000\022P\n\033cluster_resource_" + + "attributes\030\002 \001(\0132).flyteidl.admin.Cluste" + + "rResourceAttributesH\000\022N\n\032execution_queue" + + "_attributes\030\003 \001(\0132(.flyteidl.admin.Execu" + + "tionQueueAttributesH\000\022H\n\027execution_clust" + + "er_label\030\004 \001(\0132%.flyteidl.admin.Executio" + + "nClusterLabelH\000\022=\n\022quality_of_service\030\005 " + + "\001(\0132\037.flyteidl.core.QualityOfServiceH\000\022;" + + "\n\020plugin_overrides\030\006 \001(\0132\037.flyteidl.admi" + + "n.PluginOverridesH\000\022L\n\031workflow_executio" + + "n_config\030\007 \001(\0132\'.flyteidl.admin.Workflow" + + "ExecutionConfigH\000\022?\n\022cluster_assignment\030" + + "\010 \001(\0132!.flyteidl.admin.ClusterAssignment" + + "H\000B\010\n\006target\"\242\001\n MatchableAttributesConf" + + "iguration\0226\n\nattributes\030\001 \001(\0132\".flyteidl" + + ".admin.MatchingAttributes\022\016\n\006domain\030\002 \001(" + + "\t\022\017\n\007project\030\003 \001(\t\022\020\n\010workflow\030\004 \001(\t\022\023\n\013" + + "launch_plan\030\005 \001(\t\"Z\n\036ListMatchableAttrib" + + "utesRequest\0228\n\rresource_type\030\001 \001(\0162!.fly" + + "teidl.admin.MatchableResource\"k\n\037ListMat" + + "chableAttributesResponse\022H\n\016configuratio" + + "ns\030\001 \003(\01320.flyteidl.admin.MatchableAttri" + + "butesConfiguration*\340\001\n\021MatchableResource" + + "\022\021\n\rTASK_RESOURCE\020\000\022\024\n\020CLUSTER_RESOURCE\020" + + "\001\022\023\n\017EXECUTION_QUEUE\020\002\022\033\n\027EXECUTION_CLUS" + + "TER_LABEL\020\003\022$\n QUALITY_OF_SERVICE_SPECIF" + + "ICATION\020\004\022\023\n\017PLUGIN_OVERRIDE\020\005\022\035\n\031WORKFL" + + "OW_EXECUTION_CONFIG\020\006\022\026\n\022CLUSTER_ASSIGNM" + + "ENT\020\007B7Z5github.com/flyteorg/flyteidl/ge" + + "n/pb-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -11483,8 +12506,10 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { + flyteidl.admin.Common.getDescriptor(), flyteidl.admin.ClusterAssignmentOuterClass.getDescriptor(), flyteidl.core.Execution.getDescriptor(), + flyteidl.core.Security.getDescriptor(), }, assigner); internal_static_flyteidl_admin_TaskResourceSpec_descriptor = getDescriptor().getMessageTypes().get(0); @@ -11539,7 +12564,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_admin_WorkflowExecutionConfig_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_WorkflowExecutionConfig_descriptor, - new java.lang.String[] { "MaxParallelism", }); + new java.lang.String[] { "MaxParallelism", "SecurityContext", "RawOutputDataConfig", "Labels", "Annotations", }); internal_static_flyteidl_admin_MatchingAttributes_descriptor = getDescriptor().getMessageTypes().get(8); internal_static_flyteidl_admin_MatchingAttributes_fieldAccessorTable = new @@ -11564,8 +12589,10 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_ListMatchableAttributesResponse_descriptor, new java.lang.String[] { "Configurations", }); + flyteidl.admin.Common.getDescriptor(); flyteidl.admin.ClusterAssignmentOuterClass.getDescriptor(); flyteidl.core.Execution.getDescriptor(); + flyteidl.core.Security.getDescriptor(); } // @@protoc_insertion_point(outer_class_scope) diff --git a/flyteidl/gen/pb-js/flyteidl.d.ts b/flyteidl/gen/pb-js/flyteidl.d.ts index 6bb2085172..9d462a295d 100644 --- a/flyteidl/gen/pb-js/flyteidl.d.ts +++ b/flyteidl/gen/pb-js/flyteidl.d.ts @@ -11802,6 +11802,18 @@ export namespace flyteidl { /** WorkflowExecutionConfig maxParallelism */ maxParallelism?: (number|null); + + /** WorkflowExecutionConfig securityContext */ + securityContext?: (flyteidl.core.ISecurityContext|null); + + /** WorkflowExecutionConfig rawOutputDataConfig */ + rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null); + + /** WorkflowExecutionConfig labels */ + labels?: (flyteidl.admin.ILabels|null); + + /** WorkflowExecutionConfig annotations */ + annotations?: (flyteidl.admin.IAnnotations|null); } /** Represents a WorkflowExecutionConfig. */ @@ -11816,6 +11828,18 @@ export namespace flyteidl { /** WorkflowExecutionConfig maxParallelism. */ public maxParallelism: number; + /** WorkflowExecutionConfig securityContext. */ + public securityContext?: (flyteidl.core.ISecurityContext|null); + + /** WorkflowExecutionConfig rawOutputDataConfig. */ + public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null); + + /** WorkflowExecutionConfig labels. */ + public labels?: (flyteidl.admin.ILabels|null); + + /** WorkflowExecutionConfig annotations. */ + public annotations?: (flyteidl.admin.IAnnotations|null); + /** * Creates a new WorkflowExecutionConfig instance using the specified properties. * @param [properties] Properties to set diff --git a/flyteidl/gen/pb-js/flyteidl.js b/flyteidl/gen/pb-js/flyteidl.js index c7e20472db..f71e3281f4 100644 --- a/flyteidl/gen/pb-js/flyteidl.js +++ b/flyteidl/gen/pb-js/flyteidl.js @@ -28184,6 +28184,10 @@ export const flyteidl = $root.flyteidl = (() => { * @memberof flyteidl.admin * @interface IWorkflowExecutionConfig * @property {number|null} [maxParallelism] WorkflowExecutionConfig maxParallelism + * @property {flyteidl.core.ISecurityContext|null} [securityContext] WorkflowExecutionConfig securityContext + * @property {flyteidl.admin.IRawOutputDataConfig|null} [rawOutputDataConfig] WorkflowExecutionConfig rawOutputDataConfig + * @property {flyteidl.admin.ILabels|null} [labels] WorkflowExecutionConfig labels + * @property {flyteidl.admin.IAnnotations|null} [annotations] WorkflowExecutionConfig annotations */ /** @@ -28209,6 +28213,38 @@ export const flyteidl = $root.flyteidl = (() => { */ WorkflowExecutionConfig.prototype.maxParallelism = 0; + /** + * WorkflowExecutionConfig securityContext. + * @member {flyteidl.core.ISecurityContext|null|undefined} securityContext + * @memberof flyteidl.admin.WorkflowExecutionConfig + * @instance + */ + WorkflowExecutionConfig.prototype.securityContext = null; + + /** + * WorkflowExecutionConfig rawOutputDataConfig. + * @member {flyteidl.admin.IRawOutputDataConfig|null|undefined} rawOutputDataConfig + * @memberof flyteidl.admin.WorkflowExecutionConfig + * @instance + */ + WorkflowExecutionConfig.prototype.rawOutputDataConfig = null; + + /** + * WorkflowExecutionConfig labels. + * @member {flyteidl.admin.ILabels|null|undefined} labels + * @memberof flyteidl.admin.WorkflowExecutionConfig + * @instance + */ + WorkflowExecutionConfig.prototype.labels = null; + + /** + * WorkflowExecutionConfig annotations. + * @member {flyteidl.admin.IAnnotations|null|undefined} annotations + * @memberof flyteidl.admin.WorkflowExecutionConfig + * @instance + */ + WorkflowExecutionConfig.prototype.annotations = null; + /** * Creates a new WorkflowExecutionConfig instance using the specified properties. * @function create @@ -28235,6 +28271,14 @@ export const flyteidl = $root.flyteidl = (() => { writer = $Writer.create(); if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) writer.uint32(/* id 1, wireType 0 =*/8).int32(message.maxParallelism); + if (message.securityContext != null && message.hasOwnProperty("securityContext")) + $root.flyteidl.core.SecurityContext.encode(message.securityContext, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim(); + if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) + $root.flyteidl.admin.RawOutputDataConfig.encode(message.rawOutputDataConfig, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); + if (message.labels != null && message.hasOwnProperty("labels")) + $root.flyteidl.admin.Labels.encode(message.labels, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); + if (message.annotations != null && message.hasOwnProperty("annotations")) + $root.flyteidl.admin.Annotations.encode(message.annotations, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); return writer; }; @@ -28259,6 +28303,18 @@ export const flyteidl = $root.flyteidl = (() => { case 1: message.maxParallelism = reader.int32(); break; + case 2: + message.securityContext = $root.flyteidl.core.SecurityContext.decode(reader, reader.uint32()); + break; + case 3: + message.rawOutputDataConfig = $root.flyteidl.admin.RawOutputDataConfig.decode(reader, reader.uint32()); + break; + case 4: + message.labels = $root.flyteidl.admin.Labels.decode(reader, reader.uint32()); + break; + case 5: + message.annotations = $root.flyteidl.admin.Annotations.decode(reader, reader.uint32()); + break; default: reader.skipType(tag & 7); break; @@ -28281,6 +28337,26 @@ export const flyteidl = $root.flyteidl = (() => { if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism")) if (!$util.isInteger(message.maxParallelism)) return "maxParallelism: integer expected"; + if (message.securityContext != null && message.hasOwnProperty("securityContext")) { + let error = $root.flyteidl.core.SecurityContext.verify(message.securityContext); + if (error) + return "securityContext." + error; + } + if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) { + let error = $root.flyteidl.admin.RawOutputDataConfig.verify(message.rawOutputDataConfig); + if (error) + return "rawOutputDataConfig." + error; + } + if (message.labels != null && message.hasOwnProperty("labels")) { + let error = $root.flyteidl.admin.Labels.verify(message.labels); + if (error) + return "labels." + error; + } + if (message.annotations != null && message.hasOwnProperty("annotations")) { + let error = $root.flyteidl.admin.Annotations.verify(message.annotations); + if (error) + return "annotations." + error; + } return null; }; diff --git a/flyteidl/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py index 5656cfb729..b281e965a4 100644 --- a/flyteidl/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py @@ -14,8 +14,10 @@ _sym_db = _symbol_database.Default() +from flyteidl.admin import common_pb2 as flyteidl_dot_admin_dot_common__pb2 from flyteidl.admin import cluster_assignment_pb2 as flyteidl_dot_admin_dot_cluster__assignment__pb2 from flyteidl.core import execution_pb2 as flyteidl_dot_core_dot_execution__pb2 +from flyteidl.core import security_pb2 as flyteidl_dot_core_dot_security__pb2 DESCRIPTOR = _descriptor.FileDescriptor( @@ -23,9 +25,9 @@ package='flyteidl.admin', syntax='proto3', serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\'flyteidl/admin/matchable_resource.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/cluster_assignment.proto\x1a\x1d\x66lyteidl/core/execution.proto\"h\n\x10TaskResourceSpec\x12\x0b\n\x03\x63pu\x18\x01 \x01(\t\x12\x0b\n\x03gpu\x18\x02 \x01(\t\x12\x0e\n\x06memory\x18\x03 \x01(\t\x12\x0f\n\x07storage\x18\x04 \x01(\t\x12\x19\n\x11\x65phemeral_storage\x18\x05 \x01(\t\"~\n\x16TaskResourceAttributes\x12\x32\n\x08\x64\x65\x66\x61ults\x18\x01 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\x12\x30\n\x06limits\x18\x02 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\"\x9d\x01\n\x19\x43lusterResourceAttributes\x12M\n\nattributes\x18\x01 \x03(\x0b\x32\x39.flyteidl.admin.ClusterResourceAttributes.AttributesEntry\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"(\n\x18\x45xecutionQueueAttributes\x12\x0c\n\x04tags\x18\x01 \x03(\t\"&\n\x15\x45xecutionClusterLabel\x12\r\n\x05value\x18\x01 \x01(\t\"\xc1\x01\n\x0ePluginOverride\x12\x11\n\ttask_type\x18\x01 \x01(\t\x12\x11\n\tplugin_id\x18\x02 \x03(\t\x12U\n\x17missing_plugin_behavior\x18\x04 \x01(\x0e\x32\x34.flyteidl.admin.PluginOverride.MissingPluginBehavior\"2\n\x15MissingPluginBehavior\x12\x08\n\x04\x46\x41IL\x10\x00\x12\x0f\n\x0bUSE_DEFAULT\x10\x01\"D\n\x0fPluginOverrides\x12\x31\n\toverrides\x18\x01 \x03(\x0b\x32\x1e.flyteidl.admin.PluginOverride\"2\n\x17WorkflowExecutionConfig\x12\x17\n\x0fmax_parallelism\x18\x01 \x01(\x05\"\xe1\x04\n\x12MatchingAttributes\x12J\n\x18task_resource_attributes\x18\x01 \x01(\x0b\x32&.flyteidl.admin.TaskResourceAttributesH\x00\x12P\n\x1b\x63luster_resource_attributes\x18\x02 \x01(\x0b\x32).flyteidl.admin.ClusterResourceAttributesH\x00\x12N\n\x1a\x65xecution_queue_attributes\x18\x03 \x01(\x0b\x32(.flyteidl.admin.ExecutionQueueAttributesH\x00\x12H\n\x17\x65xecution_cluster_label\x18\x04 \x01(\x0b\x32%.flyteidl.admin.ExecutionClusterLabelH\x00\x12=\n\x12quality_of_service\x18\x05 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceH\x00\x12;\n\x10plugin_overrides\x18\x06 \x01(\x0b\x32\x1f.flyteidl.admin.PluginOverridesH\x00\x12L\n\x19workflow_execution_config\x18\x07 \x01(\x0b\x32\'.flyteidl.admin.WorkflowExecutionConfigH\x00\x12?\n\x12\x63luster_assignment\x18\x08 \x01(\x0b\x32!.flyteidl.admin.ClusterAssignmentH\x00\x42\x08\n\x06target\"\xa2\x01\n MatchableAttributesConfiguration\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\x12\x10\n\x08workflow\x18\x04 \x01(\t\x12\x13\n\x0blaunch_plan\x18\x05 \x01(\t\"Z\n\x1eListMatchableAttributesRequest\x12\x38\n\rresource_type\x18\x01 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"k\n\x1fListMatchableAttributesResponse\x12H\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32\x30.flyteidl.admin.MatchableAttributesConfiguration*\xe0\x01\n\x11MatchableResource\x12\x11\n\rTASK_RESOURCE\x10\x00\x12\x14\n\x10\x43LUSTER_RESOURCE\x10\x01\x12\x13\n\x0f\x45XECUTION_QUEUE\x10\x02\x12\x1b\n\x17\x45XECUTION_CLUSTER_LABEL\x10\x03\x12$\n QUALITY_OF_SERVICE_SPECIFICATION\x10\x04\x12\x13\n\x0fPLUGIN_OVERRIDE\x10\x05\x12\x1d\n\x19WORKFLOW_EXECUTION_CONFIG\x10\x06\x12\x16\n\x12\x43LUSTER_ASSIGNMENT\x10\x07\x42\x37Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_pb=_b('\n\'flyteidl/admin/matchable_resource.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\'flyteidl/admin/cluster_assignment.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1c\x66lyteidl/core/security.proto\"h\n\x10TaskResourceSpec\x12\x0b\n\x03\x63pu\x18\x01 \x01(\t\x12\x0b\n\x03gpu\x18\x02 \x01(\t\x12\x0e\n\x06memory\x18\x03 \x01(\t\x12\x0f\n\x07storage\x18\x04 \x01(\t\x12\x19\n\x11\x65phemeral_storage\x18\x05 \x01(\t\"~\n\x16TaskResourceAttributes\x12\x32\n\x08\x64\x65\x66\x61ults\x18\x01 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\x12\x30\n\x06limits\x18\x02 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\"\x9d\x01\n\x19\x43lusterResourceAttributes\x12M\n\nattributes\x18\x01 \x03(\x0b\x32\x39.flyteidl.admin.ClusterResourceAttributes.AttributesEntry\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"(\n\x18\x45xecutionQueueAttributes\x12\x0c\n\x04tags\x18\x01 \x03(\t\"&\n\x15\x45xecutionClusterLabel\x12\r\n\x05value\x18\x01 \x01(\t\"\xc1\x01\n\x0ePluginOverride\x12\x11\n\ttask_type\x18\x01 \x01(\t\x12\x11\n\tplugin_id\x18\x02 \x03(\t\x12U\n\x17missing_plugin_behavior\x18\x04 \x01(\x0e\x32\x34.flyteidl.admin.PluginOverride.MissingPluginBehavior\"2\n\x15MissingPluginBehavior\x12\x08\n\x04\x46\x41IL\x10\x00\x12\x0f\n\x0bUSE_DEFAULT\x10\x01\"D\n\x0fPluginOverrides\x12\x31\n\toverrides\x18\x01 \x03(\x0b\x32\x1e.flyteidl.admin.PluginOverride\"\x8b\x02\n\x17WorkflowExecutionConfig\x12\x17\n\x0fmax_parallelism\x18\x01 \x01(\x05\x12\x38\n\x10security_context\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.SecurityContext\x12\x43\n\x16raw_output_data_config\x18\x03 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfig\x12&\n\x06labels\x18\x04 \x01(\x0b\x32\x16.flyteidl.admin.Labels\x12\x30\n\x0b\x61nnotations\x18\x05 \x01(\x0b\x32\x1b.flyteidl.admin.Annotations\"\xe1\x04\n\x12MatchingAttributes\x12J\n\x18task_resource_attributes\x18\x01 \x01(\x0b\x32&.flyteidl.admin.TaskResourceAttributesH\x00\x12P\n\x1b\x63luster_resource_attributes\x18\x02 \x01(\x0b\x32).flyteidl.admin.ClusterResourceAttributesH\x00\x12N\n\x1a\x65xecution_queue_attributes\x18\x03 \x01(\x0b\x32(.flyteidl.admin.ExecutionQueueAttributesH\x00\x12H\n\x17\x65xecution_cluster_label\x18\x04 \x01(\x0b\x32%.flyteidl.admin.ExecutionClusterLabelH\x00\x12=\n\x12quality_of_service\x18\x05 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceH\x00\x12;\n\x10plugin_overrides\x18\x06 \x01(\x0b\x32\x1f.flyteidl.admin.PluginOverridesH\x00\x12L\n\x19workflow_execution_config\x18\x07 \x01(\x0b\x32\'.flyteidl.admin.WorkflowExecutionConfigH\x00\x12?\n\x12\x63luster_assignment\x18\x08 \x01(\x0b\x32!.flyteidl.admin.ClusterAssignmentH\x00\x42\x08\n\x06target\"\xa2\x01\n MatchableAttributesConfiguration\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\x12\x10\n\x08workflow\x18\x04 \x01(\t\x12\x13\n\x0blaunch_plan\x18\x05 \x01(\t\"Z\n\x1eListMatchableAttributesRequest\x12\x38\n\rresource_type\x18\x01 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"k\n\x1fListMatchableAttributesResponse\x12H\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32\x30.flyteidl.admin.MatchableAttributesConfiguration*\xe0\x01\n\x11MatchableResource\x12\x11\n\rTASK_RESOURCE\x10\x00\x12\x14\n\x10\x43LUSTER_RESOURCE\x10\x01\x12\x13\n\x0f\x45XECUTION_QUEUE\x10\x02\x12\x1b\n\x17\x45XECUTION_CLUSTER_LABEL\x10\x03\x12$\n QUALITY_OF_SERVICE_SPECIFICATION\x10\x04\x12\x13\n\x0fPLUGIN_OVERRIDE\x10\x05\x12\x1d\n\x19WORKFLOW_EXECUTION_CONFIG\x10\x06\x12\x16\n\x12\x43LUSTER_ASSIGNMENT\x10\x07\x42\x37Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , - dependencies=[flyteidl_dot_admin_dot_cluster__assignment__pb2.DESCRIPTOR,flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,]) + dependencies=[flyteidl_dot_admin_dot_common__pb2.DESCRIPTOR,flyteidl_dot_admin_dot_cluster__assignment__pb2.DESCRIPTOR,flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_security__pb2.DESCRIPTOR,]) _MATCHABLERESOURCE = _descriptor.EnumDescriptor( name='MatchableResource', @@ -68,8 +70,8 @@ ], containing_type=None, serialized_options=None, - serialized_start=1904, - serialized_end=2128, + serialized_start=2181, + serialized_end=2405, ) _sym_db.RegisterEnumDescriptor(_MATCHABLERESOURCE) @@ -101,8 +103,8 @@ ], containing_type=None, serialized_options=None, - serialized_start=751, - serialized_end=801, + serialized_start=810, + serialized_end=860, ) _sym_db.RegisterEnumDescriptor(_PLUGINOVERRIDE_MISSINGPLUGINBEHAVIOR) @@ -161,8 +163,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=131, - serialized_end=235, + serialized_start=190, + serialized_end=294, ) @@ -199,8 +201,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=237, - serialized_end=363, + serialized_start=296, + serialized_end=422, ) @@ -237,8 +239,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=474, - serialized_end=523, + serialized_start=533, + serialized_end=582, ) _CLUSTERRESOURCEATTRIBUTES = _descriptor.Descriptor( @@ -267,8 +269,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=366, - serialized_end=523, + serialized_start=425, + serialized_end=582, ) @@ -298,8 +300,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=525, - serialized_end=565, + serialized_start=584, + serialized_end=624, ) @@ -329,8 +331,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=567, - serialized_end=605, + serialized_start=626, + serialized_end=664, ) @@ -375,8 +377,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=608, - serialized_end=801, + serialized_start=667, + serialized_end=860, ) @@ -406,8 +408,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=803, - serialized_end=871, + serialized_start=862, + serialized_end=930, ) @@ -425,6 +427,34 @@ message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='security_context', full_name='flyteidl.admin.WorkflowExecutionConfig.security_context', index=1, + number=2, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='raw_output_data_config', full_name='flyteidl.admin.WorkflowExecutionConfig.raw_output_data_config', index=2, + number=3, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='labels', full_name='flyteidl.admin.WorkflowExecutionConfig.labels', index=3, + number=4, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), + _descriptor.FieldDescriptor( + name='annotations', full_name='flyteidl.admin.WorkflowExecutionConfig.annotations', index=4, + number=5, type=11, cpp_type=10, label=1, + has_default_value=False, default_value=None, + message_type=None, enum_type=None, containing_type=None, + is_extension=False, extension_scope=None, + serialized_options=None, file=DESCRIPTOR), ], extensions=[ ], @@ -437,8 +467,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=873, - serialized_end=923, + serialized_start=933, + serialized_end=1200, ) @@ -520,8 +550,8 @@ name='target', full_name='flyteidl.admin.MatchingAttributes.target', index=0, containing_type=None, fields=[]), ], - serialized_start=926, - serialized_end=1535, + serialized_start=1203, + serialized_end=1812, ) @@ -579,8 +609,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1538, - serialized_end=1700, + serialized_start=1815, + serialized_end=1977, ) @@ -610,8 +640,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1702, - serialized_end=1792, + serialized_start=1979, + serialized_end=2069, ) @@ -641,8 +671,8 @@ extension_ranges=[], oneofs=[ ], - serialized_start=1794, - serialized_end=1901, + serialized_start=2071, + serialized_end=2178, ) _TASKRESOURCEATTRIBUTES.fields_by_name['defaults'].message_type = _TASKRESOURCESPEC @@ -652,6 +682,10 @@ _PLUGINOVERRIDE.fields_by_name['missing_plugin_behavior'].enum_type = _PLUGINOVERRIDE_MISSINGPLUGINBEHAVIOR _PLUGINOVERRIDE_MISSINGPLUGINBEHAVIOR.containing_type = _PLUGINOVERRIDE _PLUGINOVERRIDES.fields_by_name['overrides'].message_type = _PLUGINOVERRIDE +_WORKFLOWEXECUTIONCONFIG.fields_by_name['security_context'].message_type = flyteidl_dot_core_dot_security__pb2._SECURITYCONTEXT +_WORKFLOWEXECUTIONCONFIG.fields_by_name['raw_output_data_config'].message_type = flyteidl_dot_admin_dot_common__pb2._RAWOUTPUTDATACONFIG +_WORKFLOWEXECUTIONCONFIG.fields_by_name['labels'].message_type = flyteidl_dot_admin_dot_common__pb2._LABELS +_WORKFLOWEXECUTIONCONFIG.fields_by_name['annotations'].message_type = flyteidl_dot_admin_dot_common__pb2._ANNOTATIONS _MATCHINGATTRIBUTES.fields_by_name['task_resource_attributes'].message_type = _TASKRESOURCEATTRIBUTES _MATCHINGATTRIBUTES.fields_by_name['cluster_resource_attributes'].message_type = _CLUSTERRESOURCEATTRIBUTES _MATCHINGATTRIBUTES.fields_by_name['execution_queue_attributes'].message_type = _EXECUTIONQUEUEATTRIBUTES diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_execution_config.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_execution_config.py index 381d353efb..0683ca96d2 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_execution_config.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_workflow_execution_config.py @@ -16,6 +16,11 @@ import six +from flyteadmin.models.admin_annotations import AdminAnnotations # noqa: F401,E501 +from flyteadmin.models.admin_labels import AdminLabels # noqa: F401,E501 +from flyteadmin.models.admin_raw_output_data_config import AdminRawOutputDataConfig # noqa: F401,E501 +from flyteadmin.models.core_security_context import CoreSecurityContext # noqa: F401,E501 + class AdminWorkflowExecutionConfig(object): """NOTE: This class is auto generated by the swagger code generator program. @@ -31,21 +36,41 @@ class AdminWorkflowExecutionConfig(object): and the value is json key in definition. """ swagger_types = { - 'max_parallelism': 'int' + 'max_parallelism': 'int', + 'security_context': 'CoreSecurityContext', + 'raw_output_data_config': 'AdminRawOutputDataConfig', + 'labels': 'AdminLabels', + 'annotations': 'AdminAnnotations' } attribute_map = { - 'max_parallelism': 'max_parallelism' + 'max_parallelism': 'max_parallelism', + 'security_context': 'security_context', + 'raw_output_data_config': 'raw_output_data_config', + 'labels': 'labels', + 'annotations': 'annotations' } - def __init__(self, max_parallelism=None): # noqa: E501 + def __init__(self, max_parallelism=None, security_context=None, raw_output_data_config=None, labels=None, annotations=None): # noqa: E501 """AdminWorkflowExecutionConfig - a model defined in Swagger""" # noqa: E501 self._max_parallelism = None + self._security_context = None + self._raw_output_data_config = None + self._labels = None + self._annotations = None self.discriminator = None if max_parallelism is not None: self.max_parallelism = max_parallelism + if security_context is not None: + self.security_context = security_context + if raw_output_data_config is not None: + self.raw_output_data_config = raw_output_data_config + if labels is not None: + self.labels = labels + if annotations is not None: + self.annotations = annotations @property def max_parallelism(self): @@ -70,6 +95,98 @@ def max_parallelism(self, max_parallelism): self._max_parallelism = max_parallelism + @property + def security_context(self): + """Gets the security_context of this AdminWorkflowExecutionConfig. # noqa: E501 + + Indicates security context permissions for executions triggered with this matchable attribute. # noqa: E501 + + :return: The security_context of this AdminWorkflowExecutionConfig. # noqa: E501 + :rtype: CoreSecurityContext + """ + return self._security_context + + @security_context.setter + def security_context(self, security_context): + """Sets the security_context of this AdminWorkflowExecutionConfig. + + Indicates security context permissions for executions triggered with this matchable attribute. # noqa: E501 + + :param security_context: The security_context of this AdminWorkflowExecutionConfig. # noqa: E501 + :type: CoreSecurityContext + """ + + self._security_context = security_context + + @property + def raw_output_data_config(self): + """Gets the raw_output_data_config of this AdminWorkflowExecutionConfig. # noqa: E501 + + Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.). # noqa: E501 + + :return: The raw_output_data_config of this AdminWorkflowExecutionConfig. # noqa: E501 + :rtype: AdminRawOutputDataConfig + """ + return self._raw_output_data_config + + @raw_output_data_config.setter + def raw_output_data_config(self, raw_output_data_config): + """Sets the raw_output_data_config of this AdminWorkflowExecutionConfig. + + Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.). # noqa: E501 + + :param raw_output_data_config: The raw_output_data_config of this AdminWorkflowExecutionConfig. # noqa: E501 + :type: AdminRawOutputDataConfig + """ + + self._raw_output_data_config = raw_output_data_config + + @property + def labels(self): + """Gets the labels of this AdminWorkflowExecutionConfig. # noqa: E501 + + Custom labels to be applied to a triggered execution resource. # noqa: E501 + + :return: The labels of this AdminWorkflowExecutionConfig. # noqa: E501 + :rtype: AdminLabels + """ + return self._labels + + @labels.setter + def labels(self, labels): + """Sets the labels of this AdminWorkflowExecutionConfig. + + Custom labels to be applied to a triggered execution resource. # noqa: E501 + + :param labels: The labels of this AdminWorkflowExecutionConfig. # noqa: E501 + :type: AdminLabels + """ + + self._labels = labels + + @property + def annotations(self): + """Gets the annotations of this AdminWorkflowExecutionConfig. # noqa: E501 + + Custom annotations to be applied to a triggered execution resource. # noqa: E501 + + :return: The annotations of this AdminWorkflowExecutionConfig. # noqa: E501 + :rtype: AdminAnnotations + """ + return self._annotations + + @annotations.setter + def annotations(self, annotations): + """Sets the annotations of this AdminWorkflowExecutionConfig. + + Custom annotations to be applied to a triggered execution resource. # noqa: E501 + + :param annotations: The annotations of this AdminWorkflowExecutionConfig. # noqa: E501 + :type: AdminAnnotations + """ + + self._annotations = annotations + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/flyteidl/protos/flyteidl/admin/matchable_resource.proto b/flyteidl/protos/flyteidl/admin/matchable_resource.proto index 45c545ce40..1e6e039049 100644 --- a/flyteidl/protos/flyteidl/admin/matchable_resource.proto +++ b/flyteidl/protos/flyteidl/admin/matchable_resource.proto @@ -3,8 +3,10 @@ syntax = "proto3"; package flyteidl.admin; option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; +import "flyteidl/admin/common.proto"; import "flyteidl/admin/cluster_assignment.proto"; import "flyteidl/core/execution.proto"; +import "flyteidl/core/security.proto"; // Defines a resource that can be configured by customizable Project-, ProjectDomain- or WorkflowAttributes // based on matching tags. @@ -102,6 +104,18 @@ message PluginOverrides { message WorkflowExecutionConfig { // Can be used to control the number of parallel nodes to run within the workflow. This is useful to achieve fairness. int32 max_parallelism = 1; + + // Indicates security context permissions for executions triggered with this matchable attribute. + core.SecurityContext security_context = 2; + + // Encapsulates user settings pertaining to offloaded data (i.e. Blobs, Schema, query data, etc.). + RawOutputDataConfig raw_output_data_config = 3; + + // Custom labels to be applied to a triggered execution resource. + Labels labels = 4; + + // Custom annotations to be applied to a triggered execution resource. + Annotations annotations = 5; } // Generic container for encapsulating all types of the above attributes messages.