From f0e5c08c601de6184921e19338642d0253ed1d42 Mon Sep 17 00:00:00 2001 From: Yee Hing Tong Date: Tue, 16 Jan 2024 14:42:40 -0800 Subject: [PATCH] test changes to time partition Signed-off-by: Yee Hing Tong update idl Signed-off-by: Yee Hing Tong make execution manager changes Signed-off-by: Yee Hing Tong rename field Signed-off-by: Yee Hing Tong --- .../pkg/manager/impl/execution_manager.go | 80 +- .../manager/impl/execution_manager_test.go | 91 + .../gen/pb-cpp/flyteidl/admin/execution.pb.cc | 2 +- .../pb-cpp/flyteidl/artifact/artifacts.pb.cc | 745 ++++-- .../pb-cpp/flyteidl/artifact/artifacts.pb.h | 311 ++- .../pb-cpp/flyteidl/core/artifact_id.pb.cc | 868 +++++-- .../gen/pb-cpp/flyteidl/core/artifact_id.pb.h | 580 ++++- .../gen/pb-cpp/flyteidl/core/interface.pb.cc | 2 +- .../pb-cpp/flyteidl/event/cloudevents.pb.cc | 2 +- .../pb-go/flyteidl/artifact/artifacts.pb.go | 293 +-- .../flyteidl/artifact/artifacts.swagger.json | 92 +- .../gen/pb-go/flyteidl/core/artifact_id.pb.go | 250 +- .../pb-go/flyteidl/service/admin.swagger.json | 33 +- .../pb-go/flyteidl/service/agent.swagger.json | 33 +- .../external_plugin_service.swagger.json | 33 +- .../flyteidl/service/flyteadmin/README.md | 1 + .../service/flyteadmin/api/swagger.yaml | 2049 +++++++++++++++- .../model_core_artifact_binding_data.go | 1 + .../flyteadmin/model_core_artifact_id.go | 3 + .../flyteadmin/model_core_label_value.go | 5 + .../flyteadmin/model_core_time_partition.go | 14 + .../gen/pb-go/flyteidl/service/openapi.go | 4 +- .../pb-java/flyteidl/artifact/Artifacts.java | 1147 ++++++--- .../gen/pb-java/flyteidl/core/ArtifactId.java | 2101 ++++++++++++++--- flyteidl/gen/pb-js/flyteidl.d.ts | 76 +- flyteidl/gen/pb-js/flyteidl.js | 221 +- .../flyteidl/artifact/artifacts_pb2.py | 119 +- .../flyteidl/artifact/artifacts_pb2.pyi | 23 +- .../flyteidl/core/artifact_id_pb2.py | 45 +- .../flyteidl/core/artifact_id_pb2.pyi | 25 +- .../flyteidl/service/flyteadmin/README.md | 1 + .../service/flyteadmin/flyteadmin/__init__.py | 1 + .../flyteadmin/flyteadmin/models/__init__.py | 1 + .../models/core_artifact_binding_data.py | 28 +- .../flyteadmin/models/core_artifact_id.py | 37 +- .../flyteadmin/models/core_label_value.py | 28 +- .../flyteadmin/models/core_time_partition.py | 117 + .../test/test_core_time_partition.py | 40 + flyteidl/gen/pb_rust/flyteidl.artifact.rs | 20 +- flyteidl/gen/pb_rust/flyteidl.core.rs | 61 +- .../protos/flyteidl/artifact/artifacts.proto | 19 +- .../protos/flyteidl/core/artifact_id.proto | 34 +- 42 files changed, 7918 insertions(+), 1718 deletions(-) create mode 100644 flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_time_partition.go create mode 100644 flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_time_partition.py create mode 100644 flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_time_partition.py diff --git a/flyteadmin/pkg/manager/impl/execution_manager.go b/flyteadmin/pkg/manager/impl/execution_manager.go index dc36a308c4..37dcf2e6d4 100644 --- a/flyteadmin/pkg/manager/impl/execution_manager.go +++ b/flyteadmin/pkg/manager/impl/execution_manager.go @@ -742,6 +742,7 @@ func (m *ExecutionManager) getStringFromInput(ctx context.Context, inputBinding strVal = p.GetStringValue() case *core.Primitive_Datetime: t := time.Unix(p.GetDatetime().Seconds, int64(p.GetDatetime().Nanos)) + t = t.In(time.UTC) strVal = t.Format("2006-01-02") case *core.Primitive_StringValue: strVal = p.GetStringValue() @@ -776,46 +777,6 @@ func (m *ExecutionManager) fillInTemplateArgs(ctx context.Context, query core.Ar if query.GetUri() != "" { // If a query string, then just pass it through, nothing to fill in. return query, nil - } else if query.GetArtifactTag() != nil { - t := query.GetArtifactTag() - ak := t.GetArtifactKey() - if ak == nil { - return query, errors.NewFlyteAdminErrorf(codes.InvalidArgument, "tag doesn't have key") - } - var project, domain string - if ak.GetProject() == "" { - project = contextutils.Value(ctx, contextutils.ProjectKey) - } else { - project = ak.GetProject() - } - if ak.GetDomain() == "" { - domain = contextutils.Value(ctx, contextutils.DomainKey) - } else { - domain = ak.GetDomain() - } - strValue, err := m.getLabelValue(ctx, t.GetValue(), inputs) - if err != nil { - logger.Errorf(ctx, "Failed to template input string [%s] [%v]", t.GetValue(), err) - return query, err - } - - return core.ArtifactQuery{ - Identifier: &core.ArtifactQuery_ArtifactTag{ - ArtifactTag: &core.ArtifactTag{ - ArtifactKey: &core.ArtifactKey{ - Project: project, - Domain: domain, - Name: ak.GetName(), - }, - Value: &core.LabelValue{ - Value: &core.LabelValue_StaticValue{ - StaticValue: strValue, - }, - }, - }, - }, - }, nil - } else if query.GetArtifactId() != nil { artifactID := query.GetArtifactId() ak := artifactID.GetArtifactKey() @@ -836,7 +797,7 @@ func (m *ExecutionManager) fillInTemplateArgs(ctx context.Context, query core.Ar var partitions map[string]*core.LabelValue - if artifactID.GetPartitions() != nil && artifactID.GetPartitions().GetValue() != nil { + if artifactID.GetPartitions().GetValue() != nil { partitions = make(map[string]*core.LabelValue, len(artifactID.GetPartitions().Value)) for k, v := range artifactID.GetPartitions().GetValue() { newValue, err := m.getLabelValue(ctx, v, inputs) @@ -847,6 +808,36 @@ func (m *ExecutionManager) fillInTemplateArgs(ctx context.Context, query core.Ar partitions[k] = &core.LabelValue{Value: &core.LabelValue_StaticValue{StaticValue: newValue}} } } + + var timePartition *core.TimePartition + if artifactID.GetTimePartition().GetValue() != nil { + if artifactID.GetTimePartition().Value.GetTimeValue() != nil { + // If the time value is set, then just pass it through, nothing to fill in. + timePartition = artifactID.GetTimePartition() + } else if artifactID.GetTimePartition().Value.GetInputBinding() != nil { + // Evaluate the time partition input binding + lit, ok := inputs[artifactID.GetTimePartition().Value.GetInputBinding().GetVar()] + if !ok { + return query, errors.NewFlyteAdminErrorf(codes.InvalidArgument, "time partition input binding var [%s] not found in inputs %v", artifactID.GetTimePartition().Value.GetInputBinding().GetVar(), inputs) + } + + if lit.GetScalar().GetPrimitive().GetDatetime() == nil { + return query, errors.NewFlyteAdminErrorf(codes.InvalidArgument, + "time partition binding to input var [%s] failing because %v is not a datetime", + artifactID.GetTimePartition().Value.GetInputBinding().GetVar(), lit) + } + timePartition = &core.TimePartition{ + Value: &core.LabelValue{ + Value: &core.LabelValue_TimeValue{ + TimeValue: lit.GetScalar().GetPrimitive().GetDatetime(), + }, + }, + } + } else { + return query, errors.NewFlyteAdminErrorf(codes.InvalidArgument, "time partition value cannot be empty when evaluating query: %v", query) + } + } + return core.ArtifactQuery{ Identifier: &core.ArtifactQuery_ArtifactId{ ArtifactId: &core.ArtifactID{ @@ -855,11 +846,10 @@ func (m *ExecutionManager) fillInTemplateArgs(ctx context.Context, query core.Ar Domain: domain, Name: ak.GetName(), }, - Dimensions: &core.ArtifactID_Partitions{ - Partitions: &core.Partitions{ - Value: partitions, - }, + Partitions: &core.Partitions{ + Value: partitions, }, + TimePartition: timePartition, }, }, }, nil diff --git a/flyteadmin/pkg/manager/impl/execution_manager_test.go b/flyteadmin/pkg/manager/impl/execution_manager_test.go index e1f59cdf43..72c700008f 100644 --- a/flyteadmin/pkg/manager/impl/execution_manager_test.go +++ b/flyteadmin/pkg/manager/impl/execution_manager_test.go @@ -5719,5 +5719,96 @@ func TestAddStateFilter(t *testing.T) { assert.NoError(t, err) assert.Equal(t, "state <> ?", expression.Query) }) +} + +func TestQueryTemplate(t *testing.T) { + ctx := context.Background() + + aTime := time.Date( + 2063, 4, 5, 00, 00, 00, 0, time.UTC) + + rawInputs := map[string]interface{}{ + "aStr": "hello world", + "anInt": 1, + "aFloat": 1.3, + "aTime": aTime, + } + + otherInputs, err := coreutils.MakeLiteralMap(rawInputs) + assert.NoError(t, err) + + m := ExecutionManager{} + + ak := &core.ArtifactKey{ + Project: "project", + Domain: "domain", + Name: "testname", + } + t.Run("test all present, nothing to fill in", func(t *testing.T) { + pMap := map[string]*core.LabelValue{ + "partition1": {Value: &core.LabelValue_StaticValue{StaticValue: "my value"}}, + "partition2": {Value: &core.LabelValue_StaticValue{StaticValue: "my value 2"}}, + } + p := &core.Partitions{Value: pMap} + + q := core.ArtifactQuery{ + Identifier: &core.ArtifactQuery_ArtifactId{ + ArtifactId: &core.ArtifactID{ + ArtifactKey: ak, + Partitions: p, + TimePartition: nil, + }, + }, + } + + filledQuery, err := m.fillInTemplateArgs(ctx, q, otherInputs.Literals) + assert.NoError(t, err) + assert.True(t, proto.Equal(&q, &filledQuery)) + }) + + t.Run("template date-times, both in explicit tp and not", func(t *testing.T) { + pMap := map[string]*core.LabelValue{ + "partition1": {Value: &core.LabelValue_InputBinding{InputBinding: &core.InputBindingData{Var: "aTime"}}}, + "partition2": {Value: &core.LabelValue_StaticValue{StaticValue: "my value 2"}}, + } + p := &core.Partitions{Value: pMap} + + q := core.ArtifactQuery{ + Identifier: &core.ArtifactQuery_ArtifactId{ + ArtifactId: &core.ArtifactID{ + ArtifactKey: ak, + Partitions: p, + TimePartition: &core.TimePartition{Value: &core.LabelValue{Value: &core.LabelValue_InputBinding{InputBinding: &core.InputBindingData{Var: "aTime"}}}}, + }, + }, + } + + filledQuery, err := m.fillInTemplateArgs(ctx, q, otherInputs.Literals) + assert.NoError(t, err) + staticTime := filledQuery.GetArtifactId().Partitions.Value["partition1"].GetStaticValue() + assert.Equal(t, "2063-04-05", staticTime) + assert.Equal(t, int64(2942956800), filledQuery.GetArtifactId().TimePartition.Value.GetTimeValue().Seconds) + }) + + t.Run("something missing", func(t *testing.T) { + pMap := map[string]*core.LabelValue{ + "partition1": {Value: &core.LabelValue_StaticValue{StaticValue: "my value"}}, + "partition2": {Value: &core.LabelValue_StaticValue{StaticValue: "my value 2"}}, + } + p := &core.Partitions{Value: pMap} + + q := core.ArtifactQuery{ + Identifier: &core.ArtifactQuery_ArtifactId{ + ArtifactId: &core.ArtifactID{ + ArtifactKey: ak, + Partitions: p, + TimePartition: &core.TimePartition{Value: &core.LabelValue{Value: &core.LabelValue_InputBinding{InputBinding: &core.InputBindingData{Var: "wrong var"}}}}, + }, + }, + } + + _, err := m.fillInTemplateArgs(ctx, q, otherInputs.Literals) + assert.Error(t, err) + }) } diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/execution.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/execution.pb.cc index 3b146336fe..f090a2d7f4 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/execution.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/execution.pb.cc @@ -33,7 +33,7 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fexecution_2eproto ::google::p extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fexecution_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_Execution_flyteidl_2fadmin_2fexecution_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fexecution_2eproto ::google::protobuf::internal::SCCInfo<5> scc_info_ExecutionMetadata_flyteidl_2fadmin_2fexecution_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fadmin_2fexecution_2eproto ::google::protobuf::internal::SCCInfo<9> scc_info_ExecutionClosure_flyteidl_2fadmin_2fexecution_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fexecution_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ExecutionError_flyteidl_2fcore_2fexecution_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_2fidentifier_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Identifier_flyteidl_2fcore_2fidentifier_2eproto; diff --git a/flyteidl/gen/pb-cpp/flyteidl/artifact/artifacts.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/artifact/artifacts.pb.cc index 300fa12f8f..a8d21adedf 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/artifact/artifacts.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/artifact/artifacts.pb.cc @@ -22,11 +22,11 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fartifact_2fartifacts_2eproto ::google extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fartifact_2fartifacts_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactConsumer_flyteidl_2fartifact_2fartifacts_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fartifact_2fartifacts_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactProducer_flyteidl_2fartifact_2fartifacts_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fartifact_2fartifacts_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactSource_flyteidl_2fartifact_2fartifacts_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fartifact_2fartifacts_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactSpec_flyteidl_2fartifact_2fartifacts_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fartifact_2fartifacts_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_Artifact_flyteidl_2fartifact_2fartifacts_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fartifact_2fartifacts_2eproto ::google::protobuf::internal::SCCInfo<4> scc_info_ArtifactSpec_flyteidl_2fartifact_2fartifacts_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_ArtifactKey_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Partitions_flyteidl_2fcore_2fartifact_5fid_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactQuery_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fidentifier_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Identifier_flyteidl_2fcore_2fidentifier_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fidentifier_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowExecutionIdentifier_flyteidl_2fcore_2fidentifier_2eproto; @@ -35,6 +35,7 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2finterface_2eproto ::google::pr extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fliterals_2eproto ::google::protobuf::internal::SCCInfo<10> scc_info_Literal_flyteidl_2fcore_2fliterals_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2ftypes_2eproto ::google::protobuf::internal::SCCInfo<5> scc_info_LiteralType_flyteidl_2fcore_2ftypes_2eproto; extern PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2fany_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Any_google_2fprotobuf_2fany_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2ftimestamp_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto; namespace flyteidl { namespace artifact { class ArtifactDefaultTypeInternal { @@ -188,11 +189,12 @@ static void InitDefaultsCreateArtifactRequest_flyteidl_2fartifact_2fartifacts_2e ::flyteidl::artifact::CreateArtifactRequest::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<4> scc_info_CreateArtifactRequest_flyteidl_2fartifact_2fartifacts_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 4, InitDefaultsCreateArtifactRequest_flyteidl_2fartifact_2fartifacts_2eproto}, { +::google::protobuf::internal::SCCInfo<5> scc_info_CreateArtifactRequest_flyteidl_2fartifact_2fartifacts_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 5, InitDefaultsCreateArtifactRequest_flyteidl_2fartifact_2fartifacts_2eproto}, { &scc_info_ArtifactKey_flyteidl_2fcore_2fartifact_5fid_2eproto.base, &scc_info_ArtifactSpec_flyteidl_2fartifact_2fartifacts_2eproto.base, &scc_info_CreateArtifactRequest_PartitionsEntry_DoNotUse_flyteidl_2fartifact_2fartifacts_2eproto.base, + &scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto.base, &scc_info_ArtifactSource_flyteidl_2fartifact_2fartifacts_2eproto.base,}}; static void InitDefaultsArtifactSource_flyteidl_2fartifact_2fartifacts_2eproto() { @@ -222,11 +224,12 @@ static void InitDefaultsArtifactSpec_flyteidl_2fartifact_2fartifacts_2eproto() { ::flyteidl::artifact::ArtifactSpec::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactSpec_flyteidl_2fartifact_2fartifacts_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 3, InitDefaultsArtifactSpec_flyteidl_2fartifact_2fartifacts_2eproto}, { +::google::protobuf::internal::SCCInfo<4> scc_info_ArtifactSpec_flyteidl_2fartifact_2fartifacts_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 4, InitDefaultsArtifactSpec_flyteidl_2fartifact_2fartifacts_2eproto}, { &scc_info_Literal_flyteidl_2fcore_2fliterals_2eproto.base, &scc_info_LiteralType_flyteidl_2fcore_2ftypes_2eproto.base, - &scc_info_Any_google_2fprotobuf_2fany_2eproto.base,}}; + &scc_info_Any_google_2fprotobuf_2fany_2eproto.base, + &scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto.base,}}; static void InitDefaultsCreateArtifactResponse_flyteidl_2fartifact_2fartifacts_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -298,10 +301,11 @@ static void InitDefaultsSearchArtifactsRequest_flyteidl_2fartifact_2fartifacts_2 ::flyteidl::artifact::SearchArtifactsRequest::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<3> scc_info_SearchArtifactsRequest_flyteidl_2fartifact_2fartifacts_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 3, InitDefaultsSearchArtifactsRequest_flyteidl_2fartifact_2fartifacts_2eproto}, { +::google::protobuf::internal::SCCInfo<4> scc_info_SearchArtifactsRequest_flyteidl_2fartifact_2fartifacts_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 4, InitDefaultsSearchArtifactsRequest_flyteidl_2fartifact_2fartifacts_2eproto}, { &scc_info_ArtifactKey_flyteidl_2fcore_2fartifact_5fid_2eproto.base, &scc_info_Partitions_flyteidl_2fcore_2fartifact_5fid_2eproto.base, + &scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto.base, &scc_info_SearchOptions_flyteidl_2fartifact_2fartifacts_2eproto.base,}}; static void InitDefaultsSearchArtifactsResponse_flyteidl_2fartifact_2fartifacts_2eproto() { @@ -619,7 +623,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fartifact_2fartifacts_2ep PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::CreateArtifactRequest, version_), PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::CreateArtifactRequest, spec_), PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::CreateArtifactRequest, partitions_), - PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::CreateArtifactRequest, tag_), + PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::CreateArtifactRequest, time_partition_value_), PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::CreateArtifactRequest, source_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::ArtifactSource, _internal_metadata_), @@ -641,6 +645,8 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fartifact_2fartifacts_2ep PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::ArtifactSpec, short_description_), PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::ArtifactSpec, user_metadata_), PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::ArtifactSpec, metadata_type_), + PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::ArtifactSpec, created_at_), + PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::ArtifactSpec, file_format_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::CreateArtifactResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -674,6 +680,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fartifact_2fartifacts_2ep ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::SearchArtifactsRequest, artifact_key_), PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::SearchArtifactsRequest, partitions_), + PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::SearchArtifactsRequest, time_partition_value_), PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::SearchArtifactsRequest, principal_), PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::SearchArtifactsRequest, version_), PROTOBUF_FIELD_OFFSET(::flyteidl::artifact::SearchArtifactsRequest, options_), @@ -790,28 +797,28 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 18, -1, sizeof(::flyteidl::artifact::CreateArtifactRequest)}, { 29, -1, sizeof(::flyteidl::artifact::ArtifactSource)}, { 39, -1, sizeof(::flyteidl::artifact::ArtifactSpec)}, - { 49, -1, sizeof(::flyteidl::artifact::CreateArtifactResponse)}, - { 55, -1, sizeof(::flyteidl::artifact::GetArtifactRequest)}, - { 62, -1, sizeof(::flyteidl::artifact::GetArtifactResponse)}, - { 68, -1, sizeof(::flyteidl::artifact::SearchOptions)}, - { 75, -1, sizeof(::flyteidl::artifact::SearchArtifactsRequest)}, - { 87, -1, sizeof(::flyteidl::artifact::SearchArtifactsResponse)}, - { 94, -1, sizeof(::flyteidl::artifact::FindByWorkflowExecRequest)}, - { 101, -1, sizeof(::flyteidl::artifact::AddTagRequest)}, - { 109, -1, sizeof(::flyteidl::artifact::AddTagResponse)}, - { 114, -1, sizeof(::flyteidl::artifact::CreateTriggerRequest)}, - { 120, -1, sizeof(::flyteidl::artifact::CreateTriggerResponse)}, - { 125, -1, sizeof(::flyteidl::artifact::DeactivateTriggerRequest)}, - { 131, -1, sizeof(::flyteidl::artifact::DeactivateTriggerResponse)}, - { 136, -1, sizeof(::flyteidl::artifact::ArtifactProducer)}, - { 143, -1, sizeof(::flyteidl::artifact::RegisterProducerRequest)}, - { 149, -1, sizeof(::flyteidl::artifact::ArtifactConsumer)}, - { 156, -1, sizeof(::flyteidl::artifact::RegisterConsumerRequest)}, - { 162, -1, sizeof(::flyteidl::artifact::RegisterResponse)}, - { 167, -1, sizeof(::flyteidl::artifact::ExecutionInputsRequest)}, - { 174, -1, sizeof(::flyteidl::artifact::ExecutionInputsResponse)}, - { 179, -1, sizeof(::flyteidl::artifact::ListUsageRequest)}, - { 185, -1, sizeof(::flyteidl::artifact::ListUsageResponse)}, + { 51, -1, sizeof(::flyteidl::artifact::CreateArtifactResponse)}, + { 57, -1, sizeof(::flyteidl::artifact::GetArtifactRequest)}, + { 64, -1, sizeof(::flyteidl::artifact::GetArtifactResponse)}, + { 70, -1, sizeof(::flyteidl::artifact::SearchOptions)}, + { 77, -1, sizeof(::flyteidl::artifact::SearchArtifactsRequest)}, + { 90, -1, sizeof(::flyteidl::artifact::SearchArtifactsResponse)}, + { 97, -1, sizeof(::flyteidl::artifact::FindByWorkflowExecRequest)}, + { 104, -1, sizeof(::flyteidl::artifact::AddTagRequest)}, + { 112, -1, sizeof(::flyteidl::artifact::AddTagResponse)}, + { 117, -1, sizeof(::flyteidl::artifact::CreateTriggerRequest)}, + { 123, -1, sizeof(::flyteidl::artifact::CreateTriggerResponse)}, + { 128, -1, sizeof(::flyteidl::artifact::DeactivateTriggerRequest)}, + { 134, -1, sizeof(::flyteidl::artifact::DeactivateTriggerResponse)}, + { 139, -1, sizeof(::flyteidl::artifact::ArtifactProducer)}, + { 146, -1, sizeof(::flyteidl::artifact::RegisterProducerRequest)}, + { 152, -1, sizeof(::flyteidl::artifact::ArtifactConsumer)}, + { 159, -1, sizeof(::flyteidl::artifact::RegisterConsumerRequest)}, + { 165, -1, sizeof(::flyteidl::artifact::RegisterResponse)}, + { 170, -1, sizeof(::flyteidl::artifact::ExecutionInputsRequest)}, + { 177, -1, sizeof(::flyteidl::artifact::ExecutionInputsResponse)}, + { 182, -1, sizeof(::flyteidl::artifact::ListUsageRequest)}, + { 188, -1, sizeof(::flyteidl::artifact::ListUsageResponse)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -853,134 +860,140 @@ ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_fl const char descriptor_table_protodef_flyteidl_2fartifact_2fartifacts_2eproto[] = "\n!flyteidl/artifact/artifacts.proto\022\021fly" "teidl.artifact\032\031google/protobuf/any.prot" - "o\032\034google/api/annotations.proto\032 flyteid" - "l/admin/launch_plan.proto\032\034flyteidl/core" - "/literals.proto\032\031flyteidl/core/types.pro" - "to\032\036flyteidl/core/identifier.proto\032\037flyt" - "eidl/core/artifact_id.proto\032\035flyteidl/co" - "re/interface.proto\032 flyteidl/event/cloud" - "events.proto\"\252\001\n\010Artifact\022.\n\013artifact_id" - "\030\001 \001(\0132\031.flyteidl.core.ArtifactID\022-\n\004spe" - "c\030\002 \001(\0132\037.flyteidl.artifact.ArtifactSpec" - "\022\014\n\004tags\030\003 \003(\t\0221\n\006source\030\004 \001(\0132!.flyteid" - "l.artifact.ArtifactSource\"\312\002\n\025CreateArti" - "factRequest\0220\n\014artifact_key\030\001 \001(\0132\032.flyt" - "eidl.core.ArtifactKey\022\017\n\007version\030\003 \001(\t\022-" - "\n\004spec\030\002 \001(\0132\037.flyteidl.artifact.Artifac" - "tSpec\022L\n\npartitions\030\004 \003(\01328.flyteidl.art" - "ifact.CreateArtifactRequest.PartitionsEn" - "try\022\013\n\003tag\030\005 \001(\t\0221\n\006source\030\006 \001(\0132!.flyte" - "idl.artifact.ArtifactSource\0321\n\017Partition" - "sEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\277" - "\001\n\016ArtifactSource\022F\n\022workflow_execution\030" - "\001 \001(\0132*.flyteidl.core.WorkflowExecutionI" - "dentifier\022\017\n\007node_id\030\002 \001(\t\022*\n\007task_id\030\003 " - "\001(\0132\031.flyteidl.core.Identifier\022\025\n\rretry_" - "attempt\030\004 \001(\r\022\021\n\tprincipal\030\005 \001(\t\"\276\001\n\014Art" - "ifactSpec\022%\n\005value\030\001 \001(\0132\026.flyteidl.core" - ".Literal\022(\n\004type\030\002 \001(\0132\032.flyteidl.core.L" - "iteralType\022\031\n\021short_description\030\003 \001(\t\022+\n" - "\ruser_metadata\030\004 \001(\0132\024.google.protobuf.A" - "ny\022\025\n\rmetadata_type\030\005 \001(\t\"G\n\026CreateArtif" - "actResponse\022-\n\010artifact\030\001 \001(\0132\033.flyteidl" - ".artifact.Artifact\"R\n\022GetArtifactRequest" - "\022+\n\005query\030\001 \001(\0132\034.flyteidl.core.Artifact" - "Query\022\017\n\007details\030\002 \001(\010\"D\n\023GetArtifactRes" - "ponse\022-\n\010artifact\030\001 \001(\0132\033.flyteidl.artif" - "act.Artifact\"A\n\rSearchOptions\022\031\n\021strict_" - "partitions\030\001 \001(\010\022\025\n\rlatest_by_key\030\002 \001(\010\"" - "\356\001\n\026SearchArtifactsRequest\0220\n\014artifact_k" - "ey\030\001 \001(\0132\032.flyteidl.core.ArtifactKey\022-\n\n" - "partitions\030\002 \001(\0132\031.flyteidl.core.Partiti" - "ons\022\021\n\tprincipal\030\003 \001(\t\022\017\n\007version\030\004 \001(\t\022" - "1\n\007options\030\005 \001(\0132 .flyteidl.artifact.Sea" - "rchOptions\022\r\n\005token\030\006 \001(\t\022\r\n\005limit\030\007 \001(\005" - "\"X\n\027SearchArtifactsResponse\022.\n\tartifacts" - "\030\001 \003(\0132\033.flyteidl.artifact.Artifact\022\r\n\005t" - "oken\030\002 \001(\t\"\311\001\n\031FindByWorkflowExecRequest" - "\022;\n\007exec_id\030\001 \001(\0132*.flyteidl.core.Workfl" - "owExecutionIdentifier\022I\n\tdirection\030\002 \001(\016" - "26.flyteidl.artifact.FindByWorkflowExecR" - "equest.Direction\"$\n\tDirection\022\n\n\006INPUTS\020" - "\000\022\013\n\007OUTPUTS\020\001\"a\n\rAddTagRequest\022.\n\013artif" - "act_id\030\001 \001(\0132\031.flyteidl.core.ArtifactID\022" - "\r\n\005value\030\002 \001(\t\022\021\n\toverwrite\030\003 \001(\010\"\020\n\016Add" - "TagResponse\"O\n\024CreateTriggerRequest\0227\n\023t" - "rigger_launch_plan\030\001 \001(\0132\032.flyteidl.admi" - "n.LaunchPlan\"\027\n\025CreateTriggerResponse\"I\n" - "\030DeactivateTriggerRequest\022-\n\ntrigger_id\030" - "\001 \001(\0132\031.flyteidl.core.Identifier\"\033\n\031Deac" - "tivateTriggerResponse\"m\n\020ArtifactProduce" - "r\022,\n\tentity_id\030\001 \001(\0132\031.flyteidl.core.Ide" - "ntifier\022+\n\007outputs\030\002 \001(\0132\032.flyteidl.core" - ".VariableMap\"Q\n\027RegisterProducerRequest\022" - "6\n\tproducers\030\001 \003(\0132#.flyteidl.artifact.A" - "rtifactProducer\"m\n\020ArtifactConsumer\022,\n\te" - "ntity_id\030\001 \001(\0132\031.flyteidl.core.Identifie" - "r\022+\n\006inputs\030\002 \001(\0132\033.flyteidl.core.Parame" - "terMap\"Q\n\027RegisterConsumerRequest\0226\n\tcon" - "sumers\030\001 \003(\0132#.flyteidl.artifact.Artifac" - "tConsumer\"\022\n\020RegisterResponse\"\205\001\n\026Execut" - "ionInputsRequest\022@\n\014execution_id\030\001 \001(\0132*" - ".flyteidl.core.WorkflowExecutionIdentifi" - "er\022)\n\006inputs\030\002 \003(\0132\031.flyteidl.core.Artif" - "actID\"\031\n\027ExecutionInputsResponse\"B\n\020List" - "UsageRequest\022.\n\013artifact_id\030\001 \001(\0132\031.flyt" - "eidl.core.ArtifactID\"S\n\021ListUsageRespons" - "e\022>\n\nexecutions\030\001 \003(\0132*.flyteidl.core.Wo" - "rkflowExecutionIdentifier2\373\013\n\020ArtifactRe" - "gistry\022g\n\016CreateArtifact\022(.flyteidl.arti" - "fact.CreateArtifactRequest\032).flyteidl.ar" - "tifact.CreateArtifactResponse\"\000\022\204\001\n\013GetA" - "rtifact\022%.flyteidl.artifact.GetArtifactR" - "equest\032&.flyteidl.artifact.GetArtifactRe" - "sponse\"&\202\323\344\223\002 \"\033/artifacts/api/v1/artifa" - "cts:\001*\022\215\001\n\017SearchArtifacts\022).flyteidl.ar" - "tifact.SearchArtifactsRequest\032*.flyteidl" - ".artifact.SearchArtifactsResponse\"#\202\323\344\223\002" - "\035\"\030/artifacts/api/v1/search:\001*\022d\n\rCreate" - "Trigger\022\'.flyteidl.artifact.CreateTrigge" - "rRequest\032(.flyteidl.artifact.CreateTrigg" - "erResponse\"\000\022\237\001\n\021DeactivateTrigger\022+.fly" - "teidl.artifact.DeactivateTriggerRequest\032" - ",.flyteidl.artifact.DeactivateTriggerRes" - "ponse\"/\202\323\344\223\002)2$/artifacts/api/v1/trigger" - "/deactivate:\001*\022O\n\006AddTag\022 .flyteidl.arti" - "fact.AddTagRequest\032!.flyteidl.artifact.A" - "ddTagResponse\"\000\022e\n\020RegisterProducer\022*.fl" - "yteidl.artifact.RegisterProducerRequest\032" - "#.flyteidl.artifact.RegisterResponse\"\000\022e" - "\n\020RegisterConsumer\022*.flyteidl.artifact.R" - "egisterConsumerRequest\032#.flyteidl.artifa" - "ct.RegisterResponse\"\000\022m\n\022SetExecutionInp" - "uts\022).flyteidl.artifact.ExecutionInputsR" - "equest\032*.flyteidl.artifact.ExecutionInpu" - "tsResponse\"\000\022\330\001\n\022FindByWorkflowExec\022,.fl" - "yteidl.artifact.FindByWorkflowExecReques" - "t\032*.flyteidl.artifact.SearchArtifactsRes" - "ponse\"h\202\323\344\223\002b\022`/artifacts/api/v1/search/" - "execution/{exec_id.project}/{exec_id.dom" - "ain}/{exec_id.name}/{direction}\022\365\001\n\tList" - "Usage\022#.flyteidl.artifact.ListUsageReque" - "st\032$.flyteidl.artifact.ListUsageResponse" - "\"\234\001\202\323\344\223\002\225\001\022\222\001/artifacts/api/v1/usage/{ar" - "tifact_id.artifact_key.project}/{artifac" - "t_id.artifact_key.domain}/{artifact_id.a" - "rtifact_key.name}/{artifact_id.version}B" - "@Z>github.com/flyteorg/flyte/flyteidl/ge" - "n/pb-go/flyteidl/artifactb\006proto3" + "o\032\034google/api/annotations.proto\032\037google/" + "protobuf/timestamp.proto\032 flyteidl/admin" + "/launch_plan.proto\032\034flyteidl/core/litera" + "ls.proto\032\031flyteidl/core/types.proto\032\036fly" + "teidl/core/identifier.proto\032\037flyteidl/co" + "re/artifact_id.proto\032\035flyteidl/core/inte" + "rface.proto\032 flyteidl/event/cloudevents." + "proto\"\252\001\n\010Artifact\022.\n\013artifact_id\030\001 \001(\0132" + "\031.flyteidl.core.ArtifactID\022-\n\004spec\030\002 \001(\013" + "2\037.flyteidl.artifact.ArtifactSpec\022\014\n\004tag" + "s\030\003 \003(\t\0221\n\006source\030\004 \001(\0132!.flyteidl.artif" + "act.ArtifactSource\"\367\002\n\025CreateArtifactReq" + "uest\0220\n\014artifact_key\030\001 \001(\0132\032.flyteidl.co" + "re.ArtifactKey\022\017\n\007version\030\003 \001(\t\022-\n\004spec\030" + "\002 \001(\0132\037.flyteidl.artifact.ArtifactSpec\022L" + "\n\npartitions\030\004 \003(\01328.flyteidl.artifact.C" + "reateArtifactRequest.PartitionsEntry\0228\n\024" + "time_partition_value\030\005 \001(\0132\032.google.prot" + "obuf.Timestamp\0221\n\006source\030\006 \001(\0132!.flyteid" + "l.artifact.ArtifactSource\0321\n\017PartitionsE" + "ntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\277\001\n" + "\016ArtifactSource\022F\n\022workflow_execution\030\001 " + "\001(\0132*.flyteidl.core.WorkflowExecutionIde" + "ntifier\022\017\n\007node_id\030\002 \001(\t\022*\n\007task_id\030\003 \001(" + "\0132\031.flyteidl.core.Identifier\022\025\n\rretry_at" + "tempt\030\004 \001(\r\022\021\n\tprincipal\030\005 \001(\t\"\203\002\n\014Artif" + "actSpec\022%\n\005value\030\001 \001(\0132\026.flyteidl.core.L" + "iteral\022(\n\004type\030\002 \001(\0132\032.flyteidl.core.Lit" + "eralType\022\031\n\021short_description\030\003 \001(\t\022+\n\ru" + "ser_metadata\030\004 \001(\0132\024.google.protobuf.Any" + "\022\025\n\rmetadata_type\030\005 \001(\t\022.\n\ncreated_at\030\006 " + "\001(\0132\032.google.protobuf.Timestamp\022\023\n\013file_" + "format\030\007 \001(\t\"G\n\026CreateArtifactResponse\022-" + "\n\010artifact\030\001 \001(\0132\033.flyteidl.artifact.Art" + "ifact\"R\n\022GetArtifactRequest\022+\n\005query\030\001 \001" + "(\0132\034.flyteidl.core.ArtifactQuery\022\017\n\007deta" + "ils\030\002 \001(\010\"D\n\023GetArtifactResponse\022-\n\010arti" + "fact\030\001 \001(\0132\033.flyteidl.artifact.Artifact\"" + "A\n\rSearchOptions\022\031\n\021strict_partitions\030\001 " + "\001(\010\022\025\n\rlatest_by_key\030\002 \001(\010\"\250\002\n\026SearchArt" + "ifactsRequest\0220\n\014artifact_key\030\001 \001(\0132\032.fl" + "yteidl.core.ArtifactKey\022-\n\npartitions\030\002 " + "\001(\0132\031.flyteidl.core.Partitions\0228\n\024time_p" + "artition_value\030\003 \001(\0132\032.google.protobuf.T" + "imestamp\022\021\n\tprincipal\030\004 \001(\t\022\017\n\007version\030\005" + " \001(\t\0221\n\007options\030\006 \001(\0132 .flyteidl.artifac" + "t.SearchOptions\022\r\n\005token\030\007 \001(\t\022\r\n\005limit\030" + "\010 \001(\005\"X\n\027SearchArtifactsResponse\022.\n\tarti" + "facts\030\001 \003(\0132\033.flyteidl.artifact.Artifact" + "\022\r\n\005token\030\002 \001(\t\"\311\001\n\031FindByWorkflowExecRe" + "quest\022;\n\007exec_id\030\001 \001(\0132*.flyteidl.core.W" + "orkflowExecutionIdentifier\022I\n\tdirection\030" + "\002 \001(\01626.flyteidl.artifact.FindByWorkflow" + "ExecRequest.Direction\"$\n\tDirection\022\n\n\006IN" + "PUTS\020\000\022\013\n\007OUTPUTS\020\001\"a\n\rAddTagRequest\022.\n\013" + "artifact_id\030\001 \001(\0132\031.flyteidl.core.Artifa" + "ctID\022\r\n\005value\030\002 \001(\t\022\021\n\toverwrite\030\003 \001(\010\"\020" + "\n\016AddTagResponse\"O\n\024CreateTriggerRequest" + "\0227\n\023trigger_launch_plan\030\001 \001(\0132\032.flyteidl" + ".admin.LaunchPlan\"\027\n\025CreateTriggerRespon" + "se\"I\n\030DeactivateTriggerRequest\022-\n\ntrigge" + "r_id\030\001 \001(\0132\031.flyteidl.core.Identifier\"\033\n" + "\031DeactivateTriggerResponse\"m\n\020ArtifactPr" + "oducer\022,\n\tentity_id\030\001 \001(\0132\031.flyteidl.cor" + "e.Identifier\022+\n\007outputs\030\002 \001(\0132\032.flyteidl" + ".core.VariableMap\"Q\n\027RegisterProducerReq" + "uest\0226\n\tproducers\030\001 \003(\0132#.flyteidl.artif" + "act.ArtifactProducer\"m\n\020ArtifactConsumer" + "\022,\n\tentity_id\030\001 \001(\0132\031.flyteidl.core.Iden" + "tifier\022+\n\006inputs\030\002 \001(\0132\033.flyteidl.core.P" + "arameterMap\"Q\n\027RegisterConsumerRequest\0226" + "\n\tconsumers\030\001 \003(\0132#.flyteidl.artifact.Ar" + "tifactConsumer\"\022\n\020RegisterResponse\"\205\001\n\026E" + "xecutionInputsRequest\022@\n\014execution_id\030\001 " + "\001(\0132*.flyteidl.core.WorkflowExecutionIde" + "ntifier\022)\n\006inputs\030\002 \003(\0132\031.flyteidl.core." + "ArtifactID\"\031\n\027ExecutionInputsResponse\"B\n" + "\020ListUsageRequest\022.\n\013artifact_id\030\001 \001(\0132\031" + ".flyteidl.core.ArtifactID\"S\n\021ListUsageRe" + "sponse\022>\n\nexecutions\030\001 \003(\0132*.flyteidl.co" + "re.WorkflowExecutionIdentifier2\373\013\n\020Artif" + "actRegistry\022g\n\016CreateArtifact\022(.flyteidl" + ".artifact.CreateArtifactRequest\032).flytei" + "dl.artifact.CreateArtifactResponse\"\000\022\204\001\n" + "\013GetArtifact\022%.flyteidl.artifact.GetArti" + "factRequest\032&.flyteidl.artifact.GetArtif" + "actResponse\"&\202\323\344\223\002 \"\033/artifacts/api/v1/a" + "rtifacts:\001*\022\215\001\n\017SearchArtifacts\022).flytei" + "dl.artifact.SearchArtifactsRequest\032*.fly" + "teidl.artifact.SearchArtifactsResponse\"#" + "\202\323\344\223\002\035\"\030/artifacts/api/v1/search:\001*\022d\n\rC" + "reateTrigger\022\'.flyteidl.artifact.CreateT" + "riggerRequest\032(.flyteidl.artifact.Create" + "TriggerResponse\"\000\022\237\001\n\021DeactivateTrigger\022" + "+.flyteidl.artifact.DeactivateTriggerReq" + "uest\032,.flyteidl.artifact.DeactivateTrigg" + "erResponse\"/\202\323\344\223\002)2$/artifacts/api/v1/tr" + "igger/deactivate:\001*\022O\n\006AddTag\022 .flyteidl" + ".artifact.AddTagRequest\032!.flyteidl.artif" + "act.AddTagResponse\"\000\022e\n\020RegisterProducer" + "\022*.flyteidl.artifact.RegisterProducerReq" + "uest\032#.flyteidl.artifact.RegisterRespons" + "e\"\000\022e\n\020RegisterConsumer\022*.flyteidl.artif" + "act.RegisterConsumerRequest\032#.flyteidl.a" + "rtifact.RegisterResponse\"\000\022m\n\022SetExecuti" + "onInputs\022).flyteidl.artifact.ExecutionIn" + "putsRequest\032*.flyteidl.artifact.Executio" + "nInputsResponse\"\000\022\330\001\n\022FindByWorkflowExec" + "\022,.flyteidl.artifact.FindByWorkflowExecR" + "equest\032*.flyteidl.artifact.SearchArtifac" + "tsResponse\"h\202\323\344\223\002b\022`/artifacts/api/v1/se" + "arch/execution/{exec_id.project}/{exec_i" + "d.domain}/{exec_id.name}/{direction}\022\365\001\n" + "\tListUsage\022#.flyteidl.artifact.ListUsage" + "Request\032$.flyteidl.artifact.ListUsageRes" + "ponse\"\234\001\202\323\344\223\002\225\001\022\222\001/artifacts/api/v1/usag" + "e/{artifact_id.artifact_key.project}/{ar" + "tifact_id.artifact_key.domain}/{artifact" + "_id.artifact_key.name}/{artifact_id.vers" + "ion}B@Z>github.com/flyteorg/flyte/flytei" + "dl/gen/pb-go/flyteidl/artifactb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fartifact_2fartifacts_2eproto = { false, InitDefaults_flyteidl_2fartifact_2fartifacts_2eproto, descriptor_table_protodef_flyteidl_2fartifact_2fartifacts_2eproto, - "flyteidl/artifact/artifacts.proto", &assign_descriptors_table_flyteidl_2fartifact_2fartifacts_2eproto, 4713, + "flyteidl/artifact/artifacts.proto", &assign_descriptors_table_flyteidl_2fartifact_2fartifacts_2eproto, 4918, }; void AddDescriptors_flyteidl_2fartifact_2fartifacts_2eproto() { - static constexpr ::google::protobuf::internal::InitFunc deps[9] = + static constexpr ::google::protobuf::internal::InitFunc deps[10] = { ::AddDescriptors_google_2fprotobuf_2fany_2eproto, ::AddDescriptors_google_2fapi_2fannotations_2eproto, + ::AddDescriptors_google_2fprotobuf_2ftimestamp_2eproto, ::AddDescriptors_flyteidl_2fadmin_2flaunch_5fplan_2eproto, ::AddDescriptors_flyteidl_2fcore_2fliterals_2eproto, ::AddDescriptors_flyteidl_2fcore_2ftypes_2eproto, @@ -989,7 +1002,7 @@ void AddDescriptors_flyteidl_2fartifact_2fartifacts_2eproto() { ::AddDescriptors_flyteidl_2fcore_2finterface_2eproto, ::AddDescriptors_flyteidl_2fevent_2fcloudevents_2eproto, }; - ::google::protobuf::internal::AddDescriptors(&descriptor_table_flyteidl_2fartifact_2fartifacts_2eproto, deps, 9); + ::google::protobuf::internal::AddDescriptors(&descriptor_table_flyteidl_2fartifact_2fartifacts_2eproto, deps, 10); } // Force running AddDescriptors() at dynamic initialization time. @@ -1565,6 +1578,8 @@ void CreateArtifactRequest::InitAsDefaultInstance() { ::flyteidl::core::ArtifactKey::internal_default_instance()); ::flyteidl::artifact::_CreateArtifactRequest_default_instance_._instance.get_mutable()->spec_ = const_cast< ::flyteidl::artifact::ArtifactSpec*>( ::flyteidl::artifact::ArtifactSpec::internal_default_instance()); + ::flyteidl::artifact::_CreateArtifactRequest_default_instance_._instance.get_mutable()->time_partition_value_ = const_cast< ::google::protobuf::Timestamp*>( + ::google::protobuf::Timestamp::internal_default_instance()); ::flyteidl::artifact::_CreateArtifactRequest_default_instance_._instance.get_mutable()->source_ = const_cast< ::flyteidl::artifact::ArtifactSource*>( ::flyteidl::artifact::ArtifactSource::internal_default_instance()); } @@ -1572,6 +1587,7 @@ class CreateArtifactRequest::HasBitSetters { public: static const ::flyteidl::core::ArtifactKey& artifact_key(const CreateArtifactRequest* msg); static const ::flyteidl::artifact::ArtifactSpec& spec(const CreateArtifactRequest* msg); + static const ::google::protobuf::Timestamp& time_partition_value(const CreateArtifactRequest* msg); static const ::flyteidl::artifact::ArtifactSource& source(const CreateArtifactRequest* msg); }; @@ -1583,6 +1599,10 @@ const ::flyteidl::artifact::ArtifactSpec& CreateArtifactRequest::HasBitSetters::spec(const CreateArtifactRequest* msg) { return *msg->spec_; } +const ::google::protobuf::Timestamp& +CreateArtifactRequest::HasBitSetters::time_partition_value(const CreateArtifactRequest* msg) { + return *msg->time_partition_value_; +} const ::flyteidl::artifact::ArtifactSource& CreateArtifactRequest::HasBitSetters::source(const CreateArtifactRequest* msg) { return *msg->source_; @@ -1593,12 +1613,18 @@ void CreateArtifactRequest::clear_artifact_key() { } artifact_key_ = nullptr; } +void CreateArtifactRequest::clear_time_partition_value() { + if (GetArenaNoVirtual() == nullptr && time_partition_value_ != nullptr) { + delete time_partition_value_; + } + time_partition_value_ = nullptr; +} #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int CreateArtifactRequest::kArtifactKeyFieldNumber; const int CreateArtifactRequest::kVersionFieldNumber; const int CreateArtifactRequest::kSpecFieldNumber; const int CreateArtifactRequest::kPartitionsFieldNumber; -const int CreateArtifactRequest::kTagFieldNumber; +const int CreateArtifactRequest::kTimePartitionValueFieldNumber; const int CreateArtifactRequest::kSourceFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 @@ -1616,10 +1642,6 @@ CreateArtifactRequest::CreateArtifactRequest(const CreateArtifactRequest& from) if (from.version().size() > 0) { version_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.version_); } - tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.tag().size() > 0) { - tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); - } if (from.has_artifact_key()) { artifact_key_ = new ::flyteidl::core::ArtifactKey(*from.artifact_key_); } else { @@ -1630,6 +1652,11 @@ CreateArtifactRequest::CreateArtifactRequest(const CreateArtifactRequest& from) } else { spec_ = nullptr; } + if (from.has_time_partition_value()) { + time_partition_value_ = new ::google::protobuf::Timestamp(*from.time_partition_value_); + } else { + time_partition_value_ = nullptr; + } if (from.has_source()) { source_ = new ::flyteidl::artifact::ArtifactSource(*from.source_); } else { @@ -1642,7 +1669,6 @@ void CreateArtifactRequest::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_CreateArtifactRequest_flyteidl_2fartifact_2fartifacts_2eproto.base); version_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - tag_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(&artifact_key_, 0, static_cast( reinterpret_cast(&source_) - reinterpret_cast(&artifact_key_)) + sizeof(source_)); @@ -1655,9 +1681,9 @@ CreateArtifactRequest::~CreateArtifactRequest() { void CreateArtifactRequest::SharedDtor() { version_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - tag_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (this != internal_default_instance()) delete artifact_key_; if (this != internal_default_instance()) delete spec_; + if (this != internal_default_instance()) delete time_partition_value_; if (this != internal_default_instance()) delete source_; } @@ -1678,7 +1704,6 @@ void CreateArtifactRequest::Clear() { partitions_.Clear(); version_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (GetArenaNoVirtual() == nullptr && artifact_key_ != nullptr) { delete artifact_key_; } @@ -1687,6 +1712,10 @@ void CreateArtifactRequest::Clear() { delete spec_; } spec_ = nullptr; + if (GetArenaNoVirtual() == nullptr && time_partition_value_ != nullptr) { + delete time_partition_value_; + } + time_partition_value_ = nullptr; if (GetArenaNoVirtual() == nullptr && source_ != nullptr) { delete source_; } @@ -1768,20 +1797,17 @@ const char* CreateArtifactRequest::_InternalParse(const char* begin, const char* } while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 34 && (ptr += 1)); break; } - // string tag = 5; + // .google.protobuf.Timestamp time_partition_value = 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); - ctx->extra_parse_data().SetFieldName("flyteidl.artifact.CreateArtifactRequest.tag"); - object = msg->mutable_tag(); - if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { - parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; - goto string_till_end; - } - GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); - ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + parser_till_end = ::google::protobuf::Timestamp::_InternalParse; + object = msg->mutable_time_partition_value(); + 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.artifact.ArtifactSource source = 6; @@ -1894,15 +1920,11 @@ bool CreateArtifactRequest::MergePartialFromCodedStream( break; } - // string tag = 5; + // .google.protobuf.Timestamp time_partition_value = 5; case 5: { if (static_cast< ::google::protobuf::uint8>(tag) == (42 & 0xFF)) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_tag())); - DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->tag().data(), static_cast(this->tag().length()), - ::google::protobuf::internal::WireFormatLite::PARSE, - "flyteidl.artifact.CreateArtifactRequest.tag")); + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_time_partition_value())); } else { goto handle_unusual; } @@ -2018,14 +2040,10 @@ void CreateArtifactRequest::SerializeWithCachedSizes( } } - // string tag = 5; - if (this->tag().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->tag().data(), static_cast(this->tag().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.artifact.CreateArtifactRequest.tag"); - ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 5, this->tag(), output); + // .google.protobuf.Timestamp time_partition_value = 5; + if (this->has_time_partition_value()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 5, HasBitSetters::time_partition_value(this), output); } // .flyteidl.artifact.ArtifactSource source = 6; @@ -2121,15 +2139,11 @@ ::google::protobuf::uint8* CreateArtifactRequest::InternalSerializeWithCachedSiz } } - // string tag = 5; - if (this->tag().size() > 0) { - ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( - this->tag().data(), static_cast(this->tag().length()), - ::google::protobuf::internal::WireFormatLite::SERIALIZE, - "flyteidl.artifact.CreateArtifactRequest.tag"); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 5, this->tag(), target); + // .google.protobuf.Timestamp time_partition_value = 5; + if (this->has_time_partition_value()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 5, HasBitSetters::time_partition_value(this), target); } // .flyteidl.artifact.ArtifactSource source = 6; @@ -2181,13 +2195,6 @@ size_t CreateArtifactRequest::ByteSizeLong() const { this->version()); } - // string tag = 5; - if (this->tag().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->tag()); - } - // .flyteidl.core.ArtifactKey artifact_key = 1; if (this->has_artifact_key()) { total_size += 1 + @@ -2202,6 +2209,13 @@ size_t CreateArtifactRequest::ByteSizeLong() const { *spec_); } + // .google.protobuf.Timestamp time_partition_value = 5; + if (this->has_time_partition_value()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *time_partition_value_); + } + // .flyteidl.artifact.ArtifactSource source = 6; if (this->has_source()) { total_size += 1 + @@ -2241,16 +2255,15 @@ void CreateArtifactRequest::MergeFrom(const CreateArtifactRequest& from) { version_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.version_); } - if (from.tag().size() > 0) { - - tag_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tag_); - } if (from.has_artifact_key()) { mutable_artifact_key()->::flyteidl::core::ArtifactKey::MergeFrom(from.artifact_key()); } if (from.has_spec()) { mutable_spec()->::flyteidl::artifact::ArtifactSpec::MergeFrom(from.spec()); } + if (from.has_time_partition_value()) { + mutable_time_partition_value()->::google::protobuf::Timestamp::MergeFrom(from.time_partition_value()); + } if (from.has_source()) { mutable_source()->::flyteidl::artifact::ArtifactSource::MergeFrom(from.source()); } @@ -2284,10 +2297,9 @@ void CreateArtifactRequest::InternalSwap(CreateArtifactRequest* other) { partitions_.Swap(&other->partitions_); version_.Swap(&other->version_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); - tag_.Swap(&other->tag_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); swap(artifact_key_, other->artifact_key_); swap(spec_, other->spec_); + swap(time_partition_value_, other->time_partition_value_); swap(source_, other->source_); } @@ -2867,12 +2879,15 @@ void ArtifactSpec::InitAsDefaultInstance() { ::flyteidl::core::LiteralType::internal_default_instance()); ::flyteidl::artifact::_ArtifactSpec_default_instance_._instance.get_mutable()->user_metadata_ = const_cast< ::google::protobuf::Any*>( ::google::protobuf::Any::internal_default_instance()); + ::flyteidl::artifact::_ArtifactSpec_default_instance_._instance.get_mutable()->created_at_ = const_cast< ::google::protobuf::Timestamp*>( + ::google::protobuf::Timestamp::internal_default_instance()); } class ArtifactSpec::HasBitSetters { public: static const ::flyteidl::core::Literal& value(const ArtifactSpec* msg); static const ::flyteidl::core::LiteralType& type(const ArtifactSpec* msg); static const ::google::protobuf::Any& user_metadata(const ArtifactSpec* msg); + static const ::google::protobuf::Timestamp& created_at(const ArtifactSpec* msg); }; const ::flyteidl::core::Literal& @@ -2887,6 +2902,10 @@ const ::google::protobuf::Any& ArtifactSpec::HasBitSetters::user_metadata(const ArtifactSpec* msg) { return *msg->user_metadata_; } +const ::google::protobuf::Timestamp& +ArtifactSpec::HasBitSetters::created_at(const ArtifactSpec* msg) { + return *msg->created_at_; +} void ArtifactSpec::clear_value() { if (GetArenaNoVirtual() == nullptr && value_ != nullptr) { delete value_; @@ -2905,12 +2924,20 @@ void ArtifactSpec::clear_user_metadata() { } user_metadata_ = nullptr; } +void ArtifactSpec::clear_created_at() { + if (GetArenaNoVirtual() == nullptr && created_at_ != nullptr) { + delete created_at_; + } + created_at_ = nullptr; +} #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int ArtifactSpec::kValueFieldNumber; const int ArtifactSpec::kTypeFieldNumber; const int ArtifactSpec::kShortDescriptionFieldNumber; const int ArtifactSpec::kUserMetadataFieldNumber; const int ArtifactSpec::kMetadataTypeFieldNumber; +const int ArtifactSpec::kCreatedAtFieldNumber; +const int ArtifactSpec::kFileFormatFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 ArtifactSpec::ArtifactSpec() @@ -2930,6 +2957,10 @@ ArtifactSpec::ArtifactSpec(const ArtifactSpec& from) if (from.metadata_type().size() > 0) { metadata_type_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.metadata_type_); } + file_format_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (from.file_format().size() > 0) { + file_format_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.file_format_); + } if (from.has_value()) { value_ = new ::flyteidl::core::Literal(*from.value_); } else { @@ -2945,6 +2976,11 @@ ArtifactSpec::ArtifactSpec(const ArtifactSpec& from) } else { user_metadata_ = nullptr; } + if (from.has_created_at()) { + created_at_ = new ::google::protobuf::Timestamp(*from.created_at_); + } else { + created_at_ = nullptr; + } // @@protoc_insertion_point(copy_constructor:flyteidl.artifact.ArtifactSpec) } @@ -2953,9 +2989,10 @@ void ArtifactSpec::SharedCtor() { &scc_info_ArtifactSpec_flyteidl_2fartifact_2fartifacts_2eproto.base); short_description_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); metadata_type_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + file_format_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(&value_, 0, static_cast( - reinterpret_cast(&user_metadata_) - - reinterpret_cast(&value_)) + sizeof(user_metadata_)); + reinterpret_cast(&created_at_) - + reinterpret_cast(&value_)) + sizeof(created_at_)); } ArtifactSpec::~ArtifactSpec() { @@ -2966,9 +3003,11 @@ ArtifactSpec::~ArtifactSpec() { void ArtifactSpec::SharedDtor() { short_description_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); metadata_type_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + file_format_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (this != internal_default_instance()) delete value_; if (this != internal_default_instance()) delete type_; if (this != internal_default_instance()) delete user_metadata_; + if (this != internal_default_instance()) delete created_at_; } void ArtifactSpec::SetCachedSize(int size) const { @@ -2988,6 +3027,7 @@ void ArtifactSpec::Clear() { short_description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); metadata_type_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + file_format_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (GetArenaNoVirtual() == nullptr && value_ != nullptr) { delete value_; } @@ -3000,6 +3040,10 @@ void ArtifactSpec::Clear() { delete user_metadata_; } user_metadata_ = nullptr; + if (GetArenaNoVirtual() == nullptr && created_at_ != nullptr) { + delete created_at_; + } + created_at_ = nullptr; _internal_metadata_.Clear(); } @@ -3087,6 +3131,35 @@ const char* ArtifactSpec::_InternalParse(const char* begin, const char* end, voi ptr += size; break; } + // .google.protobuf.Timestamp created_at = 6; + case 6: { + if (static_cast<::google::protobuf::uint8>(tag) != 50) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::google::protobuf::Timestamp::_InternalParse; + object = msg->mutable_created_at(); + 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; + } + // string file_format = 7; + case 7: { + if (static_cast<::google::protobuf::uint8>(tag) != 58) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + ctx->extra_parse_data().SetFieldName("flyteidl.artifact.ArtifactSpec.file_format"); + object = msg->mutable_file_format(); + if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { + parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8; + goto string_till_end; + } + GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx)); + ::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx); + ptr += size; + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -3184,6 +3257,32 @@ bool ArtifactSpec::MergePartialFromCodedStream( break; } + // .google.protobuf.Timestamp created_at = 6; + case 6: { + if (static_cast< ::google::protobuf::uint8>(tag) == (50 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_created_at())); + } else { + goto handle_unusual; + } + break; + } + + // string file_format = 7; + case 7: { + if (static_cast< ::google::protobuf::uint8>(tag) == (58 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadString( + input, this->mutable_file_format())); + DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->file_format().data(), static_cast(this->file_format().length()), + ::google::protobuf::internal::WireFormatLite::PARSE, + "flyteidl.artifact.ArtifactSpec.file_format")); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -3249,6 +3348,22 @@ void ArtifactSpec::SerializeWithCachedSizes( 5, this->metadata_type(), output); } + // .google.protobuf.Timestamp created_at = 6; + if (this->has_created_at()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 6, HasBitSetters::created_at(this), output); + } + + // string file_format = 7; + if (this->file_format().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->file_format().data(), static_cast(this->file_format().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.artifact.ArtifactSpec.file_format"); + ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( + 7, this->file_format(), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -3305,6 +3420,24 @@ ::google::protobuf::uint8* ArtifactSpec::InternalSerializeWithCachedSizesToArray 5, this->metadata_type(), target); } + // .google.protobuf.Timestamp created_at = 6; + if (this->has_created_at()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 6, HasBitSetters::created_at(this), target); + } + + // string file_format = 7; + if (this->file_format().size() > 0) { + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + this->file_format().data(), static_cast(this->file_format().length()), + ::google::protobuf::internal::WireFormatLite::SERIALIZE, + "flyteidl.artifact.ArtifactSpec.file_format"); + target = + ::google::protobuf::internal::WireFormatLite::WriteStringToArray( + 7, this->file_format(), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -3340,6 +3473,13 @@ size_t ArtifactSpec::ByteSizeLong() const { this->metadata_type()); } + // string file_format = 7; + if (this->file_format().size() > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->file_format()); + } + // .flyteidl.core.Literal value = 1; if (this->has_value()) { total_size += 1 + @@ -3361,6 +3501,13 @@ size_t ArtifactSpec::ByteSizeLong() const { *user_metadata_); } + // .google.protobuf.Timestamp created_at = 6; + if (this->has_created_at()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *created_at_); + } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; @@ -3396,6 +3543,10 @@ void ArtifactSpec::MergeFrom(const ArtifactSpec& from) { metadata_type_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.metadata_type_); } + if (from.file_format().size() > 0) { + + file_format_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.file_format_); + } if (from.has_value()) { mutable_value()->::flyteidl::core::Literal::MergeFrom(from.value()); } @@ -3405,6 +3556,9 @@ void ArtifactSpec::MergeFrom(const ArtifactSpec& from) { if (from.has_user_metadata()) { mutable_user_metadata()->::google::protobuf::Any::MergeFrom(from.user_metadata()); } + if (from.has_created_at()) { + mutable_created_at()->::google::protobuf::Timestamp::MergeFrom(from.created_at()); + } } void ArtifactSpec::CopyFrom(const ::google::protobuf::Message& from) { @@ -3436,9 +3590,12 @@ void ArtifactSpec::InternalSwap(ArtifactSpec* other) { GetArenaNoVirtual()); metadata_type_.Swap(&other->metadata_type_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); + file_format_.Swap(&other->file_format_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), + GetArenaNoVirtual()); swap(value_, other->value_); swap(type_, other->type_); swap(user_metadata_, other->user_metadata_); + swap(created_at_, other->created_at_); } ::google::protobuf::Metadata ArtifactSpec::GetMetadata() const { @@ -4669,6 +4826,8 @@ void SearchArtifactsRequest::InitAsDefaultInstance() { ::flyteidl::core::ArtifactKey::internal_default_instance()); ::flyteidl::artifact::_SearchArtifactsRequest_default_instance_._instance.get_mutable()->partitions_ = const_cast< ::flyteidl::core::Partitions*>( ::flyteidl::core::Partitions::internal_default_instance()); + ::flyteidl::artifact::_SearchArtifactsRequest_default_instance_._instance.get_mutable()->time_partition_value_ = const_cast< ::google::protobuf::Timestamp*>( + ::google::protobuf::Timestamp::internal_default_instance()); ::flyteidl::artifact::_SearchArtifactsRequest_default_instance_._instance.get_mutable()->options_ = const_cast< ::flyteidl::artifact::SearchOptions*>( ::flyteidl::artifact::SearchOptions::internal_default_instance()); } @@ -4676,6 +4835,7 @@ class SearchArtifactsRequest::HasBitSetters { public: static const ::flyteidl::core::ArtifactKey& artifact_key(const SearchArtifactsRequest* msg); static const ::flyteidl::core::Partitions& partitions(const SearchArtifactsRequest* msg); + static const ::google::protobuf::Timestamp& time_partition_value(const SearchArtifactsRequest* msg); static const ::flyteidl::artifact::SearchOptions& options(const SearchArtifactsRequest* msg); }; @@ -4687,6 +4847,10 @@ const ::flyteidl::core::Partitions& SearchArtifactsRequest::HasBitSetters::partitions(const SearchArtifactsRequest* msg) { return *msg->partitions_; } +const ::google::protobuf::Timestamp& +SearchArtifactsRequest::HasBitSetters::time_partition_value(const SearchArtifactsRequest* msg) { + return *msg->time_partition_value_; +} const ::flyteidl::artifact::SearchOptions& SearchArtifactsRequest::HasBitSetters::options(const SearchArtifactsRequest* msg) { return *msg->options_; @@ -4703,9 +4867,16 @@ void SearchArtifactsRequest::clear_partitions() { } partitions_ = nullptr; } +void SearchArtifactsRequest::clear_time_partition_value() { + if (GetArenaNoVirtual() == nullptr && time_partition_value_ != nullptr) { + delete time_partition_value_; + } + time_partition_value_ = nullptr; +} #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int SearchArtifactsRequest::kArtifactKeyFieldNumber; const int SearchArtifactsRequest::kPartitionsFieldNumber; +const int SearchArtifactsRequest::kTimePartitionValueFieldNumber; const int SearchArtifactsRequest::kPrincipalFieldNumber; const int SearchArtifactsRequest::kVersionFieldNumber; const int SearchArtifactsRequest::kOptionsFieldNumber; @@ -4744,6 +4915,11 @@ SearchArtifactsRequest::SearchArtifactsRequest(const SearchArtifactsRequest& fro } else { partitions_ = nullptr; } + if (from.has_time_partition_value()) { + time_partition_value_ = new ::google::protobuf::Timestamp(*from.time_partition_value_); + } else { + time_partition_value_ = nullptr; + } if (from.has_options()) { options_ = new ::flyteidl::artifact::SearchOptions(*from.options_); } else { @@ -4775,6 +4951,7 @@ void SearchArtifactsRequest::SharedDtor() { token_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (this != internal_default_instance()) delete artifact_key_; if (this != internal_default_instance()) delete partitions_; + if (this != internal_default_instance()) delete time_partition_value_; if (this != internal_default_instance()) delete options_; } @@ -4804,6 +4981,10 @@ void SearchArtifactsRequest::Clear() { delete partitions_; } partitions_ = nullptr; + if (GetArenaNoVirtual() == nullptr && time_partition_value_ != nullptr) { + delete time_partition_value_; + } + time_partition_value_ = nullptr; if (GetArenaNoVirtual() == nullptr && options_ != nullptr) { delete options_; } @@ -4851,11 +5032,24 @@ const char* SearchArtifactsRequest::_InternalParse(const char* begin, const char {parser_till_end, object}, ptr - size, ptr)); break; } - // string principal = 3; + // .google.protobuf.Timestamp time_partition_value = 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 = ::google::protobuf::Timestamp::_InternalParse; + object = msg->mutable_time_partition_value(); + 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; + } + // string principal = 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); ctx->extra_parse_data().SetFieldName("flyteidl.artifact.SearchArtifactsRequest.principal"); object = msg->mutable_principal(); if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) { @@ -4867,9 +5061,9 @@ const char* SearchArtifactsRequest::_InternalParse(const char* begin, const char ptr += size; break; } - // string version = 4; - case 4: { - if (static_cast<::google::protobuf::uint8>(tag) != 34) goto handle_unusual; + // string version = 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); ctx->extra_parse_data().SetFieldName("flyteidl.artifact.SearchArtifactsRequest.version"); @@ -4883,9 +5077,9 @@ const char* SearchArtifactsRequest::_InternalParse(const char* begin, const char ptr += size; break; } - // .flyteidl.artifact.SearchOptions options = 5; - case 5: { - if (static_cast<::google::protobuf::uint8>(tag) != 42) goto handle_unusual; + // .flyteidl.artifact.SearchOptions options = 6; + case 6: { + if (static_cast<::google::protobuf::uint8>(tag) != 50) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); parser_till_end = ::flyteidl::artifact::SearchOptions::_InternalParse; @@ -4896,9 +5090,9 @@ const char* SearchArtifactsRequest::_InternalParse(const char* begin, const char {parser_till_end, object}, ptr - size, ptr)); break; } - // string token = 6; - case 6: { - if (static_cast<::google::protobuf::uint8>(tag) != 50) goto handle_unusual; + // string token = 7; + case 7: { + if (static_cast<::google::protobuf::uint8>(tag) != 58) goto handle_unusual; ptr = ::google::protobuf::io::ReadSize(ptr, &size); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); ctx->extra_parse_data().SetFieldName("flyteidl.artifact.SearchArtifactsRequest.token"); @@ -4912,9 +5106,9 @@ const char* SearchArtifactsRequest::_InternalParse(const char* begin, const char ptr += size; break; } - // int32 limit = 7; - case 7: { - if (static_cast<::google::protobuf::uint8>(tag) != 56) goto handle_unusual; + // int32 limit = 8; + case 8: { + if (static_cast<::google::protobuf::uint8>(tag) != 64) goto handle_unusual; msg->set_limit(::google::protobuf::internal::ReadVarint(&ptr)); GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; @@ -4975,9 +5169,20 @@ bool SearchArtifactsRequest::MergePartialFromCodedStream( break; } - // string principal = 3; + // .google.protobuf.Timestamp time_partition_value = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_time_partition_value())); + } else { + goto handle_unusual; + } + break; + } + + // string principal = 4; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_principal())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( @@ -4990,9 +5195,9 @@ bool SearchArtifactsRequest::MergePartialFromCodedStream( break; } - // string version = 4; - case 4: { - if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { + // string version = 5; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == (42 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_version())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( @@ -5005,9 +5210,9 @@ bool SearchArtifactsRequest::MergePartialFromCodedStream( break; } - // .flyteidl.artifact.SearchOptions options = 5; - case 5: { - if (static_cast< ::google::protobuf::uint8>(tag) == (42 & 0xFF)) { + // .flyteidl.artifact.SearchOptions options = 6; + case 6: { + if (static_cast< ::google::protobuf::uint8>(tag) == (50 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_options())); } else { @@ -5016,9 +5221,9 @@ bool SearchArtifactsRequest::MergePartialFromCodedStream( break; } - // string token = 6; - case 6: { - if (static_cast< ::google::protobuf::uint8>(tag) == (50 & 0xFF)) { + // string token = 7; + case 7: { + if (static_cast< ::google::protobuf::uint8>(tag) == (58 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_token())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( @@ -5031,9 +5236,9 @@ bool SearchArtifactsRequest::MergePartialFromCodedStream( break; } - // int32 limit = 7; - case 7: { - if (static_cast< ::google::protobuf::uint8>(tag) == (56 & 0xFF)) { + // int32 limit = 8; + case 8: { + if (static_cast< ::google::protobuf::uint8>(tag) == (64 & 0xFF)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( @@ -5083,45 +5288,51 @@ void SearchArtifactsRequest::SerializeWithCachedSizes( 2, HasBitSetters::partitions(this), output); } - // string principal = 3; + // .google.protobuf.Timestamp time_partition_value = 3; + if (this->has_time_partition_value()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 3, HasBitSetters::time_partition_value(this), output); + } + + // string principal = 4; if (this->principal().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->principal().data(), static_cast(this->principal().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "flyteidl.artifact.SearchArtifactsRequest.principal"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 3, this->principal(), output); + 4, this->principal(), output); } - // string version = 4; + // string version = 5; if (this->version().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->version().data(), static_cast(this->version().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "flyteidl.artifact.SearchArtifactsRequest.version"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 4, this->version(), output); + 5, this->version(), output); } - // .flyteidl.artifact.SearchOptions options = 5; + // .flyteidl.artifact.SearchOptions options = 6; if (this->has_options()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 5, HasBitSetters::options(this), output); + 6, HasBitSetters::options(this), output); } - // string token = 6; + // string token = 7; if (this->token().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->token().data(), static_cast(this->token().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "flyteidl.artifact.SearchArtifactsRequest.token"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 6, this->token(), output); + 7, this->token(), output); } - // int32 limit = 7; + // int32 limit = 8; if (this->limit() != 0) { - ::google::protobuf::internal::WireFormatLite::WriteInt32(7, this->limit(), output); + ::google::protobuf::internal::WireFormatLite::WriteInt32(8, this->limit(), output); } if (_internal_metadata_.have_unknown_fields()) { @@ -5151,7 +5362,14 @@ ::google::protobuf::uint8* SearchArtifactsRequest::InternalSerializeWithCachedSi 2, HasBitSetters::partitions(this), target); } - // string principal = 3; + // .google.protobuf.Timestamp time_partition_value = 3; + if (this->has_time_partition_value()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 3, HasBitSetters::time_partition_value(this), target); + } + + // string principal = 4; if (this->principal().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->principal().data(), static_cast(this->principal().length()), @@ -5159,10 +5377,10 @@ ::google::protobuf::uint8* SearchArtifactsRequest::InternalSerializeWithCachedSi "flyteidl.artifact.SearchArtifactsRequest.principal"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 3, this->principal(), target); + 4, this->principal(), target); } - // string version = 4; + // string version = 5; if (this->version().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->version().data(), static_cast(this->version().length()), @@ -5170,17 +5388,17 @@ ::google::protobuf::uint8* SearchArtifactsRequest::InternalSerializeWithCachedSi "flyteidl.artifact.SearchArtifactsRequest.version"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 4, this->version(), target); + 5, this->version(), target); } - // .flyteidl.artifact.SearchOptions options = 5; + // .flyteidl.artifact.SearchOptions options = 6; if (this->has_options()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( - 5, HasBitSetters::options(this), target); + 6, HasBitSetters::options(this), target); } - // string token = 6; + // string token = 7; if (this->token().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->token().data(), static_cast(this->token().length()), @@ -5188,12 +5406,12 @@ ::google::protobuf::uint8* SearchArtifactsRequest::InternalSerializeWithCachedSi "flyteidl.artifact.SearchArtifactsRequest.token"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 6, this->token(), target); + 7, this->token(), target); } - // int32 limit = 7; + // int32 limit = 8; if (this->limit() != 0) { - target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(7, this->limit(), target); + target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(8, this->limit(), target); } if (_internal_metadata_.have_unknown_fields()) { @@ -5217,21 +5435,21 @@ size_t SearchArtifactsRequest::ByteSizeLong() const { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string principal = 3; + // string principal = 4; if (this->principal().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->principal()); } - // string version = 4; + // string version = 5; if (this->version().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->version()); } - // string token = 6; + // string token = 7; if (this->token().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( @@ -5252,14 +5470,21 @@ size_t SearchArtifactsRequest::ByteSizeLong() const { *partitions_); } - // .flyteidl.artifact.SearchOptions options = 5; + // .google.protobuf.Timestamp time_partition_value = 3; + if (this->has_time_partition_value()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *time_partition_value_); + } + + // .flyteidl.artifact.SearchOptions options = 6; if (this->has_options()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *options_); } - // int32 limit = 7; + // int32 limit = 8; if (this->limit() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( @@ -5311,6 +5536,9 @@ void SearchArtifactsRequest::MergeFrom(const SearchArtifactsRequest& from) { if (from.has_partitions()) { mutable_partitions()->::flyteidl::core::Partitions::MergeFrom(from.partitions()); } + if (from.has_time_partition_value()) { + mutable_time_partition_value()->::google::protobuf::Timestamp::MergeFrom(from.time_partition_value()); + } if (from.has_options()) { mutable_options()->::flyteidl::artifact::SearchOptions::MergeFrom(from.options()); } @@ -5352,6 +5580,7 @@ void SearchArtifactsRequest::InternalSwap(SearchArtifactsRequest* other) { GetArenaNoVirtual()); swap(artifact_key_, other->artifact_key_); swap(partitions_, other->partitions_); + swap(time_partition_value_, other->time_partition_value_); swap(options_, other->options_); swap(limit_, other->limit_); } diff --git a/flyteidl/gen/pb-cpp/flyteidl/artifact/artifacts.pb.h b/flyteidl/gen/pb-cpp/flyteidl/artifact/artifacts.pb.h index fb09c5adbc..d8b585822e 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/artifact/artifacts.pb.h +++ b/flyteidl/gen/pb-cpp/flyteidl/artifact/artifacts.pb.h @@ -37,6 +37,7 @@ #include #include #include "google/api/annotations.pb.h" +#include #include "flyteidl/admin/launch_plan.pb.h" #include "flyteidl/core/literals.pb.h" #include "flyteidl/core/types.pb.h" @@ -504,20 +505,6 @@ class CreateArtifactRequest final : ::std::string* release_version(); void set_allocated_version(::std::string* version); - // string tag = 5; - void clear_tag(); - static const int kTagFieldNumber = 5; - const ::std::string& tag() const; - void set_tag(const ::std::string& value); - #if LANG_CXX11 - void set_tag(::std::string&& value); - #endif - void set_tag(const char* value); - void set_tag(const char* value, size_t size); - ::std::string* mutable_tag(); - ::std::string* release_tag(); - void set_allocated_tag(::std::string* tag); - // .flyteidl.core.ArtifactKey artifact_key = 1; bool has_artifact_key() const; void clear_artifact_key(); @@ -536,6 +523,15 @@ class CreateArtifactRequest final : ::flyteidl::artifact::ArtifactSpec* mutable_spec(); void set_allocated_spec(::flyteidl::artifact::ArtifactSpec* spec); + // .google.protobuf.Timestamp time_partition_value = 5; + bool has_time_partition_value() const; + void clear_time_partition_value(); + static const int kTimePartitionValueFieldNumber = 5; + const ::google::protobuf::Timestamp& time_partition_value() const; + ::google::protobuf::Timestamp* release_time_partition_value(); + ::google::protobuf::Timestamp* mutable_time_partition_value(); + void set_allocated_time_partition_value(::google::protobuf::Timestamp* time_partition_value); + // .flyteidl.artifact.ArtifactSource source = 6; bool has_source() const; void clear_source(); @@ -557,9 +553,9 @@ class CreateArtifactRequest final : ::google::protobuf::internal::WireFormatLite::TYPE_STRING, 0 > partitions_; ::google::protobuf::internal::ArenaStringPtr version_; - ::google::protobuf::internal::ArenaStringPtr tag_; ::flyteidl::core::ArtifactKey* artifact_key_; ::flyteidl::artifact::ArtifactSpec* spec_; + ::google::protobuf::Timestamp* time_partition_value_; ::flyteidl::artifact::ArtifactSource* source_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::TableStruct_flyteidl_2fartifact_2fartifacts_2eproto; @@ -851,6 +847,20 @@ class ArtifactSpec final : ::std::string* release_metadata_type(); void set_allocated_metadata_type(::std::string* metadata_type); + // string file_format = 7; + void clear_file_format(); + static const int kFileFormatFieldNumber = 7; + const ::std::string& file_format() const; + void set_file_format(const ::std::string& value); + #if LANG_CXX11 + void set_file_format(::std::string&& value); + #endif + void set_file_format(const char* value); + void set_file_format(const char* value, size_t size); + ::std::string* mutable_file_format(); + ::std::string* release_file_format(); + void set_allocated_file_format(::std::string* file_format); + // .flyteidl.core.Literal value = 1; bool has_value() const; void clear_value(); @@ -878,6 +888,15 @@ class ArtifactSpec final : ::google::protobuf::Any* mutable_user_metadata(); void set_allocated_user_metadata(::google::protobuf::Any* user_metadata); + // .google.protobuf.Timestamp created_at = 6; + bool has_created_at() const; + void clear_created_at(); + static const int kCreatedAtFieldNumber = 6; + const ::google::protobuf::Timestamp& created_at() const; + ::google::protobuf::Timestamp* release_created_at(); + ::google::protobuf::Timestamp* mutable_created_at(); + void set_allocated_created_at(::google::protobuf::Timestamp* created_at); + // @@protoc_insertion_point(class_scope:flyteidl.artifact.ArtifactSpec) private: class HasBitSetters; @@ -885,9 +904,11 @@ class ArtifactSpec final : ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::ArenaStringPtr short_description_; ::google::protobuf::internal::ArenaStringPtr metadata_type_; + ::google::protobuf::internal::ArenaStringPtr file_format_; ::flyteidl::core::Literal* value_; ::flyteidl::core::LiteralType* type_; ::google::protobuf::Any* user_metadata_; + ::google::protobuf::Timestamp* created_at_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::TableStruct_flyteidl_2fartifact_2fartifacts_2eproto; }; @@ -1459,9 +1480,9 @@ class SearchArtifactsRequest final : // accessors ------------------------------------------------------- - // string principal = 3; + // string principal = 4; void clear_principal(); - static const int kPrincipalFieldNumber = 3; + static const int kPrincipalFieldNumber = 4; const ::std::string& principal() const; void set_principal(const ::std::string& value); #if LANG_CXX11 @@ -1473,9 +1494,9 @@ class SearchArtifactsRequest final : ::std::string* release_principal(); void set_allocated_principal(::std::string* principal); - // string version = 4; + // string version = 5; void clear_version(); - static const int kVersionFieldNumber = 4; + static const int kVersionFieldNumber = 5; const ::std::string& version() const; void set_version(const ::std::string& value); #if LANG_CXX11 @@ -1487,9 +1508,9 @@ class SearchArtifactsRequest final : ::std::string* release_version(); void set_allocated_version(::std::string* version); - // string token = 6; + // string token = 7; void clear_token(); - static const int kTokenFieldNumber = 6; + static const int kTokenFieldNumber = 7; const ::std::string& token() const; void set_token(const ::std::string& value); #if LANG_CXX11 @@ -1519,18 +1540,27 @@ class SearchArtifactsRequest final : ::flyteidl::core::Partitions* mutable_partitions(); void set_allocated_partitions(::flyteidl::core::Partitions* partitions); - // .flyteidl.artifact.SearchOptions options = 5; + // .google.protobuf.Timestamp time_partition_value = 3; + bool has_time_partition_value() const; + void clear_time_partition_value(); + static const int kTimePartitionValueFieldNumber = 3; + const ::google::protobuf::Timestamp& time_partition_value() const; + ::google::protobuf::Timestamp* release_time_partition_value(); + ::google::protobuf::Timestamp* mutable_time_partition_value(); + void set_allocated_time_partition_value(::google::protobuf::Timestamp* time_partition_value); + + // .flyteidl.artifact.SearchOptions options = 6; bool has_options() const; void clear_options(); - static const int kOptionsFieldNumber = 5; + static const int kOptionsFieldNumber = 6; const ::flyteidl::artifact::SearchOptions& options() const; ::flyteidl::artifact::SearchOptions* release_options(); ::flyteidl::artifact::SearchOptions* mutable_options(); void set_allocated_options(::flyteidl::artifact::SearchOptions* options); - // int32 limit = 7; + // int32 limit = 8; void clear_limit(); - static const int kLimitFieldNumber = 7; + static const int kLimitFieldNumber = 8; ::google::protobuf::int32 limit() const; void set_limit(::google::protobuf::int32 value); @@ -1544,6 +1574,7 @@ class SearchArtifactsRequest final : ::google::protobuf::internal::ArenaStringPtr token_; ::flyteidl::core::ArtifactKey* artifact_key_; ::flyteidl::core::Partitions* partitions_; + ::google::protobuf::Timestamp* time_partition_value_; ::flyteidl::artifact::SearchOptions* options_; ::google::protobuf::int32 limit_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -3969,57 +4000,50 @@ CreateArtifactRequest::mutable_partitions() { return partitions_.MutableMap(); } -// string tag = 5; -inline void CreateArtifactRequest::clear_tag() { - tag_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +// .google.protobuf.Timestamp time_partition_value = 5; +inline bool CreateArtifactRequest::has_time_partition_value() const { + return this != internal_default_instance() && time_partition_value_ != nullptr; } -inline const ::std::string& CreateArtifactRequest::tag() const { - // @@protoc_insertion_point(field_get:flyteidl.artifact.CreateArtifactRequest.tag) - return tag_.GetNoArena(); +inline const ::google::protobuf::Timestamp& CreateArtifactRequest::time_partition_value() const { + const ::google::protobuf::Timestamp* p = time_partition_value_; + // @@protoc_insertion_point(field_get:flyteidl.artifact.CreateArtifactRequest.time_partition_value) + return p != nullptr ? *p : *reinterpret_cast( + &::google::protobuf::_Timestamp_default_instance_); } -inline void CreateArtifactRequest::set_tag(const ::std::string& value) { - - tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); - // @@protoc_insertion_point(field_set:flyteidl.artifact.CreateArtifactRequest.tag) -} -#if LANG_CXX11 -inline void CreateArtifactRequest::set_tag(::std::string&& value) { +inline ::google::protobuf::Timestamp* CreateArtifactRequest::release_time_partition_value() { + // @@protoc_insertion_point(field_release:flyteidl.artifact.CreateArtifactRequest.time_partition_value) - tag_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); - // @@protoc_insertion_point(field_set_rvalue:flyteidl.artifact.CreateArtifactRequest.tag) -} -#endif -inline void CreateArtifactRequest::set_tag(const char* value) { - GOOGLE_DCHECK(value != nullptr); - - tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); - // @@protoc_insertion_point(field_set_char:flyteidl.artifact.CreateArtifactRequest.tag) -} -inline void CreateArtifactRequest::set_tag(const char* value, size_t size) { - - tag_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(reinterpret_cast(value), size)); - // @@protoc_insertion_point(field_set_pointer:flyteidl.artifact.CreateArtifactRequest.tag) -} -inline ::std::string* CreateArtifactRequest::mutable_tag() { - - // @@protoc_insertion_point(field_mutable:flyteidl.artifact.CreateArtifactRequest.tag) - return tag_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ::google::protobuf::Timestamp* temp = time_partition_value_; + time_partition_value_ = nullptr; + return temp; } -inline ::std::string* CreateArtifactRequest::release_tag() { - // @@protoc_insertion_point(field_release:flyteidl.artifact.CreateArtifactRequest.tag) +inline ::google::protobuf::Timestamp* CreateArtifactRequest::mutable_time_partition_value() { - return tag_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (time_partition_value_ == nullptr) { + auto* p = CreateMaybeMessage<::google::protobuf::Timestamp>(GetArenaNoVirtual()); + time_partition_value_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.artifact.CreateArtifactRequest.time_partition_value) + return time_partition_value_; } -inline void CreateArtifactRequest::set_allocated_tag(::std::string* tag) { - if (tag != nullptr) { +inline void CreateArtifactRequest::set_allocated_time_partition_value(::google::protobuf::Timestamp* time_partition_value) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(time_partition_value_); + } + if (time_partition_value) { + ::google::protobuf::Arena* submessage_arena = + reinterpret_cast<::google::protobuf::MessageLite*>(time_partition_value)->GetArena(); + if (message_arena != submessage_arena) { + time_partition_value = ::google::protobuf::internal::GetOwnedMessage( + message_arena, time_partition_value, submessage_arena); + } } else { } - tag_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), tag); - // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.CreateArtifactRequest.tag) + time_partition_value_ = time_partition_value; + // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.CreateArtifactRequest.time_partition_value) } // .flyteidl.artifact.ArtifactSource source = 6; @@ -4532,6 +4556,105 @@ inline void ArtifactSpec::set_allocated_metadata_type(::std::string* metadata_ty // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.ArtifactSpec.metadata_type) } +// .google.protobuf.Timestamp created_at = 6; +inline bool ArtifactSpec::has_created_at() const { + return this != internal_default_instance() && created_at_ != nullptr; +} +inline const ::google::protobuf::Timestamp& ArtifactSpec::created_at() const { + const ::google::protobuf::Timestamp* p = created_at_; + // @@protoc_insertion_point(field_get:flyteidl.artifact.ArtifactSpec.created_at) + return p != nullptr ? *p : *reinterpret_cast( + &::google::protobuf::_Timestamp_default_instance_); +} +inline ::google::protobuf::Timestamp* ArtifactSpec::release_created_at() { + // @@protoc_insertion_point(field_release:flyteidl.artifact.ArtifactSpec.created_at) + + ::google::protobuf::Timestamp* temp = created_at_; + created_at_ = nullptr; + return temp; +} +inline ::google::protobuf::Timestamp* ArtifactSpec::mutable_created_at() { + + if (created_at_ == nullptr) { + auto* p = CreateMaybeMessage<::google::protobuf::Timestamp>(GetArenaNoVirtual()); + created_at_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.artifact.ArtifactSpec.created_at) + return created_at_; +} +inline void ArtifactSpec::set_allocated_created_at(::google::protobuf::Timestamp* created_at) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(created_at_); + } + if (created_at) { + ::google::protobuf::Arena* submessage_arena = + reinterpret_cast<::google::protobuf::MessageLite*>(created_at)->GetArena(); + if (message_arena != submessage_arena) { + created_at = ::google::protobuf::internal::GetOwnedMessage( + message_arena, created_at, submessage_arena); + } + + } else { + + } + created_at_ = created_at; + // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.ArtifactSpec.created_at) +} + +// string file_format = 7; +inline void ArtifactSpec::clear_file_format() { + file_format_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline const ::std::string& ArtifactSpec::file_format() const { + // @@protoc_insertion_point(field_get:flyteidl.artifact.ArtifactSpec.file_format) + return file_format_.GetNoArena(); +} +inline void ArtifactSpec::set_file_format(const ::std::string& value) { + + file_format_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:flyteidl.artifact.ArtifactSpec.file_format) +} +#if LANG_CXX11 +inline void ArtifactSpec::set_file_format(::std::string&& value) { + + file_format_.SetNoArena( + &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set_rvalue:flyteidl.artifact.ArtifactSpec.file_format) +} +#endif +inline void ArtifactSpec::set_file_format(const char* value) { + GOOGLE_DCHECK(value != nullptr); + + file_format_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + // @@protoc_insertion_point(field_set_char:flyteidl.artifact.ArtifactSpec.file_format) +} +inline void ArtifactSpec::set_file_format(const char* value, size_t size) { + + file_format_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(reinterpret_cast(value), size)); + // @@protoc_insertion_point(field_set_pointer:flyteidl.artifact.ArtifactSpec.file_format) +} +inline ::std::string* ArtifactSpec::mutable_file_format() { + + // @@protoc_insertion_point(field_mutable:flyteidl.artifact.ArtifactSpec.file_format) + return file_format_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline ::std::string* ArtifactSpec::release_file_format() { + // @@protoc_insertion_point(field_release:flyteidl.artifact.ArtifactSpec.file_format) + + return file_format_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); +} +inline void ArtifactSpec::set_allocated_file_format(::std::string* file_format) { + if (file_format != nullptr) { + + } else { + + } + file_format_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), file_format); + // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.ArtifactSpec.file_format) +} + // ------------------------------------------------------------------- // CreateArtifactResponse @@ -4831,7 +4954,53 @@ inline void SearchArtifactsRequest::set_allocated_partitions(::flyteidl::core::P // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.SearchArtifactsRequest.partitions) } -// string principal = 3; +// .google.protobuf.Timestamp time_partition_value = 3; +inline bool SearchArtifactsRequest::has_time_partition_value() const { + return this != internal_default_instance() && time_partition_value_ != nullptr; +} +inline const ::google::protobuf::Timestamp& SearchArtifactsRequest::time_partition_value() const { + const ::google::protobuf::Timestamp* p = time_partition_value_; + // @@protoc_insertion_point(field_get:flyteidl.artifact.SearchArtifactsRequest.time_partition_value) + return p != nullptr ? *p : *reinterpret_cast( + &::google::protobuf::_Timestamp_default_instance_); +} +inline ::google::protobuf::Timestamp* SearchArtifactsRequest::release_time_partition_value() { + // @@protoc_insertion_point(field_release:flyteidl.artifact.SearchArtifactsRequest.time_partition_value) + + ::google::protobuf::Timestamp* temp = time_partition_value_; + time_partition_value_ = nullptr; + return temp; +} +inline ::google::protobuf::Timestamp* SearchArtifactsRequest::mutable_time_partition_value() { + + if (time_partition_value_ == nullptr) { + auto* p = CreateMaybeMessage<::google::protobuf::Timestamp>(GetArenaNoVirtual()); + time_partition_value_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.artifact.SearchArtifactsRequest.time_partition_value) + return time_partition_value_; +} +inline void SearchArtifactsRequest::set_allocated_time_partition_value(::google::protobuf::Timestamp* time_partition_value) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete reinterpret_cast< ::google::protobuf::MessageLite*>(time_partition_value_); + } + if (time_partition_value) { + ::google::protobuf::Arena* submessage_arena = + reinterpret_cast<::google::protobuf::MessageLite*>(time_partition_value)->GetArena(); + if (message_arena != submessage_arena) { + time_partition_value = ::google::protobuf::internal::GetOwnedMessage( + message_arena, time_partition_value, submessage_arena); + } + + } else { + + } + time_partition_value_ = time_partition_value; + // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.SearchArtifactsRequest.time_partition_value) +} + +// string principal = 4; inline void SearchArtifactsRequest::clear_principal() { principal_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } @@ -4884,7 +5053,7 @@ inline void SearchArtifactsRequest::set_allocated_principal(::std::string* princ // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.SearchArtifactsRequest.principal) } -// string version = 4; +// string version = 5; inline void SearchArtifactsRequest::clear_version() { version_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } @@ -4937,7 +5106,7 @@ inline void SearchArtifactsRequest::set_allocated_version(::std::string* version // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.SearchArtifactsRequest.version) } -// .flyteidl.artifact.SearchOptions options = 5; +// .flyteidl.artifact.SearchOptions options = 6; inline bool SearchArtifactsRequest::has_options() const { return this != internal_default_instance() && options_ != nullptr; } @@ -4988,7 +5157,7 @@ inline void SearchArtifactsRequest::set_allocated_options(::flyteidl::artifact:: // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.SearchArtifactsRequest.options) } -// string token = 6; +// string token = 7; inline void SearchArtifactsRequest::clear_token() { token_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } @@ -5041,7 +5210,7 @@ inline void SearchArtifactsRequest::set_allocated_token(::std::string* token) { // @@protoc_insertion_point(field_set_allocated:flyteidl.artifact.SearchArtifactsRequest.token) } -// int32 limit = 7; +// int32 limit = 8; inline void SearchArtifactsRequest::clear_limit() { limit_ = 0; } diff --git a/flyteidl/gen/pb-cpp/flyteidl/core/artifact_id.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/core/artifact_id.pb.cc index 16b41157e4..265bdb6e63 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/core/artifact_id.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/core/artifact_id.pb.cc @@ -21,10 +21,12 @@ extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_InputBindingData_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Partitions_ValueEntry_DoNotUse_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_Partitions_flyteidl_2fcore_2fartifact_5fid_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_TimePartition_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactTag_flyteidl_2fcore_2fartifact_5fid_2eproto; -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_LabelValue_flyteidl_2fcore_2fartifact_5fid_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_LabelValue_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fidentifier_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Identifier_flyteidl_2fcore_2fidentifier_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2ftimestamp_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto; namespace flyteidl { namespace core { class ArtifactKeyDefaultTypeInternal { @@ -34,6 +36,8 @@ class ArtifactKeyDefaultTypeInternal { class ArtifactBindingDataDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; + ::google::protobuf::internal::ArenaStringPtr partition_key_; + bool bind_to_time_partition_; } _ArtifactBindingData_default_instance_; class InputBindingDataDefaultTypeInternal { public: @@ -43,6 +47,7 @@ class LabelValueDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; ::google::protobuf::internal::ArenaStringPtr static_value_; + const ::google::protobuf::Timestamp* time_value_; const ::flyteidl::core::ArtifactBindingData* triggered_binding_; const ::flyteidl::core::InputBindingData* input_binding_; } _LabelValue_default_instance_; @@ -54,10 +59,13 @@ class PartitionsDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; } _Partitions_default_instance_; +class TimePartitionDefaultTypeInternal { + public: + ::google::protobuf::internal::ExplicitlyConstructed _instance; +} _TimePartition_default_instance_; class ArtifactIDDefaultTypeInternal { public: ::google::protobuf::internal::ExplicitlyConstructed _instance; - const ::flyteidl::core::Partitions* partitions_; } _ArtifactID_default_instance_; class ArtifactTagDefaultTypeInternal { public: @@ -130,8 +138,9 @@ static void InitDefaultsLabelValue_flyteidl_2fcore_2fartifact_5fid_2eproto() { ::flyteidl::core::LabelValue::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<2> scc_info_LabelValue_flyteidl_2fcore_2fartifact_5fid_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsLabelValue_flyteidl_2fcore_2fartifact_5fid_2eproto}, { +::google::protobuf::internal::SCCInfo<3> scc_info_LabelValue_flyteidl_2fcore_2fartifact_5fid_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 3, InitDefaultsLabelValue_flyteidl_2fcore_2fartifact_5fid_2eproto}, { + &scc_info_Timestamp_google_2fprotobuf_2ftimestamp_2eproto.base, &scc_info_ArtifactBindingData_flyteidl_2fcore_2fartifact_5fid_2eproto.base, &scc_info_InputBindingData_flyteidl_2fcore_2fartifact_5fid_2eproto.base,}}; @@ -164,6 +173,21 @@ ::google::protobuf::internal::SCCInfo<1> scc_info_Partitions_flyteidl_2fcore_2fa {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsPartitions_flyteidl_2fcore_2fartifact_5fid_2eproto}, { &scc_info_Partitions_ValueEntry_DoNotUse_flyteidl_2fcore_2fartifact_5fid_2eproto.base,}}; +static void InitDefaultsTimePartition_flyteidl_2fcore_2fartifact_5fid_2eproto() { + GOOGLE_PROTOBUF_VERIFY_VERSION; + + { + void* ptr = &::flyteidl::core::_TimePartition_default_instance_; + new (ptr) ::flyteidl::core::TimePartition(); + ::google::protobuf::internal::OnShutdownDestroyMessage(ptr); + } + ::flyteidl::core::TimePartition::InitAsDefaultInstance(); +} + +::google::protobuf::internal::SCCInfo<1> scc_info_TimePartition_flyteidl_2fcore_2fartifact_5fid_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 1, InitDefaultsTimePartition_flyteidl_2fcore_2fartifact_5fid_2eproto}, { + &scc_info_LabelValue_flyteidl_2fcore_2fartifact_5fid_2eproto.base,}}; + static void InitDefaultsArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -175,10 +199,11 @@ static void InitDefaultsArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto() { ::flyteidl::core::ArtifactID::InitAsDefaultInstance(); } -::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto = - {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 2, InitDefaultsArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto}, { +::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto = + {{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 3, InitDefaultsArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto}, { &scc_info_ArtifactKey_flyteidl_2fcore_2fartifact_5fid_2eproto.base, - &scc_info_Partitions_flyteidl_2fcore_2fartifact_5fid_2eproto.base,}}; + &scc_info_Partitions_flyteidl_2fcore_2fartifact_5fid_2eproto.base, + &scc_info_TimePartition_flyteidl_2fcore_2fartifact_5fid_2eproto.base,}}; static void InitDefaultsArtifactTag_flyteidl_2fcore_2fartifact_5fid_2eproto() { GOOGLE_PROTOBUF_VERIFY_VERSION; @@ -236,13 +261,14 @@ void InitDefaults_flyteidl_2fcore_2fartifact_5fid_2eproto() { ::google::protobuf::internal::InitSCC(&scc_info_LabelValue_flyteidl_2fcore_2fartifact_5fid_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_Partitions_ValueEntry_DoNotUse_flyteidl_2fcore_2fartifact_5fid_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_Partitions_flyteidl_2fcore_2fartifact_5fid_2eproto.base); + ::google::protobuf::internal::InitSCC(&scc_info_TimePartition_flyteidl_2fcore_2fartifact_5fid_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_ArtifactTag_flyteidl_2fcore_2fartifact_5fid_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_ArtifactQuery_flyteidl_2fcore_2fartifact_5fid_2eproto.base); ::google::protobuf::internal::InitSCC(&scc_info_Trigger_flyteidl_2fcore_2fartifact_5fid_2eproto.base); } -::google::protobuf::Metadata file_level_metadata_flyteidl_2fcore_2fartifact_5fid_2eproto[10]; +::google::protobuf::Metadata file_level_metadata_flyteidl_2fcore_2fartifact_5fid_2eproto[11]; constexpr ::google::protobuf::EnumDescriptor const** file_level_enum_descriptors_flyteidl_2fcore_2fartifact_5fid_2eproto = nullptr; constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_flyteidl_2fcore_2fartifact_5fid_2eproto = nullptr; @@ -258,11 +284,13 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2fartifact_5fid_2ep ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactBindingData, _internal_metadata_), ~0u, // no _extensions_ - ~0u, // no _oneof_case_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactBindingData, _oneof_case_[0]), ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactBindingData, index_), - PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactBindingData, partition_key_), + offsetof(::flyteidl::core::ArtifactBindingDataDefaultTypeInternal, partition_key_), + offsetof(::flyteidl::core::ArtifactBindingDataDefaultTypeInternal, bind_to_time_partition_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactBindingData, transform_), + PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactBindingData, partition_data_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::InputBindingData, _internal_metadata_), ~0u, // no _extensions_ @@ -275,6 +303,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2fartifact_5fid_2ep PROTOBUF_FIELD_OFFSET(::flyteidl::core::LabelValue, _oneof_case_[0]), ~0u, // no _weak_field_map_ offsetof(::flyteidl::core::LabelValueDefaultTypeInternal, static_value_), + offsetof(::flyteidl::core::LabelValueDefaultTypeInternal, time_value_), offsetof(::flyteidl::core::LabelValueDefaultTypeInternal, triggered_binding_), offsetof(::flyteidl::core::LabelValueDefaultTypeInternal, input_binding_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::LabelValue, value_), @@ -294,14 +323,20 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2fartifact_5fid_2ep ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::Partitions, value_), ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::TimePartition, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + PROTOBUF_FIELD_OFFSET(::flyteidl::core::TimePartition, value_), + ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactID, _internal_metadata_), ~0u, // no _extensions_ - PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactID, _oneof_case_[0]), + ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactID, artifact_key_), PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactID, version_), - offsetof(::flyteidl::core::ArtifactIDDefaultTypeInternal, partitions_), - PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactID, dimensions_), + PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactID, partitions_), + PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactID, time_partition_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::core::ArtifactTag, _internal_metadata_), ~0u, // no _extensions_ @@ -330,14 +365,15 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fcore_2fartifact_5fid_2ep static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::flyteidl::core::ArtifactKey)}, { 8, -1, sizeof(::flyteidl::core::ArtifactBindingData)}, - { 16, -1, sizeof(::flyteidl::core::InputBindingData)}, - { 22, -1, sizeof(::flyteidl::core::LabelValue)}, - { 31, 38, sizeof(::flyteidl::core::Partitions_ValueEntry_DoNotUse)}, - { 40, -1, sizeof(::flyteidl::core::Partitions)}, - { 46, -1, sizeof(::flyteidl::core::ArtifactID)}, - { 55, -1, sizeof(::flyteidl::core::ArtifactTag)}, - { 62, -1, sizeof(::flyteidl::core::ArtifactQuery)}, - { 72, -1, sizeof(::flyteidl::core::Trigger)}, + { 18, -1, sizeof(::flyteidl::core::InputBindingData)}, + { 24, -1, sizeof(::flyteidl::core::LabelValue)}, + { 34, 41, sizeof(::flyteidl::core::Partitions_ValueEntry_DoNotUse)}, + { 43, -1, sizeof(::flyteidl::core::Partitions)}, + { 49, -1, sizeof(::flyteidl::core::TimePartition)}, + { 55, -1, sizeof(::flyteidl::core::ArtifactID)}, + { 64, -1, sizeof(::flyteidl::core::ArtifactTag)}, + { 71, -1, sizeof(::flyteidl::core::ArtifactQuery)}, + { 81, -1, sizeof(::flyteidl::core::Trigger)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -347,6 +383,7 @@ static ::google::protobuf::Message const * const file_default_instances[] = { reinterpret_cast(&::flyteidl::core::_LabelValue_default_instance_), reinterpret_cast(&::flyteidl::core::_Partitions_ValueEntry_DoNotUse_default_instance_), reinterpret_cast(&::flyteidl::core::_Partitions_default_instance_), + reinterpret_cast(&::flyteidl::core::_TimePartition_default_instance_), reinterpret_cast(&::flyteidl::core::_ArtifactID_default_instance_), reinterpret_cast(&::flyteidl::core::_ArtifactTag_default_instance_), reinterpret_cast(&::flyteidl::core::_ArtifactQuery_default_instance_), @@ -356,53 +393,60 @@ static ::google::protobuf::Message const * const file_default_instances[] = { ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_flyteidl_2fcore_2fartifact_5fid_2eproto = { {}, AddDescriptors_flyteidl_2fcore_2fartifact_5fid_2eproto, "flyteidl/core/artifact_id.proto", schemas, file_default_instances, TableStruct_flyteidl_2fcore_2fartifact_5fid_2eproto::offsets, - file_level_metadata_flyteidl_2fcore_2fartifact_5fid_2eproto, 10, file_level_enum_descriptors_flyteidl_2fcore_2fartifact_5fid_2eproto, file_level_service_descriptors_flyteidl_2fcore_2fartifact_5fid_2eproto, + file_level_metadata_flyteidl_2fcore_2fartifact_5fid_2eproto, 11, file_level_enum_descriptors_flyteidl_2fcore_2fartifact_5fid_2eproto, file_level_service_descriptors_flyteidl_2fcore_2fartifact_5fid_2eproto, }; const char descriptor_table_protodef_flyteidl_2fcore_2fartifact_5fid_2eproto[] = "\n\037flyteidl/core/artifact_id.proto\022\rflyte" - "idl.core\032\036flyteidl/core/identifier.proto" - "\"<\n\013ArtifactKey\022\017\n\007project\030\001 \001(\t\022\016\n\006doma" - "in\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"N\n\023ArtifactBindin" - "gData\022\r\n\005index\030\001 \001(\r\022\025\n\rpartition_key\030\002 " - "\001(\t\022\021\n\ttransform\030\003 \001(\t\"\037\n\020InputBindingDa" - "ta\022\013\n\003var\030\001 \001(\t\"\250\001\n\nLabelValue\022\026\n\014static" - "_value\030\001 \001(\tH\000\022\?\n\021triggered_binding\030\002 \001(" - "\0132\".flyteidl.core.ArtifactBindingDataH\000\022" - "8\n\rinput_binding\030\003 \001(\0132\037.flyteidl.core.I" - "nputBindingDataH\000B\007\n\005value\"\212\001\n\nPartition" - "s\0223\n\005value\030\001 \003(\0132$.flyteidl.core.Partiti" - "ons.ValueEntry\032G\n\nValueEntry\022\013\n\003key\030\001 \001(" - "\t\022(\n\005value\030\002 \001(\0132\031.flyteidl.core.LabelVa" - "lue:\0028\001\"\216\001\n\nArtifactID\0220\n\014artifact_key\030\001" - " \001(\0132\032.flyteidl.core.ArtifactKey\022\017\n\007vers" - "ion\030\002 \001(\t\022/\n\npartitions\030\003 \001(\0132\031.flyteidl" - ".core.PartitionsH\000B\014\n\ndimensions\"i\n\013Arti" - "factTag\0220\n\014artifact_key\030\001 \001(\0132\032.flyteidl" - ".core.ArtifactKey\022(\n\005value\030\002 \001(\0132\031.flyte" - "idl.core.LabelValue\"\311\001\n\rArtifactQuery\0220\n" - "\013artifact_id\030\001 \001(\0132\031.flyteidl.core.Artif" - "actIDH\000\0222\n\014artifact_tag\030\002 \001(\0132\032.flyteidl" - ".core.ArtifactTagH\000\022\r\n\003uri\030\003 \001(\tH\000\0225\n\007bi" - "nding\030\004 \001(\0132\".flyteidl.core.ArtifactBind" - "ingDataH\000B\014\n\nidentifier\"e\n\007Trigger\022-\n\ntr" - "igger_id\030\001 \001(\0132\031.flyteidl.core.Identifie" - "r\022+\n\010triggers\030\002 \003(\0132\031.flyteidl.core.Arti" - "factIDB= 1900 const int ArtifactBindingData::kIndexFieldNumber; const int ArtifactBindingData::kPartitionKeyFieldNumber; +const int ArtifactBindingData::kBindToTimePartitionFieldNumber; const int ArtifactBindingData::kTransformFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 @@ -876,24 +924,34 @@ ArtifactBindingData::ArtifactBindingData(const ArtifactBindingData& from) : ::google::protobuf::Message(), _internal_metadata_(nullptr) { _internal_metadata_.MergeFrom(from._internal_metadata_); - partition_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - if (from.partition_key().size() > 0) { - partition_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.partition_key_); - } transform_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (from.transform().size() > 0) { transform_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.transform_); } index_ = from.index_; + clear_has_partition_data(); + switch (from.partition_data_case()) { + case kPartitionKey: { + set_partition_key(from.partition_key()); + break; + } + case kBindToTimePartition: { + set_bind_to_time_partition(from.bind_to_time_partition()); + break; + } + case PARTITION_DATA_NOT_SET: { + break; + } + } // @@protoc_insertion_point(copy_constructor:flyteidl.core.ArtifactBindingData) } void ArtifactBindingData::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_ArtifactBindingData_flyteidl_2fcore_2fartifact_5fid_2eproto.base); - partition_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); transform_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); index_ = 0u; + clear_has_partition_data(); } ArtifactBindingData::~ArtifactBindingData() { @@ -902,8 +960,10 @@ ArtifactBindingData::~ArtifactBindingData() { } void ArtifactBindingData::SharedDtor() { - partition_key_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); transform_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (has_partition_data()) { + clear_partition_data(); + } } void ArtifactBindingData::SetCachedSize(int size) const { @@ -915,15 +975,34 @@ const ArtifactBindingData& ArtifactBindingData::default_instance() { } +void ArtifactBindingData::clear_partition_data() { +// @@protoc_insertion_point(one_of_clear_start:flyteidl.core.ArtifactBindingData) + switch (partition_data_case()) { + case kPartitionKey: { + partition_data_.partition_key_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + break; + } + case kBindToTimePartition: { + // No need to clear + break; + } + case PARTITION_DATA_NOT_SET: { + break; + } + } + _oneof_case_[0] = PARTITION_DATA_NOT_SET; +} + + void ArtifactBindingData::Clear() { // @@protoc_insertion_point(message_clear_start:flyteidl.core.ArtifactBindingData) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - partition_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); transform_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); index_ = 0u; + clear_partition_data(); _internal_metadata_.Clear(); } @@ -963,9 +1042,16 @@ const char* ArtifactBindingData::_InternalParse(const char* begin, const char* e ptr += size; break; } - // string transform = 3; + // bool bind_to_time_partition = 3; case 3: { - if (static_cast<::google::protobuf::uint8>(tag) != 26) goto handle_unusual; + if (static_cast<::google::protobuf::uint8>(tag) != 24) goto handle_unusual; + msg->set_bind_to_time_partition(::google::protobuf::internal::ReadVarint(&ptr)); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + break; + } + // string transform = 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); ctx->extra_parse_data().SetFieldName("flyteidl.core.ArtifactBindingData.transform"); @@ -1041,9 +1127,23 @@ bool ArtifactBindingData::MergePartialFromCodedStream( break; } - // string transform = 3; + // bool bind_to_time_partition = 3; case 3: { - if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { + if (static_cast< ::google::protobuf::uint8>(tag) == (24 & 0xFF)) { + clear_partition_data(); + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( + input, &partition_data_.bind_to_time_partition_))); + set_has_bind_to_time_partition(); + } else { + goto handle_unusual; + } + break; + } + + // string transform = 4; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_transform())); DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String( @@ -1089,7 +1189,7 @@ void ArtifactBindingData::SerializeWithCachedSizes( } // string partition_key = 2; - if (this->partition_key().size() > 0) { + if (has_partition_key()) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->partition_key().data(), static_cast(this->partition_key().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, @@ -1098,14 +1198,19 @@ void ArtifactBindingData::SerializeWithCachedSizes( 2, this->partition_key(), output); } - // string transform = 3; + // bool bind_to_time_partition = 3; + if (has_bind_to_time_partition()) { + ::google::protobuf::internal::WireFormatLite::WriteBool(3, this->bind_to_time_partition(), output); + } + + // string transform = 4; if (this->transform().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->transform().data(), static_cast(this->transform().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "flyteidl.core.ArtifactBindingData.transform"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( - 3, this->transform(), output); + 4, this->transform(), output); } if (_internal_metadata_.have_unknown_fields()) { @@ -1127,7 +1232,7 @@ ::google::protobuf::uint8* ArtifactBindingData::InternalSerializeWithCachedSizes } // string partition_key = 2; - if (this->partition_key().size() > 0) { + if (has_partition_key()) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->partition_key().data(), static_cast(this->partition_key().length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, @@ -1137,7 +1242,12 @@ ::google::protobuf::uint8* ArtifactBindingData::InternalSerializeWithCachedSizes 2, this->partition_key(), target); } - // string transform = 3; + // bool bind_to_time_partition = 3; + if (has_bind_to_time_partition()) { + target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(3, this->bind_to_time_partition(), target); + } + + // string transform = 4; if (this->transform().size() > 0) { ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( this->transform().data(), static_cast(this->transform().length()), @@ -1145,7 +1255,7 @@ ::google::protobuf::uint8* ArtifactBindingData::InternalSerializeWithCachedSizes "flyteidl.core.ArtifactBindingData.transform"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 3, this->transform(), target); + 4, this->transform(), target); } if (_internal_metadata_.have_unknown_fields()) { @@ -1169,14 +1279,7 @@ size_t ArtifactBindingData::ByteSizeLong() const { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - // string partition_key = 2; - if (this->partition_key().size() > 0) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->partition_key()); - } - - // string transform = 3; + // string transform = 4; if (this->transform().size() > 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( @@ -1190,6 +1293,23 @@ size_t ArtifactBindingData::ByteSizeLong() const { this->index()); } + switch (partition_data_case()) { + // string partition_key = 2; + case kPartitionKey: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::StringSize( + this->partition_key()); + break; + } + // bool bind_to_time_partition = 3; + case kBindToTimePartition: { + total_size += 1 + 1; + break; + } + case PARTITION_DATA_NOT_SET: { + break; + } + } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; @@ -1217,10 +1337,6 @@ void ArtifactBindingData::MergeFrom(const ArtifactBindingData& from) { ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - if (from.partition_key().size() > 0) { - - partition_key_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.partition_key_); - } if (from.transform().size() > 0) { transform_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.transform_); @@ -1228,6 +1344,19 @@ void ArtifactBindingData::MergeFrom(const ArtifactBindingData& from) { if (from.index() != 0) { set_index(from.index()); } + switch (from.partition_data_case()) { + case kPartitionKey: { + set_partition_key(from.partition_key()); + break; + } + case kBindToTimePartition: { + set_bind_to_time_partition(from.bind_to_time_partition()); + break; + } + case PARTITION_DATA_NOT_SET: { + break; + } + } } void ArtifactBindingData::CopyFrom(const ::google::protobuf::Message& from) { @@ -1255,11 +1384,11 @@ void ArtifactBindingData::Swap(ArtifactBindingData* other) { void ArtifactBindingData::InternalSwap(ArtifactBindingData* other) { using std::swap; _internal_metadata_.Swap(&other->_internal_metadata_); - partition_key_.Swap(&other->partition_key_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), - GetArenaNoVirtual()); transform_.Swap(&other->transform_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); swap(index_, other->index_); + swap(partition_data_, other->partition_data_); + swap(_oneof_case_[0], other->_oneof_case_[0]); } ::google::protobuf::Metadata ArtifactBindingData::GetMetadata() const { @@ -1570,6 +1699,8 @@ ::google::protobuf::Metadata InputBindingData::GetMetadata() const { void LabelValue::InitAsDefaultInstance() { ::flyteidl::core::_LabelValue_default_instance_.static_value_.UnsafeSetDefault( &::google::protobuf::internal::GetEmptyStringAlreadyInited()); + ::flyteidl::core::_LabelValue_default_instance_.time_value_ = const_cast< ::google::protobuf::Timestamp*>( + ::google::protobuf::Timestamp::internal_default_instance()); ::flyteidl::core::_LabelValue_default_instance_.triggered_binding_ = const_cast< ::flyteidl::core::ArtifactBindingData*>( ::flyteidl::core::ArtifactBindingData::internal_default_instance()); ::flyteidl::core::_LabelValue_default_instance_.input_binding_ = const_cast< ::flyteidl::core::InputBindingData*>( @@ -1577,10 +1708,15 @@ void LabelValue::InitAsDefaultInstance() { } class LabelValue::HasBitSetters { public: + static const ::google::protobuf::Timestamp& time_value(const LabelValue* msg); static const ::flyteidl::core::ArtifactBindingData& triggered_binding(const LabelValue* msg); static const ::flyteidl::core::InputBindingData& input_binding(const LabelValue* msg); }; +const ::google::protobuf::Timestamp& +LabelValue::HasBitSetters::time_value(const LabelValue* msg) { + return *msg->value_.time_value_; +} const ::flyteidl::core::ArtifactBindingData& LabelValue::HasBitSetters::triggered_binding(const LabelValue* msg) { return *msg->value_.triggered_binding_; @@ -1589,6 +1725,27 @@ const ::flyteidl::core::InputBindingData& LabelValue::HasBitSetters::input_binding(const LabelValue* msg) { return *msg->value_.input_binding_; } +void LabelValue::set_allocated_time_value(::google::protobuf::Timestamp* time_value) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + clear_value(); + if (time_value) { + ::google::protobuf::Arena* submessage_arena = + reinterpret_cast<::google::protobuf::MessageLite*>(time_value)->GetArena(); + if (message_arena != submessage_arena) { + time_value = ::google::protobuf::internal::GetOwnedMessage( + message_arena, time_value, submessage_arena); + } + set_has_time_value(); + value_.time_value_ = time_value; + } + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.LabelValue.time_value) +} +void LabelValue::clear_time_value() { + if (has_time_value()) { + delete value_.time_value_; + clear_has_value(); + } +} void LabelValue::set_allocated_triggered_binding(::flyteidl::core::ArtifactBindingData* triggered_binding) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); clear_value(); @@ -1619,6 +1776,7 @@ void LabelValue::set_allocated_input_binding(::flyteidl::core::InputBindingData* } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int LabelValue::kStaticValueFieldNumber; +const int LabelValue::kTimeValueFieldNumber; const int LabelValue::kTriggeredBindingFieldNumber; const int LabelValue::kInputBindingFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 @@ -1638,6 +1796,10 @@ LabelValue::LabelValue(const LabelValue& from) set_static_value(from.static_value()); break; } + case kTimeValue: { + mutable_time_value()->::google::protobuf::Timestamp::MergeFrom(from.time_value()); + break; + } case kTriggeredBinding: { mutable_triggered_binding()->::flyteidl::core::ArtifactBindingData::MergeFrom(from.triggered_binding()); break; @@ -1686,6 +1848,10 @@ void LabelValue::clear_value() { value_.static_value_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); break; } + case kTimeValue: { + delete value_.time_value_; + break; + } case kTriggeredBinding: { delete value_.triggered_binding_; break; @@ -1741,24 +1907,37 @@ const char* LabelValue::_InternalParse(const char* begin, const char* end, void* ptr += size; break; } - // .flyteidl.core.ArtifactBindingData triggered_binding = 2; + // .google.protobuf.Timestamp time_value = 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::ArtifactBindingData::_InternalParse; - object = msg->mutable_triggered_binding(); + parser_till_end = ::google::protobuf::Timestamp::_InternalParse; + object = msg->mutable_time_value(); 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.core.InputBindingData input_binding = 3; + // .flyteidl.core.ArtifactBindingData triggered_binding = 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::core::ArtifactBindingData::_InternalParse; + object = msg->mutable_triggered_binding(); + 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.core.InputBindingData input_binding = 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::core::InputBindingData::_InternalParse; object = msg->mutable_input_binding(); if (size > end - ptr) goto len_delim_till_end; @@ -1816,20 +1995,31 @@ bool LabelValue::MergePartialFromCodedStream( break; } - // .flyteidl.core.ArtifactBindingData triggered_binding = 2; + // .google.protobuf.Timestamp time_value = 2; case 2: { if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( - input, mutable_triggered_binding())); + input, mutable_time_value())); } else { goto handle_unusual; } break; } - // .flyteidl.core.InputBindingData input_binding = 3; + // .flyteidl.core.ArtifactBindingData triggered_binding = 3; case 3: { if (static_cast< ::google::protobuf::uint8>(tag) == (26 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_triggered_binding())); + } else { + goto handle_unusual; + } + break; + } + + // .flyteidl.core.InputBindingData input_binding = 4; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( input, mutable_input_binding())); } else { @@ -1875,16 +2065,22 @@ void LabelValue::SerializeWithCachedSizes( 1, this->static_value(), output); } - // .flyteidl.core.ArtifactBindingData triggered_binding = 2; + // .google.protobuf.Timestamp time_value = 2; + if (has_time_value()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 2, HasBitSetters::time_value(this), output); + } + + // .flyteidl.core.ArtifactBindingData triggered_binding = 3; if (has_triggered_binding()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 2, HasBitSetters::triggered_binding(this), output); + 3, HasBitSetters::triggered_binding(this), output); } - // .flyteidl.core.InputBindingData input_binding = 3; + // .flyteidl.core.InputBindingData input_binding = 4; if (has_input_binding()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( - 3, HasBitSetters::input_binding(this), output); + 4, HasBitSetters::input_binding(this), output); } if (_internal_metadata_.have_unknown_fields()) { @@ -1911,18 +2107,25 @@ ::google::protobuf::uint8* LabelValue::InternalSerializeWithCachedSizesToArray( 1, this->static_value(), target); } - // .flyteidl.core.ArtifactBindingData triggered_binding = 2; + // .google.protobuf.Timestamp time_value = 2; + if (has_time_value()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 2, HasBitSetters::time_value(this), target); + } + + // .flyteidl.core.ArtifactBindingData triggered_binding = 3; if (has_triggered_binding()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( - 2, HasBitSetters::triggered_binding(this), target); + 3, HasBitSetters::triggered_binding(this), target); } - // .flyteidl.core.InputBindingData input_binding = 3; + // .flyteidl.core.InputBindingData input_binding = 4; if (has_input_binding()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( - 3, HasBitSetters::input_binding(this), target); + 4, HasBitSetters::input_binding(this), target); } if (_internal_metadata_.have_unknown_fields()) { @@ -1954,14 +2157,21 @@ size_t LabelValue::ByteSizeLong() const { this->static_value()); break; } - // .flyteidl.core.ArtifactBindingData triggered_binding = 2; + // .google.protobuf.Timestamp time_value = 2; + case kTimeValue: { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *value_.time_value_); + break; + } + // .flyteidl.core.ArtifactBindingData triggered_binding = 3; case kTriggeredBinding: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( *value_.triggered_binding_); break; } - // .flyteidl.core.InputBindingData input_binding = 3; + // .flyteidl.core.InputBindingData input_binding = 4; case kInputBinding: { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( @@ -2004,6 +2214,10 @@ void LabelValue::MergeFrom(const LabelValue& from) { set_static_value(from.static_value()); break; } + case kTimeValue: { + mutable_time_value()->::google::protobuf::Timestamp::MergeFrom(from.time_value()); + break; + } case kTriggeredBinding: { mutable_triggered_binding()->::flyteidl::core::ArtifactBindingData::MergeFrom(from.triggered_binding()); break; @@ -2460,18 +2674,308 @@ ::google::protobuf::Metadata Partitions::GetMetadata() const { } +// =================================================================== + +void TimePartition::InitAsDefaultInstance() { + ::flyteidl::core::_TimePartition_default_instance_._instance.get_mutable()->value_ = const_cast< ::flyteidl::core::LabelValue*>( + ::flyteidl::core::LabelValue::internal_default_instance()); +} +class TimePartition::HasBitSetters { + public: + static const ::flyteidl::core::LabelValue& value(const TimePartition* msg); +}; + +const ::flyteidl::core::LabelValue& +TimePartition::HasBitSetters::value(const TimePartition* msg) { + return *msg->value_; +} +#if !defined(_MSC_VER) || _MSC_VER >= 1900 +const int TimePartition::kValueFieldNumber; +#endif // !defined(_MSC_VER) || _MSC_VER >= 1900 + +TimePartition::TimePartition() + : ::google::protobuf::Message(), _internal_metadata_(nullptr) { + SharedCtor(); + // @@protoc_insertion_point(constructor:flyteidl.core.TimePartition) +} +TimePartition::TimePartition(const TimePartition& from) + : ::google::protobuf::Message(), + _internal_metadata_(nullptr) { + _internal_metadata_.MergeFrom(from._internal_metadata_); + if (from.has_value()) { + value_ = new ::flyteidl::core::LabelValue(*from.value_); + } else { + value_ = nullptr; + } + // @@protoc_insertion_point(copy_constructor:flyteidl.core.TimePartition) +} + +void TimePartition::SharedCtor() { + ::google::protobuf::internal::InitSCC( + &scc_info_TimePartition_flyteidl_2fcore_2fartifact_5fid_2eproto.base); + value_ = nullptr; +} + +TimePartition::~TimePartition() { + // @@protoc_insertion_point(destructor:flyteidl.core.TimePartition) + SharedDtor(); +} + +void TimePartition::SharedDtor() { + if (this != internal_default_instance()) delete value_; +} + +void TimePartition::SetCachedSize(int size) const { + _cached_size_.Set(size); +} +const TimePartition& TimePartition::default_instance() { + ::google::protobuf::internal::InitSCC(&::scc_info_TimePartition_flyteidl_2fcore_2fartifact_5fid_2eproto.base); + return *internal_default_instance(); +} + + +void TimePartition::Clear() { +// @@protoc_insertion_point(message_clear_start:flyteidl.core.TimePartition) + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + if (GetArenaNoVirtual() == nullptr && value_ != nullptr) { + delete value_; + } + value_ = nullptr; + _internal_metadata_.Clear(); +} + +#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER +const char* TimePartition::_InternalParse(const char* begin, const char* end, void* object, + ::google::protobuf::internal::ParseContext* ctx) { + auto msg = static_cast(object); + ::google::protobuf::int32 size; (void)size; + int depth; (void)depth; + ::google::protobuf::uint32 tag; + ::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end; + auto ptr = begin; + while (ptr < end) { + ptr = ::google::protobuf::io::Parse32(ptr, &tag); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + switch (tag >> 3) { + // .flyteidl.core.LabelValue value = 1; + case 1: { + if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual; + ptr = ::google::protobuf::io::ReadSize(ptr, &size); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + parser_till_end = ::flyteidl::core::LabelValue::_InternalParse; + object = msg->mutable_value(); + 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) { + ctx->EndGroup(tag); + return ptr; + } + auto res = UnknownFieldParse(tag, {_InternalParse, msg}, + ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx); + ptr = res.first; + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr); + if (res.second) return ptr; + } + } // 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 TimePartition::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure + ::google::protobuf::uint32 tag; + // @@protoc_insertion_point(parse_start:flyteidl.core.TimePartition) + for (;;) { + ::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); + tag = p.first; + if (!p.second) goto handle_unusual; + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // .flyteidl.core.LabelValue value = 1; + case 1: { + if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_value())); + } else { + goto handle_unusual; + } + break; + } + + default: { + handle_unusual: + if (tag == 0) { + goto success; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, _internal_metadata_.mutable_unknown_fields())); + break; + } + } + } +success: + // @@protoc_insertion_point(parse_success:flyteidl.core.TimePartition) + return true; +failure: + // @@protoc_insertion_point(parse_failure:flyteidl.core.TimePartition) + return false; +#undef DO_ +} +#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + +void TimePartition::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // @@protoc_insertion_point(serialize_start:flyteidl.core.TimePartition) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .flyteidl.core.LabelValue value = 1; + if (this->has_value()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 1, HasBitSetters::value(this), output); + } + + if (_internal_metadata_.have_unknown_fields()) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + _internal_metadata_.unknown_fields(), output); + } + // @@protoc_insertion_point(serialize_end:flyteidl.core.TimePartition) +} + +::google::protobuf::uint8* TimePartition::InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const { + // @@protoc_insertion_point(serialize_to_array_start:flyteidl.core.TimePartition) + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + // .flyteidl.core.LabelValue value = 1; + if (this->has_value()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 1, HasBitSetters::value(this), target); + } + + if (_internal_metadata_.have_unknown_fields()) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields(), target); + } + // @@protoc_insertion_point(serialize_to_array_end:flyteidl.core.TimePartition) + return target; +} + +size_t TimePartition::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:flyteidl.core.TimePartition) + size_t total_size = 0; + + if (_internal_metadata_.have_unknown_fields()) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + _internal_metadata_.unknown_fields()); + } + ::google::protobuf::uint32 cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // .flyteidl.core.LabelValue value = 1; + if (this->has_value()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *value_); + } + + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); + SetCachedSize(cached_size); + return total_size; +} + +void TimePartition::MergeFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_merge_from_start:flyteidl.core.TimePartition) + GOOGLE_DCHECK_NE(&from, this); + const TimePartition* source = + ::google::protobuf::DynamicCastToGenerated( + &from); + if (source == nullptr) { + // @@protoc_insertion_point(generalized_merge_from_cast_fail:flyteidl.core.TimePartition) + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + // @@protoc_insertion_point(generalized_merge_from_cast_success:flyteidl.core.TimePartition) + MergeFrom(*source); + } +} + +void TimePartition::MergeFrom(const TimePartition& from) { +// @@protoc_insertion_point(class_specific_merge_from_start:flyteidl.core.TimePartition) + GOOGLE_DCHECK_NE(&from, this); + _internal_metadata_.MergeFrom(from._internal_metadata_); + ::google::protobuf::uint32 cached_has_bits = 0; + (void) cached_has_bits; + + if (from.has_value()) { + mutable_value()->::flyteidl::core::LabelValue::MergeFrom(from.value()); + } +} + +void TimePartition::CopyFrom(const ::google::protobuf::Message& from) { +// @@protoc_insertion_point(generalized_copy_from_start:flyteidl.core.TimePartition) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void TimePartition::CopyFrom(const TimePartition& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:flyteidl.core.TimePartition) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool TimePartition::IsInitialized() const { + return true; +} + +void TimePartition::Swap(TimePartition* other) { + if (other == this) return; + InternalSwap(other); +} +void TimePartition::InternalSwap(TimePartition* other) { + using std::swap; + _internal_metadata_.Swap(&other->_internal_metadata_); + swap(value_, other->value_); +} + +::google::protobuf::Metadata TimePartition::GetMetadata() const { + ::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_flyteidl_2fcore_2fartifact_5fid_2eproto); + return ::file_level_metadata_flyteidl_2fcore_2fartifact_5fid_2eproto[kIndexInFileMessages]; +} + + // =================================================================== void ArtifactID::InitAsDefaultInstance() { ::flyteidl::core::_ArtifactID_default_instance_._instance.get_mutable()->artifact_key_ = const_cast< ::flyteidl::core::ArtifactKey*>( ::flyteidl::core::ArtifactKey::internal_default_instance()); - ::flyteidl::core::_ArtifactID_default_instance_.partitions_ = const_cast< ::flyteidl::core::Partitions*>( + ::flyteidl::core::_ArtifactID_default_instance_._instance.get_mutable()->partitions_ = const_cast< ::flyteidl::core::Partitions*>( ::flyteidl::core::Partitions::internal_default_instance()); + ::flyteidl::core::_ArtifactID_default_instance_._instance.get_mutable()->time_partition_ = const_cast< ::flyteidl::core::TimePartition*>( + ::flyteidl::core::TimePartition::internal_default_instance()); } class ArtifactID::HasBitSetters { public: static const ::flyteidl::core::ArtifactKey& artifact_key(const ArtifactID* msg); static const ::flyteidl::core::Partitions& partitions(const ArtifactID* msg); + static const ::flyteidl::core::TimePartition& time_partition(const ArtifactID* msg); }; const ::flyteidl::core::ArtifactKey& @@ -2480,26 +2984,17 @@ ArtifactID::HasBitSetters::artifact_key(const ArtifactID* msg) { } const ::flyteidl::core::Partitions& ArtifactID::HasBitSetters::partitions(const ArtifactID* msg) { - return *msg->dimensions_.partitions_; + return *msg->partitions_; } -void ArtifactID::set_allocated_partitions(::flyteidl::core::Partitions* partitions) { - ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); - clear_dimensions(); - if (partitions) { - ::google::protobuf::Arena* submessage_arena = nullptr; - if (message_arena != submessage_arena) { - partitions = ::google::protobuf::internal::GetOwnedMessage( - message_arena, partitions, submessage_arena); - } - set_has_partitions(); - dimensions_.partitions_ = partitions; - } - // @@protoc_insertion_point(field_set_allocated:flyteidl.core.ArtifactID.partitions) +const ::flyteidl::core::TimePartition& +ArtifactID::HasBitSetters::time_partition(const ArtifactID* msg) { + return *msg->time_partition_; } #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int ArtifactID::kArtifactKeyFieldNumber; const int ArtifactID::kVersionFieldNumber; const int ArtifactID::kPartitionsFieldNumber; +const int ArtifactID::kTimePartitionFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 ArtifactID::ArtifactID() @@ -2520,15 +3015,15 @@ ArtifactID::ArtifactID(const ArtifactID& from) } else { artifact_key_ = nullptr; } - clear_has_dimensions(); - switch (from.dimensions_case()) { - case kPartitions: { - mutable_partitions()->::flyteidl::core::Partitions::MergeFrom(from.partitions()); - break; - } - case DIMENSIONS_NOT_SET: { - break; - } + if (from.has_partitions()) { + partitions_ = new ::flyteidl::core::Partitions(*from.partitions_); + } else { + partitions_ = nullptr; + } + if (from.has_time_partition()) { + time_partition_ = new ::flyteidl::core::TimePartition(*from.time_partition_); + } else { + time_partition_ = nullptr; } // @@protoc_insertion_point(copy_constructor:flyteidl.core.ArtifactID) } @@ -2537,8 +3032,9 @@ void ArtifactID::SharedCtor() { ::google::protobuf::internal::InitSCC( &scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto.base); version_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); - artifact_key_ = nullptr; - clear_has_dimensions(); + ::memset(&artifact_key_, 0, static_cast( + reinterpret_cast(&time_partition_) - + reinterpret_cast(&artifact_key_)) + sizeof(time_partition_)); } ArtifactID::~ArtifactID() { @@ -2549,9 +3045,8 @@ ArtifactID::~ArtifactID() { void ArtifactID::SharedDtor() { version_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); if (this != internal_default_instance()) delete artifact_key_; - if (has_dimensions()) { - clear_dimensions(); - } + if (this != internal_default_instance()) delete partitions_; + if (this != internal_default_instance()) delete time_partition_; } void ArtifactID::SetCachedSize(int size) const { @@ -2563,21 +3058,6 @@ const ArtifactID& ArtifactID::default_instance() { } -void ArtifactID::clear_dimensions() { -// @@protoc_insertion_point(one_of_clear_start:flyteidl.core.ArtifactID) - switch (dimensions_case()) { - case kPartitions: { - delete dimensions_.partitions_; - break; - } - case DIMENSIONS_NOT_SET: { - break; - } - } - _oneof_case_[0] = DIMENSIONS_NOT_SET; -} - - void ArtifactID::Clear() { // @@protoc_insertion_point(message_clear_start:flyteidl.core.ArtifactID) ::google::protobuf::uint32 cached_has_bits = 0; @@ -2589,7 +3069,14 @@ void ArtifactID::Clear() { delete artifact_key_; } artifact_key_ = nullptr; - clear_dimensions(); + if (GetArenaNoVirtual() == nullptr && partitions_ != nullptr) { + delete partitions_; + } + partitions_ = nullptr; + if (GetArenaNoVirtual() == nullptr && time_partition_ != nullptr) { + delete time_partition_; + } + time_partition_ = nullptr; _internal_metadata_.Clear(); } @@ -2648,6 +3135,19 @@ const char* ArtifactID::_InternalParse(const char* begin, const char* end, void* {parser_till_end, object}, ptr - size, ptr)); break; } + // .flyteidl.core.TimePartition time_partition = 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::core::TimePartition::_InternalParse; + object = msg->mutable_time_partition(); + 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) { @@ -2719,6 +3219,17 @@ bool ArtifactID::MergePartialFromCodedStream( break; } + // .flyteidl.core.TimePartition time_partition = 4; + case 4: { + if (static_cast< ::google::protobuf::uint8>(tag) == (34 & 0xFF)) { + DO_(::google::protobuf::internal::WireFormatLite::ReadMessage( + input, mutable_time_partition())); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -2763,11 +3274,17 @@ void ArtifactID::SerializeWithCachedSizes( } // .flyteidl.core.Partitions partitions = 3; - if (has_partitions()) { + if (this->has_partitions()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 3, HasBitSetters::partitions(this), output); } + // .flyteidl.core.TimePartition time_partition = 4; + if (this->has_time_partition()) { + ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( + 4, HasBitSetters::time_partition(this), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -2800,12 +3317,19 @@ ::google::protobuf::uint8* ArtifactID::InternalSerializeWithCachedSizesToArray( } // .flyteidl.core.Partitions partitions = 3; - if (has_partitions()) { + if (this->has_partitions()) { target = ::google::protobuf::internal::WireFormatLite:: InternalWriteMessageToArray( 3, HasBitSetters::partitions(this), target); } + // .flyteidl.core.TimePartition time_partition = 4; + if (this->has_time_partition()) { + target = ::google::protobuf::internal::WireFormatLite:: + InternalWriteMessageToArray( + 4, HasBitSetters::time_partition(this), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -2841,18 +3365,20 @@ size_t ArtifactID::ByteSizeLong() const { *artifact_key_); } - switch (dimensions_case()) { - // .flyteidl.core.Partitions partitions = 3; - case kPartitions: { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::MessageSize( - *dimensions_.partitions_); - break; - } - case DIMENSIONS_NOT_SET: { - break; - } + // .flyteidl.core.Partitions partitions = 3; + if (this->has_partitions()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *partitions_); } + + // .flyteidl.core.TimePartition time_partition = 4; + if (this->has_time_partition()) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::MessageSize( + *time_partition_); + } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; @@ -2887,14 +3413,11 @@ void ArtifactID::MergeFrom(const ArtifactID& from) { if (from.has_artifact_key()) { mutable_artifact_key()->::flyteidl::core::ArtifactKey::MergeFrom(from.artifact_key()); } - switch (from.dimensions_case()) { - case kPartitions: { - mutable_partitions()->::flyteidl::core::Partitions::MergeFrom(from.partitions()); - break; - } - case DIMENSIONS_NOT_SET: { - break; - } + if (from.has_partitions()) { + mutable_partitions()->::flyteidl::core::Partitions::MergeFrom(from.partitions()); + } + if (from.has_time_partition()) { + mutable_time_partition()->::flyteidl::core::TimePartition::MergeFrom(from.time_partition()); } } @@ -2926,8 +3449,8 @@ void ArtifactID::InternalSwap(ArtifactID* other) { version_.Swap(&other->version_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual()); swap(artifact_key_, other->artifact_key_); - swap(dimensions_, other->dimensions_); - swap(_oneof_case_[0], other->_oneof_case_[0]); + swap(partitions_, other->partitions_); + swap(time_partition_, other->time_partition_); } ::google::protobuf::Metadata ArtifactID::GetMetadata() const { @@ -4233,6 +4756,9 @@ template<> PROTOBUF_NOINLINE ::flyteidl::core::Partitions_ValueEntry_DoNotUse* A template<> PROTOBUF_NOINLINE ::flyteidl::core::Partitions* Arena::CreateMaybeMessage< ::flyteidl::core::Partitions >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::core::Partitions >(arena); } +template<> PROTOBUF_NOINLINE ::flyteidl::core::TimePartition* Arena::CreateMaybeMessage< ::flyteidl::core::TimePartition >(Arena* arena) { + return Arena::CreateInternal< ::flyteidl::core::TimePartition >(arena); +} template<> PROTOBUF_NOINLINE ::flyteidl::core::ArtifactID* Arena::CreateMaybeMessage< ::flyteidl::core::ArtifactID >(Arena* arena) { return Arena::CreateInternal< ::flyteidl::core::ArtifactID >(arena); } diff --git a/flyteidl/gen/pb-cpp/flyteidl/core/artifact_id.pb.h b/flyteidl/gen/pb-cpp/flyteidl/core/artifact_id.pb.h index 12c9cbd59f..fc48d878e1 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/core/artifact_id.pb.h +++ b/flyteidl/gen/pb-cpp/flyteidl/core/artifact_id.pb.h @@ -34,6 +34,7 @@ #include #include #include +#include #include "flyteidl/core/identifier.pb.h" // @@protoc_insertion_point(includes) #include @@ -45,7 +46,7 @@ struct TableStruct_flyteidl_2fcore_2fartifact_5fid_2eproto { PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::AuxillaryParseTableField aux[] PROTOBUF_SECTION_VARIABLE(protodesc_cold); - static const ::google::protobuf::internal::ParseTable schema[10] + static const ::google::protobuf::internal::ParseTable schema[11] PROTOBUF_SECTION_VARIABLE(protodesc_cold); static const ::google::protobuf::internal::FieldMetadata field_metadata[]; static const ::google::protobuf::internal::SerializationTable serialization_table[]; @@ -81,6 +82,9 @@ extern PartitionsDefaultTypeInternal _Partitions_default_instance_; class Partitions_ValueEntry_DoNotUse; class Partitions_ValueEntry_DoNotUseDefaultTypeInternal; extern Partitions_ValueEntry_DoNotUseDefaultTypeInternal _Partitions_ValueEntry_DoNotUse_default_instance_; +class TimePartition; +class TimePartitionDefaultTypeInternal; +extern TimePartitionDefaultTypeInternal _TimePartition_default_instance_; class Trigger; class TriggerDefaultTypeInternal; extern TriggerDefaultTypeInternal _Trigger_default_instance_; @@ -97,6 +101,7 @@ template<> ::flyteidl::core::InputBindingData* Arena::CreateMaybeMessage<::flyte template<> ::flyteidl::core::LabelValue* Arena::CreateMaybeMessage<::flyteidl::core::LabelValue>(Arena*); template<> ::flyteidl::core::Partitions* Arena::CreateMaybeMessage<::flyteidl::core::Partitions>(Arena*); template<> ::flyteidl::core::Partitions_ValueEntry_DoNotUse* Arena::CreateMaybeMessage<::flyteidl::core::Partitions_ValueEntry_DoNotUse>(Arena*); +template<> ::flyteidl::core::TimePartition* Arena::CreateMaybeMessage<::flyteidl::core::TimePartition>(Arena*); template<> ::flyteidl::core::Trigger* Arena::CreateMaybeMessage<::flyteidl::core::Trigger>(Arena*); } // namespace protobuf } // namespace google @@ -287,6 +292,12 @@ class ArtifactBindingData final : } static const ArtifactBindingData& default_instance(); + enum PartitionDataCase { + kPartitionKey = 2, + kBindToTimePartition = 3, + PARTITION_DATA_NOT_SET = 0, + }; + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const ArtifactBindingData* internal_default_instance() { return reinterpret_cast( @@ -350,23 +361,9 @@ class ArtifactBindingData final : // accessors ------------------------------------------------------- - // string partition_key = 2; - void clear_partition_key(); - static const int kPartitionKeyFieldNumber = 2; - const ::std::string& partition_key() const; - void set_partition_key(const ::std::string& value); - #if LANG_CXX11 - void set_partition_key(::std::string&& value); - #endif - void set_partition_key(const char* value); - void set_partition_key(const char* value, size_t size); - ::std::string* mutable_partition_key(); - ::std::string* release_partition_key(); - void set_allocated_partition_key(::std::string* partition_key); - - // string transform = 3; + // string transform = 4; void clear_transform(); - static const int kTransformFieldNumber = 3; + static const int kTransformFieldNumber = 4; const ::std::string& transform() const; void set_transform(const ::std::string& value); #if LANG_CXX11 @@ -384,15 +381,54 @@ class ArtifactBindingData final : ::google::protobuf::uint32 index() const; void set_index(::google::protobuf::uint32 value); + // string partition_key = 2; + private: + bool has_partition_key() const; + public: + void clear_partition_key(); + static const int kPartitionKeyFieldNumber = 2; + const ::std::string& partition_key() const; + void set_partition_key(const ::std::string& value); + #if LANG_CXX11 + void set_partition_key(::std::string&& value); + #endif + void set_partition_key(const char* value); + void set_partition_key(const char* value, size_t size); + ::std::string* mutable_partition_key(); + ::std::string* release_partition_key(); + void set_allocated_partition_key(::std::string* partition_key); + + // bool bind_to_time_partition = 3; + private: + bool has_bind_to_time_partition() const; + public: + void clear_bind_to_time_partition(); + static const int kBindToTimePartitionFieldNumber = 3; + bool bind_to_time_partition() const; + void set_bind_to_time_partition(bool value); + + void clear_partition_data(); + PartitionDataCase partition_data_case() const; // @@protoc_insertion_point(class_scope:flyteidl.core.ArtifactBindingData) private: class HasBitSetters; + void set_has_partition_key(); + void set_has_bind_to_time_partition(); + + inline bool has_partition_data() const; + inline void clear_has_partition_data(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; - ::google::protobuf::internal::ArenaStringPtr partition_key_; ::google::protobuf::internal::ArenaStringPtr transform_; ::google::protobuf::uint32 index_; + union PartitionDataUnion { + PartitionDataUnion() {} + ::google::protobuf::internal::ArenaStringPtr partition_key_; + bool bind_to_time_partition_; + } partition_data_; mutable ::google::protobuf::internal::CachedSize _cached_size_; + ::google::protobuf::uint32 _oneof_case_[1]; + friend struct ::TableStruct_flyteidl_2fcore_2fartifact_5fid_2eproto; }; // ------------------------------------------------------------------- @@ -551,8 +587,9 @@ class LabelValue final : enum ValueCase { kStaticValue = 1, - kTriggeredBinding = 2, - kInputBinding = 3, + kTimeValue = 2, + kTriggeredBinding = 3, + kInputBinding = 4, VALUE_NOT_SET = 0, }; @@ -636,19 +673,28 @@ class LabelValue final : ::std::string* release_static_value(); void set_allocated_static_value(::std::string* static_value); - // .flyteidl.core.ArtifactBindingData triggered_binding = 2; + // .google.protobuf.Timestamp time_value = 2; + bool has_time_value() const; + void clear_time_value(); + static const int kTimeValueFieldNumber = 2; + const ::google::protobuf::Timestamp& time_value() const; + ::google::protobuf::Timestamp* release_time_value(); + ::google::protobuf::Timestamp* mutable_time_value(); + void set_allocated_time_value(::google::protobuf::Timestamp* time_value); + + // .flyteidl.core.ArtifactBindingData triggered_binding = 3; bool has_triggered_binding() const; void clear_triggered_binding(); - static const int kTriggeredBindingFieldNumber = 2; + static const int kTriggeredBindingFieldNumber = 3; const ::flyteidl::core::ArtifactBindingData& triggered_binding() const; ::flyteidl::core::ArtifactBindingData* release_triggered_binding(); ::flyteidl::core::ArtifactBindingData* mutable_triggered_binding(); void set_allocated_triggered_binding(::flyteidl::core::ArtifactBindingData* triggered_binding); - // .flyteidl.core.InputBindingData input_binding = 3; + // .flyteidl.core.InputBindingData input_binding = 4; bool has_input_binding() const; void clear_input_binding(); - static const int kInputBindingFieldNumber = 3; + static const int kInputBindingFieldNumber = 4; const ::flyteidl::core::InputBindingData& input_binding() const; ::flyteidl::core::InputBindingData* release_input_binding(); ::flyteidl::core::InputBindingData* mutable_input_binding(); @@ -660,6 +706,7 @@ class LabelValue final : private: class HasBitSetters; void set_has_static_value(); + void set_has_time_value(); void set_has_triggered_binding(); void set_has_input_binding(); @@ -670,6 +717,7 @@ class LabelValue final : union ValueUnion { ValueUnion() {} ::google::protobuf::internal::ArenaStringPtr static_value_; + ::google::protobuf::Timestamp* time_value_; ::flyteidl::core::ArtifactBindingData* triggered_binding_; ::flyteidl::core::InputBindingData* input_binding_; } value_; @@ -825,6 +873,121 @@ class Partitions final : }; // ------------------------------------------------------------------- +class TimePartition final : + public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.core.TimePartition) */ { + public: + TimePartition(); + virtual ~TimePartition(); + + TimePartition(const TimePartition& from); + + inline TimePartition& operator=(const TimePartition& from) { + CopyFrom(from); + return *this; + } + #if LANG_CXX11 + TimePartition(TimePartition&& from) noexcept + : TimePartition() { + *this = ::std::move(from); + } + + inline TimePartition& operator=(TimePartition&& from) noexcept { + if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { + if (this != &from) InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + #endif + static const ::google::protobuf::Descriptor* descriptor() { + return default_instance().GetDescriptor(); + } + static const TimePartition& default_instance(); + + static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY + static inline const TimePartition* internal_default_instance() { + return reinterpret_cast( + &_TimePartition_default_instance_); + } + static constexpr int kIndexInFileMessages = + 6; + + void Swap(TimePartition* other); + friend void swap(TimePartition& a, TimePartition& b) { + a.Swap(&b); + } + + // implements Message ---------------------------------------------- + + inline TimePartition* New() const final { + return CreateMaybeMessage(nullptr); + } + + TimePartition* New(::google::protobuf::Arena* arena) const final { + return CreateMaybeMessage(arena); + } + void CopyFrom(const ::google::protobuf::Message& from) final; + void MergeFrom(const ::google::protobuf::Message& from) final; + void CopyFrom(const TimePartition& from); + void MergeFrom(const TimePartition& from); + PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final; + bool IsInitialized() const final; + + size_t ByteSizeLong() const final; + #if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx); + ::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; } + #else + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) final; + #endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const final; + ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const final; + int GetCachedSize() const final { return _cached_size_.Get(); } + + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const final; + void InternalSwap(TimePartition* other); + private: + inline ::google::protobuf::Arena* GetArenaNoVirtual() const { + return nullptr; + } + inline void* MaybeArenaPtr() const { + return nullptr; + } + public: + + ::google::protobuf::Metadata GetMetadata() const final; + + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + + // .flyteidl.core.LabelValue value = 1; + bool has_value() const; + void clear_value(); + static const int kValueFieldNumber = 1; + const ::flyteidl::core::LabelValue& value() const; + ::flyteidl::core::LabelValue* release_value(); + ::flyteidl::core::LabelValue* mutable_value(); + void set_allocated_value(::flyteidl::core::LabelValue* value); + + // @@protoc_insertion_point(class_scope:flyteidl.core.TimePartition) + private: + class HasBitSetters; + + ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; + ::flyteidl::core::LabelValue* value_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + friend struct ::TableStruct_flyteidl_2fcore_2fartifact_5fid_2eproto; +}; +// ------------------------------------------------------------------- + class ArtifactID final : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:flyteidl.core.ArtifactID) */ { public: @@ -857,18 +1020,13 @@ class ArtifactID final : } static const ArtifactID& default_instance(); - enum DimensionsCase { - kPartitions = 3, - DIMENSIONS_NOT_SET = 0, - }; - static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const ArtifactID* internal_default_instance() { return reinterpret_cast( &_ArtifactID_default_instance_); } static constexpr int kIndexInFileMessages = - 6; + 7; void Swap(ArtifactID* other); friend void swap(ArtifactID& a, ArtifactID& b) { @@ -957,26 +1115,25 @@ class ArtifactID final : ::flyteidl::core::Partitions* mutable_partitions(); void set_allocated_partitions(::flyteidl::core::Partitions* partitions); - void clear_dimensions(); - DimensionsCase dimensions_case() const; + // .flyteidl.core.TimePartition time_partition = 4; + bool has_time_partition() const; + void clear_time_partition(); + static const int kTimePartitionFieldNumber = 4; + const ::flyteidl::core::TimePartition& time_partition() const; + ::flyteidl::core::TimePartition* release_time_partition(); + ::flyteidl::core::TimePartition* mutable_time_partition(); + void set_allocated_time_partition(::flyteidl::core::TimePartition* time_partition); + // @@protoc_insertion_point(class_scope:flyteidl.core.ArtifactID) private: class HasBitSetters; - void set_has_partitions(); - - inline bool has_dimensions() const; - inline void clear_has_dimensions(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::ArenaStringPtr version_; ::flyteidl::core::ArtifactKey* artifact_key_; - union DimensionsUnion { - DimensionsUnion() {} - ::flyteidl::core::Partitions* partitions_; - } dimensions_; + ::flyteidl::core::Partitions* partitions_; + ::flyteidl::core::TimePartition* time_partition_; mutable ::google::protobuf::internal::CachedSize _cached_size_; - ::google::protobuf::uint32 _oneof_case_[1]; - friend struct ::TableStruct_flyteidl_2fcore_2fartifact_5fid_2eproto; }; // ------------------------------------------------------------------- @@ -1019,7 +1176,7 @@ class ArtifactTag final : &_ArtifactTag_default_instance_); } static constexpr int kIndexInFileMessages = - 7; + 8; void Swap(ArtifactTag* other); friend void swap(ArtifactTag& a, ArtifactTag& b) { @@ -1152,7 +1309,7 @@ class ArtifactQuery final : &_ArtifactQuery_default_instance_); } static constexpr int kIndexInFileMessages = - 8; + 9; void Swap(ArtifactQuery* other); friend void swap(ArtifactQuery& a, ArtifactQuery& b) { @@ -1319,7 +1476,7 @@ class Trigger final : &_Trigger_default_instance_); } static constexpr int kIndexInFileMessages = - 9; + 10; void Swap(Trigger* other); friend void swap(Trigger& a, Trigger& b) { @@ -1596,59 +1753,127 @@ inline void ArtifactBindingData::set_index(::google::protobuf::uint32 value) { } // string partition_key = 2; +inline bool ArtifactBindingData::has_partition_key() const { + return partition_data_case() == kPartitionKey; +} +inline void ArtifactBindingData::set_has_partition_key() { + _oneof_case_[0] = kPartitionKey; +} inline void ArtifactBindingData::clear_partition_key() { - partition_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (has_partition_key()) { + partition_data_.partition_key_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + clear_has_partition_data(); + } } inline const ::std::string& ArtifactBindingData::partition_key() const { // @@protoc_insertion_point(field_get:flyteidl.core.ArtifactBindingData.partition_key) - return partition_key_.GetNoArena(); + if (has_partition_key()) { + return partition_data_.partition_key_.GetNoArena(); + } + return *&::google::protobuf::internal::GetEmptyStringAlreadyInited(); } inline void ArtifactBindingData::set_partition_key(const ::std::string& value) { - - partition_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); + // @@protoc_insertion_point(field_set:flyteidl.core.ArtifactBindingData.partition_key) + if (!has_partition_key()) { + clear_partition_data(); + set_has_partition_key(); + partition_data_.partition_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + partition_data_.partition_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:flyteidl.core.ArtifactBindingData.partition_key) } #if LANG_CXX11 inline void ArtifactBindingData::set_partition_key(::std::string&& value) { - - partition_key_.SetNoArena( - &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); + // @@protoc_insertion_point(field_set:flyteidl.core.ArtifactBindingData.partition_key) + if (!has_partition_key()) { + clear_partition_data(); + set_has_partition_key(); + partition_data_.partition_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + partition_data_.partition_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:flyteidl.core.ArtifactBindingData.partition_key) } #endif inline void ArtifactBindingData::set_partition_key(const char* value) { GOOGLE_DCHECK(value != nullptr); - - partition_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); + if (!has_partition_key()) { + clear_partition_data(); + set_has_partition_key(); + partition_data_.partition_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + partition_data_.partition_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), + ::std::string(value)); // @@protoc_insertion_point(field_set_char:flyteidl.core.ArtifactBindingData.partition_key) } inline void ArtifactBindingData::set_partition_key(const char* value, size_t size) { - - partition_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), - ::std::string(reinterpret_cast(value), size)); + if (!has_partition_key()) { + clear_partition_data(); + set_has_partition_key(); + partition_data_.partition_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } + partition_data_.partition_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string( + reinterpret_cast(value), size)); // @@protoc_insertion_point(field_set_pointer:flyteidl.core.ArtifactBindingData.partition_key) } inline ::std::string* ArtifactBindingData::mutable_partition_key() { - + if (!has_partition_key()) { + clear_partition_data(); + set_has_partition_key(); + partition_data_.partition_key_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } // @@protoc_insertion_point(field_mutable:flyteidl.core.ArtifactBindingData.partition_key) - return partition_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + return partition_data_.partition_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* ArtifactBindingData::release_partition_key() { // @@protoc_insertion_point(field_release:flyteidl.core.ArtifactBindingData.partition_key) - - return partition_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + if (has_partition_key()) { + clear_has_partition_data(); + return partition_data_.partition_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); + } else { + return nullptr; + } } inline void ArtifactBindingData::set_allocated_partition_key(::std::string* partition_key) { + if (has_partition_data()) { + clear_partition_data(); + } if (partition_key != nullptr) { - - } else { - + set_has_partition_key(); + partition_data_.partition_key_.UnsafeSetDefault(partition_key); } - partition_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), partition_key); // @@protoc_insertion_point(field_set_allocated:flyteidl.core.ArtifactBindingData.partition_key) } -// string transform = 3; +// bool bind_to_time_partition = 3; +inline bool ArtifactBindingData::has_bind_to_time_partition() const { + return partition_data_case() == kBindToTimePartition; +} +inline void ArtifactBindingData::set_has_bind_to_time_partition() { + _oneof_case_[0] = kBindToTimePartition; +} +inline void ArtifactBindingData::clear_bind_to_time_partition() { + if (has_bind_to_time_partition()) { + partition_data_.bind_to_time_partition_ = false; + clear_has_partition_data(); + } +} +inline bool ArtifactBindingData::bind_to_time_partition() const { + // @@protoc_insertion_point(field_get:flyteidl.core.ArtifactBindingData.bind_to_time_partition) + if (has_bind_to_time_partition()) { + return partition_data_.bind_to_time_partition_; + } + return false; +} +inline void ArtifactBindingData::set_bind_to_time_partition(bool value) { + if (!has_bind_to_time_partition()) { + clear_partition_data(); + set_has_bind_to_time_partition(); + } + partition_data_.bind_to_time_partition_ = value; + // @@protoc_insertion_point(field_set:flyteidl.core.ArtifactBindingData.bind_to_time_partition) +} + +// string transform = 4; inline void ArtifactBindingData::clear_transform() { transform_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } @@ -1701,6 +1926,15 @@ inline void ArtifactBindingData::set_allocated_transform(::std::string* transfor // @@protoc_insertion_point(field_set_allocated:flyteidl.core.ArtifactBindingData.transform) } +inline bool ArtifactBindingData::has_partition_data() const { + return partition_data_case() != PARTITION_DATA_NOT_SET; +} +inline void ArtifactBindingData::clear_has_partition_data() { + _oneof_case_[0] = PARTITION_DATA_NOT_SET; +} +inline ArtifactBindingData::PartitionDataCase ArtifactBindingData::partition_data_case() const { + return ArtifactBindingData::PartitionDataCase(_oneof_case_[0]); +} // ------------------------------------------------------------------- // InputBindingData @@ -1854,7 +2088,42 @@ inline void LabelValue::set_allocated_static_value(::std::string* static_value) // @@protoc_insertion_point(field_set_allocated:flyteidl.core.LabelValue.static_value) } -// .flyteidl.core.ArtifactBindingData triggered_binding = 2; +// .google.protobuf.Timestamp time_value = 2; +inline bool LabelValue::has_time_value() const { + return value_case() == kTimeValue; +} +inline void LabelValue::set_has_time_value() { + _oneof_case_[0] = kTimeValue; +} +inline ::google::protobuf::Timestamp* LabelValue::release_time_value() { + // @@protoc_insertion_point(field_release:flyteidl.core.LabelValue.time_value) + if (has_time_value()) { + clear_has_value(); + ::google::protobuf::Timestamp* temp = value_.time_value_; + value_.time_value_ = nullptr; + return temp; + } else { + return nullptr; + } +} +inline const ::google::protobuf::Timestamp& LabelValue::time_value() const { + // @@protoc_insertion_point(field_get:flyteidl.core.LabelValue.time_value) + return has_time_value() + ? *value_.time_value_ + : *reinterpret_cast< ::google::protobuf::Timestamp*>(&::google::protobuf::_Timestamp_default_instance_); +} +inline ::google::protobuf::Timestamp* LabelValue::mutable_time_value() { + if (!has_time_value()) { + clear_value(); + set_has_time_value(); + value_.time_value_ = CreateMaybeMessage< ::google::protobuf::Timestamp >( + GetArenaNoVirtual()); + } + // @@protoc_insertion_point(field_mutable:flyteidl.core.LabelValue.time_value) + return value_.time_value_; +} + +// .flyteidl.core.ArtifactBindingData triggered_binding = 3; inline bool LabelValue::has_triggered_binding() const { return value_case() == kTriggeredBinding; } @@ -1895,7 +2164,7 @@ inline ::flyteidl::core::ArtifactBindingData* LabelValue::mutable_triggered_bind return value_.triggered_binding_; } -// .flyteidl.core.InputBindingData input_binding = 3; +// .flyteidl.core.InputBindingData input_binding = 4; inline bool LabelValue::has_input_binding() const { return value_case() == kInputBinding; } @@ -1971,6 +2240,61 @@ Partitions::mutable_value() { // ------------------------------------------------------------------- +// TimePartition + +// .flyteidl.core.LabelValue value = 1; +inline bool TimePartition::has_value() const { + return this != internal_default_instance() && value_ != nullptr; +} +inline void TimePartition::clear_value() { + if (GetArenaNoVirtual() == nullptr && value_ != nullptr) { + delete value_; + } + value_ = nullptr; +} +inline const ::flyteidl::core::LabelValue& TimePartition::value() const { + const ::flyteidl::core::LabelValue* p = value_; + // @@protoc_insertion_point(field_get:flyteidl.core.TimePartition.value) + return p != nullptr ? *p : *reinterpret_cast( + &::flyteidl::core::_LabelValue_default_instance_); +} +inline ::flyteidl::core::LabelValue* TimePartition::release_value() { + // @@protoc_insertion_point(field_release:flyteidl.core.TimePartition.value) + + ::flyteidl::core::LabelValue* temp = value_; + value_ = nullptr; + return temp; +} +inline ::flyteidl::core::LabelValue* TimePartition::mutable_value() { + + if (value_ == nullptr) { + auto* p = CreateMaybeMessage<::flyteidl::core::LabelValue>(GetArenaNoVirtual()); + value_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.core.TimePartition.value) + return value_; +} +inline void TimePartition::set_allocated_value(::flyteidl::core::LabelValue* value) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete value_; + } + if (value) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + value = ::google::protobuf::internal::GetOwnedMessage( + message_arena, value, submessage_arena); + } + + } else { + + } + value_ = value; + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.TimePartition.value) +} + +// ------------------------------------------------------------------- + // ArtifactID // .flyteidl.core.ArtifactKey artifact_key = 1; @@ -2079,54 +2403,106 @@ inline void ArtifactID::set_allocated_version(::std::string* version) { // .flyteidl.core.Partitions partitions = 3; inline bool ArtifactID::has_partitions() const { - return dimensions_case() == kPartitions; -} -inline void ArtifactID::set_has_partitions() { - _oneof_case_[0] = kPartitions; + return this != internal_default_instance() && partitions_ != nullptr; } inline void ArtifactID::clear_partitions() { - if (has_partitions()) { - delete dimensions_.partitions_; - clear_has_dimensions(); - } -} -inline ::flyteidl::core::Partitions* ArtifactID::release_partitions() { - // @@protoc_insertion_point(field_release:flyteidl.core.ArtifactID.partitions) - if (has_partitions()) { - clear_has_dimensions(); - ::flyteidl::core::Partitions* temp = dimensions_.partitions_; - dimensions_.partitions_ = nullptr; - return temp; - } else { - return nullptr; + if (GetArenaNoVirtual() == nullptr && partitions_ != nullptr) { + delete partitions_; } + partitions_ = nullptr; } inline const ::flyteidl::core::Partitions& ArtifactID::partitions() const { + const ::flyteidl::core::Partitions* p = partitions_; // @@protoc_insertion_point(field_get:flyteidl.core.ArtifactID.partitions) - return has_partitions() - ? *dimensions_.partitions_ - : *reinterpret_cast< ::flyteidl::core::Partitions*>(&::flyteidl::core::_Partitions_default_instance_); + return p != nullptr ? *p : *reinterpret_cast( + &::flyteidl::core::_Partitions_default_instance_); +} +inline ::flyteidl::core::Partitions* ArtifactID::release_partitions() { + // @@protoc_insertion_point(field_release:flyteidl.core.ArtifactID.partitions) + + ::flyteidl::core::Partitions* temp = partitions_; + partitions_ = nullptr; + return temp; } inline ::flyteidl::core::Partitions* ArtifactID::mutable_partitions() { - if (!has_partitions()) { - clear_dimensions(); - set_has_partitions(); - dimensions_.partitions_ = CreateMaybeMessage< ::flyteidl::core::Partitions >( - GetArenaNoVirtual()); + + if (partitions_ == nullptr) { + auto* p = CreateMaybeMessage<::flyteidl::core::Partitions>(GetArenaNoVirtual()); + partitions_ = p; } // @@protoc_insertion_point(field_mutable:flyteidl.core.ArtifactID.partitions) - return dimensions_.partitions_; + return partitions_; +} +inline void ArtifactID::set_allocated_partitions(::flyteidl::core::Partitions* partitions) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete partitions_; + } + if (partitions) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + partitions = ::google::protobuf::internal::GetOwnedMessage( + message_arena, partitions, submessage_arena); + } + + } else { + + } + partitions_ = partitions; + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.ArtifactID.partitions) } -inline bool ArtifactID::has_dimensions() const { - return dimensions_case() != DIMENSIONS_NOT_SET; +// .flyteidl.core.TimePartition time_partition = 4; +inline bool ArtifactID::has_time_partition() const { + return this != internal_default_instance() && time_partition_ != nullptr; +} +inline void ArtifactID::clear_time_partition() { + if (GetArenaNoVirtual() == nullptr && time_partition_ != nullptr) { + delete time_partition_; + } + time_partition_ = nullptr; +} +inline const ::flyteidl::core::TimePartition& ArtifactID::time_partition() const { + const ::flyteidl::core::TimePartition* p = time_partition_; + // @@protoc_insertion_point(field_get:flyteidl.core.ArtifactID.time_partition) + return p != nullptr ? *p : *reinterpret_cast( + &::flyteidl::core::_TimePartition_default_instance_); } -inline void ArtifactID::clear_has_dimensions() { - _oneof_case_[0] = DIMENSIONS_NOT_SET; +inline ::flyteidl::core::TimePartition* ArtifactID::release_time_partition() { + // @@protoc_insertion_point(field_release:flyteidl.core.ArtifactID.time_partition) + + ::flyteidl::core::TimePartition* temp = time_partition_; + time_partition_ = nullptr; + return temp; +} +inline ::flyteidl::core::TimePartition* ArtifactID::mutable_time_partition() { + + if (time_partition_ == nullptr) { + auto* p = CreateMaybeMessage<::flyteidl::core::TimePartition>(GetArenaNoVirtual()); + time_partition_ = p; + } + // @@protoc_insertion_point(field_mutable:flyteidl.core.ArtifactID.time_partition) + return time_partition_; } -inline ArtifactID::DimensionsCase ArtifactID::dimensions_case() const { - return ArtifactID::DimensionsCase(_oneof_case_[0]); +inline void ArtifactID::set_allocated_time_partition(::flyteidl::core::TimePartition* time_partition) { + ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); + if (message_arena == nullptr) { + delete time_partition_; + } + if (time_partition) { + ::google::protobuf::Arena* submessage_arena = nullptr; + if (message_arena != submessage_arena) { + time_partition = ::google::protobuf::internal::GetOwnedMessage( + message_arena, time_partition, submessage_arena); + } + + } else { + + } + time_partition_ = time_partition; + // @@protoc_insertion_point(field_set_allocated:flyteidl.core.ArtifactID.time_partition) } + // ------------------------------------------------------------------- // ArtifactTag @@ -2561,6 +2937,8 @@ Trigger::triggers() const { // ------------------------------------------------------------------- +// ------------------------------------------------------------------- + // @@protoc_insertion_point(namespace_scope) diff --git a/flyteidl/gen/pb-cpp/flyteidl/core/interface.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/core/interface.pb.cc index 96e2d13b02..3304c00c25 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/core/interface.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/core/interface.pb.cc @@ -16,8 +16,8 @@ // @@protoc_insertion_point(includes) #include -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactTag_flyteidl_2fcore_2fartifact_5fid_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactQuery_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2finterface_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_ParameterMap_ParametersEntry_DoNotUse_flyteidl_2fcore_2finterface_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2finterface_2eproto ::google::protobuf::internal::SCCInfo<1> scc_info_VariableMap_VariablesEntry_DoNotUse_flyteidl_2fcore_2finterface_2eproto; diff --git a/flyteidl/gen/pb-cpp/flyteidl/event/cloudevents.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/event/cloudevents.pb.cc index ec498323e1..60b397bfa4 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/event/cloudevents.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/event/cloudevents.pb.cc @@ -16,7 +16,7 @@ // @@protoc_insertion_point(includes) #include -extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; +extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fartifact_5fid_2eproto ::google::protobuf::internal::SCCInfo<3> scc_info_ArtifactID_flyteidl_2fcore_2fartifact_5fid_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fidentifier_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_Identifier_flyteidl_2fcore_2fidentifier_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fidentifier_2eproto ::google::protobuf::internal::SCCInfo<0> scc_info_WorkflowExecutionIdentifier_flyteidl_2fcore_2fidentifier_2eproto; extern PROTOBUF_INTERNAL_EXPORT_flyteidl_2fcore_2fidentifier_2eproto ::google::protobuf::internal::SCCInfo<2> scc_info_TaskExecutionIdentifier_flyteidl_2fcore_2fidentifier_2eproto; diff --git a/flyteidl/gen/pb-go/flyteidl/artifact/artifacts.pb.go b/flyteidl/gen/pb-go/flyteidl/artifact/artifacts.pb.go index 8e7930233b..b0ad21ba74 100644 --- a/flyteidl/gen/pb-go/flyteidl/artifact/artifacts.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/artifact/artifacts.pb.go @@ -11,6 +11,7 @@ import ( _ "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" proto "github.com/golang/protobuf/proto" any "github.com/golang/protobuf/ptypes/any" + timestamp "github.com/golang/protobuf/ptypes/timestamp" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -120,15 +121,15 @@ func (m *Artifact) GetSource() *ArtifactSource { type CreateArtifactRequest struct { // Specify just project/domain on creation - ArtifactKey *core.ArtifactKey `protobuf:"bytes,1,opt,name=artifact_key,json=artifactKey,proto3" json:"artifact_key,omitempty"` - Version string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"` - Spec *ArtifactSpec `protobuf:"bytes,2,opt,name=spec,proto3" json:"spec,omitempty"` - Partitions map[string]string `protobuf:"bytes,4,rep,name=partitions,proto3" json:"partitions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - Tag string `protobuf:"bytes,5,opt,name=tag,proto3" json:"tag,omitempty"` - Source *ArtifactSource `protobuf:"bytes,6,opt,name=source,proto3" json:"source,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + ArtifactKey *core.ArtifactKey `protobuf:"bytes,1,opt,name=artifact_key,json=artifactKey,proto3" json:"artifact_key,omitempty"` + Version string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"` + Spec *ArtifactSpec `protobuf:"bytes,2,opt,name=spec,proto3" json:"spec,omitempty"` + Partitions map[string]string `protobuf:"bytes,4,rep,name=partitions,proto3" json:"partitions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + TimePartitionValue *timestamp.Timestamp `protobuf:"bytes,5,opt,name=time_partition_value,json=timePartitionValue,proto3" json:"time_partition_value,omitempty"` + Source *ArtifactSource `protobuf:"bytes,6,opt,name=source,proto3" json:"source,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CreateArtifactRequest) Reset() { *m = CreateArtifactRequest{} } @@ -184,11 +185,11 @@ func (m *CreateArtifactRequest) GetPartitions() map[string]string { return nil } -func (m *CreateArtifactRequest) GetTag() string { +func (m *CreateArtifactRequest) GetTimePartitionValue() *timestamp.Timestamp { if m != nil { - return m.Tag + return m.TimePartitionValue } - return "" + return nil } func (m *CreateArtifactRequest) GetSource() *ArtifactSource { @@ -278,11 +279,13 @@ type ArtifactSpec struct { Type *core.LiteralType `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"` ShortDescription string `protobuf:"bytes,3,opt,name=short_description,json=shortDescription,proto3" json:"short_description,omitempty"` // Additional user metadata - UserMetadata *any.Any `protobuf:"bytes,4,opt,name=user_metadata,json=userMetadata,proto3" json:"user_metadata,omitempty"` - MetadataType string `protobuf:"bytes,5,opt,name=metadata_type,json=metadataType,proto3" json:"metadata_type,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + UserMetadata *any.Any `protobuf:"bytes,4,opt,name=user_metadata,json=userMetadata,proto3" json:"user_metadata,omitempty"` + MetadataType string `protobuf:"bytes,5,opt,name=metadata_type,json=metadataType,proto3" json:"metadata_type,omitempty"` + CreatedAt *timestamp.Timestamp `protobuf:"bytes,6,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` + FileFormat string `protobuf:"bytes,7,opt,name=file_format,json=fileFormat,proto3" json:"file_format,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ArtifactSpec) Reset() { *m = ArtifactSpec{} } @@ -345,6 +348,20 @@ func (m *ArtifactSpec) GetMetadataType() string { return "" } +func (m *ArtifactSpec) GetCreatedAt() *timestamp.Timestamp { + if m != nil { + return m.CreatedAt + } + return nil +} + +func (m *ArtifactSpec) GetFileFormat() string { + if m != nil { + return m.FileFormat + } + return "" +} + type CreateArtifactResponse struct { Artifact *Artifact `protobuf:"bytes,1,opt,name=artifact,proto3" json:"artifact,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -522,16 +539,17 @@ func (m *SearchOptions) GetLatestByKey() bool { } type SearchArtifactsRequest struct { - ArtifactKey *core.ArtifactKey `protobuf:"bytes,1,opt,name=artifact_key,json=artifactKey,proto3" json:"artifact_key,omitempty"` - Partitions *core.Partitions `protobuf:"bytes,2,opt,name=partitions,proto3" json:"partitions,omitempty"` - Principal string `protobuf:"bytes,3,opt,name=principal,proto3" json:"principal,omitempty"` - Version string `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"` - Options *SearchOptions `protobuf:"bytes,5,opt,name=options,proto3" json:"options,omitempty"` - Token string `protobuf:"bytes,6,opt,name=token,proto3" json:"token,omitempty"` - Limit int32 `protobuf:"varint,7,opt,name=limit,proto3" json:"limit,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + ArtifactKey *core.ArtifactKey `protobuf:"bytes,1,opt,name=artifact_key,json=artifactKey,proto3" json:"artifact_key,omitempty"` + Partitions *core.Partitions `protobuf:"bytes,2,opt,name=partitions,proto3" json:"partitions,omitempty"` + TimePartitionValue *timestamp.Timestamp `protobuf:"bytes,3,opt,name=time_partition_value,json=timePartitionValue,proto3" json:"time_partition_value,omitempty"` + Principal string `protobuf:"bytes,4,opt,name=principal,proto3" json:"principal,omitempty"` + Version string `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"` + Options *SearchOptions `protobuf:"bytes,6,opt,name=options,proto3" json:"options,omitempty"` + Token string `protobuf:"bytes,7,opt,name=token,proto3" json:"token,omitempty"` + Limit int32 `protobuf:"varint,8,opt,name=limit,proto3" json:"limit,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *SearchArtifactsRequest) Reset() { *m = SearchArtifactsRequest{} } @@ -573,6 +591,13 @@ func (m *SearchArtifactsRequest) GetPartitions() *core.Partitions { return nil } +func (m *SearchArtifactsRequest) GetTimePartitionValue() *timestamp.Timestamp { + if m != nil { + return m.TimePartitionValue + } + return nil +} + func (m *SearchArtifactsRequest) GetPrincipal() string { if m != nil { return m.Principal @@ -1331,111 +1356,115 @@ func init() { func init() { proto.RegisterFile("flyteidl/artifact/artifacts.proto", fileDescriptor_804518da5936dedb) } var fileDescriptor_804518da5936dedb = []byte{ - // 1654 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0xcd, 0x6f, 0xdb, 0x46, - 0x16, 0x0f, 0x2d, 0x5b, 0xb2, 0x9e, 0x6c, 0x47, 0x9e, 0x64, 0x6d, 0x59, 0x4e, 0x36, 0x0a, 0x9d, - 0xcd, 0x3a, 0x1f, 0x2b, 0x22, 0xca, 0x22, 0x1b, 0x1b, 0xc8, 0x62, 0x9d, 0x38, 0xbb, 0x50, 0x3e, - 0x1d, 0xda, 0xd9, 0x2f, 0x2c, 0xa0, 0x8c, 0xc8, 0xb1, 0xcc, 0x98, 0x22, 0x99, 0xe1, 0xc8, 0x5e, - 0x22, 0x30, 0xb2, 0x58, 0xf4, 0x56, 0xf4, 0xd2, 0xa2, 0x97, 0xa2, 0x40, 0xff, 0x87, 0xfe, 0x19, - 0xbd, 0xf6, 0xd2, 0x43, 0x8f, 0xfd, 0x17, 0x7a, 0x28, 0x72, 0x29, 0x38, 0x9c, 0x21, 0x29, 0x89, - 0x52, 0xec, 0x24, 0x37, 0xf2, 0xcd, 0xef, 0xcd, 0xfb, 0x98, 0xf7, 0x7e, 0xf3, 0x48, 0xb8, 0xb8, - 0x6b, 0x07, 0x8c, 0x58, 0xa6, 0xad, 0x61, 0xca, 0xac, 0x5d, 0x6c, 0xb0, 0xf8, 0xc1, 0xaf, 0x7b, - 0xd4, 0x65, 0x2e, 0x9a, 0x97, 0x90, 0xba, 0x5c, 0xa9, 0x2e, 0x75, 0x5c, 0xb7, 0x63, 0x13, 0x8d, - 0x03, 0xda, 0xbd, 0x5d, 0x0d, 0x3b, 0x41, 0x84, 0xae, 0x9e, 0x13, 0x4b, 0xd8, 0xb3, 0x34, 0xec, - 0x38, 0x2e, 0xc3, 0xcc, 0x72, 0x1d, 0xb1, 0x57, 0xb5, 0x96, 0x98, 0x33, 0xbb, 0x96, 0xa3, 0xd9, - 0xb8, 0xe7, 0x18, 0x7b, 0x2d, 0xcf, 0xc6, 0x8e, 0xd4, 0x8f, 0x11, 0x86, 0x4b, 0x89, 0x66, 0x5b, - 0x8c, 0x50, 0x6c, 0x4b, 0xfd, 0xa5, 0xfe, 0x55, 0x16, 0x78, 0x44, 0x2e, 0xfd, 0xb6, 0x7f, 0xc9, - 0x32, 0x89, 0xc3, 0xac, 0x5d, 0x8b, 0x50, 0xb1, 0x7e, 0xa1, 0x7f, 0x5d, 0xc6, 0xd2, 0xb2, 0x4c, - 0x01, 0x38, 0x3f, 0xb0, 0x81, 0xc3, 0x08, 0xdd, 0xc5, 0x06, 0x19, 0x72, 0x9d, 0x1c, 0x10, 0x87, - 0x69, 0x86, 0xed, 0xf6, 0x4c, 0xfe, 0x28, 0x3c, 0x50, 0xbf, 0x53, 0x60, 0x7a, 0x43, 0x6c, 0x8b, - 0xd6, 0xa1, 0x94, 0x32, 0x51, 0x51, 0x6a, 0xca, 0x6a, 0xa9, 0xb1, 0x54, 0x8f, 0x73, 0x19, 0xda, - 0xa8, 0x4b, 0x74, 0x73, 0x53, 0x07, 0x89, 0x6e, 0x9a, 0xe8, 0x26, 0x4c, 0xfa, 0x1e, 0x31, 0x2a, - 0x13, 0x5c, 0xe9, 0x42, 0x7d, 0xe8, 0x00, 0x62, 0xc5, 0x6d, 0x8f, 0x18, 0x3a, 0x07, 0x23, 0x04, - 0x93, 0x0c, 0x77, 0xfc, 0x4a, 0xae, 0x96, 0x5b, 0x2d, 0xea, 0xfc, 0x19, 0xad, 0x41, 0xde, 0x77, - 0x7b, 0xd4, 0x20, 0x95, 0x49, 0xbe, 0xd5, 0xc5, 0x71, 0x5b, 0x71, 0xa0, 0x2e, 0x14, 0xd4, 0x4f, - 0x73, 0xf0, 0x9b, 0x7b, 0x94, 0x60, 0x46, 0x24, 0x40, 0x27, 0xaf, 0x7a, 0xc4, 0x67, 0xe8, 0x0e, - 0xcc, 0xc4, 0x91, 0xed, 0x93, 0x40, 0x84, 0x56, 0x1d, 0x11, 0xda, 0x43, 0x12, 0xe8, 0x71, 0x26, - 0x1e, 0x92, 0x00, 0x55, 0xa0, 0x70, 0x40, 0xa8, 0x6f, 0xb9, 0x4e, 0x25, 0x57, 0x53, 0x56, 0x8b, - 0xba, 0x7c, 0x7d, 0xbf, 0xb0, 0xff, 0x09, 0xe0, 0x85, 0xeb, 0xbc, 0xca, 0x2a, 0x93, 0xb5, 0xdc, - 0x6a, 0xa9, 0x71, 0x3b, 0x43, 0x35, 0x33, 0x96, 0xfa, 0x56, 0xac, 0x7a, 0xdf, 0x61, 0x34, 0xd0, - 0x53, 0x7b, 0xa1, 0x32, 0xe4, 0x18, 0xee, 0x54, 0xa6, 0xb8, 0x93, 0xe1, 0x63, 0x2a, 0x9d, 0xf9, - 0x13, 0xa6, 0xb3, 0x7a, 0x07, 0x4e, 0x0f, 0xd8, 0x0a, 0xf7, 0x97, 0xe9, 0x2b, 0xea, 0xe1, 0x23, - 0x3a, 0x0b, 0x53, 0x07, 0xd8, 0xee, 0x11, 0x9e, 0x81, 0xa2, 0x1e, 0xbd, 0xac, 0x4f, 0xdc, 0x56, - 0xd4, 0xb7, 0x0a, 0xcc, 0xf5, 0xef, 0x8c, 0xfe, 0x05, 0xe8, 0xd0, 0xa5, 0xfb, 0xbb, 0xb6, 0x7b, - 0xd8, 0x22, 0xff, 0x25, 0x46, 0x2f, 0xdc, 0x5a, 0x1c, 0xc6, 0xd5, 0x81, 0xc3, 0xf8, 0x87, 0x00, - 0xde, 0x97, 0xb8, 0x66, 0xdc, 0x1d, 0xfa, 0xfc, 0xe1, 0xe0, 0x22, 0x5a, 0x84, 0x82, 0xe3, 0x9a, - 0x24, 0xac, 0xdb, 0xc8, 0x93, 0x7c, 0xf8, 0xda, 0x34, 0x51, 0x03, 0x0a, 0x0c, 0xfb, 0xfb, 0xe1, - 0x42, 0x2e, 0xb3, 0xa0, 0x53, 0xfb, 0xe6, 0x43, 0x64, 0xd3, 0x44, 0x2b, 0x30, 0x4b, 0x09, 0xa3, - 0x41, 0x0b, 0x33, 0x46, 0xba, 0x1e, 0xe3, 0xa5, 0x38, 0xab, 0xcf, 0x70, 0xe1, 0x46, 0x24, 0x43, - 0xe7, 0xa0, 0xe8, 0x51, 0xcb, 0x31, 0x2c, 0x0f, 0xdb, 0x22, 0xe3, 0x89, 0x40, 0xfd, 0x45, 0x81, - 0x99, 0xf4, 0xd1, 0xa3, 0xeb, 0x32, 0x51, 0x51, 0xb8, 0x0b, 0x03, 0x5e, 0x3c, 0x8a, 0x48, 0x43, - 0x24, 0x10, 0xd5, 0x61, 0x32, 0x24, 0x0a, 0x51, 0x57, 0xd5, 0x6c, 0xf0, 0x4e, 0xe0, 0x11, 0x9d, - 0xe3, 0xd0, 0x35, 0x98, 0xf7, 0xf7, 0x5c, 0xca, 0x5a, 0x26, 0xf1, 0x0d, 0x6a, 0x79, 0x2c, 0xa9, - 0xd5, 0x32, 0x5f, 0xd8, 0x4c, 0xe4, 0x68, 0x0d, 0x66, 0x7b, 0x3e, 0xa1, 0xad, 0x2e, 0x61, 0xd8, - 0xc4, 0x0c, 0x8b, 0x4e, 0x3b, 0x5b, 0x8f, 0x78, 0xb0, 0x2e, 0x29, 0xb2, 0xbe, 0xe1, 0x04, 0xfa, - 0x4c, 0x08, 0x7d, 0x2c, 0x90, 0x61, 0x66, 0xa4, 0x56, 0x8b, 0x3b, 0x18, 0x05, 0x3e, 0x23, 0x85, - 0xa1, 0x4b, 0xea, 0x33, 0x58, 0x18, 0x2c, 0x5d, 0xdf, 0x73, 0x1d, 0x9f, 0xa0, 0x3f, 0xc1, 0xb4, - 0xac, 0x3a, 0x91, 0x87, 0xe5, 0x31, 0xf5, 0xa8, 0xc7, 0x60, 0xb5, 0x0d, 0xe8, 0x6f, 0x84, 0x0d, - 0xb6, 0x75, 0x03, 0xa6, 0x5e, 0xf5, 0x08, 0x95, 0xfd, 0x7c, 0x6e, 0x44, 0x3f, 0x3f, 0x0b, 0x31, - 0x7a, 0x04, 0x0d, 0x7b, 0xd9, 0x24, 0x0c, 0x5b, 0xb6, 0xcf, 0x93, 0x3b, 0xad, 0xcb, 0x57, 0xf5, - 0x09, 0x9c, 0xe9, 0xb3, 0xf1, 0xa1, 0x3e, 0xbf, 0x80, 0xd9, 0x6d, 0x82, 0xa9, 0xb1, 0xf7, 0xd4, - 0x8b, 0xba, 0x33, 0x3c, 0x24, 0x46, 0x2d, 0x83, 0xb5, 0x52, 0xed, 0xaf, 0x70, 0x27, 0xca, 0xd1, - 0x42, 0xd2, 0x6f, 0x48, 0x85, 0x59, 0x1b, 0x33, 0xe2, 0xb3, 0x56, 0x3b, 0xe0, 0x9c, 0x15, 0x79, - 0x5b, 0x8a, 0x84, 0x77, 0x83, 0x87, 0x24, 0x50, 0xbf, 0x9d, 0x80, 0x85, 0xc8, 0x84, 0x34, 0xef, - 0x7f, 0x24, 0xc6, 0x5b, 0xeb, 0xa3, 0xa8, 0x89, 0xcc, 0xc6, 0x49, 0x9c, 0xed, 0xe3, 0xa0, 0xbe, - 0xbe, 0xc8, 0x0d, 0xf4, 0x45, 0x9a, 0x4a, 0x27, 0xfb, 0xa9, 0x74, 0x1d, 0x0a, 0x6e, 0x94, 0x28, - 0x5e, 0x54, 0xa5, 0x46, 0x2d, 0x23, 0xcd, 0x7d, 0x09, 0xd5, 0xa5, 0x42, 0xc8, 0x42, 0xcc, 0xdd, - 0x27, 0x0e, 0x27, 0xb9, 0xa2, 0x1e, 0xbd, 0x84, 0x52, 0xdb, 0xea, 0x5a, 0xac, 0x52, 0xa8, 0x29, - 0xab, 0x53, 0x7a, 0xf4, 0xa2, 0xbe, 0x84, 0xc5, 0xa1, 0x9c, 0x89, 0xa3, 0x5e, 0x83, 0x62, 0x3c, - 0x49, 0x54, 0x14, 0xce, 0xcb, 0x63, 0xcf, 0x3a, 0x41, 0x27, 0x1e, 0x4c, 0xa4, 0x3c, 0x50, 0x7f, - 0x54, 0x60, 0xe9, 0xaf, 0x96, 0x63, 0xde, 0x0d, 0xd2, 0x74, 0x26, 0xcf, 0xe8, 0x1e, 0x14, 0x42, - 0x16, 0x4c, 0xee, 0xda, 0x93, 0x70, 0x60, 0x3e, 0x54, 0x6d, 0x9a, 0x68, 0x07, 0x8a, 0xa6, 0x45, - 0x89, 0xc1, 0x3b, 0x3e, 0x34, 0x3e, 0xd7, 0xb8, 0x95, 0xe1, 0xf3, 0x48, 0x2f, 0xea, 0x9b, 0x52, - 0x5b, 0x4f, 0x36, 0x52, 0x2f, 0x41, 0x31, 0x96, 0x23, 0x80, 0x7c, 0xf3, 0xc9, 0xd6, 0xf3, 0x9d, - 0xed, 0xf2, 0x29, 0x54, 0x82, 0xc2, 0xd3, 0xe7, 0x3b, 0xfc, 0x45, 0x51, 0xdf, 0xc0, 0xec, 0x86, - 0x69, 0xee, 0xe0, 0x8e, 0x8c, 0xe8, 0x43, 0x26, 0x88, 0xcc, 0x9b, 0x24, 0xac, 0x26, 0xf7, 0x80, - 0xd0, 0x43, 0x6a, 0x31, 0xc2, 0xab, 0x69, 0x5a, 0x4f, 0x04, 0x6a, 0x19, 0xe6, 0xa4, 0x03, 0xd1, - 0x11, 0xaa, 0x6d, 0x38, 0x1b, 0x71, 0xcf, 0x0e, 0xb5, 0x3a, 0x1d, 0x42, 0xa5, 0x67, 0x0f, 0xe0, - 0x0c, 0x8b, 0x24, 0xad, 0xd4, 0x00, 0x37, 0xdc, 0x16, 0x7c, 0xc6, 0xab, 0x3f, 0xe2, 0x90, 0x2d, - 0x1b, 0x3b, 0xfa, 0xbc, 0x50, 0x4b, 0x44, 0xea, 0xa2, 0x1c, 0x33, 0x62, 0x1b, 0xc2, 0xf8, 0x0e, - 0x54, 0x36, 0x09, 0x36, 0x98, 0x75, 0x30, 0xec, 0xc0, 0x6d, 0x00, 0xe9, 0xc0, 0xc8, 0xcc, 0xa4, - 0x8e, 0xb7, 0x28, 0xc0, 0x4d, 0x53, 0x5d, 0x86, 0xa5, 0x8c, 0x5d, 0x85, 0xc9, 0xff, 0x29, 0x50, - 0x96, 0x09, 0xdd, 0xa2, 0xae, 0xd9, 0x33, 0x08, 0x45, 0xb7, 0xa0, 0x18, 0x6e, 0xc4, 0x82, 0x63, - 0x99, 0x9a, 0x8e, 0xb0, 0x4d, 0x13, 0xfd, 0x11, 0x0a, 0x6e, 0x8f, 0x79, 0x3d, 0xe6, 0x8f, 0xb8, - 0x78, 0xfe, 0x8e, 0xa9, 0x85, 0xdb, 0x36, 0x79, 0x8c, 0x3d, 0x5d, 0x42, 0xd5, 0xff, 0xc0, 0xa2, - 0x4e, 0x3a, 0x96, 0xcf, 0x08, 0x95, 0x1e, 0xc8, 0xa0, 0x37, 0x42, 0x2e, 0x88, 0x44, 0xb2, 0xa1, - 0x56, 0xc6, 0x34, 0x54, 0xac, 0x9e, 0x68, 0xa9, 0x6f, 0x92, 0xf8, 0xee, 0xb9, 0x8e, 0xdf, 0xeb, - 0x7e, 0x40, 0x7c, 0x37, 0x21, 0x6f, 0x39, 0xa9, 0xf0, 0x96, 0x87, 0x19, 0x0d, 0x77, 0x09, 0x23, - 0x34, 0x8c, 0x4f, 0x40, 0xd3, 0xe1, 0x49, 0x07, 0x52, 0xe1, 0x19, 0x42, 0x74, 0x9c, 0xf0, 0x62, - 0xf5, 0x44, 0x4b, 0x45, 0x50, 0x96, 0xbb, 0xc7, 0x67, 0xfa, 0x95, 0x02, 0x0b, 0x49, 0xcb, 0x73, - 0x2f, 0xa4, 0xc5, 0xc7, 0x30, 0x13, 0x0f, 0x4e, 0xef, 0xc7, 0x1b, 0x25, 0x92, 0x08, 0xd1, 0x8d, - 0x54, 0x42, 0x72, 0xe3, 0x5b, 0x55, 0xa6, 0x63, 0x09, 0x16, 0x87, 0x7c, 0x13, 0x7e, 0x3f, 0x81, - 0xf2, 0x23, 0xcb, 0x67, 0xcf, 0x7d, 0xdc, 0x21, 0x1f, 0x81, 0x11, 0xd4, 0x16, 0xcc, 0xa7, 0xf6, - 0x13, 0x1c, 0xfd, 0x00, 0x20, 0x8e, 0x40, 0x26, 0xfd, 0x24, 0xf1, 0xa7, 0xb4, 0x1b, 0x6f, 0x4b, - 0x49, 0x71, 0x45, 0xa7, 0x40, 0x03, 0xd4, 0x81, 0xb9, 0xfe, 0xe9, 0x05, 0xad, 0x1e, 0x77, 0x36, - 0xaf, 0x5e, 0x39, 0x06, 0x52, 0x24, 0xeb, 0x14, 0xfa, 0x44, 0x81, 0x52, 0x6a, 0xe0, 0x40, 0xbf, - 0xcb, 0x50, 0x1e, 0x1e, 0x7a, 0xaa, 0x97, 0xdf, 0x05, 0x13, 0x06, 0x2e, 0xff, 0xff, 0xfb, 0x9f, - 0xbe, 0x98, 0xa8, 0xa9, 0xcb, 0xc9, 0xd7, 0x31, 0xff, 0xc2, 0x3d, 0xb8, 0x91, 0x08, 0xd6, 0x95, - 0xab, 0xe8, 0x33, 0x05, 0x4e, 0x0f, 0x5c, 0x88, 0xe8, 0xca, 0xc8, 0xab, 0x77, 0x70, 0xd0, 0xa8, - 0x5e, 0x3d, 0x0e, 0x54, 0xb8, 0xb4, 0xc2, 0x5d, 0x3a, 0xaf, 0x56, 0x86, 0x5d, 0xf2, 0xb9, 0x4a, - 0xe8, 0x8f, 0x09, 0xb3, 0x7d, 0xec, 0x8a, 0x7e, 0x3f, 0x32, 0xa9, 0xfd, 0x14, 0x5b, 0x5d, 0x7d, - 0x37, 0x30, 0x4e, 0xfe, 0x37, 0x0a, 0xcc, 0x0f, 0xb1, 0x2a, 0xba, 0x96, 0xb1, 0xc3, 0x28, 0x46, - 0xaf, 0x5e, 0x3f, 0x1e, 0x58, 0x98, 0xd4, 0x78, 0xec, 0x57, 0x1a, 0x97, 0x86, 0x63, 0x17, 0x54, - 0xaf, 0x99, 0xb1, 0x72, 0x98, 0x87, 0xa7, 0x90, 0x8f, 0xee, 0x36, 0x94, 0x35, 0x08, 0xf5, 0xdd, - 0xbb, 0xd5, 0x8b, 0x63, 0x10, 0x71, 0xc8, 0x24, 0xa1, 0x9a, 0xf8, 0xa6, 0xc8, 0x3a, 0xbd, 0x11, - 0x64, 0x5e, 0x5d, 0x19, 0x83, 0xcd, 0x36, 0x13, 0x13, 0xf6, 0x38, 0x33, 0x03, 0xa4, 0x7a, 0x5c, - 0x33, 0x5d, 0x40, 0xdb, 0x84, 0x0d, 0x50, 0x51, 0x66, 0xe1, 0x66, 0x53, 0x69, 0x66, 0xe1, 0x8e, - 0x62, 0xb6, 0x53, 0xe8, 0x07, 0x05, 0xd0, 0xf0, 0x0c, 0x85, 0xae, 0x9f, 0x64, 0xd4, 0x3a, 0x51, - 0xaf, 0xec, 0xf1, 0x7a, 0x69, 0xa3, 0x17, 0xa3, 0x7a, 0x45, 0x8b, 0x89, 0x4c, 0x7b, 0x2d, 0xc6, - 0xc8, 0xf0, 0xcb, 0xed, 0x25, 0x31, 0xd8, 0x51, 0x22, 0x31, 0xdd, 0x2e, 0xb6, 0x9c, 0x94, 0xc0, - 0xc1, 0x5d, 0x72, 0xa4, 0xbd, 0x8e, 0x47, 0xbd, 0x23, 0xf4, 0xb3, 0x02, 0xc5, 0x98, 0x67, 0x51, - 0x56, 0xfa, 0x07, 0x59, 0xbd, 0x7a, 0x69, 0x3c, 0x48, 0x84, 0xf0, 0xb5, 0xc2, 0x63, 0xf8, 0x52, - 0x41, 0x9f, 0x2b, 0xc3, 0x51, 0xf4, 0x42, 0xac, 0xf6, 0x3a, 0xfd, 0x53, 0x2b, 0xfd, 0xc5, 0x92, - 0x8a, 0x65, 0x24, 0x24, 0x0e, 0x6e, 0x24, 0x42, 0x44, 0x9b, 0x5e, 0x17, 0xdf, 0x1b, 0x47, 0x77, - 0xff, 0xf2, 0xef, 0x3f, 0x77, 0x2c, 0xb6, 0xd7, 0x6b, 0xd7, 0x0d, 0xb7, 0xab, 0xf1, 0x80, 0x5c, - 0xda, 0x89, 0x1e, 0xb4, 0xf8, 0xcf, 0x59, 0x87, 0x38, 0x9a, 0xd7, 0xfe, 0x43, 0xc7, 0xd5, 0x86, - 0x7e, 0x3b, 0xb6, 0xf3, 0xfc, 0x4b, 0xf9, 0xe6, 0xaf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc1, 0x2f, - 0x2d, 0x08, 0x92, 0x14, 0x00, 0x00, + // 1721 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0xdf, 0x6f, 0xdb, 0xc6, + 0x1d, 0x0f, 0x2d, 0x5b, 0xb2, 0xbe, 0xb2, 0x53, 0xf9, 0xea, 0xd9, 0xb2, 0x9c, 0x2e, 0x0a, 0x9d, + 0x75, 0x4e, 0x9a, 0x89, 0xa8, 0x33, 0x74, 0xb1, 0x81, 0x0e, 0x73, 0xe2, 0x76, 0x50, 0xe3, 0x24, + 0x2e, 0xad, 0x74, 0x3f, 0x30, 0x40, 0x3d, 0x91, 0x27, 0x99, 0x35, 0x45, 0xb2, 0xc7, 0x93, 0x3d, + 0x22, 0x30, 0x5a, 0x0c, 0x7b, 0xdd, 0xcb, 0x86, 0xbd, 0x0c, 0x03, 0xf6, 0xe7, 0x0c, 0xd8, 0xeb, + 0x30, 0x60, 0x0f, 0x7b, 0xdc, 0xbf, 0xb0, 0xa7, 0xbe, 0x0c, 0x77, 0xbc, 0x23, 0x29, 0x89, 0x52, + 0xe5, 0xa4, 0x6f, 0xe4, 0xf7, 0x3e, 0xdf, 0x9f, 0xf7, 0xbd, 0xcf, 0x7d, 0x49, 0xb8, 0xd3, 0x73, + 0x23, 0x46, 0x1c, 0xdb, 0x35, 0x30, 0x65, 0x4e, 0x0f, 0x5b, 0x2c, 0x79, 0x08, 0x9b, 0x01, 0xf5, + 0x99, 0x8f, 0xd6, 0x14, 0xa4, 0xa9, 0x56, 0xea, 0x5b, 0x7d, 0xdf, 0xef, 0xbb, 0xc4, 0x10, 0x80, + 0xee, 0xb0, 0x67, 0x60, 0x2f, 0x8a, 0xd1, 0xf5, 0x5b, 0x72, 0x09, 0x07, 0x8e, 0x81, 0x3d, 0xcf, + 0x67, 0x98, 0x39, 0xbe, 0x27, 0x6d, 0xd5, 0x6f, 0x8f, 0x2b, 0x32, 0x67, 0x40, 0x42, 0x86, 0x07, + 0x81, 0x04, 0x34, 0xd2, 0x78, 0xec, 0x81, 0xe3, 0x19, 0x2e, 0x1e, 0x7a, 0xd6, 0x59, 0x27, 0x70, + 0xb1, 0xa7, 0x1c, 0x24, 0x08, 0xcb, 0xa7, 0xc4, 0x70, 0x1d, 0x46, 0x28, 0x76, 0x95, 0x83, 0xad, + 0xd1, 0x55, 0x16, 0x05, 0x44, 0x2d, 0x7d, 0x7f, 0x74, 0xc9, 0xb1, 0x89, 0xc7, 0x9c, 0x9e, 0x43, + 0xa8, 0x8a, 0x6d, 0x74, 0x5d, 0x25, 0xdb, 0x71, 0x6c, 0x09, 0x78, 0x67, 0xcc, 0x80, 0xc7, 0x08, + 0xed, 0x61, 0x8b, 0x4c, 0x84, 0x4e, 0x2e, 0x88, 0xc7, 0x0c, 0xcb, 0xf5, 0x87, 0xb6, 0x78, 0x94, + 0x11, 0xe8, 0xff, 0xd0, 0x60, 0xf9, 0x50, 0x9a, 0x45, 0x07, 0x50, 0xc9, 0xb8, 0xa8, 0x69, 0x0d, + 0x6d, 0xb7, 0xb2, 0xb7, 0xd5, 0x4c, 0x8a, 0xcd, 0x7d, 0x34, 0x15, 0xba, 0x75, 0x64, 0x82, 0x42, + 0xb7, 0x6c, 0xf4, 0x10, 0x16, 0xc3, 0x80, 0x58, 0xb5, 0x05, 0xa1, 0x74, 0xbb, 0x39, 0xb1, 0x43, + 0x89, 0xe2, 0x69, 0x40, 0x2c, 0x53, 0x80, 0x11, 0x82, 0x45, 0x86, 0xfb, 0x61, 0xad, 0xd0, 0x28, + 0xec, 0x96, 0x4d, 0xf1, 0x8c, 0xf6, 0xa1, 0x18, 0xfa, 0x43, 0x6a, 0x91, 0xda, 0xa2, 0x30, 0x75, + 0x67, 0x96, 0x29, 0x01, 0x34, 0xa5, 0x82, 0xfe, 0xf7, 0x02, 0x7c, 0xef, 0x09, 0x25, 0x98, 0x11, + 0x05, 0x30, 0xc9, 0x97, 0x43, 0x12, 0x32, 0xf4, 0x21, 0xac, 0x24, 0x99, 0x9d, 0x93, 0x48, 0xa6, + 0x56, 0x9f, 0x92, 0xda, 0x53, 0x12, 0x99, 0x49, 0x25, 0x9e, 0x92, 0x08, 0xd5, 0xa0, 0x74, 0x41, + 0x68, 0xe8, 0xf8, 0x5e, 0xad, 0xd0, 0xd0, 0x76, 0xcb, 0xa6, 0x7a, 0x7d, 0xbd, 0xb4, 0x7f, 0x09, + 0x10, 0xf0, 0x75, 0xd1, 0x86, 0xb5, 0xc5, 0x46, 0x61, 0xb7, 0xb2, 0xf7, 0x28, 0x47, 0x35, 0x37, + 0x97, 0xe6, 0x49, 0xa2, 0xfa, 0x91, 0xc7, 0x68, 0x64, 0x66, 0x6c, 0xa1, 0x63, 0x58, 0xe7, 0xed, + 0xdb, 0x49, 0x44, 0x9d, 0x0b, 0xec, 0x0e, 0x49, 0x6d, 0x49, 0xe6, 0x1b, 0xf7, 0x7a, 0x53, 0xf5, + 0x7a, 0xb3, 0xad, 0x7a, 0xdd, 0x44, 0x5c, 0x2f, 0x31, 0xfd, 0x19, 0xd7, 0xca, 0x6c, 0x45, 0xf1, + 0x9a, 0x5b, 0x51, 0xff, 0x10, 0xde, 0x1a, 0x8b, 0x13, 0x55, 0xa1, 0xa0, 0x4a, 0x5f, 0x36, 0xf9, + 0x23, 0x5a, 0x87, 0xa5, 0x38, 0xbc, 0x05, 0x21, 0x8b, 0x5f, 0x0e, 0x16, 0x1e, 0x69, 0xfa, 0x37, + 0x1a, 0xdc, 0x1c, 0xb5, 0x8c, 0x7e, 0x05, 0xe8, 0xd2, 0xa7, 0xe7, 0x3d, 0xd7, 0xbf, 0xec, 0x90, + 0xdf, 0x12, 0x6b, 0xc8, 0x4d, 0xcb, 0x8d, 0xbc, 0x3f, 0xb6, 0x91, 0xbf, 0x90, 0xc0, 0x8f, 0x14, + 0xae, 0x95, 0x9c, 0x2c, 0x73, 0xed, 0x72, 0x7c, 0x11, 0x6d, 0x42, 0xc9, 0xf3, 0x6d, 0xc2, 0x7b, + 0x3e, 0x8e, 0xa4, 0xc8, 0x5f, 0x5b, 0x36, 0xda, 0x83, 0x12, 0xc3, 0xe1, 0x39, 0x5f, 0x28, 0xe4, + 0x1e, 0x86, 0x8c, 0xdd, 0x22, 0x47, 0xb6, 0x6c, 0xb4, 0x03, 0xab, 0x94, 0x30, 0x1a, 0x75, 0x30, + 0x63, 0x64, 0x10, 0x30, 0xd1, 0xc6, 0xab, 0xe6, 0x8a, 0x10, 0x1e, 0xc6, 0x32, 0x74, 0x0b, 0xca, + 0x01, 0x75, 0x3c, 0xcb, 0x09, 0xb0, 0x2b, 0x36, 0xa7, 0x6c, 0xa6, 0x02, 0xfd, 0x5f, 0x0b, 0xb0, + 0x92, 0x6d, 0x1b, 0xf4, 0x40, 0x15, 0x2a, 0x4e, 0x77, 0x63, 0x2c, 0x8a, 0xe3, 0x98, 0x70, 0x64, + 0x01, 0x51, 0x13, 0x16, 0x39, 0xc9, 0xc8, 0x9e, 0xac, 0xe7, 0x83, 0xdb, 0x51, 0x40, 0x4c, 0x81, + 0x43, 0xef, 0xc1, 0x5a, 0x78, 0xe6, 0x53, 0xd6, 0xb1, 0x49, 0x68, 0x51, 0x27, 0x60, 0x69, 0x9f, + 0x57, 0xc5, 0xc2, 0x51, 0x2a, 0x47, 0xfb, 0xb0, 0x3a, 0x0c, 0x09, 0xed, 0x0c, 0x08, 0xc3, 0x36, + 0x66, 0x58, 0x9e, 0xd2, 0xf5, 0x89, 0xd6, 0x3a, 0xf4, 0x22, 0x73, 0x85, 0x43, 0x9f, 0x49, 0x24, + 0xaf, 0x8c, 0xd2, 0xea, 0x88, 0x00, 0xe3, 0xc4, 0x57, 0x94, 0x90, 0x87, 0x84, 0xf6, 0x01, 0x2c, + 0xd1, 0xf6, 0x76, 0x07, 0x33, 0xd9, 0x77, 0xb3, 0xfa, 0xb6, 0x2c, 0xd1, 0x87, 0x0c, 0xdd, 0x86, + 0x4a, 0xcf, 0x71, 0x49, 0xa7, 0xe7, 0xd3, 0x01, 0x66, 0xb5, 0x92, 0xb0, 0x0e, 0x5c, 0xf4, 0xb1, + 0x90, 0xe8, 0x9f, 0xc2, 0xc6, 0xf8, 0x91, 0x0a, 0x03, 0xdf, 0x0b, 0x09, 0xfa, 0x09, 0x2c, 0xab, + 0x8e, 0x96, 0x35, 0xde, 0x9e, 0xd1, 0xeb, 0x66, 0x02, 0xd6, 0xbb, 0x80, 0x7e, 0x4e, 0xd8, 0x38, + 0xdd, 0xec, 0xc1, 0xd2, 0x97, 0x43, 0x42, 0x15, 0xcf, 0xdc, 0x9a, 0xc2, 0x33, 0x9f, 0x72, 0x8c, + 0x19, 0x43, 0x39, 0xc7, 0xd8, 0x84, 0x61, 0xc7, 0x0d, 0xc5, 0xc6, 0x2d, 0x9b, 0xea, 0x55, 0x7f, + 0x0e, 0x6f, 0x8f, 0xf8, 0x78, 0xd3, 0x98, 0x3f, 0x87, 0xd5, 0x53, 0x82, 0xa9, 0x75, 0xf6, 0x22, + 0x88, 0x59, 0x83, 0x37, 0x00, 0xa3, 0x8e, 0xc5, 0x3a, 0x19, 0x5a, 0xd2, 0x44, 0x10, 0xd5, 0x78, + 0x21, 0x3d, 0xcb, 0x48, 0x87, 0x55, 0x17, 0x33, 0x12, 0xb2, 0x4e, 0x37, 0x12, 0x5c, 0x1a, 0x47, + 0x5b, 0x89, 0x85, 0x8f, 0xa3, 0xa7, 0x24, 0xd2, 0xbf, 0x2e, 0xc0, 0x46, 0xec, 0x42, 0xb9, 0x0f, + 0xbf, 0x23, 0x26, 0xde, 0x1f, 0xa1, 0xce, 0x85, 0xdc, 0x43, 0x99, 0x06, 0x3b, 0x17, 0x37, 0x16, + 0x5e, 0x8b, 0x1b, 0x47, 0x4e, 0xf0, 0xe2, 0xd8, 0x09, 0xce, 0x5e, 0x18, 0x4b, 0xa3, 0x17, 0xc6, + 0x01, 0x94, 0xfc, 0xb8, 0xec, 0xb2, 0xb9, 0x1b, 0x39, 0x9b, 0x36, 0xb2, 0x3d, 0xa6, 0x52, 0xe0, + 0x7c, 0xc9, 0xfc, 0x73, 0xe2, 0xc9, 0xd6, 0x8e, 0x5f, 0xb8, 0xd4, 0x75, 0x06, 0x0e, 0xab, 0x2d, + 0x37, 0xb4, 0xdd, 0x25, 0x33, 0x7e, 0xd1, 0xbf, 0x80, 0xcd, 0x89, 0x1d, 0x90, 0x8d, 0xb3, 0x0f, + 0xe5, 0x64, 0xa0, 0xaa, 0x69, 0xe2, 0xf6, 0x99, 0xd9, 0x39, 0x29, 0x3a, 0x8d, 0x60, 0x21, 0x13, + 0x81, 0xfe, 0x1f, 0x0d, 0xb6, 0x3e, 0x76, 0x3c, 0xfb, 0x71, 0x94, 0x25, 0x5e, 0xb5, 0xe3, 0x4f, + 0xa0, 0xc4, 0xf9, 0x3a, 0x9d, 0x28, 0xae, 0xc3, 0xd6, 0x45, 0xae, 0xda, 0xb2, 0x51, 0x1b, 0xca, + 0xb6, 0x43, 0x89, 0x25, 0xb8, 0x89, 0x3b, 0xbf, 0xb9, 0xf7, 0x41, 0x4e, 0xcc, 0x53, 0xa3, 0x68, + 0x1e, 0x29, 0x6d, 0x33, 0x35, 0xa4, 0xdf, 0x85, 0x72, 0x22, 0x47, 0x00, 0xc5, 0xd6, 0xf3, 0x93, + 0x97, 0xed, 0xd3, 0xea, 0x0d, 0x54, 0x81, 0xd2, 0x8b, 0x97, 0x6d, 0xf1, 0xa2, 0xe9, 0x5f, 0xc1, + 0xea, 0xa1, 0x6d, 0xb7, 0x71, 0x5f, 0x65, 0xf4, 0x26, 0x73, 0x52, 0xee, 0x9d, 0xc7, 0xbb, 0xc9, + 0xbf, 0x20, 0xf4, 0x92, 0x3a, 0x2c, 0x6e, 0xc8, 0x65, 0x33, 0x15, 0xe8, 0x55, 0xb8, 0xa9, 0x02, + 0x88, 0xb7, 0x50, 0xef, 0xc2, 0x7a, 0xcc, 0x64, 0x6d, 0xea, 0xf4, 0xfb, 0x84, 0xaa, 0xc8, 0x3e, + 0x81, 0xb7, 0x59, 0x2c, 0xe9, 0x64, 0xc6, 0xd4, 0xc9, 0x43, 0x26, 0x26, 0xd9, 0xe6, 0xb1, 0x80, + 0x9c, 0xb8, 0xd8, 0x33, 0xd7, 0xa4, 0x5a, 0x2a, 0xd2, 0x37, 0xd5, 0x30, 0x95, 0xf8, 0x90, 0xce, + 0xdb, 0x50, 0x3b, 0x22, 0xd8, 0x62, 0xce, 0xc5, 0x64, 0x00, 0x8f, 0x00, 0x54, 0x00, 0x53, 0x2b, + 0x93, 0xd9, 0xde, 0xb2, 0x04, 0xb7, 0x6c, 0x7d, 0x1b, 0xb6, 0x72, 0xac, 0x4a, 0x97, 0x5f, 0x6b, + 0x50, 0x55, 0x05, 0x3d, 0xa1, 0xbe, 0x3d, 0xb4, 0x08, 0x45, 0x1f, 0x40, 0x99, 0x1b, 0x62, 0xd1, + 0x5c, 0xae, 0x96, 0x63, 0x6c, 0xcb, 0x46, 0x3f, 0x86, 0x92, 0x3f, 0x64, 0xc1, 0x90, 0x85, 0x53, + 0xae, 0xc8, 0xcf, 0x30, 0x75, 0x70, 0xd7, 0x25, 0xcf, 0x70, 0x60, 0x2a, 0xa8, 0xfe, 0x1b, 0xd8, + 0x34, 0x49, 0xdf, 0x09, 0x19, 0xa1, 0x2a, 0x02, 0x95, 0xf4, 0x21, 0xe7, 0x82, 0x58, 0xa4, 0x0e, + 0xd4, 0xce, 0x8c, 0x03, 0x95, 0xa8, 0xa7, 0x5a, 0xfa, 0x57, 0x69, 0x7e, 0x4f, 0x7c, 0x2f, 0x1c, + 0x0e, 0xde, 0x20, 0xbf, 0x87, 0x50, 0x74, 0xbc, 0x4c, 0x7a, 0xdb, 0x93, 0xfc, 0x88, 0x07, 0x84, + 0x11, 0xca, 0xf3, 0x93, 0xd0, 0x6c, 0x7a, 0x2a, 0x80, 0x4c, 0x7a, 0x96, 0x14, 0xcd, 0x93, 0x5e, + 0xa2, 0x9e, 0x6a, 0xe9, 0x08, 0xaa, 0xca, 0x7a, 0xb2, 0xa7, 0x7f, 0xd1, 0x60, 0x23, 0x3d, 0xf2, + 0x22, 0x0a, 0xe5, 0xf1, 0x19, 0xac, 0x24, 0x23, 0xde, 0xeb, 0xf1, 0x46, 0x85, 0xa4, 0x42, 0xf4, + 0x7e, 0xa6, 0x20, 0x85, 0xd9, 0x47, 0x55, 0x95, 0x63, 0x0b, 0x36, 0x27, 0x62, 0x93, 0x71, 0x3f, + 0x87, 0xea, 0xb1, 0x13, 0xb2, 0x97, 0x21, 0xee, 0x93, 0xef, 0x80, 0x11, 0xf4, 0x0e, 0xac, 0x65, + 0xec, 0x49, 0x8e, 0xfe, 0x04, 0x20, 0xc9, 0x40, 0x15, 0xfd, 0x3a, 0xf9, 0x67, 0xb4, 0xf7, 0xbe, + 0xa9, 0xa4, 0xcd, 0x15, 0xef, 0x02, 0x8d, 0x50, 0x1f, 0x6e, 0x8e, 0xce, 0x42, 0x68, 0x77, 0xde, + 0x2f, 0x90, 0xfa, 0xbd, 0x39, 0x90, 0xb2, 0x58, 0x37, 0xd0, 0xef, 0x35, 0xa8, 0x64, 0xc6, 0x17, + 0xf4, 0x83, 0x1c, 0xe5, 0xc9, 0x11, 0xaa, 0xfe, 0xee, 0xb7, 0xc1, 0xa4, 0x83, 0x77, 0x7f, 0xf7, + 0xcf, 0xff, 0xfe, 0x69, 0xa1, 0xa1, 0x6f, 0xa7, 0x3f, 0x09, 0xc4, 0x87, 0xfe, 0xc5, 0xfb, 0xa9, + 0xe0, 0x40, 0xbb, 0x8f, 0xfe, 0xa0, 0xc1, 0x5b, 0x63, 0x17, 0x22, 0xba, 0x37, 0xf5, 0xea, 0x1d, + 0x1f, 0x5b, 0xea, 0xf7, 0xe7, 0x81, 0xca, 0x90, 0x76, 0x44, 0x48, 0xef, 0xe8, 0xb5, 0xc9, 0x90, + 0x42, 0xa1, 0xc2, 0xe3, 0xb1, 0x61, 0x75, 0x84, 0x5d, 0xd1, 0x0f, 0xa7, 0x16, 0x75, 0x94, 0x62, + 0xeb, 0xbb, 0xdf, 0x0e, 0x4c, 0x8a, 0xff, 0x37, 0x0d, 0xd6, 0x26, 0x58, 0x15, 0xbd, 0x97, 0x63, + 0x61, 0x1a, 0xa3, 0xd7, 0x1f, 0xcc, 0x07, 0x96, 0x2e, 0x0d, 0x91, 0xfb, 0xbd, 0xbd, 0xbb, 0x93, + 0xb9, 0x4b, 0xaa, 0x37, 0xec, 0x44, 0x99, 0xd7, 0xe1, 0x05, 0x14, 0xe3, 0xbb, 0x0d, 0xe5, 0x0d, + 0x42, 0x23, 0xf7, 0x6e, 0xfd, 0xce, 0x0c, 0x44, 0x92, 0x32, 0x49, 0xa9, 0x26, 0xb9, 0x29, 0xf2, + 0x76, 0x6f, 0x0a, 0x99, 0xd7, 0x77, 0x66, 0x60, 0xf3, 0xdd, 0x24, 0x84, 0x3d, 0xcb, 0xcd, 0x18, + 0xa9, 0xce, 0xeb, 0x66, 0x00, 0xe8, 0x94, 0xb0, 0x31, 0x2a, 0xca, 0x6d, 0xdc, 0x7c, 0x2a, 0xcd, + 0x6d, 0xdc, 0x69, 0xcc, 0x76, 0x03, 0xfd, 0x5b, 0x03, 0x34, 0x39, 0x43, 0xa1, 0x07, 0xd7, 0x19, + 0xb5, 0xae, 0x75, 0x56, 0xce, 0x44, 0xbf, 0x74, 0xd1, 0xe7, 0xd3, 0xce, 0x8a, 0x91, 0x10, 0x99, + 0xf1, 0x4a, 0x8e, 0x91, 0x7c, 0x44, 0xff, 0x82, 0x58, 0xec, 0x2a, 0x95, 0xd8, 0xfe, 0x00, 0x3b, + 0x5e, 0x46, 0xe0, 0xe1, 0x01, 0xb9, 0x32, 0x5e, 0x25, 0xa3, 0xde, 0x15, 0xfa, 0x9f, 0x06, 0xe5, + 0x84, 0x67, 0x51, 0x5e, 0xf9, 0xc7, 0x59, 0xbd, 0x7e, 0x77, 0x36, 0x48, 0xa6, 0xf0, 0x57, 0x4d, + 0xe4, 0xf0, 0x67, 0x0d, 0xfd, 0x51, 0x9b, 0xcc, 0x62, 0xc8, 0xb1, 0xc6, 0xab, 0xec, 0xaf, 0xbb, + 0xec, 0xf7, 0x4f, 0x26, 0x97, 0xa9, 0x90, 0x24, 0xb9, 0xa9, 0x08, 0x99, 0x6d, 0x76, 0x5d, 0x7e, + 0x6f, 0x5c, 0x3d, 0xfe, 0xd9, 0xaf, 0x7f, 0xda, 0x77, 0xd8, 0xd9, 0xb0, 0xdb, 0xb4, 0xfc, 0x81, + 0x21, 0x12, 0xf2, 0x69, 0x3f, 0x7e, 0x30, 0x92, 0xff, 0x83, 0x7d, 0xe2, 0x19, 0x41, 0xf7, 0x47, + 0x7d, 0xdf, 0x98, 0xf8, 0xfb, 0xda, 0x2d, 0x8a, 0x4f, 0xa2, 0x87, 0xff, 0x0f, 0x00, 0x00, 0xff, + 0xff, 0x1c, 0xb2, 0xae, 0x8e, 0x99, 0x15, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/artifact/artifacts.swagger.json b/flyteidl/gen/pb-go/flyteidl/artifact/artifacts.swagger.json index 600dea3a01..47785a90b0 100644 --- a/flyteidl/gen/pb-go/flyteidl/artifact/artifacts.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/artifact/artifacts.swagger.json @@ -185,6 +185,54 @@ "in": "path", "required": true, "type": "string" + }, + { + "name": "artifact_id.time_partition.value.static_value", + "description": "The string static value is for use in the Partitions object.", + "in": "query", + "required": false, + "type": "string" + }, + { + "name": "artifact_id.time_partition.value.time_value", + "description": "The time value is for use in the TimePartition case.", + "in": "query", + "required": false, + "type": "string", + "format": "date-time" + }, + { + "name": "artifact_id.time_partition.value.triggered_binding.index", + "in": "query", + "required": false, + "type": "integer", + "format": "int64" + }, + { + "name": "artifact_id.time_partition.value.triggered_binding.partition_key", + "in": "query", + "required": false, + "type": "string" + }, + { + "name": "artifact_id.time_partition.value.triggered_binding.bind_to_time_partition", + "in": "query", + "required": false, + "type": "boolean", + "format": "boolean" + }, + { + "name": "artifact_id.time_partition.value.triggered_binding.transform", + "description": "This is only relevant in the time partition case.", + "in": "query", + "required": false, + "type": "string" + }, + { + "name": "artifact_id.time_partition.value.input_binding.var", + "in": "query", + "required": false, + "type": "string" } ], "tags": [ @@ -693,6 +741,13 @@ }, "metadata_type": { "type": "string" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "file_format": { + "type": "string" } } }, @@ -773,6 +828,10 @@ "partitions": { "$ref": "#/definitions/corePartitions" }, + "time_partition_value": { + "type": "string", + "format": "date-time" + }, "principal": { "type": "string" }, @@ -830,11 +889,15 @@ "format": "int64" }, "partition_key": { - "type": "string", - "title": "These two fields are only relevant in the partition value case" + "type": "string" + }, + "bind_to_time_partition": { + "type": "boolean", + "format": "boolean" }, "transform": { - "type": "string" + "type": "string", + "title": "This is only relevant in the time partition case" } }, "title": "Only valid for triggers" @@ -849,7 +912,12 @@ "type": "string" }, "partitions": { - "$ref": "#/definitions/corePartitions" + "$ref": "#/definitions/corePartitions", + "description": "Think of a partition as a tag on an Artifact, except it's a key-value pair.\nDifferent partitions naturally have different versions (execution ids)." + }, + "time_partition": { + "$ref": "#/definitions/coreTimePartition", + "description": "There is no such thing as an empty time partition - if it's not set, then there is no time partition." } } }, @@ -1049,7 +1117,13 @@ "type": "object", "properties": { "static_value": { - "type": "string" + "type": "string", + "title": "The string static value is for use in the Partitions object" + }, + "time_value": { + "type": "string", + "format": "date-time", + "title": "The time value is for use in the TimePartition case" }, "triggered_binding": { "$ref": "#/definitions/coreArtifactBindingData" @@ -1488,6 +1562,14 @@ } } }, + "coreTimePartition": { + "type": "object", + "properties": { + "value": { + "$ref": "#/definitions/coreLabelValue" + } + } + }, "coreTypeAnnotation": { "type": "object", "properties": { diff --git a/flyteidl/gen/pb-go/flyteidl/core/artifact_id.pb.go b/flyteidl/gen/pb-go/flyteidl/core/artifact_id.pb.go index bf7ba4679f..927deec730 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/artifact_id.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/artifact_id.pb.go @@ -6,6 +6,7 @@ package core import ( fmt "fmt" proto "github.com/golang/protobuf/proto" + timestamp "github.com/golang/protobuf/ptypes/timestamp" math "math" ) @@ -80,8 +81,13 @@ func (m *ArtifactKey) GetName() string { type ArtifactBindingData struct { Index uint32 `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"` // These two fields are only relevant in the partition value case - PartitionKey string `protobuf:"bytes,2,opt,name=partition_key,json=partitionKey,proto3" json:"partition_key,omitempty"` - Transform string `protobuf:"bytes,3,opt,name=transform,proto3" json:"transform,omitempty"` + // + // Types that are valid to be assigned to PartitionData: + // *ArtifactBindingData_PartitionKey + // *ArtifactBindingData_BindToTimePartition + PartitionData isArtifactBindingData_PartitionData `protobuf_oneof:"partition_data"` + // This is only relevant in the time partition case + Transform string `protobuf:"bytes,4,opt,name=transform,proto3" json:"transform,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -119,13 +125,43 @@ func (m *ArtifactBindingData) GetIndex() uint32 { return 0 } -func (m *ArtifactBindingData) GetPartitionKey() string { +type isArtifactBindingData_PartitionData interface { + isArtifactBindingData_PartitionData() +} + +type ArtifactBindingData_PartitionKey struct { + PartitionKey string `protobuf:"bytes,2,opt,name=partition_key,json=partitionKey,proto3,oneof"` +} + +type ArtifactBindingData_BindToTimePartition struct { + BindToTimePartition bool `protobuf:"varint,3,opt,name=bind_to_time_partition,json=bindToTimePartition,proto3,oneof"` +} + +func (*ArtifactBindingData_PartitionKey) isArtifactBindingData_PartitionData() {} + +func (*ArtifactBindingData_BindToTimePartition) isArtifactBindingData_PartitionData() {} + +func (m *ArtifactBindingData) GetPartitionData() isArtifactBindingData_PartitionData { if m != nil { - return m.PartitionKey + return m.PartitionData + } + return nil +} + +func (m *ArtifactBindingData) GetPartitionKey() string { + if x, ok := m.GetPartitionData().(*ArtifactBindingData_PartitionKey); ok { + return x.PartitionKey } return "" } +func (m *ArtifactBindingData) GetBindToTimePartition() bool { + if x, ok := m.GetPartitionData().(*ArtifactBindingData_BindToTimePartition); ok { + return x.BindToTimePartition + } + return false +} + func (m *ArtifactBindingData) GetTransform() string { if m != nil { return m.Transform @@ -133,6 +169,14 @@ func (m *ArtifactBindingData) GetTransform() string { return "" } +// XXX_OneofWrappers is for the internal use of the proto package. +func (*ArtifactBindingData) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*ArtifactBindingData_PartitionKey)(nil), + (*ArtifactBindingData_BindToTimePartition)(nil), + } +} + type InputBindingData struct { Var string `protobuf:"bytes,1,opt,name=var,proto3" json:"var,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -175,6 +219,7 @@ func (m *InputBindingData) GetVar() string { type LabelValue struct { // Types that are valid to be assigned to Value: // *LabelValue_StaticValue + // *LabelValue_TimeValue // *LabelValue_TriggeredBinding // *LabelValue_InputBinding Value isLabelValue_Value `protobuf_oneof:"value"` @@ -216,16 +261,22 @@ type LabelValue_StaticValue struct { StaticValue string `protobuf:"bytes,1,opt,name=static_value,json=staticValue,proto3,oneof"` } +type LabelValue_TimeValue struct { + TimeValue *timestamp.Timestamp `protobuf:"bytes,2,opt,name=time_value,json=timeValue,proto3,oneof"` +} + type LabelValue_TriggeredBinding struct { - TriggeredBinding *ArtifactBindingData `protobuf:"bytes,2,opt,name=triggered_binding,json=triggeredBinding,proto3,oneof"` + TriggeredBinding *ArtifactBindingData `protobuf:"bytes,3,opt,name=triggered_binding,json=triggeredBinding,proto3,oneof"` } type LabelValue_InputBinding struct { - InputBinding *InputBindingData `protobuf:"bytes,3,opt,name=input_binding,json=inputBinding,proto3,oneof"` + InputBinding *InputBindingData `protobuf:"bytes,4,opt,name=input_binding,json=inputBinding,proto3,oneof"` } func (*LabelValue_StaticValue) isLabelValue_Value() {} +func (*LabelValue_TimeValue) isLabelValue_Value() {} + func (*LabelValue_TriggeredBinding) isLabelValue_Value() {} func (*LabelValue_InputBinding) isLabelValue_Value() {} @@ -244,6 +295,13 @@ func (m *LabelValue) GetStaticValue() string { return "" } +func (m *LabelValue) GetTimeValue() *timestamp.Timestamp { + if x, ok := m.GetValue().(*LabelValue_TimeValue); ok { + return x.TimeValue + } + return nil +} + func (m *LabelValue) GetTriggeredBinding() *ArtifactBindingData { if x, ok := m.GetValue().(*LabelValue_TriggeredBinding); ok { return x.TriggeredBinding @@ -262,6 +320,7 @@ func (m *LabelValue) GetInputBinding() *InputBindingData { func (*LabelValue) XXX_OneofWrappers() []interface{} { return []interface{}{ (*LabelValue_StaticValue)(nil), + (*LabelValue_TimeValue)(nil), (*LabelValue_TriggeredBinding)(nil), (*LabelValue_InputBinding)(nil), } @@ -306,29 +365,63 @@ func (m *Partitions) GetValue() map[string]*LabelValue { return nil } +type TimePartition struct { + Value *LabelValue `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *TimePartition) Reset() { *m = TimePartition{} } +func (m *TimePartition) String() string { return proto.CompactTextString(m) } +func (*TimePartition) ProtoMessage() {} +func (*TimePartition) Descriptor() ([]byte, []int) { + return fileDescriptor_1079b0707e23f978, []int{5} +} + +func (m *TimePartition) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TimePartition.Unmarshal(m, b) +} +func (m *TimePartition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TimePartition.Marshal(b, m, deterministic) +} +func (m *TimePartition) XXX_Merge(src proto.Message) { + xxx_messageInfo_TimePartition.Merge(m, src) +} +func (m *TimePartition) XXX_Size() int { + return xxx_messageInfo_TimePartition.Size(m) +} +func (m *TimePartition) XXX_DiscardUnknown() { + xxx_messageInfo_TimePartition.DiscardUnknown(m) +} + +var xxx_messageInfo_TimePartition proto.InternalMessageInfo + +func (m *TimePartition) GetValue() *LabelValue { + if m != nil { + return m.Value + } + return nil +} + type ArtifactID struct { ArtifactKey *ArtifactKey `protobuf:"bytes,1,opt,name=artifact_key,json=artifactKey,proto3" json:"artifact_key,omitempty"` Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"` // Think of a partition as a tag on an Artifact, except it's a key-value pair. // Different partitions naturally have different versions (execution ids). - // This is a oneof because of partition querying... we need a way to distinguish between - // a user not-specifying partitions when searching, and specifically searching for an Artifact - // that is not partitioned (this can happen if an Artifact goes from partitioned to non- - // partitioned across executions). - // - // Types that are valid to be assigned to Dimensions: - // *ArtifactID_Partitions - Dimensions isArtifactID_Dimensions `protobuf_oneof:"dimensions"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Partitions *Partitions `protobuf:"bytes,3,opt,name=partitions,proto3" json:"partitions,omitempty"` + // There is no such thing as an empty time partition - if it's not set, then there is no time partition. + TimePartition *TimePartition `protobuf:"bytes,4,opt,name=time_partition,json=timePartition,proto3" json:"time_partition,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ArtifactID) Reset() { *m = ArtifactID{} } func (m *ArtifactID) String() string { return proto.CompactTextString(m) } func (*ArtifactID) ProtoMessage() {} func (*ArtifactID) Descriptor() ([]byte, []int) { - return fileDescriptor_1079b0707e23f978, []int{5} + return fileDescriptor_1079b0707e23f978, []int{6} } func (m *ArtifactID) XXX_Unmarshal(b []byte) error { @@ -363,37 +456,20 @@ func (m *ArtifactID) GetVersion() string { return "" } -type isArtifactID_Dimensions interface { - isArtifactID_Dimensions() -} - -type ArtifactID_Partitions struct { - Partitions *Partitions `protobuf:"bytes,3,opt,name=partitions,proto3,oneof"` -} - -func (*ArtifactID_Partitions) isArtifactID_Dimensions() {} - -func (m *ArtifactID) GetDimensions() isArtifactID_Dimensions { +func (m *ArtifactID) GetPartitions() *Partitions { if m != nil { - return m.Dimensions + return m.Partitions } return nil } -func (m *ArtifactID) GetPartitions() *Partitions { - if x, ok := m.GetDimensions().(*ArtifactID_Partitions); ok { - return x.Partitions +func (m *ArtifactID) GetTimePartition() *TimePartition { + if m != nil { + return m.TimePartition } return nil } -// XXX_OneofWrappers is for the internal use of the proto package. -func (*ArtifactID) XXX_OneofWrappers() []interface{} { - return []interface{}{ - (*ArtifactID_Partitions)(nil), - } -} - type ArtifactTag struct { ArtifactKey *ArtifactKey `protobuf:"bytes,1,opt,name=artifact_key,json=artifactKey,proto3" json:"artifact_key,omitempty"` Value *LabelValue `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` @@ -406,7 +482,7 @@ func (m *ArtifactTag) Reset() { *m = ArtifactTag{} } func (m *ArtifactTag) String() string { return proto.CompactTextString(m) } func (*ArtifactTag) ProtoMessage() {} func (*ArtifactTag) Descriptor() ([]byte, []int) { - return fileDescriptor_1079b0707e23f978, []int{6} + return fileDescriptor_1079b0707e23f978, []int{7} } func (m *ArtifactTag) XXX_Unmarshal(b []byte) error { @@ -462,7 +538,7 @@ func (m *ArtifactQuery) Reset() { *m = ArtifactQuery{} } func (m *ArtifactQuery) String() string { return proto.CompactTextString(m) } func (*ArtifactQuery) ProtoMessage() {} func (*ArtifactQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_1079b0707e23f978, []int{7} + return fileDescriptor_1079b0707e23f978, []int{8} } func (m *ArtifactQuery) XXX_Unmarshal(b []byte) error { @@ -571,7 +647,7 @@ func (m *Trigger) Reset() { *m = Trigger{} } func (m *Trigger) String() string { return proto.CompactTextString(m) } func (*Trigger) ProtoMessage() {} func (*Trigger) Descriptor() ([]byte, []int) { - return fileDescriptor_1079b0707e23f978, []int{8} + return fileDescriptor_1079b0707e23f978, []int{9} } func (m *Trigger) XXX_Unmarshal(b []byte) error { @@ -613,6 +689,7 @@ func init() { proto.RegisterType((*LabelValue)(nil), "flyteidl.core.LabelValue") proto.RegisterType((*Partitions)(nil), "flyteidl.core.Partitions") proto.RegisterMapType((map[string]*LabelValue)(nil), "flyteidl.core.Partitions.ValueEntry") + proto.RegisterType((*TimePartition)(nil), "flyteidl.core.TimePartition") proto.RegisterType((*ArtifactID)(nil), "flyteidl.core.ArtifactID") proto.RegisterType((*ArtifactTag)(nil), "flyteidl.core.ArtifactTag") proto.RegisterType((*ArtifactQuery)(nil), "flyteidl.core.ArtifactQuery") @@ -622,44 +699,51 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/artifact_id.proto", fileDescriptor_1079b0707e23f978) } var fileDescriptor_1079b0707e23f978 = []byte{ - // 612 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xc1, 0x6e, 0xd3, 0x4c, - 0x10, 0x8e, 0x9b, 0xb6, 0xf9, 0x3b, 0x4e, 0xa4, 0xfe, 0x0b, 0x42, 0x4e, 0x84, 0x68, 0xe5, 0xf6, - 0xd0, 0x0b, 0xb6, 0x14, 0x84, 0x54, 0x85, 0x02, 0x22, 0x0a, 0x28, 0x56, 0x39, 0x50, 0x37, 0xe2, - 0xc0, 0x25, 0xda, 0xc4, 0x1b, 0xb3, 0x34, 0x59, 0x47, 0xeb, 0x4d, 0x84, 0x91, 0x78, 0x14, 0xde, - 0x81, 0x97, 0xe1, 0x3d, 0x78, 0x04, 0xb4, 0xeb, 0x5d, 0x3b, 0x89, 0xf0, 0xa1, 0xe2, 0xb6, 0x33, - 0xf9, 0xe6, 0xf3, 0x37, 0x5f, 0x66, 0x06, 0x4e, 0x66, 0xf3, 0x4c, 0x10, 0x1a, 0xcd, 0xfd, 0x69, - 0xc2, 0x89, 0x8f, 0xb9, 0xa0, 0x33, 0x3c, 0x15, 0x63, 0x1a, 0x79, 0x4b, 0x9e, 0x88, 0x04, 0xb5, - 0x0c, 0xc0, 0x93, 0x80, 0xce, 0x93, 0x6d, 0x3c, 0x8d, 0x08, 0x13, 0x74, 0x46, 0x09, 0xcf, 0xe1, - 0xee, 0x2d, 0xd8, 0x6f, 0x34, 0xc7, 0x35, 0xc9, 0x90, 0x03, 0x8d, 0x25, 0x4f, 0xbe, 0x90, 0xa9, - 0x70, 0xac, 0x53, 0xeb, 0xe2, 0x28, 0x34, 0x21, 0x7a, 0x04, 0x87, 0x51, 0xb2, 0xc0, 0x94, 0x39, - 0x7b, 0xea, 0x07, 0x1d, 0x21, 0x04, 0xfb, 0x0c, 0x2f, 0x88, 0x53, 0x57, 0x59, 0xf5, 0x76, 0x19, - 0x3c, 0x30, 0xa4, 0x7d, 0xca, 0x22, 0xca, 0xe2, 0x01, 0x16, 0x18, 0x3d, 0x84, 0x03, 0xca, 0x22, - 0xf2, 0x55, 0x51, 0xb7, 0xc2, 0x3c, 0x40, 0x67, 0xd0, 0x5a, 0xca, 0x36, 0x04, 0x4d, 0xd8, 0xf8, - 0x8e, 0x64, 0x9a, 0xbf, 0x59, 0x24, 0xa5, 0xae, 0xc7, 0x70, 0x24, 0x38, 0x66, 0xe9, 0x2c, 0xe1, - 0x0b, 0xfd, 0xa9, 0x32, 0xe1, 0x9e, 0xc3, 0x71, 0xc0, 0x96, 0xab, 0xad, 0x8f, 0x1d, 0x43, 0x7d, - 0x8d, 0xb9, 0xee, 0x42, 0x3e, 0xdd, 0x5f, 0x16, 0xc0, 0x7b, 0x3c, 0x21, 0xf3, 0x8f, 0x78, 0xbe, - 0x22, 0xe8, 0x0c, 0x9a, 0xa9, 0xc0, 0x82, 0x4e, 0xc7, 0x6b, 0x19, 0xe7, 0xc8, 0x61, 0x2d, 0xb4, - 0xf3, 0x6c, 0x0e, 0xba, 0x81, 0xff, 0x05, 0xa7, 0x71, 0x4c, 0x38, 0x89, 0xc6, 0x93, 0x9c, 0x5e, - 0x09, 0xb4, 0xbb, 0xae, 0xb7, 0xe5, 0xb4, 0xf7, 0x97, 0x8e, 0x87, 0xb5, 0xf0, 0xb8, 0x28, 0xd7, - 0x79, 0xf4, 0x0e, 0x5a, 0x54, 0x8a, 0x2d, 0xe8, 0xea, 0x8a, 0xee, 0x64, 0x87, 0x6e, 0xb7, 0xa1, - 0x61, 0x2d, 0x6c, 0xd2, 0x8d, 0x5c, 0xbf, 0x01, 0x07, 0x4a, 0xb8, 0xfb, 0xc3, 0x02, 0xf8, 0x60, - 0xcc, 0x4a, 0x51, 0x4f, 0xe7, 0x1d, 0xeb, 0xb4, 0x7e, 0x61, 0x77, 0xcf, 0x77, 0x78, 0x4b, 0xa4, - 0xa7, 0x5a, 0x7c, 0xcb, 0x04, 0xcf, 0xc2, 0xbc, 0xa4, 0x73, 0x0b, 0x50, 0x26, 0xa5, 0x85, 0xf2, - 0xff, 0xd0, 0x16, 0xde, 0x91, 0x0c, 0xf9, 0x86, 0x3b, 0xb7, 0xa0, 0xbd, 0xc3, 0x5d, 0xba, 0xab, - 0x09, 0x7b, 0x7b, 0x97, 0x96, 0xfb, 0xd3, 0x02, 0x30, 0xe6, 0x04, 0x03, 0xf4, 0x12, 0x9a, 0xc5, - 0xd4, 0x1a, 0x7a, 0xbb, 0xdb, 0xa9, 0x70, 0xf3, 0x9a, 0x64, 0xa1, 0x8d, 0xb7, 0x27, 0x74, 0x4d, - 0x78, 0x4a, 0x13, 0x33, 0x88, 0x26, 0x44, 0x2f, 0x00, 0x8a, 0x99, 0x49, 0xb5, 0xab, 0xed, 0xca, - 0xee, 0x87, 0xb5, 0x70, 0x03, 0xde, 0x6f, 0x02, 0x44, 0x74, 0x41, 0x98, 0x64, 0x4a, 0xdd, 0xef, - 0xe5, 0x56, 0x8c, 0x70, 0xfc, 0xaf, 0x92, 0xef, 0xeb, 0x9a, 0xfb, 0xdb, 0x82, 0x96, 0x61, 0xbb, - 0x59, 0x11, 0x9e, 0xa1, 0x2b, 0xb0, 0x37, 0x56, 0x5d, 0x0b, 0x68, 0x57, 0x08, 0x08, 0x06, 0xb2, - 0x39, 0x83, 0x0f, 0x22, 0xf4, 0x7a, 0x43, 0xbf, 0xc0, 0x66, 0x80, 0xab, 0xf4, 0x8f, 0x70, 0x2c, - 0xd7, 0x00, 0x6f, 0x18, 0x80, 0xa0, 0xbe, 0xe2, 0x34, 0x5f, 0xbc, 0x61, 0x2d, 0x94, 0x01, 0x7a, - 0x05, 0x0d, 0x33, 0xc1, 0xfb, 0xf7, 0x58, 0x08, 0x53, 0x24, 0x1d, 0x2f, 0xaf, 0x91, 0xfb, 0x0d, - 0x1a, 0xa3, 0x7c, 0x53, 0xd0, 0x25, 0x80, 0x5e, 0x9a, 0xea, 0x56, 0x83, 0xa2, 0x52, 0xde, 0x01, - 0x05, 0x0e, 0x22, 0xf4, 0x1c, 0xfe, 0xd3, 0x41, 0xea, 0xec, 0xa9, 0xe9, 0xaf, 0xb6, 0x28, 0x2c, - 0xa0, 0xfd, 0xab, 0x4f, 0xbd, 0x98, 0x8a, 0xcf, 0xab, 0x89, 0x37, 0x4d, 0x16, 0xbe, 0x2a, 0x48, - 0x78, 0x9c, 0x3f, 0xfc, 0xe2, 0x7e, 0xc6, 0x84, 0xf9, 0xcb, 0xc9, 0xd3, 0x38, 0xf1, 0xb7, 0x4e, - 0xea, 0xe4, 0x50, 0x1d, 0xd2, 0x67, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x29, 0x9b, 0xf7, 0x47, - 0x9a, 0x05, 0x00, 0x00, + // 721 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0x8e, 0x93, 0xb6, 0x69, 0x27, 0x49, 0x15, 0xb6, 0xa8, 0x4a, 0xa3, 0x8a, 0x56, 0xa6, 0x48, + 0xbd, 0x60, 0x4b, 0x45, 0x95, 0x4a, 0x29, 0x7f, 0xa1, 0xa0, 0x44, 0xe5, 0x40, 0xb7, 0x11, 0x07, + 0x2e, 0xd1, 0x26, 0xde, 0x98, 0xa5, 0xb1, 0x37, 0x5a, 0x6f, 0x2a, 0x8c, 0xc4, 0x4b, 0x70, 0xe7, + 0x41, 0x78, 0x20, 0xee, 0x3c, 0x02, 0xda, 0x5d, 0xff, 0xc4, 0x51, 0x23, 0x15, 0x71, 0xf3, 0xcc, + 0xce, 0x7c, 0x3b, 0xf3, 0x7d, 0x3b, 0x63, 0xd8, 0x1b, 0x4f, 0x62, 0x49, 0x99, 0x37, 0x71, 0x47, + 0x5c, 0x50, 0x97, 0x08, 0xc9, 0xc6, 0x64, 0x24, 0x07, 0xcc, 0x73, 0xa6, 0x82, 0x4b, 0x8e, 0x1a, + 0x69, 0x80, 0xa3, 0x02, 0xda, 0x7b, 0x3e, 0xe7, 0xfe, 0x84, 0xba, 0xfa, 0x70, 0x38, 0x1b, 0xbb, + 0x92, 0x05, 0x34, 0x92, 0x24, 0x98, 0x9a, 0xf8, 0xf6, 0x83, 0x22, 0x20, 0xf3, 0x68, 0x28, 0xd9, + 0x98, 0x51, 0x61, 0xce, 0xed, 0x2b, 0xa8, 0xbd, 0x4e, 0x2e, 0xb9, 0xa0, 0x31, 0x6a, 0x41, 0x75, + 0x2a, 0xf8, 0x17, 0x3a, 0x92, 0x2d, 0x6b, 0xdf, 0x3a, 0xdc, 0xc0, 0xa9, 0x89, 0xb6, 0x61, 0xcd, + 0xe3, 0x01, 0x61, 0x61, 0xab, 0xac, 0x0f, 0x12, 0x0b, 0x21, 0x58, 0x09, 0x49, 0x40, 0x5b, 0x15, + 0xed, 0xd5, 0xdf, 0xf6, 0x2f, 0x0b, 0xb6, 0x52, 0xd4, 0x0e, 0x0b, 0x3d, 0x16, 0xfa, 0xe7, 0x44, + 0x12, 0x74, 0x1f, 0x56, 0x59, 0xe8, 0xd1, 0xaf, 0x1a, 0xbb, 0x81, 0x8d, 0x81, 0x1e, 0x41, 0x63, + 0xaa, 0x1a, 0x95, 0x8c, 0x87, 0x83, 0x6b, 0x1a, 0x9b, 0x0b, 0xba, 0x25, 0x5c, 0xcf, 0xdc, 0xaa, + 0xb4, 0x63, 0xd8, 0x1e, 0xb2, 0xd0, 0x1b, 0x48, 0x3e, 0x50, 0x4d, 0x0e, 0xb2, 0x43, 0x7d, 0xf5, + 0x7a, 0xb7, 0x84, 0xb7, 0xd4, 0x79, 0x9f, 0xf7, 0x59, 0x40, 0x3f, 0xa4, 0x87, 0x68, 0x17, 0x36, + 0xa4, 0x20, 0x61, 0x34, 0xe6, 0x22, 0x68, 0xad, 0xe8, 0x22, 0x73, 0x47, 0xa7, 0x09, 0x9b, 0xf9, + 0xdd, 0x1e, 0x91, 0xc4, 0x3e, 0x80, 0x66, 0x2f, 0x9c, 0xce, 0x0a, 0x75, 0x37, 0xa1, 0x72, 0x43, + 0x44, 0xc2, 0x88, 0xfa, 0xb4, 0x7f, 0x94, 0x01, 0xde, 0x93, 0x21, 0x9d, 0x7c, 0x24, 0x93, 0x19, + 0x45, 0x0f, 0xa1, 0x1e, 0x49, 0x22, 0xd9, 0x68, 0x70, 0xa3, 0x6c, 0x13, 0xd9, 0x2d, 0xe1, 0x9a, + 0xf1, 0x9a, 0xa0, 0x67, 0x00, 0xba, 0x70, 0x13, 0xa2, 0x9a, 0xac, 0x1d, 0xb5, 0x1d, 0x23, 0xa0, + 0x93, 0x0a, 0xe8, 0xf4, 0x53, 0x01, 0xbb, 0x25, 0xbc, 0xa1, 0xe2, 0x4d, 0xf2, 0x25, 0xdc, 0x93, + 0x82, 0xf9, 0x3e, 0x15, 0xd4, 0x1b, 0x0c, 0x4d, 0x6d, 0xba, 0xf1, 0xda, 0x91, 0xed, 0x14, 0xde, + 0x84, 0x73, 0x0b, 0xf3, 0xdd, 0x12, 0x6e, 0x66, 0xe9, 0x89, 0x1f, 0xbd, 0x83, 0x06, 0x53, 0x9d, + 0x66, 0x70, 0x2b, 0x1a, 0x6e, 0x6f, 0x01, 0x6e, 0x91, 0x0d, 0x25, 0x0c, 0x9b, 0xf3, 0x75, 0xaa, + 0xb0, 0xaa, 0x5b, 0xb2, 0x7f, 0x5a, 0x00, 0x19, 0xf1, 0x11, 0x3a, 0x4d, 0xfc, 0x2d, 0x6b, 0xbf, + 0x72, 0x58, 0x3b, 0x3a, 0x58, 0xc0, 0xcd, 0x23, 0x1d, 0xdd, 0xe2, 0xdb, 0x50, 0x8a, 0x18, 0x9b, + 0x94, 0xf6, 0x15, 0x40, 0xee, 0x54, 0xfc, 0xab, 0x77, 0x91, 0xf0, 0x7f, 0x4d, 0x63, 0xe4, 0xa6, + 0xd8, 0x86, 0xc6, 0x9d, 0x05, 0xec, 0x5c, 0x9a, 0x04, 0xf0, 0xb4, 0x7c, 0x62, 0xd9, 0xaf, 0xa0, + 0x51, 0x7c, 0x1b, 0x6e, 0x5e, 0xe1, 0x9d, 0x50, 0xec, 0xdf, 0x16, 0x40, 0x4a, 0x6f, 0xef, 0x1c, + 0x3d, 0x87, 0x7a, 0x36, 0xa1, 0x69, 0x81, 0x4a, 0xd3, 0xdb, 0xf5, 0xb8, 0xa0, 0x31, 0xae, 0x91, + 0xe2, 0xb0, 0xdd, 0x50, 0x11, 0xa9, 0x27, 0x6c, 0x66, 0x2a, 0x35, 0xd1, 0x53, 0x80, 0xec, 0x59, + 0x46, 0x89, 0xcc, 0x3b, 0x4b, 0xf9, 0xc3, 0x73, 0xc1, 0xe8, 0x0d, 0x6c, 0x2e, 0x8c, 0x87, 0x91, + 0x75, 0x77, 0x21, 0xbd, 0xc0, 0x04, 0x6e, 0xc8, 0x79, 0xd3, 0xfe, 0x9e, 0x6f, 0x85, 0x3e, 0xf1, + 0xff, 0xb7, 0xcf, 0x7f, 0x15, 0xcb, 0xfe, 0x63, 0x41, 0x23, 0x45, 0xbb, 0x9c, 0x51, 0x11, 0xa3, + 0x33, 0xa8, 0xcd, 0xed, 0xc2, 0x25, 0x7a, 0xe5, 0xca, 0x74, 0x4b, 0x18, 0xd2, 0xf8, 0x9e, 0x87, + 0x5e, 0xce, 0xd5, 0x2f, 0x89, 0x9f, 0xcd, 0xde, 0xed, 0xe9, 0x7d, 0xe2, 0xab, 0xd1, 0x25, 0x73, + 0x04, 0x20, 0xa8, 0xcc, 0x04, 0x33, 0x3b, 0xae, 0x5b, 0xc2, 0xca, 0x40, 0x2f, 0xa0, 0x5a, 0x1c, + 0x9c, 0xbb, 0xcd, 0x61, 0x9a, 0xd4, 0xa9, 0x03, 0xe4, 0xdb, 0xd8, 0xfe, 0x06, 0xd5, 0xbe, 0x19, + 0x50, 0x74, 0x02, 0x90, 0xcc, 0xea, 0xf2, 0x56, 0x7b, 0x59, 0xa6, 0xda, 0x66, 0x3a, 0xb8, 0xe7, + 0xa1, 0x63, 0x58, 0x4f, 0x8c, 0xa8, 0x55, 0xd6, 0x43, 0xb7, 0x9c, 0x22, 0x9c, 0x85, 0x76, 0xce, + 0x3e, 0x9d, 0xfa, 0x4c, 0x7e, 0x9e, 0x0d, 0x9d, 0x11, 0x0f, 0x5c, 0x9d, 0xc0, 0x85, 0x6f, 0x3e, + 0xdc, 0xec, 0xff, 0xe1, 0xd3, 0xd0, 0x9d, 0x0e, 0x1f, 0xfb, 0xdc, 0x2d, 0xfc, 0x52, 0x86, 0x6b, + 0x7a, 0x75, 0x3d, 0xf9, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x35, 0x2f, 0x5a, 0x3b, 0xbb, 0x06, 0x00, + 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json index 2d8da7eabf..cacd7f6256 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json @@ -9004,11 +9004,15 @@ "format": "int64" }, "partition_key": { - "type": "string", - "title": "These two fields are only relevant in the partition value case" + "type": "string" + }, + "bind_to_time_partition": { + "type": "boolean", + "format": "boolean" }, "transform": { - "type": "string" + "type": "string", + "title": "This is only relevant in the time partition case" } }, "title": "Only valid for triggers" @@ -9023,7 +9027,12 @@ "type": "string" }, "partitions": { - "$ref": "#/definitions/corePartitions" + "$ref": "#/definitions/corePartitions", + "description": "Think of a partition as a tag on an Artifact, except it's a key-value pair.\nDifferent partitions naturally have different versions (execution ids)." + }, + "time_partition": { + "$ref": "#/definitions/coreTimePartition", + "description": "There is no such thing as an empty time partition - if it's not set, then there is no time partition." } } }, @@ -9701,7 +9710,13 @@ "type": "object", "properties": { "static_value": { - "type": "string" + "type": "string", + "title": "The string static value is for use in the Partitions object" + }, + "time_value": { + "type": "string", + "format": "date-time", + "title": "The time value is for use in the TimePartition case" }, "triggered_binding": { "$ref": "#/definitions/coreArtifactBindingData" @@ -10620,6 +10635,14 @@ }, "description": "A Task structure that uniquely identifies a task in the system\nTasks are registered as a first step in the system." }, + "coreTimePartition": { + "type": "object", + "properties": { + "value": { + "$ref": "#/definitions/coreLabelValue" + } + } + }, "coreTypeAnnotation": { "type": "object", "properties": { diff --git a/flyteidl/gen/pb-go/flyteidl/service/agent.swagger.json b/flyteidl/gen/pb-go/flyteidl/service/agent.swagger.json index 33eb5cf445..56842974a7 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/agent.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/service/agent.swagger.json @@ -349,11 +349,15 @@ "format": "int64" }, "partition_key": { - "type": "string", - "title": "These two fields are only relevant in the partition value case" + "type": "string" + }, + "bind_to_time_partition": { + "type": "boolean", + "format": "boolean" }, "transform": { - "type": "string" + "type": "string", + "title": "This is only relevant in the time partition case" } }, "title": "Only valid for triggers" @@ -368,7 +372,12 @@ "type": "string" }, "partitions": { - "$ref": "#/definitions/corePartitions" + "$ref": "#/definitions/corePartitions", + "description": "Think of a partition as a tag on an Artifact, except it's a key-value pair.\nDifferent partitions naturally have different versions (execution ids)." + }, + "time_partition": { + "$ref": "#/definitions/coreTimePartition", + "description": "There is no such thing as an empty time partition - if it's not set, then there is no time partition." } } }, @@ -735,7 +744,13 @@ "type": "object", "properties": { "static_value": { - "type": "string" + "type": "string", + "title": "The string static value is for use in the Partitions object" + }, + "time_value": { + "type": "string", + "format": "date-time", + "title": "The time value is for use in the TimePartition case" }, "triggered_binding": { "$ref": "#/definitions/coreArtifactBindingData" @@ -1339,6 +1354,14 @@ }, "description": "A Task structure that uniquely identifies a task in the system\nTasks are registered as a first step in the system." }, + "coreTimePartition": { + "type": "object", + "properties": { + "value": { + "$ref": "#/definitions/coreLabelValue" + } + } + }, "coreTypeAnnotation": { "type": "object", "properties": { diff --git a/flyteidl/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json b/flyteidl/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json index 1abbb6085d..c83aad0fa0 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/service/external_plugin_service.swagger.json @@ -171,11 +171,15 @@ "format": "int64" }, "partition_key": { - "type": "string", - "title": "These two fields are only relevant in the partition value case" + "type": "string" + }, + "bind_to_time_partition": { + "type": "boolean", + "format": "boolean" }, "transform": { - "type": "string" + "type": "string", + "title": "This is only relevant in the time partition case" } }, "title": "Only valid for triggers" @@ -190,7 +194,12 @@ "type": "string" }, "partitions": { - "$ref": "#/definitions/corePartitions" + "$ref": "#/definitions/corePartitions", + "description": "Think of a partition as a tag on an Artifact, except it's a key-value pair.\nDifferent partitions naturally have different versions (execution ids)." + }, + "time_partition": { + "$ref": "#/definitions/coreTimePartition", + "description": "There is no such thing as an empty time partition - if it's not set, then there is no time partition." } } }, @@ -543,7 +552,13 @@ "type": "object", "properties": { "static_value": { - "type": "string" + "type": "string", + "title": "The string static value is for use in the Partitions object" + }, + "time_value": { + "type": "string", + "format": "date-time", + "title": "The time value is for use in the TimePartition case" }, "triggered_binding": { "$ref": "#/definitions/coreArtifactBindingData" @@ -1101,6 +1116,14 @@ }, "description": "A Task structure that uniquely identifies a task in the system\nTasks are registered as a first step in the system." }, + "coreTimePartition": { + "type": "object", + "properties": { + "value": { + "$ref": "#/definitions/coreLabelValue" + } + } + }, "coreTypeAnnotation": { "type": "object", "properties": { diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md index 11a3a648af..d14479c893 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/README.md @@ -345,6 +345,7 @@ Class | Method | HTTP request | Description - [CoreTaskNode](docs/CoreTaskNode.md) - [CoreTaskNodeOverrides](docs/CoreTaskNodeOverrides.md) - [CoreTaskTemplate](docs/CoreTaskTemplate.md) + - [CoreTimePartition](docs/CoreTimePartition.md) - [CoreTypeAnnotation](docs/CoreTypeAnnotation.md) - [CoreTypeStructure](docs/CoreTypeStructure.md) - [CoreTypedInterface](docs/CoreTypedInterface.md) 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 3170fbe45f..5f7fe64acb 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -6557,12 +6557,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" - partitions: value: key: @@ -6572,12 +6585,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" scheduled_at: "2000-01-23T04:56:07.000+00:00" nesting: 0 system_metadata: @@ -6983,12 +7009,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" - partitions: value: key: @@ -6998,12 +7037,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" scheduled_at: "2000-01-23T04:56:07.000+00:00" nesting: 0 system_metadata: @@ -7220,12 +7272,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" - partitions: value: key: @@ -7235,12 +7300,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" scheduled_at: "2000-01-23T04:56:07.000+00:00" nesting: 0 system_metadata: @@ -7431,12 +7509,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" - partitions: value: key: @@ -7446,12 +7537,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" scheduled_at: "2000-01-23T04:56:07.000+00:00" nesting: 0 system_metadata: @@ -7609,12 +7713,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" - partitions: value: key: @@ -7624,12 +7741,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" scheduled_at: "2000-01-23T04:56:07.000+00:00" nesting: 0 system_metadata: @@ -7910,12 +8040,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -7980,7 +8123,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" updated_at: "2000-01-23T04:56:07.000+00:00" created_at: "2000-01-23T04:56:07.000+00:00" state: {} @@ -8112,12 +8257,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -8182,11 +8340,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -8198,12 +8359,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -8217,7 +8391,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -8228,12 +8404,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true spec: workflow_id: @@ -8442,12 +8631,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -8512,11 +8714,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -8528,12 +8733,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -8547,7 +8765,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -8558,12 +8778,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true security_context: run_as: @@ -8653,12 +8886,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -8723,7 +8969,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" updated_at: "2000-01-23T04:56:07.000+00:00" created_at: "2000-01-23T04:56:07.000+00:00" state: {} @@ -8855,12 +9103,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -8925,11 +9186,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -8941,12 +9205,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -8960,7 +9237,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -8971,12 +9250,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true adminLaunchPlanCreateRequest: type: "object" @@ -9033,12 +9325,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -9103,7 +9408,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" updated_at: "2000-01-23T04:56:07.000+00:00" created_at: "2000-01-23T04:56:07.000+00:00" state: {} @@ -9235,12 +9542,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -9305,11 +9625,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -9321,12 +9644,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -9340,7 +9676,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -9351,12 +9689,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true spec: workflow_id: @@ -9565,12 +9916,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -9635,11 +9999,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -9651,12 +10018,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -9670,7 +10050,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -9681,12 +10063,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true security_context: run_as: @@ -9757,12 +10152,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -9827,7 +10235,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" updated_at: "2000-01-23T04:56:07.000+00:00" created_at: "2000-01-23T04:56:07.000+00:00" state: {} @@ -9959,12 +10369,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -10029,11 +10452,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -10045,12 +10471,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -10064,7 +10503,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -10075,12 +10516,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true spec: workflow_id: @@ -10289,12 +10743,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -10359,11 +10826,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -10375,12 +10845,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -10394,7 +10877,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -10405,12 +10890,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true security_context: run_as: @@ -10796,12 +11294,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -10866,11 +11377,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -10882,12 +11396,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -10901,7 +11428,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -10912,12 +11441,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true security_context: run_as: @@ -15675,12 +16217,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -15745,7 +16300,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -15760,12 +16317,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -15830,7 +16400,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -19696,12 +20268,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -19766,7 +20351,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -19781,12 +20368,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -19851,7 +20451,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -19991,12 +20593,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -20061,7 +20676,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -20076,12 +20693,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -20146,7 +20776,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -20323,12 +20955,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -20393,7 +21038,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -20408,12 +21055,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -20478,7 +21138,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -24383,12 +25045,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -24453,7 +25128,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -24468,12 +25145,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -24538,7 +25228,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -25764,12 +26456,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -25834,7 +26539,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -25849,12 +26556,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -25919,7 +26639,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -26112,12 +26834,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -26182,7 +26917,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -26197,12 +26934,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -26267,7 +27017,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -26878,12 +27630,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -26948,7 +27713,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -26963,12 +27730,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -27033,7 +27813,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -27221,12 +28003,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -27291,7 +28086,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -27306,12 +28103,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -27376,7 +28186,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -31396,12 +32208,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -31466,7 +32291,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -31481,12 +32308,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -31551,7 +32391,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -35417,12 +36259,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -35487,7 +36342,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -35502,12 +36359,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -35572,7 +36442,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -35712,12 +36584,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -35782,7 +36667,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -35797,12 +36684,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -35867,7 +36767,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -36044,12 +36946,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -36114,7 +37029,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -36129,12 +37046,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -36199,7 +37129,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -40104,12 +41036,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -40174,7 +41119,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -40189,12 +41136,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -40259,7 +41219,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -44418,12 +45380,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -44488,7 +45463,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -44503,12 +45480,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -44573,7 +45563,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -48439,12 +49431,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -48509,7 +49514,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -48524,12 +49531,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -48594,7 +49614,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -48734,12 +49756,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -48804,7 +49839,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -48819,12 +49856,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -48889,7 +49939,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -49066,12 +50118,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -49136,7 +50201,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -49151,12 +50218,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -49221,7 +50301,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -53126,12 +54208,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -53196,7 +54291,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -53211,12 +54308,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -53281,7 +54391,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -57384,12 +58496,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -57454,7 +58579,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -57469,12 +58596,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -57539,7 +58679,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -61405,12 +62547,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -61475,7 +62630,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -61490,12 +62647,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -61560,7 +62730,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -61700,12 +62872,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -61770,7 +62955,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -61785,12 +62972,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -61855,7 +63055,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -62032,12 +63234,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -62102,7 +63317,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -62117,12 +63334,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -62187,7 +63417,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -66092,12 +67324,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -66162,7 +67407,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -66177,12 +67424,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -66247,7 +67507,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -70125,12 +71387,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -70195,7 +71470,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -70210,12 +71487,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -70280,7 +71570,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -74146,12 +75438,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -74216,7 +75521,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -74231,12 +75538,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -74301,7 +75621,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -74441,12 +75763,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -74511,7 +75846,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -74526,12 +75863,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -74596,7 +75946,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -74773,12 +76125,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -74843,7 +76208,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -74858,12 +76225,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -74928,7 +76308,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -78833,12 +80215,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -78903,7 +80298,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -78918,12 +80315,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -78988,7 +80398,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -79092,13 +80504,17 @@ definitions: format: "int64" partition_key: type: "string" - title: "These two fields are only relevant in the partition value case" + bind_to_time_partition: + type: "boolean" + format: "boolean" transform: type: "string" + title: "This is only relevant in the time partition case" title: "Only valid for triggers" example: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 coreArtifactID: type: "object" @@ -79108,7 +80524,14 @@ definitions: version: type: "string" partitions: + description: "Think of a partition as a tag on an Artifact, except it's a\ + \ key-value pair.\nDifferent partitions naturally have different versions\ + \ (execution ids)." $ref: "#/definitions/corePartitions" + time_partition: + description: "There is no such thing as an empty time partition - if it's\ + \ not set, then there is no time partition." + $ref: "#/definitions/coreTimePartition" example: partitions: value: @@ -79119,12 +80542,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" coreArtifactKey: type: "object" properties: @@ -79162,6 +80598,7 @@ definitions: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -79173,12 +80610,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -79192,7 +80642,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" coreArtifactTag: type: "object" properties: @@ -79212,7 +80664,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" coreBinary: type: "object" properties: @@ -81057,12 +82511,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -81127,7 +82594,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -81142,12 +82611,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -81212,7 +82694,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -85129,12 +86613,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -85199,7 +86696,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -85214,12 +86713,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -85284,7 +86796,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -89177,12 +90691,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -89247,7 +90774,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -89262,12 +90791,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -89332,7 +90874,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -93198,12 +94742,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -93268,7 +94825,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -93283,12 +94842,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -93353,7 +94925,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -93493,12 +95067,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -93563,7 +95150,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -93578,12 +95167,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -93648,7 +95250,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -93825,12 +95429,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -93895,7 +95512,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -93910,12 +95529,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -93980,7 +95612,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -97885,12 +99519,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -97955,7 +99602,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -97970,12 +99619,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -98040,7 +99702,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -99531,6 +101195,11 @@ definitions: properties: static_value: type: "string" + title: "The string static value is for use in the Partitions object" + time_value: + type: "string" + format: "date-time" + title: "The time value is for use in the TimePartition case" triggered_binding: $ref: "#/definitions/coreArtifactBindingData" input_binding: @@ -99542,7 +101211,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" coreLiteral: type: "object" properties: @@ -101428,12 +103099,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -101498,11 +103182,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -101514,12 +103201,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -101533,7 +103233,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -101544,12 +103246,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true coreParameterMap: type: "object" @@ -101688,12 +103403,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -101758,11 +103486,14 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_query: binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 artifact_id: partitions: @@ -101774,12 +103505,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" uri: "uri" artifact_tag: artifact_key: @@ -101793,7 +103537,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_id: partitions: value: @@ -101804,12 +103550,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" required: true corePartitions: type: "object" @@ -101827,7 +103586,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" corePrimitive: type: "object" properties: @@ -102863,12 +104624,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -102933,7 +104707,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -102948,12 +104724,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -103018,7 +104807,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -103068,6 +104859,22 @@ definitions: sql: dialect: {} statement: "statement" + coreTimePartition: + type: "object" + properties: + value: + $ref: "#/definitions/coreLabelValue" + example: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" coreTypeAnnotation: type: "object" properties: @@ -103132,12 +104939,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -103202,7 +105022,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -103217,12 +105039,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -103287,7 +105122,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" coreUnion: type: "object" properties: @@ -103458,12 +105295,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -103528,7 +105378,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" coreVariableMap: type: "object" properties: @@ -103552,12 +105404,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -103622,7 +105487,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" coreVoid: type: "object" description: "Used to denote a nil/null/None assignment to a scalar value. The\ @@ -107631,12 +109498,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -107701,7 +109581,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -107716,12 +109598,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -107786,7 +109681,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" eventEventReason: type: "object" properties: @@ -111952,12 +113849,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -112022,7 +113932,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -112037,12 +113949,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -112107,7 +114032,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -115973,12 +117900,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -116043,7 +117983,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -116058,12 +118000,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -116128,7 +118083,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: @@ -116268,12 +118225,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -116338,7 +118308,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -116353,12 +118325,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -116423,7 +118408,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -116600,12 +118587,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -116670,7 +118670,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -116685,12 +118687,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -116755,7 +118770,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" config: key: "config" security_context: @@ -120660,12 +122677,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -120730,7 +122760,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" inputs: variables: key: @@ -120745,12 +122777,25 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" artifact_key: domain: "domain" name: "name" project: "project" version: "version" + time_partition: + value: + input_binding: + var: "var" + static_value: "static_value" + triggered_binding: + transform: "transform" + partition_key: "partition_key" + bind_to_time_partition: true + index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" type: schema: columns: @@ -120815,7 +122860,9 @@ definitions: triggered_binding: transform: "transform" partition_key: "partition_key" + bind_to_time_partition: true index: 1 + time_value: "2000-01-23T04:56:07.000+00:00" connections: upstream: key: diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_artifact_binding_data.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_artifact_binding_data.go index fe0083167e..e9df809c3b 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_artifact_binding_data.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_artifact_binding_data.go @@ -12,5 +12,6 @@ package flyteadmin type CoreArtifactBindingData struct { Index int64 `json:"index,omitempty"` PartitionKey string `json:"partition_key,omitempty"` + BindToTimePartition bool `json:"bind_to_time_partition,omitempty"` Transform string `json:"transform,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_artifact_id.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_artifact_id.go index 13c054e25a..701466b9c3 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_artifact_id.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_artifact_id.go @@ -12,5 +12,8 @@ package flyteadmin type CoreArtifactId struct { ArtifactKey *CoreArtifactKey `json:"artifact_key,omitempty"` Version string `json:"version,omitempty"` + // Think of a partition as a tag on an Artifact, except it's a key-value pair. Different partitions naturally have different versions (execution ids). Partitions *CorePartitions `json:"partitions,omitempty"` + // There is no such thing as an empty time partition - if it's not set, then there is no time partition. + TimePartition *CoreTimePartition `json:"time_partition,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_label_value.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_label_value.go index 772c27188e..12e4783cfd 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_label_value.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_label_value.go @@ -9,8 +9,13 @@ package flyteadmin +import ( + "time" +) + type CoreLabelValue struct { StaticValue string `json:"static_value,omitempty"` + TimeValue time.Time `json:"time_value,omitempty"` TriggeredBinding *CoreArtifactBindingData `json:"triggered_binding,omitempty"` InputBinding *CoreInputBindingData `json:"input_binding,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_time_partition.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_time_partition.go new file mode 100644 index 0000000000..ea4002a6f0 --- /dev/null +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_time_partition.go @@ -0,0 +1,14 @@ +/* + * flyteidl/service/admin.proto + * + * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + * + * API version: version not set + * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) + */ + +package flyteadmin + +type CoreTimePartition struct { + Value *CoreLabelValue `json:"value,omitempty"` +} diff --git a/flyteidl/gen/pb-go/flyteidl/service/openapi.go b/flyteidl/gen/pb-go/flyteidl/service/openapi.go index 2629dfb916..16b9f58d1c 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/openapi.go +++ b/flyteidl/gen/pb-go/flyteidl/service/openapi.go @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7b\x73\xe3\xb8\xb5\x2f\x0c\xff\xbf\x3f\x05\xaa\xf7\x5b\xd5\x33\x89\xed\x9e\x5c\xce\x7e\x53\xde\x75\xea\x79\x34\xb6\xba\x47\x67\xdc\xb6\x63\xcb\xd3\x7b\xea\x68\x97\x06\x22\x21\x09\x31\x05\x68\x00\xd0\x6e\x65\x57\xbe\xfb\x53\x58\x00\x48\x90\x22\x29\xea\x66\x4b\x6e\x24\x55\x89\x5b\x24\x71\x59\x00\x16\xd6\xf5\xb7\xfe\xe7\xdf\x10\x7a\x27\x9f\xf1\x64\x42\xc4\xbb\x73\xf4\xee\xcf\x67\x3f\xbc\x3b\xd1\xbf\x51\x36\xe6\xef\xce\x91\x7e\x8e\xd0\x3b\x45\x55\x42\xf4\xf3\x71\xb2\x50\x84\xc6\xc9\x07\x49\xc4\x13\x8d\xc8\x07\x1c\xcf\x28\x3b\x9b\x0b\xae\x38\x7c\x88\xd0\xbb\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\x7a\xf7\x6f\x08\xfd\x0b\x9a\x97\xd1\x94\xcc\x88\x7c\x77\x8e\xfe\xaf\xf9\x68\xaa\xd4\xdc\x35\xa0\xff\x96\xfa\xdd\xff\x86\x77\x23\xce\x64\x5a\x78\x19\xcf\xe7\x09\x8d\xb0\xa2\x9c\x7d\xf8\x87\xe4\x2c\x7f\x77\x2e\x78\x9c\x46\x2d\xdf\xc5\x6a\x2a\xf3\x39\x7e\xc0\x73\xfa\xe1\xe9\x4f\x1f\x70\xa4\xe8\x13\x19\x26\x38\x65\xd1\x74\x38\x4f\x30\x93\x1f\xb8\x98\x7c\xf8\x1f\x1a\x9f\x71\x31\xf9\x17\xfc\x31\x17\xfc\x1f\x24\x52\xe6\x1f\x31\x9f\x61\xca\xcc\xdf\x0c\xcf\xc8\xbf\xb2\x46\x11\x7a\x37\x21\xca\xfb\xa7\x9e\x7a\x3a\x9b\x61\xb1\xd0\xe4\xf9\x48\x54\x34\x45\x6a\x4a\x90\xe9\x14\x39\x7a\xf1\x31\xc2\xe8\x5c\x90\xf1\xf9\x6f\x82\x8c\x87\x8e\xea\x67\x86\xda\x57\x30\xb4\xdb\x04\xb3\xdf\xce\x2c\xcd\xa0\x65\x3e\x27\x02\x26\xda\x8b\x75\xeb\x9f\x88\xea\x40\xb3\xf9\xfb\x7f\xf6\x5f\x17\x44\xce\x39\x93\x44\x16\xc6\x87\xd0\xbb\x3f\xff\xf0\x43\xe9\x27\x84\xde\xc5\x44\x46\x82\xce\x95\x5d\xd9\x0e\x92\x69\x14\x11\x29\xc7\x69\x82\x5c\x4b\xfe\x68\xcc\x5c\xf5\x32\xe3\xa5\xc6\x10\x7a\xf7\xff\x13\x64\xac\xdb\xf9\xf7\x0f\x31\x19\x53\x46\x75\xbb\xd2\xec\xa6\x7c\xb8\xef\x0a\x5f\xfd\xeb\xdf\xaa\xfe\xfe\x97\x37\xa3\x39\x16\x78\x46\x14\x11\xf9\xfa\x9b\xff\x94\xe6\xa2\x17\x49\x77\x6e\x56\xb4\x3c\xe8\xd2\x4c\x6f\xe0\x2f\x9c\x9c\x20\x2e\x26\xe8\x91\x2c\x10\x6c\x29\x12\x23\xc5\x61\xed\x04\x91\x3c\x15\xd1\xf2\xec\x29\x7c\xaf\xb7\x59\xf9\x89\x20\xbf\xa7\x54\x10\xbd\x4c\x4a\xa4\xa4\xf4\x54\x2d\xe6\x30\x3c\xa9\x04\x65\x13\x9f\x08\xff\x3a\x69\x35\x29\xbb\x3b\x57\x4c\xec\x1a\xcf\x88\xde\x69\x7a\x0e\xf6\x8b\xc2\x7c\xd0\x88\x24\x9c\x4d\x24\x52\xfc\x70\xa6\x66\xce\xda\x1a\x33\x33\x1f\xd4\x4e\x6c\xc0\x3a\xee\x95\x08\x33\x34\x22\x48\xb3\x1b\x1a\x13\x41\x62\x84\x25\xc2\x48\xa6\x23\x49\x14\x7a\xa6\x6a\x4a\x99\xfe\xf7\x9c\x44\x74\x4c\x23\x47\xb3\xc3\xa1\x0d\xfc\xd9\x4c\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x12\x34\xe6\xa2\xb8\x8f\x07\xac\x3f\xd5\x74\x98\x8d\x28\x03\x7e\xa2\x69\xe9\x76\xc8\x1f\x1d\xb9\xfe\x88\x74\x7f\x28\x65\xf4\xf7\x94\x24\x0b\x44\x63\xc2\x14\x1d\x53\x22\xcb\xad\xfd\x91\xdb\x23\x84\x4e\x91\xa6\x33\x11\x0a\xe8\xcd\x99\x22\x5f\x95\x44\xa7\x28\xa1\x8f\x04\xbd\xbf\xa2\x52\xa1\xce\x6d\xef\xfd\x09\x7a\x6f\x98\x00\x02\xf6\xfb\xfe\x05\x28\x9c\xfd\xfd\xdf\x1e\x3f\x51\x78\x52\xe6\x24\xef\x3a\x9a\x45\xdd\x9b\xdb\x2f\x6f\xe1\xbf\xff\xcd\x6f\xc7\xae\x57\xe3\x95\x72\xc4\xb7\x48\xb8\x44\x02\xbf\x0d\xfc\x36\xf0\xdb\xfd\x53\x78\xff\xd2\xd9\xef\x29\x11\x8b\x86\x59\x8d\x71\x22\x0f\xfa\x1a\xc9\xef\x10\x7b\x81\xb4\xbd\x36\x60\xf5\x8b\x37\x86\xd4\x1b\x6f\xdb\x0b\x43\xb7\x5b\xbe\x31\xe4\x71\x5d\x19\x7a\x0a\xfb\xbe\x36\xb6\xb9\x33\xb0\x82\xc3\x8c\x29\x33\x67\x3f\x63\x05\x42\xea\xe3\xef\xb6\xef\x81\x70\xca\x6d\xae\x10\x6f\x66\xde\x2d\xe2\x2e\x07\x8f\x2a\x07\x38\xef\x84\xce\xe8\xaa\xf5\xed\xb1\x98\x46\x58\x59\x1e\xce\xd2\xd9\x88\x08\x4d\x06\xc7\xb5\x60\xb6\x23\xcd\xc5\x54\x2a\x18\x89\x5b\x4c\x73\x1b\x8e\x46\x99\x22\x13\x22\xca\x5f\x8f\xb9\x98\x61\x65\x5f\xf8\x8f\xbf\xae\x4b\x08\xc5\x1f\xc9\xaa\xf5\xef\x99\xd5\x8c\xb0\x84\x6d\x30\x4b\x13\x45\xe7\x09\x41\x73\x3c\x21\xd2\x52\x24\x4d\x94\x3c\x81\xd7\x24\x11\x4f\x44\x9c\x66\x17\x2b\xf4\xe0\x04\x8a\x54\x1a\xee\x3f\xce\xe4\x62\x46\xbe\x2a\x68\x69\xc0\x40\xa4\x00\x12\xf9\x17\xe5\xcb\x5c\x0e\x2d\x48\x25\xb9\x50\xc3\xd1\xe2\xec\x91\x2c\xf5\x5b\xbb\x73\x30\x43\x58\x29\x41\x47\xa9\x22\x7a\xde\xba\x0d\x77\xf5\x01\x7b\x34\x72\x47\x1b\xd6\xf0\x7a\x13\x8e\xa9\x20\x11\xcc\x6d\x9d\x03\x93\x7d\xa5\xe7\xad\x2f\xfe\x85\x99\xbd\x96\x03\xb4\x98\x55\x41\x81\x6c\xc9\x07\x6c\xc0\xd0\x29\xba\xec\xde\x5f\x74\xaf\x2f\x7b\xd7\x9f\xce\xd1\x8f\x0b\x14\x93\x31\x4e\x13\x75\x82\xc6\x94\x24\xb1\x44\x58\x10\x68\x92\xc4\x5a\x94\xd2\x83\x21\x2c\xa6\x6c\x82\xb8\x88\x89\xd8\x1f\x19\x4b\x4f\x09\x4b\x67\xa5\x7b\x05\x7e\xcf\x47\x5f\xfa\x42\x8b\x18\xd9\xa3\xc2\x93\xff\x5e\x22\x30\xcc\x58\xf7\xed\xb5\xb6\xe6\x32\x06\x41\xcd\x17\xd4\xa2\x29\x4d\x62\x41\xd8\x07\x85\xe5\xe3\x90\x7c\x25\x51\x6a\xe4\x0c\xb0\x23\x17\x7f\x1c\x6a\x45\x82\xc7\xa4\xf8\x4b\xe1\x1f\xc6\xea\xbc\xf6\x67\xb9\x64\xb8\xf6\xa7\x99\x2d\x62\xed\x2f\xc1\x72\xd1\xee\x3b\xf8\x85\xc6\x95\x6f\xc3\x2f\x2b\xe6\xe0\xde\x69\x18\xac\x7b\xa5\x76\x54\xee\x05\x2b\x00\x57\xbe\x23\x88\x12\x8b\x21\x56\x8a\xcc\xe6\x6a\x4d\xab\x0c\x46\x89\x16\xb3\x9b\xc4\xea\x6b\x1e\x93\xae\xeb\xef\x37\x64\xa4\x7b\x12\xa3\xd1\xc2\x1e\x8b\x31\x11\x84\x45\xa4\xbe\x85\x3e\x96\x8f\x79\x0b\xab\x64\xf3\x42\x7f\xf2\x23\x17\xfa\xf3\xa3\x70\x0c\x14\x46\xfe\x12\x32\xfa\x26\x27\xf5\x8d\x79\x13\x36\xe5\x3a\x6f\xce\x16\xb6\x21\x0f\x0d\x96\xb3\xed\x29\xd9\xd6\xce\xc6\x05\x92\x0b\xa9\xc8\x6c\xa5\xc5\xed\x78\x08\x61\x2f\xc9\x43\x1d\x70\xe9\x9e\xfe\x06\x4e\x7d\x51\xea\x08\xc7\x7b\x0d\x92\xed\xca\x5e\x7e\xe8\xf3\x74\x01\x30\xcd\x53\xbd\x77\xcb\xe7\xb9\xeb\x8e\x62\x9a\x05\x79\x78\xd7\x83\xdc\x93\x05\xaa\x76\xad\x1c\xb5\x87\x30\x80\x15\xb6\x87\xa2\xc7\x25\x3b\x7f\xfa\x53\xdf\x68\x67\x2c\xb4\x6a\x4a\xa5\x67\xbf\x44\x11\x17\x46\x1c\x8e\xed\x79\x37\xe6\x87\x4e\xbf\x73\xdf\xed\x9f\xa3\x0e\x8a\xb1\xc2\xfa\x80\x0b\x32\x17\x44\x12\xa6\xc0\xb4\xa3\xbf\x57\x0b\x34\xe3\x31\x49\x8c\x11\xe2\xa3\x96\xfe\xd1\x25\x56\xf8\x02\x2b\x9c\xf0\xc9\x19\xea\xc0\x3f\xf5\xc7\x54\x22\x9c\x48\x8e\xb0\xdb\x56\x24\x76\x4d\x60\x16\x3b\xd6\x82\x51\xc4\x67\x73\x9a\x64\xde\xa6\xcc\xde\x46\x59\x4c\x9f\x68\x9c\xe2\x04\xf1\x91\xe6\x2a\xf2\x6c\xc0\xba\x4f\x84\xa9\x14\x27\xc9\x02\xe1\x24\x41\xb6\x5b\xf7\x02\x92\x53\x9e\x26\xb1\x6e\xd7\x8d\x52\xd2\x19\x4d\xb0\xd0\x32\xad\x19\xed\x8d\x6d\x0b\xf5\xa7\x24\x1b\x2b\x8c\x4b\x53\x73\x86\x1f\x89\x44\x54\xa1\x39\x97\x92\x8e\x92\xfc\xcc\x3f\xf4\x10\x8c\xfb\xe2\xaa\x07\x26\x9e\x48\x21\x6e\x78\xa8\xeb\xdc\x9a\xf4\x5c\x8f\x33\xcc\x18\x81\x8e\xb9\x9a\x12\x61\xbb\xb7\x2f\xbf\xb6\xb5\xe6\xe1\xfa\xfe\xb6\x7b\xd1\xfb\xd8\xeb\x5e\x2e\x9b\x6b\xfa\x9d\xfb\x9f\x97\x7f\xfd\x72\x73\xf7\xf3\xc7\xab\x9b\x2f\xcb\x4f\xae\x3a\x0f\xd7\x17\x3f\x0d\x6f\xaf\x3a\xd7\xcb\x0f\xed\xb6\x6a\x6d\xf9\xf1\x47\xb6\xb3\xb3\x75\x74\x46\xa1\x60\xd4\x5f\x63\xd9\x77\x6d\xd4\x3f\x79\xbb\x56\xfd\x31\x4d\xc0\xe8\xd0\xda\xa2\x9f\x59\x8d\xec\x97\x68\x8e\xa5\x34\x72\xa0\x19\xc1\xd9\x80\x7d\xe6\x42\xb3\xeb\x31\xd7\x1c\x51\xcb\x8a\x4a\xa4\x91\xa2\x6c\x92\x7d\x74\x8e\x06\xe9\x0f\x3f\xfc\x25\xba\xa2\xec\x11\xfe\x22\x87\x48\x9c\xe0\xf2\x08\x2e\x8f\x83\x73\x79\xfc\x5b\xc5\xa7\xfb\x77\x0f\x04\x1b\x7f\xb0\xf1\xef\xcf\xc6\x1f\x4c\xfc\xde\x18\x82\x7d\x7b\x5b\x42\x04\x03\x58\xb0\x6f\x6f\x4f\x88\x60\xdf\x3e\xd0\x19\x87\xe3\x1d\xec\xdb\xc1\xbe\x1d\xec\xdb\xc1\xbe\x1d\xec\xdb\xc1\xbe\xfd\xcd\xd8\xb7\x0f\x30\xe4\x29\x18\xf9\x83\x91\x3f\x18\xf9\x83\x91\x3f\x18\xf9\x83\x91\xff\x78\x8c\xfc\x5a\xda\xfd\x50\x0e\xfd\xdf\x13\x84\x8c\x16\x2e\xd9\x3c\x55\x20\x4a\xf2\x54\xe9\x3f\x75\xff\xb0\x57\x1a\x20\x00\xda\x19\x94\x3f\x11\x95\xbd\xa8\x45\xdb\xa3\x88\x15\xff\xc2\xc5\xe3\x38\xe1\xcf\xd9\xc8\x3f\x11\xa5\x07\x7f\x67\x7b\x09\xd0\x32\x01\x5a\x06\x05\xa8\x83\x5d\x43\x1d\x1c\x94\x89\x7a\x57\xfc\xdd\x7d\xfd\x4e\x2b\xff\x8a\xd4\xf2\xe2\x3e\x11\x33\xca\x9c\xec\x42\x99\x16\x72\x27\x82\x48\xb9\x2d\x07\xce\x1a\xce\x5e\x3f\x0a\x1e\x9c\x8d\x36\x1b\x7f\xe0\xbe\x81\xfb\xd6\x4c\x2d\x70\xdf\x37\xc6\x7d\x5b\x4c\x6d\xc4\xe3\x25\x75\xc2\x8c\xa4\xea\x49\xf3\x48\x76\xc6\xa1\x7e\x4f\x49\xbb\xb0\x83\x97\xd0\x1a\x8e\x5a\x51\x38\x86\x3b\xea\x00\xf4\x84\xc0\xd4\x03\x53\xaf\xa6\xcc\x51\x32\xf5\x63\xf4\x09\xec\x9f\xa7\x17\xbd\x28\xb9\x39\xa8\x02\xe8\xa1\x3e\xc6\xb3\x36\x84\xb3\x26\x42\xd3\x0b\xc0\x7c\x91\x6b\xa2\x18\xe6\xb8\xe2\xaa\x28\xbc\x7c\x34\x76\xa5\xc2\xa8\x5f\xfe\xae\x78\xe3\x68\x03\xdf\x4a\xb0\x65\x88\xa5\xdc\x90\x50\x6f\xf8\xd2\x7c\xb9\x48\xc8\x97\xbf\xed\xbe\xd9\x3b\x2d\x5c\x69\xf6\x3f\x81\xe1\x07\x86\x1f\x18\xfe\x2b\x31\xfc\x0d\xe8\x1e\x54\xb8\xa5\x4b\xad\x12\xcc\xaf\x2d\x7a\xdf\x3a\xa9\x7c\x6b\xe4\xee\xb5\x4e\xd6\x5b\x91\x9d\x57\x99\x8e\x57\x95\x7f\xb7\x9c\x70\x57\x99\x61\xb7\x5d\x4a\xdd\xa6\x77\x75\xfb\x24\xb9\x4f\x44\x15\x5e\x3e\x1a\xfd\xb3\x30\xea\x97\xbf\xac\x5f\x3d\x18\xf4\xb5\xf8\xf4\xb7\x97\x10\x18\x32\x00\xf7\x48\xba\xb7\x2e\xd6\x1c\x6e\x8e\xdf\x37\x90\xd4\x17\xb2\xf8\xd6\xa2\xd1\xdb\x4a\xdb\x7b\xab\x79\x7a\xc7\x99\x98\x17\x32\xf1\x42\x26\xde\x4e\x55\xde\xd2\xd3\x6f\x2a\x13\xef\x98\x53\xef\x5e\xde\x3c\x11\x4c\x0e\x87\x6f\x72\x08\x16\x07\xfb\x9f\xa0\x7d\xaf\x3d\xf3\x20\xda\x07\xed\xbb\xcd\xcc\x83\xf6\x1d\xb4\xef\x03\x3c\xa2\x41\xfb\x0e\xda\x77\xd0\xbe\x83\xf6\x1d\xb4\x6f\x14\xb4\x6f\xaf\xa1\xd7\x02\x6c\x38\x04\xe7\xe6\x51\xd9\x1c\xf2\xa9\x0f\xdd\x01\x5f\x06\x39\x28\xb0\xdd\x36\xb8\x07\xf0\x97\x53\xea\xd7\xc5\xe1\xad\xd5\xd2\x2f\xf3\xc1\x76\x81\x49\xfe\x66\x59\xc5\x0a\x85\x7d\xe9\xbb\xa3\x88\x11\x58\x1a\x75\x48\xb7\xdd\x54\xe4\x79\x25\xa1\x61\x4f\x14\x38\x92\xeb\x6b\xfd\x85\x7a\xc3\xba\x64\xd0\x21\xb7\x4f\xa1\x3b\x1a\xdd\xf1\x78\x74\xc6\x97\x97\x2d\xde\xa2\x38\x11\xa4\x09\x6f\x0c\xe1\xe2\x0d\x17\x6f\xb8\x78\xc3\xc5\x1b\x2e\xde\x90\x81\x6f\xdf\xdf\xab\x3c\x51\x12\x26\x5a\x01\x34\xee\xbc\x32\x50\x85\x28\xe1\xdd\xc0\xab\xea\xfc\x94\xbf\xa6\x44\xfe\xf5\x28\x65\x8a\x97\x28\xf5\x13\x84\x8a\x23\x11\x2a\xde\xa4\x2d\x29\x48\x4a\x41\x52\xaa\xa6\x4c\x2b\x49\x69\xc0\xfa\x53\x4d\x87\xd9\x88\xb2\xcc\x9b\xe7\x76\xc8\x1f\x1d\xb9\xfe\x88\x74\x7f\x28\x65\xf4\xf7\x94\x24\x8b\x9c\x27\xc9\x72\x6b\x19\x5e\x34\x3a\x45\x9a\xce\x44\x28\xa0\x37\x67\x8a\x7c\x55\x12\x9d\xa2\x84\x3e\x12\xf4\x5e\x33\x66\xd4\xb9\xed\xbd\x3f\x41\xef\xaf\xa0\x6c\x1d\x9a\x27\x98\xc9\xf7\x07\xe3\xb8\x09\x60\xfd\xfb\x02\xeb\x0f\x58\xfd\x01\xab\xbf\x2d\x81\x02\x56\x7f\xc0\xea\x3f\x5e\xac\xfe\x9d\xe9\x87\x1b\xe2\x72\xbe\x8a\xa6\x78\x9c\xbe\xec\xa0\x29\xa2\xa0\x29\x06\x4d\x31\x68\x8a\x41\x53\x3c\x12\x4d\xf1\x30\x28\x1c\xd4\xc4\xa0\x26\x06\x35\x71\x87\xc4\x09\x6a\x62\x50\x13\x83\x9a\xb8\xa4\x26\x1e\xaf\xe7\xf0\x2f\x41\x1f\x0c\xfa\xa0\xff\xfb\xf1\xe9\x83\x41\x75\x0a\xaa\x53\x35\x65\x8e\x53\x75\x3a\x18\xd9\xe7\x18\x43\x8a\x82\x52\xd8\x9e\x10\x41\x29\x6c\x4d\xaa\xa0\x14\x36\x10\x27\x28\x85\x41\x29\x0c\x4a\x61\x6b\xa5\xf0\x98\xdc\x85\x41\x3b\x0c\xda\xa1\xff\x7b\xd0\x0e\x83\x76\x18\xb4\xc3\xe0\x58\x0b\xaa\x61\x50\x0d\x83\x6a\x18\x54\xc3\x55\xc4\x09\xaa\x61\x50\x0d\xbf\x2d\xd5\x90\x3c\x11\xa6\x24\x14\x43\xf4\x15\xa5\x77\x73\x2e\xeb\x15\x3c\x9f\x3b\x54\x28\x77\xd0\x66\xb1\x28\x21\xa0\xb6\xfd\x86\xa6\x58\x22\x1e\x45\xa9\x28\x9d\x81\xb2\x7a\x77\x21\x08\x56\x04\x5a\xd0\x1f\x1e\x83\x5a\xb7\x3c\xdd\x97\x02\x20\x1e\xf1\x78\x69\xb7\x9b\x83\x50\xf5\xa4\x59\xcc\xda\xd9\xd4\x7f\x4f\x49\x3b\xad\x76\x8f\x9b\x5a\x61\xf9\xb8\xe3\x4d\x5d\x00\x9a\xde\x68\x53\x43\x0b\xc7\xb2\xa9\x97\xa7\xfb\xcd\x6c\xea\xaa\xa9\x1f\xc2\xa6\x7e\xe6\xe2\x71\x9c\xf0\xe7\x1d\x6f\xec\x2f\xb6\xd9\xed\x36\x77\xd6\xca\xb1\x6c\xf0\xea\x69\x7f\x33\x9b\xbc\x6e\xfa\xaf\xbb\xd1\xb3\xfa\x10\xad\xb7\x78\x5f\xd0\xc9\x44\xab\x19\xa0\xe1\xe9\xad\x68\x4d\x1f\x0d\x00\x49\x79\x45\x84\x95\xdb\x3a\x7b\xf5\x18\xb6\x74\x36\x58\x33\xf6\x6f\x66\x2f\x2f\xcd\xfb\x40\x36\xf1\x2b\x81\x76\xb4\x2b\xf8\x71\x45\xa5\xca\xde\x3c\x8e\x6c\xab\x6c\xb8\x2f\xe1\x37\x09\xf9\x3b\xc1\xcd\x10\xdc\x0c\x87\xef\x66\x38\x18\x83\x5a\x30\xc9\xef\xc9\x24\x4f\x65\xb0\xc9\x07\x9b\x7c\x5b\x02\x05\x9b\x7c\xb0\xc9\x1f\xaf\x4d\x7e\x4d\xdd\x61\xc3\x08\xad\x3a\x83\xd0\x3a\xfa\xc3\x27\x92\xab\x0f\xc7\xa5\x3d\x04\xcd\x21\x68\x0e\x41\x73\xd8\xb9\xe6\x70\x50\xe5\x08\x77\xc5\xa5\xdd\xd7\xef\xe6\x69\x3d\x4f\x7d\x98\xc7\x58\x11\x94\x31\x6f\xbb\x13\xf4\xc5\xa8\x78\x76\x08\xec\x7e\xd8\x92\xed\x9a\xbe\x8e\x94\xf3\x9a\xc1\xbf\x60\x79\xd6\xc0\x87\x03\x1f\x0e\x7c\xf8\xb0\xf1\xcd\x0f\xc7\x7d\xe0\xd8\xd3\xa1\xb8\x0f\x04\x89\xf8\x13\x11\xad\x7d\x61\x77\x04\x1c\x60\x20\xdd\xcf\x05\x79\xa2\x3c\x95\xc9\xe2\x54\xa4\x0c\x39\xdf\xb1\x77\x49\x41\x0c\xff\x33\x4d\x12\xc4\x99\x56\x15\x15\x16\xca\x3d\x66\x13\x34\x16\x7c\x06\xdb\x25\xc1\x52\xa1\x47\xc6\x9f\x19\x1a\x63\x9a\xa4\x82\xa0\x39\xa7\x4c\x9d\x0d\x58\x8f\xa1\x3b\x33\x46\xa8\xb9\x78\x82\x52\x49\x84\xd4\x47\x8d\x71\x85\xa2\x29\x66\x13\x82\x30\x5b\xd8\xe2\xe5\x39\x03\xd7\x9b\x34\x35\xb7\xa6\xee\xa2\x04\x58\x9f\x8d\x11\xac\x8d\x54\x22\x2a\x11\xf9\xaa\x04\x99\x91\x64\xa1\xfb\xd0\x57\x94\xe2\xc8\xd2\xc7\x0c\xd5\xee\x79\x22\x04\x17\x12\xaa\x35\x8e\x16\xff\xc4\x4c\x51\x46\x10\xe8\x74\xd2\x58\x12\x4f\xd1\x15\x97\x60\x62\xfa\xf9\x6f\x12\x45\x49\x2a\x15\x11\x27\x68\x94\x4e\xa4\x56\x6a\xe7\x09\x56\x63\x2e\x66\x7a\x84\x94\x49\x85\x47\x34\xa1\x6a\x71\x82\x66\x38\x9a\x9a\xb6\x80\x06\xf2\x64\xc0\x62\xfe\xcc\xa4\x12\x04\x67\xbd\xbb\x87\xe8\x3b\xff\x99\xd9\x00\xf2\xfb\x13\x38\x9b\x74\xa6\x35\x73\x6f\xf8\xf9\x8a\x9b\x35\xd1\x8d\x90\x18\x8d\x48\x84\x53\x69\xf3\x2e\x94\x58\x20\xf2\x75\x8a\x53\x09\x6b\xa7\xa7\x67\xeb\x5d\x46\x7c\x36\x4f\x88\x22\x88\x8e\x91\x12\xfa\xe2\xc2\x13\x4c\x35\xe9\xee\x09\x69\x21\x6d\xd8\x05\xb4\xbb\xfe\x37\xe0\x12\x33\x2e\x08\x8a\x89\xc2\x34\x69\xcc\xc5\xb1\xdf\x06\x27\xe9\x31\x71\xb9\xe2\x82\x1f\x04\x9b\x4b\xc0\xa0\xbf\x03\x9f\x3f\xb3\x9e\x86\x08\x27\x5b\xba\xff\xef\xec\xa0\xc2\xde\x3e\xae\xbd\x6d\x56\xed\x70\x36\xf7\x41\x7b\xfd\x8f\x6a\x4f\xbf\x90\xd3\x3f\x68\x57\x41\xbb\xaa\xa6\x4c\xf0\x8f\x87\x4c\xbc\xe5\x69\x05\xb7\x7f\x70\xfb\x07\xb7\xff\x2e\x89\x13\xdc\xfe\xc1\xed\xff\xcd\xba\xfd\x0f\xdc\xd3\x7f\x54\x1a\x43\xd0\x16\x82\xb6\x10\x7c\x31\x6b\x4e\xed\xe8\x64\xf4\x5d\x71\xe6\xcc\xd5\x1f\x93\x84\x28\x52\x6f\x7d\x24\x62\xa6\x75\x3b\x23\x75\x50\xa6\xc5\xd3\x89\x20\x52\x6e\xcb\x67\xb3\x86\x8f\x93\xdb\x66\xc3\x7f\x41\xff\x7e\x60\xbf\x81\xfd\x56\x53\xe6\x28\xd9\xef\xe1\x18\xd2\xbd\xc3\xfc\x52\x96\xf4\x8c\xff\x1e\x68\xa8\xd5\x51\x31\xe3\x17\x8f\xb4\x0a\x9c\x38\x70\xe2\x6a\xca\x04\x4e\x7c\xfc\x41\x49\xc6\xab\x3a\x9c\x27\x98\x0d\x69\x6c\x93\x13\x4c\x66\x42\x6e\xac\xd8\x97\x67\x53\x1f\xad\xd8\x00\xa6\x66\x00\xa5\xe2\x37\xfd\x49\x92\x3b\x3a\x10\x1f\xe9\x61\xac\x84\x8e\x35\xbe\x91\xdb\x04\xb3\x5e\x7c\x1c\x59\xcf\x95\xd3\x7f\x09\x67\xe8\xdb\x0b\x9e\xdd\xe6\x92\xc2\x0a\x9c\x6e\x98\x32\x63\x76\xcd\x81\x6f\x0b\x46\xe5\xc3\x98\xe8\x36\x57\x96\x37\x31\xef\xd6\x72\x97\x91\x47\x94\xc3\x9b\x76\xf0\xc5\x05\x54\xcc\xe0\x6d\x6a\x39\xe1\xe0\x6d\x3a\x5c\x6f\x53\x8b\x65\xdc\x8b\x0b\xf9\x85\x8f\xe7\x8b\xca\xac\x47\x2d\xa9\x06\x41\x15\x05\xb1\x2e\x88\x75\xf5\xb3\x0e\x62\x5d\x10\xeb\x82\x58\x17\xc4\xba\x20\xd6\xbd\xbe\x58\xd7\x62\x9a\xdf\x6c\x94\xc1\x2a\x51\xb5\x3d\xf2\xa9\xc9\xf1\x81\x54\xc0\x74\x9e\x70\x1c\x37\x45\x7a\xe5\xc2\xa4\x5f\x68\xab\x41\x02\x35\xad\xe7\x9f\x1d\x83\x00\x9a\x8f\xf6\x1b\xcb\x7f\x5a\x9e\xf8\xa1\x78\x0b\x5e\x0b\x03\xb5\x7a\xbf\xaf\xa1\x73\xc9\xbf\x1e\xd7\x8e\x0f\x90\xa8\x01\x50\xa3\x62\x6a\xc1\x77\x1d\x52\xbe\x42\x6e\xd4\x9b\x53\xdc\x43\x6e\x54\xc8\x8d\x0a\x66\x8d\xe6\x69\x07\xb3\xc6\x9b\xc8\x8d\x5a\x5f\x99\xd8\x63\xd9\xea\xed\xd5\x8a\xa3\x08\x39\x0a\x6a\x45\x50\x2b\x82\x5a\x11\xd4\x8a\x43\x2c\xe8\x1c\x74\x8a\xa0\x53\x04\x9d\x22\xe8\x14\x41\xa7\xd8\x39\x19\x83\x4e\xd1\x42\xa7\x80\xbf\x2c\x60\xe9\xda\x0a\xc6\x9a\x8a\xc5\x0a\x54\x86\xfc\xa3\x23\xd3\x2a\x82\x46\x11\x34\x8a\xa0\x51\xbc\xb8\x46\x71\x30\x13\xb2\xec\x73\xc5\x9c\xee\xdd\x82\x94\xe0\xa1\x0f\x6f\x3e\x6e\x44\x43\x68\x69\x85\x30\x51\x54\xd0\xb2\x5d\xa7\x3f\xf5\x75\x14\x13\x9b\x0a\x62\x79\x1e\xba\x89\x22\x2e\x0c\x53\x8e\xed\x2e\x37\xf2\x44\xa7\xdf\xb9\xef\xf6\xcf\x51\x07\xc5\x58\x61\xbd\xad\x05\x99\x0b\x22\x09\x53\x20\xab\x11\x88\xca\x05\x90\xee\xc4\x48\x15\x1f\xf5\xfd\x83\x2e\xb1\xc2\x17\x58\xe1\x84\x4f\xce\x50\x07\xfe\xa9\x3f\xa6\x12\xe1\x44\x72\x84\x1d\xe9\x49\xec\x9a\xc0\x2c\x76\x07\x0a\x03\xf6\x34\x4d\x32\xe5\x34\x53\x2f\x28\x8b\xe9\x13\x8d\x53\x9c\x64\xc1\xce\x03\x53\x60\x38\xc5\x49\xb2\x40\x38\x49\x90\xed\xd6\xbd\xe0\xe0\xac\x47\x24\x1b\xa5\xa4\x33\x9a\x60\xa1\xd9\xb1\x19\xed\x8d\x6d\x0b\x69\xc5\xd8\x8d\x15\xc6\xa5\xa9\x39\xc3\x8f\x44\x22\xaa\xd0\x9c\x4b\x49\x47\x49\x7e\x00\x1e\x7a\x08\xc6\x7d\x71\xd5\x03\x99\x2d\x52\x88\x1b\xce\xe1\x3a\xb7\x0a\x8c\xeb\x71\x86\x19\x23\xd0\x31\x57\x53\x22\x6c\xf7\xf6\xe5\xd7\x16\xbf\x1e\xae\xef\x6f\xbb\x17\xbd\x8f\xbd\xee\xe5\xb2\xfc\xd5\xef\xdc\xff\xbc\xfc\xeb\x97\x9b\xbb\x9f\x3f\x5e\xdd\x7c\x59\x7e\x72\xd5\x79\xb8\xbe\xf8\x69\x78\x7b\xd5\xb9\x5e\x7e\x68\xb7\x55\x6b\x51\xce\x1f\xd9\x3e\x64\x39\xf7\x75\x0b\x84\x00\x7b\xb8\x14\x56\xa9\x34\xd5\xa0\x05\x99\x50\xa9\x80\xfd\xb7\x91\xc2\x56\x03\x03\x1c\xad\xf4\x15\xaa\xb0\x04\x59\x2c\xc8\x62\x41\x16\x3b\x36\x59\xec\xe5\x4c\x02\x47\x14\xa6\xf8\x97\xe3\xba\x7b\x02\x88\x7b\x60\xce\x87\xcf\x9c\x0f\xce\xf5\x76\x30\xa6\xf3\x63\x04\x88\x0c\x4e\xc5\xf6\x84\x08\x4e\xc5\xf6\xb4\x0a\x4e\xc5\x06\xe2\x04\xa7\x62\x70\x2a\x7e\xc3\x4e\xc5\xa3\x8c\x4d\x0c\xaa\x84\x7b\x2f\xa8\x12\x41\x95\x78\xa3\xaa\xc4\xc1\x50\x38\xe8\x11\x41\x8f\x08\x7a\x44\xd0\x23\x9a\x89\x13\xf4\x88\xa0\x47\x04\x3d\xe2\xd8\xe2\x11\x8f\x4b\x93\x08\x5a\x44\xd0\x22\x0e\x5b\x8b\x38\x98\x09\x1d\x8f\xb7\xb8\xdd\x7c\x42\xe4\x5e\x88\xdc\x0b\x91\x7b\xb5\x91\x7b\x6f\x54\x93\xdf\x95\xfc\xe6\xbe\x3e\xb4\x80\xc4\xe3\x12\xbf\x42\xad\xa2\xec\x69\x10\xc6\x82\x30\xf6\x8d\x0a\x63\x07\x04\xa2\x78\x10\x25\x97\x66\x58\x45\x53\x3c\x4a\xc8\x30\xb3\x65\xc9\xb6\xea\xfd\x15\x95\x4a\xa2\x28\x95\x8a\xcf\xea\x2f\x97\xcf\xae\x87\x4e\xd6\xc1\x05\x67\x63\x3a\x49\xcd\xdd\xf2\x1b\x6c\x7d\xef\x44\xe7\x02\xee\x62\x4e\x56\xf9\x15\x2b\x5a\x3f\x8a\x6b\xa9\x7a\xe8\x2f\x75\x3b\xad\xa3\x8f\xe4\xb6\x4b\xab\x4c\x68\x11\x72\x78\xd7\xbd\xbf\x79\xb8\xbb\xe8\x9e\xa3\x0e\x88\x58\xe0\x4e\x30\x5b\x81\xfe\x53\x4f\x0a\x29\x2c\x1f\xf3\xb5\x14\x66\x9b\x4b\x90\xb3\xc1\x7f\xa1\x45\x7e\x74\x8a\x2e\xae\x1e\xee\xfb\xdd\xbb\x9a\x06\xed\x46\x81\xc2\x8b\x64\x36\x4f\xb0\x22\x31\x7a\x4c\x47\x44\x30\xa2\xa5\x9d\x28\x49\xb5\x70\x93\x7b\x35\x4c\xa3\xdd\xff\xea\x5e\x3c\xf4\x7b\x37\xd7\xc3\xbf\x3f\x74\x1f\xba\xe7\xc8\xed\x38\xdd\xac\x1e\x97\x1e\x45\xbc\x60\x78\xa6\x15\x2b\xfd\x43\x5e\xea\xf1\xf7\x94\xa4\x04\x61\x29\xe9\x84\xcd\x08\x53\xe5\x16\xdd\x80\xaf\x3a\x3f\x76\xaf\x8a\x2d\x4f\x09\xfa\xf9\x6f\xf9\xa0\x12\x3c\x22\x89\x75\xb3\x80\xe7\x40\x6f\xf4\xbc\x23\xeb\x7f\x49\x0d\x55\xff\xfe\xd0\xb9\xea\xf5\x7f\x1d\xde\x7c\x1c\xde\x77\xef\x7e\xe9\x5d\x74\x87\x56\x58\xbe\xe8\xe8\x7e\x0b\x3d\x59\x99\x1a\xfd\x9e\xe2\x44\x2b\x5d\x7c\x0c\x7e\x0b\x1a\x11\xf4\x3c\x25\x0c\xa5\x0c\x76\x9c\xd1\xe4\xb4\x7a\x97\x75\xaa\x4f\x99\x99\xd1\xed\xd5\xc3\xa7\xde\xf5\xf0\xe6\x97\xee\xdd\x5d\xef\xb2\x7b\x8e\xee\x49\x02\xba\x8e\x23\x3a\xac\xe2\x3c\x49\x27\x94\x21\x3a\x9b\x27\x44\x53\xc3\xe8\x72\x23\x32\xc5\x4f\x94\x0b\x7b\x74\x27\xf4\x89\x30\x43\x47\x38\xb3\xd0\xbe\xd3\x29\x86\x1e\xe9\x6e\xae\x3f\xf6\x3e\x9d\xa3\x4e\x1c\x67\x73\x90\xd0\x46\x61\xe7\x3c\x73\xf1\x38\x4e\xf8\xf3\x69\x71\xd8\x9a\x39\x40\xf7\x66\x13\xf1\x27\x22\x04\x8d\x49\x69\x1f\x75\xee\xef\x7b\x9f\xae\x3f\x77\xaf\xfb\x40\x31\x25\x78\x22\xd1\x94\x3f\x83\x85\x1e\x66\x08\x86\xfb\x27\x4c\x13\xe8\xcc\x2d\x16\x67\xe8\x79\x4a\xc1\xab\x43\xa5\x4f\x30\xa3\x76\x8a\x94\xbd\xba\xd1\xb9\x70\xf0\x96\xb5\xb1\xf2\x49\x5a\x7e\xa3\x74\x2c\x9a\x5e\x28\xec\xf2\xe5\x17\x57\xed\xd6\xe5\x2f\x4a\xdb\xad\x5e\x07\x5d\xda\x2f\xf5\x33\xcd\xd7\xba\xb5\x0a\x5a\xa4\xe1\xcb\x5d\xb3\x44\x09\x1a\xc9\x0f\xd9\xbe\xda\x2f\xc8\x18\x91\x7a\xc3\x2a\x3a\x23\xc8\xf6\x6c\x4f\xea\x96\xb5\x6a\x3f\x11\x95\xbd\xf8\xd9\x34\x7c\x14\x59\x69\x5f\x2c\x47\xc9\x06\xff\x89\x28\x3b\xfe\x90\xa0\x16\x12\xd4\x6a\xa6\x16\xb4\xdc\xed\xb5\xdc\x63\xab\xc8\x1b\x93\xf9\x72\x87\xa5\x89\xc1\x3b\xc6\x5f\xb9\x14\x5e\x63\x2c\xc1\xd6\x16\x9e\x90\x27\x92\x80\x20\xab\x04\xd6\x7a\xb1\x15\xcf\x46\x82\xe0\x47\x2d\xd3\xc6\xfc\xd9\x17\xce\x62\xa2\x30\x4d\xe4\x2b\x85\xdf\xfc\xe5\xcf\xaf\x7a\x1f\x1e\xef\x15\x18\x6e\xc0\x60\x12\x0d\x97\xc5\x37\x78\x59\x1c\xa3\x53\x2a\xdc\x81\x87\x72\x07\x6a\x72\xc7\x43\xe7\x9e\xfe\xf0\x3f\x05\xa3\xdc\xbf\xf6\xa5\x1f\xde\x41\xbc\xaf\x6c\xba\x08\xbd\x0a\x9b\xbf\x59\xa7\xf6\x8a\x1b\xd1\xfb\xe2\x28\xf4\x41\x6f\xbc\x87\x64\x6a\xbd\xf3\x2d\xdf\xee\x9e\x98\x11\x85\x63\xac\xb0\x3e\x42\x13\xa2\xce\xd0\x0d\x83\x67\x7d\x2c\x1f\x4f\x90\xbb\xd7\x35\xef\xcc\x5d\x0b\x2f\x50\x5c\xb3\xa5\xcd\xea\xb5\x83\x11\x0e\x91\xa3\x07\x2d\x7d\x97\x53\x0b\x82\x57\x48\x2f\x3a\x64\x1c\x18\xf7\x75\xab\xe8\x9d\xdd\xdd\xca\xa6\xc5\x23\xbe\x98\x5f\x36\x5e\x67\xa7\xd7\x74\x0a\x43\x0f\x77\xb0\xf9\x4f\xb8\x83\xc3\x1d\x1c\xee\xe0\x26\xca\x84\x3b\xf8\x88\x03\xba\x2a\xae\xac\x57\x8d\xe8\x6a\x63\x56\x30\x36\x85\xdc\xa0\xb0\x26\xf0\x5c\x6e\x43\x58\x09\x17\x51\x21\xb5\xac\xc4\x8a\xc8\xbf\xa1\xe4\x38\xfc\xcb\xde\x2c\x5f\x02\x2f\x62\xa7\xc2\x8a\xc9\x58\x0e\x56\x85\x3d\x4a\x34\x6f\x4f\x9c\xd9\x46\x96\xc1\x0a\x2e\x19\x4c\x99\xb9\x93\xf2\xec\x25\xf9\x02\x3b\x6c\xcd\x89\x6e\x23\xd9\x78\x13\xf3\x84\x1b\x27\xb3\x78\x44\x39\x90\x45\xdd\x0b\xac\xc4\xeb\xd8\xf1\x5f\x1f\x4a\x82\xbc\x5d\x24\x89\x00\x96\xb0\xd6\x21\x09\x60\x09\x2f\x01\x96\xd0\x62\x19\xf7\x82\x80\xf2\xc2\xc7\xf3\x35\x55\x87\xe3\x71\x42\x1e\x99\xce\x70\x54\xfa\x42\xf0\x41\xee\xdf\xfe\x19\x4c\x85\xc1\x54\x58\x4d\x99\x60\x2a\xfc\xb6\xc2\xb5\x76\x75\xdf\xbb\xaf\x5f\xdb\x0b\x79\x64\x37\x73\x70\x42\x86\x4b\x38\x5c\xc2\xe1\x12\x0e\x97\xf0\xae\x28\x1c\xfc\x75\x6b\x2a\xdd\x47\xe1\xa5\x3b\xb2\x6b\x3d\x38\xe9\xc2\x8d\xef\x3e\x0e\x2e\xad\x55\xf3\x0c\x2e\xad\xe0\xd2\x0a\x2e\xad\xe0\xd2\x0a\x2e\xad\xec\xf7\xe0\xd2\x7a\xd1\xdd\xfa\xcd\x9a\xed\xaa\x35\x06\x1e\x93\x61\x05\x92\x4c\xf6\xd3\xd0\x4f\x1b\x2c\xfc\x5a\x70\xdf\x15\x9e\xf8\xbe\xbc\xc2\x83\x1c\xfe\x1d\xfa\xa5\xf1\xda\x79\xf8\x4d\xe6\x44\x1e\x93\xd6\x79\xf7\x85\x97\x0f\x3d\x2e\xd0\x4d\xd4\xa8\x1e\xfe\xc8\x5f\x20\xcf\xbe\xbc\x13\xde\x58\xf4\x59\xcd\xae\x7e\x8b\x96\xba\x8a\x33\x1a\xcc\x76\x2b\x09\xf5\x86\x01\x07\x2c\x13\x7e\x81\xf1\xbc\xfc\x1d\xe6\x80\xff\x86\x15\x37\x59\xf5\xb3\xfc\x3e\xab\x7e\x9e\xdd\x6a\xd5\x8f\xf7\x53\x22\xb1\xfd\xa5\x06\x76\x34\xff\xed\x23\x09\x77\xf7\x87\xfc\x12\xb6\xb4\xda\x8d\xf1\xc6\x2e\xb6\xc6\x4d\xfe\xe6\xae\xb7\xa6\x23\x1b\x2e\xb9\x96\xe4\x7a\xab\x57\x5d\xa8\x71\xd8\x64\xc5\x0b\x45\x04\x0f\xd0\x4a\x11\x8c\x88\xc1\x88\x78\x8c\x46\x44\x13\x7c\x30\x9c\x63\x41\x98\xaa\xd0\x2d\xca\xd7\x09\xbc\xee\x17\x9d\x72\x52\x07\x34\x80\xb4\x68\x8f\xec\x85\x9c\x5d\x55\x6f\x2c\x50\xbe\xa4\xbd\xbc\x61\x3b\xdb\x81\xeb\x23\x87\x63\x66\x7b\xab\x52\x7a\x30\x42\x05\x23\x54\x79\x9e\x2f\x67\x84\xda\x80\xee\xc1\x59\xd4\x78\x55\x7d\x23\x86\xb4\x03\xbf\xb7\x0e\xc9\x8e\xf6\x56\x6f\xae\x60\x5f\xda\x01\xb9\xde\xea\x2d\xf6\x5a\x26\xe5\x97\xd7\xd2\x83\x25\x2d\x58\xd2\x82\x25\x2d\x58\xd2\x82\x25\xcd\xff\x3d\x58\xd2\x9a\xe8\xfe\x62\xea\x89\x15\x81\xbc\xea\xa3\x1f\xfe\x27\xff\x3b\x53\x4b\x7c\xd5\xa2\x29\x83\xf5\x42\x10\x38\x15\x5c\xd8\xfc\xc7\x5d\xd4\x27\xc5\xaa\x20\xf4\x42\x45\x83\x06\x5d\xc4\x64\x15\xdd\x9a\xb7\x8f\xab\x2c\xe9\xd2\xa0\x5f\x36\xff\x75\x79\xe1\xdb\x1d\x20\xb7\x32\xd4\x94\xd8\xf4\xea\x38\x6a\xb9\x9b\x8f\xf3\x8b\x41\xa2\x67\x9a\x24\x5a\x92\xb1\x52\xdb\x81\x48\xa3\xaf\x9e\x15\x57\xbb\xf2\xaf\x9a\x1b\x57\xc5\x1d\xaa\x58\x42\x1b\xeb\xf8\xae\xea\x14\xbb\xcd\x06\x25\x64\x41\xef\x5b\x61\x4e\x7f\x1b\x9c\xe0\x13\x51\x2f\xc5\x06\x36\x3d\xfb\x8d\xe7\x5e\x90\x31\x11\x84\x45\xe4\x00\x33\xb2\xd6\x49\x15\xfc\x62\x26\x69\xf3\x04\xb3\xf2\xdd\xfe\x54\x15\xb7\x7a\x5a\x41\xd4\x0d\xd5\x9b\x43\xf5\xe6\x50\xbd\xb9\x7c\xd4\x43\xf5\xe6\xb7\x51\xbd\xb9\x05\x97\xdd\x81\x6d\xaf\xd9\x60\x7b\xa0\x7a\x97\xfb\xfa\x5d\x4c\x12\xa2\x48\xad\xa0\x74\x09\x8f\x5f\x4b\x50\x32\xbd\xbf\x0d\x59\xc9\xcc\x25\x88\x4b\xdf\x8c\xb2\xe4\x16\xfc\x20\x94\x25\x73\xd6\x7c\x9d\x09\x92\x2b\x3c\xe5\xda\x64\x54\xbc\x4d\x33\xcb\x51\x24\x50\x1c\x8e\x9d\x65\xef\x97\xe2\x4b\x33\x87\x60\x43\x5a\x1e\x49\xb0\x21\x6d\xc7\x16\x0b\x3f\x56\xa0\x30\xbd\x38\xab\xdc\x44\xc0\x2a\xf0\xcb\x4b\x78\xfd\x38\xb9\x66\x79\xec\xc7\xcc\x3b\xbd\xd6\x0e\x83\x89\x7c\xbb\xec\x73\xe9\x88\xb7\x9b\xb8\x0d\xfd\x39\xde\x79\x1f\xca\xb5\x51\x77\xac\x0f\xf9\xf2\x28\xd6\xd1\x3a\x5e\x8f\xc4\x31\xb1\xff\x57\x71\x49\xbc\x39\x31\xf9\x9b\x33\x1a\x04\x1f\x4b\xf0\xb1\x04\x1f\x4b\xf0\xb1\x04\x1f\x0b\xda\xd4\xc7\xb2\x2b\x49\xeb\xa8\x1d\x12\xc7\x29\x2a\xbd\xac\x47\x22\x48\x4b\xc7\x2e\x2d\x1d\x8a\x52\x78\x5c\x2e\x96\x2d\xcb\x2a\x1f\x8a\x5e\xf8\x96\x8c\x83\xc7\xa5\x23\x1e\x9c\x39\xf0\x9b\x63\x7c\x9b\x99\xfe\x8e\x76\xba\x41\x2b\x0e\x5a\x71\xd0\x8a\x83\x56\x1c\xb4\x62\x14\xb4\xe2\xb5\xb5\xe2\xb7\x24\x28\x1e\x9d\x86\x1c\x64\xc5\xd7\x9e\xf0\x37\x26\x2b\x1e\x8a\x4d\xa0\xee\xe4\x1e\xa8\x65\xe0\xdb\x0c\x28\x3a\xe2\x9b\x20\xe4\xbc\x22\x6f\xe9\x42\xc0\xcd\xb7\xc2\x47\x0f\x3c\xe0\xe6\xed\xd9\x55\x8f\x98\x47\x86\x6c\xe0\x20\x56\xee\x68\xba\xc1\x04\x19\x4c\x90\xc1\x04\x19\x4c\x90\xc1\x04\x89\x0e\x3b\xf9\x79\xa5\xc1\x29\xe4\x3f\xef\xcb\xb0\x7a\xc4\x92\x62\xc8\x85\x0e\xc2\xe2\xee\xa6\x7b\xa8\xba\xf3\x21\xd9\x20\xe5\xfa\x75\x23\x56\x22\x71\xdb\x69\xff\xd6\xc0\xc0\xae\xa8\x74\x8a\xee\x31\xf1\x2b\xb9\x6f\x96\xb4\x0d\xfc\xae\x5b\xd1\x37\x8b\xbe\xbb\x45\x35\x7a\xe0\x5d\x6f\xb4\x1c\x7d\x00\x07\x6e\x20\x4e\x00\x07\x5e\x8b\x9b\x04\x70\xe0\x97\x00\x07\xde\xb9\xb2\x32\xe7\xb2\xfe\xe6\xbe\x23\x13\x2a\xe1\xc8\x36\xd4\x7c\x72\x77\x36\x14\x1e\x80\xad\xf0\x51\xbf\x80\x62\x32\x4f\xf8\x02\xec\x43\x0d\xd7\xb9\xeb\xe2\x76\x49\xa2\x3e\xf4\x1b\xdd\x8d\xfc\xa5\x74\x8e\x43\x91\x49\xf3\x79\x1f\x84\x14\xea\x87\xc4\x97\x8a\x99\x35\xb9\xb7\x1f\xac\x4f\x1b\x4c\x7f\x54\xc2\xfd\xb4\x72\x8b\x0f\x58\xf5\x03\x67\x02\x1b\x11\x77\x21\x8e\x52\xe5\x15\xf5\x90\x5a\xc2\x9a\x13\xa1\x16\xde\x9b\x64\x36\x57\x8b\xff\x1c\x30\xaa\x32\x07\x22\x9d\x30\x2e\x0c\x7b\xd3\x1f\x4f\x31\x8b\x13\x22\xf4\xed\xea\xda\x89\x30\x63\x5c\x81\xdc\x01\x13\x88\xd1\x13\xc5\x46\x4a\xe9\xdc\xf6\x5a\xbb\xd1\x8f\x29\x82\xea\x65\xfd\xe4\x6f\xaf\xd8\xf3\x4a\x78\xf8\x4f\x09\x1f\xe1\x24\x59\xa0\xb4\x68\xaf\xd0\x0d\x1c\xc8\x1c\x0e\x85\xf7\xbd\x3a\xb3\x0b\x2c\xae\x2d\x8b\x0b\x1c\x2e\xf0\x83\x56\x23\x39\x46\x7e\xa0\xb0\x7c\xf4\xab\xed\x81\x0c\xe4\x0a\x26\x16\x2a\x4d\x95\xcb\x4e\xfd\xab\xcd\x7b\x85\xb2\xb2\x2b\xde\xf5\x0b\xcd\xae\x78\xb5\x54\x7a\xb6\xf8\xcc\x16\xa3\x85\xc7\x30\xbd\xf2\x38\xdc\x8f\x7e\x87\xee\xb7\xbc\x65\xf7\xcb\x13\x11\x92\x72\xfb\x9a\x20\x4a\x2c\x86\x58\x29\xcd\x90\x76\x59\xef\xb6\x8f\xe5\x63\xeb\x7a\xb7\x85\x97\x0f\x5d\x02\x2b\x14\xbc\x2d\x8c\xfc\x05\x0a\xde\xae\xde\xc6\x6f\x4e\x46\x6b\x79\x24\x57\xcc\xfb\xf8\x8a\x27\xb6\x65\x30\x6b\x4c\xfc\x5b\x29\xa4\xd8\x8e\xe1\xae\xf2\xd9\x1d\x63\x51\xc5\xa6\x1b\xe4\x60\x46\x58\xba\xc4\xde\xe2\xc9\x2d\x5e\xc9\xe1\x88\x36\xd1\xa8\xed\x59\x3c\x9a\x13\x58\x92\xb4\x56\xcc\xed\xde\x2d\x90\x7d\xdd\xed\x84\xc3\x9b\x57\x41\x58\xdc\xf5\xa8\xf6\xe3\xf3\xf4\x56\x63\x9d\x30\xd7\x9e\x2b\x08\x68\x3c\x38\xd9\x19\x72\x81\xaf\xd9\xd1\x54\x53\x00\x4d\xa7\xd2\xaf\x21\x18\x71\x61\xa4\xcd\xd8\x9e\x59\xe3\xc3\xe9\xf4\x3b\xf7\xdd\xfe\x39\xea\xa0\x18\x2b\xac\x0f\xa9\x20\x73\x41\x24\x61\xca\x98\x22\x98\xa2\x6a\x81\x66\x3c\x26\x89\xb1\x03\x18\x77\xc1\x25\x56\xf8\x02\x2b\x9c\xf0\xc9\x19\xea\xc0\x3f\xf5\xc7\x54\x22\x9c\x48\x8e\xb0\xdb\x38\x24\x76\x4d\x60\x16\x3b\xf6\x80\x51\xc4\x67\x73\x9a\x98\xd8\x4b\xdf\xa5\x4b\x59\x4c\x9f\x68\x9c\xe2\x04\xf1\x11\xd8\x50\xce\x06\xac\xfb\x44\x98\x4a\x41\xc7\xc5\x49\x82\x6c\xb7\xee\x05\xcf\x80\xe1\x46\x29\xe9\x8c\x26\x58\x68\xe9\xd1\x8c\xf6\xc6\xb6\x85\xfa\x53\x92\x8d\x15\xc6\xa5\xa9\x39\xc3\x8f\x44\x22\xaa\xd0\x9c\x4b\x49\x47\x49\x7e\x8c\x1f\x7a\x08\xc6\x7d\x71\xd5\x03\x3f\x59\xa4\x10\x37\x7c\xd0\x75\x6e\x9d\xc6\xae\xc7\x19\x66\x8c\x40\xc7\x5c\x4d\x89\xb0\xdd\xdb\x97\x5f\xdb\xe5\xf5\x70\x6d\x43\x1a\xbb\x97\xcb\x3e\xaf\x7e\xe7\xfe\xe7\xfa\x18\xc6\xe5\x27\x57\x9d\x87\xeb\x8b\x9f\x86\xb7\x57\x9d\x8a\xd8\x48\xbb\xad\x5a\xbb\xcf\xfc\x91\x6d\x7e\x98\x8e\xae\x4c\xf3\xcb\x1b\x1d\x5a\x59\x1c\x5a\x9b\x1b\xda\xda\x1a\xda\x19\x1a\xea\xad\x0c\x7b\x08\x5d\x6a\x6f\x0a\xb8\xa2\xb2\x68\x0b\x38\x8e\x84\xf6\xc2\x90\xf5\x1c\xf6\x6d\x08\xf8\xe6\xac\x00\xdf\xa8\x09\x20\xe8\xff\x7b\xa1\xdb\x5b\x55\xfe\x0f\x5c\xf3\xdf\x26\x0e\x33\xcb\xd1\x0a\x81\x98\xcb\x81\x98\x24\xc4\x61\x86\x38\xcc\xb6\x04\x0a\x71\x98\x21\x0e\xf3\x18\xe2\x30\x5b\x29\x5a\xc1\x63\x7b\x08\x1e\xdb\x03\xd7\xd1\x0e\xd9\x61\xfb\x56\x35\x97\xe0\xbc\x0c\xce\xcb\xe0\xbc\x3c\xd2\x93\x1b\x9c\x97\xed\x69\x14\x9c\x97\xc1\x79\x19\x9c\x97\xc1\x79\x19\x9c\x97\xc1\x79\xf9\x9a\xa6\x91\x43\x88\x0d\x3d\x66\x97\x6d\xf0\xc4\xae\xf0\xc4\x1e\xb8\x92\x7f\x90\x8e\xd8\xb7\xaa\x23\x04\xd5\x3e\xf8\x25\xb7\x9a\xf6\x41\x29\xf5\x6f\xed\xde\x0c\xae\xd8\xf6\x84\x08\xae\xd8\xd6\xa4\x0a\xae\xd8\x06\xe2\x04\x57\x6c\x70\xc5\x7e\x83\xae\x58\x1a\x6f\x0d\x0b\xdf\x46\x6f\xd1\xb2\x62\xdc\x05\xf3\x50\x66\xdc\x12\xbf\x81\xf4\x88\xe5\x63\x66\x01\x6a\xa1\xcf\xf4\xe2\xa3\x50\x64\x2a\x27\xfc\x12\x0a\xcd\x36\x1a\x0b\x56\x9a\x83\x2b\x80\x2a\xd0\x4f\x72\xa3\xe2\x01\xe2\x58\x6e\xa3\xa3\x78\x13\xf3\xd4\x14\xa7\x7d\xf8\xc5\x93\x0f\x6e\xda\x41\xf0\x0b\x82\x5f\x90\x6d\x5a\x4e\x38\xc8\x36\x87\x2b\xdb\xbc\x96\xc2\x72\x78\xc7\xf3\xe8\xec\x13\x7b\x17\x4b\x0b\xf8\xcb\x8d\x30\x8e\xa6\x94\x1b\xb8\xee\xd2\x79\xc2\x71\xbc\x2a\x40\xee\x37\x94\xcb\x6a\x0d\xe2\xa6\x69\x57\x7f\x70\xe0\xd2\xe6\x52\x6c\x9c\x19\xf9\xb7\x80\xdc\x58\x3b\xf5\x57\x05\x6f\x84\xfd\x9b\xa1\x16\x65\xb0\x44\x85\xe8\xd1\x7d\xa9\x59\xe5\x0d\xde\x4a\xa3\x92\x7f\x3d\xf0\x2d\x9e\xad\xef\x4b\xe8\x4f\x6f\x32\xfb\xee\x0d\x7b\xb2\x82\xb7\xaa\x39\xa4\x60\x47\xd1\x6d\x03\xd6\xd7\x8a\x14\x9f\x8d\x28\xcb\x82\x79\xdc\x0e\xf9\xa3\x23\xd7\x1f\x01\x48\xcf\x82\xeb\x25\x8b\x5c\xcf\x96\xe5\xd6\x32\x29\x0c\x9d\x6a\x11\x38\x22\x42\x01\xbd\x39\x53\xe4\xab\x92\xe8\x14\x25\xf4\x91\xa0\xf7\xfa\xc8\xa3\xce\x6d\xef\xfd\x09\x7a\x7f\x85\x53\x16\x4d\xd1\x3c\xc1\x4c\xbe\x3f\x18\xe9\x2d\x28\xe4\xa1\x3a\x41\x70\xc5\xec\x43\x7b\x0f\xe6\x8a\x95\xd3\x0e\xe6\x8a\x37\xe3\x8a\x69\xa9\x33\x98\x8c\x35\x3c\x23\x87\xa2\x3d\x1c\x0d\xc0\x47\xd0\x1e\x82\xf6\x50\x31\xb5\xa0\x3d\x7c\x83\xda\xc3\x61\x50\x38\xa8\x0e\x41\x75\x08\xaa\x43\x50\x1d\x82\xea\xb0\x73\x32\x06\xd5\xa1\x49\x75\x80\xbf\x1c\x28\xc5\xba\x7a\x44\x6b\xfd\xa1\x05\x02\xc5\xd1\x28\x0f\x41\x71\x08\x8a\x43\x50\x1c\x5e\x5c\x71\x38\x98\x09\xbd\xbd\x64\xfa\x90\x8e\x1e\xd2\xd1\x43\x3a\x7a\x4d\x3a\xfa\x4b\x89\x6c\x46\x5e\x3b\xb2\xf8\xfb\xa3\x10\xda\x5e\x2d\x00\xff\xed\x89\x71\x21\xa5\x20\xa4\x14\x04\x33\x64\x48\x29\x08\x86\xb6\x60\x68\x3b\x68\x43\xdb\x6b\x59\xcf\x5f\xf8\x78\xbe\x80\x70\x7a\xe0\x11\xcb\x7f\x39\x06\x09\xf4\x05\x63\x0e\x82\x95\x2d\x58\xd9\xaa\x29\x73\x9c\xee\xf9\x83\xb9\xf5\x03\x7a\x4c\x90\xf8\x43\xe0\x41\x08\x3c\x58\x49\x9c\xa0\x0f\x05\x7d\xe8\xe0\xf4\xa1\x57\x54\x14\x0e\x2e\x4c\x39\x68\x0c\x41\x63\x08\x1a\xc3\x9b\xd5\x18\x0e\x86\xc2\x41\x5d\x08\xea\x42\x50\x17\x82\xba\xd0\x4c\x9c\xa0\x2e\x04\x75\x21\xa8\x0b\x07\x1d\x9a\x7c\x2c\x0a\x43\x50\x16\x82\xb2\x70\xd8\xca\xc2\xc1\x4c\x28\x04\xf1\x86\x20\xde\x10\xc4\xfb\xcd\x04\xf1\xbe\x51\x85\x7d\xaf\x62\x9a\x63\x91\x4d\x82\xd7\xb2\xbc\xf4\xcb\x12\x63\x3d\x58\x91\x29\x1f\xed\xa6\x10\x89\xbb\x22\xf5\x33\x17\x8f\xe3\x84\x3f\x0f\x33\xad\xce\x06\x85\xe7\xff\xb6\xf9\x7c\xde\x0f\xb9\xf0\xec\xfd\x98\x09\xd1\xde\x6f\xae\xf5\x82\x0c\x3d\x4f\x57\x21\x69\x4a\xc4\x05\x4a\xe7\x31\xfc\x19\xa5\x52\xf1\x59\xbd\x54\xfd\x19\xab\x68\x8a\x47\x09\xe9\x64\xfd\x5e\x70\x36\xa6\x93\xd4\xec\x8f\xdf\x80\x15\x62\x27\xd9\x9c\x38\xc9\x48\x33\x45\x37\xbe\x26\x49\xfc\x01\xc6\xf1\xc5\xbe\x99\x77\x72\x14\x01\xe8\xcb\xc3\x36\xd3\x79\x29\x64\xce\xe2\x2e\xda\x96\xc5\x79\xad\x1d\x86\xf8\xb3\x7c\x26\x56\x89\xaa\x60\x85\xce\x34\x13\x1a\xc3\xe6\x7c\x9e\x52\xb0\xac\x81\x25\x0e\xac\x4f\x79\xc3\xe8\x99\x26\x09\x48\x1c\x86\x16\x87\x37\xf3\x56\xda\x8b\x9d\xb8\x3d\x7b\x6f\x62\xde\x8e\x79\xac\x98\xb9\x3b\x82\xc6\x0d\x71\xa4\xd3\x7e\x4d\x84\xdd\x15\x8c\xec\x55\x71\x76\x6b\xaf\xcf\x9a\x9c\xaa\x0f\xff\x53\x79\x25\xb6\x29\xcc\xf8\xda\xf7\xe0\x27\xa2\xde\xcc\x25\xf8\x89\xa8\x97\xba\x01\xdf\xe2\xb5\xb7\xe9\x5d\xd7\xc8\xf8\x04\x19\x13\x41\x58\x44\x8e\x35\x27\x6b\xe9\x8a\x3b\xda\xe9\x6e\x74\xb3\x1d\xed\x6c\xd7\x31\x60\x7d\x31\x93\xb4\xe6\xaa\x99\x63\xb9\xfe\x54\x15\xb7\xee\xe5\x82\x0b\xcc\x1a\xab\xfa\x9d\xfb\x9f\x87\x77\xdd\xfb\x9b\x87\xbb\x8b\xee\x39\xea\xc0\x41\x87\x6f\x0c\x7b\xa7\xff\x84\xe6\x20\x1f\x36\x33\x86\x09\x73\xc7\x49\x60\xd5\xe0\x06\xd7\x54\x44\xa7\xe8\xe2\xea\xe1\xbe\xdf\xbd\xab\x69\xd0\x32\x7f\xca\x26\x48\x91\xd9\x3c\xc1\x8a\xc4\xe8\x31\x1d\x11\xc1\x08\x28\x56\x49\x2a\x15\x11\xb9\x73\xdc\x34\xda\xfd\xaf\xee\xc5\x43\xbf\x77\x73\x3d\xfc\xfb\x43\xf7\xa1\x7b\x8e\xdc\x2d\xa2\x9b\xd5\xe3\xd2\xa3\x88\x17\x0c\xcf\x68\x64\x7e\xc8\xea\x5c\xa2\xdf\x53\x92\x12\x84\xa5\xa4\x13\x36\x23\x4c\x95\x5b\x74\x03\xbe\xea\xfc\xd8\xbd\x2a\xb6\x3c\x25\xe8\xe7\xbf\xe5\x83\x4a\xf0\x88\x24\xd6\x5b\x0f\x0e\x68\x7d\x79\xe5\x1d\x59\x37\x7e\x6a\xa8\xfa\xf7\x87\xce\x55\xaf\xff\xeb\xf0\xe6\xe3\xf0\xbe\x7b\xf7\x4b\xef\xa2\x3b\xb4\xc6\x98\x8b\x8e\xee\xb7\xd0\x93\xb5\xd9\xa0\xdf\x53\x9c\x50\xb5\xd0\xeb\x28\xcd\xa5\x8f\x9e\xa7\x84\xa1\x94\xc1\x05\x62\x2c\x85\x98\x79\x9d\xca\x39\x89\xcc\x8c\x6e\xaf\x1e\x3e\xf5\xae\x87\x37\xbf\x74\xef\xee\x7a\x97\xdd\x73\x74\x4f\x12\xb0\xa5\x39\xa2\xc3\x2a\xce\x93\x74\xa2\x39\xc1\x6c\x9e\x10\x4d\x0d\x63\x2b\x1c\x91\x29\x7e\xa2\x5c\xd8\xeb\x78\x42\x9f\x08\x33\x74\xd4\xdb\xca\xb4\xef\x6c\x56\x43\x8f\x74\x37\xd7\x1f\x7b\x9f\xce\x51\x27\x8e\xb3\x39\x48\x68\xa3\xb0\x73\xdc\xd1\x3d\x2d\x0e\x9b\x8e\x69\x04\xdd\x9b\x4d\xc4\x9f\x88\x10\x34\x26\xa5\x7d\xd4\xb9\xbf\xef\x7d\xba\xfe\xdc\xbd\xee\x03\xc5\x94\xe0\x89\x44\x53\xfe\x0c\x8e\x5e\x98\x21\xf8\x7f\x9f\x30\x4d\xa0\x33\xb7\x58\x9c\xf9\xa7\xdf\xeb\xd9\x98\x35\x45\xca\x5e\xdd\x77\x59\x38\x78\xcb\xd6\xbe\xf2\x49\x5a\x7e\xa3\x74\x2c\x9a\x5e\x28\xec\xf2\xe5\x17\x57\xed\xd6\xe5\x2f\x4a\xdb\xad\xde\xc6\xb9\xb4\x5f\xea\x67\x9a\xaf\x75\x6b\x13\x67\x91\x86\xfb\x90\xb1\xdd\xd7\xef\x62\x92\x10\x45\x6a\x65\xe2\x4b\x78\xfc\xfa\x32\xb1\x19\xc7\x9b\x11\x8b\xcd\x74\x82\x64\x1c\x24\xe3\xd6\x13\x0e\x92\x71\xd5\x84\xdf\x88\x64\x7c\x80\x56\x1f\xc7\xa2\x0e\xce\xea\x13\xfc\x23\xa5\x95\x3a\xce\x2b\xf0\xd5\xdc\x23\xc1\x7f\xb0\xde\x15\x72\xfc\xf3\x0e\xfe\x83\xe0\x3f\xa8\xbc\x49\xde\xbc\xd7\xe0\x38\xaf\x86\x17\x74\x1a\x04\x35\xa2\x61\xbe\x41\x8d\x38\xb2\xd9\x06\x03\x7b\x30\xb0\x07\x03\x7b\x30\xb0\x07\x03\x3b\xda\xd4\xc0\xde\x82\xcb\xbe\x84\x39\xf5\x40\x83\x88\xdf\x8a\xdb\xe0\x38\xe5\xe2\x97\xf5\x1a\x04\xd1\xb8\x61\xbe\x41\x34\x3e\xb2\xd9\x1e\xa0\x5d\xe4\xb0\x2c\xec\x34\xae\x32\x88\xbc\x20\x34\xbd\x1b\x49\x5b\x78\x7a\x47\xd0\x5e\x7c\x14\xec\xfc\xd5\x10\xea\x03\x9e\x7b\xc0\x73\x0f\x70\x2d\x01\xcf\x1d\x05\x40\x92\x00\x48\x72\xc8\x80\x24\x2d\x96\xf1\x2d\xe0\xb9\xbf\x8c\x85\xe1\x0d\x25\x29\x3b\xc1\x50\x16\x62\x37\xb8\x5c\x15\xbc\x01\x56\x82\x74\x9e\x70\x1c\x37\x81\xc5\x38\x39\xd2\x07\x8c\x69\x10\x3d\x4d\xdb\x5f\x96\x95\xa7\x83\x95\x3c\xdd\x58\xcd\xc8\x5f\xca\x7c\x70\x30\x0a\x97\x9b\xf6\x41\xa8\x59\x2d\x6b\xb7\xee\x5c\xed\xaa\xda\xe4\xad\x35\x2c\xf9\xd7\x63\xda\xe6\x2f\x04\xa9\xfa\xf6\x0a\x7f\x05\xe8\xa7\x00\xfd\x54\x4b\x99\xe3\xc4\x89\x3d\x18\x89\x2e\x28\xe9\x01\x53\x35\x60\xaa\xee\x43\xa3\x0f\x26\x8c\x95\xd3\x0e\x26\x8c\x37\x81\xa9\xba\xa6\x0e\xb1\xc7\x9a\x0c\xdb\x69\x13\x47\x95\xb3\x17\xb4\x89\xa0\x4d\x54\x4c\x2d\x68\x13\xdf\xa0\x36\x71\x18\x14\x0e\xaa\x44\x50\x25\x82\x2a\x11\x54\x89\xa0\x4a\xec\x9c\x8c\x41\x95\x78\x9d\x7a\x0d\x55\xfa\x44\xcb\x5c\xb7\xa3\x52\x26\x82\x22\x11\x14\x89\xa0\x48\x84\x8a\x14\xcd\x73\x0a\x15\x29\x42\x45\x8a\x50\x91\xe2\x0d\x54\xa4\x78\x49\x11\xae\x06\x06\xf9\x38\xe2\xf7\x8f\x42\x88\x7b\xb5\x00\xfe\xb7\x27\xd2\x85\x94\x84\x90\x92\x10\x4c\x94\x21\x25\x21\x18\xe1\x82\x11\xee\xa0\x8d\x70\xaf\x65\x59\x7f\xe1\xe3\xf9\x42\x82\xea\x91\x44\x3b\xff\xe5\x18\xa4\xd1\x17\x8e\x4f\x08\x16\xb8\x60\x81\xab\xa6\xcc\x71\xba\xf2\x0f\x46\x0a\x38\xc6\x92\x94\x41\x03\x68\x4f\x88\x10\xa4\xd0\x9e\x56\x21\x48\xa1\x81\x38\x41\x3f\x0a\xfa\xd1\xc1\xe9\x47\xaf\xac\x38\x1c\x6c\x88\x73\xd0\x20\xcc\x7b\x41\x83\x08\x1a\xc4\x1b\xd5\x20\x0e\x86\xc2\x41\x7d\x08\xea\x43\x50\x1f\x82\xfa\xd0\x4c\x9c\xa0\x3e\x04\xf5\x21\xa8\x0f\x47\x13\xd6\x7c\x4c\x0a\x44\x50\x1e\x82\xf2\x70\xd8\xca\xc3\xc1\x4c\x28\x04\x00\x87\x00\xe0\x10\x00\xfc\xcd\x04\x00\xbf\x51\x05\x7e\xb7\x62\xdb\xbf\x59\x42\xbd\xf3\x04\x8c\x4c\x12\x79\xf7\x63\xc2\x47\xfd\xc5\x9c\xe8\xff\xbf\xa4\x33\xc2\x24\x50\x82\xaa\x85\x2f\xa6\xd5\x6c\xa8\xe5\xad\xf4\xee\xbe\x77\xfd\xe9\xca\xaf\x3b\xf2\xee\xf3\xc3\x55\xbf\x77\xdb\xb9\xcb\x96\x3b\x9b\x95\xbf\xc4\xf6\xbb\x82\xa4\x69\x4f\xf2\x1d\xd1\x2a\x35\x30\x83\x7b\x85\x55\x2a\x37\x1b\xd9\x5d\xf7\xbe\x7b\xf7\x0b\xd4\x4d\x19\x5e\xf6\xee\x3b\x3f\x5e\x15\xf6\x79\xe1\x79\xe7\xe2\xef\x0f\xbd\xbb\xfa\xe7\xdd\xff\xea\xdd\xf7\xef\xeb\x9e\xde\x75\xaf\xba\x9d\xfb\xfa\xaf\x3f\x76\x7a\x57\x0f\x77\xdd\x46\x7a\x34\x8e\xb6\x59\xb7\x92\x40\x24\xa8\x1d\x80\x22\xcb\x0c\x45\x4e\x43\x94\x49\xc5\x8e\xcb\x57\xf5\x75\x8e\x1e\xac\xa9\x82\xda\xc6\xcd\xbd\xe1\x35\x64\x74\xac\x98\x4a\x3c\x4a\x48\xbc\xd4\x92\xa3\x61\x5d\x4b\xb8\x30\xa8\x67\x2c\x3d\x49\x5a\xb3\xf2\xc8\x1c\x1f\x04\xd5\x9c\x14\x61\x71\x45\x1f\x66\x1d\x6a\x7b\x60\x9a\x25\xd3\x27\x52\xe8\x29\x4a\x85\x20\x4c\x25\x0b\x44\xbe\x52\xa9\xe4\x52\xa3\x6e\xf9\xea\x9a\xb5\x0c\x21\x6b\x70\x8a\x25\x1a\x11\xc2\x8a\xe3\x17\x24\x21\x58\x56\x8c\xd9\xae\x7e\x3b\xb2\x64\x6b\x65\x8d\x4c\xe6\x8e\x1d\x63\x9a\xa4\x82\x94\x4e\x0b\x9f\xcd\xb1\xa0\x92\xb3\xee\x57\x7d\x45\xeb\x83\x7c\x03\x9f\x73\xb1\xd9\x89\xe9\xfe\xdd\xdf\xc1\xd7\xc5\x7f\x7e\xea\x17\xff\x55\x38\xf3\x57\xfd\xe2\xbf\x9a\xf7\xba\xd7\x70\x79\x67\x9f\xa2\x4f\xfd\x73\xf4\x09\x20\x46\x05\xea\x4f\xb1\xd9\xb1\x57\xfd\x73\x74\x45\xa4\x84\x5f\xf2\x8f\x15\x55\x09\xcc\xed\x47\xca\xb0\x58\x20\x37\x7d\x53\x12\x0c\x47\x53\x44\x32\xd2\x94\x89\xc7\xfe\x91\x32\xb0\x48\xe4\xd4\xbb\xe2\x13\x1a\xe1\x64\x3b\x22\x76\xae\x0b\x7c\xe0\xe6\xae\x91\x14\xfe\xdb\xcb\xb4\xe8\x5c\x5f\x42\xb9\x2d\x37\xd4\x8a\x99\x5f\x13\xa9\x37\x49\xc4\x59\x6c\x7d\x6a\x5a\xa8\x59\x78\xba\xca\x3f\x38\x94\x2c\x4b\x25\x65\x13\xdd\x22\xfa\x80\x6e\xee\x06\xec\x46\xc4\xc6\xbe\x4b\xb4\x90\x6f\xf6\x1c\x95\x88\x71\x85\xe8\x6c\xce\x85\xc2\x4c\x69\xfd\x06\xa4\x1b\x4b\x11\xc3\x01\x2e\xf8\x6c\x96\x2a\xac\x0f\xda\x12\x51\x99\xb1\xf2\xdc\x13\xd5\x8b\xc1\x11\x56\x41\x43\x23\xfe\xe4\x73\x99\x0b\xdd\xbe\x16\xbd\x8a\xa6\x01\x1a\x2f\x69\xe8\xae\x09\x2c\x04\x2e\x5e\xc0\xef\xa8\x22\xb3\xf2\xfb\x2d\xaf\xdd\x7f\x55\xda\x3d\x2e\x4c\x56\x04\x11\x1d\x11\x4d\xa9\x22\x91\xd2\x47\x70\xa3\x3d\xf1\x70\xfd\xf3\xf5\xcd\x17\x5f\x30\x7a\xd7\xf9\x7c\xf9\x1f\x05\x18\xd8\xce\xdd\xe7\xa5\x1f\x86\xbf\xfc\xc7\xd2\x2f\xff\xff\xc6\xfd\x54\xee\x69\xc9\x7c\xe1\xcd\xe5\x14\x34\x05\x30\x75\xbb\xa9\x22\x3a\xc3\x13\x82\x64\x3a\xd7\x3b\x40\x9e\x15\xd7\x57\x4b\xca\x57\x1c\xc7\x94\x4d\x4c\x55\xa9\x2b\xaa\x88\xc0\xc9\x67\x3c\xff\xe8\xcc\xf2\x1b\x50\xe7\xff\xdc\x17\x2a\x9b\xbd\xfb\xb5\xf3\xd9\xaf\x8d\xf6\xee\xf6\xee\xa6\x7f\xd3\x38\xeb\x42\x0b\xcb\xc7\x48\x3f\x3e\x87\xff\x45\x1f\x90\x6e\x3d\x13\xe8\x67\x44\x61\xad\xe8\xa0\xef\x4c\x21\x9e\x2c\x13\x86\xb2\x04\x4e\xcd\x5c\xd0\x19\x85\x2b\xc5\x18\x26\xbf\x37\x3a\x43\xa6\x14\x65\xe7\xc6\x7c\x00\x46\x00\x77\x29\xb3\x18\x8b\x18\xfd\x43\x96\x0b\xed\x81\x3d\xdc\xfc\x40\x62\x74\x8a\xa6\x4a\xcd\xe5\xf9\x87\x0f\xcf\xcf\xcf\x67\xfa\x6d\x2d\xc0\x7e\xd0\x7f\x9c\x12\x76\x36\x55\xb3\xc4\x14\x16\xd4\x54\x38\x47\xb7\x82\xeb\x2b\x04\xec\x0e\x44\x50\x9c\xd0\x7f\x92\x18\x8d\x0c\xff\xe3\x63\xf4\x5b\xc4\x05\x39\xcb\x17\xc6\xda\xca\xec\x3d\x62\xed\x69\x1f\xf4\x4b\x15\xcc\xa4\xbc\x9e\x28\x26\x11\x8d\xad\x98\x41\x58\xc4\xc1\xa0\x6a\x5c\x30\xba\x3d\x57\xbd\x48\x2b\x6a\xf3\x54\xe5\xe4\xf4\x74\x30\x1c\x13\xaf\x2e\xa0\x95\xaf\xb3\x0d\xa7\xf5\xb9\x9e\xd1\xc6\x53\x49\x04\xdc\xad\x18\x6e\x55\xf7\xea\x5c\x4f\x38\xe2\x09\x1a\xa5\xe3\x31\x11\x7e\xf8\xc0\x89\x56\xd2\xa8\x44\x82\x44\x7c\x36\x03\x89\x41\x7f\x95\x4a\xb3\xab\x81\x62\x76\xb4\x67\x03\x06\xeb\xaf\xb5\x37\xd8\x01\x31\x07\x56\xc7\x08\x89\x11\x66\x0b\xd3\xcd\x28\x1d\xfb\xed\x9b\x82\x9d\x38\x46\x54\x0d\x58\x27\x49\x90\x20\x33\xae\x88\x57\x97\x09\x5c\x9d\x45\x82\x03\x8b\x14\x64\x9e\xe0\x88\xc4\x66\x3f\x24\x3c\xc2\x09\x1a\xd3\x84\xc8\x85\x54\x64\xe6\x37\xf0\x1d\x98\xa0\x34\xcd\xa8\x44\x31\x7f\x66\x09\xc7\x76\x1e\xe5\xcf\xbe\x2f\x9e\xc6\xae\x2b\xa6\xd8\x15\x82\x0b\xf8\x9f\x9f\x29\x8b\x77\xc6\xa1\x1e\xee\xbb\x77\xfe\xbf\xef\x7f\xbd\xef\x77\x3f\xaf\xc7\x7d\xb2\x9d\x05\xc3\x03\xd3\xc4\x39\xba\x37\x44\xe0\x42\x4b\x44\xa2\x66\x52\x9f\xed\x56\xca\x7f\xe0\xf1\x86\xdc\xf7\x73\xe7\xfa\xa1\x53\xe0\x28\xf7\x17\x3f\x75\x2f\x1f\x4a\xfa\x80\x9d\x5f\x41\x86\x37\x5a\xad\xff\xdb\xc5\x4f\xbd\xab\xcb\x61\x85\x1e\xfc\xee\xae\x7b\x71\xf3\x4b\xf7\x2e\x57\x59\x2b\x49\x54\x1a\x4c\x99\x59\xf5\x0d\x53\x9a\xf2\x18\x8d\x16\xd5\xa5\x33\xb5\xe4\x9c\x80\xe7\x3c\x2f\x1e\x6b\x5a\x3d\x07\xde\xe4\xaa\x98\xe6\x5f\xcc\x78\x4c\x4e\xec\x3b\x50\x73\xd4\xd8\x8c\x8c\xc4\x5c\xdd\xb0\xee\x1d\x33\xcf\xfe\x62\xca\x81\x66\x84\x3b\x47\x1d\x24\xf5\x8b\xa9\x3e\xd4\x82\x4e\x26\x60\x0f\x2d\x0d\xd5\xb4\x66\x3f\x05\xf2\xc2\x77\x66\xfd\xe7\x82\xc3\x39\xd7\xdd\x5a\x43\x7a\x66\x6c\x31\x1f\x42\x7d\xda\x62\x8b\x02\x83\x1d\xa5\x62\x68\x6e\xb1\x34\x11\x6a\xe9\x65\xce\xa3\x31\x83\xe9\xc3\x05\x6c\x4b\x1a\x33\xee\x5c\x90\x27\xca\x53\xef\x53\x5b\x02\xb5\xb0\xe2\x95\xcd\xe7\x04\x00\xb2\x19\x5b\x4f\xa9\x99\x6c\x7b\x54\xb6\xa0\x59\xd8\x13\xb4\x30\x16\x7c\x56\xd1\x46\xf1\x98\xf4\x6e\xee\x95\xc0\x8a\x4c\x16\x97\x96\x65\x6c\x7e\x3c\x2e\x6f\xbe\x5c\x5f\xdd\x74\x2e\x87\xdd\xce\xa7\xe2\x89\xcf\x9e\xdc\xf7\xef\xba\x9d\xcf\xc5\x47\xc3\xeb\x9b\xfe\xd0\xbd\xd1\xb8\xe5\x6b\x3a\x58\xbe\xa7\x8b\x2f\x9e\x23\xcd\x72\x81\x35\x3e\xd3\x24\xd1\x97\x89\xc7\x1f\x47\x64\xcc\x85\xe1\xf3\x33\x17\x68\x62\x45\x18\x47\x5b\xab\x8b\x95\x66\x71\x0e\x06\xbf\xaa\x26\x8d\x31\x5f\x09\x82\x67\x70\x4f\x60\x86\xba\x2c\x3e\xbd\x19\x9f\xde\x9b\x1f\x67\x58\x3c\x12\x91\x7d\xfa\x2c\xa8\x52\x84\x15\x54\x3a\xec\x86\x9c\x29\x89\x79\x07\x67\xe8\x4e\xf3\x7d\xfd\x7e\x76\xa9\xe9\xcd\x1e\x13\x85\x69\x22\xed\x60\x0b\x74\x3d\x47\x57\x58\x4c\x72\xf3\xe2\x77\x7c\x3c\x36\x8d\x7d\x6f\x86\xa1\xef\xb0\xc2\x2c\x2a\x78\xaf\xde\x1a\xee\x5e\x84\xfe\xec\xcb\x99\x3c\xbc\xbc\xab\x1e\xe6\xdb\xed\xa9\x87\x5b\xa0\xb8\xd1\xd8\x0b\xba\xa1\x7d\x52\xb1\xd7\x60\xe2\xe6\x71\xf3\x25\x53\xdd\xf6\xf2\x76\x2a\xbe\x58\xb1\x9d\x4c\x2d\x13\xbd\xf2\x63\xad\x6d\x56\xec\x25\xf2\x95\x5a\x83\x81\x3f\xee\xd2\x16\xca\x9b\x01\xab\x31\x9e\xcf\x09\x16\xb2\x6a\xb5\x8b\x62\x60\xcd\xda\x9b\x9e\xfc\x3e\xec\x22\xbb\x7e\x4e\x10\x67\x60\x70\xc8\x84\x88\xd2\x8e\x6c\xb1\x07\x4c\x5b\x4b\x3b\xe0\x16\xea\x52\xdf\xd8\x1a\xd0\x9f\xa9\xd4\x4a\xa3\xf9\xf1\x47\x5b\x9c\x7a\xb3\x0d\xf1\xb1\xd3\xbb\x2a\x09\x17\xc3\xcb\xee\xc7\xce\xc3\x55\xb3\x99\xb0\xf0\x5d\x79\x89\xd1\x29\xd2\xcf\x8b\xe1\x00\x74\x6c\xee\x0c\x57\x62\xdb\xa8\xb4\x84\x81\xd1\xca\x96\xbf\x35\x66\xf8\x98\xcc\x13\xbe\x98\x11\x06\x26\x9e\xc2\x4d\xa8\xe9\x39\xc6\xd4\x5e\x2d\xde\x60\xc1\x8a\x63\xcd\x6e\x70\x8d\x9d\xba\xba\xde\x24\xce\x6e\xde\x62\x59\xef\x12\xeb\xbe\x35\x4e\x41\xfb\x7f\xf7\x0a\xab\x0d\xcf\x58\xe7\xa2\xdf\xfb\xa5\x5b\xd4\x0f\x2f\x7e\xea\xfd\x52\x25\xd5\x0c\x3f\x75\xaf\xbb\x77\x9d\xfe\x0a\xe1\xa4\xd4\x64\x95\x70\x22\xf5\x80\xcb\x4e\x61\x2a\xb3\x40\xa7\xc8\x14\x07\x47\x54\x49\xf4\x44\x25\x1d\x51\x28\xa5\x6e\x1d\xac\x0f\x3d\xe0\xac\x4f\x38\xa1\x31\x55\x0b\x27\xbe\x98\x7e\x8b\xeb\xa8\x39\xa9\x6d\xdf\x98\x1d\x7c\xb7\x2b\x58\xf9\xcc\xe2\xb8\x49\x9f\x23\xd0\x6d\x9f\x40\x69\xf3\x3e\x63\x5a\x90\x66\x13\x22\xcc\x70\xc0\xa9\xe4\x8f\xc5\x7b\xae\x47\xe5\x0b\x2b\x39\xd5\x32\xa1\x75\x42\x18\x11\x50\x2e\x3f\xeb\xc4\x08\x52\x82\xb0\xf7\x5a\xe6\x9a\x27\x34\xa2\x2a\x59\xa0\x08\x6c\x58\x60\xce\x9c\x61\x86\x27\x56\x38\x00\x35\xa7\xb4\x25\xfe\x6e\xea\xcd\xdf\x8c\xad\x69\xbf\x4f\xc9\x86\xc7\xec\xe1\xfa\xb2\xfb\xb1\x77\x5d\xdc\x02\x3f\xf5\x3e\x15\x44\xd8\xcf\xdd\xcb\xde\x43\xe1\x36\xd7\x92\x6c\xb3\x5c\x5f\x6e\xb6\xe2\x28\x66\x2f\x9d\xa3\x4b\xf3\xe9\xb9\x26\x6e\x45\x31\xfd\x4c\xf9\x2d\xd1\xe1\xce\x45\x1a\xba\x3f\xba\x4c\x89\x4a\xbf\x44\x5b\x13\x92\xf5\x0a\x15\x6c\x48\xd5\x11\x18\x4b\x7d\x5f\x97\x7d\xe5\xe5\x29\xbb\x17\x21\x44\xf6\x2c\xb7\x2c\xf9\xa1\x19\x60\x34\xa8\x33\x62\x55\x78\xeb\x72\x86\xfd\x0b\x78\xde\x67\xa9\x54\xc6\x43\x0a\x9b\x13\x3d\xfe\x4d\x6a\x82\x82\x07\xf5\x0c\xdd\x13\x32\x60\xce\x7a\x30\xa1\x6a\x9a\x8e\xce\x22\x3e\xfb\xf0\x98\x8e\x88\x60\x44\x11\xf9\x01\xcf\xe9\x0c\x6b\x49\x9a\x88\xc5\x87\x51\xc2\x47\x1f\x66\x58\x2a\x22\x3e\xcc\x1f\x27\x10\xd8\xe3\x3c\x5d\x1f\xb2\x66\x27\xfc\xdf\xaf\xfe\xf2\xc3\xe9\xd5\xdf\x7e\x78\xb7\x6c\x21\xab\x5b\xff\x2e\x8b\xf0\x5c\xa6\x89\x0d\x04\x14\x3e\x6d\xdc\x91\x4f\xc9\xaa\xf5\xbe\x2e\x2e\xd7\x76\xfa\xeb\xc5\xed\x43\xc1\x62\x5d\xfc\xe7\xe7\xee\xe7\x9b\xbb\x5f\x0b\x9c\xb2\x7f\x73\xd7\xf9\x54\x60\xa8\xdd\xdb\x9f\xba\x9f\xbb\x77\x9d\xab\xa1\x7b\xb8\x8d\xed\xed\x67\xc6\x9f\x59\x91\x34\xd2\x71\xc0\xa5\x9e\xce\xd1\x47\x2e\xd0\xcf\xd9\x4a\x9e\x8e\xb0\x84\x2b\xc6\xdd\x59\xf2\x04\xcd\x79\x0c\x8c\x17\x91\xf9\x94\xcc\x88\xc0\x89\xb5\x19\x48\xc5\x05\x9e\x98\x9b\x5e\x46\x02\xab\x68\x8a\xe4\x1c\x47\xe4\x04\x45\xb0\x1b\x26\x27\xb0\x28\xa0\x6a\xf1\x49\xd9\xce\x77\x97\x32\x45\x67\xc4\xa9\xe0\xf6\x9f\x7d\xb3\x18\x1b\x2c\xce\x4d\xff\xa7\xa2\xb0\xf7\xf1\xea\xd7\x7e\x77\x78\x7f\xf9\x73\x23\x3d\xcd\x67\x85\x91\xdd\x43\x5c\xd5\x05\x4f\xd2\x19\xf3\xff\xde\x7c\x6c\xbd\xeb\x7e\xf7\x53\x79\x74\x37\x9d\x7e\x71\x67\xdc\x15\xe3\xf6\xde\xfd\x78\x73\x73\xd5\x2d\x78\xba\xdf\x5d\x76\xfa\xdd\x7e\xef\x73\x61\xff\x5c\x3e\xdc\x81\x0f\xa8\x71\x9a\x6e\x04\x15\x13\xd5\xd3\xf2\xa7\xb9\x6b\x56\xd8\x8a\x13\x75\x6c\xf8\xbf\x39\xcb\xa7\x1e\x5e\x8e\x89\x72\x03\xab\xce\x69\x66\x52\x8d\xcc\x48\x2b\xd9\xa1\x2a\x2e\x13\xaa\x67\xc7\x8d\x0b\xdd\xc4\x95\xfb\xd9\x10\x60\x5c\x67\x46\xd9\xc6\x49\xc2\x9f\x4d\x84\xf2\x8c\xea\x5b\xd9\x16\x5b\xd7\xaf\xc8\xdc\x43\x78\x56\xc1\xf1\x8a\xcb\x42\x22\x41\xd4\x67\x9e\x32\xb5\xf9\x96\xeb\x5c\x17\xf8\x4e\xf7\xfa\x97\xe1\x2f\x9d\xe2\x0e\xec\x5d\x35\xb3\x1a\xbf\x89\x8a\xab\xb8\x73\xfd\x6b\x76\x09\x43\x1c\xfb\x49\xa6\xa1\x1a\xd9\x35\x4a\xa8\x16\x7b\x23\xac\xb5\xd7\x04\x24\x1a\x44\x28\x98\x1c\x66\x7a\x72\x10\x37\x3b\x37\xfe\x24\xc3\x9f\xcc\x20\xcf\xdd\x1f\xa5\xf6\x24\xd0\x05\xac\xa9\x2e\x4d\x00\xda\xb1\x5a\x35\x43\x84\x3d\x51\xc1\x19\x08\xdb\x4f\x58\x50\x2d\x8d\x9b\x96\xf5\x5c\xcf\xe1\x7f\xd7\x6b\x13\x0c\xa3\x25\xc6\x75\xcf\x85\xba\xcc\xe2\x93\x37\xb3\x86\x54\xc5\xe9\x2e\x47\xe8\x56\x1b\x3a\x96\xbf\xad\x58\x9c\x2d\xe3\x98\x8b\x13\xfe\x3d\xb9\xa4\x38\xd1\x0c\x60\x77\xf2\x62\xe7\xfa\xbe\x57\x94\x1f\x8b\x6a\x86\xc7\x97\x37\x96\x17\xc1\x50\x69\x46\xee\x94\x89\xfb\xbf\x5f\x19\xed\x42\x6f\x12\x7b\x6e\x3d\xc5\x02\x04\x20\x57\x85\x74\x8e\x85\x2c\x7d\x21\x11\x20\x99\xe5\x71\x64\xfa\xce\x82\x28\xad\x27\x4e\xe3\x01\x23\x5f\xe7\x84\x49\x08\x0e\x30\xf7\x59\xee\x6b\x97\x67\xa8\x37\x06\x96\xa0\x5f\x67\x28\x65\xd6\x01\xa6\x2f\x5c\x33\xc8\x13\x2d\xca\xda\x21\x64\x1a\x22\x18\x5e\x18\x71\x31\x60\xf9\xe0\x07\xec\x4b\xe6\x44\x83\x47\x63\xae\x19\x90\x5e\x45\xdb\xde\x39\xc2\x4c\xd2\x13\xa4\x15\x96\xf2\x9a\x42\x46\x84\x56\x28\x6d\x64\x9a\xe6\x34\xf6\xcf\x97\xbf\x06\x96\xc2\x9f\xfd\xcb\xa0\xfa\x2e\x28\x5d\x05\x35\xa2\x71\x62\x3c\x26\xc3\xf6\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xbd\x8f\xe5\xe3\x92\xef\xa1\xc7\xa4\xc2\x2c\x22\x17\x09\x96\x1b\x06\x21\x39\x1b\xc7\x49\x51\xe2\xb8\xbb\x7b\xb8\xed\xf7\x7e\x5c\xc1\xe5\xcb\x1f\x2f\x87\x01\x45\x49\xea\xdc\x73\x23\xc1\x71\x8c\x34\xfb\x9c\x70\xe3\x0a\xb4\x82\xbf\x39\x41\x66\x4d\xa8\xf4\xe2\x44\xb1\x7c\x2c\x18\xa9\x6d\x96\x85\xb5\x73\xf8\xae\x04\x6a\x09\x81\x22\x4d\x09\xe4\x99\x3c\xdc\x52\x83\x67\xd1\x44\xd1\x59\xeb\xd6\x3c\xc1\x6a\xcc\xc5\xcc\x70\xf9\xc2\xa4\x4d\xe3\xcd\x8d\x52\xa6\x88\x10\xe9\x5c\x81\xca\xae\xc7\x5a\x96\x52\xf5\x92\x5d\xf1\xc9\x67\x22\x25\x9e\x90\x6d\x1c\xd0\x55\xca\xc3\xfd\x2f\xfe\x3f\xc1\xc1\xdc\x46\xf6\x2f\x8c\xd0\x05\xf4\xbb\xfd\x74\xc3\x3e\x9a\x40\x9e\x5b\x9e\xd0\x68\xc3\x80\xbb\x8f\x9d\xde\xd5\xb0\xf7\x59\x2b\xf1\x9d\x7e\xf7\xaa\x20\x4a\xc0\xb3\xce\xc7\x7e\xf7\x6e\xd8\xfd\xaf\xee\xc5\x43\xbf\xf3\xe3\x55\x77\x78\x7d\x73\xd9\xbd\x1f\x5e\xdc\x7c\xbe\xbd\xea\xae\x88\xcc\xa9\x6d\x7c\xd9\xba\x5a\x7e\xf5\x7c\xe9\x17\x58\x61\xcd\xcb\x7c\x7b\x19\x24\xc3\x61\x9a\x80\x13\x9c\x1b\x67\x38\x46\x8c\xc7\x04\x7e\x96\xce\x3a\xe3\xb2\x4d\xce\x50\x4f\xbd\x4f\x12\x84\x53\xc5\x67\x18\xbc\x36\xc9\x62\xc0\xf0\x48\xb3\x56\x9c\x24\x5e\x78\x97\x48\x19\xd3\x2c\x56\x37\x26\x4d\x7c\x71\x42\x34\x3b\x9f\x7b\x39\x8c\xd6\x6f\x30\xa6\x0c\x02\x88\x67\x58\x3c\x1a\x37\x53\xde\x65\x7e\x28\x24\xc2\x72\xc0\xf4\xb8\x88\x35\x0c\xb5\xa1\xf0\x79\xab\xb7\x6a\xa9\x33\xc3\x8f\x44\x53\x65\x96\x46\x53\x34\x17\x7c\x22\x88\x94\xd6\xb6\x1c\x61\x66\x02\x10\xec\xeb\xfa\x1a\x1a\x30\xc6\x35\x29\x9c\x09\x3b\x26\x73\xc2\x62\xc2\x22\x6a\xb2\x15\xc1\x77\x9f\x99\x36\x27\x02\xcf\xa7\x48\x72\x70\x7a\x03\xd9\xc1\x7e\x65\x3e\x72\x37\x99\x99\xb1\x79\xec\x5b\xa0\x45\xaa\xf9\xc4\x0d\xc8\x89\x86\xca\xf0\xb1\xbb\x0c\x9d\xdb\xc5\xd8\x01\x67\xf3\x84\x40\x97\x96\xe4\xb0\x18\x9a\xd6\x85\xf5\xd0\xcb\x54\xb5\x08\xfa\xc2\x76\x63\xc6\xd2\x8e\xe8\xac\xc2\xb2\x6d\x8f\x14\xfa\x09\xb3\x38\xd1\xad\x38\x1f\x46\xf1\x2c\x42\x86\x4d\x47\xef\x1a\x77\x1a\xb7\xb9\x45\x23\x9c\xca\x6d\xae\xd1\x52\x8a\xa9\xb1\x0a\x9e\xe6\x41\x21\xb0\xbd\x6d\x7e\x29\x50\x77\xae\x59\x24\x4e\xb8\xa5\x92\x79\x3d\xb5\x41\xcb\x30\x9a\x9a\x6b\x76\x2e\x28\x8b\xe8\x1c\x27\x1b\xe9\x7e\xa5\x1c\x03\x1b\xba\xff\x1d\x1d\xeb\xed\xf3\xfd\x92\xdb\x56\x11\x31\x83\x74\x72\x3b\xcc\x6c\x09\xd7\xb0\x24\xd9\x64\x0d\x22\xf3\x68\x12\x2c\x78\x6a\xfc\x71\x40\x17\x12\x57\x1c\xd5\xb3\xaa\xe5\xd6\x27\x03\x17\x03\xa0\x37\x58\x6c\x13\xf9\x53\x47\xbf\x52\x2b\xb6\x77\x13\x8c\x87\x93\xdb\xea\x36\xab\x56\xc0\x7b\xf8\xaf\xa6\xbd\xf3\x19\xcf\xf5\x9e\x89\x52\xa9\xc0\x53\x9c\xcd\xd1\x2a\x49\xa5\x50\x76\xcf\x77\x9e\x05\xb5\xb7\x5f\x8d\x9c\x84\x36\x00\x6a\xb9\x93\x42\x0c\x81\x87\x08\x60\xf7\xf8\x38\xd5\xb2\x2c\xc2\x10\x85\x80\xbe\x23\x67\x93\x33\x74\xf3\x4b\xf7\xee\xae\x77\xd9\x3d\x41\x9d\xdb\xdb\xee\xf5\xe5\x09\x22\x2a\xfa\xde\xc5\x2c\xda\x80\xa5\x01\x53\xdc\x4a\x2b\x0b\x34\xe5\xcf\xc0\x1b\x89\x98\x90\xc2\x9c\x5d\x74\x13\x84\x2a\x4f\xa8\x54\x36\x7c\x56\xf3\x95\x7c\x58\x5a\xde\xaf\xdc\x21\xa9\x9a\x6e\xb3\x35\xb0\x94\xe9\x4c\xeb\xb2\x43\x8a\x67\x43\xc1\x93\x6d\x98\xc2\x25\x4c\x05\xd4\xe5\x0c\x4c\x81\xe2\x19\xd2\xcd\xda\x50\x90\xcc\xe5\x98\x89\x74\x5a\x30\xd2\x7c\x59\xdf\x9b\xde\xbd\xe5\xbc\x0f\x36\x1e\x8d\xba\x10\x08\x00\x5b\xa8\x61\x15\xb9\xd9\x78\x68\x2d\xf5\x43\x1c\x45\x5a\xe5\xde\xf1\xa4\xf2\x8e\x32\x97\x80\xed\x68\x6f\xd3\x5c\xb5\xcf\xdd\x30\xe7\x9a\x83\x41\x30\xb0\xbe\x72\x25\x8f\x68\xde\x7e\x45\xbf\xa3\xc5\x52\xaf\xb0\x65\xcf\x06\xec\x41\x66\x26\x15\x73\x09\x4b\x02\x2b\x29\xd1\xf3\x94\xc0\xd1\x58\xa0\x29\x7e\x22\x85\x2e\x5d\x0e\x89\x6e\x78\xc1\x53\x51\xc5\xe8\x06\xec\x92\xcc\x05\xd1\x92\x7e\xd9\x81\x92\xed\xe9\xbb\xe2\x4e\x0c\xfb\x3a\xec\xeb\xa3\xdf\xd7\x17\x49\x2a\x15\x11\x1d\x29\xe9\x04\x0c\x89\x5b\x09\x70\xa6\xb1\xe1\x9c\xf3\x64\xd8\xc2\x26\xd2\x9e\xe2\x05\x4f\x58\x21\xe0\x43\x1a\xa4\x03\x9e\x82\x7c\x54\xb8\x36\xb9\xbe\xeb\xbc\xcc\x61\x3b\xbc\x06\x32\x38\x97\x59\xc7\x01\x4a\x6c\x25\xe2\xe0\xaa\x56\x9a\x5a\x42\x7b\x17\x73\x2e\x8c\x7c\x93\xb9\xcb\xf2\x21\x96\x0e\x93\x13\x45\x28\x73\x64\xcb\x3f\x82\xfd\xac\x09\x6c\xe4\x8e\xdf\x53\xae\xb0\xfc\xfe\x6c\xc0\xb4\x10\xf5\x48\x16\xc6\xdc\xaa\xc5\x94\x3f\x68\x59\xfc\x54\x12\x26\x21\xdc\xfb\x0f\xc6\x3d\xa7\xb7\xb8\x33\x57\x1b\xd5\x94\xcc\xe6\x09\x56\x10\x74\x9d\xf5\x02\x21\xba\xb6\x51\x2b\x25\xe5\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x13\xa2\x20\x73\x5c\x51\x05\x3a\x53\x9c\x6a\xf2\x2c\x0f\x7d\xa5\xe9\xca\xec\x0a\xc1\xc1\x4f\x12\xa7\xdb\x31\x7e\xb9\xdc\xc6\x4a\xce\x98\x69\x0b\xf7\x36\xe6\xfd\x83\xb3\x1b\x45\x82\xb3\x52\x34\x8c\x56\xe6\xcc\x4a\x8f\x0c\x3b\x70\xfe\x6b\xc2\xce\x9e\xe9\x23\x9d\x93\x98\x62\x88\x80\xd7\xff\xfa\xa0\xe7\xf5\xef\x17\x77\x37\xd7\xc3\x3c\x93\xe7\x3f\x07\xac\x93\x48\x9e\x65\x29\x20\xc6\x59\x16\x6e\x3f\x17\xc4\x89\x84\x76\x2e\x60\x75\xcd\xcd\x88\x03\x56\x37\x82\x98\x47\xf2\x0c\x3f\xcb\x33\x3c\xc3\xff\xe4\x0c\x5c\xe9\x1d\xf8\xf3\x22\xe1\x69\xfc\x05\xab\x68\xfa\x01\xce\xb5\xfa\x40\x9e\x08\x53\xc6\x4d\xa5\xc9\x15\x43\x4e\xb2\x84\x68\xfd\x7f\xd7\x63\xce\x93\x8a\xa4\xd6\x64\x23\x32\x57\xe8\xff\x15\x64\xc4\xb9\xaa\xbe\xa4\xf8\x78\x2c\xc9\x5a\x17\x52\xae\xa4\xdd\xdf\xa0\xbf\xfd\xc7\x0f\x7f\xd2\x5b\x68\x13\x1a\xf7\xee\x6f\x86\xfa\xfb\x7f\xbf\xb4\xdf\xcb\x35\xd8\x9d\x49\xa5\x95\xd6\xd5\x6c\xa8\x61\x02\xe7\x53\x06\xb7\x9f\x00\xe7\x05\xb0\x37\xd8\x0e\xf9\x3a\x56\x71\xb7\xcb\x42\xeb\xdb\xa9\x6c\x1b\x11\x13\x54\x6c\x6f\x8e\xe8\x14\x31\x8e\x66\x26\xd6\x14\x33\xf4\xd7\x9f\x7f\xac\x5e\xc0\x54\xd0\x8d\x3a\xa4\x16\x85\xc2\xeb\x52\xd2\x7f\x12\x89\xf4\xae\xd1\xbb\x98\xcf\x74\xd7\x82\xc8\x29\x4f\x62\xf4\x4c\x40\x4d\xb2\x71\xa0\x99\x56\x2e\xc8\x80\xf9\x4d\x40\xc8\x21\xc2\x89\xe2\x13\x02\x77\xb5\x53\xd4\x14\x11\x5a\x54\x31\x59\x1a\x8a\x0b\x72\x62\x80\xd9\xee\xff\xe2\x62\xab\x61\x9a\xf0\xc8\x25\xb5\x58\x93\x5c\x3c\xaa\x9e\xf9\xb8\x6c\x7a\x45\xf5\x36\xfc\xf2\x22\x5b\xb3\x6d\x35\x69\x6c\x12\x8a\xb5\x61\x95\x57\xa6\x7a\x30\x34\xe2\x6c\x98\x50\xf6\xb8\xd1\x62\xb8\xc4\x70\xa4\x5b\xb0\x34\xd3\x2d\x66\x76\x6e\x63\x01\x59\xe3\x7c\x7c\x4c\x93\xc4\xa4\xb6\xf8\xcb\x03\x72\x97\xa1\x1b\x08\x03\x73\x93\x03\x4a\x62\xeb\xf7\xb2\x9a\xb0\x20\x0c\x02\xde\x06\x6c\xb4\xb0\x3e\x5b\x79\x82\x64\x1a\x4d\x5d\x66\x5e\xc4\x99\xd4\x62\x34\x17\x28\xe2\xb3\x99\xd6\x7a\x61\xc9\x14\xe7\x89\xb4\xd1\xee\xec\x54\xe1\x48\x0d\x58\xde\xdf\x8a\x93\x67\x8a\x32\x6d\x97\xba\xd7\xde\xa5\x93\x17\x7f\x6a\x14\xb8\x69\xec\x43\x51\x80\x11\xcc\x78\xa2\x3c\x50\x0b\xbe\x7c\x96\xcc\x82\xd5\x68\x06\x72\xca\x85\x1a\xc6\x95\x3c\x67\xe5\xa6\x29\x33\x42\x46\x4e\x13\x08\x1a\xe6\x4f\x5a\xf8\x27\xcf\x99\xf1\xb5\x69\x08\x7a\x57\x37\x8d\xa0\xdd\x31\x6a\x1c\xd9\xba\x5b\xb0\x86\x56\x06\x98\x24\x2a\xc6\x84\xaf\x1a\xe3\x3d\x7c\x75\xa1\x3f\x6a\x24\x5e\xf9\xdc\x39\x21\x88\xc7\x39\x86\x9e\xb9\xd7\x6d\x46\x48\x13\x4d\x2d\x74\xc2\xfe\x32\x47\x9b\xa6\xf2\x50\xb4\xe4\xea\xb1\x80\xc9\x5e\x12\x90\x35\xb1\x18\x51\x25\xb0\x28\x00\xa0\x64\xfa\xa0\x24\x58\x40\x7c\xd6\x80\x19\x38\x3c\xa3\x29\xc4\x28\xa6\x12\x12\x44\xe0\x2e\xf5\x9c\x61\xa8\x9d\x12\x58\x3a\xda\x79\x9e\xa3\x89\x3f\x87\xc0\xb2\x7c\x6b\x38\x66\xa7\x3b\xca\x60\xbf\xb4\x7e\xc6\xa3\x34\x17\xe4\x22\x90\x70\x2d\x54\x10\xa2\x4c\xd2\xc9\x54\x21\xca\xac\xdd\x11\x27\x13\x2e\xa8\x9a\xce\xe4\x09\x1a\xa5\x52\x6b\xa1\x26\x58\xcd\xc4\xa3\x10\x15\xb5\xe2\x42\xdb\x26\x11\xc7\xa5\x06\x97\x55\x94\x0d\xb6\x46\xbb\x43\xd9\x2d\xdd\x15\x2b\x36\x4e\x27\x83\x4f\x2c\xb7\x41\x89\xcc\x50\x37\x91\x89\x03\xe4\x0e\xb0\xea\xf7\x94\x48\x55\x77\x0e\x00\xec\x72\x67\x5e\x8a\x97\xa8\xa4\x85\x4c\x32\xa8\x20\x2e\x76\x1b\x24\xaf\x22\xe0\xa6\x01\xa5\xca\x9c\x4e\xb3\xb9\xaa\x0c\xdc\x5a\x76\x15\xdd\x79\x50\x46\xed\x88\x0d\xc9\x58\xb0\x9b\x01\x80\x6e\xc0\xee\x09\xa9\xc7\xa7\x5b\x5a\xfb\xdf\xe0\x28\xc1\x14\x6c\xa2\x47\xf3\x96\xdf\xc6\x89\x7d\xd9\xbd\xbf\xb8\xeb\xdd\x1a\xc8\x89\x9b\xbb\xcf\x9d\xfe\xb0\xc2\xaf\x5d\xf1\xd6\xe7\xce\xdd\xcf\x97\xab\x5f\xfb\xa9\x5f\xcc\xca\xae\x78\xe5\xee\xbe\x39\x99\xa3\xc5\x10\x2b\x92\xc2\x2a\xfb\x39\x47\xf3\x85\x9a\x72\x96\x85\x28\xc4\x05\xde\x74\x8a\x4c\x46\xb0\x82\x10\x22\x21\x55\x85\xe3\xb0\x0f\x71\x39\xab\x25\xcc\xe2\x62\x19\x74\xb9\x9d\x8a\x46\x6b\x9c\xc8\x4f\x09\x1f\x81\xdf\xda\xca\x3e\x16\x98\xae\x21\x02\x7d\xcb\x78\x9f\x4b\x2a\xe7\x09\x5e\x2c\xf5\xb0\xea\xca\xb9\xc6\x33\x02\x11\xc7\x39\x2c\x9e\x4b\x16\xd1\x2b\x03\x09\x4c\xd9\xbd\x4e\xc7\x90\xc9\xa4\x28\x56\x04\x8d\x88\x7a\x86\xbc\x39\xf7\x6b\x66\x4b\x75\x01\x23\xf2\x6c\xc0\xc0\x9c\x33\xd0\x44\x8e\x53\x88\xf6\x1b\xbc\x3b\x41\x83\x77\x31\x79\x22\x09\x9f\xeb\x95\xd7\x3f\xd4\x5c\x32\xdd\x19\xa6\xc9\x35\x57\x99\x65\x6e\x9b\xf5\x14\x24\xa2\x73\x90\xcc\x87\x44\xb7\xfb\x72\x82\x47\x61\x27\x3b\x76\x06\x63\x40\x38\x8e\xb5\x92\x0d\xac\xcc\x0d\x2f\x0f\x01\x62\xde\xd4\x0b\xc5\x2e\xd7\x11\x29\x32\xf3\xb7\xe9\xd1\x6f\xb3\x68\xf6\xac\x5c\x01\xf6\xb4\x47\x97\xec\xb6\x17\xb9\xd6\x4a\x7e\x26\x0b\x48\xc1\xb8\xc5\x54\x6c\xe8\x9a\xad\x8a\x79\xdd\x8b\x93\xb6\x5b\xd1\xd1\x01\xb9\x6b\xab\xe9\xb0\x9d\xe3\x36\x8b\xd5\x7b\x29\x2d\xd5\xc5\x72\x65\x1d\xb7\x54\x5b\x1f\xea\x94\xd4\xda\x10\x06\x54\x56\xbc\xe6\x24\x5a\x43\xe3\xca\x06\x78\xaf\xbf\x5b\xa9\xa9\x64\xe2\x9a\x8b\xbf\xcb\x57\xc1\x26\xc7\x97\xf3\xf1\xc9\xca\x11\x47\x09\x97\x45\xac\x9c\xd6\x83\xbe\xb0\x9f\x36\x8d\xbb\xeb\x6f\x5f\x2d\x17\xae\x15\xd0\x50\x41\xf8\x12\xc6\xa5\xb9\x67\x94\xf5\x90\xd9\xb7\x4f\x10\x85\x68\x4b\x50\xc8\x92\x1c\x39\x80\xc5\x28\x77\x83\x0c\x58\x1e\xb3\x22\xd1\x33\x49\x20\xcc\x2d\xe2\xb3\x39\x98\xf8\xed\x70\x6d\x4b\x24\x36\x11\xc3\x27\x88\xa7\x4a\x37\x66\x72\x72\x9c\x11\xd7\x26\xfc\xe4\x6e\x0f\xe3\x7b\xb3\xc1\xef\x19\x5e\xb6\xd9\xeb\xe6\x2e\xa5\x0c\x7d\x22\x0a\x5a\x81\x32\x0b\xfe\x04\x41\x4f\x28\x87\x50\x56\xd3\x7e\x8b\x13\x65\x67\xb2\xc6\xca\xe7\xc0\x29\x3f\x26\x7c\xd4\x6c\x24\x80\xc6\xd1\xc3\x5d\xcf\x59\x24\xf3\xf8\x29\x0f\x94\xb9\xe0\x51\xec\xde\xde\x75\x2f\x3a\xfd\xee\xe5\x19\x7a\x90\x44\x93\x27\x9b\x2e\xe4\x57\x67\x2a\x89\x19\xb9\x45\x62\x61\x52\x11\x5c\x67\x08\x21\x42\x14\xb2\xa0\x57\x30\x8e\x22\x4c\x4b\xf3\xc6\x06\x90\x14\x6a\x0d\x75\x00\x2c\x54\x9e\xa7\x8d\xcc\x5b\x75\x02\x21\x4e\x6a\x78\x3c\x51\x6a\x66\xbc\xb3\xe5\xc8\xbc\x55\xdb\xa7\x18\xd1\xb7\xef\xc9\xc0\xd1\x52\x53\x42\x05\x6a\x35\x2d\xb3\xa9\x86\xed\xe7\xe4\x85\xb8\x7f\xc6\xf3\xe6\xf4\x53\xfc\x5c\xd8\xb4\x46\x14\xf6\x7c\xf7\xfb\x3e\x07\x8e\xad\x0d\x0d\x2b\xdc\x7e\x82\xb9\x43\xcb\xf0\xd6\x8c\x6f\x9a\x8c\x0f\xe9\x8c\x64\xfe\xc4\x4a\x83\xb0\x71\xac\x12\xc1\xd9\x81\x5f\x28\x43\x85\x2b\xf1\x04\x8d\xe9\x57\xdb\x68\x1e\xdf\xee\x5e\xf5\x02\x1e\x6a\xe2\x29\xa7\x78\xf9\x4c\xad\x21\x36\xdc\xc2\xf7\x8d\x42\x24\x97\x5a\x24\x8a\xb4\xb8\x24\x48\xc4\x85\xbe\x29\xa0\xdb\xdc\x0b\xb1\x4a\x64\x50\x58\x68\xa2\x2c\x7b\x65\x9a\x4e\x7f\x5e\x5a\x25\xc6\x8a\x9c\x6a\xd1\x6b\x45\x02\xb4\xcd\x91\x81\x6c\x1a\xac\x3c\x38\xb0\xfc\xe6\x19\x91\x09\x66\x2e\x34\xbb\x66\xb8\xee\xca\xdb\x82\x55\x69\x15\x08\x43\x7a\x18\xc8\x57\x90\xfa\x53\x18\x87\x9c\x03\x3d\x1b\xc7\x61\xa3\x5f\x0e\x81\x6c\xcf\x38\x0b\xc6\xa9\x19\x6c\x3a\x8f\x0f\x69\xb0\x09\x96\x0a\xd9\x31\xd5\x99\x22\x3c\x15\x71\xbf\x46\xd8\x82\x6e\xdf\x56\x79\xd3\x5b\xa8\xa8\xc5\x12\xf0\x8c\x48\x87\x9b\x62\x50\x62\xb4\x4e\xe3\x04\xe1\x0b\x58\xa1\xec\x6c\xdf\x19\x29\xcb\xdd\x12\x3e\x33\x81\x20\xfd\xe5\xa6\xcf\x50\x87\x2d\xe1\x65\xb9\xb8\xac\x02\xbd\xcc\x9d\x84\x93\x67\xbc\x90\x68\x2e\x0c\xb4\x8c\x89\xdc\x77\x93\x07\x0d\xac\xf8\x51\x16\x0a\xa1\x5c\xea\x04\x02\x5b\xcc\xea\xa0\x39\x27\xf7\x0e\xf7\xe0\xca\x2b\x45\x95\x67\x02\x79\xde\x5c\x6e\xab\x68\xc1\xea\x14\x19\x46\x53\xcc\x26\x64\xe8\x8c\xac\x9b\x68\x4b\xba\x9d\x0b\x68\xe6\xd2\xb6\x52\x7d\x39\xdd\x1a\x85\xc9\x96\xb5\x31\xaf\x66\x06\x44\x7d\x08\xa4\xc2\x13\x82\xcc\x88\x5a\x99\xa5\x0b\x11\x63\x16\x6c\x18\xf4\x04\xdb\x6a\xb7\x18\x45\x5f\x27\xbc\x43\xe8\xd3\x15\x1e\x91\xe4\x75\x22\x27\xa0\x6b\x6b\x9c\x07\x6f\x9d\xc9\x06\x20\xe8\x19\xec\xf9\x25\x96\x61\xad\xf7\x22\xad\xca\x0d\x68\x9a\x27\x1c\x39\x7b\xd2\xb6\x99\xa8\x2b\x81\xb2\xc9\x54\xeb\x0a\xa3\xf8\xd7\x9e\x57\x40\xa4\xca\xc0\xe6\x5f\x7f\x65\x9b\xf2\x66\x03\xf1\xea\x98\xd4\x8c\x63\xeb\x42\x26\x2b\xa7\xb2\x31\xc8\x40\xcb\x9a\x85\xbd\x31\x62\x9c\x11\x44\x65\xfe\xb2\x2a\xa6\x43\x65\x10\x3d\x5a\xc4\x37\xc6\x97\xac\xf8\x58\x56\x53\x6a\xdf\x96\x96\x1c\x3c\x21\xb3\x0d\xb8\xfc\x6e\x46\xb4\xa2\x8a\xc5\x02\x20\x3e\x0d\x1f\x2e\xca\x74\x2b\xc7\xb9\x73\x81\xbb\xef\x10\x5c\xbd\x48\x5d\xc5\x11\x88\x91\xa5\xc1\x21\x83\x83\x6a\x5f\xb2\x1f\x59\x98\x9a\x01\xcb\x2c\x1b\xb0\x11\xa9\x44\x33\x3c\x07\x9f\x1e\xe3\x2a\xff\xca\xc0\x2e\xa9\x6c\x09\x4f\x9c\x20\x2e\x4d\x69\xb0\xd5\x14\xe0\x62\xb2\x4d\xa8\x46\xfb\xf2\x0f\xed\x0d\x4b\xee\xf2\xcf\x57\xb5\x08\xae\xe9\x80\x81\x27\xf4\x89\x30\x77\xa2\x4e\xdc\x89\xd4\x24\x71\x53\x4e\x16\xa7\x18\x82\x9c\x49\xec\xfb\x5d\x9a\xf9\xa1\x31\x07\x1d\x82\x35\xb4\x3d\xc9\xfa\x95\x41\x3c\x06\xa2\xad\x80\xad\xef\xc2\xd2\xfd\x33\x62\x51\x83\x4d\x1e\x3a\x96\xe8\x0f\x8c\xab\x3f\x78\xb8\xca\xce\x74\x02\x9f\x3a\x03\xd8\xc9\x52\x1d\x1c\x60\x19\x76\xdb\x22\xec\xe1\x7b\xad\xa4\xfc\xb6\x91\x09\x79\xd8\xfd\x5e\x65\xe1\xee\x72\x0e\x5e\x5d\x21\xb1\x10\x2f\x80\xca\x97\x52\xd9\xdc\x6a\x6a\x15\xe6\x27\xbd\x60\x66\x95\xab\x02\x04\xb2\xb5\x68\x15\x18\xb0\x84\x47\xb0\xcd\x6e\x9b\xb5\x8e\xdb\x5a\x01\xc1\x5c\x6d\x15\xd9\x24\xcb\xb4\x4e\x2b\x10\xc5\xc0\x39\x5b\x84\xa3\x06\x63\xf8\x6c\xc0\x3e\x72\x61\x05\x00\x69\xab\x1c\x8c\x70\xf4\x78\x4a\x58\x8c\x70\xaa\xa6\x06\xeb\xd7\x7a\x35\x16\x76\x37\x68\x39\x07\xb6\x4d\x06\xe4\x41\x65\x84\x45\xec\xea\x6d\x3c\x71\x37\x8a\x01\xf3\x1a\x81\x3a\x0a\x50\x3d\x0b\xca\x1a\xd7\x29\xba\x44\x6a\xed\xae\x8e\x16\x55\x95\x6d\x97\xea\xda\x36\x9f\xb3\x42\xa5\x5e\xa8\x00\x01\xe1\x55\x7c\xbc\x4c\x9d\x9e\xb3\x75\x3a\xed\x52\xef\xe7\x65\x1f\xc8\x89\xd5\x67\x8c\x41\xcc\xce\x40\xcb\x59\x3f\x38\x5e\x5b\xc0\x2c\x1e\xa7\x02\x82\x85\xab\xda\xfc\x2e\x9a\xd2\x24\xf7\x9c\x7c\x7f\x92\x0d\x53\x37\x99\x90\x27\x92\x18\xc4\xfc\x48\x40\x5e\x80\xb1\x59\xfe\x80\xfe\xb7\xa9\xf6\x8a\xfe\x34\x60\x9f\x80\x0d\x27\xc9\x02\xf0\x3c\xb3\x96\xb1\x2a\x35\xf3\x58\x39\x00\x65\x13\x91\x50\x71\x20\x66\xad\xa7\xf8\x89\x0c\x98\x6b\xe6\x7f\xa3\x47\xf4\x47\xf4\xa7\x3a\xe5\xd2\x85\xf7\xef\xd9\xca\xf2\xd1\x0b\x9e\xf7\x6e\x39\xcb\x28\x2d\xbf\x71\x46\x98\x82\x09\xb4\x02\xd7\x23\x83\xe5\xa6\xec\x89\x47\x4b\x39\x24\xfe\xa9\xc5\x82\x30\x35\x64\x3c\x26\x43\x52\xe1\x50\x6d\x60\x12\x5a\x08\xb8\xe6\x31\x59\xe9\x0e\xcd\x98\xe9\x17\x30\x1c\xc9\x74\x94\x2d\x07\xc0\x0b\x64\xb9\xe4\x99\xed\xa3\xb8\xd3\xaa\x47\x9e\x61\xdf\x6e\x32\xee\x4d\x5d\xb9\xb9\xd8\x88\x73\xf0\xdd\x6a\x77\x62\x82\x95\x93\x26\xcb\xc7\xb1\xec\x86\xd0\x2f\xeb\x99\xdb\xcb\xca\x43\xf5\x85\xca\x2b\x82\x4e\xa8\xd6\x1e\xda\xbb\x8b\x81\x13\x6e\xe2\x4b\x31\x10\xa7\xad\x9c\x29\x39\x29\x1c\xcc\xcb\x69\xb6\xff\x72\x17\xe8\x88\xa7\x65\xf5\xc1\x12\x80\x4a\x3f\xd8\xc0\x6a\x0a\x0b\xcd\x87\x27\x26\xff\x90\x4c\xa9\xc9\xf8\xef\x5c\x5c\x21\x7d\x3a\xf8\xcc\xc0\x62\x01\xd1\x52\x35\xe5\x82\xfe\xb3\x69\x6f\x63\xa1\xe8\x18\x47\x6a\xb8\x93\x2a\x32\xf5\x9b\xa9\x63\xfb\xe9\xd5\x57\xaa\x5b\x42\x38\xc0\x4f\xc4\x0b\x40\x84\xf0\x42\xdb\x8a\xcc\x1c\xb9\x65\x7e\xcb\x05\x62\xfc\x39\x87\xc5\x72\xdf\x03\x12\xb4\x97\xb8\x81\xb5\xca\x35\x87\x08\x62\x49\x61\x7f\x02\x48\xd5\x7b\x65\x92\x32\x01\xe0\xdc\xc0\x4b\xe9\xed\x39\xc5\x2c\x4e\xdc\x15\x82\xb8\x89\xe8\x59\x3c\xe3\xc5\x5a\x3e\x75\x3f\xae\x32\xcf\xd2\x33\xcb\x5f\x54\x82\x80\x07\x18\x49\x4d\x15\x54\xcd\x2a\x45\x18\x8d\x52\x00\xd6\xd5\x34\x19\xa7\x89\xa9\xc6\x11\x71\x11\x9f\x0d\x98\x0d\xa8\xf6\x7a\xd3\x22\xa0\xd3\x9a\xb0\xca\x1a\xa4\x16\x7f\xd4\xd6\xfb\x30\x66\xb9\x46\xb9\xfe\xef\x29\x49\x77\x94\x56\xf9\xaa\x81\xe8\x7d\x3c\x91\x79\x64\xb9\xa1\x8d\xbe\xf2\x72\xfa\xfe\xae\x67\x2a\xbd\x44\x64\x67\x2e\xce\x70\xbd\x8c\x9d\xc5\x14\xb1\x5d\xcb\x4c\x77\x67\xea\x19\xec\xc0\x4e\xf7\x12\x41\x3a\xcb\xa2\x67\x05\x57\xb7\xdb\xef\x29\x4b\xcb\x45\x2f\x63\xfc\x72\x85\x21\x4a\x42\xdd\x1e\xed\x60\x1b\xdc\x1d\xcb\xba\x4a\x63\xa8\x7b\x6e\x15\xcb\x6e\x8b\x8a\x0c\x79\xc5\x21\x97\xe6\x59\x50\x80\xfd\x5b\xe4\x2f\x67\xf5\x9a\xdd\x2d\xec\xf3\x18\x2d\xfc\x19\x6d\x01\x82\x75\x1c\x09\x17\xd5\x57\xe7\x1a\x76\x1d\xdb\x50\xb1\xeb\xe5\x60\x8c\xba\x13\x61\x58\xd2\xa1\x1e\x89\x65\xcc\x9f\x95\x87\x21\x2b\xef\xf2\x3a\x56\xe1\x4c\x62\x7c\xb9\x93\x91\x6d\xc7\x61\x84\xa3\x69\xed\xa4\x46\x9c\x27\x04\xb3\x3a\xa5\xa0\xf2\x71\xf9\x88\x18\xc4\x5a\x60\xdd\x49\x02\xb0\xcd\x8e\x04\xb6\xd4\x67\xae\x15\xb1\x18\xe0\xf6\x0d\x0f\x37\x01\x9f\x6e\xa0\x8a\x30\x67\x50\xa3\x6c\x92\x90\x32\xad\x6c\x5d\x84\x13\xdb\x49\x12\xa5\x89\x57\xeb\x73\x4e\x84\x1e\xb5\x26\xf1\x13\x61\x5a\x15\xb3\xe3\x70\x1e\xaa\x67\x97\xe5\x9e\x55\xf8\x3a\xc9\xba\x76\x4e\x52\x48\x25\x8d\x07\x0c\x0e\x2e\x2f\x1e\x56\xbd\x57\xa5\xd6\xde\x7c\x73\xdf\xc6\xa7\xd3\x13\x22\xd6\x3e\x9e\xf7\x45\xdb\xff\xda\x67\xd2\xf4\x3d\x84\xc0\x91\xad\xfd\xa5\x9e\x4f\x2d\xc7\xdf\x30\x0b\xeb\x30\xd6\x5e\xc8\x33\x00\xa1\x38\xc5\x58\x62\x2f\x12\xa7\x0e\xe3\x6b\xaf\x77\x49\x5e\xd3\xc4\xdd\x06\x2d\x87\xd2\x18\x7f\xd0\x32\x9a\x00\x8c\xbe\x4d\xe7\xf6\xca\x4a\xf5\x45\x3f\x7c\x96\xb4\x95\xc7\xae\xda\xaa\xbd\x4a\x60\x80\x9c\x00\xa0\x80\x2f\xc6\x70\x41\xa5\x11\xee\x5d\xed\x92\xd9\x5c\x2d\x6c\xa9\x3b\xb8\x17\x0b\xf2\x3e\xc0\xf8\x55\xf9\xfc\xcb\x77\x64\x5c\xf0\xfa\x57\x75\x06\x1d\x59\x6b\x4d\x65\x93\x8e\xd0\x3e\x2c\x4c\x09\x86\xa3\x2e\xc4\xc7\x54\x0d\x1e\xe2\xa4\xd6\x44\xb8\x03\xa6\x09\xca\x51\x0e\xbd\x61\x11\x7d\x95\x48\x89\xe6\x5d\x38\x49\x4a\xf3\xc2\x90\xe3\xae\xb2\xca\x81\xa3\xbc\xbc\x71\xfb\x08\x84\x04\x8f\xc8\x5a\x31\x07\x57\xe6\x83\xc6\x5d\x04\xaf\x40\xb8\xfe\x7c\x9e\x2c\xda\xa5\x09\xf8\xda\x6f\x25\xf2\xdd\xaa\x81\xf9\x78\x79\x8d\x77\x53\x11\x73\x6e\xb3\x21\x4a\x12\xa5\x82\xaa\xc5\xd0\xda\x52\xdb\x33\xad\x7b\xfb\xe5\x85\xfd\xb0\x8d\xa1\xe2\x1c\xb9\xfe\x9c\xed\x16\xee\x29\x41\x4d\x59\x24\x3b\x85\x36\xcb\x8d\x53\x35\xad\x44\xc4\x6a\x22\xac\x83\xe4\x6a\x37\x54\xdd\xc5\xa6\xc3\xb3\xe5\x56\x86\x7c\xec\xc0\xae\xda\x13\xb6\x5c\x87\x66\x0d\x23\xb4\xc3\xd4\x9e\x0b\xca\x85\x2d\xf7\xd2\x26\x52\x71\x86\xbf\x0e\xe7\x58\xe0\x24\x21\x09\x95\xb3\xcd\x4d\xe6\x7f\xf9\x73\xe3\x68\x2f\x4c\x59\x22\x33\xd8\x19\xfe\x4a\x67\xe9\x0c\xb1\x74\x36\xb2\x52\x2e\x96\x8f\x3e\xa2\xa9\xc3\x5f\x30\xc0\x5c\x6e\x80\x05\x14\x08\xe1\x61\xd4\x0e\x98\x87\x56\x6e\x4d\x15\x38\x9a\x52\xf2\x04\x58\xaa\x82\x11\x29\xcf\xd0\x35\x57\xe4\x1c\x7d\xc6\xf3\x3e\x08\x6a\xa6\x4e\xe8\xc4\x38\x1d\xb0\x44\x5a\x6a\x4d\x19\x55\x27\x03\x66\x21\xce\x1d\x55\x3e\x44\x9c\x19\x98\xdb\x08\x08\x9b\x35\x01\x56\x74\x87\xf7\xaa\x5c\xb6\x2a\x95\x35\xc4\x16\xf8\x79\xe8\x85\x24\x0f\x4d\xca\xc7\x1a\xfb\xf8\x0e\x3f\x9b\x20\xfc\x4b\xac\xb0\x29\x01\xdc\x24\xb9\xdb\x28\x37\x5b\x16\xca\xa0\x3b\xbb\x68\x20\x6e\x21\x46\xb2\x82\x76\x26\xe4\xf8\x3b\x7a\x46\xce\xd0\x8f\x09\x1f\xc9\x93\xdc\x54\x65\x1e\x4a\xa2\xe4\x89\xf1\xfb\xc1\xbf\x4d\x7e\xdf\xf7\x8e\xfa\x39\xdf\x87\x5a\x8e\x63\xfa\xd5\x20\x9b\xc8\xbf\x9c\x7f\xf8\x30\x5b\x9c\x8e\xd2\xe8\x91\x28\xfd\x17\xc8\x14\x95\x14\x72\xb0\x60\xb8\x0a\x64\x6c\x15\x75\x96\x01\xca\x5a\xed\x48\x9b\x2b\x25\x09\x80\xe1\xeb\x2b\x3d\xab\x96\xeb\xf0\xac\x38\xab\x2e\x05\x6a\xa7\x2c\xd2\xba\xe3\x55\x40\xd1\x7e\x19\x6d\xc5\x54\x03\xf6\xc1\xbb\xc7\x09\x9e\x94\x54\x96\x35\x94\x94\x9b\x19\xb5\xbb\x48\xcf\x1d\x82\x68\xf4\x29\x2b\x86\x0e\xbe\x77\x5e\x5e\xf0\xd6\x5a\x2f\xd6\xd9\x80\x75\x24\x7a\x26\xa6\xc8\x2f\x24\x9a\x82\xd3\x27\xa5\x72\x9a\xa5\x99\x82\x19\x1a\x1a\x35\x18\xc7\x06\x0a\xc3\x2a\x8e\x4e\xb3\x72\x6e\x31\xab\x81\xe2\x44\x92\x13\xdd\x30\x98\x54\x5d\x74\x28\x7a\x16\x78\x3e\x27\x62\xc0\x2c\x5e\x2d\xa0\xb2\x73\x6e\x23\x7f\xea\x52\x04\x82\x46\xf9\xb2\x1a\xa5\x47\x7b\x52\xcc\x42\x5d\x75\xbe\x21\x69\xb5\x89\xc2\x55\x79\x98\x8e\x7c\x5a\x16\x6d\x1b\xbe\xff\xfa\x66\xe3\x96\x63\x5e\xa5\x9d\x77\x4a\xb9\x17\x50\x43\x7c\x06\x0a\xa4\xcc\x4b\xa5\x3a\x5b\x5f\xa6\xbe\x17\xc4\x1c\x80\x3b\x87\x8f\x63\x4e\xa4\x67\xc4\x47\x99\x2d\x2e\xa1\x63\xa2\xa5\x8f\x01\xd3\xdb\xd8\x77\x38\x18\xd4\x74\x07\xa2\xae\x3b\x8d\x04\x97\xd2\xa6\x53\x98\x76\x9a\x93\xe2\xb6\x28\xd0\x68\xa0\xdf\x7b\x37\xd7\xc3\xe5\x52\x8d\xde\x33\x57\xb4\xd1\x3e\xac\x44\x4e\xa8\x6d\x6a\x65\x89\xc6\x9c\x16\x6b\x14\x69\xfc\x70\x71\xd5\xcb\x2a\x93\x95\xba\x5e\xae\xd2\xe8\xc3\xe5\xd7\xd7\x69\x5c\x9e\xb1\x57\xb1\xb1\xd4\x44\x43\xcd\xc6\xd5\x8b\x55\x0c\xe2\xde\x06\x0b\xb1\xb4\xf4\x2b\xf9\x43\x71\xcf\xac\xca\x35\xd8\xd1\x32\xd5\x5c\x2b\x11\x08\x8c\xfb\x0e\x5c\x00\xc1\x4b\xbf\x25\x15\x9e\xcd\xfd\x3c\x5a\x07\x06\x6b\xa7\x69\x8e\x5a\xdd\x25\xf8\xa2\x20\xf5\x11\x36\x41\x42\xe5\xc1\x2d\x2d\xc5\x7a\x1e\xaf\xbe\xc5\xbe\xdf\x45\x6c\xfa\xcb\x25\xa6\x27\x8b\x3c\x18\x52\x5a\xd9\xcd\xd5\x55\xaf\xb1\xfb\x8f\x48\x86\xf3\x5f\xbb\xa0\xdb\x66\x9e\x66\x78\x60\x82\x60\x69\xdd\xdf\x90\xa0\x59\x4a\xde\x5a\xc3\x3c\x9c\x8d\xd9\xa4\x78\x9f\x66\x95\x35\xbc\xab\xc6\x16\x8b\x8b\xdc\x41\xa4\x42\x90\x27\x22\x60\xef\xd8\x50\x2a\x56\x3c\xaa\x38\x11\x04\xc7\x0b\x8f\x22\x59\x1c\x87\xe9\x19\xcc\x63\x92\xce\xb4\x02\x0f\xaa\x09\xe3\xa7\x7c\xee\x74\x96\xc2\x5b\x50\x16\x85\x8e\xf5\x8d\xe5\x45\x81\xe8\x2f\xd8\x29\xf9\x4a\xa5\xd2\x72\x45\x45\x08\xac\x6b\x04\x24\x1e\x28\x96\x36\x25\xf6\x86\x1b\xbc\xeb\xfc\x78\x73\xd7\xef\x5e\x0e\xde\xe5\x29\x17\x2e\xa7\x30\x83\xf9\x72\x55\x1b\x38\x1b\xb0\x2c\x4e\x39\x43\xb5\x86\xb5\x44\x38\x8e\xf3\xf8\x68\xab\x44\x1a\x99\xad\x91\x23\x7b\xa7\x62\x65\x84\x72\x43\x33\x0f\x90\x58\x76\xa8\x27\xab\xc1\x75\x56\x38\x39\x26\x3d\xae\x21\x8f\x69\x47\x97\x8d\x0f\xc8\xab\x8c\xae\x4d\x94\x43\x8c\x64\xe4\xd9\xe9\x4a\x70\x3b\x7f\xc0\xe6\x12\x5e\x8f\xdb\xb9\x05\xd9\x60\x51\x3f\xd2\xaf\x24\xbe\xab\x91\xaa\x76\x92\xa6\xd4\x2a\xc0\xb2\x72\x15\x52\x46\xd7\xd1\xf8\xb3\xa9\x3c\xe8\xef\xda\xb3\xa5\x9b\x1c\x67\x2f\xc7\xcc\x05\xc0\x5c\x85\x30\x8a\x88\x50\x98\x32\x34\x86\x83\xcd\xa2\x05\x02\x14\x16\x02\x3e\xec\x3f\xa3\x19\x65\x00\x07\xd1\x44\xda\x87\xe2\x3c\xd6\x10\x5a\x3f\xf7\xae\x1f\xfa\x05\x51\xf5\xa7\x9b\x87\x62\xa5\xfe\xce\xaf\x8d\xb2\x6a\xa9\x85\xa6\x60\x21\x6f\x8a\x79\x6a\xa9\x85\x0e\xce\x28\x53\x39\xd1\x64\xa1\xc8\xc3\xdd\xd5\x56\xf2\x5d\xb5\xb3\xac\x16\xf8\xdd\x97\xae\xaa\x61\x2e\xda\x7c\x1a\x93\x68\x15\x34\x6d\xfb\x7d\x64\xa2\xa0\x34\x1d\xac\x35\xd1\xc2\xd6\x61\x89\xe6\x58\x58\x3f\x54\x6c\x02\xa0\x8a\xe5\xde\x8c\xe6\xd5\x04\x0b\xf2\x89\xa8\x5f\xf4\xd5\xc7\xd9\x2e\x92\x4b\xac\x28\x0b\xfe\x51\x32\x7c\x32\x0d\xaf\x71\xd2\xec\x50\x1a\xf2\x97\x9c\xb0\x0c\x3d\x20\xdb\x83\x0f\xa6\x71\x66\xca\xfe\x77\x74\x73\x40\x11\x17\xa6\xa9\x55\x52\xce\xf4\x8e\x34\x18\xb9\x0e\x58\xd7\x6b\x8e\x8f\xcd\xc7\x2d\x61\x06\xbd\x64\x01\xdd\x56\x4e\x4a\xd4\xb9\xed\x55\xd0\xfa\xaa\xec\x42\x7a\x5b\x35\x8a\x92\xcc\x9b\xb5\x6b\xe4\x2b\x2f\xe7\xf4\x20\xa0\xae\xec\x4c\xb7\xc3\xb6\x32\x4e\xff\xdb\x62\x24\xc1\x21\x40\x30\x57\xa9\x0c\x85\x5c\xf2\x15\x68\xcb\xeb\xa5\x57\xe6\x64\x58\x13\xc9\xca\x1f\x90\xcd\xae\xf1\xd1\x9b\x96\x43\xb7\x4f\x7c\x34\x27\x6e\xaa\x20\xdb\xd8\x82\x9d\x21\x5c\xe5\xb3\x69\x03\x71\xf5\x8b\xd9\xd1\x19\x02\x0a\x60\xba\xb8\x2a\x9b\x2e\xe4\xda\x02\x12\xf8\xd3\xf5\x77\xdb\x7a\xa8\x58\xf9\xf8\x9c\xf9\xdb\x02\x8c\xe3\x39\xb6\x76\x07\x50\xa2\x5c\xf9\x8b\xaa\x6a\x89\x67\x03\xe6\x05\xac\x48\xa3\xf6\xe8\x33\xe2\x2a\xce\x40\x19\x63\x06\x68\xe5\x90\xfb\x94\x09\x3f\x85\x15\x28\xe3\x1e\xa8\x69\xb1\x66\xcc\x52\x3f\xf6\x74\xca\x29\x76\xd9\xa5\xce\x82\x62\xe3\x00\x7d\xfb\x12\xb4\xe7\x55\x89\xb0\x1d\x83\x39\x1a\x8c\x16\xd8\xab\x41\xe8\x21\x12\xc4\x9c\x48\xf6\x5e\x65\xf9\xbb\x34\x59\xb8\x90\xea\x92\x7b\x40\x4b\x75\x98\xda\x96\x9b\x0f\xf8\x0e\x20\xb7\xd6\x55\x1c\xbc\x63\xb5\xd2\x4c\xe5\x7c\xbc\xb0\x13\xfc\x58\x24\xe8\xb4\xce\xaa\xfe\x75\x4e\xa2\x4d\x70\x81\x6e\xb1\xc0\x33\xa2\x88\x68\x0a\x47\x2a\x56\x08\x07\x11\xc7\xad\xa0\xed\xd7\xac\xa2\x29\x9f\x52\xae\xb3\x93\x69\xb7\x57\xab\x70\x7e\xb2\x59\xac\x05\x69\xa6\xa7\xf1\x8b\xb5\xfc\xaf\x39\x0b\xdb\x4f\x3e\x0d\x1b\x6d\xe5\xc1\x3a\x6d\x3b\xa7\x97\xc1\xb7\xe9\x2f\x21\xc5\x14\xc2\x85\x0e\x04\xd8\x66\xf5\x28\xeb\x10\x6d\x56\xf1\xd2\x9d\xf0\x6e\x97\xe1\xe0\x32\x93\x4b\x87\xaa\x90\x3b\x01\xbb\x04\x54\x2a\x03\xee\x52\x8d\x4a\x03\x42\x4b\x55\x84\xa4\xe7\xf6\xb3\x98\x85\xb9\x41\xd7\x4a\x56\xe5\x8a\x61\x25\x72\xad\xe0\x71\xbb\x42\xec\x08\x12\xcd\xae\x25\x9a\x55\x5b\xb9\x10\x5d\xab\x77\x27\x11\x25\xf0\x20\x5b\xc9\xdb\xa2\x3e\x14\x27\x08\x29\x5d\xf6\x8a\xb4\xe5\x80\xe1\xea\xa7\x2c\xfb\x57\x91\x83\xbb\x4d\xed\x6f\xd5\xaa\x5c\xd5\x33\xcf\x05\x05\x1e\xa8\xc4\x97\x06\x6c\x5c\x0d\x8c\xd6\x84\x41\x1a\x2b\x7f\xef\xda\x38\xb0\x20\x67\x7c\xc1\x53\xf4\x4c\xe5\x14\x29\x3e\x60\x10\x27\x98\x79\x03\x14\x47\xe6\xc5\x13\x78\x0b\xb0\x2d\x64\x3a\x9a\x51\x85\xb0\x37\xc3\x82\x49\xf2\xc4\x9e\x67\xfd\x01\xcc\xb8\x12\xbe\xa0\x0a\x77\x69\xc5\xa1\xd9\xc0\xbe\x96\x37\xb2\x2d\x42\x81\x17\xd3\xbc\x5f\x8c\x02\x4f\xe3\xf1\x35\xcc\xca\x33\x17\x40\x0a\x50\xb5\xb5\xc1\x22\xc1\x02\x5c\x2f\x95\xaa\x74\xb7\x58\x43\xcf\x0a\x80\x82\x7c\x21\x5a\x21\x14\xe4\xaf\xef\x02\xa2\xa0\xae\xf6\x5c\x53\xca\xaa\xfb\xa4\xc6\xfe\xed\x52\xa1\x15\x77\x81\xf3\xbe\xa4\x74\x5b\x2b\x29\x1d\x1a\x54\x5d\x9e\x10\xb0\x79\x78\x79\x5d\xf4\x32\x9c\xf1\x88\xb3\x98\xae\x11\x2f\x0c\xf5\xc5\x46\xe9\xb8\xc3\x16\xab\x91\x8f\x66\x7e\xa0\xbe\xb5\x97\x78\x92\x48\x35\xe6\xe6\x4a\x95\x35\x6f\xdf\xdf\xe9\x5e\x4a\x68\x11\x8c\x88\x94\x6f\x27\xc6\x15\xe4\xfd\x44\x2a\x59\x54\xe4\xa2\x0e\x58\xb5\x94\xd4\xcc\xb7\xb7\x4d\x23\xd9\x29\xec\x9e\xc7\x23\xdc\x2c\xac\xd5\xed\x4b\x16\x88\x67\x14\x7a\x62\x41\x36\x4a\x62\x70\xee\x86\xac\x0b\xa0\xd2\xc2\xd1\x26\xb9\xe6\x15\x9c\xa3\x7a\xe8\x4b\x49\x1e\x2b\xcf\xae\x15\x0c\x76\xa8\x7e\x2e\xdd\x20\xad\x73\x62\x32\x39\xde\xde\x18\x36\xa8\x3b\xce\x6c\x0d\x25\x77\xf2\x26\xe5\x8d\x01\xce\x76\x67\x20\xbc\x65\x64\x0a\xdd\xf8\x09\xb8\xa0\xed\xd8\xb1\x09\xc7\xc9\xa0\xe1\x4b\x6b\x52\x98\xb1\x09\xa9\xdc\xcb\xac\xd7\xad\x49\xed\xf9\x44\x85\x8d\x49\xa6\xbe\x75\x03\x8a\x51\xdb\x50\xce\xd2\x6d\x91\x09\xa0\x29\x8b\x89\x60\x04\xab\xe9\xcb\x65\x82\x5c\x6c\x6b\x42\xf7\xc6\xb7\xdf\xac\x10\x3b\x52\x5c\x4c\x0e\xd9\x66\xb8\xc5\xe2\xfc\x2b\xc7\xa9\x5f\x6f\x63\xcd\xb2\x01\x12\x59\x79\xea\x25\xf5\xb6\xc2\xb4\xe9\xe1\x0f\xad\xb3\x4b\xb7\x4a\x16\xa9\x56\x39\xf7\x93\x36\x53\x61\x9b\x5a\x4a\x98\xd1\xa7\xdd\x2f\xea\xbd\x82\x24\x6f\x22\x3f\x65\xff\x29\x13\x4d\xe5\xc3\x53\x2f\x8b\x02\x6a\xb8\x2b\x4c\x99\xe5\x5e\x4d\x89\x13\x5a\xee\x9d\xe1\xaa\x5c\x89\x83\xcf\xc2\x79\xf3\x49\x38\x21\x25\x23\xa4\x64\x54\xac\x51\x48\xc9\x40\xe8\xd0\x52\x32\x56\xa9\xa0\x4d\x46\xda\xcc\x6f\x08\x65\x5e\x0b\xb5\x95\xcc\xfa\xae\xd0\x23\x37\x4f\x3b\x70\x76\x4e\x3f\x66\xcb\xfe\x62\x7f\xa8\x0c\xdb\x5a\xfa\xac\x3c\x5b\xdf\xe6\xca\x16\x65\xd7\x05\x16\x71\x62\x21\x08\x6d\x50\x75\xd1\x46\xd6\x64\xce\x1d\xb0\x9f\xf8\x33\x79\x22\xe2\x04\x61\x85\x66\x1c\x70\xad\xf2\x18\x1e\x38\x08\x05\x2c\x7d\x13\xab\x81\xd1\x35\x9e\x91\xd8\x94\xda\xf4\x42\x2f\xad\x51\xd9\xba\x83\xab\x90\x76\x01\x34\xd6\x2c\x83\x8b\xed\x18\x30\x13\x0e\x69\x42\xf0\x40\x56\xa0\x6e\x62\xb0\x61\xfe\x90\x39\xab\xff\x70\x86\xfa\xfa\x7e\xa2\xb2\x38\x5e\x0f\x78\xaf\x6e\x6c\x03\x36\x11\x3c\x9d\x67\x76\x3e\x3e\x32\x35\x97\x4d\x84\xd6\xb2\xb3\x1a\x06\xe3\x3c\xd5\x11\x8e\xb5\x2e\xde\xbc\x71\x5e\x25\x52\x76\x23\x98\x25\x7f\x03\xe9\x63\x98\x85\xff\xd9\x70\x7c\xe3\x63\xf6\xc0\x65\x9a\x2a\x00\xec\xc9\x01\x7e\x49\x24\x58\x85\x32\xcf\x40\x21\xd7\xbd\x88\xa7\x50\x39\xce\x26\xbb\x6d\xe6\x5b\x71\xfe\x87\x6a\xa8\x86\xbc\x73\x1b\x97\x66\x12\x69\xed\x3d\xb1\x37\x8b\x6e\xeb\x08\xdf\x3a\x7e\x71\x9b\x8a\x39\x07\x49\x2c\x59\x38\x68\x09\x0b\xf2\x37\xe7\xf3\xd4\xc4\xde\x51\x3f\x14\xab\x72\x67\x53\xa9\x3e\x63\x15\x4d\x35\xe7\xce\x51\xd9\x76\x14\x93\x98\x73\xe5\xfd\x5a\x79\x2b\x66\x70\xe1\xf7\x5e\xe3\xf6\x68\xda\x3d\x5e\x8c\x61\x16\xc8\x99\x49\x12\x33\xdd\x9f\x71\x0d\xda\x4a\xea\x9e\x5d\xd4\x7d\x62\x9f\xe8\x89\xae\xda\x45\xab\xc6\xdf\x6e\x6f\x15\x4b\xbd\xed\x3c\xda\x71\x0b\x98\x9b\x4b\x0b\x2a\x96\xbf\x68\x4b\x03\xd7\x84\x28\x08\xba\x59\xa6\x92\x2d\xcf\xf0\xa4\xc5\x91\xcc\xe2\x3a\xc3\x73\xad\x44\x28\xae\x6f\x49\x31\x31\x72\xac\x89\xe5\x45\x18\xa5\x82\xba\xb3\x5f\xca\x5b\xaf\xdf\x1d\x60\xa1\xfc\xe0\x97\xf2\x8a\xb0\x57\xe5\xd0\x04\x25\xe0\x48\xa5\x38\x0b\x9e\x84\x3d\xe1\xaa\xef\x9b\x1c\x7d\xe7\xfc\x17\x4e\xbc\xab\x58\xd3\x95\x1b\x7b\x8b\x55\xc6\x55\x18\x8c\xad\x4e\x1a\x65\x13\x0f\xc0\xb1\xda\x4a\xdc\xa6\xe8\x46\xe5\x97\xed\x0a\x87\x54\x7e\xea\x64\x9f\x4d\xbe\x6d\x00\x98\x6a\x15\xb2\x7e\x88\x15\x13\xbc\x4c\x00\x1b\x2a\x6c\x65\x37\x1f\xd8\xd3\x76\x04\xb0\xc7\x14\x42\x19\xb0\x93\xe5\xbe\xf3\xcb\x26\xe8\xa1\x7d\xff\x9f\xf9\x43\xd0\xdf\x6d\x71\x96\x8a\x17\x07\x8c\x0b\xfb\xea\x49\xf6\x9e\x7e\x2d\xc7\x27\xd6\x52\xe2\xf2\x97\x39\xfa\xa8\x28\xe2\x14\x02\x5a\x8b\xc5\x99\x33\xf0\xd4\x59\x59\x0b\x3d\xf8\xc7\x74\x44\x04\x23\x7a\x4e\x0e\xd7\x21\xe3\xc1\x33\xcc\xf0\x04\xc0\xb0\x4f\x20\xe8\x10\xa4\xec\x5c\x83\x32\x27\xd1\xd4\x07\x05\x26\xab\x79\xbc\x4d\x65\xce\xeb\x64\x43\x9f\x46\x02\xb7\x58\xbc\x79\xe4\x4a\xf5\xa1\xbd\xb3\xfd\x6f\xa6\x68\xf4\x3b\xf7\x3f\x0f\xef\xba\xf7\x37\x0f\x77\x17\x05\x6d\xe3\xe2\xea\xe1\xbe\xdf\xbd\xab\x7c\x96\xa7\x01\xff\xfd\xa1\xfb\x50\xf3\xc8\x35\x70\xd5\xf9\xb1\x5b\x28\x3a\xff\xf7\x87\xce\x55\xaf\xff\xeb\xf0\xe6\xe3\xf0\xbe\x7b\xf7\x4b\xef\xa2\x3b\xbc\xbf\xed\x5e\xf4\x3e\xf6\x2e\x3a\xfa\x4b\xff\xdd\xdb\xab\x87\x4f\xbd\xeb\xa1\x8b\xe8\xf6\x1f\x7d\xb9\xb9\xfb\xf9\xe3\xd5\xcd\x97\xa1\xd7\xe5\xcd\xf5\xc7\xde\xa7\xaa\x59\x74\xee\xef\x7b\x9f\xae\x3f\x77\xaf\x9b\x8b\xdb\x57\x53\xa3\xb6\x6e\xb6\x77\xff\x7a\xb6\x2e\x4f\xba\x1b\x2d\xec\x99\xa0\xff\x04\x97\xcb\xad\xd9\xa2\xa7\x27\xee\x2f\x53\x8a\xfe\x54\x73\x6e\xe7\xce\xcb\x99\xde\x80\x65\x3e\xe1\x4c\x16\x50\x78\x22\x5d\x56\x77\x61\xb4\xe7\xa8\x03\x87\x0c\xf4\x9c\x42\xa7\x90\x34\x92\x8d\xd4\x45\x11\xc0\x3e\x4c\xe8\x8c\x42\x40\x01\x3a\x45\xe5\x05\x2f\x36\x68\xe7\x04\x43\xb0\xee\xc6\xb8\xe9\x34\xc8\x72\xc2\x38\xec\x94\x73\xe4\x2e\x16\x62\xac\x20\x06\xd6\x77\xc1\xf0\x8c\x46\xe5\xec\x16\x40\xb6\x45\x39\x8a\x4b\xb9\xc5\xc2\x06\x2b\xb6\x3c\x25\xe8\xe7\xbf\xe5\x83\x02\xc7\x8b\x35\x18\xa4\x4b\x15\x28\xed\x03\x91\x1a\xaa\xae\xda\x9e\x85\x9e\xdc\x31\xb7\x16\x71\x38\xb7\xb6\xd2\x3d\x78\xc9\x52\xe6\x21\xb9\x15\x5c\x66\xfa\x78\x9b\x19\x95\xf6\xf8\x39\xba\x07\x14\x19\x99\x5b\x1c\xf4\x2a\xce\x93\x74\x42\x19\xa2\xb3\x79\x02\x3c\xc6\x98\x21\x46\x64\x8a\x9f\x28\x77\x05\x57\x4c\x5d\x1a\xa0\xa3\x95\x08\xd1\x29\xaa\x3d\x28\xe7\xa8\x13\xc7\xb2\xc8\xe0\x0a\x3b\xc7\x71\xd1\xd3\xe2\xb0\x7d\xf0\x35\xcd\x58\x2d\xdb\x2c\xed\xa3\xfc\xc8\x01\xc5\x76\x8f\x93\xb3\xcc\x0e\x8b\x22\xc3\x16\x52\x8b\xa6\xe0\xd0\x6d\xe5\xe1\x46\x32\x4c\x1f\xcb\x47\xc7\x9a\x57\xc9\x31\x0e\xb1\x68\xbb\x1e\x2d\x74\x51\xdb\x4e\x33\xca\x0e\xe1\xa0\x6d\xd6\x67\x2d\xe0\xf6\x8a\x2e\xdd\x8c\x93\x52\xa9\xbb\xd6\xfd\x15\x4a\xe5\x55\x76\xb6\x53\x27\x55\xb5\x10\x09\x47\x72\x98\xed\xff\x35\xe6\x71\x0b\x9f\xde\x64\x5f\x36\x4a\x9a\x43\x8f\x6e\xeb\xba\xae\x96\xf2\x9f\xad\xfb\xaa\x71\x1f\xee\x08\x39\xab\xbd\x14\x09\xa5\x42\x68\x04\x5e\x4a\x4c\x99\x2d\x20\x45\x32\x37\x9a\x2b\xd8\xae\xcf\x71\x56\x52\x11\x8f\xf8\x53\x41\x27\x9e\x11\x29\x71\x0d\x16\x8c\x67\xc9\xdb\x86\x31\x64\x27\xd4\x7e\xd8\x72\x3f\xb9\x33\xd9\xd7\x5f\x35\xc9\xe8\x77\xbe\x42\xef\x26\xaa\x65\xd8\xd8\x05\x31\xa3\x1b\x93\xca\xa8\xf9\xcb\x49\x1e\x03\xc4\x85\x17\x1a\x55\xe7\xb5\x6a\x69\x0d\x2c\x13\xac\xb2\x2e\x98\xef\x79\x5c\x3f\x74\xc8\x6b\x7d\x63\xb0\x71\xeb\x0e\xc2\x45\xfa\xac\xb1\xeb\x0a\x6e\x5a\xbf\x62\x7b\xc4\x67\x33\x23\x17\x14\x4c\xc0\x27\x08\x9b\x0c\xd2\x5c\x9a\x92\x69\x34\x35\xce\x31\x7d\x65\x9c\x0c\xd8\xb3\xb7\x20\x85\x18\xeb\x8e\xdf\x12\x00\xb5\x7e\xd5\xc7\x8d\x3e\x15\x22\xd7\x41\x64\xa4\x10\x46\xed\x6d\x04\xe3\xc7\xcc\x0b\x9e\xad\xd8\xe0\xde\x7a\x6d\xb1\xd5\x37\xa8\xad\x59\xa2\x6f\x5d\x85\xcd\x6c\x6e\x5e\x61\xcb\x2d\x14\xfc\xb6\x43\xf0\x6a\x6b\x56\x8d\x60\x07\xa5\x35\x5f\x14\x39\x3d\xcb\x84\x35\x89\xd3\xb3\x91\x85\xff\xd0\xd3\x75\xd4\xfe\xa3\x9b\xd1\x1f\x8d\x22\x9c\xd6\xe0\xc5\x78\xad\x65\xe0\xe9\xe8\x54\xcb\xac\x0e\xc7\xc0\xc6\x8f\x48\x74\x6a\x00\x19\xdf\x43\x10\x6b\xe7\xb6\xf7\xfe\x04\xbd\xf7\x13\xf9\xde\x1f\x8d\xe9\x22\x3f\xfe\x96\x6a\xb6\xb8\x27\xe8\x72\x85\x5c\x92\xe2\xa1\x87\x9d\x52\xe2\x03\x76\xc7\x58\x36\x80\xea\xb8\x80\xfe\xb2\xf0\x0d\x78\xf4\xa1\x5c\xa4\x71\x7a\x67\x91\xec\xd6\x6f\x66\x24\x6c\x2a\x2b\x56\x2e\x1e\xb0\xd1\xa2\xec\x19\x3b\xc9\x5c\x63\xad\x79\xc4\xd6\x25\x10\x75\x7b\xcb\x79\xe7\x3b\x8e\xb0\x6e\xbe\x8d\x56\x64\xb2\x77\xb2\x3a\x3d\x39\x0f\xad\x0b\xed\x08\xa9\x09\x55\xb3\x2a\x98\xf9\x1c\x31\x2b\x17\x65\x95\xf4\x75\x6c\xdb\xad\x45\x3c\x7f\xa7\x8a\x22\x36\x95\xa3\x46\xb4\x0f\xbb\x6c\xbf\xbb\x6c\x17\xa9\x2c\xc5\xc1\xad\x7f\x7d\x5f\x18\x29\xd2\x6b\xc6\x99\x7b\xb5\x2a\x93\x31\xf8\x42\x9d\xcc\xd5\xe5\xad\xd7\x74\x94\x7b\x34\x59\xed\x29\xbf\x37\xd1\x16\xc6\x57\xbd\x3c\xd6\xf2\x50\x3b\xca\x56\x97\xe2\xd4\xa4\xad\x2a\x3a\x23\x27\xa6\x9c\x59\x1e\x21\x62\xcf\x2b\x6c\x37\x13\xd8\x35\x25\x54\xb8\x4e\x2c\x78\xe4\x5a\x38\x07\x6b\xea\x02\x75\x7b\x64\x8b\xf0\x9c\xeb\xce\xe7\xee\xe5\xb0\x7b\xdd\xef\xf5\x7f\xad\x00\x06\x2d\x3e\x76\xd8\xa0\xde\x0b\xf7\xbf\xde\xf7\xbb\x9f\x87\x9f\xba\xd7\xdd\xbb\x4e\x7f\x05\x6e\x68\x53\x67\x75\x98\x94\xa9\xac\x52\x1e\xd7\xc1\xa5\x74\x46\xe6\x8a\xde\x97\xd1\x43\xbd\x4e\x28\xa9\x41\x10\x35\x98\x0e\x2c\x26\x02\xc5\xe4\x89\x24\x7c\x9e\x1b\x75\x2b\x09\xe6\x41\x8b\x56\xb4\xdf\x04\x2f\x0a\x6d\x96\x69\x7c\x8e\x4c\x6d\x44\xaf\x3c\x74\xd6\x20\x88\x7c\x58\x10\xf6\x5e\x21\xf2\x75\x9e\xd0\x88\x2a\x2f\xe7\x93\x0b\xeb\xdc\x31\x3e\x57\x08\xe9\x5d\xb1\xb9\x76\x16\xc2\xb3\x73\x8b\x83\x1f\x7e\xb0\x6c\x6b\xc8\x4e\x54\x06\x75\xb7\xb2\x32\xd4\x0e\xcc\x0a\x35\x9e\xf6\x25\x24\xbe\x0d\x46\xb7\x0f\xe3\xc4\x72\x62\x93\xcd\xdb\xac\x41\xe9\xab\x1e\xe4\xea\xdb\xb0\x29\xb8\xa8\x70\xae\x9b\xa3\x8b\xda\xed\xd4\x57\x8e\x11\x2a\x14\xa2\xdd\x01\xa4\x8a\x0d\xf8\x5f\x33\xca\x63\xa9\x10\x10\x33\x81\xba\x18\x09\x32\xe3\x4a\x2b\x60\x26\x8c\xe2\x44\x0b\x55\x14\x27\xf4\x9f\x00\x3e\x26\xc8\x99\x17\x76\xe2\x20\xdb\x72\xe7\x85\x05\x06\x39\x1b\xb0\xcb\xee\xed\x5d\xf7\x42\x33\xa4\x33\xf4\x20\x01\x57\xac\x30\xf5\x4b\xbb\xbd\x8d\x38\xe6\x87\x7f\x50\x26\x15\xc1\x75\x11\x74\x44\x08\x2e\xda\xf3\x87\xac\xbf\x2e\x7c\x57\xbd\xbd\xe1\x59\xc1\x32\xe6\xcc\x0f\xd7\xb5\x55\xc4\xbd\x44\x8b\x9d\x27\xb2\xdd\xe1\xe7\x02\x45\x7c\x5c\x15\x90\x44\x8a\x54\xdf\x23\xb5\x01\x99\xb5\xfd\xfc\x0a\x7d\xde\xc2\xb7\x4d\xf3\xec\x43\x5c\xa2\x54\x39\xcc\xab\x41\x82\xcd\xca\x19\x95\xe6\x59\x2b\x2a\x8a\xd7\xc0\x60\x29\x6d\xfd\x11\x99\x60\x86\x44\xca\x58\x09\xf7\xd7\xb7\xf3\x2d\x47\x1a\xad\x7b\x54\x35\xcd\xf0\x8c\xa7\xcc\xd4\xe3\xd5\xa3\xaa\x18\x8c\x9c\x13\xa6\x56\x0c\xe6\xb5\x10\x76\x4a\x43\x3d\x5c\x90\x9d\x8a\x81\xd6\xe1\xec\x54\x79\xb3\xa0\x54\xf9\x7a\xd7\xb2\x8b\x64\x2c\xb8\xb4\xf4\xa1\xca\xee\xe7\x6a\x2d\x1b\xcb\xc7\xad\xbb\xeb\x63\xf9\xb8\xba\xab\x98\x44\x8f\xeb\x5e\x36\xe5\x74\xd6\xc4\x56\x7a\x5f\x32\xf6\x2d\xf4\x53\x5b\x73\x07\x0a\xfc\x47\x8f\xe8\xa7\xfe\xe7\x2b\x34\xa6\x5a\xee\xd5\xd7\xca\x35\xd6\x32\xf6\x83\x48\x9c\x55\xda\x5a\x76\x53\x91\x64\x77\x2f\x2c\xbc\x13\xa5\x3c\x29\x41\xdf\x68\x78\x42\x9c\xa9\x59\x58\x18\xc5\x52\xcd\x1d\x81\x59\xcc\x67\x66\x1e\x1f\x64\x3a\x1e\xd3\xaf\x67\x0a\x8b\xef\x6b\xe8\x61\x62\x3a\x86\xff\xe0\xa3\xa1\x1e\xd1\x96\x17\x71\x55\x73\xc8\x16\x20\xcf\xc8\x66\x67\x76\x69\xde\xfd\x3f\x7c\x04\x10\x01\x80\x72\xe0\x7c\x83\x36\x4e\xc2\xbe\xe2\x76\x52\x5e\x91\xbb\x80\x5e\x13\x71\x21\x88\x45\x16\x30\x45\x63\xe7\x58\x28\x0a\xd6\x5a\x87\x7e\x53\x28\x7b\x90\x2f\x91\x5f\x22\x7f\x8a\x73\x88\xf1\x11\x21\xe0\x5e\x9a\xd3\x64\x3d\xa5\xf7\xa2\xe0\x19\x2d\x9d\x40\x1b\xae\x6b\x01\x51\xc1\x20\xb3\x52\xc4\xea\x3e\x11\xa6\x76\xa2\x9f\x40\x13\x15\x58\x07\xed\x7c\x1c\xa6\x76\x6b\xef\x32\xbf\xdc\x5c\x1c\xb4\x1f\x53\xa5\x04\x86\x7b\xde\x66\x97\x59\x87\x7e\x5d\x98\xc1\x53\x6b\xcf\x35\xbc\xba\x4c\x97\x15\xf9\x04\x96\xda\x79\x69\xfc\x3c\x16\xd8\xd5\x6c\xd8\x10\xa1\x49\x12\x63\xc5\xf0\x90\x41\xac\x72\x5a\x5e\x73\xd3\xa7\xde\x5b\xa5\x2e\x57\x2e\xf9\x06\x70\x44\x85\x66\x3e\x11\xc8\x83\xdd\x45\xf4\xfe\x3a\x80\x07\x30\x90\x07\x91\x40\xdc\x79\xa3\x15\xcb\xd4\x8f\xd7\x9c\x2f\x93\xec\x70\x0b\x19\xdd\x0c\x46\x0b\x8d\x64\x2e\x48\xa4\xaf\xb2\x73\x74\x9b\x10\x2d\x79\xa5\x5a\xfa\x4a\x93\xc4\x41\xb7\x35\x4b\x87\x6b\xc1\x0d\xee\x7d\x5e\x9e\xee\xd1\x30\x31\x07\x5d\xd8\x3c\x33\x8f\x06\xbb\x87\xa9\xf0\xe8\x0b\x26\x64\x30\x24\x16\xb5\x48\xe0\xf0\x0b\x13\xb5\x0b\xa6\x24\x5c\xb8\xc8\xe8\x3f\x35\xfb\x15\x44\x4e\x79\x6d\x66\xa8\x3f\xdb\xfd\xcc\xc1\x91\x72\x8f\x93\x70\xf7\x61\x5d\x30\x7a\x0b\xb9\xa6\x74\x07\x16\x44\x9c\x36\xbe\xd8\x3c\xf6\xc4\x02\xe9\xda\xbb\xd5\x0e\x0d\x6e\xc9\xdc\xd4\xe6\x83\xda\xe5\xae\x8b\x5c\x99\x59\x18\xdf\x6b\xf6\x79\x6e\x40\xce\xf3\x28\xa8\x92\x79\x39\x41\xa4\xef\xda\xba\x25\xd6\xf3\x1c\xa6\x62\x2d\x1c\x8f\x1c\x8e\x7e\x1d\xce\x6d\x33\x78\xf2\x61\x69\x22\x54\xb3\x4b\x5b\x25\x04\xc4\x68\x1b\xe8\x24\x0b\x10\x7f\x76\xdb\x18\x32\x56\xaa\x78\xf5\x4c\x79\x5b\xb7\x1a\x48\xc9\xb9\x28\xb3\x2f\xef\x5a\x61\x07\x16\x26\x10\x40\xe3\xd6\x07\x8d\xb3\x25\x63\xb2\xbd\x07\x10\x8f\x4a\x00\x5a\x42\xee\x40\x2b\x0b\x0e\xd6\xe8\xbd\x2a\x5d\xac\xb0\x3a\xad\x72\xc3\x0a\x5f\x68\x5e\x72\xb9\xa5\x07\x4e\x4f\x66\x31\x84\x6c\xdb\x6d\x62\x80\x0a\xf3\x37\xde\x03\x68\x93\xc4\xc8\x40\x3e\x18\x48\x6b\x4b\xbb\xcc\x73\x32\xc7\x82\x30\x35\x60\x77\x7a\x14\xe6\x8b\x3c\x12\xc3\x45\x01\xb9\x32\x03\x50\x8c\x78\x8c\xb0\xfd\x0a\x88\x5e\x17\x86\x27\x87\xe6\x25\x50\x4d\xf7\x88\x4c\xf0\xa3\x79\xc7\x00\x45\x58\xa0\x24\x3d\x55\x3a\xce\xd5\x78\x2d\x40\x46\x53\x0a\x38\x0d\x31\x91\xf6\x42\xa2\xca\x02\x71\x64\xe2\x77\x4a\x1c\xb0\x36\x7c\x96\xf1\xaf\x2a\x86\xed\x0c\x05\xcc\x19\xe8\xe4\x80\x79\x7d\x34\xe0\xb0\x1a\x65\x7d\x43\x55\x02\xd6\x99\xc6\x99\xe3\x0b\xfe\x69\x56\x88\x0b\x3a\xa1\xcc\xab\x86\x65\xa7\x37\xc3\x73\x30\xef\x9a\x33\xc8\xc7\xd9\x9d\xd6\xb7\x39\x0e\x67\x30\xe2\xff\xfb\x5f\xff\x7d\x46\xeb\xbc\x1f\x72\x68\x29\x70\x08\x2b\xb9\xde\xb2\xf8\x2b\xef\x41\xaf\xd4\x40\x7a\x78\x3a\xad\x2c\xe4\x6d\xe4\xbf\xda\xcb\x4d\x6f\x1a\xae\xa6\xc6\xdd\x5b\xdc\xee\xe0\x1b\x11\x69\xc3\xd9\x30\x57\xcc\xeb\xd2\x92\x4a\xc8\x4d\xd0\x23\x31\x27\x39\x33\x10\xf8\x95\xe6\x97\xcc\x34\x03\x96\x7f\x22\x0d\x88\x8c\xc1\xed\x35\x3f\xe4\xd4\x69\x49\x98\x26\xde\x9f\x47\x4a\xe4\xee\x70\x2f\x16\xda\xd5\x45\x31\x31\xac\xba\xfd\xd2\x4d\x5b\xe2\xdc\x1e\x80\xe5\x36\x31\xa3\x53\x2c\xf7\x17\x9a\x53\x59\xcf\xcb\x58\xd3\x7d\xe1\x61\x55\x90\x8e\x19\xa4\x49\x91\xd5\x0b\x92\x4a\x22\x0c\xa7\xcb\x30\xc4\xec\x4e\xf0\xe1\x39\x21\x42\x74\x85\xaf\x91\xcc\x30\x5d\x2b\x9b\x41\xbf\x5f\x0d\x1e\x5a\x70\x36\xe0\x09\x11\xc3\x38\x55\x4b\xc7\xa2\x29\xc3\x40\x7f\x74\x99\xaa\xc5\xea\xf6\x65\x82\x97\xeb\x19\x35\x01\xb6\xea\xf7\x6b\x9a\x5d\x2d\x31\x7b\x21\x3e\x45\xa9\xb9\x06\x0e\x95\x94\xe0\x50\x6d\xc4\x6b\xc1\x44\x02\x37\x30\x53\x80\x43\x98\x6b\x52\xf6\x8a\x36\xa0\xed\x30\x72\x34\x4a\x73\x93\x52\x56\x06\x23\x3e\x1b\xb0\x8f\xa6\x8e\x0c\x68\x79\x66\x00\x11\xa4\x1b\x91\xaf\x73\x2e\x49\x21\xff\xad\xa2\xb4\x85\x4d\x7c\xb5\xc3\xa8\x16\xd6\xf3\x8f\xb6\x97\xd5\x5f\x1d\xd8\x76\x79\xc1\x97\xa7\x5c\xbd\x03\xb7\x12\x07\x23\x3a\xa7\x7a\xef\x0c\x2b\x4f\xda\xfe\xca\x2b\xe7\x31\x5d\x00\x1e\xa6\x92\xc5\x09\xca\xa6\x57\xda\x10\x09\x79\x22\x60\x4e\x87\x31\xfa\x05\x4c\x8a\x76\xbd\x1a\x76\xb2\xea\x00\xe5\xc9\xa7\xc0\x16\x50\x5c\x1e\x41\x31\x45\xaf\x6a\x2f\x16\x93\x8f\xb6\xce\x93\xab\x0a\x4c\x59\x43\x3c\xef\xf8\x85\x5c\x16\x44\x21\xf2\x55\x11\x5b\xea\xb5\xef\x32\x19\x97\x93\x1f\x50\x75\x32\x56\xbd\xec\xb8\xf7\xa2\xdb\x1d\x97\xf8\xee\x52\x35\x63\x77\xe5\xdb\xd4\xc5\x29\x66\xb1\xcd\xc7\xb5\x4a\x86\x16\xb6\x60\x76\xc6\xe8\x96\x65\x2a\xd8\xac\x52\x0f\x01\xdf\xb4\x69\xa0\xfa\xe1\x22\x73\x0a\xa3\x56\x59\x20\xbc\x82\x0b\x2d\xb9\xa7\x4c\xd1\x44\x6f\x0e\x3b\x06\x89\xc6\x10\x19\x67\xd1\x1d\x21\xb2\xbd\x0e\x40\x90\x4a\x49\xd9\x64\x68\x29\xe9\x52\x4b\xdb\x5d\x0c\xc5\x3d\xf5\xd9\x34\x65\x7e\xfc\xd1\x35\xd4\x6c\x54\x37\xdb\x1a\xc0\xdd\x5c\x52\x2b\x68\x1c\x8c\xbb\xc9\x58\x54\x3e\x97\x0b\x3b\xa4\xb1\x21\x05\x35\x15\xc5\x61\xa2\xeb\xd8\xdd\x41\xa6\x5b\x06\xbf\xc8\xaf\x10\x69\x13\x55\x4d\xfa\x19\x44\xea\xab\x9a\x4c\x5c\x59\x9b\x81\xdb\x63\x99\x88\x66\xeb\x99\x65\x38\x03\xa5\x64\x5e\xec\xba\xb3\xe9\x08\x38\x49\x46\x38\x7a\xcc\xb4\xb0\xcc\x16\xc1\x85\xab\x07\xa1\xe5\x4a\x28\x78\x67\x36\x97\x1e\x68\x04\xd2\x8d\xef\x2d\x34\xf0\x47\x76\xd8\x79\xe7\x86\x6a\x16\x57\xce\xe0\x5d\x99\xd1\x9b\xdc\x86\x98\xcc\x13\xbe\x98\xd5\xdc\x67\xe5\x04\xc6\x6d\x22\x75\xea\xf2\x27\x77\x7a\x95\x95\x98\xde\xda\x97\xd9\x52\x36\xd4\x0e\xc0\xb8\xd6\xe0\x92\x9f\x12\x3e\x02\x93\xaa\x35\x3f\xb8\x0c\x1f\x2f\xd5\xa3\x7c\x9e\xd7\xcd\x3b\x2a\x9f\x48\x2a\xe7\x89\x56\x66\xea\x7b\x30\x39\x27\xfb\x5d\x37\x83\x90\xb0\xda\x3a\xd8\x3e\x5a\xbb\xf2\xf3\x7d\xc0\x3e\x5f\x39\x49\xc0\xbc\x6b\xf8\x57\xc9\xca\x66\x52\x0d\xcf\x8c\x93\x5a\xf1\x01\x53\x78\xe2\x16\xd7\x0a\x97\xfc\x99\x11\x21\xa7\x74\x5e\x28\x84\xb9\x75\x78\xb8\xdd\xd1\xf6\xff\x4c\x30\x74\x65\x9b\x07\x98\xba\xd5\xe7\xf3\x53\x83\xce\xa2\x77\xa7\x9c\xe3\x28\xb7\xc9\x46\x09\x96\x92\x8e\x17\x1e\xa8\x4a\x16\xe7\x0b\xa9\x6b\x45\x23\x86\x57\xf9\xae\x8a\xcd\x19\xea\xec\x06\x55\x60\xfb\x8c\xca\x87\xe2\xe1\xa7\xb1\x0f\xba\xa7\x6f\xb3\x65\xe8\x1d\x27\x27\x58\xaa\xd7\x82\x07\x1b\xf8\x84\xcd\x50\x00\xda\xe2\x35\xed\x79\x27\x55\xa4\x61\x2e\x6d\xa4\x1c\x2d\x2c\x93\xa3\x2d\xcd\xac\x0e\x97\x21\xad\xf8\xf0\x45\xaa\x90\xc3\x0a\x3b\x4f\xeb\x8c\xce\x24\xae\xcf\x65\x86\xd2\x02\x60\x16\xf9\xc7\x27\x48\x6e\x05\xca\xd6\x66\x53\x5e\x92\x84\xec\x24\xd8\x7c\x83\x1d\x5a\x8e\xe4\xf0\xf6\x66\xe3\xbe\xcc\xcb\x52\xac\xb6\xab\x6c\x10\x03\x5f\x83\x91\x54\x3d\xf4\x2f\x66\xa0\x36\x0c\xbe\x6a\x15\xc1\x26\x0a\x54\x5e\x3d\xda\x43\xda\xe5\x5e\x68\x89\x19\xbe\xdd\xef\xf9\x1c\x0b\x9b\x3a\x9f\x71\x26\x27\x1e\xe2\x3e\x7f\xe5\x50\xf5\xa5\x71\x7d\x22\x6d\xc2\x6a\x56\x9e\xbe\x8d\x78\xef\xf2\x0d\xd5\x6e\x5f\x58\xc7\xb5\xe2\x68\x42\x00\x89\x87\xb2\x98\x3e\xd1\x38\xc5\xc9\x51\xed\x89\x9d\x25\xda\xec\x88\xfa\xd5\x1c\xa6\x95\xa5\x27\x8f\x07\x25\x4a\xba\xfb\x68\x09\xf3\xd3\x2e\xce\x01\x2e\xc1\x61\x1c\x4b\xa3\x30\xbc\x79\x89\x6d\x6b\x68\x0c\x3b\x32\x0b\x10\x11\x44\xc9\xc2\x25\x9b\x8f\x7d\xf7\xd2\xa4\xa1\x71\x6c\xbf\xc8\xe0\x20\x0a\x30\x6c\xb8\x80\x66\x69\xd6\xe8\xf5\xb9\x6e\xf9\x68\xbd\x75\xb9\x73\xfd\x33\x56\x1e\x55\x7e\xba\x82\x30\x7c\x08\xe7\xb4\xbd\x3c\xec\x00\x68\x0f\x50\xf8\xa9\x3b\x86\x87\x79\xff\x1e\x80\x70\xbc\x24\x12\xec\x4e\x44\x3e\xa2\x6d\x72\x10\x92\xf2\xd2\x52\xbc\x94\xbc\x7c\xea\xb0\xbd\x72\xa4\xac\xc3\x5d\xa2\xc3\x38\xc9\x77\xd6\xfd\xb8\xbf\x0b\x7e\xf5\x7e\xd9\xc9\xfe\x00\x98\x5b\x0c\xf9\xf8\xa9\x2d\xf7\x03\x87\xd7\x8b\xe1\x5c\xf2\x79\xad\x88\x8e\xb5\xc3\x6b\x15\x17\xbb\x44\xce\x7d\x2c\xaf\x4d\xbe\x6c\xbd\xb8\xfb\xdc\x6a\xeb\x8e\x65\x17\x3a\xda\x9e\xbd\x87\x76\x37\x7a\x1f\x84\x20\xf5\x76\xb7\x68\x05\xa4\x93\x5b\xb2\x5d\x1e\xb2\xaa\x1a\x8d\xdb\xc3\x47\xb8\xdc\xd2\xe1\x5c\x90\x31\xfd\xba\x91\x2a\x70\x0b\x9f\x5a\xf5\x5a\x93\xb9\x54\xf5\x11\xdc\x82\x50\x25\xd2\x0b\xa4\xb5\x94\xb6\x95\xe1\x06\x2c\xcf\xc8\xb5\xe9\xb8\x5a\x18\xe6\xa2\xf0\xd3\xa6\xd0\xa7\xbb\xaf\x50\x69\xd6\x75\xaa\xd4\x5c\x9e\x7f\xf8\x30\xa1\x6a\x9a\x8e\xce\x22\x3e\x33\xf9\x1f\x5c\x4c\xcc\x1f\x1f\xa8\x94\x29\x91\x1f\xfe\xfc\xa7\x3f\xe5\x4b\x3c\xc2\xd1\xe3\xc4\xc0\x39\x2d\xfb\x3b\x8b\x4b\x4e\xb0\xdc\x2e\xa2\xcc\xa5\x4e\xee\x39\x85\xde\xeb\xc6\x25\x2d\xeb\x6f\xa4\xc2\xb3\xb9\x1f\x82\x6c\x6a\x3c\x4a\x85\xf3\xca\x32\x90\x0f\xab\xa7\x89\xa6\x78\x3e\x27\xac\xde\xec\x62\x12\x9c\xb7\x60\x3d\x2e\x45\xda\x8e\x90\x7c\x9d\x27\x98\x15\x61\x3f\xa0\x4c\x9a\x20\x11\x61\xca\x42\x52\xe4\xb5\xe9\x61\x37\x1a\xe8\x29\xc3\xff\xd7\x4b\x81\x85\x39\x52\x99\xd7\x3f\x74\xc3\xb1\xb5\x88\x5d\x85\x5a\xec\x91\xae\x5c\xff\x39\xa7\x1d\x71\x54\x6b\x4a\x8e\xbd\xb7\xb5\xde\xb6\xd9\x41\x91\xe0\x6c\x48\xbe\x6a\x26\x27\x37\x05\x8a\x7b\x90\x44\xa2\xce\x97\x7b\x24\x17\x4c\xe1\xaf\xe7\xe8\x33\x65\x20\xc0\xfe\xc4\x53\x21\xd1\x25\x5e\x9c\xf2\xf1\xe9\x8c\x33\x35\x45\x9f\xe1\x7f\xed\x4f\xcf\x84\x3c\xa2\x5f\x09\x16\x96\x3f\xd8\xfa\x91\xae\x84\x1d\x6c\x21\x91\x32\x89\xc8\x93\x3e\xa1\x7f\xfa\x5f\x68\x66\x5a\x3e\x47\x3f\x7c\xf8\xd3\xff\x42\x7f\x80\xff\xfe\x3f\xe8\x0f\x35\x96\x86\xf5\xa0\xe6\xa0\xcc\xf8\x5d\x6d\x18\x01\x50\x4a\x2e\x93\x7c\x55\xb3\x17\x82\xe7\x2b\x55\xd9\xf2\x23\x8d\x1e\xf9\x78\x3c\xd4\x1b\xc3\x24\x90\x0e\xf1\x56\x66\x07\x1f\x35\x98\xda\x42\xf1\xa6\xec\x64\x5e\xf0\xc9\x76\x6a\x90\x46\x1c\xbb\x96\x69\x6e\x9e\x80\xe0\xb5\x42\xe9\x71\x2a\xe1\x2b\x12\x6b\xae\xba\xce\xe9\x70\xd6\x45\x07\x3a\xe0\x2c\x48\x3e\x32\x8f\x13\x88\x0b\x01\xa7\x7e\xf4\xb4\x09\x30\xb3\x84\xac\x3c\x0e\x4b\x61\xdd\x6f\x26\x56\x17\xa6\xf6\x5a\x71\xba\x72\xa9\xf3\xd5\x21\xba\xf7\x5c\x6c\xa5\x6f\x3d\x92\xda\x14\x9a\x15\xc5\xcd\x5c\xc1\x6d\xec\x1b\x35\x14\x47\x92\x8b\x0c\xbd\xdb\xd8\x45\x6c\x09\xd4\xd5\x56\x54\x2a\x4c\x50\x63\xbb\x43\xaf\xa7\x7e\x99\x7d\xb2\x6a\x98\x10\xe1\xe8\xde\xce\x8b\x3b\xc2\x68\xb5\x88\xa4\x59\x62\xc5\x88\x2b\x40\x36\x57\x2d\xe8\x7d\x86\xab\x02\x8d\x43\xb8\x2d\xe4\x0d\x31\x27\xd9\x5a\xe0\x8a\xea\xf5\x4c\x45\x44\x2e\xf8\x76\xe1\xd6\x09\x65\x4b\x79\x1a\xb5\xc1\x6d\xf5\x32\xf9\x95\xad\x10\xe7\x70\xa8\x79\x9c\x2b\x0b\xc6\x2d\x61\x6b\xaf\x78\x00\xb8\xc5\xd9\x00\x90\xe2\x2e\x30\x56\x97\x2a\x82\x6c\xc1\xb5\x8d\xe1\x3a\x67\x78\xae\xa0\x4c\xa9\x8e\x8c\xc0\x9a\x17\x36\xc4\x4c\x42\x38\xd9\xd6\xe3\xf0\x6a\x23\xe5\x31\x6a\x85\x2a\xc5\x30\x12\xc8\xb7\xdc\x10\x23\xd7\x94\x29\x3b\x41\x02\x43\x30\xb0\x9a\xea\xf6\x24\x11\xa7\x63\x1c\x51\x36\x39\xf1\xe0\x51\x01\xaa\xc4\xbf\x0e\xaa\x36\x69\x1f\xcb\xc7\xdd\x06\xb8\x6e\x5d\x6d\x96\xc6\x79\xc5\x43\x0b\x68\x64\x1c\x2b\x74\x09\x1b\x52\x61\xf9\x58\x87\xe8\xb5\x04\x27\xd8\x30\xba\x8c\x14\x0e\x84\xb0\x69\x7c\x0e\xfa\x80\xf8\xfa\x14\x54\x2a\x71\xf5\xcf\x2d\xb8\xa8\xcb\x34\xc5\x19\xfa\x4f\x19\x55\xb7\x61\xfc\x72\xca\x85\x1a\x6e\x88\x47\x5c\x76\xa9\x30\x72\x9a\x00\x90\x10\x7f\x22\xe2\x89\x92\xe7\x22\xac\xef\x3a\x7b\xd1\x18\xcd\xbc\x78\x4a\xc0\x7d\x9d\xcd\x39\xa4\x6e\x8d\xd1\x0c\xb3\x85\x61\x94\x9a\xb9\x60\xf9\x28\xb3\xaa\xcb\x48\xce\x70\x92\x9c\x20\x41\x52\x69\xaa\x91\x4b\x92\x8c\x4f\x5d\x01\x98\x18\x25\x7c\x42\x23\x9c\xa0\x51\xc2\xa3\x47\x69\x32\x2b\xd9\xc4\x30\xa9\xb9\xe0\x11\x91\xd2\x93\xac\x72\x14\x05\x9b\xdb\x0a\x25\x97\x15\x11\x33\xca\xa8\x54\x34\x72\x22\x53\x0e\x86\x62\x0a\xff\x47\x18\x4c\xc2\x90\x29\x0c\xc3\xd5\x92\x1e\x31\xa0\xb0\x29\xb3\xa5\xc2\xe0\xba\xb6\x58\x8f\x2e\x39\xa1\xee\x00\xed\x00\xba\xd2\xed\x90\xa1\x2a\x1e\xc8\x15\x47\xea\xc2\x7e\x06\xc7\xb8\x69\x0b\xdc\x15\x4f\x54\xb6\x21\xb3\x93\x56\x80\xd3\x82\x5c\x86\x2c\xf5\xa2\x20\xb9\x64\x19\x09\x07\x86\xa4\x07\x43\xae\xc1\xcf\x5b\xb5\xa7\x35\x15\x41\xe4\x81\xea\x74\x65\xaf\x3d\x65\x51\x92\xc6\x59\x59\x55\x2d\x02\x3c\xe9\x4d\xe2\xc8\xa3\x69\xaf\x05\x85\x13\x84\x25\x7a\x26\x49\xa2\xff\xdf\x64\x5e\x9c\x66\xe5\x42\x34\x4b\x36\x25\x5d\xa0\x13\xc7\xa5\xeb\x76\xd4\xc1\xa1\xa2\xde\x62\x35\x35\x58\x13\x33\xae\x4c\x45\x5b\x83\x8a\xea\xec\x5b\x06\x46\x73\x94\xf0\x11\x9c\x74\x00\x4c\x75\xf9\xd5\x5e\x3a\x67\x1a\x45\x84\xc4\x24\x36\xf5\x39\x33\x30\x4f\x7b\x44\xbf\xaf\x86\xef\x2c\x50\xe4\x00\xc0\x52\xcb\x86\xb5\x5a\xc8\xd4\x62\x75\xc3\x33\x74\x5b\x02\x04\xf2\x28\x33\xc6\x65\x78\xb8\x93\xa5\x25\x7c\x1d\x80\xd5\xd2\x24\xf6\xb7\x42\x6b\x02\xac\x16\xfa\xdc\x01\xc0\x6a\x69\x9e\x35\x39\x23\x7c\xb2\xd7\x5c\x77\x3d\xa9\x2b\xde\x3e\x01\xd1\x00\xd3\x99\xbb\xb3\xb0\x05\xdd\x81\x5c\x54\x6d\xc4\xc3\x02\x8f\x2d\xd5\x00\x7d\x5d\xf0\xd8\xd2\x60\x0e\x19\x3c\xb6\x34\xd4\xc3\x05\x8f\xad\x18\x68\x0b\xf0\x58\xe3\xdc\x1f\xea\x4d\xdd\x8e\x29\x40\x42\xd5\x28\x1d\xdf\x03\xc4\x40\xe3\x18\x2f\x4c\xe0\x80\xb9\xc6\xdc\x1d\x6d\xe3\x8b\x60\xb4\x36\xf7\xb6\x2e\x1c\xab\xe4\x84\x58\x77\xef\x65\xde\x37\x03\x3a\xb2\xae\xd9\xfd\xc4\xb7\x76\x83\x1d\x32\xc2\x73\x8b\x65\x50\x57\xe2\xe8\x70\xb2\xb6\x37\xc3\xe5\x05\xec\xcb\x02\xcb\x6f\x85\x5c\xf7\xb9\x54\x2d\x64\xca\x9f\x6d\xc5\x2e\xd8\x86\x66\x53\xd6\x6e\x41\xe8\x74\x68\x95\xb6\x3a\xca\x51\xa6\xc8\xa4\xac\xd3\xe6\x87\x86\x32\xf5\x97\x3f\xaf\xe4\x44\x06\xda\xd3\xa9\x87\x5e\xcd\x8e\xcc\xd9\x61\x9f\x91\x18\x45\x53\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x19\xa6\x4e\x91\x4a\xa5\x71\x2d\x51\x39\x60\x05\x2c\xdc\x33\xf4\x11\xca\x20\xe3\xd9\x5c\xeb\x5f\xd9\xfc\xa8\xde\x49\x83\xf4\x87\x1f\xfe\x42\xd0\x0f\x68\x46\x30\x2b\xe8\xb0\xa0\x36\xe9\xab\x0f\xb0\x23\xd5\x94\x0c\x58\xe5\x52\xa0\xee\x57\x53\xdb\xcc\xc5\x1b\xf6\xd8\x98\x3b\x9d\x18\xca\x7b\xe2\x68\x8a\x64\x3a\x32\xf5\xa9\x3d\x1b\x86\x13\xa4\xaf\xf8\x04\x1c\xd5\x70\x23\xbb\x41\x37\x9d\xc2\xfd\xc6\x00\x58\x77\x63\xdb\xdb\xb8\x03\xf7\xc8\xa9\x24\x05\x4c\xb1\x0a\xa7\x99\xe1\x7c\xfe\xc1\x97\x06\x6f\xe8\xc4\xf8\x10\xb4\x7e\x86\xad\x65\x5f\xcb\xd2\x10\x4e\x0c\x5e\xb2\x34\xc1\xc2\x1e\xfd\x01\xd3\x8a\x86\x20\x4f\x94\xa7\x32\x59\xa0\x98\x33\x72\x02\x3b\x21\x8d\xa6\xc6\xb1\xaa\x75\x16\x6c\x0b\xa5\x3c\x51\x99\x6a\x85\x16\xda\x72\x75\x59\xa4\xc2\x06\x0b\x6d\x4a\xa1\x1f\xad\x7e\x13\xf8\x4a\x79\xf9\x91\xa8\x9d\x16\xe5\xc3\x15\x97\x78\x7e\x4b\xb8\xe2\xc2\xae\x0a\x70\xc5\x19\x5c\xf1\x32\x5d\x0e\x11\xae\xb8\xb4\xe6\xed\xe0\x8a\xab\x96\x7c\x03\xb8\xe2\x42\x33\x6f\x06\xae\xb8\x44\xd1\x37\x03\x57\x5c\x9a\x57\x80\x2b\x7e\x7b\x70\xc5\x5b\x02\xf2\x56\xf3\x62\x83\xeb\xa5\x28\x5b\xac\xbd\xc9\xde\x4b\xd4\xbb\xd1\x1b\x2c\x7a\x2c\x06\xb5\x65\xd7\xd5\xf6\x20\xc0\xd5\x4c\x68\x3d\x10\xe0\x4a\x55\xbd\x9e\xd5\x6d\x0b\x2c\x06\x8a\xc1\x0b\x83\x00\x17\x26\x10\xe2\x2b\xd7\x8f\xaf\xac\xdc\x7c\xb6\x6f\x3d\x3c\x17\x74\x59\xbe\x90\x5b\xc2\x00\x17\xd6\xa7\x55\x24\x26\x88\xee\x3b\xd8\x89\xfb\x95\xe6\xfb\x85\x43\xbe\x52\x96\xf7\xa9\x28\x2d\x20\xb9\x96\xf0\x1c\x4a\xa1\x51\xc2\x7d\xff\x7f\xd8\xb9\x1b\x44\x06\x97\xc8\x9b\xf9\x55\xcc\x5e\x6c\xb1\x55\x5b\xef\x50\xa7\x95\xee\x26\x51\xd8\x25\x6f\xae\xe9\x62\x76\x83\xb8\x9f\x93\xa8\xc6\xc6\x4c\x67\x74\x57\xcd\xae\xba\xc8\x32\x0c\x36\x50\xc8\x97\xf2\x52\xf5\xf5\x64\x86\x63\x64\xfc\x52\x3a\x30\xa0\xa4\x98\x2f\x27\x54\x2a\x51\x1b\xdb\xb4\x34\xc2\x6d\x5c\xa5\xf3\xb4\x75\x40\x8c\x47\xd5\xc9\x66\x9f\xcd\xc8\x8c\x8b\x55\x81\x55\x95\x5f\xda\x12\x4b\x9b\x7c\x4a\xe6\x53\x32\xd3\x92\xcc\x70\xdd\x46\xda\xae\x77\x96\xb4\x6c\x73\xd7\x4c\xa0\x63\x61\x13\x78\x8e\x50\xfd\x6e\x6c\x90\x50\x5b\x2f\xf7\xb6\xcb\x6c\xb1\x5a\xd7\x74\x08\x39\x10\xef\x66\x83\x9b\x7d\xa9\xe0\xee\x86\xfd\x5d\x19\xd3\x91\x85\xd4\xac\x8e\xda\x68\x88\xd7\x68\xc2\x3b\xcb\xbf\xb2\x05\xc8\xd7\x70\xe5\x17\xbd\xf3\x9a\x13\xfa\xd5\xa7\xd7\x0f\xf0\xa8\x41\xeb\x5d\x26\x0f\x44\xe6\x48\x22\x4e\x7d\xcd\xa0\x30\x98\x65\x7a\x15\x76\x89\xd3\x28\xb7\xd8\x24\xa9\xa8\x8d\x32\x6d\x63\xd0\x8e\x54\x8a\x13\xd0\x24\xfc\xaa\xa9\xe5\x45\x1d\x2d\x2a\xd2\x1e\xdb\x79\x4c\x28\x53\xff\xf1\xd7\xb5\x56\x53\xab\x56\x96\x6e\x50\xe9\x0d\x47\x11\x91\xc6\xc6\x6e\xa3\x90\xf1\x88\x3f\x41\x91\xb7\x6d\x56\x55\x1f\x65\x3d\x6f\xcd\xe0\x33\x08\xec\x38\xdf\xea\x46\x5c\x98\x0a\x9e\x4e\xa6\xce\x86\xa4\xcf\x8c\x9e\x5a\xd5\x5a\xfe\xb2\x64\x23\x5f\x7b\x2d\x7f\x4c\x69\xb2\x99\x85\xee\xbe\x50\xfe\xee\x53\xaf\x8f\xe4\x34\x3b\xad\x23\x68\xb6\x72\x61\x97\x07\xdd\xbe\x4f\xfb\x6d\xe6\xaf\x81\x6e\x4e\x1c\xec\xeb\x98\x27\x09\x78\x1a\x24\x99\x3d\x11\x51\xdd\x3d\x4c\xb8\x4f\xd7\x43\x6c\xcc\x06\x00\x5f\xe7\x89\x11\xad\xe4\xaf\x5b\x23\x1a\x4a\xe4\x46\x5f\x0e\x5a\x30\xa1\x6a\x9c\x11\x56\x65\x63\xfb\xb2\x5c\x79\xe8\xc8\x02\x06\x5d\xf4\xd8\xce\x82\x06\x1d\x49\x5e\x38\x70\x70\xc5\x3c\x0e\x35\x78\xb0\xc4\xec\xb2\x58\xbe\xfc\x9a\x71\x81\x43\x46\xf1\xe9\x68\x12\x0f\x58\xa7\x90\x4f\xe1\x2a\xb4\x8f\x16\x79\x40\xb6\xd1\x21\x7c\x66\x06\xf5\x5d\xac\x61\x05\xdc\x68\xfa\x2f\xd0\x74\x0c\x68\xb2\x09\x29\x74\x61\x83\x10\x4d\x4e\xe2\x53\x1c\x2d\xa2\x84\x46\x9e\xce\x3c\x11\x78\x3e\xad\xe2\x78\x6e\xe5\x03\xea\xd0\x6b\xa1\x0e\xd5\x15\x42\x5b\x27\x6e\xdb\xed\x2b\x86\x67\x24\xa0\x21\x1d\x22\x1a\xd2\x49\x86\xb7\xc1\xf2\x92\x72\xaf\x08\xe3\xb0\x7c\xee\x03\x24\xd2\x2b\x40\x22\x6d\x72\xf8\x73\xbc\xa3\xc2\xb1\x0f\x30\x4d\x6d\x88\xf7\xfa\x30\x4d\x99\x10\x70\x50\xc8\x3b\xf5\xfc\xe0\x95\x11\x5d\x96\x07\xf6\x9a\xb0\x4c\x15\xe2\xd2\x3a\x72\x63\x13\x2e\x53\xd3\xbe\x68\x45\x97\xd7\x45\x49\x5a\x8f\x32\x6b\x01\x20\x55\xde\x9d\x07\x02\x87\x54\xbf\x0c\x07\x72\x6e\x76\x99\xd5\xb3\x5e\xcd\x5e\x3f\xb3\x67\x1d\x05\x73\xbd\x24\x9f\x6c\x3f\x1c\x57\xa2\x4f\x5e\xdc\x70\xb3\x64\x9f\x8e\xf3\xc1\x13\x81\xa6\x3c\x89\x1d\x08\x47\x46\xad\xac\x83\x2c\x13\x22\x23\x90\x5b\x8c\xfb\x39\x89\x8c\xb6\x99\x17\xe2\x6b\x4a\xe9\xc9\x16\x11\x86\xbb\x03\x46\xb3\x0b\x2b\x4a\xc6\x49\x36\xb1\x9f\xac\x94\x2e\x64\xd1\xfc\xdf\x30\xc6\x02\x85\xc0\x6b\x50\x3d\xcc\x95\x76\xef\x15\x83\x6b\x12\x3d\x3c\xe3\xa8\xa8\x2a\xb1\x6b\xf6\x19\x3c\x7d\xa2\xce\x10\x83\xfd\x1e\x1b\xbd\x94\x6e\x76\xad\x3c\x95\xe5\xcd\xb2\x41\x30\xdc\x52\xc5\xc4\xed\xc1\x91\x66\xf8\xeb\x70\x8e\x05\x4e\x12\x92\x50\x39\xdb\x5b\x30\xf4\x45\xd1\x5d\xad\xcf\xaa\xe0\xc6\x44\xc6\xd2\xd9\xc8\x6c\x45\x37\x10\x5b\x64\x53\x71\x24\x52\xe6\x43\xbb\x65\x0b\x93\x15\xf1\x4c\xe1\x5e\x00\xab\x5a\x34\x85\x6a\xc9\x63\x4c\x05\x23\xb2\xb6\x36\x2d\x89\x52\x41\xd5\x62\x68\x4b\xfd\xb6\x3f\x70\xf7\xf6\xcb\x0b\xfb\x61\xb3\x87\xdf\xa1\x1a\xb8\xfe\xb2\xd2\xc2\x73\x22\xa0\x3c\x97\x2b\x34\xe5\x95\x33\xb6\xa8\x15\x24\xab\xf1\x05\xe1\xdf\x4b\xd7\x76\x5d\xe0\x34\x7e\x1e\x7a\x19\x65\xc3\xa8\xbc\x39\x56\x1d\xd6\x2a\xdc\xad\xa6\x49\xee\x19\x79\xaa\xc6\x8b\xbe\x87\xea\x3e\x36\x6d\xc4\x34\xad\x07\xec\xb9\xc2\xc1\x5e\x9b\x2f\x8c\x97\xf2\x5f\x51\xec\xc6\x1b\xa7\xc5\x3a\xaa\x0a\xbe\x6a\x18\x6c\xc7\xfb\xaa\xc5\x88\xbd\x4e\x76\x34\x6c\x7d\xd0\x85\x48\xe7\x8a\x8e\x96\xa1\x7d\x1c\x37\xd8\x41\xe9\xde\x4e\x02\x69\xe6\xce\xcd\x52\xe8\xd6\xd4\xf3\x2d\x70\x62\x3b\x3b\x2d\xff\x5b\x1c\x35\x87\x90\x64\x10\xa6\xfc\x3c\xc6\x9b\x19\x55\xca\x25\x4a\x18\x03\xbc\xde\x9d\x45\xdb\xf4\x7b\x17\xee\x82\xa1\xc2\xb2\x31\x51\x9d\x0d\x58\x47\xa2\x67\x82\x18\xb1\x10\x1a\x15\xb5\x93\x33\xab\x3e\xd4\x5c\x1b\x11\xdd\x53\x16\x9b\xa3\x85\x07\xaa\x64\x56\xf6\xcf\xf4\x31\xc6\x89\x24\x27\xba\x61\xa8\x16\xac\x38\x04\xbf\x62\xf4\x2c\xf0\x7c\x4e\xc4\x80\xd9\x2c\x16\x70\x38\x71\x9e\x98\xf6\xeb\x42\x7c\x2d\x0d\xc8\x30\xc2\xd1\xf4\x85\xd6\x08\x43\x32\x52\x34\x25\xb1\xcb\x97\x2e\x2e\x8f\x9b\xb7\x31\xd8\xaf\xb1\x58\xbd\xb1\x2b\x5b\x77\x62\x3b\x49\x22\xcd\x51\xb2\xf2\xee\x73\x22\xf4\xa8\xf5\x1e\x7e\x22\x0c\xd1\xb1\x1b\x87\x8d\x5d\x42\xcf\xe0\x99\xd3\x5b\xff\x09\xd3\xc4\x00\x10\xb8\xae\x9d\x10\x68\xdc\x0f\x03\x66\xdc\xfd\x2c\x2a\x64\xe8\x52\x46\xe5\x54\x73\xea\x14\x7c\xb2\xa0\x66\xd4\x25\x0e\xb1\xa7\x75\x4e\x73\x57\xbf\xde\xcc\x41\x9f\xa8\xe0\x6c\x06\x49\x42\x16\x97\xca\x91\x4f\x12\x95\x1d\x8f\xca\x14\xcf\x95\x12\x71\x1c\xcb\xa2\xf1\xd5\xa8\x95\xf4\x9f\x05\xb3\xcb\x69\x21\x2b\x32\xf2\x60\x95\x20\x88\xd5\x55\xf4\x6b\x92\x7f\x43\x6a\xc7\x72\x6a\x47\x35\x6d\x0e\x31\xbd\x23\x3b\xc4\xeb\xa6\x78\xd4\x2d\xff\x2e\x24\xdb\x1d\xa6\x7a\xbc\x72\x4e\xc4\x7e\xd2\x21\x5e\x37\x7f\x65\x1f\xa9\x2b\x21\xc1\xe3\x15\x13\x3c\x5a\x5b\x6a\x8b\xb1\xe9\xf5\xc7\x76\xad\xe4\x88\x15\x60\x56\x55\xbd\x7c\x26\x4a\xd0\x48\xee\x82\x3f\xc8\x39\x6e\x19\xd5\x07\x5a\xe0\x7c\x85\xd4\xa4\x5f\xc8\x9c\xa0\x10\x27\x97\x55\xb8\x1c\x09\x82\x1f\x63\xfe\xbc\x64\xab\x93\x3e\x9a\xc8\x67\xae\xc5\x1e\x41\x22\x2a\x49\x21\x92\x87\x4a\xc4\x88\xb4\xc6\x4e\x3c\x60\x53\x4a\x04\x16\xd1\x14\xb2\x3b\xf3\x85\x31\x59\xc2\x06\xd0\xc9\xc4\x72\xf8\xde\xae\x35\x16\xbd\x05\xdd\xcb\x16\xa6\x0c\x9f\xcf\xae\xb9\x1e\xc9\xcc\x7c\x92\x09\x33\x56\xca\xf0\x4d\x72\xad\x96\x7f\xdb\x44\x84\x8c\xd8\x7b\x4d\x46\xc8\x82\xa9\xbc\x2f\x5a\x26\x24\xe4\xbb\x21\x24\x25\xec\x29\x29\xa1\x82\xc4\xeb\x25\x26\x6c\x64\xf2\x7b\xf9\x98\x69\xd7\xf3\x4b\xc4\x4d\xaf\x0a\x5a\x4b\x47\xc3\xbd\x1f\xbd\xca\x39\xb7\x3d\x81\x5f\xb2\x4d\x61\x24\x62\xa1\xf7\xd9\x88\xc4\x31\x70\x5a\xc5\x6d\x85\xf6\x7c\xef\x38\xf3\x80\xbe\x7b\xb1\xd4\x9b\x1d\x27\x9c\x4d\x24\x8d\x0d\xd8\xcc\x1c\x43\xad\x62\xdf\x78\x01\xe0\x0a\xb0\xbe\x49\x42\x84\xf3\x4a\x08\xf4\x9d\xa4\xcc\xa2\x49\x66\xbf\xc5\x9c\x48\xf6\x5e\x19\x63\x01\x66\x0b\xf4\xc8\xf8\x73\x42\xe2\x09\xac\x50\x79\x30\xa7\x88\x92\x13\x44\x55\xf6\x99\x00\x34\x06\x9e\xaa\x81\x1e\x3b\xc4\xda\x19\x0d\x80\xd8\x6f\x85\xad\x5e\xe1\x71\x60\xf9\xfd\x19\x42\x3d\x86\xc6\x38\x52\x27\x48\xa6\xa3\xbc\xfd\x98\x9b\xe2\xf2\x5a\xfb\xf6\x26\x9e\x37\x12\x62\xe6\x2b\x3a\xaf\x3e\x1b\x8e\x3b\xe8\xed\xda\x49\x28\xde\x2a\xb6\xf0\x09\x6f\x03\xb1\xfa\x39\x95\x36\x08\x03\x71\x96\x1d\x7d\x0b\x2f\x95\x61\x64\x03\xde\xa9\xc1\x9b\x66\x3c\xae\xb5\x75\x96\xa6\xb2\xee\x58\xf2\x40\x50\x2b\x28\x59\x47\x15\xb4\x6b\xc8\xad\xa5\x26\xa9\x04\xc1\x33\xeb\x1c\xd0\x57\x0d\x88\x35\x26\x0c\x54\x8f\x9e\x0a\x23\x61\xae\xb3\xc4\x57\x94\x3d\xea\xd5\xcd\x51\xc1\x39\xe0\x25\xeb\x9e\xab\x16\x6d\xae\x6f\x3c\x72\xc1\x99\x71\x10\x6e\x25\x77\xd2\x09\xc3\xc9\x9a\x36\x8e\x25\xca\x2d\xfb\xf4\x9c\x9c\x65\xc5\x05\x2d\x45\x18\x63\x1f\x32\x3d\xae\x65\x43\x2a\xcd\xd7\x97\xf7\x30\x8a\xc9\x9c\xb0\x98\xb0\x68\x01\x5b\x84\x01\x72\x90\x60\x38\x41\x18\xbe\xc3\xc9\x19\xba\x34\xf9\x45\x99\x84\x67\xaf\x75\xb8\xd0\x67\x98\xd1\xb1\xd6\x13\xc0\x08\x6b\x47\x39\x60\x66\x98\xce\x07\x42\x72\xeb\x6a\x46\xb1\xaa\x95\xd1\x37\xc8\xf5\x96\xa8\xcc\xac\xf8\x3d\x6a\xbe\x70\xa0\xb7\xa6\xd5\xd1\xcd\xb9\x1a\x0c\x32\x1d\x9d\xc2\xbf\x0b\x09\x77\x0e\xa8\x28\x47\xd1\x21\x09\x01\x73\xa0\xf5\x78\xc1\xc5\x58\x07\xac\xb7\x0b\xbf\xdd\x8a\x3c\x16\xaf\x8f\x82\x52\x33\xa3\x8c\xce\xd2\x99\xe7\xbc\x33\x15\x1b\x22\x6b\xbf\x34\x99\x28\x73\xad\x07\x44\x0e\xbc\x1d\xe9\xcb\x95\x2d\xd0\x84\x3e\x11\x36\x60\x73\x4e\x99\x3a\x43\xd7\x5c\x11\xaf\x44\x86\x81\xce\xe2\x73\x45\x67\x06\xed\x55\x10\x7d\x0e\x0c\x28\x38\x00\x6d\x4e\xb1\x3a\x41\x71\x0a\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xac\x0c\xc4\x87\x8b\x01\x33\x37\xdd\x18\xd3\x24\x15\xc4\xca\xac\xd8\xe4\x05\xe5\x43\xce\x47\x66\x91\xe0\xbc\x49\xcc\xe8\x64\xaa\xf4\x12\x69\x19\xcf\xfa\x1b\xa7\x9a\x1b\xf1\x01\x1b\x11\x84\xd1\x9c\x4b\xaa\xe8\x53\xe6\xbf\xa4\x63\x84\xa5\x04\x0b\xca\x19\xba\x2c\xd8\xff\xa9\x04\xd5\xbb\x2e\xae\x98\xb2\xa1\xb5\x3d\xd7\xe7\x23\x6d\xbd\x90\x85\x5e\x2c\x95\xf1\x48\xf2\x24\x55\xbe\x0b\xb6\x7a\x6d\x73\xd3\xb8\x2b\x5c\x00\x06\x62\x3e\x1e\x30\xb7\xaf\xe5\x19\xea\x48\x24\xb9\x5e\x25\x69\x96\x32\x12\x54\x11\x41\x0d\x8a\x15\x51\x66\x11\xb2\x73\x9a\x9d\x81\x19\x16\x8f\x5a\x84\xf2\x2d\xf0\x06\x53\xb5\x60\xed\x18\x19\x09\x09\x60\xbd\xfc\xe5\x00\xd3\x3f\x62\x9c\x9d\x32\x32\xc1\xab\x56\x64\xc0\x0a\x4b\x82\xbe\xa3\xe3\x5c\x21\xad\xf3\x39\x7a\xb4\x1b\x42\xe4\x53\xdd\x2a\x99\x8e\xeb\x16\x69\x9c\x70\xbc\xc2\x6d\x3c\xce\x0f\x3d\xfa\x07\x1f\x99\x31\x6a\xbd\x9f\x2b\x90\x02\xb5\x7a\x35\xe6\x82\x4c\x31\x8b\x4f\xdc\x62\x15\xc7\x06\x37\xa3\x35\xb5\x39\x65\x0c\x24\x41\x07\xa2\x4c\x0c\x16\x15\x66\xde\x5a\x58\xc5\xcd\x2e\x45\xbe\x0e\x6b\xdd\x15\x59\x6b\x50\xfb\xc5\x18\x20\x0c\xcb\x5b\xcc\xed\x11\x97\x74\x36\x4f\xf2\x9c\x2e\xcf\x36\x3a\xd6\x22\x96\xe3\x91\xfc\x09\x4c\x57\x4e\x6b\x83\x5b\xdd\xae\x9c\xde\x67\x15\x23\xcf\x18\x29\xdc\x1a\xce\xe6\x65\xca\x80\x7a\x2c\xec\x3b\x49\xf4\x3f\x15\xc9\xd5\x3e\x23\xac\x0f\x98\x13\x41\xbe\x07\x2e\x63\x9b\xf5\x8c\x67\x5a\x84\x36\x30\xb7\x96\x7e\x28\x32\x4e\xee\xc2\x39\xb1\x87\xc1\xbd\x5a\x79\x51\x29\xaa\xc5\xec\x1f\x29\x20\x74\x5d\x6e\x09\xbb\x4f\x59\x4c\x6a\x8b\x59\xb5\xe2\x1a\x75\x77\x8b\x61\xa8\xc3\x4d\xeb\x4f\xf4\xa7\x44\x12\xa4\x9e\x33\xa0\x38\xad\x57\x81\xc9\x52\x90\x84\x3c\xe1\xfc\x8e\xcb\xfa\xb2\xec\x32\xc2\xb2\xa6\x3c\x0c\xa0\xad\xe9\xf1\x6f\x9e\x38\x9d\x8d\xef\x46\x0f\xe5\x09\x27\x36\x71\xc5\xfa\xca\x65\xfd\x82\xf5\x2e\xb7\x8a\x21\xb5\xad\x54\xd1\xb3\x5e\xc4\x70\x7d\xff\x4c\x16\xd5\x14\x59\x01\x62\xd8\x94\x8d\x9e\x91\x7d\x0d\x5b\xf5\x6d\xfe\xcd\x32\x8d\x6b\x29\xf7\x73\x61\xca\xaf\x90\x44\x75\xbb\x54\x81\x1b\xfe\x94\xe9\x78\x4c\xbf\x82\x56\xeb\x6e\x12\xa7\x79\x44\x82\x4b\xcd\xc5\x40\x56\x41\x6e\xf1\x8c\x23\x79\x9b\x84\xaa\xca\x2f\xb5\x96\xb5\xf6\x8e\xae\xa5\xf6\xdf\x53\x22\xb6\xa2\x77\xb6\x55\xd7\x09\x47\xf4\x4e\x49\xb5\x8e\xe8\x1a\x55\xb8\x65\x4c\x92\xdf\x6a\x1f\xd7\x90\x6e\x35\xfc\x79\xe5\x67\x23\xc3\x7c\xd7\x1f\x88\xcf\xb5\x1b\x6d\x6a\x79\x7c\x5a\x16\x9b\xec\x8a\x12\x69\xfe\x76\x62\x01\xd6\xb1\x0d\x9c\xca\x52\x9d\xb1\x8b\x19\x31\x8e\x11\x53\xb3\x4a\xd9\x4a\x0b\x9e\xa6\x6e\x1b\xa3\x6c\x32\x60\x8e\xb6\xf2\x04\x99\x30\xf1\x12\x43\x2d\x60\xdb\x63\xef\xd3\x6c\x63\xb7\x33\xa9\x1a\xbf\x3a\x23\x52\xea\x8b\x51\x2a\x81\x29\xb3\x3e\x1c\x47\x1f\x39\x60\xe8\xb4\x1c\xa7\x7e\x02\x76\x84\x13\x97\xed\x7a\x92\x0f\x50\x0e\x98\xc9\x38\x41\x7f\x46\xdf\x29\x3c\x31\xb7\x04\xa0\x57\xe2\x04\x70\x2f\x41\x4b\xb0\x5a\xb9\x97\x1c\x90\x9d\x48\x1a\x7f\x7f\xde\xd4\xa7\xb1\x21\x7c\x07\xcd\xc0\x21\xd7\x34\xcc\x09\x44\xc7\xf9\x3f\x48\xfc\x7d\x53\x4b\xf9\x47\x8f\x64\x71\x52\x26\x72\xfd\xbd\xd1\xc7\x5b\x45\x68\xee\xeb\xe2\x80\x41\xb7\x77\x52\xe2\x11\x49\x7e\xc9\x27\x8a\x1a\x59\xd1\x8f\x94\xe1\xed\x78\x50\xe5\xf0\xda\x45\xa0\x8f\x16\x75\x75\xeb\x2a\x58\xcf\xc6\x88\x2b\x1d\x23\xcb\x12\xa4\xbb\xb3\x12\xbb\xab\x6a\x88\x21\xea\x71\x4a\x92\x39\x8a\xe9\x18\x5c\x6f\x0a\xf6\x4b\x06\x1e\x6b\xea\xfd\x68\x85\x66\x96\x32\x03\x04\x6c\xa2\x3e\x9e\xed\x49\xb7\x2c\x23\x6f\xfc\x6c\xc0\x7a\xea\xbd\x44\x52\x09\xce\x26\x5a\x99\x8e\x9f\xa8\xcc\x0b\xd9\xe9\x03\x99\xce\x88\xb0\x5d\x50\x69\xa4\x6e\x5b\x04\x0a\xbb\x8b\x4d\x8f\x4d\x5f\x7d\x20\xf8\xb8\x62\x8b\xfa\x47\xa3\x57\xe8\x51\x4a\x17\x35\x55\x11\xf6\x6e\x17\xb7\xc4\x3b\x5f\xd8\x74\xf9\x8b\x6f\x9d\x44\xb3\xdc\x90\xe9\xf8\xe5\x87\xb2\x19\xd3\x52\xbd\xc1\x84\xb9\xf6\x85\xd0\xf6\x22\x70\x55\x13\x52\x93\xe6\xa4\xfb\x71\x8e\x2d\x33\xb8\xb5\x54\xac\xd2\x04\xed\xa8\x8d\xf6\xe4\x9b\x30\x09\x05\xfb\x87\x54\x58\xd1\xc8\xde\x02\x5c\x58\x2b\xae\xd5\xab\xeb\x97\x76\x5b\x9d\x44\x46\x38\x59\x5e\xe1\x06\x9f\xba\x79\xbf\xd9\xd0\x69\x8f\x9b\x69\xbb\x11\xd8\x25\xe2\x49\xb2\x4e\x99\xba\xd2\xcc\x2f\xf2\xcf\x9b\x47\x94\xf7\xa3\x17\xc0\xad\x05\x9c\x1a\x63\xa0\xc0\x89\x75\x17\x49\x65\x57\xc9\x7f\xc9\x5c\x6a\x0b\xab\x3e\x0e\x18\x1f\x43\x21\xc3\xa4\x2e\x72\x7d\x2e\xf8\x8c\xae\x53\x49\xc3\x04\x73\xdf\x39\xdf\xff\x0a\x4f\x8a\x8b\x10\x00\xf3\x9b\xd9\x5e\xb6\x47\xc0\x64\xc0\xd6\xa4\xd6\x70\x86\x66\x78\xbe\x11\xc1\x57\x45\xbe\x74\xd0\xcc\x84\x1d\x59\xea\x01\xa6\x36\x81\xe4\x54\x20\xf2\x33\x5e\xe4\xf0\x37\x75\x35\x12\xd8\x5a\xdb\xe1\x41\xbf\xde\x63\x63\xbe\xc6\xe1\xcc\xe1\x6a\xec\xe9\xc3\x6e\xcf\x7a\xe7\x2f\x8b\xc4\x30\xab\x6f\x68\xda\xe6\x3c\x5e\x54\x6d\xea\xb5\x4f\xa6\xa3\xe0\x3e\xfd\xb0\x3e\x13\xf1\xbe\xf9\xd7\x3a\x77\x6b\xf1\x68\x79\x2d\x22\x18\x4e\x33\xa9\x3e\x17\xf6\xe1\xce\x69\x54\x6a\x07\x9e\xe5\x09\x63\xb7\xd5\xad\xbe\x00\xcd\xec\x21\x69\x45\xac\x2d\xf1\xb9\xd6\xab\xf5\xe0\x7a\xcc\x2a\x3b\x6c\xad\xc9\xad\x22\x06\x70\x33\x69\xb5\x86\x3c\xfb\xc4\xc2\x00\x8c\x69\x42\xe4\x19\xea\x55\x38\x71\x5d\x12\x7e\x16\x34\x6e\xd2\x01\x9d\xf4\x94\x0a\xea\x15\x7f\x77\x32\x12\xa2\x50\x84\xce\x0f\x64\xf1\x9c\x16\xe0\x3e\x9d\xf2\x67\x93\x81\x27\xa8\xe6\x59\x46\x58\x55\xe0\xd2\xd2\xbc\x80\x5a\x8f\x90\x71\xa8\x65\x1f\x70\x93\x17\xa1\xd5\x9c\xcc\x19\xe6\x5b\x20\xca\x4b\xba\x8b\x32\x9e\xed\x31\x0e\x5c\xaf\x7d\xfd\x45\x1b\xa5\xc0\xbd\xbb\xc5\xe8\x32\x29\x7f\x7d\x7b\xe4\x47\xf8\xd4\x19\x76\x31\x1a\x0b\x02\x5a\xf6\xff\xc7\xde\xbb\x36\x37\x6e\x24\xe9\xc2\xdf\xf7\x57\xd4\x7a\xdf\x88\xee\x3e\x4b\x51\x6e\xfb\xcc\x84\x57\x1b\x8e\x78\x69\xb5\xda\xe6\x58\x2d\x69\x74\xb1\x67\xcf\x70\x82\x5d\x04\x8a\x24\x46\x60\x15\x8c\x02\xa4\xe6\xec\xce\x7f\x3f\x51\x99\x59\x17\xdc\x48\x40\x94\xda\xde\x3d\xf3\x61\xc6\x2d\x02\xa8\x7b\x65\x65\x65\x3e\xf9\xe4\xc6\xf1\xa6\x61\xe2\x04\xa5\xe0\xbc\xbb\x79\xf7\xe3\xf1\xdd\x94\x89\x22\x62\x69\x72\x2f\x66\x32\xd2\x0f\x70\xe9\xfb\xa5\x14\x85\xf9\xb9\xc3\x08\x94\x6c\x84\xd4\x20\x09\x92\xa2\xe7\x7d\xcd\x0e\x8c\xf9\xef\xbb\xea\xf7\x7d\x6e\xe5\x8e\xeb\xd3\xac\x5d\x9b\xd3\x10\x96\x29\xa4\x6d\xc3\xa1\x6d\xb1\x6b\x7e\x87\xfe\xd6\xb3\xb6\x8c\xe7\x4f\x08\x89\x96\x7f\x2d\xe5\x40\xa5\xeb\xd4\x7f\x14\xb4\xa2\x43\xa7\xdb\x64\x1c\xf2\x99\x0c\x8b\xb5\xc6\x6f\x5a\x4b\xdf\x27\x44\x3c\xf5\x8d\xf5\x9f\xfb\xe4\xf0\xac\xc8\x85\x00\x11\xe2\xd6\x13\x9d\xf5\xc4\xb6\xe6\x3a\x16\x7c\x34\x9e\xc9\x0f\x16\x55\xe7\x7f\xd5\xde\xd7\xb0\x59\x04\x69\x5e\xaa\xa5\x40\xb1\x71\xa2\xdd\x0f\x90\xb4\x4f\x97\x69\x81\x59\x8b\x97\x89\xe4\xa9\x6b\x28\x3e\x69\x93\x12\x39\x97\xd1\xfa\x50\x37\x79\xb2\x9c\x8b\x74\x88\x26\x3a\x5d\x9e\xa5\xda\xac\xef\xe8\xbe\x63\x77\x3e\x25\x2f\xb7\xef\x0c\x7a\x9c\x28\xb7\x27\xf3\x6e\x76\x9e\x62\xd6\x60\xc1\x00\x87\x55\x8f\x90\x47\x12\x30\x33\x8b\xa4\xa9\x23\x0c\x0b\x43\x53\x5d\xd8\x19\xd4\xc2\x78\x31\x93\x79\x29\x21\xa1\x98\x43\x65\x72\xe6\x73\xc2\x44\x16\x23\x41\x88\x95\x95\x11\x13\x98\x72\x05\x5f\x36\xf7\x33\x55\x6a\xf0\x47\x6d\x44\x61\x0e\xa8\xd7\x90\xeb\x1f\x61\xd1\x23\x96\xe5\xc9\x06\x5c\xca\xfa\x4d\xcb\xd4\x9d\xf2\x82\xa7\x6a\xf5\xdc\x56\xa5\x27\x86\xd8\xd8\x66\xb0\xe9\x3b\x33\xf8\x2b\x21\x45\x0e\x1d\x05\x5b\x76\xeb\x16\xee\x61\xe5\xee\x90\xdc\xe0\x49\x24\xe7\xaf\x76\x16\x0b\x5e\x16\x6a\x63\xee\xb7\x3c\x4d\xb7\x23\xf4\x3a\x0b\xb6\xe6\x7a\x6d\x27\x1a\x1d\x86\x7d\xce\x26\x1a\xdc\x53\x1e\xad\xc5\x4d\xc1\x8b\xb2\x15\x99\x55\x6b\xe5\x17\x42\x96\x9b\x2f\x4e\xd8\x9f\x7d\x1f\x4f\x27\xa7\x3f\x9c\xcd\xdf\x4d\x6f\x26\xdf\x9d\x9f\xbd\x0b\xfa\x43\x4f\x3e\x4c\x6f\x6e\x9a\xbf\xfe\x30\xbd\x6d\xfe\x78\x75\x79\x75\x77\x3e\xb9\x6d\x2b\xe5\xfc\xf2\xf2\xc7\xbb\xab\xf9\xfb\xc9\xf4\xfc\xee\xfa\xac\xe5\xd3\xbb\xdb\xee\x87\x37\x3f\x4e\xaf\xae\xda\x4a\x3d\xfb\x69\x7a\x6a\xaa\xa3\xdf\xff\x12\x6c\x3b\x70\x9d\x9b\x11\xe8\xe8\x5f\x7d\x67\x1e\xb1\xea\x8b\x27\xec\xae\x9e\xf7\x8a\x02\xb1\x90\x44\xec\x91\x6b\x23\xdc\x20\x0e\x10\x4c\xb0\x7e\xb4\xba\x3e\x45\xac\x72\xb4\x16\x2c\x55\xea\xbe\xcc\x48\xe6\xa1\xb5\x5d\x2a\xb4\x08\x09\x1d\x94\xf6\xc3\xf4\xf6\xa4\x99\x7f\xcb\x15\x16\xd0\xa5\x3a\xe3\xf2\x23\x47\xea\x00\x90\xb3\x60\x64\xb1\x79\x99\xbc\xeb\x3a\xa8\xc1\x4d\xd9\xae\x7a\xb0\x34\x2e\x8b\x5a\x35\x71\xec\x49\x96\xa0\x63\x41\xc1\xd5\x09\xdf\x35\x9a\x6e\x38\x30\xf1\x28\x5b\x88\x88\x97\x88\xe8\x36\x07\x58\x9e\xab\x3c\x6c\xb0\x5f\x28\xcf\x57\x28\x2d\xb0\xd6\x02\x6b\x73\x66\x3a\xae\xef\x93\x2c\xab\x4c\x3b\x2d\xc4\xfd\x33\x0f\xa9\xde\x1e\x92\xa8\x10\xf1\x17\x4d\xbd\xc8\xc7\xe0\xa3\xde\x6c\x76\xb5\x69\x72\xb0\xd7\x13\xb9\x42\x5b\x82\x4d\xba\xb7\xde\x3a\x14\x12\x80\x5e\x3d\x0c\x18\x92\x80\x98\xb3\xc6\x25\x45\x4b\x00\x56\xc4\x0b\xf6\x28\x80\x8e\xa6\xa4\xac\xa3\x78\xa7\x37\x32\x03\xaa\x43\x3c\x80\xcd\x21\x5c\xa1\xa9\xe9\x14\xf2\xcf\xa1\xc8\x9b\xef\xb5\x18\xe6\xc4\xdb\xcb\x29\xf2\x0e\x0b\x05\xa9\x6f\xe3\x05\xa0\xc5\xcf\xe9\xf4\x6b\x39\xe9\xf6\x1c\x42\xe6\x38\xe8\xd3\x1e\xcb\xe3\x56\x49\x8e\xd2\xbf\x61\x95\x04\x1a\x7b\xc7\xea\x56\xc5\x7c\x6b\x16\x07\x80\x1e\x74\x99\x65\x2a\x2f\x58\x47\x19\x08\x81\xc4\xf6\xc1\x59\x46\xfd\x70\x22\x12\x0a\x31\x9a\x8b\x6e\xc9\xc3\xd6\x8f\x5a\x8a\xc6\x35\xf0\x9d\x05\xc1\x45\x70\xc1\x74\x39\x33\x37\x95\xab\x7a\x65\x85\xb6\x29\xd5\x87\x44\x67\x66\x46\x71\xe8\x9b\xc2\xb9\xad\xf6\x4b\x5b\x42\xeb\x94\xa7\x62\x59\xcc\x07\x3a\xbb\xa0\x44\xd9\xc5\x06\x98\xac\xd6\xcf\x50\x62\xff\xdb\xc7\x57\x04\x8a\x36\x57\x8e\xc0\xf2\x90\x2b\x55\xa0\xde\xeb\xef\x46\xcc\x8e\x26\x98\x2d\xa8\x52\x8a\xa3\x77\xca\xa5\xb9\x4b\x20\x96\xcc\x85\x9c\x8f\x67\xf2\x0c\xc0\xa7\xfe\x82\x63\xc3\xeb\xe1\x76\xb1\xf7\x5e\x51\x49\x58\xff\x59\x23\x5d\xba\xb3\x03\xf8\x75\x8f\x90\x45\x91\x6e\x1d\x47\x54\xcc\x2a\xdf\xf5\xd9\x3d\x68\x4d\xb7\xaa\x25\x76\x18\xb7\x8e\x2e\x44\x46\x16\x7f\xec\xa7\x47\x49\x83\xb7\xd9\x54\x35\x66\x3f\x5b\x8b\x12\x04\x0d\xb9\x20\x1a\x8b\x7b\x4d\xf9\xd6\x12\x8a\xb7\x0d\xec\x73\x70\x74\x3f\x77\x18\xd1\xee\x01\x76\x64\x9c\x2d\xa3\x5c\xb9\xd8\x4b\x89\x96\xde\x01\x30\xa4\x53\xf7\xd1\x8d\xd8\x8d\xa8\x7c\x0f\x29\xdc\x09\x95\x0e\x3a\x8b\x4c\xb7\xff\x8c\x93\x85\x2c\x1e\x16\xa4\x41\x29\xb5\xc9\x33\x6b\xf6\x0f\x78\x16\x91\xe4\x83\x2d\x93\x34\x05\x3d\x60\xcc\x26\x72\x6b\x49\x30\xcc\x51\x68\xc1\xa9\xc9\x4a\xaa\x7d\xf1\xf9\x1d\x8b\x29\x0a\x16\xd3\x4d\xf7\x62\x42\xfc\x87\xe7\x40\x7a\x9e\x15\xf5\x0c\x7c\x78\x46\xb6\xf0\x66\x36\x95\xfe\x2c\x78\x03\x8c\x02\xe1\x69\xfe\xb9\x22\xcb\x1a\xcd\x0d\x3e\xfc\x7b\x7b\xd3\xbf\x2f\x79\xce\x65\x01\xf1\x52\xa4\xb4\xe6\x22\x08\xdb\x16\x9f\x00\xdb\x2a\xd1\xc0\x0c\x3f\x85\x93\x6b\xa1\x04\x08\x3f\x4b\xe2\x11\x4b\xc6\x62\x0c\x99\x7d\x73\xa3\x4b\x2c\xfc\x9b\x6b\xa3\x39\xcc\x64\x23\x0e\x64\xcc\x26\xa9\x56\xf4\x85\x90\x51\xaa\x34\x40\x7b\x17\x21\xe9\x3a\xac\x7c\x72\x57\x2d\xb6\x70\xbf\x81\xa9\xf4\xc5\x2b\x7a\x10\x7c\x08\x09\x6a\xc1\xd7\x9e\xc2\x4e\xf7\xbf\xff\xab\x22\xfa\xd8\x2e\xfc\xc5\x0b\xa6\x02\x6b\x1c\x43\x2f\x36\x49\x98\x66\x7a\xd7\x04\xc1\x1b\x30\x31\x3e\x3e\x27\x60\xaf\x63\xaf\x79\xc1\x52\xc1\x75\xc1\xde\xbe\x19\x84\x39\xb1\x1d\xf4\xd2\x95\xb6\xaf\x0f\xb2\xb7\x61\x9a\xa1\x72\xe7\x2a\x86\xbc\xc3\x3c\x2f\x18\x67\x52\x3c\x86\x51\x39\x0a\x02\xa9\x6c\x32\x61\x11\xf0\x82\x20\x16\x1f\x59\x8d\x20\xd2\x15\xaf\x4c\x1d\x72\xc4\xa6\xca\x20\xb7\x2c\x35\xab\x65\x65\x8d\x1c\xaa\x0d\x60\xec\xe6\x25\x1f\x30\xb9\xe6\xc5\x4c\x92\x64\xb5\x70\x94\x20\x44\x7e\x92\xa6\xd5\x20\x45\x0e\x71\xb8\xd2\x74\xd8\xb4\x3e\x1e\xbb\x01\xba\x80\xeb\x97\x8b\x14\xab\xd8\xff\xfc\x66\xc1\x58\x06\xc7\x15\x19\x96\xdd\xaa\xed\xb4\xd9\xad\x3f\xa3\x12\xdc\x52\xfd\xb9\x5a\x25\x11\x4f\x7b\x28\xc3\xa2\xad\xc9\x7b\x36\x56\xd3\x57\xb0\x43\x37\x7e\xee\x0a\xfa\xab\xca\xed\x76\x77\x38\x66\x1f\x55\x8b\x19\xbf\x63\x72\x03\xdd\xe2\x90\x0b\xb8\x0b\x59\xfc\x5c\x9e\xe4\x4a\xd3\xa7\x31\x10\x26\xec\x97\x82\x9e\x80\xc0\x8a\x0e\x8c\x5b\x8b\x83\x78\xe8\x20\xfc\x92\x40\xa4\x28\xf8\xe8\xcd\x0e\x8f\x6e\xf6\xdf\xbb\xfb\x23\xdf\x7f\xdb\x15\x07\xae\x6b\x76\xbc\x5b\xd9\x9b\xc4\x7f\xe5\x11\x44\x49\x42\x4d\x36\x3e\xb3\x49\x66\x69\x53\xa0\x70\x70\x12\xb4\xaa\x87\x59\xae\x22\xa1\xf5\x98\x9d\xc1\x41\x43\x7f\x32\xbe\xb4\x8e\x8e\xe0\xe5\x99\x34\x37\x13\xcb\x7d\x17\x94\x5f\x5d\xe2\x6d\x3b\x00\x89\x74\x0f\xf2\x11\x6d\xf6\xe7\xb7\xeb\xba\x4d\x58\x1e\x5f\x28\x03\x52\x62\xb1\xb3\xd5\x09\x8b\x55\x74\x2f\xf2\xe3\x5c\xc4\x89\x3e\x01\x9f\x7d\xd1\xe9\x2c\xdc\x98\xdb\xf6\xc1\x9a\x46\x17\x00\x61\x0f\xa1\xc0\x29\xd6\x4f\x21\x05\x36\x34\x69\xc4\x92\x25\x5c\x27\x6c\x3c\x2b\x06\x70\x59\xaa\x40\x21\x8b\x7c\x8b\x68\x67\x6b\xca\xaa\x0d\x84\xbd\x69\x18\xa5\xad\x2b\x12\x3b\x7f\x0e\x6c\xcf\x13\xbb\x8d\x11\x3f\x04\x64\xc0\x4e\x15\x8a\xe2\xc0\x50\x5c\x64\xbc\x58\x6b\xa0\xfd\xa8\x8e\x01\x5d\xba\xe0\x53\x33\x42\x3c\x03\x1c\x04\x5a\x29\xfc\x47\x8e\x9c\x42\x17\x49\x9a\xce\x24\x06\x6e\x00\x43\xc7\xab\x56\x76\x21\xf3\xe9\x88\xf1\x38\x66\xff\xdf\xeb\xf7\xe7\xff\x71\x7b\x36\x9f\x5e\x80\xcd\x7b\x7a\x7e\xf6\x66\xe4\x7e\xbc\xbc\xbb\x75\xbf\xa2\x85\xe5\x41\xe4\x6c\xc3\xef\xe1\x8a\x27\xb5\xa0\xc0\x53\x31\x93\x61\x4b\x2d\xef\x92\x79\xa2\x85\x45\xd0\x92\x9a\xe2\xe8\xa7\x69\x0e\xbb\x48\x5b\x89\x8e\x73\xc0\xe5\xf7\xda\x7d\xb2\x7b\x0d\xda\xc5\xe3\xaa\xb0\x6a\x20\xc4\x17\x73\x1d\x10\xf1\xd0\xdd\xd7\x2f\x38\x21\x57\x89\xec\xc2\xf9\x09\xf9\xf0\x92\x4a\xfc\x8f\x62\x0b\x40\xf3\x2b\x9e\xe4\xbd\xd7\x5e\x3b\x93\xa2\xdd\x31\xe6\x9e\xce\x75\x7d\x53\x69\xd4\x85\x31\x52\xb9\x13\x4b\xda\x46\xa2\xfb\xab\x77\x97\xa8\x39\xc5\xa7\x22\xb7\x0c\x5f\x2e\x16\xd6\xd2\x60\xba\x83\xc6\xaf\xc1\x99\xbc\xbd\x7c\x77\x79\xc2\x44\xca\x17\x0a\xc2\x20\x09\x6a\x64\x8b\xa0\x01\x8b\xd4\x26\x28\xa8\xc2\xee\x36\x62\x99\x67\x77\x0b\x8d\x68\x63\x2c\x63\x0f\xcb\x5b\xa6\xf2\x26\x37\xda\xf3\x5e\x01\xa9\xb3\x57\x2a\xef\x73\xfc\x9b\xd7\x30\x2e\x24\x33\x17\xb9\x9a\xe4\xa5\xb3\x79\x29\x38\x30\x7f\x90\x5b\x88\x6c\xf9\x04\x8c\x4d\xd3\x4a\x2e\x6e\xb3\x71\xf4\x98\x5c\xfb\xfe\x4d\x25\xd9\x8f\xdf\x68\xb6\x28\x8b\x99\xac\x96\xa1\x24\x9b\xfc\x7c\xc3\xbe\xe3\x45\xb4\x7e\x33\x93\x10\x97\xf8\xe3\x37\x1d\x34\x94\x83\x99\x9d\xcd\x98\xbc\xe3\x05\x3f\x57\x3c\x4e\xe4\xaa\x8d\xd6\xd9\xe7\x1e\x3c\xbb\x9d\x9c\x30\x9b\x02\xc6\x47\xd1\x16\x96\x4e\x25\x28\x08\x04\x32\x74\xc4\x4a\x11\x10\xe5\xb2\x4a\x7d\x8b\x37\x33\x38\xb0\x66\xf2\x16\xf9\xac\x8d\x54\x4d\x0a\x96\x29\xca\x7f\x69\x6e\x65\xc8\xf4\xcd\x6d\x74\xb9\x48\xb7\xcc\x8c\x0e\x2c\x63\x37\x19\xa4\x8f\x81\x3e\xd3\x14\xf6\x33\x09\x17\x74\x17\xd7\x9b\xaa\x88\xa7\x80\xf5\x3b\x0a\x6c\x7a\xe6\xda\xae\x4a\xe0\xd6\x01\x90\x8d\xdc\x56\x21\xb9\x8e\xee\xc9\x29\x65\xe1\x44\x81\x01\x00\xe6\x91\xfc\x90\x1b\x65\x24\x0e\xf2\xd8\x82\xf1\x2d\xc5\xd1\x31\x1f\x3a\x5e\x5b\x1c\x16\xf3\xd4\x85\xbc\xab\x52\x5a\x1e\xb7\x08\xcc\xf7\x72\x0b\xb0\x70\x48\x58\xa7\x00\x52\xe2\xa5\x33\x2d\xca\xc6\x2c\xba\x33\x31\xf8\x6c\x26\x11\x81\x58\x99\x97\x90\xf9\x30\xa8\x5d\x49\x00\x48\x36\xe3\xec\xcb\x8c\x00\x93\xa4\xeb\x67\xb9\x38\x72\xd1\xe3\x71\x65\x4c\xcd\x09\x3b\x66\xd7\xe1\xf5\x3a\x56\x51\xb9\xb1\x59\x29\x20\xf2\x9c\x90\x75\x74\x88\xba\x15\x82\x07\xfb\xbe\x15\x0f\x0c\x77\x85\x00\xea\x9d\xde\xf7\x63\x5c\x30\x93\xf0\xd3\xa6\xa6\xde\xad\xf8\x82\xec\x38\x0c\x0d\x87\x05\xcd\xb3\x6a\x49\x95\xd2\x0e\xe6\x74\xb8\xf0\xcc\xf9\x2a\x07\x65\x4b\x7c\xca\x14\x18\xb9\x31\xb0\x5a\xc5\xaf\x34\x9b\x5e\x19\x0d\xc8\xdc\x78\xdd\x1e\x2c\x75\x81\xa0\x35\x8c\x7f\x86\xaf\x31\x0c\x61\xc4\xbe\x64\xb3\xf2\xcb\x2f\xbf\x8e\xd8\x27\xfb\x8f\xdf\xff\xee\x77\x5f\xff\x7e\x48\x98\x8a\xbd\x90\x43\xb9\x7e\x8c\x5c\x2a\xd2\xaa\x4a\x14\xce\x40\x53\x52\x1d\x30\x0b\xb4\x01\xbb\x86\xff\x29\x0c\xd9\x01\x26\x89\xaf\x68\x87\xeb\x70\x67\xb2\xca\xd6\xf4\x48\x02\x2d\x8a\x51\x55\x42\x38\x65\x97\x34\xfa\x7f\xde\x41\xf4\x3a\x37\x5b\xe5\x69\xd8\xa9\x24\x75\xea\xb5\x29\x84\xbd\x26\xfb\x5f\x01\x0e\xc4\x37\xf6\x80\x53\x69\x2c\x72\x6c\x93\x33\xd9\x39\x43\x22\x08\x07\xf1\x29\x4b\x55\x6c\xa9\xe5\x3d\x8f\x42\x02\x0a\xc2\xd9\x27\x6e\x24\xf7\x88\x28\x48\x29\x6e\x15\x3c\x2f\x4b\x1e\x09\x8a\xb1\x7e\xfd\xe9\xc4\xfc\x36\x62\xdb\x13\x00\xa7\x8e\xd8\xdf\x4e\x88\x69\x90\xe7\xc5\xdc\xfc\xf4\xc6\xea\xda\x54\x04\x34\x3a\xd1\xec\xd5\xf1\x03\xcf\x8f\x41\x3c\x1f\x63\x8b\x5e\x91\x64\x75\x39\x95\x43\xdd\x3c\x55\xea\x9e\x80\xbb\x8d\x0f\x8f\x2d\x69\x2d\x2c\x6f\xe7\x37\xc1\xa9\x77\xa4\x46\x05\x3b\x82\x17\x04\x1b\x67\x0b\x36\xfe\xab\x56\x92\x8d\xb7\x7c\x93\xd2\xaf\xf6\x29\xe1\x8a\xb9\xa6\x58\xbb\xd8\x61\x84\xd2\x2d\x5a\x4a\xbf\x4b\xd5\x02\x7a\xf5\xc1\xf6\x14\x91\xb9\xd0\x50\x7f\xfa\xf8\x03\x8b\x3a\x62\x49\x3c\x80\x7b\x71\xa3\x0a\x7c\x85\xc2\x66\x9b\xbd\xfa\xe4\x9a\xf4\x27\xf4\x0b\xc3\xa0\xd8\xe0\x40\x34\x0e\x3b\x54\x9c\x29\xf4\x13\x7b\x4d\x22\xe8\x8d\x39\x63\x08\x06\x8d\xc3\xd0\x56\xc1\xd6\x55\xf0\x1f\x41\x05\x89\x64\x18\xee\xb9\xe3\xcb\xbf\x1d\x8f\xc7\x63\xf7\x35\x30\xfe\xfc\x1f\x96\x14\x5a\xa4\x4b\x2c\xc9\x9e\x60\xdb\x99\xfc\x60\x93\x56\x59\xe3\xb5\xa7\xc3\xce\x72\x55\xa8\x48\xa5\xec\xc8\x1b\x74\x63\x15\x69\xf6\x2f\x46\xad\x0d\x86\x12\x7e\x34\xf7\xb8\x0e\x0a\x7d\xcc\x92\xf1\x99\x36\x15\x19\xc4\xeb\xdb\x2a\x64\xc0\x75\x17\x5b\xae\xc3\x20\x67\x58\x0b\x66\xe5\x1c\x13\x4b\x6e\x9e\x9b\x97\xc5\xa7\x02\x1e\x75\x90\x10\xb7\x42\xe4\xdb\x4f\xca\x86\xb8\xf5\x5c\xc4\xb8\xac\x3b\x06\x80\xb8\x42\x49\x32\x60\x3f\x47\xa1\xfb\xc4\x1c\x2e\x32\x4c\xa3\xa4\xcb\xcd\x86\xe7\xdb\x63\xbf\xdb\x9a\x8b\xd3\xb3\xd4\x82\x8c\x49\xed\x00\x80\x0b\x37\xa5\xad\x45\x28\x06\x52\x2f\xed\x89\xe6\xf6\x6e\x04\x79\xb0\x03\xb6\x27\x21\x23\x15\xd3\xba\xf6\x51\xad\x55\x8d\xc5\xbd\xd3\xd4\x55\x2c\x22\x46\x7b\x63\x9c\x2c\x90\xfe\x8c\xde\xb0\x1f\x77\x88\x6f\x35\xd7\x85\x11\x94\xab\x01\xee\xd1\xe9\xe5\x8d\xfd\xa6\xff\xa1\x0b\xe3\x50\x55\xd9\x79\x1a\x72\x0b\xcb\x15\xcb\xf9\xa3\x3f\x7e\x01\xdb\x81\xd6\x99\xd2\xc5\xfc\xe2\xdf\xa7\xea\x2a\x49\xcd\xa9\x05\x6b\x7c\x3c\x93\x95\x9f\x47\x4c\xa4\xc9\x26\x91\x0e\x5b\x87\xc2\x5d\x2d\x51\x7b\xbe\x4f\x0a\x33\x65\x3a\xbe\x37\x12\xcc\x72\x62\x06\x57\xaa\x89\xdc\xda\xa5\xe3\x1c\x53\x64\x81\x28\xb5\x69\x97\xbf\xa3\x03\x1b\x40\x12\x8b\x23\x52\x48\x93\x60\xe1\xc1\xfe\x9d\x49\x53\x9a\xdd\x4b\x1e\x86\x1c\x94\x17\x14\x77\x64\x93\x09\x05\x12\x00\xea\xa8\x60\x89\x9d\xfe\xdb\xa2\xa0\x9c\xc9\x72\x73\x68\x10\x0b\xc1\x92\x7f\x2d\x33\xdd\x55\x2e\xec\x49\x45\x01\x51\x42\x96\x1b\xbb\xa1\x06\xac\xb8\x33\x52\x7f\x62\x11\xa5\x1c\x59\xfe\x4c\x41\x80\x7c\x1c\xa1\x83\x34\x0b\xea\xc2\xe3\x05\xab\xc1\xfc\x84\xa9\x90\xaf\xf1\xef\x37\x8c\xce\x86\x2f\x47\x74\x9e\xe7\xda\xb1\xa7\xe1\x9c\x43\x7e\x6f\x11\xa3\x0d\x1d\x32\x3a\xac\x78\x1e\xa3\xb5\x3c\xbc\x55\x60\x64\xb0\xd1\xbf\xb6\xaa\x64\x8f\x89\x5e\xcf\xe4\xad\xb2\x06\x47\x26\x95\xcb\x89\x31\x82\xcb\x68\xa3\x3e\xae\x41\x08\x40\xab\xdb\x56\x80\x11\xc2\x07\xc5\x30\x01\x88\x76\x2e\x55\x2c\x0e\x23\x7f\xbc\xf5\xbe\x0a\xeb\xbf\xce\x05\xc6\x99\xc1\x49\xd1\x15\xa6\x2b\xb4\x1e\x68\x9b\xaf\x4f\x3c\x9c\x43\x54\x8e\xa9\x55\x3d\x0e\xca\x4c\x12\xf2\xaa\xba\x53\x0d\x4a\xb1\x37\xce\x20\xca\xb8\x32\xf6\x2e\xd3\xc4\xa1\x93\x10\xb5\x30\x3d\xf6\x3a\xfb\xb1\xef\x11\x0c\xbb\x03\x18\x73\xb6\xca\x55\x99\xb9\x50\x7c\x1b\x46\x88\xd3\x40\x3a\xcd\x54\x2e\xd5\x09\xdd\xa9\xce\x13\x79\x8f\x2b\xfe\xa5\xe6\x08\x93\x89\x88\xb8\x42\x81\x6b\x33\xfc\x43\x1f\x8e\x58\x22\xa3\xb4\x84\x83\x4f\x17\x3c\xba\xc7\x84\x28\x5d\x46\x5f\xf3\xcd\x7c\x7f\x90\x66\x87\xc6\x54\xa6\x29\x55\xeb\x0f\x50\x20\x99\x03\x13\xd0\x43\xc2\x19\x67\x77\xd7\xd3\xf6\xba\xef\x93\xa6\x33\xa7\xfd\xf4\xac\x2e\x10\xf8\xbf\x1f\x93\x41\xb8\xcb\x1a\xa5\xb0\xa8\x2c\x75\x67\x5c\xea\x22\xac\xc7\x45\x5a\x98\x0b\x44\x7c\xdd\x62\xda\x1f\xbc\x4e\x57\x59\x39\x37\x03\x95\x0e\x01\x08\x98\x56\x7c\x7f\x75\x37\x09\xbe\xdb\xb5\x54\xbe\xbf\xba\x63\x41\x1d\x48\x16\x9d\x8a\xa8\x70\x48\xe3\x31\x3b\xf5\x39\x1c\xea\x9a\x79\x2c\x1e\x92\x08\x43\x67\x47\x46\x2b\x9a\x49\xa0\x46\x37\x77\x9d\x23\xcb\xa7\xc9\xbe\xbf\xba\x23\x16\x4e\xcf\x9b\x83\xe9\x28\x80\x1a\x63\xd8\xb1\x53\x23\x25\x97\x4a\x1e\x21\x65\x50\x1e\x7b\x6f\xc7\x08\x2e\xd7\x11\xcf\x8a\x92\x14\x8c\x87\xb7\x63\x3b\x27\xd7\xde\x13\x62\x9a\xa5\x66\xd2\xe8\x4a\x18\x63\x00\x99\xd3\x4c\xa7\x9b\x53\x5b\x1b\xd4\x43\xc0\x01\x30\x68\x07\x09\xff\xc4\x45\x0e\x72\xb9\x65\x3c\x5f\x24\x45\x6e\xae\x61\xf8\xf1\x08\x19\xce\xd6\x36\x3b\x16\xce\x9b\xd7\x8c\x28\xd9\x1d\x4c\x70\x22\x0b\x3d\x93\x41\x00\x8c\x8b\x36\xc6\xe0\x85\x44\x32\xa0\x12\x06\xec\x8d\xa5\x36\x8d\x52\x55\xc6\xf6\x58\xcd\x5d\xf2\xbc\x6d\x86\x4a\xd4\x4c\x02\xe3\x89\x39\x5b\x95\x51\x43\xfd\xd9\x7f\xc2\x3e\xca\x87\x24\x4e\xf8\x51\x21\x74\xca\x8f\x8a\xff\xfd\x71\x54\xfb\x89\xbf\xfd\xf2\xcb\x8f\x98\x07\xb0\x8b\xce\x21\x60\x6d\x3a\xd0\xc0\xd3\xee\xa7\x70\xfc\x87\x66\x95\x1e\x30\x4f\xe7\xc9\xbd\x60\x1f\x71\xba\x3f\x12\xf9\xf1\xd3\xa6\x6d\x26\xdb\xe6\x8d\x3d\x65\xda\x80\x8a\xbe\x7d\xde\xd8\x8e\x69\x7b\xbb\x1a\xff\x6e\xb5\x30\xb3\xf5\xd5\x6a\xfc\xf6\x4b\xf8\x67\x6d\x8e\xf6\x6d\x5e\x17\x3d\xd3\xd6\xec\x16\x41\xd4\xb2\x2d\x9d\x2c\x9a\xc9\xfd\xc2\x88\x0d\x93\x45\xb0\x6a\xdb\x36\x3e\x2f\xc4\xa1\x51\xb3\xc8\x89\x3d\x00\x7d\xdd\x20\x1b\xdf\xe9\x11\x3c\x90\xa9\xdb\xb3\x6c\x03\xdc\xb3\x9b\x32\x3c\x04\xe0\xc2\xc3\x01\x3c\x3f\xf0\x7e\xbf\xfe\xd4\xde\xdd\xd3\x9d\xdd\xcd\x4c\x85\x18\xc0\x4c\x73\x63\x5e\xef\xd9\xc8\xca\xab\xbb\xda\xf8\xc8\x31\x1b\x61\x33\x09\x4e\x4c\xb7\xf5\x21\xbb\xc8\x2e\x47\x34\x99\x68\x17\x36\xe8\x5a\x62\xa1\x95\xee\x7e\x6d\xeb\x5d\xd1\x5e\x0a\x93\x1d\x3a\xaf\x5b\xcb\xc2\x0f\x4c\x11\x07\x42\xe1\xcc\x95\x7a\xbe\xe9\x4d\xb0\xee\x2b\x7e\x47\x1f\x7f\x68\xd0\xad\x3b\xf5\xf2\x03\x44\x7c\x3b\x92\xad\x0d\x97\x46\x5b\xb3\xb5\x76\x38\x96\xf0\x96\xff\xa4\x26\xdd\x65\x4f\x6a\x10\xd6\xd8\x2f\x58\xcb\x56\x65\x4b\x79\x44\xdf\x2a\x4f\xd1\x77\x50\xac\xc1\xac\xec\xf3\xe7\x5a\x31\xe7\xcd\xcb\x98\x6b\x37\xe5\xf9\x0a\x8d\x5e\x5a\x14\xfa\x4d\xcb\x0c\xfb\x38\xb6\x03\x66\xd8\xaa\x5d\xf3\x61\xfc\x21\x56\x1f\x03\x93\xca\xae\x9d\xe6\x5a\x59\x4d\xb6\xe1\x6e\x5a\xb6\xfe\x90\x49\xde\x07\xd7\x45\x2a\xc7\xcc\x54\xc0\xf3\xda\xcd\xaf\x75\x20\xcd\xec\x05\xdf\x38\xf6\x18\x2a\xcd\x86\xfc\x62\xe3\x16\x02\xf2\xc4\x74\xb7\xa1\x17\x87\x6c\xdf\x26\x10\xd3\x6d\x57\x0b\x66\x72\x62\x5f\xf1\x6c\xd7\x3a\x41\x2b\x0b\x86\x23\x96\x0b\x8c\x70\x01\x9b\x19\xf7\xa3\x4e\x9d\xeb\xe8\xc4\xd0\x40\xff\x5a\x17\xee\xb4\xc8\xfd\x69\xe4\xd9\x50\xc3\x7e\x74\xd4\xdc\x8f\x0d\x79\xa7\x44\xb7\x5d\xa4\xa2\xec\x58\xee\xa9\x58\xe5\xfb\x98\x25\x77\x55\x6a\x11\x17\x66\x17\xaf\x80\xd7\x2c\x48\xe3\xdc\x55\x7b\xff\x6b\x12\x75\x83\x68\xb8\x11\x43\x01\x51\x09\xe9\xd6\x6f\x12\x4f\xd9\x5e\xab\xac\x29\x2b\x8a\x83\xce\x82\x84\x6f\xe6\xb9\xea\x4e\x2e\xdd\x63\xbc\x6c\x11\x15\x8f\xc1\x1a\x93\x4d\x6e\xd9\x2f\x25\x4f\xf1\x68\x95\xb4\x19\x6c\xb3\xc1\xf8\xf2\xd5\xef\xd9\x04\xce\x3e\xf6\x01\xa4\x32\x40\xc6\xa0\xb4\x42\xb1\x64\x93\x89\x5c\x2b\xc9\x3b\xb3\xac\xdf\x7f\xa3\xe7\x94\x29\xd6\x5c\xcc\x55\xd9\xcc\x0a\x3b\xa0\x27\x2d\xa5\x85\x9d\xe2\xec\xbe\x5c\x88\x5c\x0a\xcc\x24\x0f\xef\x31\xfb\x5e\xaf\xe6\x2a\x5e\x16\xeb\xaf\xe6\x51\x9a\xf4\x4e\x5f\x0b\xf1\xaa\x13\xf3\xd9\x29\x7e\xb5\xab\x03\x95\xf2\x2b\x4d\x97\x0c\x9f\x31\x7c\x36\x66\xdf\xf1\xe8\x5e\xc8\x98\x65\x69\xb9\x4a\x88\xf6\x06\x2f\x1b\x49\xd5\xac\x50\xed\x18\x6a\x36\x58\xbe\x39\x04\x67\x72\xc3\xef\x31\xa5\x0c\xa9\xb0\xe6\xde\xd2\x45\x9a\xe8\x0c\x35\xf3\xa4\xb9\x76\xf7\xce\x96\x3b\x8d\x9b\xc5\xd4\xd7\x9e\x2e\x31\x5a\xef\x71\xad\x08\xe3\x54\xb1\x13\x0d\xd8\xb8\x6e\xb5\x36\xd8\xc9\x2c\x83\x8c\x16\x51\x99\x9b\x37\xa8\x31\xb8\x7b\xc1\x81\x08\x69\x91\x4a\xc9\x38\x10\x9c\xbd\xd2\xac\xcc\xac\x10\x01\xcf\x56\x0a\x38\x23\x9c\x02\xf3\x20\x4b\xa2\x7b\x44\xb6\x42\xec\x06\x73\xdd\x6b\xa4\x9e\x66\xc2\x43\x2c\xdb\x44\xc3\x12\xe9\x7d\x0e\x43\xcd\x34\xb2\x2a\xed\x59\xa7\x3d\xe3\x52\x8a\xb5\x90\xf3\x27\x24\xf7\xe9\x3f\x69\x95\x18\x14\x52\xc2\x9d\x87\xd0\x0d\x61\x29\x13\x22\xf3\xf6\x37\x7c\x97\xb9\x22\x59\xd6\x94\xf8\x44\x33\xcd\x8b\x44\x1b\x59\xd6\x3a\xe2\x9e\x54\xe9\x90\x51\xe7\xc3\x98\x9c\x5a\x58\x9c\x6a\x63\xe1\xe2\xdc\xc6\xec\x3d\xf8\x55\x82\x7b\x89\x72\x9c\x48\x5d\x02\xab\x58\x8b\x4e\x72\xe0\xe7\x00\x88\xda\x1e\x04\xef\xef\x74\x97\xb9\x98\xc6\x31\x9b\x78\x7f\x36\xb2\x42\xa1\xa7\x7a\x4f\x8f\x44\xaa\xc5\x53\x16\x5f\x2f\xd7\x0f\x60\xbe\x60\x01\x31\xd0\xe3\xb4\xf9\xdd\xb3\xc4\xbb\x66\x3e\x02\x6d\x00\xbf\x17\x72\x97\x7d\xbf\x7f\x0b\xd1\x01\xb3\xd3\x20\xe1\x3c\x3b\x0a\x9d\x3b\x4f\x69\x60\xff\x6d\xe7\x89\xb8\x92\xe5\xb1\x19\x72\x73\x09\x8a\xee\x29\x58\x11\xfd\x7b\x44\xe5\xf5\xb8\x56\x3a\xdc\x67\x76\xfe\xf0\x1e\x9d\x97\x2e\x67\x17\x04\x7b\xba\x01\x46\x94\xa7\x54\x21\xd3\x17\xb4\xda\x6d\x52\x34\x2a\xb9\xf9\x66\x56\x84\xc2\x30\x00\x2e\xc2\x16\xd5\xb2\x9b\x65\x56\x3e\x57\x4e\x98\xfd\xf4\xda\xcd\x11\x6e\x34\xe8\xc7\x6f\xf4\x25\xd4\xf7\x1c\x64\x34\x68\x65\x7c\xfe\x40\xb0\x27\xba\xc0\x1d\xc4\xd9\x5a\x3f\x15\x04\x89\xd0\x41\x99\xa9\x98\xf9\xf5\xde\x15\x69\x23\xa5\x42\x88\xeb\x6f\xb0\x5b\x41\xe3\x7a\xf7\x6d\xdf\x56\xfb\x10\xe0\xe4\xd8\xa2\x4c\xd2\x18\x59\x0a\x03\x0d\x55\x59\x15\x08\xd2\x23\x81\x3e\x92\x68\x77\xc0\xb5\x2c\xfa\x1f\xbf\xd1\x57\x2a\x3e\x64\x61\x0d\x67\xa2\x6d\xae\xeb\x1e\x61\x34\x3a\xc4\x32\x6d\xf6\x8f\x44\xa6\xba\x03\x20\xe2\xb9\xae\xe6\x03\xde\xd1\x60\x40\xbc\x2d\xca\xe5\x0d\x24\x1f\xed\x22\x65\x0a\xf2\xf2\xd9\x28\x6b\x33\xcf\xa6\x1a\x17\xf3\xd7\x35\x29\x04\xa0\xf2\xfa\x08\x67\x7f\xb8\xb9\xbc\x38\xda\xf0\x5c\xaf\x39\x90\x5e\xd8\xb2\x46\x36\x9f\x3b\x5a\x0b\x2c\xb0\x23\x91\x33\x79\xc4\x56\x6a\x84\x30\xa2\x13\xb6\x2e\x8a\x4c\x9f\x1c\x1f\xaf\x92\x62\x5d\x2e\xc6\x91\xda\x1c\xfb\xa1\x39\xe6\x59\x72\xbc\x48\xd5\xe2\x38\x17\x10\x48\x72\xf4\x76\xfc\xd5\x5b\x98\x99\xe3\x87\xb7\xc7\x00\x1e\x19\xaf\xd4\xbf\x9c\x7f\xf5\x6f\x5f\xff\xde\x14\x9c\x6d\x8b\xb5\x92\x27\x84\x51\xda\x59\xf6\x11\x5e\x13\x8e\xf1\x93\x5a\x2d\xff\x36\xfe\x32\x6c\x06\xbd\xba\x51\xb1\x48\xf5\xf1\xc3\xdb\xb9\x9d\x98\x71\xd6\x91\x31\xe3\x1f\xa1\x17\x9f\x21\xf4\xe2\x3e\x29\xfe\x11\x7a\xf1\xab\x86\x5e\xf4\x57\xb9\x9c\x8c\x01\x8e\x6c\x2f\x1f\xcd\xef\x4e\x46\x5a\x4f\xc4\x3e\x39\xd4\x72\x38\x84\x81\x71\x07\x1c\x11\x03\x13\xd8\xd5\xba\xeb\xee\x32\x1d\x16\xc7\xa1\x79\x6a\x3a\x6f\x17\x83\x78\x40\x00\xe8\x98\x44\x60\x2b\x44\x0b\x69\xc6\x93\xb6\x80\x8a\x20\x6f\xcf\x01\x43\x88\x79\x44\xda\x49\xcf\xfa\xa4\xdb\xa2\x8c\x53\x22\x9e\x3f\x4b\xe2\xad\xd6\x3a\x10\x13\x3a\xb8\xfc\x86\xde\xdd\x43\x35\x26\x94\xf4\x41\x23\xfa\x82\x29\x52\x9e\x3b\x37\x0a\x75\xf7\x89\x79\x51\x52\xfc\xda\x62\xba\xd5\xa3\xcd\x87\xf2\x1c\x59\x44\x3c\x5e\xbd\x5f\x06\x11\x5c\xa4\xd0\x16\xdb\xae\x8e\x66\xac\xb9\x7e\x5a\x70\xc0\x04\x29\x88\x9d\x2f\x18\x91\xd5\x89\xb6\x15\xda\xd3\xd8\xb2\x2f\x99\xc3\xdd\x92\x3c\x66\x65\x9e\x29\x2d\xf4\x98\xbd\x57\x39\xd2\x7a\x11\xe7\x8e\x0f\x78\xb8\x7e\x7f\xca\xde\x7e\xf3\x6f\x5f\xcf\xe4\xeb\x16\x65\x08\x0e\x51\x95\xaf\x28\xfe\x02\x54\xa0\x0d\xd7\x85\xc8\x8f\xf3\x65\x74\x8c\x47\xc7\xb1\xf9\xfe\x88\x2a\x3d\x52\xcb\x23\x97\x22\xe1\x88\xd8\xe2\xc7\x9b\xf8\x4d\x17\x32\xb1\x5d\xe1\xfe\xd5\x2e\x3d\x93\x0e\xc5\xbc\x6d\x7e\xf7\x0b\xd6\xca\x16\x42\x45\x84\xb4\x10\x0d\x1a\x0b\x52\x31\xaa\xa5\x4b\xea\x83\x71\xbe\x98\xff\x4b\x2d\x5b\xfe\xf1\x5d\xaa\x16\xfa\x8d\x23\x80\xe5\xda\xd6\xe1\x19\x19\xdb\xe4\x76\x63\xcf\x1d\x72\xfb\xa6\xa1\x78\x49\xb3\x9a\x95\x89\xe1\xb4\x0d\x19\xf8\x76\xa1\xe1\x75\x41\xe4\xa3\xe2\xb9\x2a\xa5\xcd\x9a\xa1\xa4\x50\x4b\x80\x39\xc1\x35\xc9\xa2\x34\xc1\xb3\x00\xd8\x3f\xc7\x3d\x95\x8b\x0c\xb5\x0f\xf0\x81\x75\x0f\xf7\x81\x99\x63\xf6\x8d\xf3\x4b\x64\x8e\x39\x74\xdc\x49\x30\xfe\x4a\x03\x7e\x68\x28\x05\x6e\xa5\x21\x08\x24\xf3\xfe\x5e\xb4\x81\x93\x03\x3e\x73\xb5\x4f\xd2\x90\xf1\x1c\x34\x78\x71\x54\xa8\x23\x20\xed\x03\x2a\x38\xcc\xe5\xd4\x05\x41\x02\x94\xc6\x90\xe3\xde\xbc\xdf\xa3\x9d\x78\x6b\xfb\x14\x34\x94\x14\x56\x8d\x0c\xe8\x04\x49\x4f\xa4\x14\x39\x79\x80\xf7\x6a\x06\x03\x31\x1c\xe1\x54\xee\x46\xa4\x7b\x33\x45\x98\x67\xc7\xc5\x23\xf2\x40\x08\x8c\x19\x5c\x4d\xd6\x6a\xa3\x8c\xae\xab\x4a\x1d\x3c\xc4\xab\x2d\x28\x13\x9d\x8a\xf9\x86\x67\xa8\xaf\xfe\x7a\xbd\x31\x5b\xcb\x3c\x42\x13\x74\xf8\xd2\xa0\xd4\x65\x8b\x6a\xb2\xa6\x3d\xed\x77\x59\x76\x76\xaf\x1b\x40\x08\x6d\xc0\xe5\xb7\xe6\x0f\xc2\xe6\xce\x48\xfe\x66\x2e\xbd\x66\x49\xb9\x6b\xa4\xd3\x40\x10\xd0\x86\x5c\xd4\x21\x7c\xd3\x9e\xba\x9d\x6c\x31\xe5\x66\xe0\x1c\xb8\x20\xab\x3e\x13\xc0\x25\x86\x1d\xd9\x78\xa3\xa3\xd6\x80\xa3\xae\x7d\x09\x76\xb5\xd2\xdc\x4c\x2c\x5f\xfa\xb0\xa6\xde\xb8\x02\x88\x1a\xbd\xd9\x6e\x4f\x37\x09\xd1\x69\x38\xc6\x28\x10\xac\x6e\xd1\x05\x72\x1e\xbe\x19\x21\x71\xdd\x90\xb1\x83\x4a\x70\x71\x36\x46\x30\xd8\x0b\x5d\x03\x38\xcc\xfe\xba\xcb\x9c\xd9\x86\x6f\x47\x86\x5e\x1f\xbd\x6c\x5a\xd9\xb0\x2c\xb8\x0f\x1f\x7c\x72\x64\x80\xff\x2e\x4a\x78\x7e\x71\x79\x1b\x22\x9b\x12\xec\xed\x51\xb4\x16\xd1\x3d\x58\xd3\xf0\xc8\xc3\xcd\x40\xc1\xf8\x00\xb7\xf6\x29\x55\x0b\x65\x81\x32\x5b\x97\x65\xc6\x65\x5a\x52\x39\x8b\x13\x9d\xa5\x7c\x0b\x90\x04\x89\x71\x8a\x1e\xce\xe0\x02\x7c\x8d\x28\xd8\xe7\x4c\xe8\x3f\xd3\x66\x56\x26\xfe\xbb\xa1\x63\xe9\x81\xe7\x7e\x30\x9b\xf2\x80\x69\xb1\xe1\xb2\x48\xa2\x99\xdc\x08\x2e\x43\x04\x2b\x41\x32\xcc\x20\xc7\x4a\x50\xbe\x84\xe5\x52\x44\x85\x27\x5c\x86\x4b\x88\x1b\xa9\x7d\x7b\x70\x58\xdf\xdd\xce\xdb\xd9\xf5\x1f\x6c\xda\xe7\x64\x03\xf8\x68\x5a\x43\x74\x34\x3e\xd1\xd5\x08\x29\x78\xe9\xc8\xb5\x97\x5a\xf8\xcb\xae\x29\xb6\x10\xc5\xa3\x00\x3e\x21\x22\x40\x68\xd3\xf1\x0f\x4e\xc3\x74\x48\xf0\xe0\xc4\xf1\x0f\x12\xbd\x7c\x83\x40\x98\x36\x58\x08\xbc\x74\xc4\x87\xb2\xc6\x60\xf8\x8a\x28\x19\xc0\x14\xf8\x8a\x8c\x9a\xaf\xe0\x98\x36\xb7\xe0\xfc\x41\xc4\x33\x59\xa5\x95\x24\x9d\xd1\x6f\x38\xe6\x13\x8c\x3e\x8f\xb4\xb1\x63\xdc\xcb\xd1\x73\x06\x54\x5a\x9e\x44\xdb\x91\x0e\xec\x48\x78\x8a\x9d\x7e\xc9\x5b\x95\xcd\xb5\xdc\xf7\x32\xec\x73\x90\x52\x02\x41\xca\x37\x5c\x41\xff\xb8\x45\xe9\x48\xf3\x90\x51\xd7\x81\xc5\xc9\x68\xdd\x30\x83\xb7\x95\x31\x93\x96\x4d\x66\x59\xa6\xc8\x92\xde\x15\xb3\x43\x1c\x9a\x36\xf2\xf5\xd7\x8b\x80\x76\x46\x57\x16\xe4\x6c\x75\x20\x9d\x00\xb8\x8f\xb2\xce\xae\x7a\x21\x75\x09\x2a\x85\x4d\xd7\x08\x5e\x89\x95\x28\xe0\x34\x8f\xcb\x14\x01\x9b\xe0\x4e\x01\x3e\x4e\x9e\xa6\x2c\x29\xf4\x4c\x3a\xfa\x50\x0c\xcc\x01\x09\x6b\xfd\x2d\x31\x5d\xb9\xa0\x0a\x28\x16\x1e\x73\x09\x7a\x58\x12\x25\x45\x23\xdc\x61\x1b\xa6\x38\xcb\x32\xc1\x31\x96\x1f\xa7\x6d\x26\xc3\x3b\x57\x7d\x12\x28\xf0\x1d\xb2\xe2\x3f\x47\x0c\xfa\x0e\xc3\xad\xa9\xe2\x49\x28\x1b\xec\x9d\xb9\x70\xd9\xec\xe5\xd8\x5a\xe2\x0f\x22\x54\xb2\xb9\xd5\x14\xda\x3a\x50\xfc\xbd\x15\x62\x7a\xa2\x32\xe5\x39\x06\x33\x2d\xcb\x94\x25\xcb\x20\x11\x3b\xcc\x01\x92\x47\x9a\xe9\x8a\x14\x9c\xd5\xd6\x85\xa2\xf9\x46\x04\xbc\x35\x64\xde\x49\x03\xc4\x0f\x66\xc4\x40\x28\x89\x29\xeb\xcd\x98\xbd\xf3\xf4\xb8\x38\xc3\xb0\x27\x02\xd2\xe9\x44\xa3\xf8\x73\xed\x0d\x28\x17\xa0\x77\xa6\x89\x4a\x9a\x1d\xe9\x76\x5d\xc7\x0c\x42\xf2\x9a\x61\x70\x22\x9b\xba\x68\x37\xc2\xbe\x95\x72\xc5\x7c\x5a\x03\x19\xb9\x0d\xd1\xd1\x40\x7b\x2a\x0c\x6c\x64\x48\xd8\xfd\x84\x86\x3a\x42\xf4\x96\xc6\x6e\x76\xe4\x7d\x87\x79\x1c\xd8\xd4\x20\x8b\xe2\xf0\x86\x06\x2b\x27\x04\x8f\xf5\x19\xd9\x15\x2f\x86\x22\xc9\x5c\xe0\xda\xf0\x86\xb6\xa2\xf6\xfa\x34\x13\xa4\xc7\xc0\x76\x4e\xcc\x37\x4f\x6c\xa8\x2e\x17\x47\x28\xa0\x5d\x3e\x24\x10\x15\x82\x47\xeb\x2a\x87\x84\x65\x7a\x76\x3d\x80\x18\x42\xd8\x8f\xc3\xe9\x2f\x26\x7e\xcd\x41\x22\x49\x66\x9a\x3f\x66\x97\x52\x20\xce\x53\x2d\x83\x43\x85\x1a\x40\x19\x27\x21\xd9\x8e\x93\x72\x0b\xd3\x30\x79\x6f\xa9\xb5\xcc\x96\x1b\x31\xee\x4b\x07\xa9\x87\xcb\x06\xa5\x48\x87\x2e\xd9\x96\x9a\xea\x00\xf5\xb2\x1f\x41\x45\xfb\x9d\x3f\x80\x4b\x0f\x97\x00\x6d\xfd\xe8\x3f\x2d\x3b\xe3\x1e\xdc\x2d\xce\x06\x3b\x54\xd7\x0d\x43\xf0\xf3\xbe\xf1\xbd\x5a\x57\x31\xb3\x03\x12\x44\xde\x5d\xbc\x3b\x7b\x3f\xbd\xa8\xe6\x5f\xfc\xe3\xdd\xd9\x5d\xf5\x97\xeb\xbb\x8b\x8b\xe9\xc5\xf7\xe1\x4f\x37\x77\xa7\xa7\x67\x67\xef\xaa\xef\xbd\x9f\x4c\xcf\x6b\xef\x99\x9f\xaa\x2f\x4d\xbe\xbb\xbc\xae\xe5\x91\x6c\x49\x02\x79\x3b\xfd\x70\xf6\x6e\x7e\x79\x57\x49\x45\xf9\xee\x3f\x2e\x26\x1f\xa6\xa7\xf3\x96\xf6\x5c\x9f\x9d\x5e\xfe\x74\x76\xbd\x27\x61\xa4\xef\x6f\xeb\x90\x3e\x07\xb6\xf0\xc9\x79\x45\x27\x6c\x99\x27\x42\xc6\xe9\x16\x23\x45\xec\xcd\xb6\x06\xfd\x0e\xcf\xde\x64\x23\x54\x79\x48\xc0\xc7\xed\x5a\x30\xf5\x20\x72\x60\x01\xc3\xd2\x88\x32\xc4\x33\x0e\xd4\x6b\xcd\x45\x91\x37\xbd\x02\x3b\xa3\xea\x8a\x7c\xeb\xe2\x36\x77\x35\xc7\x33\x48\x52\x25\x2c\x13\xf9\xae\xb6\x80\x66\x94\x97\x59\x91\x2c\xba\x43\x78\x06\x07\xde\xf7\xbd\x7b\x23\xdf\x71\x3b\x39\xdc\x45\xbb\x60\xac\x44\xb2\x1c\x02\x93\x87\x12\x9e\x9a\x2e\xd7\x7d\x6d\xa1\xc5\x59\xb9\x48\x93\x88\x25\x71\xdd\x9e\x42\x7c\x18\x60\x32\xae\xd3\xa2\x67\x22\x07\x55\xd5\xdc\x00\xb2\x5c\x1c\xf1\xb2\x58\x23\x85\x27\x05\xce\x50\x12\x9b\x99\xd4\x22\xca\x05\xfa\x02\x84\x06\x23\x2d\xa6\x43\x0d\x6a\x82\xc6\x10\x83\x4d\x0c\x64\x79\xe3\x20\x45\x4d\x87\x8f\x00\xbf\xc4\xd2\x07\x18\x49\xf1\xfd\x9d\x43\x43\x2d\x4e\x30\xe1\x6a\x00\x0b\x83\x13\x1e\x1f\xda\xa4\xaa\xa6\xdf\x46\x52\xbb\xa4\xa2\x38\xc9\x36\xd2\xa8\xbd\x1b\xfb\xd6\x58\xb8\x50\xaa\xa1\x37\x54\x3a\x3d\x3a\xcd\x05\x1c\x22\x04\x69\xb0\xf6\x0b\xc0\x35\x51\x64\x12\x04\x24\x99\xab\xda\x42\xac\x79\xba\x44\x8d\xc3\x4c\x4d\x3b\xab\x08\x96\x7f\xab\xee\x85\xbc\xc6\x09\xfb\x55\xc4\xa1\xc4\x9b\x8f\xe7\x34\x72\x16\x21\x6f\xc2\x34\x6d\xb4\xab\xca\xc6\x85\x82\x32\x55\xe0\x3d\x21\x78\x8c\x01\x48\x3e\x63\x81\x0d\x29\x5d\x2e\x93\x4f\xa6\xc0\x99\x14\xad\x9c\xed\x00\x26\xb3\xec\x92\x4e\x2e\x03\x70\x0e\x29\xfa\xee\x85\x84\x7c\xaa\x40\x0e\xb8\x7f\xcd\x0e\xb3\x9f\x37\xe7\x62\x87\x41\x1f\x6c\x7e\x49\x25\xcd\x6c\xe8\xe5\xb1\xe3\x54\x60\x44\x98\xe3\xe0\x80\x75\x73\x7a\x3e\x3d\xbb\xb8\x9d\x9f\x5e\x9f\xbd\x3b\xbb\xb8\x9d\x4e\xce\x6f\xfa\x6e\xbf\xe7\x88\xe2\xab\xed\xbe\x7a\x30\x9b\x93\x10\xc7\xb4\xf3\x7c\x28\xbb\xeb\x94\xdf\x76\x30\x25\xfb\x5b\x9f\xc4\xd9\x3c\x4e\x74\x64\x8e\xbf\xed\x5c\xc8\x18\x92\x5d\x3c\x69\xa9\xb6\x17\x55\xef\x85\x7b\x83\xb9\x37\xac\x04\xc1\xd3\xee\xc1\xae\x68\xf7\x1c\x20\x99\x60\x86\xcc\x85\xd9\xfc\x71\x85\x63\x64\xbc\x3f\xc3\x99\x29\xee\xb0\xbe\x55\x8b\xa8\xf7\x09\xdb\x9b\x68\x5d\x02\x95\x89\x7d\x0d\xf0\xa8\x1d\xa3\x42\x0c\xc4\x61\xc6\x8d\x24\xc8\x42\xcf\x12\x3d\x93\x1b\x2e\x63\x5e\xa8\x7c\xdb\xd1\xc5\x7e\xc2\x33\xdc\x36\x55\x11\x1a\x1e\xd9\x52\x88\xd8\xce\x02\xbe\xca\x65\x7d\x29\x61\x5e\x8e\xdb\xcb\x1f\xcf\x2e\x6e\xe6\x67\x17\x3f\xcd\xaf\xae\xcf\xde\x4f\xff\xe4\x60\xb2\x19\xd7\x6d\xc9\xa5\xb3\x5c\x18\xe9\x62\x69\xce\x5a\xe5\x0b\xa6\x6c\xb6\xe5\x50\x9a\xce\x64\x39\x93\x56\xb2\xe4\xbe\xf8\x75\xae\xca\xd5\xba\xbd\xa0\x7a\x2b\xaf\x26\xb7\x3f\x3c\xa9\x99\x40\x42\x89\x79\x5d\x71\xb7\x35\xe1\xc2\xc9\x92\xe4\x1e\x62\x8c\x6b\xcd\x03\x2a\x55\x78\xb5\xcd\xcb\xd0\x21\xd1\x9e\x74\x7b\x69\x0a\xad\x9d\xca\x7f\xcb\xeb\x5d\x0b\xe8\x36\x90\x9b\x95\x63\x04\xe0\xeb\x98\x1c\xbc\x51\xda\x49\xcb\x6f\x95\x13\xec\xab\xa3\x54\xac\x56\x22\xc6\xe5\x55\x2f\x98\x6c\x70\x24\x02\x23\x7f\xae\xb7\x8d\x22\x25\xf0\x3d\xe0\x60\x76\x78\xaf\xfe\x02\xfc\xca\x7d\xd2\x2e\x2b\x4e\x89\x48\x0a\xfc\x9b\x05\x97\x1d\x8e\xe4\xfd\xf1\x60\xed\xc5\x5f\xe6\xcc\x85\xea\x91\xc1\xc4\xba\x0c\xfc\x3e\xe8\x02\xbc\x1c\x8e\x6f\x75\xed\xb8\x16\x59\xca\x23\xe1\x02\x5c\x90\x01\x18\xee\xf5\x4f\x71\xe0\x51\x9a\x64\x49\xf6\x96\x20\x7d\xb2\xcf\x0c\xd7\xb6\x04\xc0\x72\x7b\x6d\xe5\xf1\xcb\x9b\x56\x76\x5e\xdc\x88\xf7\x13\x0c\xcd\x98\xa7\x92\xe2\x22\xd0\x16\x05\xc9\x5f\x3b\x31\xeb\x83\x96\x43\xad\xe6\x9f\x68\xe2\xf1\xce\x5c\x35\x74\x73\xcb\xac\xeb\x96\x87\x53\x1d\x77\xd9\x0b\x8b\x22\xdf\x49\xc6\xfd\x1c\xee\x88\xab\x5c\x6d\x12\x2d\x26\x45\x91\x27\x8b\x32\xcc\x46\x3c\x10\x30\x57\xb9\x9c\xf8\x0e\x67\xb9\x8a\xcb\xc8\xd2\x67\x41\x6f\x3d\xec\x87\xac\x7c\x56\xeb\x88\xd9\x91\x59\x7d\x74\x73\x13\xf1\x11\x44\x7b\x20\xbf\x5b\x9b\x8f\xcd\x0a\xc6\x0e\xdb\xdf\x95\x3d\xca\x9f\x39\x66\xb4\x7b\x30\xed\x1a\xe8\x17\x06\xce\xec\xeb\xa0\x01\x77\xa0\xa6\x68\xb9\x2c\x38\x3a\xd0\xab\x3a\x4a\x17\x5b\x8e\x3b\x6a\x86\x81\xbb\xfa\x61\x63\xaa\xe1\x54\xa8\x37\xac\xb9\x46\x75\xbe\x88\xd6\xd5\x86\x43\x6f\xaa\xac\xc1\xf5\xe6\x3a\xf5\xf8\x30\xb3\x49\x2f\x37\xda\x08\x0d\x0d\x09\x19\xb6\x2b\x19\x60\x5d\x3a\xeb\x4e\xfb\x3d\x86\x5c\xcc\x7f\x29\xc5\x90\xac\xce\x36\x54\xe3\x8f\xf0\xd9\x5e\x40\x4a\x82\xd8\x2d\x67\x7b\x2d\x92\x8d\xd1\x80\x78\x1e\xad\xd9\x82\x6b\xa2\x23\x0c\xd9\x12\x30\xfd\x3c\x4b\xcc\x57\x3c\x2a\x28\x1d\xaf\xad\xd6\xa6\xe4\xbd\xb5\x50\x48\xa3\xd6\x7a\xab\x47\xdb\x72\xdb\x37\x00\x43\xac\xd7\xb6\x19\xd3\x77\x83\x7c\x08\xa1\x1e\xee\xee\xc9\x78\xc4\xc2\xe9\x94\xf2\x52\x46\x6b\x96\xa5\x1c\x09\x25\xd6\x5c\xa3\xa0\xb0\x08\x1d\xbe\x48\xd2\xa4\x00\x9e\x30\x74\x1c\xd7\xd6\xad\xb9\x3c\xf3\xfc\xde\xa6\x5b\xe0\x9e\x14\x6e\x97\x28\x39\x10\x09\xed\x7a\xf5\x59\xb1\xd0\x5e\x10\x86\xc2\xbd\xdf\x66\x27\x1c\xb4\x9f\x0e\x73\xbc\xc1\x66\xf7\x7d\x19\xe6\x1d\xa2\x12\xaf\xea\x9f\xd7\xc6\x1b\x09\x28\x0f\x22\x09\xde\x19\x97\xf5\x22\xa0\x73\x1f\x55\xb6\xfb\x18\x6d\x76\xb8\x45\x09\x1e\x0e\x7c\xa2\xc4\x49\x03\x94\x98\x7a\x5a\xa5\xd6\x7d\xbf\x4c\x15\x2f\x76\x47\xb9\x61\x96\xa4\xae\xb2\x63\x55\x2e\xba\xf2\x72\x60\xab\x9e\x1e\x43\x67\xc5\xff\x73\xd9\xdc\xc3\x73\x94\x17\xc2\x48\xdf\xa7\x0d\xa8\xf9\xfa\x08\x3e\x6f\x2f\x9c\xa2\x98\x07\x33\x52\xb8\x65\xe0\x73\xf5\x39\xdd\x1f\x20\xa9\x2d\xdb\xa9\xae\xe4\x1d\x14\xf3\x78\xd8\x7c\x25\x72\xcf\x52\xda\x9f\xfe\xeb\xeb\xaf\xfa\x44\x23\xfe\xb1\xe4\xe6\x00\xb8\x5c\xde\x20\x41\xd8\x21\x9d\x2e\x92\xe6\xb6\x6a\x17\x03\xf5\x5a\x6f\xab\x5e\xda\x70\xe1\xf7\x66\x3b\x68\xeb\xcd\x8d\xf9\xba\xbf\xd8\x9d\x56\xac\xb1\x59\x9e\x28\x20\xca\x52\xcb\x8a\xae\xd1\x22\x89\x5b\xeb\x3d\x60\x24\x7f\x29\x45\x29\xcc\x02\x5a\x94\xf1\xaa\xe9\x2c\x19\x70\xe1\xf2\x5d\x5a\xab\x47\xb6\x29\xa3\x35\xb3\x85\xb3\x58\xa4\x7c\x5b\x55\xa3\xcc\x5d\xa3\x50\x40\xa1\x3c\x88\x2f\x30\x20\xbe\x8f\x4a\x5d\xa8\x0d\xe0\xd4\x7d\xb9\x79\x29\x61\x97\x33\x6e\x77\x57\xdb\x81\x56\x21\xf4\x7c\xa2\x87\xfc\xe6\xea\xec\x74\xfa\x7e\x5a\x73\x4f\x4f\x6e\x7e\x0c\xff\xfe\xf9\xf2\xfa\xc7\xf7\xe7\x97\x3f\x87\xbf\x9d\x4f\xee\x2e\x4e\x7f\x98\x5f\x9d\x4f\x2e\x2a\x4e\xec\xc9\xed\xe4\xe6\xec\x76\x8f\x9f\xba\x59\x6b\xf7\x44\xf0\x80\x6f\xd4\x22\xe7\x6d\x32\x1d\x6b\xae\xa2\x5a\x4f\xd8\xc4\xb2\xaf\x56\xf8\x81\x2d\xd6\x00\xc0\x49\x29\x62\x2c\x11\x92\xf0\x8e\x17\xfc\x94\x17\x3c\x55\xab\x31\x9b\x30\x8a\x2b\xc0\x78\x11\x6d\x54\x42\xa2\xa6\x34\xb3\x83\x45\x18\xbd\x30\xf2\xa6\x20\x9f\x2d\x5c\x2d\x89\x14\x36\x15\x61\x5e\x29\x1b\xe4\x39\x93\x67\x0f\x42\x16\x25\x28\xda\x3c\x4d\x19\x55\x6b\x5f\x08\x58\x41\x6c\x2b\x75\xb2\x49\x52\x9e\xfb\xc4\xce\x97\x54\x16\x5c\x76\x6d\x5b\x1d\x2b\x5d\x93\x72\xc2\xda\x03\xee\xa6\x0c\xda\x7d\x7a\x3e\x05\x45\x37\x2a\x6c\xd6\x42\x5b\xf9\x4c\x22\xe9\x28\xd5\xb8\xe1\x10\xc3\x54\x28\x32\xd0\x63\xf5\xf4\x72\xf7\x42\x3c\x48\xb1\xb2\xae\xac\x97\x32\x4c\xb8\x46\xda\x7f\x9c\xc9\x22\xdf\xf6\xd6\x5e\x6f\x81\xd1\x41\xc3\xbd\x8e\x20\x91\xd5\x64\xcf\x68\x3f\x65\xb6\xf4\x0b\x50\x69\x2d\x5e\x97\xdc\x7b\xce\x8b\x87\xf0\xa8\x8e\x2b\x51\x6a\x4e\xde\xdf\xea\x38\x84\x2c\x60\x30\x0a\x0b\x55\xca\x58\x13\x78\x73\x93\xc8\xe3\x0d\xff\xf4\xc6\xf6\x14\x49\x6c\x5c\xca\x35\x60\x4c\x14\xa9\xb9\x0f\x6e\x8d\x90\xdb\x3d\x5c\x33\xb9\x63\xbc\xf6\xdf\x09\xac\x64\x05\x93\x81\xb7\xef\x20\x0c\xf5\x41\x6c\xdb\xe6\xaf\x91\x36\x93\x85\xb9\x1f\xa0\x90\x2c\x17\xe6\x45\x87\x71\x4d\x11\xba\xec\xfe\x86\x58\x96\x4a\x6a\xef\x76\xd9\x1d\xc2\x46\x0e\xda\x36\xad\x80\x95\xfe\x8a\x4f\xef\xbc\xa7\x54\x93\x99\x33\x84\xaf\x58\xcf\x09\xc5\xee\x90\x5f\xde\x4c\xd6\x5f\xd5\x82\x2d\x21\x90\x8d\xec\x04\xb9\x00\x4f\x19\x4c\x85\x4d\xd4\x03\xbc\x7a\x0d\x4c\x8c\x5d\x02\xa9\xd0\xe0\x3f\x92\xe6\x52\x2d\x7e\x29\x09\x02\xf0\xf6\xcb\x61\xe7\x6c\x81\xd9\x1e\x90\xde\xbb\x9e\x07\xc1\x9d\xe5\xd0\xae\x52\x26\x6d\x64\x9b\xd7\xa5\x34\x47\xf1\x73\xa0\xa7\xfa\xbb\xc7\x6b\x95\xd2\x9f\x7b\x63\xcd\xac\x67\x27\xc7\xf7\x5f\x8c\xb9\xf9\xa7\x1a\x61\x33\x55\x07\x91\x0d\x54\x7a\x78\xa0\x2d\x78\x74\xff\xc8\xf3\x18\xcd\xff\x00\x67\x1a\xb3\x1f\xd4\xa3\x78\x10\xf9\x88\x45\x22\x2f\x38\xf1\x15\x6a\xc0\x73\xc0\x86\xa2\x72\x66\x12\x02\x7d\x90\xfc\x51\xea\x32\x17\xac\x48\x56\xeb\x42\xe4\x21\x1a\x47\xe5\x46\x1c\x15\x48\x55\x9b\x89\x88\x08\xd9\x3a\x06\x60\x99\xf2\x87\x26\x01\xe3\x53\x98\x64\xd8\xd4\x45\x2b\x5b\x77\xb7\x4d\x7e\xb6\x0b\x3f\x45\x03\x46\x42\x13\x29\xb4\x46\x6c\xa5\x52\x2e\x57\xe3\xf1\x18\x12\x7d\xbc\x19\xb4\xd0\xa9\xc0\xd0\x81\xee\x50\xfa\xa9\x52\x5a\xa4\x5b\x47\x22\xe6\xe2\xa8\x00\xb8\xfb\xa9\x10\x52\x27\x68\xd8\x6a\x59\xfe\x37\x75\xe7\xd2\xe7\xf5\xc5\xb5\x5f\xcf\x07\x47\xe9\x76\x94\x03\xb9\x54\x07\x94\x84\xef\xb7\xdf\xbc\x9e\x14\x75\xde\x5e\x96\x54\x72\x68\x28\xf5\x4f\x2a\xe9\x80\x82\x3c\x89\x6c\xb4\xb5\x24\x22\x42\x7a\x52\xf8\x69\xfb\x98\x35\x22\x82\x0f\x08\x06\xde\x11\xd7\x3b\x30\xa4\xb7\x8f\x21\xe0\xa6\x3e\xdd\x83\xb7\xc5\xfe\xf4\x6e\xad\x1d\x1a\x18\x32\xed\xb9\x0d\x86\xa8\x4e\x18\x75\x99\x6e\xe1\xc6\xe5\x02\xa8\xc1\x3d\x10\x07\x5e\xa5\x8a\xd3\x0c\x42\xf9\xbc\xd7\xcd\x11\xd4\x05\x4e\x36\x5d\xa8\x9c\xaf\x04\xdb\x88\x38\x29\x37\xad\xc2\xc6\x35\xf7\x10\xf8\xa8\x4a\xcb\x4d\x37\x55\xe8\xa1\x0a\xb4\x6f\x24\xfe\xeb\x14\xaa\xeb\xcf\xa1\xe3\x22\x23\x6c\x96\x4d\x6a\x2f\xba\x90\x68\xac\xcd\x49\x99\x27\x1a\x58\x76\x9f\x12\x39\xeb\x8a\xc1\xa2\xc1\x01\xbf\xcd\xd0\xc8\x5e\x99\xdd\x23\xeb\x19\xa5\x4f\x34\xce\x2a\x78\xed\xbb\x0f\x85\x3a\x28\x75\x78\xae\xbd\x5c\x95\x0d\xee\xa9\x5e\x40\x09\x50\x1b\x83\xcc\x1b\x84\x9a\x83\x02\x09\xda\x53\x28\xb6\xb4\xb1\x98\xf7\x22\xa0\x3e\x8c\x21\x27\xc7\x23\x52\x3e\xfd\xf8\x8d\xb6\x20\x20\xc2\x69\x79\x8d\xa5\xf0\x95\xa0\x07\xe8\xe1\xad\x85\xe7\x61\x0f\xb1\x08\x20\x28\x8c\xb9\x2c\x5a\x0b\xf0\xe8\x55\x28\x0b\x3f\xf9\x89\x97\x69\xfb\xeb\x54\x3e\xbc\x8a\x39\x5b\x27\x3f\xdf\x30\x1c\x6a\xca\x9f\x90\xef\x6a\x68\x50\xc8\x7e\x80\x20\x0c\xd7\xfc\x09\x9a\x60\x65\x1e\x70\xd0\x6d\xfa\x0e\x33\xec\xa2\x88\xd6\x5e\xf3\x00\x82\x46\x47\x2c\x49\x09\xb9\xa9\x9f\x1b\x9f\x11\x02\xb1\xd7\x21\x88\x35\x59\x49\x15\xa6\x52\x52\x52\x80\x2b\xce\x08\x20\x15\x16\xcb\x92\x62\x3f\x52\x70\x20\x2b\xe1\xbe\xa5\x56\x28\x44\x80\x51\x3f\x2b\x7e\x6a\xb8\x52\x24\x48\x57\x65\x61\xd6\x78\x27\xa2\xfc\xce\xf5\x4c\x01\x55\x02\x90\x99\xac\x56\xd5\x18\x24\x0b\xe5\x4b\x72\x81\x04\xdf\xda\x68\x6f\x45\xf2\x60\x36\x6a\x73\x59\xbb\x05\x0a\x12\xa0\xb9\xf6\xc8\x6d\xcb\x02\x96\xf0\x7b\xb1\xd5\x61\x32\x69\x5a\x51\xac\x6b\x41\x26\xa6\x3f\x34\x5f\xfb\xa7\x02\x06\x6e\x9e\xfb\x94\x90\xfd\xce\x32\xac\xf4\x83\xf9\x78\x07\x46\xb8\x51\xb8\x59\x83\x3e\xd8\xd5\xdb\x14\x49\x4c\xf8\x71\xa6\x39\xf4\x30\x40\x00\x79\x86\x30\xce\x30\x72\x09\x2e\xbe\xe6\x7e\x3b\x93\x94\x48\x20\x38\xe4\x8c\xc0\x69\x4e\x1b\x45\xe0\x23\x7d\xf9\xb6\xc2\x1e\x04\xd4\xaa\x96\x66\xb6\x5a\xa5\xf5\x2e\x43\x5e\x3e\x58\x1e\x50\x35\xc6\x28\x5b\x1b\x5e\x6b\x85\x4f\xc4\x96\xd2\xe4\x76\xe2\x49\x83\x40\x40\x7c\x93\xd8\x45\x31\x2b\x39\xde\x7e\x22\x61\x86\x6f\x22\x5b\xa1\x9c\x16\xc8\x79\x73\x76\x7a\x7d\x76\xfb\xd9\xf0\xa6\x16\xec\x39\x18\x70\x6a\xdb\xf9\xee\xec\xfd\xe4\xee\xfc\x76\xfe\x6e\x7a\xfd\x12\x88\x53\x7a\xf4\x04\xc8\xe9\x0d\xe5\x27\x39\x55\xb2\x10\x9f\x0e\x3a\x93\xf3\x52\xce\xf9\x80\xd0\x27\x97\xa1\x68\x97\xba\x83\x85\x36\xf3\xab\xb8\xe4\x27\xc4\x6d\x4b\xa8\x13\x9b\x4e\x65\xe9\x8d\x86\xcb\x24\x4d\x21\x12\xdc\x99\xd7\x29\xca\xd0\x0c\x2a\xc8\x1f\x4b\xe7\x4b\x32\x75\x26\x17\x95\xf4\x37\x60\xf2\x5b\x9b\x4b\x30\xc6\x80\x67\x66\x00\xf2\x04\x22\x6c\x77\xa5\x60\x59\x25\x52\xf8\x66\xc0\xac\x99\xf6\x75\xd2\xd4\xd3\x24\xbe\x24\xb2\x8e\x14\xaf\xbe\xba\xa6\x5d\x71\x95\xf5\x69\xd5\x4f\xfb\xd0\xf5\x10\x37\x71\x22\x51\x31\xad\xec\xe6\x9b\xf6\xa5\x7b\xec\xb7\x00\x8c\xbb\x99\x49\x0e\x3e\x08\x5d\xf0\xbc\xf0\x13\x49\x13\x81\x89\xe1\xbc\x73\xe2\x3e\x41\x04\x9a\x5a\xd6\xc6\xd9\x88\x42\x33\xd6\x09\x78\x2a\x38\x91\xdb\x44\x69\xa9\x0b\x91\x93\xd9\x64\xf2\xf3\xcd\x4c\x7e\x67\x8e\xaf\x37\x74\x0a\x51\xfa\x2e\xac\x02\x91\x3a\xaa\x52\xbf\xd5\x50\x42\x09\xf6\x1a\x6d\xd4\x1b\xc1\xa5\x66\xb0\x35\xd2\x54\xe4\x7e\x65\x60\x7b\x84\x88\x29\x89\x36\x50\x3d\xfb\xef\xdf\x30\x02\xb7\x9a\xa1\x30\xed\x75\x69\xc4\x36\xaa\x68\xae\xa7\x2e\xa2\x01\x40\x9c\xbf\xe4\xca\x69\x09\x7c\xea\xbb\x8a\x08\xac\xdf\xba\x88\xaa\x61\x48\xbd\xd6\xd2\x2d\x16\xf7\x8f\xa5\xf4\x8c\x4b\xa9\xc7\xb9\x1e\x9e\x12\x6c\xad\x8c\x00\x75\xb9\xad\xbc\x9b\xd9\x11\x9d\xa4\x80\x72\x33\xc3\xd8\x7a\xea\xd4\xb2\xcb\x1e\x82\xfd\x80\xa2\x0e\x43\x68\x4f\x5a\x18\x95\x7c\x1a\x43\xeb\xdb\xd9\x99\xb8\xf6\x65\x98\x0b\x27\x16\xab\x2a\x55\x61\x39\x48\x1c\x3c\x94\xb0\xae\xe6\x05\x47\x7e\xb3\xb3\x8d\x44\x28\x63\xb5\x94\xf9\x81\xc9\x1f\x6f\x43\x4c\x6d\x25\x2a\x1b\x5b\x11\xf2\x39\x58\x0e\x07\xc7\x01\x33\x64\xf1\x3d\x3d\xbd\x70\x75\xcd\x39\x3e\xd1\x27\x81\x1d\x2e\x2e\x2f\xce\x42\xa8\xc2\xf4\xe2\xf6\xec\xfb\xb3\xeb\x4a\x3c\xff\xf9\xe5\xa4\x12\x93\x7f\x73\x7b\x5d\x0b\xc5\xff\xee\xf2\xf2\xfc\xac\x81\x79\x38\xbb\x9d\x7e\xa8\x14\xfe\xee\xee\x7a\x72\x3b\xbd\xac\xbc\xf7\xdd\xf4\x62\x72\xfd\x1f\xe1\x2f\x67\xd7\xd7\x97\xd7\xb5\xfa\xee\x4e\x77\xa3\x27\x2a\xdd\x68\x37\xff\x78\xe7\x6c\x40\xad\xda\xba\x8d\xab\xe9\x97\x0f\xd8\xc5\x3d\x91\x67\xfb\x96\xa3\x0d\xd7\x8f\xc3\x74\x1c\xb8\x31\x4c\x53\x07\xad\xba\xe7\xcf\x17\x5d\x19\xba\x8c\x1f\x26\xf6\xcc\xa9\x36\x7f\x0e\x24\xe0\x4e\x05\xd0\xd5\x52\x33\xdc\x52\x7a\x76\x1c\xda\x0c\x3c\x58\x2b\xde\x99\xaf\x4c\xc6\x2f\xde\x52\x5b\xc7\xbe\x76\x7a\x2a\xaf\x3d\x8c\x48\xcf\xc5\x86\xb2\xab\xd1\x41\x65\x96\x6c\x20\x89\xad\xa2\x60\x1f\x86\xb0\x7b\xd3\x0d\xb3\x72\x82\xe5\xd8\x95\xd8\xb7\x3d\x6c\x69\x37\xfb\xde\xd0\xf6\x53\x25\xcd\xb6\xd7\xa8\x5a\x06\xb4\x1b\x28\xb3\x86\xb4\xfb\x96\xeb\xfb\xa1\xed\xa6\x4a\x9a\xed\x06\xb5\xef\x49\xed\x06\x83\x77\xd1\x4e\xa3\x33\x40\x88\x85\xc5\x54\x9b\xe7\x62\xfc\xdd\x2b\x41\xfe\xec\x7e\x6d\x34\x1b\xe0\x65\xaf\x97\x19\xef\xef\xc8\x80\xd6\xb8\xed\xca\x6b\xac\xf2\x37\xf0\x14\x7a\xb8\xc8\x05\xbf\x8f\xd5\x23\xcd\x47\x1d\x19\xca\x7a\x49\xf3\xea\x00\x19\x19\x6e\x8f\x88\x22\x27\x0f\x14\xa2\xd4\x7c\xf1\x00\x93\x4b\x88\x17\x1d\x75\xb0\x20\xf5\x72\x9d\x88\x08\xa8\x9f\xa4\x9f\x9d\x99\x44\x6d\xbe\x2d\x7d\xb3\x99\x55\xd3\x22\xa2\x0e\x81\xae\x3a\x1d\x1a\x9d\xeb\x3a\x98\x58\x8a\x03\x2a\x73\x00\xd3\x2d\x72\xb8\x33\xc1\x80\x24\x12\x8c\xc9\xb9\xb9\xf0\xe4\x22\x4a\xb4\x08\x32\xc6\xb5\x9e\xd8\xbf\x1c\x96\x0a\xa5\xe0\x45\xab\xd9\xb5\xb7\x3d\x9c\x47\x45\xc9\x53\x06\xe1\x4a\xc4\xc0\x88\xb6\x4a\xfc\x25\xe2\x12\x43\x63\x0a\xb1\xc9\x20\xaa\x3f\x8c\xe9\x98\xc9\x9f\x01\x28\x81\x53\xf0\x4a\xb3\xef\x01\xf2\x60\x5f\xa6\x43\x78\xc3\x0b\x38\x8b\xff\x88\x75\xb8\x67\xe3\x99\xac\x64\x60\x0a\xbe\xaa\x24\x63\x1a\xcf\xa4\xcd\xd6\x11\xab\x48\x8f\xe1\xc6\x37\x56\xf9\xea\x98\x72\xa9\x9b\xc5\xae\xee\x17\x4a\xdd\x1f\x0b\x79\x0c\x36\xa9\xe2\x98\x97\x85\x3a\x06\xb8\x14\xce\xbf\x3e\xb6\x49\x8f\x6d\xd6\x68\x7d\xbc\x4e\x1e\x04\xfc\xdf\x78\x5d\x6c\xd2\x7f\xd1\xd9\xfa\xd3\xd1\x2a\xcd\x8f\xcc\xb7\x47\xe1\xb7\x47\xf6\xdb\x23\xfb\xed\x91\xf9\x0c\xff\x2f\xdb\xa2\x7b\x47\x7c\xe2\xe6\x2c\x1b\xcd\x64\x22\xb5\xc8\x0b\xd0\x7e\x1e\xf3\xa4\xf0\xa9\xae\xb6\xec\xd5\x7f\xfe\x27\x1b\xe7\xfc\x11\x23\x62\xdf\xf1\x82\x5f\xa1\x7d\xf1\xef\x7f\x7f\x05\x0e\x55\x8c\x62\xca\x78\xfe\x4b\x29\x8a\x99\xd4\xc2\x6c\x42\xf6\xbf\x66\x12\x3c\xb0\x9b\xed\xbc\x40\xbb\x2b\xda\x20\x63\xcd\xbe\xc5\x32\xa7\xc8\x46\x1a\x6b\x53\x52\x47\x38\x41\xc2\xd3\x96\x2c\xfd\x1d\x26\xfa\x5f\xd2\x77\xf4\xfe\x80\x6d\xfd\x4b\x5a\xdd\xd5\x36\xd9\x92\xfe\x25\x85\x03\x34\x55\xdc\x82\xb5\x98\x5b\xbc\x70\x4f\xa6\xc6\xb5\xed\x91\x06\x34\xe0\x45\xdd\xf4\xed\x7b\xe5\x06\x19\xd1\xad\xe5\xbe\x21\x46\xc0\x57\xe0\xfd\x10\xe0\x3d\x4f\xcc\x0e\xb9\x41\x4b\x28\x68\x6e\xd8\x73\xd0\x49\xc9\x75\xee\xca\x43\xc3\x85\xfe\xfa\xe4\xf8\x78\xc4\x56\x1a\xfe\xb3\xf8\x05\xfe\x03\xe8\xa1\xe7\x22\xf5\x6d\x0c\xa6\x03\xc2\x35\x67\x79\xff\x4c\x3c\x07\x8a\xee\x73\xf0\xc8\xd7\x96\xe9\x77\xa5\x8c\x53\xe1\x43\x1b\x2b\x2e\x91\x54\x99\x99\xb4\x13\xd5\xcc\x3c\x04\x73\xbc\x10\x11\x37\x82\xaf\x51\x37\x82\x4b\xd5\xb2\x10\x12\xad\x61\xb9\xcf\xf6\xc8\xd1\x72\x05\x6a\x31\x40\x21\x79\x41\x90\x73\x01\x3f\x42\x25\x40\xcc\x3e\xaa\x3f\x62\x5b\x55\x12\xc7\x38\x30\xe7\xc6\x22\x4a\x21\x91\x83\x65\x0f\x62\xb9\x28\xca\x5c\x32\xce\x32\x2e\x63\xae\x61\x05\x2e\x73\xf0\x76\xe6\x8c\x37\x1b\x3a\x42\x38\xae\x2a\x0b\xe0\xc4\x42\x64\x41\x38\x12\x48\x02\x1f\xb4\x79\x14\x34\x02\xcf\x04\xe0\xa2\x6e\x7c\x38\x9e\x49\x9b\x8f\x90\xb0\x70\x68\x29\x8b\x54\xb6\x25\xc6\xa3\xfa\xa0\x27\xd6\x72\x46\xc3\x3d\xf2\x78\x93\xfa\xbb\x23\x96\x54\x5d\x6b\xc0\x37\x5f\x04\x29\xde\x6d\x92\xfc\xd7\x42\x46\x2a\x16\xb9\x7e\x63\xb6\x61\xe2\xee\x1d\xa8\x3f\x24\xda\x4f\x06\x48\x29\x73\xb8\x91\xb5\xd0\x14\xef\x12\x4c\x99\xd1\xa9\x30\x94\xb7\xe9\x39\xfb\xb7\xca\x6f\x1d\x05\xd3\xd6\x5e\xfa\xe7\x67\x45\xc4\x84\xb8\x4e\x7b\xe7\x7c\xba\x09\x02\xb7\x6c\x28\x71\xb1\x50\xd4\x71\x48\x39\xb1\xf9\xb4\x93\x02\x32\x64\xe6\x42\x17\x33\x49\x27\xf0\x88\x2d\x05\x37\x7a\xde\x88\x45\xfa\x01\x85\x31\x1e\xf7\xc5\xa3\xf2\x18\x1c\x9b\xde\x06\xc0\xb0\x95\xc2\xbd\x91\x18\x5f\xe3\x14\x81\x8d\x00\x83\xae\x1b\xba\x53\x55\x60\xb0\x5a\x05\xe2\x13\xc6\xc1\x66\x4b\xa9\x67\x58\x0b\x93\xf5\xc0\x48\x6c\xd1\x51\xcc\xea\xed\xc0\x07\x46\xf0\x60\xef\x10\x06\x12\x08\x47\xd0\xb8\x09\x4b\x8b\xfb\xcc\xfb\x70\x43\xca\x7a\xb0\xcd\x74\x6d\xaa\x1d\x03\x01\x0d\x78\x9a\xdd\xc2\x7c\xba\xd7\x60\xa5\x45\x6e\x53\xb9\x60\x5f\x91\x60\x72\x9d\xe4\xf1\x51\xc6\xf3\x62\x6b\x97\x6f\x9a\x2c\x20\x03\x44\x9a\xdc\x0b\x36\xc9\x73\xf5\xf8\xdc\xa3\xd0\x29\x5a\xba\x6e\xd8\x87\x20\xd9\x87\xde\xf2\x5b\xe9\x65\xeb\xe6\x8e\xa7\x51\xd9\x76\x19\x3e\x5a\xeb\xc9\x45\x91\x6f\xe7\x66\x21\x6e\xb2\x4e\x49\xd1\x2b\x68\xa2\xbf\x92\x3b\x8c\x25\xb7\x66\xc2\xe8\x64\xc9\xad\xcc\xea\x6f\x87\x25\xb7\x85\x00\xb7\xc9\x92\x3b\xbd\x98\xde\x4e\x27\xe7\xd3\xff\x53\x2b\xf1\xe7\xc9\xf4\x76\x7a\xf1\xfd\xfc\xfd\xe5\xf5\xfc\xfa\xec\xe6\xf2\xee\xfa\xf4\x6c\x37\xed\x55\xb3\xf5\x5e\x05\x3f\x62\x61\x3d\x27\xec\x36\x00\x6a\x60\xb0\x01\xe9\xdf\x94\x1f\x17\x56\x95\xd9\xcc\x89\x5c\x8d\x60\xa3\x9e\xb0\xb3\x3c\x9f\x6e\xf8\x4a\x5c\x95\x69\x0a\x70\x2a\x8c\xec\x39\xcd\x05\x5c\x3c\x47\xec\x4a\xc5\xd3\xe0\x3b\x08\x47\x6c\xed\x06\xd4\xcf\xe3\x38\x17\x5a\x63\xf5\x23\xaa\x3f\x00\x0f\xb9\x50\x47\x02\xcf\xf1\x07\x9e\xa4\xe6\xfe\x76\xc2\xbe\xe3\xd1\xbd\x5a\x2e\x31\x7c\x66\xe4\x02\xa7\xd8\x2f\xa5\x2a\x38\x13\x9f\x22\xa0\x7a\x6b\x5f\x27\xe7\x6a\xf5\x2b\x40\x95\x7b\xb8\xa7\x3a\x2e\x29\x90\xea\x6e\xde\x7e\x9c\xb7\x0b\x02\xea\xe5\x07\xfc\xf4\x3d\x7e\xd9\x6e\xa0\x2c\xd2\x67\x08\x8f\x3f\x57\xab\xf6\xc4\x43\xa0\x5d\x53\xb6\x24\x72\x24\x44\xc4\x2e\xa2\x56\x4c\x27\xf2\x7e\x26\x7f\x5e\x0b\xc9\x54\x99\xe3\x4f\x70\xcd\x37\x6a\x66\x5a\xea\xb5\x80\x34\xd5\x23\xf6\x28\xd8\x86\x6f\x51\x6d\x86\x3b\x81\xcb\x96\x02\x4b\x06\x4e\x11\xf3\x75\x9a\x48\x23\x2d\xb2\xc4\xc6\x25\xd4\xa7\xfe\x39\x6e\x5c\x96\xe8\x90\x1f\xce\x43\xbc\xeb\x3c\xad\xe0\xf3\xc0\x54\xe6\x71\x93\x16\x20\x44\x92\x1b\x92\xca\x2a\x75\x5f\x66\x9e\x12\xf5\x95\x75\x4e\xc2\x70\x3f\xa8\x24\x66\x71\x99\xa5\x49\xe4\xe4\xee\xa3\xca\x3b\x79\x9f\x31\x80\xa6\xff\xa9\x53\x0f\x0b\xdb\xd5\xb1\x96\xe8\x9c\x00\x49\xb7\x83\x01\xfa\x85\x39\xb0\x59\x22\xa3\xb4\x84\x34\x73\xa5\x16\xf9\x91\x4b\x1d\xed\x62\xfd\x7e\xfb\x24\xd9\x9e\x84\xf3\xf0\xb0\xb6\x30\xe8\x3c\x55\xab\x24\xe2\x69\x08\x6e\xf6\xa8\x08\xc7\xc2\x6b\xb7\x3d\x25\x13\x86\x38\x08\xdb\xa0\x4e\x22\xad\x2c\x17\x40\x04\x3d\x07\x51\x3e\x27\x71\x77\x48\xbb\x97\xcc\x5c\xd0\xb1\x5d\x21\x47\xae\x75\x2f\xd8\x13\xce\xd7\x6d\x33\xb1\x81\x8a\x89\x29\xfc\x99\x7a\x94\x22\x07\x0d\x16\x60\x1f\xa6\xa7\x52\x81\x6e\xe2\xb2\xb3\x39\x7c\xb2\xcd\x4e\xb8\x74\x40\x6c\x8c\x9c\x5d\x25\x0f\x42\x7e\x7e\x52\xf3\xa0\x82\x88\x47\x6b\x31\xb7\x7a\xf9\x73\x8b\x2c\x77\x00\x0c\x14\x56\x36\x4d\x4a\x28\x4a\x9d\x7b\x13\xae\x4e\xd8\xe2\xa6\xec\x42\x47\xe2\x8e\x88\x2c\xd3\x88\x79\x2c\xa2\xfb\xcf\x2e\x9a\x3d\xc8\xca\x36\x84\x71\xf6\x4e\x44\xf7\xec\xee\x7a\x8a\xd1\xc0\x49\xc1\x8c\x28\xd0\x6b\x9f\xf6\xa9\xf3\xee\x56\xf0\xd5\x0b\x50\x58\xf5\xcd\x5b\xe5\x53\x15\xb8\x6c\x7d\xa6\x41\x04\x88\x82\x78\x49\x23\x24\x29\x96\x06\x80\x60\xbc\xb0\xd9\x8c\xc0\x10\xcf\xf4\x06\x92\x17\x95\x45\x90\xf1\x2f\xe5\x0b\x91\x76\x10\x77\x66\x2a\x9e\x5b\x3f\xc9\xa1\x60\x9e\x46\x59\xd6\x8e\x41\x5e\x47\x1b\xc7\xc0\x8d\xc6\x7a\x4b\x2f\xb2\xfb\x6f\x74\x40\xaf\xa1\x42\xfe\x70\xb8\xd7\x73\x0d\xe1\xdd\xcb\x64\x65\xbd\x6d\xc9\x92\x52\x2c\x61\x40\xbf\xd1\x83\x41\x5e\x9a\x92\xae\x54\x4c\x30\x3d\xc7\x85\x67\xb4\x20\x41\xd6\x13\x8f\xab\x08\x9b\x60\x71\x80\x50\xaf\xd9\x11\x82\xc7\x4c\x2d\xc9\x9a\x98\x65\x69\x02\xcc\xd0\x31\x92\xd0\x03\x7b\x86\xae\xa2\xe3\xc3\xd2\x6c\x63\x03\x92\x8f\x2b\x0b\xc4\xeb\x4a\xc6\x0b\x02\x03\x23\x18\xe6\xc0\x06\x37\x7f\xe0\xdd\x64\x6a\x2f\x9e\x31\xad\xa3\x3d\xce\x9b\x5c\xa5\x84\xad\x90\xf6\x91\xad\x00\x8f\x75\x1b\x90\x1f\xf1\x34\x2a\xc9\x4f\x06\xe9\xf2\x6d\x16\xfc\xdd\x08\x42\xef\xf5\x33\x13\x5d\xb5\xfa\xd7\x95\xcc\x43\xb3\x2b\xba\x00\xad\xa7\xda\x14\x76\x9b\x17\x57\xa9\x5a\xc0\xca\xe9\x46\x09\xee\x38\xb1\x8c\xb8\xce\x93\x78\x88\xbe\x63\xc7\xe4\xd2\x7d\xba\xab\x81\x97\xd6\xf4\xe3\x6a\xb2\xeb\x9e\x51\x22\x83\x1a\x73\xe3\x30\x0a\x84\x25\x65\x55\xad\x5e\x4f\x0a\x4a\xe3\x01\xcb\xca\x9d\x4f\x1d\x76\x86\x6a\x5f\x0e\x9a\xe8\x26\x53\xcc\x9e\xb1\xf4\xe4\x32\xbb\x27\xf9\x00\xba\x0f\x14\x65\x8e\xf3\xa3\xdb\xb2\x28\x63\x11\xcf\x9f\xd0\x87\x33\xfa\xb6\x5f\x5f\xdc\x48\x63\xf3\xc0\x06\x28\x8f\x8c\xaa\x10\xf3\x3c\xf6\xfd\x18\xc1\x7e\x8f\x78\x06\x66\x78\x70\x6b\x3c\xbc\x1d\xdb\x3a\xae\x7d\x74\x91\x91\x97\x18\xf3\x8f\xf8\x6d\xd5\x92\x03\x67\xdf\x3a\x72\x8b\x14\xe1\xdd\x66\xe5\xf8\xe5\x5a\x89\xbb\xe9\xb5\x76\xeb\x2b\xcc\x0a\xf0\x43\x16\xd7\x4b\xc8\x8e\xb2\x50\xde\xdb\x03\xfd\x99\x02\xed\x70\x18\xd1\x07\x02\x72\x1a\x77\x20\x45\xac\xfa\x6d\x85\xd0\x00\xfc\xf1\x20\x04\x74\x96\x0b\xeb\x37\xdc\x8a\xc2\xf1\x3a\xa4\x36\xaf\x20\xb8\xc5\x5c\xaf\xab\xc4\x36\x96\xbb\xc2\x91\x91\x81\x13\x8b\x54\xfd\x48\x6d\x32\x25\x01\x96\x84\x51\x6a\x33\x49\x85\xdb\xec\xf0\xce\xb3\x56\x09\x75\x1c\x91\x41\x13\x03\x67\x84\x56\xe9\x03\xb9\x50\x83\x24\x26\x90\x57\xd2\x34\xf0\xd4\xdc\x0d\x55\x8e\x04\x5b\xf6\x64\x87\x48\x80\x5a\x8a\xf4\x5c\xac\x12\x5d\x88\x30\x3a\x34\xfc\xfe\xd9\xb2\xd9\x56\x8c\x27\xbb\x86\xbe\x33\x9b\xed\xbe\x5b\x90\x91\x4f\x03\xda\xb3\xcd\x44\x3c\x75\xdf\xed\x5e\x0c\xb5\x00\x7e\x2f\x0e\x2b\xe7\x1d\xae\x01\xbc\xfd\x69\xa4\xfa\xd2\x2e\xfd\x88\x9b\x24\x22\x61\xe2\x1e\xd0\x68\xa6\x68\x55\xf2\x9c\xcb\x42\x08\x3d\x93\xe4\x78\x46\xca\xba\x90\x95\xa5\x06\x84\x74\x77\x9b\x48\xe9\x02\x19\xa0\xe0\x93\x25\x4f\xd2\x32\xef\x34\x37\xe0\xaa\x7c\x12\xed\xc4\xae\x51\x3a\x85\x62\x59\xdb\xa4\xb9\x00\xe6\x60\x17\x39\xd6\x94\xba\xdb\xb8\x1a\xdf\xdb\xd1\x05\x7b\xb8\xf4\x9f\x6f\x67\x6b\xee\x88\x69\xfe\x46\xcf\x33\x35\x40\xe2\xfd\xf8\x8d\xbe\x52\x1d\xd1\xe0\xfa\x97\x86\x4d\x74\x07\x7c\xe2\x97\xae\x84\x2c\x5c\xdf\x83\xe7\x71\x9f\x29\xa6\x17\x1b\xe7\x5e\xff\x64\xa7\xec\x82\x55\xbb\xe6\x32\x4e\x8d\xca\xcb\x8b\x3a\xef\xb5\xc3\x79\x9b\x2b\x51\x61\x85\x63\x77\x50\x1f\xc4\xc8\xcc\xa3\x46\x80\xe5\xbe\x71\xaa\x45\x66\xee\xc4\x52\xd6\x6a\xa9\xc6\x4b\xb6\xc5\xe9\x78\x1d\x86\xd2\x20\xbb\x0d\xfb\xab\xeb\x2f\x67\x61\xdb\x3f\x93\xfa\x52\xdd\x6b\xcb\x64\xf5\x1b\x30\x24\x7c\x68\x1e\x09\x11\xc9\x1c\x3a\xa8\x5d\x74\xc3\x81\x52\x07\x02\xc9\x8c\xd4\x0e\x19\xc7\x67\x92\xd2\xc1\x23\xba\x00\xdc\xca\xc8\xb7\xa6\xd9\x5b\x17\x5d\xfc\xf6\x77\x96\x6d\x6b\xcb\x96\xb0\xa8\x80\xd2\x4e\x45\x51\x99\x83\xeb\x9f\xcc\x93\x4c\xe0\x21\xac\x07\x11\xc9\x80\xea\xe1\x00\x5b\xa8\x27\xb6\xa9\x49\xce\x1e\x5d\xe9\xd4\x2d\x98\x21\x31\xb1\xbd\x3b\xf4\x29\x5f\x59\xae\x0b\xa6\x0b\x91\xb5\x8a\xdf\x8a\x76\xb9\xcd\xc4\x44\x4a\x55\xd4\xe3\x53\x06\xeb\x97\xdc\x95\xd2\x73\xeb\x0c\x38\x8c\x26\x81\xc9\xe8\x0f\x37\x97\x17\x2c\xe3\x5b\xc0\x3e\x16\x8a\xe1\xab\x40\x38\x5a\x17\x54\xfb\x66\xa0\xda\xf9\xaa\x54\xc1\x31\xb5\x20\xea\x76\xff\x04\xd5\xd8\x54\x16\x61\xcd\xd0\x92\x34\x32\x2b\x57\xe9\x51\x96\x72\x19\xc0\xdb\xf5\x98\xd5\xaa\x0f\xf1\x0c\xce\xb3\x49\x88\x31\x68\x00\xd8\x2b\x68\x2d\xe4\x65\x2b\x00\x1a\x78\x77\xec\x82\x3a\x0c\xc2\xd0\x29\x23\x76\x02\x3b\x3f\x60\x16\x18\xcc\x89\x80\xec\x19\x16\x96\xe1\x90\x3d\x5c\x03\xe8\xb6\x93\x01\x9c\x47\x29\xd7\x7a\x27\x4a\xe7\x45\xa8\xe4\x83\xa8\xc5\xfd\xe2\xab\xda\x4e\x84\x11\x02\xb7\x09\xde\x4b\xdd\x63\x60\x4b\xb0\xa2\xcb\x27\x7d\x0b\xf4\xfd\x20\x1b\x04\x41\x1f\x88\x2f\x0a\xbe\x47\x26\xc8\x7b\xb1\xb5\x16\x2e\x12\x55\x7c\x23\x46\xce\xd8\xea\xac\x89\x01\xe8\xaf\x59\xf0\x4c\x02\x2a\xf6\x7d\xd8\x3c\xf6\x5e\xa9\x11\xe2\x33\xa9\x72\x8e\xc5\xf2\x10\xe1\x34\x93\xef\x95\x1a\x73\x77\x89\xa5\xf6\x93\xb8\xa9\x57\x48\xa8\x28\xc0\x1c\xd6\xa6\xb3\xff\xde\xfc\x21\x91\x98\x9e\x30\xd9\x98\x0b\x14\x8d\x13\xac\x28\x68\x90\xcd\x86\xaf\x1e\x35\x8b\x91\x52\xa6\x4c\xf4\x1a\xdc\x2e\xe8\xe7\x84\xfa\xe9\x48\x41\x40\x56\xce\xa5\x36\x7b\x18\x5c\x35\xe2\x41\x90\xbd\xb6\x82\x31\x98\xbe\x3b\x77\xb0\x25\xdc\x97\x94\xba\xa3\x63\xb7\x05\x97\x8e\x43\x2e\xe7\x00\x37\x1f\x40\x68\x47\x06\xce\x0f\x3c\xdb\x15\x0c\x7b\x70\x89\xfb\x66\xc9\x11\x6a\xd5\x6f\x54\x90\xc9\x1c\x72\x18\x56\x22\x62\xc3\xd1\xbb\x93\x07\x9e\x38\xad\x9c\xf6\xfb\x53\xee\xf4\x36\x30\x0c\x14\x15\xfb\x8f\x9b\x80\xdb\xd2\x41\x06\xdd\x5d\xd0\x08\x76\xc8\x10\x07\xa4\x7c\xb8\xa5\xc7\xec\x46\x08\xf6\x11\x46\xca\x54\xf6\x91\x32\x90\x02\x0a\xba\xe0\x49\x6b\x82\x38\x78\x7b\x2a\x97\xea\x30\xf9\x9f\xaf\x1a\x28\xdb\x83\x46\xa5\xbd\x9d\x87\xe2\x78\xc1\xd2\x2f\x5f\x96\x56\xa4\xd7\xc1\x50\x9b\xeb\x2b\x6f\x6f\xa2\x60\x63\xdb\x52\xa3\x92\xc1\x14\x3f\x85\xb8\xae\xb6\x48\x4c\x2f\x47\x48\xc6\x7e\x2f\xd5\xa3\x44\x79\x4c\x35\xb1\xd7\x66\xff\x81\xce\x82\x7e\x21\xd4\x04\x4b\x94\x86\x6f\x80\x1d\x7e\xe2\xfe\x66\x37\xe8\x02\xc7\x36\x43\xea\x30\x0d\xfa\x2e\x25\xfd\x82\x03\xfc\xf5\x64\xc4\xbe\x1b\xb1\xd3\x11\x1b\x8f\xc7\x6f\x46\x4c\xf0\x68\x6d\x5b\x84\x9f\xa0\xe8\x2f\xf8\xca\x94\x4d\x69\x7f\x96\x41\x05\x90\x1e\xd0\xe8\x27\x96\x04\x91\xfb\xb7\x02\xab\x9a\xed\x02\x86\x66\x53\x1c\x19\xc1\x85\xa2\xb5\x4a\x7c\xa3\x00\x79\x2e\x22\x95\x5b\xec\xba\x2e\x54\x6e\x71\xb8\x0f\x3c\xe7\x89\x04\xc6\x0a\xde\x8c\x42\xa0\x9a\x03\xce\x7a\xf1\x89\x6f\xa0\xff\x89\x74\xb4\xbd\x66\x98\x6e\x5d\xfb\x8b\x6d\x46\x7e\xb6\xc7\x3c\x29\x0a\xa3\x90\xe9\x99\xbc\x61\x27\xdf\xb2\x49\x96\xa5\x82\x4d\xd8\x7f\xb1\xef\xb8\xe4\x92\xb3\xef\xd8\x7f\xb1\x53\x2e\x0b\x9e\xaa\x32\x13\xec\x94\xfd\x97\x19\x36\x53\xde\x85\x32\x1a\xd0\x76\xc4\x38\x93\x65\x8a\x8a\xde\x6b\x8b\x71\x7d\xe3\xfa\xc5\xfd\xec\x2c\x44\xf1\x28\x84\x64\x5a\x6d\xe8\x28\xfc\x93\x3b\xfd\x75\x22\x57\xa9\x28\x68\x3d\x54\xd1\xc8\x58\xc1\x11\xf4\xf4\x64\x26\x9d\x9d\xfa\x4f\xa6\xc5\x7f\x62\xff\xc5\x2e\xca\x34\x35\x4d\x32\x82\xc6\x2c\xa4\x13\x66\xa3\xc3\x84\x1c\x3f\x26\xf7\x49\x26\xe2\x84\x43\x7c\x98\xf9\xeb\xf8\x16\x66\x7b\x5e\x7a\x2a\xd0\x70\x4f\xbb\x74\x6c\x87\x88\x9e\x17\xe1\x9a\x70\xc9\x02\x43\x6d\xa5\x13\x84\x12\x7e\x3a\x5c\x09\xf6\x04\xc8\xb4\x1f\xe8\x8e\x82\xa9\xf4\x42\x07\x65\x7b\xfd\x2e\xeb\x57\x66\xfe\xd5\x4a\xff\xd1\x2b\xfb\xd7\xae\xf1\xf0\x6d\x04\xe5\x14\x27\xc7\x07\x67\xc2\x45\x06\x62\x09\x71\xdf\x6d\x21\xe5\x87\x2d\x1b\xaf\x9d\xe8\xde\x36\x57\x69\xd4\x46\x0b\xbe\x1a\xb1\xcc\xe5\x91\xb2\x9b\xca\x39\xb6\x71\x1f\x63\xce\x04\x52\x36\x5f\x5b\x00\x91\x59\xcb\x14\x7f\x78\x1c\xab\x0d\x4f\xe4\x1b\xa8\xc3\x52\xe7\xed\x19\xa8\x96\xeb\xca\xfe\x11\xba\xe5\x3b\xd1\x8c\xdd\xd4\xfe\x55\x65\xa7\x96\xc2\xad\x6d\x3b\x1c\x98\xc3\xcc\x67\x38\xfd\x8c\xd7\xa1\x9f\x1a\x4b\xb4\x77\xee\x03\xca\x37\x56\x61\x4f\x01\x5d\xde\x33\xc8\xf5\xf2\xad\xbb\xcc\x65\x3f\x55\x53\xbc\x56\x86\x58\x25\xbd\x72\xe1\xd6\x1a\x7b\x47\x37\x31\x8c\x7b\x36\x62\x32\x49\x8f\x8d\xa8\x3c\xbe\x50\x52\x30\xae\x75\xb2\x42\xd6\x3b\x30\xa8\x61\x12\x59\xab\x94\xdd\x56\xaf\x0c\x81\x08\x02\xfd\xcc\x34\x09\x11\xd3\x85\x91\xc2\x66\x0a\xd2\xed\x4c\x9a\x2f\x48\x23\x80\xe8\xa9\xc4\x91\xa3\x63\x6d\xc4\x3d\x6e\xeb\xa2\x03\x31\x28\xbc\x65\x81\xed\xa2\x66\x38\x60\xc1\xd1\x4e\x3c\xc0\xe3\x76\x11\x10\x83\x52\x69\x96\x35\x0a\xe1\x34\x0b\x91\x2a\xb9\x32\xab\xa2\x4b\x08\x83\x14\x78\xa6\x26\x60\x61\x9d\x2d\x30\xca\x0a\xbd\x42\x53\x62\xf4\x94\x24\xf6\x26\x35\x5d\x2e\x8c\x1e\xe7\xbc\x3d\x4e\x1b\xa1\xce\x75\xf1\x54\x1c\x06\x5b\xba\x33\x32\x58\xe5\x16\x38\xe7\x3c\x89\xa8\xb8\x78\x0e\x27\xec\x51\x17\x42\x23\x1f\x64\xca\xe9\xf0\x6c\x8f\x98\xca\x91\xbe\xd3\x7a\xb0\x1d\xff\x56\xb3\xf6\xee\x2d\xbd\x33\xda\xa3\xdd\xf6\x49\x7e\xd2\x06\x5f\x48\x8f\xdd\xf0\x6b\x06\x7e\xf4\x09\x07\x79\x3f\x99\x9e\xd7\xde\x6b\x86\x83\xb4\xc4\x8c\xdc\x4e\x3f\x9c\xbd\x9b\x5f\xde\xdd\x36\xde\x33\xa5\xd1\x4f\x7b\x22\x42\x3a\x47\xef\x39\x30\xf1\xbf\x60\x0e\xb3\xb9\x5a\x5a\x7a\x80\xfe\xc7\x73\x23\x8b\x5c\x3f\xe8\x65\x11\xdc\xae\xc3\x6c\x6b\xcd\x85\xd3\x49\x72\x22\xe7\xe4\x6b\xed\xd7\xd8\xfa\x80\x5d\xca\xf7\xf8\xf9\x95\x4a\x93\x68\x37\x92\xdb\x1e\x96\x46\xab\x6a\x42\x63\x17\x02\x42\x1b\xc8\xe0\x4b\x8d\xc2\xfb\x59\x21\xa2\xc2\x63\x09\x9a\x9d\xfb\x7f\x1a\x3d\xba\xdf\x02\x83\x76\x58\x37\x6c\x90\x9c\xdc\xa1\x13\xe0\x64\x07\xd6\x68\x48\x96\x82\x5a\x2e\x58\x76\x41\xe6\x45\x9c\x7c\x4e\x95\x91\x87\xe3\xe1\x71\xad\x52\xb2\xc7\x22\x03\xf7\x4c\x66\x22\x8f\x14\xa0\x2e\x91\xdc\x45\xb1\x68\x9d\xa4\xb1\xcf\x48\xf6\x1a\xc2\x54\x00\x4c\xfe\x86\x92\xeb\x0a\x87\x9e\xb1\xc5\xef\x38\xf3\xed\xb2\x7b\x87\xbb\xfb\x20\xe4\xd9\x73\xe2\xce\x77\x2d\xfb\x9f\x09\x1f\x8d\x43\x41\x9c\x79\x35\x1c\x04\xa8\xfd\x61\x7b\x06\xb9\x74\xcc\x61\x4f\xc9\xa6\x22\x7f\x6d\x2e\x6a\xf3\x4a\xcb\xac\x3e\x94\xc0\xa4\x8e\x76\x74\x04\x01\x6a\x01\xcd\xd9\x08\x8e\x9a\xa0\xe7\x35\xa6\x49\x9d\x49\x8f\xfc\x78\xa5\x43\xad\xb0\x75\x9e\xd1\xfa\x6e\x91\xed\x23\xf6\xaa\xd2\xd1\x57\xc0\xb4\x2d\x15\xd4\x47\xde\xf9\xca\xd0\xc0\x72\x1d\xb1\xa4\x98\x49\x73\x67\x33\x2b\x33\x17\xa9\x78\x30\xad\x0b\xbd\x43\x84\x57\xb4\x96\x13\xdb\x6d\x08\x8e\xe2\x96\x53\x83\x96\x0d\x6d\xc2\x3c\x64\x6c\x46\xb7\x74\x2c\xb4\xd1\x5a\x21\xd7\x94\xf8\x64\x36\x40\x02\xce\x4f\x04\xb6\xc5\x42\xda\xf6\x01\xde\x0d\xf3\xfc\xcf\xe4\x74\x09\xc4\x06\x40\xa7\x10\xc7\x68\x83\xb0\xd9\x87\x1c\x7d\x66\x42\xde\x20\x45\x16\x19\x3b\x11\x94\x1b\x1a\x77\x92\x78\x10\xf9\xb6\x00\x93\x3e\x8c\xab\x14\xbc\x58\xb3\xa4\x18\x01\xef\xa9\x95\x94\x33\xc9\xe3\x98\xe2\xc1\xb1\xb8\xe0\x3a\xdb\x39\xcf\xf4\x7c\xa1\x1e\x76\xa9\xd5\x87\x22\x77\x71\x57\x67\x29\x97\x73\x3c\x41\x7e\x05\xec\x6e\x90\xb6\xbb\x0b\xc4\x51\x2e\xe6\x8e\xab\xed\x59\xda\xe9\xe4\xfd\xb5\x85\x2e\xd3\xd5\xa6\x5c\xd8\x8a\x46\x15\x68\xf6\xc2\xd3\x7a\x38\x2b\x1d\xe1\xa6\x72\x66\xb1\x25\xfd\xa5\x80\x87\xf5\xf2\x1a\xc6\xca\xae\xd6\x7d\xb8\x5e\xbb\x02\x7e\xab\xc8\xcb\x3e\x33\x5f\x3b\x43\xea\xd3\x3e\x1c\xf4\xd7\xd0\x10\x9f\x04\xfc\xdb\xd3\xac\x97\x05\xff\x75\x5a\x71\x9a\x20\x40\xdb\xdb\xc0\xbf\x4f\xa1\x03\x68\x85\x75\x06\xb4\xf6\xb4\xec\xe1\x2d\x50\xb5\xe0\xe3\x9f\xd3\x43\x01\x72\xaa\xaf\x9d\xc6\x13\x8a\x40\xbb\xc6\x6c\x2a\x99\x55\xf7\x46\xec\x15\x2e\x2c\xfd\x8a\x0c\xd0\x94\xdb\x9f\xc0\x32\x31\xed\x1e\xa2\x60\xa8\x83\xcc\x30\x10\xce\x6f\x37\xf4\x03\xee\xe4\xeb\x7d\xd1\x71\xf9\x2e\x81\x40\xbc\xa7\x70\xad\xa0\x0f\x79\x81\x05\xd8\x38\x92\xc0\x14\x4a\xdd\x05\x5f\x86\xef\xb0\xf5\x76\xb2\xef\xec\x87\x66\x88\xb2\x92\xce\x53\xfb\x9c\xa9\x7c\x26\x6d\x69\x64\x90\xd6\x98\x20\xb0\x5e\x54\x10\x17\x44\x3a\x7f\xb0\x52\x01\x0a\x60\x73\x42\x42\xaa\x51\x4f\x2a\x5e\x97\x02\x80\x82\x5a\x38\x04\x2a\x64\xa1\xf0\xb5\x19\xc5\xc3\x2c\xf0\x0d\x1e\xf3\x75\xe2\xe1\x34\x35\x83\x92\x14\x96\xe7\x38\x88\xd9\xd3\x25\xb0\x75\x2f\x4b\x23\x8c\x02\x4a\xf3\x99\x34\x83\xc7\x96\x09\xc4\x6e\xd0\xb8\xcc\xe4\x07\xa5\x2d\x45\x8c\xf6\xe3\x61\x81\x05\x34\x6c\xaf\x5c\x6a\x4c\xfa\xe1\x1d\x1c\xda\xe4\xf1\x41\xb2\x37\x77\xb4\x40\xb0\x26\xf1\x3c\x6d\x55\x99\xfb\x4e\x45\x5c\xce\xe4\x5f\xcd\xf0\xc0\x75\x8a\x4b\x3b\xad\x6a\x89\x5b\x18\x66\x10\x5c\x65\x1f\xb1\xd0\xd7\xbf\x7b\xf3\xf1\x0d\x06\x57\x95\x1a\xb2\x11\x8f\xaa\x07\x88\xcb\x6e\x51\xa6\x29\xe0\x10\x6c\x0f\x1c\xc3\x92\xaf\x62\x27\x0e\x8f\x2e\x75\x73\x59\x55\x31\xfa\x6c\xf4\x7e\x66\xfd\x09\x8b\x78\x11\xad\x8f\xac\x2e\x47\x62\xcc\x9e\x7e\x34\x7d\x18\x05\x65\x34\x2d\xd6\x9a\xe0\xc1\x5c\x38\xf3\x8d\xa3\x9c\xad\xac\x17\xd3\x05\x30\xff\xdf\xd6\xb3\x9d\x39\x46\x6c\x5c\x9c\x88\x03\xaa\xea\x79\xee\x75\x9b\x6b\xd4\xdf\x38\xc9\x47\x22\xf9\x46\xc4\xec\x15\x84\x01\xbf\xb2\x93\x3f\x93\xd9\x62\x9c\x6e\x97\x05\xf1\x16\x9a\x41\x19\x43\x56\xbe\x3d\xa7\xdc\x3c\x6e\x5e\x93\xf6\x0c\x76\xe7\x45\xab\x5d\xd7\x71\x63\xe3\x6a\xea\xaf\xb0\xa0\x8d\xcb\x8d\xce\x4d\x15\x13\x58\x4d\x0f\xc2\xf5\xfd\x88\x2d\x72\x2e\x21\xa1\x52\x1c\x2a\x55\x7e\x77\xc2\xe5\x19\x49\x01\x6d\x5c\xa0\xe4\xe9\x16\xe2\x7f\x46\x33\x89\x0c\x8a\x40\xb5\xbf\x8d\xd2\x24\x62\xab\x9c\x67\xeb\x9a\x1e\x24\x1e\x84\x2c\x20\x2f\xf7\xb5\xe0\xfa\x30\xac\x46\x5e\x2f\x81\xf5\xf6\xa6\x4d\x24\xdc\x3e\xb8\xac\x71\x5e\x43\xf3\x3a\x8e\x16\xc0\x67\x8a\x78\x3e\x8c\xef\x6a\x2f\x2b\x73\x85\xeb\x93\x88\xe7\xc0\xff\x6c\x3a\xc7\x6c\xad\xfb\xc0\x0f\x38\xae\x44\xc5\x64\x11\xbd\x87\x02\x36\x1c\xb5\xd3\x41\x04\xbd\xd3\xaa\x16\xc9\x3d\x67\x95\xb7\x9b\x93\xdb\x0f\x2d\x15\x36\x0c\xc2\x09\x8e\x11\xe5\x4d\x05\xf2\x4e\xf6\xc7\x72\xa1\x52\xcb\x7e\x3a\x7d\xc7\x54\x0e\x89\x87\x0a\x45\x3f\x25\x71\x97\x76\x90\xc8\x58\x7c\x3a\x88\x82\x68\xf7\x41\x6f\xd5\x66\x53\x4d\x90\xdf\xa6\xde\x59\x90\x4e\xb9\x30\x87\x70\x61\x6f\xc6\x8d\xb7\x74\x1d\xaa\x3c\x49\x8b\x35\xe0\x87\x31\x44\xc7\x0f\xea\x86\x6f\x59\xb4\xe6\x72\x15\x98\x26\x00\xce\x29\x32\x95\x63\x82\xde\x07\xe0\xfa\x54\xb9\xa5\x78\x20\xe2\x02\x8a\x13\x72\x6e\x0c\x84\xe7\x2b\xcb\x4e\xc0\x57\xab\x5c\xac\x20\x8c\x75\x26\x2b\xd4\x2b\xc0\x73\x6a\x73\x03\x61\x3d\xbb\x98\x2b\x9e\x87\xfe\xa9\xeb\x36\x58\xe4\x5b\x17\xf7\x4f\xd9\xad\xfd\x7e\xae\x0f\xeb\x88\x25\x62\x3c\x62\x5f\xf9\x90\x04\x11\x29\xe9\x88\x03\x3a\xa2\xc6\x6b\x26\x7f\xb6\xe7\xea\xd0\xe4\x89\x6a\x6f\x3b\x3c\x6b\xe4\xc8\x6e\x5d\x34\x3b\x99\x17\x0a\x5e\x94\x03\xce\xa0\x53\x5e\xf0\x54\xad\x4e\xcd\xc7\x37\xf8\xed\xae\x75\x7d\x8a\xf1\x02\x96\xa3\xcf\xbc\x6f\x4e\x4e\x53\xb7\xe7\xf0\x6f\x1b\xeb\xbd\x06\xe4\x54\x75\x1b\x90\x9f\x43\x55\xb7\x44\x4c\xfb\x6d\xc8\x69\x07\xb9\xd0\x8e\x3e\x0d\x35\x11\x5b\x54\x3f\x05\x26\xe9\xfa\x35\xb6\x45\x02\x64\xb9\x8a\xcb\x48\xc4\x66\xe7\xc2\x7d\x08\xf1\x50\x8e\xe3\xa8\x22\x24\xdb\x0e\xda\x0a\x51\x1b\x9c\xba\x9f\xcb\xe6\xd0\x8b\x1b\xdf\x0d\xff\x5d\x87\xbd\xc1\x6a\x7c\x6d\x83\x1e\xee\x4f\x1c\xa7\x7c\xe0\x39\xe5\xaa\xaf\x32\xda\xab\x3c\x59\x25\x92\x17\x2a\x67\xaf\x1d\x93\xc1\x1b\x97\x06\xaf\x5b\x43\x18\x28\x26\x2a\x43\x84\x62\xe2\xb3\x2a\x1e\x6d\x8b\xd4\xbc\xa5\x0b\xbe\xc9\x42\x8e\x68\xb0\x02\x07\x23\x93\xe2\x20\x38\xdd\x04\x6c\xa7\x89\xf6\x51\xbb\x33\x49\x1e\x07\x9c\x37\x95\x87\x49\x0e\x3a\xcf\xe6\xac\x2c\xe6\x4f\xe4\x3d\xc3\x8f\x87\x19\x9e\x08\x04\xf1\x81\x67\xbb\x99\xa4\x38\x99\x1c\x30\x6c\x91\xcc\x11\x5e\x53\xa9\xae\xcf\xdd\x69\x84\x06\x32\x5b\xd7\x1d\xf7\xd7\xe7\xd6\x51\xe4\xef\x83\x95\x0b\x16\x4c\x04\x52\xea\x62\x18\x18\x5e\xed\x9d\x58\x33\xa7\xb8\xa5\x9f\x3a\x4d\x55\x19\x33\x12\x6a\x04\x02\xc8\xc7\x78\x3a\x02\xc7\xf5\x78\xdc\x15\xd6\x36\x30\xbd\xb9\x93\x3f\xf0\x5d\xfb\x0e\x84\x67\x1d\x12\x78\xe7\xd6\xa7\x91\x7d\xb1\xa9\xa7\x91\x86\xb9\x77\xe2\x78\xd0\xdc\x3b\x2b\x38\x10\x6e\x0e\x33\x90\xc2\x7d\x34\x89\x53\xd8\x6f\xa1\x03\xa1\x85\x12\xbc\xe2\x98\xd5\xf7\x07\x57\x67\x59\x28\x76\x57\x95\xf1\x5c\xc8\x62\x0e\x35\x0e\xab\x0c\x2a\xb9\x82\xcf\x2b\x0a\x53\x2f\x43\xf0\x9f\x6f\x15\xda\xf7\x2d\xbb\xd6\x5f\xd8\x0d\xd9\xb4\x8c\xbc\x4a\x00\x42\xac\xef\xd9\xeb\x04\x10\x4f\x81\x2f\xd4\x4d\x5c\xc7\x74\x51\x87\x9e\x30\x7a\x41\x87\x2a\xa2\xbd\x57\x87\x7c\xeb\xc1\x55\x0d\xa5\x90\x79\x8f\x38\x01\x8c\xa8\xb5\xbf\x05\x19\x37\x2e\x2a\x7f\x03\x3b\xb2\x99\xbf\x94\xfd\x4d\xe4\xca\xc7\x7f\xa1\xb1\x2a\x2c\x78\xa7\xbe\xfe\xf4\x64\xe1\xa8\x8f\x63\x9a\xea\x30\x4f\x2b\xfc\x42\x04\x66\x68\x51\x58\x6c\xed\x75\xa4\xc3\x85\x94\x89\x68\xde\x91\x94\xa7\x57\x53\x82\x8b\x67\x98\x64\x27\xa9\x1d\x66\x76\x83\x1e\x83\xbd\x82\x02\xab\x36\x3c\x23\x74\x21\x01\xc9\xeb\xce\x9b\x31\x74\xe2\xcf\x7f\xfa\xcb\x38\xe9\x08\xf1\x86\xa6\x0f\x05\x6b\xb9\xc6\xbf\xcf\x13\x21\x63\x70\xc6\xf2\xb8\x99\x2f\x4e\x56\xac\xf3\x15\xf1\x6c\x96\xe1\xb3\xc4\x83\xb7\x1f\xb5\x7a\x8e\x8b\xe8\x33\x78\xf4\xbd\x90\x75\xdb\xb7\xe2\xef\xeb\x52\x25\xf4\x3c\xde\x4a\xbe\x49\xa2\xcf\xda\xc6\x6d\x22\xd2\x18\x9a\x48\xb5\xef\xf3\x4a\xc5\x22\xba\x1f\xaa\x13\x3c\x39\xdb\x85\x88\xee\xd9\x0f\xb7\x1f\xce\x31\xb9\x71\xa2\x67\xf2\x82\x17\xc9\x83\xb8\xcb\x53\xe7\x0e\x20\x90\x76\x9e\xda\x3d\x52\x65\x5f\x0f\x98\xbe\x2c\x55\xbb\x55\x1c\xc2\xe4\x18\x9b\xed\xd1\xa2\x8c\xee\x45\x71\x9c\x73\x19\xab\x0d\x76\xe3\x58\x97\xcb\x65\xf2\x69\x5c\xf0\xbc\x23\x53\x06\xda\x11\x7e\x45\x3d\xd7\xe7\x3f\x2b\xbc\xce\x8b\xaa\xee\x23\x84\x79\x53\x56\xfd\x8a\x72\x8b\x51\x89\x7c\x23\x80\xea\x94\x55\xb3\xcc\x40\x29\x18\x39\x0d\xc9\x58\xb5\xa6\xf8\x09\x45\xa9\xde\x3f\x06\xca\xfd\xc7\xa0\x55\xde\x85\x1d\x36\xca\x27\x38\xdd\xf0\x7b\xbc\x1f\xae\x72\xa1\xf5\x88\x69\x05\x2d\x9e\x49\x1b\x89\x60\xa3\xe5\x00\xf7\x02\x64\xc9\xe9\x96\x45\x2a\x73\x90\x79\xec\xd7\x5a\x3d\x82\x9d\x3e\x8c\x13\x86\x14\xde\xa5\x2c\x92\x94\xf1\x65\x41\x46\x7c\xc8\x0c\x61\x33\xc1\xe9\xf1\x4c\x82\x2b\x36\x82\xee\x03\x44\xc2\xb9\x5f\x5c\x27\x34\x5b\xf2\x28\x49\x93\x82\xf8\xea\x20\xc4\x8c\x9b\xfe\x9a\xf3\xc0\x8c\x65\xce\xb7\x3c\xf5\x17\x2b\x9e\x96\x3e\x34\xfa\x48\x8b\x1d\x7c\xa8\x89\x9e\xa3\x81\xe0\xe5\x36\xb8\x47\x01\x26\xa1\xf3\x01\xb9\xe3\x27\xa6\xf2\x8b\xda\x29\xfa\x4f\xe1\x7f\x2b\xf7\xf0\x5d\x5a\xc1\x01\x17\xf2\x43\x0e\xc7\xe6\x95\xdb\xa5\x4f\xf7\x7a\x46\x12\x5b\x74\x72\x45\x15\xf7\xc1\xc7\xee\x78\x04\x9f\x49\xc7\xa5\x7f\x6c\x93\xde\x35\x6b\x18\x30\x7a\xed\x4a\xe2\x67\x32\x67\x74\x11\xfa\xf7\x69\xbe\xb5\xc6\x5f\x29\x95\x1e\x6a\x91\x27\x4a\x8e\x44\xc9\x39\xe4\x81\x3e\xe4\x3a\x89\x0b\xc0\x19\xb6\xa6\xef\x9c\xcf\xdd\x31\xe4\x57\xb3\xc7\x11\x1c\x8c\x9a\x00\x82\x0c\x1a\xb1\x03\xa7\xae\xb3\x16\xd0\xc5\x40\xbc\x3d\x94\x81\x68\x2d\xab\xda\x37\x5d\x04\x01\x3b\x0b\xf7\x6d\x04\x16\xe1\x5a\x0b\x07\x19\xeb\x30\x6b\x73\xad\x2a\x67\xb8\x0b\xd9\xc6\xdd\x38\x06\x75\xdb\xf1\xdc\x70\x49\x96\x3f\xd2\xe2\x67\x32\xd0\xd8\x91\x11\xcf\x06\x34\xb8\x51\x6b\xb3\xe7\x55\x96\xe1\xc1\xf6\xbc\x43\x52\x4a\xec\x94\x9c\xef\xc2\xe4\x90\x80\x05\x89\xd4\x66\x91\x48\xcb\x49\x41\x46\x6e\xb8\x6a\x4c\x2c\x63\xaf\x73\x48\xd8\x2b\x03\xa6\x0c\xaa\x8d\xbd\x53\x73\x42\xf2\xe3\x50\x64\xed\xbb\x8e\x87\xf7\xbb\xe7\xcd\x7e\xd1\xe1\x69\xac\xf7\xc0\x1c\x20\xe9\x23\xdf\x6a\x48\xa0\x2e\x8c\x54\x5c\xa2\x61\xb7\xda\xfe\x51\xa0\x7e\x58\x36\xe8\x99\x84\x11\x42\xb6\x30\x2b\x48\x8d\x64\x85\x05\x98\xda\x54\xf1\x9e\xe9\xed\x95\x6e\x1f\x9c\x5f\xc7\x57\x93\xef\xf4\xd5\xa0\x13\xfa\xbf\x87\x7b\x66\x87\x11\xf8\x40\x5b\x74\x70\x4c\xa2\xc6\x48\x30\x21\x08\x1b\x73\x2e\xea\x11\xdb\xf0\x44\xd2\x36\xc0\x74\x9c\xb1\x58\x94\xab\x55\xa7\x89\xf4\xb7\xef\x6b\xa9\xee\x93\xff\xf1\xb6\xf0\x9d\x5c\x85\xcf\x61\x2d\x9e\xda\x9a\xd0\x7c\x6d\xee\x7d\x9f\xc7\x40\xfc\x2b\x5a\xe3\x5b\x5d\x62\x8d\x45\xf4\x3c\xd6\xf8\x69\x1f\x6b\xbc\xc5\x76\x41\x80\x1f\x5d\xa7\x2d\xfe\xe6\x1f\x66\xfa\xcf\x63\xa6\xef\xb5\x28\x90\xd4\x67\x9e\x54\x15\xf4\x1d\x2d\x7c\x22\xef\xa5\xa3\x82\x86\x56\x21\xb7\x9c\x91\xee\xb1\x66\x0b\x1e\xbd\x00\x11\x26\x9c\x8e\x87\xdb\x03\xf7\x80\x5f\x6e\xd4\x46\x30\xa8\x4a\x63\x22\x27\x46\x51\x8c\x23\x40\xab\x9a\x0e\x7a\xc4\x08\xe1\x51\xe0\x38\x45\xe4\x4a\xec\x95\xea\xd7\x52\x3c\x32\x73\x5a\x8d\x42\xf8\x5e\x30\x3d\x90\xe1\xef\x8d\xd1\x0e\x2b\x58\x7f\x47\xd8\x91\x8b\x15\xcf\x63\x88\x30\xa1\x2d\x99\xf2\xe8\xde\xfc\x1b\xda\x47\x35\x12\xc4\xd0\x72\x05\x20\xec\xd5\x97\x96\xc8\x08\xa9\x10\x2d\xa7\xbb\x6b\x1f\x7e\xae\x19\x8f\x72\xa5\xd1\x68\xe4\x12\x63\x43\x7c\x35\x28\xb0\x0f\x49\x5c\xf2\x14\x6b\xec\xb4\xb4\x0f\x85\xaf\xd5\x01\x47\x41\x0e\xbb\x26\x9a\x8d\xa6\x03\x19\xaa\x60\x18\xc7\x33\xf9\xce\x39\x4c\x4e\xd8\x9d\x16\x84\x32\xd3\x36\x0b\xc0\xce\x96\xbe\x98\xfa\xd0\xc0\x04\x76\xea\x10\x3b\x06\xc0\x82\xac\x83\x81\xd0\xdd\x23\xb1\x87\x4e\xf5\x90\x49\x19\x4c\x0b\x3d\x0d\x12\xe9\xfb\x61\xc1\x7b\x42\x2e\x78\xbc\x0d\xb9\x18\x13\xc9\xc0\x4b\xc7\x78\xbc\x49\xa4\xd9\x04\x36\x59\xab\x3b\x69\x6c\xde\x06\x84\x1c\x43\x4e\xb3\x34\xad\x09\x41\xcd\xa4\x30\xca\x25\xcf\x93\x74\x0b\xf7\x89\x2c\x17\x47\x41\x3d\xc1\xfc\x50\xc4\x13\x64\xa0\x20\x12\x99\x52\x8b\x65\x99\xe2\xad\x03\xee\xe5\xae\x03\x24\x91\xee\xa6\x23\xa3\x70\x14\x94\x49\x28\xa8\x18\xf3\x73\x3e\x47\xf4\x48\xc3\x5b\x39\xcc\xe3\xe6\xb9\x42\x73\x00\xb9\xaf\xd5\xa3\x0d\x75\x7b\xe4\x1e\xcb\xdc\x75\xba\x3e\x9b\x97\x65\xb7\x1e\x6a\x6f\x80\x56\x4e\x05\x84\x7f\xce\xb5\x46\xcf\x44\xec\x64\x53\x22\xa1\x3b\x94\xe2\xda\x5b\xae\x4b\x8d\x11\x73\x66\x2e\xe1\xfc\xb2\x86\x8e\xaa\xe1\x9a\xb9\xde\x25\x5a\x49\x36\x2b\xbf\xfc\xf2\x6b\xc1\xbe\x84\x10\x42\xba\x8f\xa0\x7f\x0c\xd8\x42\xb1\x74\x10\xd9\xae\x02\x81\x54\xa2\x8d\x19\x61\x6d\x10\x55\x1b\xaf\x0f\x20\x4f\x1e\xad\x99\x2e\x17\x88\x60\xe4\xe4\x62\xe1\xd2\xb1\x8e\x9f\x2b\x00\x23\xe2\xc9\x6e\x5b\xff\xff\x88\x43\x01\x93\xbe\xcc\x64\xa6\x90\x18\x1f\xa0\x9f\x0b\xc1\x36\x3c\xbf\x87\x1c\xbe\x68\x9e\x87\x44\x00\xaf\x13\x31\xae\xba\x17\xde\x54\xda\x43\x0e\x1d\x24\xbc\x66\x79\x29\xa5\x4d\x4a\xc6\x8c\x62\xea\x6d\xfd\xa3\x99\x5c\x94\xe1\xdd\xb3\xe2\x2c\xf0\x4b\x0b\x1c\x06\x20\x6c\x15\x30\x95\x50\xa3\xb8\xf6\xed\x1a\xb3\x1e\x5e\x83\x99\x7c\x66\xb7\xc1\x3e\x83\xdf\x15\xe9\x60\xd6\x98\x17\xc4\x2b\x40\x77\xc3\xbc\xd9\x30\x1d\xb8\xec\x41\xc9\xb9\x82\xe4\xd9\x23\xf6\x43\xf2\x20\x46\xec\x26\xe3\xf9\xfd\x88\xbd\x43\xf7\xdf\x1f\xd4\xa2\xcd\x86\xd7\x20\x94\x38\xd8\x8e\xf7\x34\x33\xd6\x2e\x9a\x97\x76\xed\xff\xe7\x06\x31\x00\xeb\xf2\x7d\xff\xf7\x44\xe4\x75\x70\x7d\xfc\x4f\xb7\x44\xec\x71\x53\xff\x03\xbc\xf6\x3f\xf2\x56\xbc\x9b\xe6\xe3\x9f\xc2\xff\x5a\xf9\x65\x35\x2e\xd0\x3d\x49\xca\xb5\xa2\xd2\x7e\x5b\x81\xcd\x49\x5c\x3f\x94\x9b\xf1\xcd\xfd\xb6\x02\x85\x8f\xc7\x2e\xb4\x7d\x00\xe8\x9e\x3e\xb5\xe3\x75\x9a\x2a\x5d\xe6\xbb\x37\xff\x75\xb5\xd5\xb6\xf6\x16\xa2\x57\x58\x6c\x9b\x85\x00\xd6\x82\xbe\xf0\x13\x7c\x6d\xfe\x57\xb5\x98\x03\xd6\xea\xb0\x1d\xde\x56\x9c\xa3\x8f\x56\x51\xa5\xa9\xfe\x84\xbc\xc9\x04\xf0\x5d\x79\x55\xd4\x3b\x04\x6a\x2b\xcc\x99\x46\x66\xd2\x32\xee\x63\xc4\x6c\x9e\x0b\xa0\x06\xcf\x05\x24\x7a\x64\xc4\x70\x98\x6e\x03\x8d\x28\xb8\xf9\x78\x50\x4c\x18\xe5\x06\xc1\xaa\x74\xdf\x5a\x08\x21\xdd\x68\x0f\x51\x25\x80\x06\xbb\x36\xfa\x84\x76\x7b\x14\x36\xf1\x42\x47\x52\xda\xc6\x77\xc1\x5d\x10\x54\xee\x95\x28\x02\x69\x5e\x53\x2d\x2a\x5b\xb3\xe2\xa1\xfa\x4d\x21\xfe\x5b\x7d\xd0\x35\x72\xae\x8a\x01\xa5\x97\x4f\xef\x39\xec\xe5\x57\xbc\x58\xe3\x85\x76\xa3\x0a\x81\x32\x13\x59\x82\x70\xbd\xa0\xd5\x79\x91\xaa\x05\x64\x58\x2c\x76\x30\x48\x46\xb4\xb5\x7b\x0d\x5d\x73\xc2\xfa\x48\x06\x23\x4d\x20\xd2\x36\x17\x1a\x08\x57\x9a\x5e\xaa\xbe\xf8\xe4\x61\x97\xee\x66\x73\x8d\xd0\x7f\xd7\xb8\x6c\x37\x53\x72\x98\x6d\x0d\x60\xd5\xb3\x27\x44\xd0\x34\x12\x9c\x10\x55\x35\xb9\x81\x91\xad\xb6\xd6\x5f\x9b\xc8\x7f\x26\x27\xf8\x24\x38\x04\xb8\xcf\xb1\xe5\xf0\xa0\x94\xb3\xd9\xed\x3f\x0c\x5f\x65\x93\x10\x81\x48\x16\x82\x91\xb7\x65\xc2\x65\x60\x04\x51\x8d\xb2\x48\x72\xc1\x24\xa0\x10\x66\x52\x97\x8b\x23\x4f\x4c\x62\x6e\x71\x0f\x40\xa6\xa3\x45\xc6\xe1\x2a\x03\x7c\x45\x47\x2d\xc7\x30\x5a\x26\x7d\xae\x1c\x4b\x1f\xc8\x53\x12\xfe\x10\x2b\x89\x91\xf1\xae\xef\xae\x1c\x73\x59\x83\x5b\xb4\x85\x2b\xe1\x61\xb7\x4b\x5e\x40\x36\x2f\x88\xc0\xbc\x46\x14\xc5\xaf\x7d\x80\x87\xde\xd0\xbe\x47\x37\xf8\xd3\x66\xf2\x5f\xed\xd9\xd0\x0d\x2a\x1e\xb0\xd2\xcd\xc8\x98\x23\xaa\x13\xec\x5c\x69\x9b\xbd\x42\x06\x4a\x60\x77\xa3\x1a\x4b\xbe\xad\x54\x6e\x71\x2d\x61\x4a\x17\x45\xe1\xb2\xf0\xf4\x21\xd1\x01\xd9\x3b\xd4\x76\x23\x04\x3b\xc9\xc5\xf2\xe4\x63\x2e\x96\x73\x3b\xd3\x63\xe8\xd0\xd8\xf4\xa8\x49\xf9\xde\x73\x71\xe8\x4c\xc9\x76\xf2\xc3\x3d\xd4\xa8\xb5\x2e\x61\x39\x41\x9f\x92\x25\xf3\xd9\x6d\x4d\x7f\x80\x01\x42\xc4\x75\x2e\xfa\x46\xcb\x3e\xfb\x31\xd7\x85\x04\xeb\x01\xb5\xea\x48\x82\xfa\x3f\xff\x78\xab\x8c\x59\x9f\xe3\xed\xb6\x0a\x99\xb1\xc2\x9e\x4b\x77\xe0\x75\xe3\x42\x3f\x2f\x3a\x1d\x26\x50\x67\xfc\x51\x12\x8f\xcd\x20\xd3\x53\xbf\x63\xad\x06\x20\x0a\x8e\xb5\x06\x06\xce\xef\x32\x69\x2d\x7d\x89\xcb\xa3\x39\x62\xfe\x06\xcd\xd3\x34\xcc\xa8\xe1\x3d\x6d\x33\xe9\xe3\x52\x8d\xd6\x9a\xa6\xd6\x84\x57\xd1\x37\x5c\xc2\x63\x5d\xf0\x42\x8c\x2c\xe9\x0a\xd1\x15\x92\x3f\xec\x68\xc1\x21\xb5\xb5\xcb\xa1\xb6\x6f\x37\x3f\xd7\x25\xf2\x37\x16\x17\xbd\xc7\xf3\x8c\xd5\xce\xef\x45\x03\xce\xbc\xb7\xad\xed\x9e\x8e\x80\x52\x02\x36\xb3\x95\xb2\x11\xcf\x73\x8b\xf2\xa7\x5a\x99\xa5\x3b\x0f\x6f\x25\x1d\xed\x5c\x8b\xe8\x3e\x53\x89\x1c\x2c\x8b\x2a\x14\x17\xb0\xd8\x0b\xe6\x4b\x73\xb7\xc3\x5e\x87\x63\x45\x9f\xc4\x8e\x68\x80\x57\x58\x68\xa8\x27\x63\xe3\xcc\x65\xca\xee\x5e\x76\xcf\x6d\xbf\x10\xfe\x6c\x78\x01\x5b\x6c\x8b\x7f\xa8\x76\xaa\xf0\x16\xc3\x4e\x85\x09\x94\x37\xa2\xbf\x7a\x0e\x36\x67\x15\x0a\xc3\xd6\x21\x05\x13\xe4\x3f\x2c\x43\xff\xb0\x0c\xfd\x37\xb7\x0c\x7d\x4e\xb3\x10\x60\x63\x5e\xd2\x26\xb4\xc3\x41\x7e\xc0\x76\x74\xb5\x0e\x8e\x71\x6c\xd5\x8e\x47\x41\xd2\xef\x20\xd2\xb1\x09\xf4\xb7\x44\x18\x66\x7c\x16\x3c\xba\x17\xb2\xd3\x47\x6f\xe9\x8b\x3a\xf3\xaf\x3e\x2f\x82\xa5\x8d\x7d\x29\xf8\x7a\x37\x94\xc5\x43\x9d\x88\x34\xb8\x8d\x10\xc4\xec\x13\xd0\x3d\x4d\xc7\x8f\x00\x34\xa6\x72\x47\x6c\xad\x29\x0a\x0f\x9d\x91\x48\x93\x84\x60\xa9\x1a\x15\x74\x5f\x4c\x9c\xad\x78\x9e\x29\x95\xb6\x42\xe3\x9e\x75\x00\x1b\x81\x32\x7d\x07\x6f\x8a\xca\xa8\x0e\x01\x63\x76\x14\x7d\xd0\x85\x0f\xd1\xc0\x78\x0c\xc8\xc4\x01\xab\x29\x2e\x21\x96\xd2\x0f\x47\x90\x5e\x91\x3b\x83\x0b\x61\xc4\x16\x22\xe2\x90\xf8\xd5\x82\xf7\x22\xee\xa2\x4f\x42\x52\xa4\x46\x38\x88\x6e\xd6\xd3\xe1\xb5\x84\x72\xe7\x49\x5b\xda\x8d\xa1\x9b\xab\xa6\x21\x58\x68\x39\xb6\xdc\x22\x49\x2c\xed\xe2\xbe\x84\xc6\x96\x63\x7a\x0e\xd9\x17\xfb\x9d\x70\xad\x72\x67\x4a\x05\x9d\x42\x39\xfd\x05\xe9\x0f\x10\x8e\xb3\xe9\x89\xdc\x99\xc9\x89\xcb\x73\xeb\xb1\x5f\x0e\xb9\x87\xee\x52\xc4\x2c\x36\xa6\x06\xb9\x1c\xfd\xcd\x65\xc4\x74\x19\xad\x81\xad\xb2\x2a\xa7\x42\xb9\xd5\xdc\xb1\xa3\x99\x34\x17\x22\x30\xb5\x6c\x38\xc4\xc5\x3f\x1a\x65\x55\x27\x7f\x13\x0e\x9e\x45\xe4\x5d\x21\x22\x0b\x2f\x4e\x4a\xb6\xa2\xd7\x2c\x71\x28\x02\x2c\x3c\xa6\xa4\xcc\x62\x5e\x88\xf1\xcc\xa3\x6d\x12\xb4\x74\x5a\x94\x07\xa9\xcc\x3a\xec\x58\x88\x63\xac\x49\xda\x34\x59\x8a\x68\x1b\x35\xb2\x10\xed\xa6\x89\xf8\xc7\xb5\xed\xb7\x75\x6d\x43\x96\x5d\x8c\x19\x1c\x32\xb4\xd4\xd4\x6b\xff\xf9\x61\x83\x2b\x58\xd0\x12\x3d\x60\x9c\x3f\xe3\xb5\xb3\x45\x07\x1e\xa6\xcf\xf7\xbe\x07\xed\x3e\xce\xfc\xc5\xd6\x1f\xd6\x01\x05\x42\x43\x2d\x0c\x9d\x8b\x45\xb8\x74\x8c\x42\xdb\xdb\xad\xdf\xcd\x32\xf3\x9b\x02\x27\xf5\xb9\xb8\x1a\x8d\xdb\xc1\x95\x2e\xac\xa6\x2d\x05\x9e\x77\x3b\x34\xee\x80\xd5\x9d\x17\xaf\xb4\x1b\xf5\xaa\x04\xb4\xd8\xff\x89\xdc\x1e\x14\x80\xb9\xcd\xc4\xbc\xcc\xd3\x83\xe0\xc6\x77\xd7\xe7\xc7\x4e\xdb\x00\xcd\xb9\x33\xef\x51\x51\x4b\x0d\x6d\x73\x12\x8b\x98\xe0\xa0\x91\x4a\xd9\xa2\x5c\x2e\x21\x7f\x09\x01\x43\xad\x30\x82\xcc\xf4\xa5\x2e\xec\x79\x82\x4c\x33\x5c\x17\x33\xa9\xa4\x60\xb3\x2f\x8e\x67\x5f\x98\xa3\x2c\xe7\x51\x21\x72\x24\x19\x48\xb9\x2e\x98\x16\x2b\x50\xb5\xa8\xd2\xbb\xeb\x73\x88\x4a\x2c\xd6\x58\x9c\xbb\xb2\x62\xbc\x27\x72\x3e\x43\xae\x1f\x20\xa8\x96\x41\xc6\x2d\x68\xfb\x6b\xae\x59\x22\x67\xf2\xa3\x29\xe2\x78\xa5\xd4\x2a\x15\x63\x3b\x21\xe3\x77\x64\x7a\xfc\xf8\x06\x5b\x00\x9f\x87\xb0\x7e\x73\x20\x72\xa9\x64\x12\xf1\x14\x02\x72\x66\x12\xb4\xe6\x91\xe9\x0c\x98\x46\x67\x5f\x8c\x67\x5f\x30\x70\x9f\x16\x8c\x47\x91\xc8\x0a\x11\x63\x6a\xd3\xa9\x64\x19\xe0\x17\x23\x31\x62\x85\xe0\x1b\x6d\x29\x9d\x59\x66\xee\x98\x70\x35\x64\x89\x24\xa4\xd3\x22\x91\x3c\xdf\x22\x98\x09\x93\x95\x53\xf0\xc7\x76\x26\xc5\x27\xa0\xff\x4c\x80\x01\xb4\xd4\x8e\x96\x86\x12\x13\x98\x2e\x4f\xe4\x76\xcc\x7e\x40\x86\x06\xa4\x40\xbd\xbb\x3e\xb7\xf4\x46\x14\x03\x3a\x93\x3a\x5a\x8b\x8d\x60\x1f\xd7\x45\x91\x7d\x1c\xe1\x7f\xf5\x47\xf0\x38\x4a\xc5\xf0\xe9\x88\x99\x29\x32\x8a\xaa\xc5\xcb\xa7\x5b\xc8\x21\x5b\x66\x94\x70\x7e\x26\x81\x8b\x3d\x0f\xd1\xbd\x66\xb4\xa1\xc6\xe0\x0a\x5e\xc1\x85\x1b\x29\x0e\xc9\x1d\x4f\xcc\xe0\xfc\x2f\x36\x5d\xfa\x2a\xcd\x00\xda\xdc\x62\xae\x55\xa0\x90\x68\x08\xd9\x1a\x9b\x0f\x26\x92\xfd\x70\x7b\x7b\xc5\xbe\x3f\xbb\xb5\xca\xce\xdd\xf5\x39\xae\x0b\xa0\x53\x61\x9c\xfd\xb9\x3e\xc5\xb7\xdb\x4c\xfc\xe5\xcf\x7f\x99\x49\x66\x73\x94\x4b\x3b\xd2\xb8\xa3\x47\x48\x09\x0b\x78\x27\x70\xcc\x02\x95\x33\xd4\x87\x29\x77\xa8\xf9\x39\x6a\xe7\x8f\x64\x2d\x80\x33\x2a\x55\xea\xbe\xcc\x9c\x99\x3b\xd4\xc3\x4c\x85\x77\xd7\xe7\x50\x3a\xd0\x29\x15\x6b\xc8\x9f\x26\x9c\xf5\x05\x26\x9e\xdb\xc6\x98\x7f\x3f\xa8\x24\x66\x5c\x6e\xcd\xb7\x58\x34\x2c\xcb\x5c\x2c\x55\x2e\x46\xf6\x4d\x53\x00\x2f\x92\x45\x92\x26\xc5\x16\xa4\x94\xcd\x6b\x9f\x59\x8e\x7c\x53\x80\xb9\xcd\x10\xc0\xdb\x2c\x30\x4c\x63\xfb\xfa\x4e\x87\x08\x70\x98\x34\x97\x1b\x11\x2f\x3a\xe6\xdb\x45\x2e\xf8\xbd\x59\xdd\x54\xc2\xf8\x0d\xe5\x8c\x15\x27\x78\xc6\x2c\x4b\x19\xe1\xd2\x30\x6d\xa0\xd5\x4f\x37\xa7\x74\xcb\xf8\x03\x4f\x30\xa7\xac\x75\x97\x2f\x97\x49\x94\xf0\x94\x24\xc7\xa2\x5c\x42\xda\x18\xae\x29\x65\x11\x82\x0f\x4d\x21\x70\xcb\xb0\x09\xfb\x71\x41\x2d\xc4\x2a\x41\xc0\xf1\x63\x52\xac\x31\xae\x60\x8c\xf3\xcc\xb3\x44\x8f\x23\xb5\x81\xfd\x76\x03\x4b\x49\xd3\xa5\x17\x70\xe0\xb5\x75\xce\x5e\x5b\xa8\xdd\x26\x2b\xb6\xb4\xf6\xde\xb0\x4d\xb2\x5a\x17\x90\xc8\x05\x6a\x07\x48\x44\xb2\xc9\x52\xb8\xf4\x91\x87\xd1\xe2\x7d\xb5\xd8\x70\x59\x24\x51\x97\x4f\xa9\x35\x25\x78\x3f\x8c\xe7\x62\x5b\xec\xb6\xe3\x7d\x20\x9e\x7d\x8e\x14\xfa\x81\x44\x66\x75\x81\x4c\x32\x10\xd2\xcb\x04\x04\xfe\xf5\x94\xb3\xfb\xae\x50\x1f\x27\x72\xfb\xd1\x93\x90\x72\x19\xe4\xbe\xda\x51\xbb\xdd\xff\x3c\x55\x34\x6b\x8c\xcf\x24\xa0\x3a\x8d\xc0\xa0\x64\xb4\x3b\xcf\x18\x77\xa4\x98\x99\xbd\xb2\x8b\x26\x4d\x16\x50\x37\xc9\x0a\xcd\x74\x99\x41\x3c\x41\xa1\x58\xc6\xa3\xfb\xe3\x52\x9a\xff\x18\x61\x88\xdb\x5d\x87\xe4\x44\x33\xa9\x96\xac\x2c\x70\xe3\xd8\x25\x0c\x46\x91\xc0\x14\xe0\x2f\x68\x1b\x51\xac\x55\xec\xe2\xc2\x4c\x99\x30\x7e\xa6\x45\x67\x44\x2f\xfd\xf6\x84\x5d\x99\x0a\xcd\x22\xa6\xba\xb9\xeb\x7e\x22\xd9\xe9\xbf\xfe\x2b\xbc\x6f\x06\xf7\xbd\x52\x6c\xa9\x14\xfb\x96\x8d\xc7\xe3\x7f\xc7\xdf\x4c\xa1\x5c\x6e\xe9\x2f\x2e\xb7\x63\x53\xdc\xfb\x5c\x6d\x5e\x2f\x95\x7a\x43\xbf\x43\xd2\x66\xf3\x8f\x64\xc9\x5e\x9b\x97\xee\xa0\xaa\x5b\xf5\x7a\x56\x7e\xf9\xe5\x57\xbf\x37\xaf\xbe\x61\xff\x89\xef\x04\xaf\xff\x3d\x6c\xea\x57\x7b\x9a\xfa\x07\xfe\xc0\xfb\xb4\x95\x7d\x0b\x67\x8d\x29\x60\x67\x1b\x13\xfd\xfa\xbd\x52\x63\xb8\xfd\x87\xad\xc3\x62\xcd\x1b\xd8\x8a\xe0\xad\x7f\x0f\x9a\xcd\x6c\xbb\xbf\xde\xd3\x6e\x44\xd5\xbb\x96\x63\xf1\xef\x95\x7a\x3d\x1e\x1b\xb9\x45\xe3\x8a\xad\x7e\xfd\xa6\x3a\xd0\xd0\x81\x66\xfb\xcd\xe3\x29\x36\xff\xdd\xd9\xcd\xe9\xf5\xf4\xea\xf6\xf2\xfa\xcd\x89\xed\x81\x9f\x81\xe0\x7b\x66\x53\x6b\xbb\x86\xff\xef\x3d\x0d\xff\x5e\xd9\x36\x43\xa3\x4f\xbe\x65\x38\x9b\xd9\x62\xfc\x5e\xa9\xff\x1c\x8f\xc7\x7f\xa7\xc7\x5c\x6e\x47\xe6\x60\x32\xef\x64\x28\xca\x3f\xf0\x5c\xaf\x79\x6a\xfa\x14\xb4\xc1\x75\xa2\xb5\x44\x5b\x5c\xb2\xac\x15\x76\x27\x37\xbe\x38\xa8\x0c\x26\x16\xde\xfa\xe7\x6f\x99\x4c\x52\x3f\x7d\x41\x1d\x30\x4f\xb7\x40\x2d\x11\xdd\xbb\xed\xe2\x72\x84\x2e\xb6\x2c\xab\x6f\x5c\x8c\x3b\xdb\xda\x0c\x05\x46\xdc\xcf\xe4\xab\x16\x89\x7e\x6c\x54\xbb\x31\x3c\x30\x07\xd4\x2b\x9b\x3d\xde\x1e\x0b\x2e\xb3\x16\x8e\x2c\x38\xa2\x71\xb7\x4a\x8a\x51\x6b\xd3\x0f\xdd\x81\x17\x90\x55\x81\xda\xf9\xea\xf8\x15\x05\x0a\xf9\x2a\xaa\x44\xf2\xb3\x2f\x96\x4a\x8d\x17\x3c\x87\xd6\x7d\x3a\xde\x8e\xff\x36\xfb\x02\xfb\x83\xca\x07\x2a\x46\x50\xf8\xec\x0b\x78\x0a\xcb\x61\x26\xff\x70\x73\x79\x31\x93\xdf\x7e\xfb\xed\xb7\x38\x5a\xe6\xef\x16\xdf\x8b\x39\xae\x40\xdc\xa2\x9e\x52\x6a\x9b\x52\x52\xac\xca\x94\xe7\x33\xd9\xee\xae\x89\x85\x17\x9a\x23\xef\xbc\xa1\x75\x36\xb2\xd9\x2d\x20\x49\x99\x95\x71\x68\x9b\xfc\xf8\xff\x9b\x26\x7f\x24\x15\xd1\x09\xf9\x70\x08\xc6\x76\x31\x9f\xd8\xa5\x6a\x06\xdb\xac\x5f\xaf\x67\x2d\x93\x54\xd0\xc6\xb5\x8b\xfb\x4a\xe4\x5a\x49\xbf\x66\xe8\x42\x00\xdc\x66\xe0\x00\x60\xdf\xb2\xb7\xff\x5e\x7b\x6a\xe6\xc1\x3e\xfc\xaa\x22\x09\x18\xf3\x45\xcd\xbe\x80\x56\xcf\xbe\x38\x61\xb3\x2f\xda\xd6\x4d\xb5\x61\x63\x6c\xca\xec\x8b\x91\x2f\x00\x9a\x71\xc1\x37\x58\x48\xf9\xe5\x97\x5f\x47\xd8\x04\x0c\x5d\x0b\xde\x34\x4d\xea\x7e\x31\x68\xe2\xb4\xe6\x3a\xb3\x03\x61\x43\x20\x1f\x45\x9a\x1e\xdd\x4b\xf5\x88\x79\xc6\xc1\x4f\x44\x51\xca\x0c\x97\x47\x75\x72\x29\x37\x59\x6d\xc6\x6d\xd0\xa6\xab\xc6\xa5\xb7\x83\x09\x9d\xc9\x8f\xb0\x74\xec\x8c\x12\x1d\x11\xd0\x81\xba\x9a\xe0\x52\x43\x2b\xc1\xc6\x58\xd0\x42\x98\x49\x28\xc6\xcd\x39\x7b\x0d\xc0\x2f\xea\x4a\x43\xb3\xb6\x97\xa7\xbf\xfc\xf9\x2f\x6f\x4e\x0e\x99\xa7\x6a\x71\x95\xa9\x82\xfe\x60\x19\x6f\xc7\x5f\xbd\xfd\x4a\xcf\xbe\xa0\x51\x6f\xbf\x62\x9f\x27\xba\xf8\xa9\xa6\x81\x3d\x21\xd9\xb9\x51\x1c\x5e\xca\x79\x61\x9b\x8a\xcd\xec\xeb\xb4\xb8\xae\xba\x15\xd4\xd2\x9a\x75\xe0\x72\x66\xd3\xc0\x9b\x76\x0f\x52\xef\xdc\x78\xe1\x65\x8b\x3d\xe6\x3c\xcb\x44\x6e\x6d\xe5\x0d\x77\x06\xe4\x54\x87\x5a\xac\xe8\x6f\x13\x66\x66\xd9\xd4\x8a\x86\xd7\x60\xe8\xc6\xed\x33\x77\x51\xa6\x69\xe7\xcc\xed\x4f\x96\x7c\x71\x77\x7e\x3e\xff\x69\x72\x7e\x77\x66\xbb\xdf\x9a\x7c\x38\x78\xad\x73\x4c\x5c\x4b\x68\x4c\x10\x57\x55\x00\x96\xaa\xdc\x88\xdc\x32\x85\xf9\x5e\x23\x8e\xa4\x4c\xd3\x6a\x5a\xec\x99\xfc\x48\xe5\x80\x18\x28\x65\x62\xd5\x94\x9d\x03\x57\xad\x1f\x5e\xfb\x68\x0a\xff\x88\xdf\x1e\x31\xdf\x89\x13\x76\xe1\x6a\xed\x18\x57\x22\x9c\x38\x60\x3b\x60\xbc\x6d\xd7\x76\x78\xee\xc4\xff\x4f\xdb\x1e\x77\x12\x92\x7e\x19\xc9\x8b\xf9\xfa\x9f\x65\x77\xe0\xd8\x7d\xac\x42\xc1\x9d\xb9\x34\x46\xaf\x21\x94\x3b\xc2\x74\xed\xba\x20\xce\x62\x1c\xb3\x99\x44\x41\x6c\xda\x54\xa8\xee\x36\xb1\x29\x79\x90\x52\x2e\x57\x25\x5f\x09\x3d\x62\xb6\xf2\x99\xb4\xb7\x53\x7b\xd7\x71\xc0\x1c\x60\x64\xad\x2d\xa1\x5a\x08\x70\x22\x67\x92\xfa\x04\x27\x2c\x15\x8f\xe1\xa8\x7f\xb8\x71\xdd\xa1\xb8\x6f\x2c\x88\x32\xce\xcb\x99\xc4\xc9\x45\xdb\x98\x05\x1b\x82\xda\xd1\x3c\x9b\x38\xc0\x83\xf1\x5e\x17\xb3\x42\xad\x00\xf6\x38\x93\x8e\x05\x0b\xc1\x19\xf6\xbe\xe6\x73\x83\x62\x93\xf6\xcb\x13\x3b\x19\x76\x4f\x50\xdb\xda\x57\xfd\xc1\x67\x80\xd9\x70\xf3\xd6\xbb\xfc\xee\x65\xeb\xc5\x58\x4f\x40\x0e\x0f\x04\x47\x17\x35\x22\x50\x9f\xb5\xb7\xc6\xf6\x0b\xdf\xe9\x8c\x1e\x55\xe5\x22\x1d\xd0\x24\x7c\x7f\x67\xa3\x50\x24\xef\x6e\x54\x0f\x8b\xf4\x75\x6d\x6b\x99\x65\xba\xab\xda\x85\x52\x1d\xf3\xf2\x8c\x98\xdd\x4a\xa3\xe8\x83\x7d\x83\x51\x46\xc5\x53\xd6\x4b\x0f\x3e\xa0\xfa\x10\x59\xe9\xb3\xab\x41\x69\xa2\x9f\xd4\x1c\xaf\x3f\xf5\x6e\x91\xd3\x10\xe8\xb0\x1b\x24\x61\xe9\x9c\xab\x08\xd8\x0e\x31\x69\xaf\x29\x18\xde\x22\x12\x14\x2f\x66\xf3\x8c\x60\x13\x99\xf5\x3f\x72\x8b\x68\xe4\x67\x6e\x04\x8d\x8c\xca\x5c\x1b\x71\x49\xf2\x8e\xa4\xb6\xca\x19\x9f\x49\xcb\x06\x63\xc5\xf1\xc4\xda\x83\x73\xf7\x2b\x72\x2c\x65\x98\xb2\x0e\x9c\x42\x05\x58\xc9\x49\x1a\xce\xe4\x03\xcf\x13\x2e\x01\xd3\xbc\xd0\x90\x6f\x18\xae\x74\x5b\x46\x0f\x1c\x01\x87\x0e\x8d\xcc\x7b\x64\x5e\x4d\x0d\xa8\x9c\xf3\xff\x64\xfe\xf7\xf7\x7f\xfa\xbf\x01\x00\x00\xff\xff\xde\xaa\xee\x8d\xa0\xa7\x06\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7b\x73\xe3\x38\x92\x2f\x0c\xff\xbf\x9f\x02\x51\xfb\x46\x54\xf7\x8c\xed\xea\xb9\x9c\x7d\x27\xbc\x71\xe2\x79\xd4\xb6\xaa\xda\xa7\x5d\xb6\xc7\x97\xae\xed\x38\xda\x50\x43\x24\x24\x61\x4c\x01\x6c\x00\xb4\x4b\xb3\x31\xdf\xfd\x09\x24\x00\x12\xa4\x48\x8a\xba\xd9\x92\x0b\xbb\x11\xbb\xd5\x16\x09\x02\x89\x44\x22\xaf\xbf\xfc\x9f\x7f\x43\xe8\x9d\x7c\xc6\x93\x09\x11\xef\x4e\xd1\xbb\x3f\x9f\xfc\xf0\xee\x48\xff\x8d\xb2\x31\x7f\x77\x8a\xf4\xef\x08\xbd\x53\x54\x25\x44\xff\x3e\x4e\xe6\x8a\xd0\x38\xf9\x20\x89\x78\xa2\x11\xf9\x80\xe3\x19\x65\x27\xa9\xe0\x8a\xc3\x8b\x08\xbd\x7b\x22\x42\x52\xce\xf4\xe3\xf6\x9f\x88\x71\x85\x24\x51\xef\xfe\x0d\xa1\x7f\xc1\xf0\x32\x9a\x92\x19\x91\xef\x4e\xd1\xff\x35\x2f\x4d\x95\x4a\xdd\x00\xfa\xdf\x52\x3f\xfb\xdf\xf0\x6c\xc4\x99\xcc\x4a\x0f\xe3\x34\x4d\x68\x84\x15\xe5\xec\xc3\x3f\x24\x67\xc5\xb3\xa9\xe0\x71\x16\x75\x7c\x16\xab\xa9\x2c\xd6\xf8\x01\xa7\xf4\xc3\xd3\x9f\x3e\xe0\x48\xd1\x27\x32\x4c\x70\xc6\xa2\xe9\x30\x4d\x30\x93\x1f\xb8\x98\x7c\xf8\x1f\x1a\x9f\x70\x31\xf9\x17\xfc\x23\x15\xfc\x1f\x24\x52\xe6\x3f\x62\x3e\xc3\x94\x99\x7f\x33\x3c\x23\xff\xca\x07\x45\xe8\xdd\x84\x28\xef\x3f\xf5\xd2\xb3\xd9\x0c\x8b\xb9\x26\xcf\x47\xa2\xa2\x29\x52\x53\x82\xcc\x47\x91\xa3\x17\x1f\x23\x8c\x4e\x05\x19\x9f\xfe\x26\xc8\x78\xe8\xa8\x7e\x62\xa8\x7d\x09\x53\xbb\x49\x30\xfb\xed\xc4\xd2\x0c\x46\xe6\x29\x11\xb0\xd0\x8b\x58\x8f\xfe\x89\xa8\x1e\x0c\x5b\x3c\xff\x67\xff\x71\x41\x64\xca\x99\x24\xb2\x34\x3f\x84\xde\xfd\xf9\x87\x1f\x2a\x7f\x42\xe8\x5d\x4c\x64\x24\x68\xaa\xec\xce\xf6\x90\xcc\xa2\x88\x48\x39\xce\x12\xe4\x46\xf2\x67\x63\xd6\xaa\xb7\x19\x2f\x0c\x86\xd0\xbb\xff\x9f\x20\x63\x3d\xce\xbf\x7f\x88\xc9\x98\x32\xaa\xc7\x95\x86\x9b\x8a\xe9\xbe\x2b\xbd\xf5\xaf\x7f\xab\xfb\xf7\xbf\xbc\x15\xa5\x58\xe0\x19\x51\x44\x14\xfb\x6f\xfe\xa7\xb2\x16\xbd\x49\xfa\xe3\x66\x47\xab\x93\xae\xac\xf4\x1a\xfe\x85\x93\x23\xc4\xc5\x04\x3d\x92\x39\x02\x96\x22\x31\x52\x1c\xf6\x4e\x10\xc9\x33\x11\x2d\xae\x9e\xc2\xfb\x9a\xcd\xaa\xbf\x08\xf2\x7b\x46\x05\xd1\xdb\xa4\x44\x46\x2a\xbf\xaa\x79\x0a\xd3\x93\x4a\x50\x36\xf1\x89\xf0\xaf\xa3\x4e\x8b\xb2\xdc\xb9\x64\x61\x57\x78\x46\x34\xa7\xe9\x35\xd8\x37\x4a\xeb\x41\x23\x92\x70\x36\x91\x48\xf1\xfd\x59\x9a\x39\x6b\x2b\xac\xcc\xbc\xd0\xb8\xb0\x01\xeb\xb9\x47\x22\xcc\xd0\x88\x20\x2d\x6e\x68\x4c\x04\x89\x11\x96\x08\x23\x99\x8d\x24\x51\xe8\x99\xaa\x29\x65\xfa\xbf\x53\x12\xd1\x31\x8d\x1c\xcd\xf6\x87\x36\xf0\xcf\x76\xca\x3c\x48\x22\xf4\xc4\x9f\x68\x4c\x62\xf4\x84\x93\x8c\xa0\x31\x17\x65\x3e\x1e\xb0\xfb\xa9\xa6\xc3\x6c\x44\x19\xc8\x13\x4d\x4b\xc7\x21\x7f\x74\xe4\xfa\x23\xd2\xdf\x43\x19\xa3\xbf\x67\x24\x99\x23\x1a\x13\xa6\xe8\x98\x12\x59\x1d\xed\x8f\xdc\x1e\x21\x74\x8c\x34\x9d\x89\x50\x40\x6f\xce\x14\xf9\xaa\x24\x3a\x46\x09\x7d\x24\xe8\xfd\x25\x95\x0a\xf5\x6e\x2e\xde\x1f\xa1\xf7\x46\x08\x20\x10\xbf\xef\x5f\x80\xc2\xf9\xbf\xff\xdb\x93\x27\x0a\x4f\xaa\x92\xe4\x5d\x4f\x8b\xa8\x3b\x73\xfb\x15\x23\xfc\xf7\xbf\xf9\xe3\xd8\xfd\x6a\xbd\x52\x0e\xf8\x16\x09\x97\x48\x90\xb7\x41\xde\x06\x79\xbb\x7b\x0a\xef\x5e\x3b\xfb\x3d\x23\x62\xde\xb2\xaa\x31\x4e\xe4\x5e\x5f\x23\xc5\x1d\x62\x2f\x90\xae\xd7\x06\xec\x7e\xf9\xc6\x90\x9a\xf1\x36\xbd\x30\xf4\xb8\xd5\x1b\x43\x1e\xd6\x95\xa1\x97\xb0\xeb\x6b\x63\x93\x3b\x03\x2b\x38\xcc\x98\x32\x73\xf6\x73\x51\x20\xa4\x3e\xfe\x8e\x7d\xf7\x44\x52\x6e\x72\x85\x78\x2b\xf3\x6e\x11\x77\x39\x78\x54\xd9\xc3\x75\x27\x74\x46\x97\xed\xef\x05\x8b\x69\x84\x95\x95\xe1\x2c\x9b\x8d\x88\xd0\x64\x70\x52\x0b\x56\x3b\xd2\x52\x4c\x65\x82\x91\xb8\xc3\x32\x37\x91\x68\x94\x29\x32\x21\xa2\xfa\xf6\x98\x8b\x19\x56\xf6\x81\xff\xf8\xeb\xaa\x84\x50\xfc\x91\x2c\xdb\xff\x0b\xb3\x9b\x11\x96\xc0\x06\xb3\x2c\x51\x34\x4d\x08\x4a\xf1\x84\x48\x4b\x91\x2c\x51\xf2\x08\x1e\x93\x44\x3c\x11\x71\x9c\x5f\xac\xf0\x05\xa7\x50\x64\xd2\x48\xff\x71\xae\x17\x33\xf2\x55\xc1\x48\x03\x06\x2a\x05\x90\xc8\xbf\x28\x5f\xe6\x72\xe8\x40\x2a\xc9\x85\x1a\x8e\xe6\x27\x8f\x64\xe1\xbb\x8d\x9c\x83\x19\xc2\x4a\x09\x3a\xca\x14\xd1\xeb\xd6\x63\xb8\xab\x0f\xc4\xa3\xd1\x3b\xba\x88\x86\xd7\x5b\x70\x4c\x05\x89\x60\x6d\xab\x1c\x98\xfc\x2d\xbd\x6e\x7d\xf1\xcf\xcd\xea\xb5\x1e\xa0\xd5\xac\x1a\x0a\xe4\x5b\x3e\x60\x03\x86\x8e\xd1\x79\xff\xee\xac\x7f\x75\x7e\x71\xf5\xe9\x14\xfd\x38\x47\x31\x19\xe3\x2c\x51\x47\x68\x4c\x49\x12\x4b\x84\x05\x81\x21\x49\xac\x55\x29\x3d\x19\xc2\x62\xca\x26\x88\x8b\x98\x88\xdd\x91\xb1\xf2\x2b\x61\xd9\xac\x72\xaf\xc0\xdf\x8b\xd9\x57\xde\xd0\x2a\x46\xfe\x53\xe9\x97\xff\x5e\x20\x30\xac\x58\x7f\xdb\x1b\x6d\xc5\x6d\x0c\x8a\x9a\xaf\xa8\x45\x53\x9a\xc4\x82\xb0\x0f\x0a\xcb\xc7\x21\xf9\x4a\xa2\xcc\xe8\x19\xe0\x47\x2e\xff\x71\xa8\x0d\x09\x1e\x93\xf2\x5f\x4a\xff\x61\xbc\xce\x2b\xbf\x56\x68\x86\x2b\xbf\x9a\xfb\x22\x56\x7e\x13\x3c\x17\xdd\xde\x83\xbf\xd0\xb8\xf6\x69\xf8\xcb\x92\x35\xb8\x67\x5a\x26\xeb\x1e\x69\x9c\x95\x7b\xc0\x2a\xc0\xb5\xcf\x08\xa2\xc4\x7c\x88\x95\x22\xb3\x54\xad\xe8\x95\xc1\x28\xd1\x6a\x76\x9b\x5a\x7d\xc5\x63\xd2\x77\xdf\xfb\x0d\x19\xed\x9e\xc4\x68\x34\xb7\xc7\x62\x4c\x04\x61\x11\x69\x1e\xe1\x1e\xcb\xc7\x62\x84\x65\xba\x79\xe9\x7b\xf2\x23\x17\xfa\xf5\x83\x08\x0c\x94\x66\xfe\x12\x3a\xfa\x3a\x27\xf5\x8d\x45\x13\xd6\x95\x3a\x6f\xce\x17\xb6\xa6\x0c\x0d\x9e\xb3\xcd\x29\xd9\xd5\xcf\xc6\x05\x92\x73\xa9\xc8\x6c\xa9\xc7\xed\x70\x08\x61\x2f\xc9\x7d\x9d\x70\xe5\x9e\xfe\x06\x4e\x7d\x59\xeb\x08\xc7\x7b\x05\x92\x6d\xcb\x5f\xbe\xef\xeb\x74\x09\x30\xed\x4b\xbd\x73\xdb\xe7\x85\xeb\x0e\x62\x99\x25\x7d\x78\xdb\x93\xdc\x91\x07\xaa\x71\xaf\x1c\xb5\x87\x30\x81\x25\xbe\x87\x72\xc4\x25\x3f\x7f\xfa\x55\xdf\x69\x67\x3c\xb4\x6a\x4a\xa5\xe7\xbf\x44\x11\x17\x46\x1d\x8e\xed\x79\x37\xee\x87\xde\x7d\xef\xae\x7f\x7f\x8a\x7a\x28\xc6\x0a\xeb\x03\x2e\x48\x2a\x88\x24\x4c\x81\x6b\x47\xbf\xaf\xe6\x68\xc6\x63\x92\x18\x27\xc4\x47\xad\xfd\xa3\x73\xac\xf0\x19\x56\x38\xe1\x93\x13\xd4\x83\xff\xd4\x2f\x53\x89\x70\x22\x39\xc2\x8e\xad\x48\xec\x86\xc0\x2c\x76\xa2\x05\xa3\x88\xcf\x52\x9a\xe4\xd1\xa6\xdc\xdf\x46\x59\x4c\x9f\x68\x9c\xe1\x04\xf1\x91\x96\x2a\xf2\x64\xc0\xfa\x4f\x84\xa9\x0c\x27\xc9\x1c\xe1\x24\x41\xf6\xb3\xee\x01\x24\xa7\x3c\x4b\x62\x3d\xae\x9b\xa5\xa4\x33\x9a\x60\xa1\x75\x5a\x33\xdb\x6b\x3b\x16\xba\x9f\x92\x7c\xae\x30\x2f\x4d\xcd\x19\x7e\x24\x12\x51\x85\x52\x2e\x25\x1d\x25\xc5\x99\x7f\xb8\x40\x30\xef\xb3\xcb\x0b\x70\xf1\x44\x0a\x71\x23\x43\xdd\xc7\xad\x4b\xcf\x7d\x71\x86\x19\x23\xf0\x61\xae\xa6\x44\xd8\xcf\xdb\x87\x5f\xdb\x5b\xf3\x70\x75\x77\xd3\x3f\xbb\xf8\x78\xd1\x3f\x5f\x74\xd7\xdc\xf7\xee\x7e\x5e\xfc\xeb\x97\xeb\xdb\x9f\x3f\x5e\x5e\x7f\x59\xfc\xe5\xb2\xf7\x70\x75\xf6\xd3\xf0\xe6\xb2\x77\xb5\xf8\xa3\x65\xab\xce\x9e\x1f\x7f\x66\x5b\x3b\x5b\x07\xe7\x14\x0a\x4e\xfd\x15\xb6\x7d\xdb\x4e\xfd\xa3\xb7\xeb\xd5\x1f\xd3\x04\x9c\x0e\x9d\x3d\xfa\xb9\xd7\xc8\xbe\x89\x52\x2c\xa5\xd1\x03\xcd\x0c\x4e\x06\xec\x33\x17\x5a\x5c\x8f\xb9\x96\x88\x5a\x57\x54\x22\x8b\x14\x65\x93\xfc\xa5\x53\x34\xc8\x7e\xf8\xe1\x2f\xd1\x25\x65\x8f\xf0\x2f\xb2\x8f\xc4\x09\x21\x8f\x10\xf2\xd8\xbb\x90\xc7\xbf\xd5\xbc\xba\xfb\xf0\x40\xf0\xf1\x07\x1f\xff\xee\x7c\xfc\xc1\xc5\xef\xcd\x21\xf8\xb7\x37\x25\x44\x70\x80\x05\xff\xf6\xe6\x84\x08\xfe\xed\x3d\x5d\x71\x38\xde\xc1\xbf\x1d\xfc\xdb\xc1\xbf\x1d\xfc\xdb\xc1\xbf\x1d\xfc\xdb\xdf\x8c\x7f\x7b\x0f\x53\x9e\x82\x93\x3f\x38\xf9\x83\x93\x3f\x38\xf9\x83\x93\x3f\x38\xf9\x0f\xc7\xc9\xaf\xb5\xdd\x0f\xd5\xd4\xff\x1d\x41\xc8\x68\xe5\x92\xa5\x99\x02\x55\x92\x67\x4a\xff\x53\x7f\x1f\x78\xa5\x05\x02\xa0\x9b\x43\xf9\x13\x51\xf9\x83\x5a\xb5\x3d\x88\x5c\xf1\x2f\x5c\x3c\x8e\x13\xfe\x9c\xcf\xfc\x13\x51\x7a\xf2\xb7\xf6\x2b\x01\x5a\x26\x40\xcb\xa0\x00\x75\xb0\x6d\xa8\x83\xbd\x72\x51\x6f\x4b\xbe\xbb\xb7\xdf\x69\xe3\x5f\x91\x46\x59\x7c\x4f\xc4\x8c\x32\xa7\xbb\x50\xa6\x95\xdc\x89\x20\x52\x6e\x2a\x81\xf3\x81\xf3\xc7\x0f\x42\x06\xe7\xb3\xcd\xe7\x1f\xa4\x6f\x90\xbe\x0d\x4b\x0b\xd2\xf7\x8d\x49\xdf\x0e\x4b\x1b\xf1\x78\xc1\x9c\x30\x33\xa9\xfb\xa5\x7d\x26\x5b\x93\x50\xbf\x67\xa4\x5b\xda\xc1\x4b\x58\x0d\x07\x6d\x28\x1c\xc2\x1d\xb5\x07\x76\x42\x10\xea\x41\xa8\xd7\x53\xe6\x20\x85\xfa\x21\xc6\x04\x76\x2f\xd3\xcb\x51\x94\xc2\x1d\x54\x03\xf4\xd0\x9c\xe3\xd9\x98\xc2\xd9\x90\xa1\xe9\x25\x60\xbe\xc8\x35\x51\x4e\x73\x5c\x72\x55\x94\x1e\x3e\x18\xbf\x52\x69\xd6\x2f\x7f\x57\xbc\x71\xb4\x81\x6f\x25\xd9\x32\xe4\x52\xae\x49\xa8\x37\x7c\x69\xbe\x5c\x26\xe4\xcb\xdf\x76\xdf\xec\x9d\x16\xae\x34\xfb\x3f\x41\xe0\x07\x81\x1f\x04\xfe\x2b\x09\xfc\x35\xe8\x1e\x4c\xb8\x85\x4b\xad\x16\xcc\xaf\x2b\x7a\xdf\x2a\xa5\x7c\x2b\xd4\xee\x75\x2e\xd6\x5b\x52\x9d\x57\x5b\x8e\x57\x57\x7f\xb7\x58\x70\x57\x5b\x61\xb7\x59\x49\xdd\xba\x77\x75\xf7\x22\xb9\x4f\x44\x95\x1e\x3e\x18\xfb\xb3\x34\xeb\x97\xbf\xac\x5f\x3d\x19\xf4\xb5\xe4\xf4\xb7\x57\x10\x18\x2a\x00\x77\x48\xba\xb7\xae\xd6\xec\x6f\x8d\xdf\x37\x50\xd4\x17\xaa\xf8\x56\xa2\xd1\xdb\x2a\xdb\x7b\xab\x75\x7a\x87\x59\x98\x17\x2a\xf1\x42\x25\xde\x56\x4d\xde\xca\xaf\xdf\x54\x25\xde\x21\x97\xde\xbd\xbc\x7b\x22\xb8\x1c\xf6\xdf\xe5\x10\x3c\x0e\xf6\x7f\x82\xf5\xbd\xf2\xca\x83\x6a\x1f\xac\xef\x2e\x2b\x0f\xd6\x77\xb0\xbe\xf7\xf0\x88\x06\xeb\x3b\x58\xdf\xc1\xfa\x0e\xd6\x77\xb0\xbe\x51\xb0\xbe\xbd\x81\x5e\x0b\xb0\x61\x1f\x82\x9b\x07\xe5\x73\x28\x96\x3e\x74\x07\x7c\x11\xe4\xa0\x24\x76\xbb\xe0\x1e\xc0\xbf\x9c\x51\xbf\x2a\x0e\x6f\xa3\x95\x7e\x5e\x4c\xb6\x0f\x42\xf2\x37\x2b\x2a\x96\x18\xec\x0b\xef\x1d\x44\x8e\xc0\xc2\xac\x43\xb9\xed\xba\x2a\xcf\x2b\x29\x0d\x3b\xa2\xc0\x81\x5c\x5f\xab\x6f\xd4\x1b\xb6\x25\x83\x0d\xb9\x79\x09\xdd\xc1\xd8\x8e\x87\x63\x33\xbe\xbc\x6e\xf1\x16\xd5\x89\xa0\x4d\x78\x73\x08\x17\x6f\xb8\x78\xc3\xc5\x1b\x2e\xde\x70\xf1\x86\x0a\x7c\xfb\xfc\x4e\xf5\x89\x8a\x32\xd1\x09\xa0\x71\xeb\x9d\x81\x6a\x54\x09\xef\x06\x5e\xd6\xe7\xa7\xfa\x36\x25\xf2\xaf\x07\xa9\x53\xbc\x44\xab\x9f\xa0\x54\x1c\x88\x52\xf1\x26\x7d\x49\x41\x53\x0a\x9a\x52\x3d\x65\x3a\x69\x4a\x03\x76\x3f\xd5\x74\x98\x8d\x28\xcb\xa3\x79\x8e\x43\xfe\xe8\xc8\xf5\x47\xa4\xbf\x87\x32\x46\x7f\xcf\x48\x32\x2f\x64\x92\xac\x8e\x96\xe3\x45\xa3\x63\xa4\xe9\x4c\x84\x02\x7a\x73\xa6\xc8\x57\x25\xd1\x31\x4a\xe8\x23\x41\xef\xb5\x60\x46\xbd\x9b\x8b\xf7\x47\xe8\xfd\x25\xb4\xad\x43\x69\x82\x99\x7c\xbf\x37\x81\x9b\x00\xd6\xbf\x2b\xb0\xfe\x80\xd5\x1f\xb0\xfa\xbb\x12\x28\x60\xf5\x07\xac\xfe\xc3\xc5\xea\xdf\x9a\x7d\xb8\x26\x2e\xe7\xab\x58\x8a\x87\x19\xcb\x0e\x96\x22\x0a\x96\x62\xb0\x14\x83\xa5\x18\x2c\xc5\x03\xb1\x14\xf7\x83\xc2\xc1\x4c\x0c\x66\x62\x30\x13\xb7\x48\x9c\x60\x26\x06\x33\x31\x98\x89\x0b\x66\xe2\xe1\x46\x0e\xff\x12\xec\xc1\x60\x0f\xfa\x7f\x3f\x3c\x7b\x30\x98\x4e\xc1\x74\xaa\xa7\xcc\x61\x9a\x4e\x7b\xa3\xfb\x1c\x62\x4a\x51\x30\x0a\xbb\x13\x22\x18\x85\x9d\x49\x15\x8c\xc2\x16\xe2\x04\xa3\x30\x18\x85\xc1\x28\xec\x6c\x14\x1e\x52\xb8\x30\x58\x87\xc1\x3a\xf4\xff\x1e\xac\xc3\x60\x1d\x06\xeb\x30\x04\xd6\x82\x69\x18\x4c\xc3\x60\x1a\x06\xd3\x70\x19\x71\x82\x69\x18\x4c\xc3\x6f\xcb\x34\x24\x4f\x84\x29\x09\xcd\x10\x7d\x43\xe9\x5d\xca\x65\xb3\x81\xe7\x4b\x87\x1a\xe3\x0e\xc6\x2c\x37\x25\x04\xd4\xb6\xdf\xd0\x14\x4b\xc4\xa3\x28\x13\x95\x33\x50\x35\xef\xce\x04\xc1\x8a\xc0\x08\xfa\xc5\x43\x30\xeb\x16\x97\xfb\x52\x00\xc4\x23\x1e\x2f\x70\xbb\x39\x08\x75\xbf\xb4\xab\x59\x5b\x5b\xfa\xef\x19\xe9\x66\xd5\xee\x90\xa9\x15\x96\x8f\x5b\x66\xea\x12\xd0\xf4\x5a\x4c\x0d\x23\x1c\x0a\x53\x2f\x2e\xf7\x9b\x61\xea\xba\xa5\xef\x03\x53\x3f\x73\xf1\x38\x4e\xf8\xf3\x96\x19\xfb\x8b\x1d\x76\x33\xe6\xce\x47\x39\x14\x06\xaf\x5f\xf6\x37\xc3\xe4\x4d\xcb\x7f\x5d\x46\xcf\xfb\x43\x74\x66\xf1\x7b\x41\x27\x13\x6d\x66\x80\x85\xa7\x59\xd1\xba\x3e\x5a\x00\x92\x8a\x8e\x08\x4b\xd9\x3a\x7f\xf4\x10\x58\x3a\x9f\xac\x99\xfb\x37\xc3\xcb\x0b\xeb\xde\x13\x26\x7e\x25\xd0\x8e\x6e\x0d\x3f\x2e\xa9\x54\xf9\x93\x87\x51\x6d\x95\x4f\xf7\x25\xe2\x26\xa1\x7e\x27\x84\x19\x42\x98\x61\xff\xc3\x0c\x7b\xe3\x50\x0b\x2e\xf9\x1d\xb9\xe4\xa9\x0c\x3e\xf9\xe0\x93\xef\x4a\xa0\xe0\x93\x0f\x3e\xf9\xc3\xf5\xc9\xaf\x68\x3b\xac\x99\xa1\xd5\xe4\x10\x5a\xc5\x7e\xf8\x44\x0a\xf3\xe1\xb0\xac\x87\x60\x39\x04\xcb\x21\x58\x0e\x5b\xb7\x1c\xf6\xaa\x1d\xe1\xb6\xa4\xb4\x7b\xfb\x5d\x9a\x35\xcb\xd4\x87\x34\xc6\x8a\xa0\x5c\x78\x5b\x4e\xd0\x17\xa3\xe2\xf9\x21\xb0\xfc\xb0\xa1\xd8\x35\xdf\x3a\x50\xc9\x6b\x26\xff\x82\xed\x59\x83\x1c\x0e\x72\x38\xc8\xe1\xfd\xc6\x37\xdf\x9f\xf0\x81\x13\x4f\xfb\x12\x3e\x10\x24\xe2\x4f\x44\x74\x8e\x85\xdd\x12\x08\x80\x81\x76\x9f\x0a\xf2\x44\x79\x26\x93\xf9\xb1\xc8\x18\x72\xb1\x63\xef\x92\x82\x1c\xfe\x67\x9a\x24\x88\x33\x6d\x2a\x2a\x2c\x94\xfb\x99\x4d\xd0\x58\xf0\x19\xb0\x4b\x82\xa5\x42\x8f\x8c\x3f\x33\x34\xc6\x34\xc9\x04\x41\x29\xa7\x4c\x9d\x0c\xd8\x05\x43\xb7\x66\x8e\xd0\x73\xf1\x08\x65\x92\x08\xa9\x8f\x1a\xe3\x0a\x45\x53\xcc\x26\x04\x61\x36\xb7\xcd\xcb\x0b\x01\xae\x99\x34\x33\xb7\xa6\xfe\x44\x05\xb0\x3e\x9f\x23\x78\x1b\xa9\x44\x54\x22\xf2\x55\x09\x32\x23\xc9\x5c\x7f\x43\x5f\x51\x8a\x23\x4b\x1f\x33\x55\xcb\xf3\x44\x08\x2e\x24\x74\x6b\x1c\xcd\xff\x89\x99\xa2\x8c\x20\xb0\xe9\xa4\xf1\x24\x1e\xa3\x4b\x2e\xc1\xc5\xf4\xf3\xdf\x24\x8a\x92\x4c\x2a\x22\x8e\xd0\x28\x9b\x48\x6d\xd4\xa6\x09\x56\x63\x2e\x66\x7a\x86\x94\x49\x85\x47\x34\xa1\x6a\x7e\x84\x66\x38\x9a\x9a\xb1\x80\x06\xf2\x68\xc0\x62\xfe\xcc\xa4\x12\x04\xe7\x5f\x77\x3f\xa2\xef\xfc\xdf\x0c\x03\xc8\xef\x8f\xe0\x6c\xd2\x99\xb6\xcc\xbd\xe9\x17\x3b\x6e\xf6\x44\x0f\x42\x62\x34\x22\x11\xce\xa4\xad\xbb\x50\x62\x8e\xc8\xd7\x29\xce\x24\xec\x9d\x5e\x9e\xed\x77\x19\xf1\x59\x9a\x10\x45\x10\x1d\x23\x25\xf4\xc5\x85\x27\x98\x6a\xd2\xdd\x11\xd2\x41\xdb\xb0\x1b\x68\xb9\xfe\x37\x90\x12\x33\x2e\x08\x8a\x89\xc2\x34\x69\xad\xc5\xb1\xef\x86\x20\xe9\x21\x49\xb9\xf2\x86\xef\x85\x98\x4b\xc0\xa1\xbf\x85\x98\x3f\xb3\x91\x86\x08\x27\x1b\x86\xff\x6f\xed\xa4\x02\x6f\x1f\x16\x6f\x9b\x5d\xdb\x1f\xe6\xde\xeb\xa8\xff\x41\xf1\xf4\x0b\x05\xfd\x83\x75\x15\xac\xab\x7a\xca\x84\xf8\x78\xa8\xc4\x5b\x5c\x56\x08\xfb\x87\xb0\x7f\x08\xfb\x6f\x93\x38\x21\xec\x1f\xc2\xfe\xdf\x6c\xd8\x7f\xcf\x23\xfd\x07\x65\x31\x04\x6b\x21\x58\x0b\x21\x16\xb3\xe2\xd2\x0e\x4e\x47\xdf\x96\x64\xce\x43\xfd\x31\x49\x88\x22\xcd\xde\x47\x22\x66\xda\xb6\x33\x5a\x07\x65\x5a\x3d\x9d\x08\x22\xe5\xa6\x72\x36\x1f\xf8\x30\xa5\x6d\x3e\xfd\x17\x8c\xef\x07\xf1\x1b\xc4\x6f\x3d\x65\x0e\x52\xfc\xee\x8f\x23\xdd\x3b\xcc\x2f\xe5\x49\xcf\xe5\xef\x9e\xa6\x5a\x1d\x94\x30\x7e\xf1\x4c\xab\x20\x89\x83\x24\xae\xa7\x4c\x90\xc4\x87\x9f\x94\x64\xa2\xaa\xc3\x34\xc1\x6c\x48\x63\x5b\x9c\x60\x2a\x13\x0a\x67\xc5\xae\x22\x9b\xfa\x68\xc5\x06\x30\x35\x07\x28\x15\xbf\xe9\x57\x92\x22\xd0\x81\xf8\x48\x4f\x63\x29\x74\xac\x89\x8d\xdc\x24\x98\x5d\xc4\x87\x51\xf5\x5c\xbb\xfc\x97\x08\x86\xbe\xbd\xe4\xd9\x4d\x2e\x29\xac\x20\xe8\x86\x29\x33\x6e\xd7\x02\xf8\xb6\xe4\x54\xde\x8f\x85\x6e\x72\x65\x79\x0b\xf3\x6e\x2d\x77\x19\x79\x44\xd9\xbf\x65\x87\x58\x5c\x40\xc5\x0c\xd1\xa6\x8e\x0b\x0e\xd1\xa6\xfd\x8d\x36\x75\xd8\xc6\x9d\x84\x90\x5f\xf8\x78\xbe\xa8\xce\x7a\xd0\x9a\x6a\x50\x54\x51\x50\xeb\x82\x5a\xd7\xbc\xea\xa0\xd6\x05\xb5\x2e\xa8\x75\x41\xad\x0b\x6a\xdd\xeb\xab\x75\x1d\x96\xf9\xcd\x66\x19\x2c\x53\x55\xbb\x23\x9f\x9a\x1a\x1f\x28\x05\xcc\xd2\x84\xe3\xb8\x2d\xd3\xab\x50\x26\xfd\x46\x5b\x2d\x1a\xa8\x19\xbd\x78\xed\x10\x14\xd0\x62\xb6\xdf\x58\xfd\xd3\xe2\xc2\xf7\x25\x5a\xf0\x5a\x18\xa8\xf5\xfc\xbe\x82\xcd\x25\xff\x7a\x58\x1c\x1f\x20\x51\x03\xa0\x46\xcd\xd2\x42\xec\x3a\x94\x7c\x85\xda\xa8\x37\x67\xb8\x87\xda\xa8\x50\x1b\x15\xdc\x1a\xed\xcb\x0e\x6e\x8d\x37\x51\x1b\xb5\xba\x31\xb1\xc3\xb6\xd5\x9b\x9b\x15\x07\x91\x72\x14\xcc\x8a\x60\x56\x04\xb3\x22\x98\x15\xfb\xd8\xd0\x39\xd8\x14\xc1\xa6\x08\x36\x45\xb0\x29\x82\x4d\xb1\x75\x32\x06\x9b\xa2\x83\x4d\x01\xff\xb2\x80\xa5\x2b\x1b\x18\x2b\x1a\x16\x4b\x50\x19\x8a\x97\x0e\xcc\xaa\x08\x16\x45\xb0\x28\x82\x45\xf1\xe2\x16\xc5\xde\x2c\xc8\x8a\xcf\x25\x6b\xba\x73\x1b\x52\x81\x87\xde\xbf\xf5\xb8\x19\x0d\x61\xa4\x25\xca\x44\xd9\x40\xcb\xb9\x4e\xbf\xea\xdb\x28\x26\x37\x15\xd4\xf2\x22\x75\x13\x45\x5c\x18\xa1\x1c\x5b\x2e\x37\xfa\x44\xef\xbe\x77\xd7\xbf\x3f\x45\x3d\x14\x63\x85\x35\x5b\x0b\x92\x0a\x22\x09\x53\xa0\xab\x11\xc8\xca\x05\x90\xee\xc4\x68\x15\x1f\xf5\xfd\x83\xce\xb1\xc2\x67\x58\xe1\x84\x4f\x4e\x50\x0f\xfe\x53\xbf\x4c\x25\xc2\x89\xe4\x08\x3b\xd2\x93\xd8\x0d\x81\x59\xec\x0e\x14\x06\xec\x69\x9a\xe4\xc6\x69\x6e\x5e\x50\x16\xd3\x27\x1a\x67\x38\xc9\x93\x9d\x07\xa6\xc1\x70\x86\x93\x64\x8e\x70\x92\x20\xfb\x59\xf7\x80\x83\xb3\x1e\x91\x7c\x96\x92\xce\x68\x82\x85\x16\xc7\x66\xb6\xd7\x76\x2c\xa4\x0d\x63\x37\x57\x98\x97\xa6\xe6\x0c\x3f\x12\x89\xa8\x42\x29\x97\x92\x8e\x92\xe2\x00\x3c\x5c\x20\x98\xf7\xd9\xe5\x05\xe8\x6c\x91\x42\xdc\x48\x0e\xf7\x71\x6b\xc0\xb8\x2f\xce\x30\x63\x04\x3e\xcc\xd5\x94\x08\xfb\x79\xfb\xf0\x6b\xab\x5f\x0f\x57\x77\x37\xfd\xb3\x8b\x8f\x17\xfd\xf3\x45\xfd\xeb\xbe\x77\xf7\xf3\xe2\x5f\xbf\x5c\xdf\xfe\xfc\xf1\xf2\xfa\xcb\xe2\x2f\x97\xbd\x87\xab\xb3\x9f\x86\x37\x97\xbd\xab\xc5\x1f\x2d\x5b\x75\x56\xe5\xfc\x99\xed\x42\x97\x73\x6f\x77\x40\x08\xb0\x87\x4b\x61\x95\x49\xd3\x0d\x5a\x90\x09\x95\x0a\xc4\x7f\x17\x2d\x6c\x39\x30\xc0\xc1\x6a\x5f\xa1\x0b\x4b\xd0\xc5\x82\x2e\x16\x74\xb1\x43\xd3\xc5\x5e\xce\x25\x70\x40\x69\x8a\x7f\x39\xac\xbb\x27\x80\xb8\x07\xe1\xbc\xff\xc2\x79\xef\x42\x6f\x7b\xe3\x3a\x3f\x44\x80\xc8\x10\x54\xec\x4e\x88\x10\x54\xec\x4e\xab\x10\x54\x6c\x21\x4e\x08\x2a\x86\xa0\xe2\x37\x1c\x54\x3c\xc8\xdc\xc4\x60\x4a\xb8\xe7\x82\x29\x11\x4c\x89\x37\x6a\x4a\xec\x0d\x85\x83\x1d\x11\xec\x88\x60\x47\x04\x3b\xa2\x9d\x38\xc1\x8e\x08\x76\x44\xb0\x23\x0e\x2d\x1f\xf1\xb0\x2c\x89\x60\x45\x04\x2b\x62\xbf\xad\x88\xbd\x59\xd0\xe1\x44\x8b\xbb\xad\x27\x64\xee\x85\xcc\xbd\x90\xb9\xd7\x98\xb9\xf7\x46\x2d\xf9\x6d\xe9\x6f\xee\xed\x7d\x4b\x48\x3c\x2c\xf5\x2b\xf4\x2a\xca\x7f\x0d\xca\x58\x50\xc6\xbe\x51\x65\x6c\x8f\x40\x14\xf7\xa2\xe5\xd2\x0c\xab\x68\x8a\x47\x09\x19\xe6\xbe\x2c\xd9\xd5\xbc\xbf\xa4\x52\x49\x14\x65\x52\xf1\x59\xf3\xe5\xf2\xd9\x7d\xa1\x97\x7f\xe0\x8c\xb3\x31\x9d\x64\xe6\x6e\xf9\x0d\x58\xdf\x3b\xd1\x85\x82\x3b\x4f\xc9\xb2\xb8\x62\xcd\xe8\x07\x71\x2d\xd5\x4f\xfd\xa5\x6e\xa7\x55\xec\x91\xc2\x77\x69\x8d\x09\xad\x42\x0e\x6f\xfb\x77\xd7\x0f\xb7\x67\xfd\x53\xd4\x03\x15\x0b\xc2\x09\x86\x15\xe8\x3f\xf5\xa2\x90\xc2\xf2\xb1\xd8\x4b\x61\xd8\x5c\x82\x9e\x0d\xf1\x0b\xad\xf2\xa3\x63\x74\x76\xf9\x70\x77\xdf\xbf\x6d\x18\xd0\x32\x0a\x34\x5e\x24\xb3\x34\xc1\x8a\xc4\xe8\x31\x1b\x11\xc1\x88\xd6\x76\xa2\x24\xd3\xca\x4d\x11\xd5\x30\x83\xf6\xff\xab\x7f\xf6\x70\x7f\x71\x7d\x35\xfc\xfb\x43\xff\xa1\x7f\x8a\x1c\xc7\xe9\x61\xf5\xbc\xf4\x2c\xe2\x39\xc3\x33\x6d\x58\xe9\x3f\x14\xad\x1e\x7f\xcf\x48\x46\x10\x96\x92\x4e\xd8\x8c\x30\x55\x1d\xd1\x4d\xf8\xb2\xf7\x63\xff\xb2\x3c\xf2\x94\xa0\x9f\xff\x56\x4c\x2a\xc1\x23\x92\xd8\x30\x0b\x44\x0e\x34\xa3\x17\x1f\xb2\xf1\x97\xcc\x50\xf5\xef\x0f\xbd\xcb\x8b\xfb\x5f\x87\xd7\x1f\x87\x77\xfd\xdb\x5f\x2e\xce\xfa\x43\xab\x2c\x9f\xf5\xf4\x77\x4b\x5f\xb2\x3a\x35\xfa\x3d\xc3\x89\x36\xba\xf8\x18\xe2\x16\x34\x22\xe8\x79\x4a\x18\xca\x18\x70\x9c\xb1\xe4\xb4\x79\x97\x7f\x54\x9f\x32\xb3\xa2\x9b\xcb\x87\x4f\x17\x57\xc3\xeb\x5f\xfa\xb7\xb7\x17\xe7\xfd\x53\x74\x47\x12\xb0\x75\x1c\xd1\x61\x17\xd3\x24\x9b\x50\x86\xe8\x2c\x4d\x88\xa6\x86\xb1\xe5\x46\x64\x8a\x9f\x28\x17\xf6\xe8\x4e\xe8\x13\x61\x86\x8e\x70\x66\x61\x7c\x67\x53\x0c\x3d\xd2\x5d\x5f\x7d\xbc\xf8\x74\x8a\x7a\x71\x9c\xaf\x41\xc2\x18\x25\xce\x79\xe6\xe2\x71\x9c\xf0\xe7\xe3\xf2\xb4\xb5\x70\x80\xcf\x1b\x26\xe2\x4f\x44\x08\x1a\x93\x0a\x1f\xf5\xee\xee\x2e\x3e\x5d\x7d\xee\x5f\xdd\x03\xc5\x94\xe0\x89\x44\x53\xfe\x0c\x1e\x7a\x58\x21\x38\xee\x9f\x30\x4d\xe0\x63\x6e\xb3\x38\x43\xcf\x53\x0a\x51\x1d\x2a\x7d\x82\x19\xb3\x53\x64\xec\xd5\x9d\xce\xa5\x83\xb7\x68\x8d\x55\x4f\xd2\xe2\x13\x95\x63\xd1\xf6\x40\x89\xcb\x17\x1f\x5c\xc6\xad\x8b\x6f\x54\xd8\xad\xd9\x06\x5d\xe0\x97\xe6\x95\x16\x7b\xdd\xd9\x04\x2d\xd3\xf0\xe5\xae\x59\xa2\x04\x8d\xe4\x87\x9c\xaf\x76\x0b\x32\x46\xa4\x66\x58\x45\x67\x04\xd9\x2f\xdb\x93\xba\x61\xaf\xda\x4f\x44\xe5\x0f\x7e\x36\x03\x1f\x44\x55\xda\x17\x2b\x51\xf2\xc9\x7f\x22\xca\xce\x3f\x14\xa8\x85\x02\xb5\x86\xa5\x05\x2b\x77\x73\x2b\xf7\xd0\x3a\xf2\xc6\x24\x5d\xfc\x60\x65\x61\xf0\x8c\x89\x57\x2e\xa4\xd7\x18\x4f\xb0\xf5\x85\x27\xe4\x89\x24\xa0\xc8\x2a\x81\xb5\x5d\x6c\xd5\xb3\x91\x20\xf8\x51\xeb\xb4\x31\x7f\xf6\x95\xb3\x98\x28\x4c\x13\xf9\x4a\xe9\x37\x7f\xf9\xf3\xab\xde\x87\x87\x7b\x05\x86\x1b\x30\xb8\x44\xc3\x65\xf1\x0d\x5e\x16\x87\x18\x94\x0a\x77\xe0\xbe\xdc\x81\x9a\xdc\xf1\xd0\x85\xa7\x3f\xfc\x4f\xc9\x29\xf7\xaf\x5d\xd9\x87\xb7\x90\xef\x2b\xdb\x2e\x42\xaf\xc3\xe6\x6f\x36\xa8\xbd\xe4\x46\xf4\xde\x38\x08\x7b\xd0\x9b\xef\x3e\xb9\x5a\x6f\x7d\xcf\xb7\xbb\x27\x66\x44\xe1\x18\x2b\xac\x8f\xd0\x84\xa8\x13\x74\xcd\xe0\xb7\x7b\x2c\x1f\x8f\x90\xbb\xd7\xb5\xec\x2c\x42\x0b\x2f\xd0\x5c\xb3\xa3\xcf\xea\xb5\x93\x11\xf6\x51\xa2\x07\x2b\x7d\x9b\x4b\x0b\x8a\x57\x28\x2f\xda\x67\x1c\x18\xf7\x76\xa7\xec\x9d\xed\xdd\xca\x66\xc4\x03\xbe\x98\x5f\x36\x5f\x67\xab\xd7\x74\x06\x53\x0f\x77\xb0\xf9\x9f\x70\x07\x87\x3b\x38\xdc\xc1\x6d\x94\x09\x77\xf0\x01\x27\x74\xd5\x5c\x59\xaf\x9a\xd1\xd5\xc5\xad\x60\x7c\x0a\x85\x43\x61\x45\xe0\xb9\xc2\x87\xb0\x14\x2e\xa2\x46\x6b\x59\x8a\x15\x51\xbc\x43\xc9\x61\xc4\x97\xbd\x55\xbe\x04\x5e\xc4\x56\x95\x15\x53\xb1\x1c\xbc\x0a\x3b\xd4\x68\xde\x9e\x3a\xb3\x89\x2e\x83\x15\x5c\x32\x98\x32\x73\x27\x15\xd5\x4b\xf2\x05\x38\x6c\xc5\x85\x6e\xa2\xd9\x78\x0b\xf3\x94\x1b\xa7\xb3\x78\x44\xd9\x93\x4d\xdd\x09\xac\xc4\xeb\xf8\xf1\x5f\x1f\x4a\x82\xbc\x5d\x24\x89\x00\x96\xb0\xd2\x21\x09\x60\x09\x2f\x01\x96\xd0\x61\x1b\x77\x82\x80\xf2\xc2\xc7\xf3\x35\x4d\x87\xc3\x09\x42\x1e\x98\xcd\x70\x50\xf6\x42\x88\x41\xee\xde\xff\x19\x5c\x85\xc1\x55\x58\x4f\x99\xe0\x2a\xfc\xb6\xd2\xb5\xb6\x75\xdf\xbb\xb7\x5f\x3b\x0a\x79\x60\x37\x73\x08\x42\x86\x4b\x38\x5c\xc2\xe1\x12\x0e\x97\xf0\xb6\x28\x1c\xe2\x75\x2b\x1a\xdd\x07\x11\xa5\x3b\xb0\x6b\x3d\x04\xe9\xc2\x8d\xef\x5e\x0e\x21\xad\x65\xeb\x0c\x21\xad\x10\xd2\x0a\x21\xad\x10\xd2\x0a\x21\xad\xfc\xef\x21\xa4\xf5\xa2\xdc\xfa\xcd\xba\xed\xea\x2d\x06\x1e\x93\x61\x0d\x92\x4c\xfe\xa7\xa1\x5f\x36\x58\xfa\x6b\x29\x7c\x57\xfa\xc5\x8f\xe5\x95\x7e\x28\xe0\xdf\xe1\xbb\x34\x5e\xb9\x0e\xbf\xcd\x9d\xc8\x63\xd2\xb9\xee\xbe\xf4\xf0\xbe\xe7\x05\xba\x85\x1a\xd3\xc3\x9f\xf9\x0b\xd4\xd9\x57\x39\xe1\x8d\x65\x9f\x35\x70\xf5\x5b\xf4\xd4\xd5\x9c\xd1\xe0\xb6\x5b\x4a\xa8\x37\x0c\x38\x60\x85\xf0\x0b\xcc\xe7\xe5\xef\x30\x07\xfc\x37\xac\xb9\xc9\xea\x7f\x2b\xee\xb3\xfa\xdf\xf3\x5b\xad\xfe\xe7\xdd\xb4\x48\xec\x7e\xa9\x81\x1f\xcd\x7f\xfa\x40\xd2\xdd\xfd\x29\xbf\x84\x2f\xad\x91\x31\xde\xd8\xc5\xd6\xca\xe4\x6f\xee\x7a\x6b\x3b\xb2\xe1\x92\xeb\x48\xae\xb7\x7a\xd5\x85\x1e\x87\x6d\x5e\xbc\xd0\x44\x70\x0f\xbd\x14\xc1\x89\x18\x9c\x88\x87\xe8\x44\x34\xc9\x07\xc3\x14\x0b\xc2\x54\x8d\x6d\x51\xbd\x4e\xe0\x71\xbf\xe9\x94\xd3\x3a\x60\x00\xa4\x55\x7b\x64\x2f\xe4\xfc\xaa\x7a\x63\x89\xf2\x15\xeb\xe5\x0d\xfb\xd9\xf6\xdc\x1e\xd9\x1f\x37\xdb\x5b\xd5\xd2\x83\x13\x2a\x38\xa1\xaa\xeb\x7c\x39\x27\xd4\x1a\x74\x0f\xc1\xa2\xd6\xab\xea\x1b\x71\xa4\xed\xf9\xbd\xb5\x4f\x7e\xb4\xb7\x7a\x73\x05\xff\xd2\x16\xc8\xf5\x56\x6f\xb1\xd7\x72\x29\xbf\xbc\x95\x1e\x3c\x69\xc1\x93\x16\x3c\x69\xc1\x93\x16\x3c\x69\xfe\xdf\x83\x27\xad\x8d\xee\x2f\x66\x9e\x58\x15\xc8\xeb\x3e\xfa\xe1\x7f\x8a\x7f\xe7\x66\x89\x6f\x5a\xb4\x55\xb0\x9e\x09\x02\xa7\x82\x0b\x5b\xff\xb8\x8d\xfe\xa4\x58\x95\x94\x5e\xe8\x68\xd0\x62\x8b\x98\xaa\xa2\x1b\xf3\xf4\x61\xb5\x25\x5d\x98\xf4\xcb\xd6\xbf\x2e\x6e\x7c\xb7\x03\xe4\x76\x86\x9a\x16\x9b\x5e\x1f\x47\xad\x77\xf3\x71\x71\x31\x48\xf4\x4c\x93\x44\x6b\x32\x56\x6b\xdb\x13\x6d\xf4\xd5\xab\xe2\x1a\x77\xfe\x55\x6b\xe3\xea\xa4\x43\x9d\x48\xe8\xe2\x1d\xdf\x56\x9f\x62\xc7\x6c\xd0\x42\x16\xec\xbe\x25\xee\xf4\xb7\x21\x09\x3e\x11\xf5\x52\x62\x60\xdd\xb3\xdf\x7a\xee\x05\x19\x13\x41\x58\x44\xf6\xb0\x22\x6b\x95\x52\xc1\x2f\x66\x91\xb6\x4e\x30\x6f\xdf\xed\x2f\x55\x71\x6b\xa7\x95\x54\xdd\xd0\xbd\x39\x74\x6f\x0e\xdd\x9b\xab\x47\x3d\x74\x6f\x7e\x1b\xdd\x9b\x3b\x48\xd9\x2d\xf8\xf6\xda\x1d\xb6\x7b\x6a\x77\xb9\xb7\xdf\xc5\x24\x21\x8a\x34\x2a\x4a\xe7\xf0\xf3\x6b\x29\x4a\xe6\xeb\x6f\x43\x57\x32\x6b\x09\xea\xd2\x37\x63\x2c\xb9\x0d\xdf\x0b\x63\xc9\x9c\x35\xdf\x66\x82\xe2\x0a\xcf\xb8\x36\x15\x15\x6f\xd3\xcd\x72\x10\x05\x14\xfb\xe3\x67\xd9\xf9\xa5\xf8\xd2\xc2\x21\xf8\x90\x16\x67\x12\x7c\x48\x9b\x89\xc5\xd2\x1f\x6b\x50\x98\x5e\x5c\x54\xae\xa3\x60\x95\xe4\xe5\x39\x3c\x7e\x98\x52\xb3\x3a\xf7\x43\x96\x9d\xde\x68\xfb\x21\x44\xbe\x5d\xf1\xb9\x70\xc4\xbb\x2d\xdc\xa6\xfe\x1c\xee\xba\xf7\xe5\xda\x68\x3a\xd6\xfb\x7c\x79\x94\xfb\x68\x1d\x6e\x44\xe2\x90\xc4\xff\xab\x84\x24\xde\x9c\x9a\xfc\xcd\x39\x0d\x42\x8c\x25\xc4\x58\x42\x8c\x25\xc4\x58\x42\x8c\x05\xad\x1b\x63\xd9\x96\xa6\x75\xd0\x01\x89\xc3\x54\x95\x5e\x36\x22\x11\xb4\xa5\x43\xd7\x96\xf6\xc5\x28\x3c\xac\x10\xcb\x86\x6d\x95\xf7\xc5\x2e\x7c\x4b\xce\xc1\xc3\xb2\x11\xf7\xce\x1d\xf8\xcd\x09\xbe\xf5\x5c\x7f\x07\xbb\xdc\x60\x15\x07\xab\x38\x58\xc5\xc1\x2a\x0e\x56\x31\x0a\x56\xf1\xca\x56\xf1\x5b\x52\x14\x0f\xce\x42\x0e\xba\xe2\x6b\x2f\xf8\x1b\xd3\x15\xf7\xc5\x27\xd0\x74\x72\xf7\xd4\x33\xf0\x6d\x26\x14\x1d\xf0\x4d\x10\x6a\x5e\x91\xb7\x75\x21\xe1\xe6\x5b\x91\xa3\x7b\x9e\x70\xf3\xf6\xfc\xaa\x07\x2c\x23\x43\x35\x70\x50\x2b\xb7\xb4\xdc\xe0\x82\x0c\x2e\xc8\xe0\x82\x0c\x2e\xc8\xe0\x82\x44\xfb\x5d\xfc\xbc\xd4\xe1\x14\xea\x9f\x77\xe5\x58\x3d\x60\x4d\x31\xd4\x42\x07\x65\x71\x7b\xcb\xdd\x57\xdb\x79\x9f\x7c\x90\x72\xf5\xbe\x11\x4b\x91\xb8\xed\xb2\x7f\x6b\x11\x60\x97\x54\x3a\x43\xf7\x90\xe4\x95\xdc\xb5\x48\xda\x04\x7e\xd7\xed\xe8\x9b\x45\xdf\xdd\xa0\x1b\x3d\xc8\xae\x37\xda\x8e\x3e\x80\x03\xb7\x10\x27\x80\x03\xaf\x24\x4d\x02\x38\xf0\x4b\x80\x03\x6f\xdd\x58\x49\xb9\x6c\xbe\xb9\x6f\xc9\x84\x4a\x38\xb2\x2d\x3d\x9f\xdc\x9d\x0d\x8d\x07\x80\x15\x3e\xea\x07\x50\x4c\xd2\x84\xcf\xc1\x3f\xd4\x72\x9d\xbb\x4f\xdc\x2c\x68\xd4\xfb\x7e\xa3\xbb\x99\xbf\x94\xcd\xb1\x2f\x3a\x69\xb1\xee\xbd\xd0\x42\xfd\x94\xf8\x4a\x33\xb3\xb6\xf0\xf6\x83\x8d\x69\x83\xeb\x8f\x4a\xb8\x9f\x96\xb2\xf8\x80\xd5\xff\xe0\x5c\x60\x23\xe2\x2e\xc4\x51\xa6\xbc\xa6\x1e\x52\x6b\x58\x29\x11\x6a\xee\x3d\x49\x66\xa9\x9a\xff\xe7\x80\x51\x95\x07\x10\xe9\x84\x71\x61\xc4\x9b\x7e\x79\x8a\x59\x9c\x10\xa1\x6f\x57\x37\x4e\x84\x19\xe3\x0a\xf4\x0e\x58\x40\x8c\x9e\x28\x36\x5a\x4a\xef\xe6\xa2\x73\x18\xfd\x90\x32\xa8\x5e\x36\x4e\xfe\xf6\x9a\x3d\x2f\x85\x87\xff\x94\xf0\x11\x4e\x92\x39\xca\xca\xfe\x0a\x3d\xc0\x9e\xac\x61\x5f\x64\xdf\xab\x0b\xbb\x20\xe2\xba\x8a\xb8\x20\xe1\x82\x3c\xe8\x34\x93\x43\x94\x07\x0a\xcb\x47\xbf\xdb\x1e\xe8\x40\xae\x61\x62\xa9\xd3\x54\xb5\xed\xd4\xbf\xba\x3c\x57\x6a\x2b\xbb\xe4\x59\xbf\xd1\xec\x92\x47\x2b\xad\x67\xcb\xbf\xd9\x66\xb4\xf0\x33\x2c\xaf\x3a\x0f\xf7\x47\xff\x83\xee\x6f\xc5\xc8\xee\x2f\x4f\x44\x48\xca\xed\x63\x82\x28\x31\x1f\x62\xa5\xb4\x40\xda\x66\xbf\xdb\x7b\x2c\x1f\x3b\xf7\xbb\x2d\x3d\xbc\xef\x1a\x58\xa9\xe1\x6d\x69\xe6\x2f\xd0\xf0\x76\x39\x1b\xbf\x39\x1d\xad\xe3\x91\x5c\xb2\xee\xc3\x6b\x9e\xd8\x55\xc0\xac\xb0\xf0\x6f\xa5\x91\x62\x37\x81\xbb\x2c\x66\x77\x88\x4d\x15\xdb\x6e\x90\xbd\x99\x61\xe5\x12\x7b\x8b\x27\xb7\x7c\x25\x87\x23\xda\x46\xa3\xae\x67\xf1\x60\x4e\x60\x45\xd3\x5a\xb2\xb6\x3b\xb7\x41\xf6\x71\xc7\x09\xfb\xb7\xae\x92\xb2\xb8\xed\x59\xed\x26\xe6\xe9\xed\xc6\x2a\x69\xae\x17\xae\x21\xa0\x89\xe0\xe4\x67\xc8\x25\xbe\xe6\x47\x53\x4d\x01\x34\x9d\x4a\xbf\x87\x60\xc4\x85\xd1\x36\x63\x7b\x66\x4d\x0c\xa7\x77\xdf\xbb\xeb\xdf\x9f\xa2\x1e\x8a\xb1\xc2\xfa\x90\x0a\x92\x0a\x22\x09\x53\xc6\x15\xc1\x14\x55\x73\x34\xe3\x31\x49\x8c\x1f\xc0\x84\x0b\xce\xb1\xc2\x67\x58\xe1\x84\x4f\x4e\x50\x0f\xfe\x53\xbf\x4c\x25\xc2\x89\xe4\x08\x3b\xc6\x21\xb1\x1b\x02\xb3\xd8\x89\x07\x8c\x22\x3e\x4b\x69\x62\x72\x2f\xfd\x90\x2e\x65\x31\x7d\xa2\x71\x86\x13\xc4\x47\xe0\x43\x39\x19\xb0\xfe\x13\x61\x2a\x03\x1b\x17\x27\x09\xb2\x9f\x75\x0f\x78\x0e\x0c\x37\x4b\x49\x67\x34\xc1\x42\x6b\x8f\x66\xb6\xd7\x76\x2c\x74\x3f\x25\xf9\x5c\x61\x5e\x9a\x9a\x33\xfc\x48\x24\xa2\x0a\xa5\x5c\x4a\x3a\x4a\x8a\x63\xfc\x70\x81\x60\xde\x67\x97\x17\x10\x27\x8b\x14\xe2\x46\x0e\xba\x8f\xdb\xa0\xb1\xfb\xe2\x0c\x33\x46\xe0\xc3\x5c\x4d\x89\xb0\x9f\xb7\x0f\xbf\x76\xc8\xeb\xe1\xca\xa6\x34\xf6\xcf\x17\x63\x5e\xf7\xbd\xbb\x9f\x9b\x73\x18\x17\x7f\xb9\xec\x3d\x5c\x9d\xfd\x34\xbc\xb9\xec\xd5\xe4\x46\x5a\xb6\xea\x1c\x3e\xf3\x67\xb6\xfe\x61\x3a\xb8\x36\xcd\x2f\xef\x74\xe8\xe4\x71\xe8\xec\x6e\xe8\xea\x6b\xe8\xe6\x68\x68\xf6\x32\xec\x20\x75\xa9\xbb\x2b\xe0\x92\xca\xb2\x2f\xe0\x30\x0a\xda\x4b\x53\xd6\x6b\xd8\xb5\x23\xe0\x9b\xf3\x02\x7c\xa3\x2e\x80\x60\xff\xef\x84\x6e\x6f\xd5\xf8\xdf\x73\xcb\x7f\x93\x3c\xcc\xbc\x46\x2b\x24\x62\x2e\x26\x62\x92\x90\x87\x19\xf2\x30\xbb\x12\x28\xe4\x61\x86\x3c\xcc\x43\xc8\xc3\xec\x64\x68\x85\x88\xed\x3e\x44\x6c\xf7\xdc\x46\xdb\xe7\x80\xed\x5b\xb5\x5c\x42\xf0\x32\x04\x2f\x43\xf0\xf2\x40\x4f\x6e\x08\x5e\x76\xa7\x51\x08\x5e\x86\xe0\x65\x08\x5e\x86\xe0\x65\x08\x5e\x86\xe0\xe5\x6b\xba\x46\xf6\x21\x37\xf4\x90\x43\xb6\x21\x12\xbb\x24\x12\xbb\xe7\x46\xfe\x5e\x06\x62\xdf\xaa\x8d\x10\x4c\xfb\x10\x97\xdc\x68\xd9\x7b\x65\xd4\xbf\xb5\x7b\x33\x84\x62\xbb\x13\x22\x84\x62\x3b\x93\x2a\x84\x62\x5b\x88\x13\x42\xb1\x21\x14\xfb\x0d\x86\x62\x69\xbc\x31\x2c\x7c\x17\xbb\x45\xeb\x8a\x71\x1f\xdc\x43\xb9\x73\x4b\xfc\x06\xda\x23\x96\x8f\xb9\x07\xa8\x83\x3d\x73\x11\x1f\x84\x21\x53\xbb\xe0\x97\x30\x68\x36\xb1\x58\xb0\xd2\x12\x5c\x01\x54\x81\xfe\xa5\x70\x2a\xee\x21\x8e\xe5\x26\x36\x8a\xb7\x30\xcf\x4c\x71\xd6\x87\xdf\x3c\x79\xef\x96\x1d\x14\xbf\xa0\xf8\x05\xdd\xa6\xe3\x82\x83\x6e\xb3\xbf\xba\xcd\x6b\x19\x2c\xfb\x77\x3c\x0f\xce\x3f\xb1\x73\xb5\xb4\x84\xbf\xdc\x0a\xe3\x68\x5a\xb9\x41\xe8\x2e\x4b\x13\x8e\xe3\x65\x09\x72\xbf\xa1\x42\x57\x6b\x51\x37\xcd\xb8\xfa\x85\x3d\xd7\x36\x17\x72\xe3\xcc\xcc\xbf\x05\xe4\xc6\xc6\xa5\xbf\x2a\x78\x23\xf0\x6f\x8e\x5a\x94\xc3\x12\x95\xb2\x47\x77\x65\x66\x55\x19\xbc\x93\x45\x25\xff\xba\xe7\x2c\x9e\xef\xef\x4b\xd8\x4f\x6f\xb2\xfa\xee\x0d\x47\xb2\x42\xb4\xaa\x3d\xa5\x60\x4b\xd9\x6d\x03\x76\xaf\x0d\x29\x3e\x1b\x51\x96\x27\xf3\x38\x0e\xf9\xa3\x23\xd7\x1f\x01\x48\xcf\x82\xeb\x25\xf3\xc2\xce\x96\xd5\xd1\x72\x2d\x0c\x1d\x6b\x15\x38\x22\x42\x01\xbd\x39\x53\xe4\xab\x92\xe8\x18\x25\xf4\x91\xa0\xf7\xfa\xc8\xa3\xde\xcd\xc5\xfb\x23\xf4\xfe\x12\x67\x2c\x9a\xa2\x34\xc1\x4c\xbe\xdf\x1b\xed\x2d\x18\xe4\xa1\x3b\x41\x08\xc5\xec\xc2\x7a\x0f\xee\x8a\xa5\xcb\x0e\xee\x8a\x37\x13\x8a\xe9\x68\x33\x98\x8a\x35\x3c\x23\xfb\x62\x3d\x1c\x0c\xc0\x47\xb0\x1e\x82\xf5\x50\xb3\xb4\x60\x3d\x7c\x83\xd6\xc3\x7e\x50\x38\x98\x0e\xc1\x74\x08\xa6\x43\x30\x1d\x82\xe9\xb0\x75\x32\x06\xd3\xa1\xcd\x74\x80\x7f\x39\x50\x8a\x55\xed\x88\xce\xf6\x43\x07\x04\x8a\x83\x31\x1e\x82\xe1\x10\x0c\x87\x60\x38\xbc\xb8\xe1\xb0\x37\x0b\x7a\x7b\xc5\xf4\xa1\x1c\x3d\x94\xa3\x87\x72\xf4\x86\x72\xf4\x97\x52\xd9\x8c\xbe\x76\x60\xf9\xf7\x07\xa1\xb4\xbd\x5a\x02\xfe\xdb\x53\xe3\x42\x49\x41\x28\x29\x08\x6e\xc8\x50\x52\x10\x1c\x6d\xc1\xd1\xb6\xd7\x8e\xb6\xd7\xf2\x9e\xbf\xf0\xf1\x7c\x01\xe5\x74\xcf\x33\x96\xff\x72\x08\x1a\xe8\x0b\xe6\x1c\x04\x2f\x5b\xf0\xb2\xd5\x53\xe6\x30\xc3\xf3\x7b\x73\xeb\x07\xf4\x98\xa0\xf1\x87\xc4\x83\x90\x78\xb0\x94\x38\xc1\x1e\x0a\xf6\xd0\xde\xd9\x43\xaf\x68\x28\xec\x5d\x9a\x72\xb0\x18\x82\xc5\x10\x2c\x86\x37\x6b\x31\xec\x0d\x85\x83\xb9\x10\xcc\x85\x60\x2e\x04\x73\xa1\x9d\x38\xc1\x5c\x08\xe6\x42\x30\x17\xf6\x3a\x35\xf9\x50\x0c\x86\x60\x2c\x04\x63\x61\xbf\x8d\x85\xbd\x59\x50\x48\xe2\x0d\x49\xbc\x21\x89\xf7\x9b\x49\xe2\x7d\xa3\x06\xfb\x4e\xd5\x34\x27\x22\xdb\x14\xaf\x45\x7d\xe9\x97\x05\xc1\xba\xb7\x2a\x53\x31\xdb\x75\x21\x12\xb7\x45\xea\x67\x2e\x1e\xc7\x09\x7f\x1e\xe6\x56\x9d\x4d\x0a\x2f\xfe\xdb\xd6\xf3\x79\x7f\x28\x94\x67\xef\x8f\xb9\x12\xed\xfd\xcd\x8d\x5e\xd2\xa1\xd3\x6c\x19\x92\xa6\x44\x5c\xa0\x2c\x8d\xe1\x9f\x51\x26\x15\x9f\x35\x6b\xd5\x9f\xb1\x8a\xa6\x78\x94\x90\x5e\xfe\xdd\x33\xce\xc6\x74\x92\x19\xfe\xf8\x0d\x44\x21\x76\x9a\xcd\x91\xd3\x8c\xb4\x50\x74\xf3\x6b\xd3\xc4\x1f\x60\x1e\x5f\xec\x93\xc5\x47\x0e\x22\x01\x7d\x71\xda\x66\x39\x2f\x85\xcc\x59\xe6\xa2\x4d\x45\x9c\x37\xda\x7e\xa8\x3f\x8b\x67\x62\x99\xaa\x0a\x5e\xe8\xdc\x32\xa1\x31\x30\xe7\xf3\x94\x82\x67\x0d\x3c\x71\xe0\x7d\x2a\x06\x46\xcf\x34\x49\x40\xe3\x30\xb4\xd8\xbf\x95\x77\xb2\x5e\xec\xc2\xed\xd9\x7b\x13\xeb\x76\xc2\x63\xc9\xca\xdd\x11\x34\x61\x88\x03\x5d\xf6\x6b\x22\xec\x2e\x11\x64\xaf\x8a\xb3\xdb\x78\x7d\x36\xd4\x54\x7d\xf8\x9f\xda\x2b\xb1\x4b\x63\xc6\xd7\xbe\x07\x3f\x11\xf5\x66\x2e\xc1\x4f\x44\xbd\xd4\x0d\xf8\x16\xaf\xbd\x75\xef\xba\x56\xc1\x27\xc8\x98\x08\xc2\x22\x72\xa8\x35\x59\x0b\x57\xdc\xc1\x2e\x77\xad\x9b\xed\x60\x57\xbb\x8a\x03\xeb\x8b\x59\xa4\x75\x57\xcd\x9c\xc8\xf5\x97\xaa\xb8\x0d\x2f\x97\x42\x60\xd6\x59\x75\xdf\xbb\xfb\x79\x78\xdb\xbf\xbb\x7e\xb8\x3d\xeb\x9f\xa2\x1e\x1c\x74\x78\xc7\x88\x77\xfa\x4f\x18\x0e\xea\x61\x73\x67\x98\x30\x77\x9c\x04\x51\x0d\x61\x70\x4d\x45\x74\x8c\xce\x2e\x1f\xee\xee\xfb\xb7\x0d\x03\x5a\xe1\x4f\xd9\x04\x29\x32\x4b\x13\xac\x48\x8c\x1e\xb3\x11\x11\x8c\x80\x61\x95\x64\x52\x11\x51\x04\xc7\xcd\xa0\xfd\xff\xea\x9f\x3d\xdc\x5f\x5c\x5f\x0d\xff\xfe\xd0\x7f\xe8\x9f\x22\x77\x8b\xe8\x61\xf5\xbc\xf4\x2c\xe2\x39\xc3\x33\x1a\x99\x3f\xe4\x7d\x2e\xd1\xef\x19\xc9\x08\xc2\x52\xd2\x09\x9b\x11\xa6\xaa\x23\xba\x09\x5f\xf6\x7e\xec\x5f\x96\x47\x9e\x12\xf4\xf3\xdf\x8a\x49\x25\x78\x44\x12\x1b\xad\x87\x00\xb4\xbe\xbc\x8a\x0f\xd9\x30\x7e\x66\xa8\xfa\xf7\x87\xde\xe5\xc5\xfd\xaf\xc3\xeb\x8f\xc3\xbb\xfe\xed\x2f\x17\x67\xfd\xa1\x75\xc6\x9c\xf5\xf4\x77\x4b\x5f\xb2\x3e\x1b\xf4\x7b\x86\x13\xaa\xe6\x7a\x1f\xa5\xb9\xf4\xd1\xf3\x94\x30\x94\x31\xb8\x40\x8c\xa7\x10\x33\xef\xa3\x32\x25\x91\x59\xd1\xcd\xe5\xc3\xa7\x8b\xab\xe1\xf5\x2f\xfd\xdb\xdb\x8b\xf3\xfe\x29\xba\x23\x09\xf8\xd2\x1c\xd1\x61\x17\xd3\x24\x9b\x68\x49\x30\x4b\x13\xa2\xa9\x61\x7c\x85\x23\x32\xc5\x4f\x94\x0b\x7b\x1d\x4f\xe8\x13\x61\x86\x8e\x9a\xad\xcc\xf8\xce\x67\x35\xf4\x48\x77\x7d\xf5\xf1\xe2\xd3\x29\xea\xc5\x71\xbe\x06\x09\x63\x94\x38\xc7\x1d\xdd\xe3\xf2\xb4\xe9\x98\x46\xf0\x79\xc3\x44\xfc\x89\x08\x41\x63\x52\xe1\xa3\xde\xdd\xdd\xc5\xa7\xab\xcf\xfd\xab\x7b\xa0\x98\x12\x3c\x91\x68\xca\x9f\x21\xd0\x0b\x2b\x84\xf8\xef\x13\xa6\x09\x7c\xcc\x6d\x16\x67\xfe\xe9\xf7\xbe\x6c\xdc\x9a\x22\x63\xaf\x1e\xbb\x2c\x1d\xbc\x45\x6f\x5f\xf5\x24\x2d\x3e\x51\x39\x16\x6d\x0f\x94\xb8\x7c\xf1\xc1\x65\xdc\xba\xf8\x46\x85\xdd\x9a\x7d\x9c\x0b\xfc\xd2\xbc\xd2\x62\xaf\x3b\xbb\x38\xcb\x34\xdc\x85\x8e\xed\xde\x7e\x17\x93\x84\x28\xd2\xa8\x13\x9f\xc3\xcf\xaf\xaf\x13\x9b\x79\xbc\x19\xb5\xd8\x2c\x27\x68\xc6\x41\x33\xee\xbc\xe0\xa0\x19\xd7\x2d\xf8\x8d\x68\xc6\x7b\xe8\xf5\x71\x22\x6a\xef\xbc\x3e\x21\x3e\x52\xd9\xa9\xc3\xbc\x02\x5f\x2d\x3c\x12\xe2\x07\xab\x5d\x21\x87\xbf\xee\x10\x3f\x08\xf1\x83\xda\x9b\xe4\xcd\x47\x0d\x0e\xf3\x6a\x78\xc1\xa0\x41\x30\x23\x5a\xd6\x1b\xcc\x88\x03\x5b\x6d\x70\xb0\x07\x07\x7b\x70\xb0\x07\x07\x7b\x70\xb0\xa3\x75\x1d\xec\x1d\xa4\xec\x4b\xb8\x53\xf7\x34\x89\xf8\xad\x84\x0d\x0e\x53\x2f\x7e\xd9\xa8\x41\x50\x8d\x5b\xd6\x1b\x54\xe3\x03\x5b\xed\x1e\xfa\x45\xf6\xcb\xc3\x4e\xe3\x3a\x87\xc8\x0b\x42\xd3\xbb\x99\x74\x85\xa7\x77\x04\xbd\x88\x0f\x42\x9c\xbf\x1a\x42\x7d\xc0\x73\x0f\x78\xee\x01\xae\x25\xe0\xb9\xa3\x00\x48\x12\x00\x49\xf6\x19\x90\xa4\xc3\x36\xbe\x05\x3c\xf7\x97\xf1\x30\xbc\xa1\x22\x65\xa7\x18\xca\x52\xee\x06\x97\xcb\x92\x37\xc0\x4b\x90\xa5\x09\xc7\x71\x1b\x58\x8c\xd3\x23\x7d\xc0\x98\x16\xd5\xd3\x8c\xfd\x65\xd1\x78\xda\x5b\xcd\xd3\xcd\xd5\xcc\xfc\xa5\xdc\x07\x7b\x63\x70\xb9\x65\xef\x85\x99\xd5\xb1\x77\xeb\xd6\xcd\xae\x3a\x26\xef\x6c\x61\xc9\xbf\x1e\x12\x9b\xbf\x10\xa4\xea\xdb\x6b\xfc\x15\xa0\x9f\x02\xf4\x53\x23\x65\x0e\x13\x27\x76\x6f\x34\xba\x60\xa4\x07\x4c\xd5\x80\xa9\xba\x0b\x8b\x3e\xb8\x30\x96\x2e\x3b\xb8\x30\xde\x04\xa6\xea\x8a\x36\xc4\x0e\x7b\x32\x6c\x66\x4d\x1c\x54\xcd\x5e\xb0\x26\x82\x35\x51\xb3\xb4\x60\x4d\x7c\x83\xd6\xc4\x7e\x50\x38\x98\x12\xc1\x94\x08\xa6\x44\x30\x25\x82\x29\xb1\x75\x32\x06\x53\xe2\x75\xfa\x35\xd4\xd9\x13\x1d\x6b\xdd\x0e\xca\x98\x08\x86\x44\x30\x24\x82\x21\x11\x3a\x52\xb4\xaf\x29\x74\xa4\x08\x1d\x29\x42\x47\x8a\x37\xd0\x91\xe2\x25\x55\xb8\x06\x18\xe4\xc3\xc8\xdf\x3f\x08\x25\xee\xd5\x12\xf8\xdf\x9e\x4a\x17\x4a\x12\x42\x49\x42\x70\x51\x86\x92\x84\xe0\x84\x0b\x4e\xb8\xbd\x76\xc2\xbd\x96\x67\xfd\x85\x8f\xe7\x0b\x29\xaa\x07\x92\xed\xfc\x97\x43\xd0\x46\x5f\x38\x3f\x21\x78\xe0\x82\x07\xae\x9e\x32\x87\x19\xca\xdf\x1b\x2d\xe0\x10\x5b\x52\x06\x0b\xa0\x3b\x21\x42\x92\x42\x77\x5a\x85\x24\x85\x16\xe2\x04\xfb\x28\xd8\x47\x7b\x67\x1f\xbd\xb2\xe1\xb0\xb7\x29\xce\xc1\x82\x30\xcf\x05\x0b\x22\x58\x10\x6f\xd4\x82\xd8\x1b\x0a\x07\xf3\x21\x98\x0f\xc1\x7c\x08\xe6\x43\x3b\x71\x82\xf9\x10\xcc\x87\x60\x3e\x1c\x4c\x5a\xf3\x21\x19\x10\xc1\x78\x08\xc6\xc3\x7e\x1b\x0f\x7b\xb3\xa0\x90\x00\x1c\x12\x80\x43\x02\xf0\x37\x93\x00\xfc\x46\x0d\xf8\xed\xaa\x6d\xff\x66\x09\xf5\xce\x53\x30\x72\x4d\xe4\xdd\x8f\x09\x1f\xdd\xcf\x53\xa2\xff\xff\x39\x9d\x11\x26\x81\x12\x54\xcd\x7d\x35\xad\x81\xa1\x16\x59\xe9\xdd\xdd\xc5\xd5\xa7\x4b\xbf\xef\xc8\xbb\xcf\x0f\x97\xf7\x17\x37\xbd\xdb\x7c\xbb\xf3\x55\xf9\x5b\x6c\xdf\x2b\x69\x9a\xf6\x24\xdf\x12\x6d\x52\x83\x30\xb8\x53\x58\x65\x72\xbd\x99\xdd\xf6\xef\xfa\xb7\xbf\x40\xdf\x94\xe1\xf9\xc5\x5d\xef\xc7\xcb\x12\x9f\x97\x7e\xef\x9d\xfd\xfd\xe1\xe2\xb6\xf9\xf7\xfe\x7f\x5d\xdc\xdd\xdf\x35\xfd\x7a\xdb\xbf\xec\xf7\xee\x9a\xdf\xfe\xd8\xbb\xb8\x7c\xb8\xed\xb7\xd2\xa3\x75\xb6\xed\xb6\x95\x04\x22\x41\xef\x00\x14\x59\x61\x28\x0a\x1a\xa2\x5c\x2b\x76\x52\xbe\xee\x5b\xa7\xe8\xc1\xba\x2a\xa8\x1d\xdc\xdc\x1b\xde\x40\xc6\xc6\x8a\xa9\xc4\xa3\x84\xc4\x0b\x23\x39\x1a\x36\x8d\x84\x4b\x93\x7a\xc6\xd2\xd3\xa4\xb5\x28\x8f\xcc\xf1\x41\xd0\xcd\x49\x11\x16\xd7\x7c\xc3\xec\x43\xe3\x17\x98\x16\xc9\xf4\x89\x94\xbe\x14\x65\x42\x10\xa6\x92\x39\x22\x5f\xa9\x54\x72\x61\x50\xb7\x7d\x4d\xc3\x5a\x81\x90\x0f\x38\xc5\x12\x8d\x08\x61\xe5\xf9\x0b\x92\x10\x2c\x6b\xe6\x6c\x77\xbf\x1b\x59\xf2\xbd\xb2\x4e\x26\x73\xc7\x8e\x31\x4d\x32\x41\x2a\xa7\x85\xcf\x52\x2c\xa8\xe4\xac\xff\x55\x5f\xd1\xfa\x20\x5f\xc3\xeb\x5c\xac\x77\x62\xfa\x7f\xf7\x39\xf8\xaa\xfc\x9f\x9f\xee\xcb\xff\x55\x3a\xf3\x97\xf7\xe5\xff\x6a\xe7\x75\x6f\xe0\x2a\x67\x1f\xa3\x4f\xf7\xa7\xe8\x13\x40\x8c\x0a\x74\x3f\xc5\x86\x63\x2f\xef\x4f\xd1\x25\x91\x12\xfe\x52\xbc\xac\xa8\x4a\x60\x6d\x3f\x52\x86\xc5\x1c\xb9\xe5\x9b\x96\x60\x38\x9a\x22\x92\x93\xa6\x4a\x3c\xf6\x8f\x8c\x81\x47\xa2\xa0\xde\x25\x9f\xd0\x08\x27\x9b\x11\xb1\x77\x55\x92\x03\xd7\xb7\xad\xa4\xf0\x9f\x5e\xa4\x45\xef\xea\x1c\xda\x6d\xb9\xa9\xd6\xac\xfc\x8a\x48\xcd\x24\x11\x67\xb1\x8d\xa9\x69\xa5\x66\xee\xd9\x2a\xff\xe0\xd0\xb2\x2c\x93\x94\x4d\xf4\x88\xe8\x03\xba\xbe\x1d\xb0\x6b\x11\x1b\xff\x2e\xd1\x4a\xbe\xe1\x39\x2a\x11\xe3\x0a\xd1\x59\xca\x85\xc2\x4c\x69\xfb\x06\xb4\x1b\x4b\x11\x23\x01\xce\xf8\x6c\x96\x29\xac\x0f\xda\x02\x51\x99\xf1\xf2\xdc\x11\x75\x11\x43\x20\xac\x86\x86\x46\xfd\x29\xd6\x92\x0a\x3d\xbe\x56\xbd\xca\xae\x01\x1a\x2f\x58\xe8\x6e\x08\x2c\x04\x2e\x5f\xc0\xef\xa8\x22\xb3\xea\xf3\x1d\xaf\xdd\x7f\xd5\xfa\x3d\xce\x4c\x55\x04\x11\x3d\x11\x4d\xa9\x22\x91\xd2\x47\x70\x2d\x9e\x78\xb8\xfa\xf9\xea\xfa\x8b\xaf\x18\xbd\xeb\x7d\x3e\xff\x8f\x12\x0c\x6c\xef\xf6\xf3\xc2\x1f\x86\xbf\xfc\xc7\xc2\x5f\xfe\xff\xad\xfc\x54\xfd\xd2\x82\xfb\xc2\x5b\xcb\x31\x58\x0a\xe0\xea\x76\x4b\x45\x74\x86\x27\x04\xc9\x2c\xd5\x1c\x20\x4f\xca\xfb\xab\x35\xe5\x4b\x8e\x63\xca\x26\xa6\xab\xd4\x25\x55\x44\xe0\xe4\x33\x4e\x3f\x3a\xb7\xfc\x1a\xd4\xf9\x3f\x77\xa5\xce\x66\xef\x7e\xed\x7d\xf6\x7b\xa3\xbd\xbb\xb9\xbd\xbe\xbf\x6e\x5d\x75\x69\x84\xc5\x63\xa4\x7f\x3e\x85\xff\x8b\x3e\x20\x3d\x7a\xae\xd0\xcf\x88\xc2\xda\xd0\x41\xdf\x99\x46\x3c\x79\x25\x0c\x65\x09\x9c\x9a\x54\xd0\x19\x85\x2b\xc5\x38\x26\xbf\x37\x36\x43\x6e\x14\xe5\xe7\xc6\xbc\x00\x4e\x00\x77\x29\xb3\x18\x8b\x18\xfd\x43\x56\x1b\xed\x81\x3f\xdc\xfc\x81\xc4\xe8\x18\x4d\x95\x4a\xe5\xe9\x87\x0f\xcf\xcf\xcf\x27\xfa\x69\xad\xc0\x7e\xd0\xff\x38\x26\xec\x64\xaa\x66\x89\x69\x2c\xa8\xa9\x70\x8a\x6e\x04\xd7\x57\x08\xf8\x1d\x88\xa0\x38\xa1\xff\x24\x31\x1a\x19\xf9\xc7\xc7\xe8\xb7\x88\x0b\x72\x52\x6c\x8c\xf5\x95\xd9\x7b\xc4\xfa\xd3\x3e\xe8\x87\x6a\x84\x49\x75\x3f\x51\x4c\x22\x1a\x5b\x35\x83\xb0\x88\x83\x43\xd5\x84\x60\xf4\x78\xae\x7b\x91\x36\xd4\xd2\x4c\x15\xe4\xf4\x6c\x30\x1c\x13\xaf\x2f\xa0\xd5\xaf\x73\x86\xd3\xf6\xdc\x85\xb1\xc6\x33\x49\x04\xdc\xad\x18\x6e\x55\xf7\x68\xaa\x17\x1c\xf1\x04\x8d\xb2\xf1\x98\x08\x3f\x7d\xe0\x48\x1b\x69\x54\x22\x41\x22\x3e\x9b\x81\xc6\xa0\xdf\xca\xa4\xe1\x6a\xa0\x98\x9d\xed\xc9\x80\xc1\xfe\x6b\xeb\x0d\x38\x20\xe6\x20\xea\x18\x21\x31\xc2\x6c\x6e\x3e\x33\xca\xc6\xfe\xf8\xa6\x61\x27\x8e\x11\x55\x03\xd6\x4b\x12\x24\xc8\x8c\x2b\xe2\xf5\x65\x82\x50\x67\x99\xe0\x20\x22\x05\x49\x13\x1c\x91\xd8\xf0\x43\xc2\x23\x9c\xa0\x31\x4d\x88\x9c\x4b\x45\x66\xfe\x00\xdf\x81\x0b\x4a\xd3\x8c\x4a\x14\xf3\x67\x96\x70\x6c\xd7\x51\x7d\xed\xfb\xf2\x69\xec\xbb\x66\x8a\x7d\x21\xb8\x80\xff\xf3\x33\x65\xf1\xd6\x24\xd4\xc3\x5d\xff\xd6\xff\xef\xbb\x5f\xef\xee\xfb\x9f\x57\x93\x3e\x39\x67\xc1\xf4\xc0\x35\x71\x8a\xee\x0c\x11\xb8\xd0\x1a\x91\x68\x58\xd4\x67\xcb\x4a\xc5\x1f\x78\xbc\xa6\xf4\xfd\xdc\xbb\x7a\xe8\x95\x24\xca\xdd\xd9\x4f\xfd\xf3\x87\x8a\x3d\x60\xd7\x57\xd2\xe1\x8d\x55\xeb\xff\xed\xec\xa7\x8b\xcb\xf3\x61\x8d\x1d\xfc\xee\xb6\x7f\x76\xfd\x4b\xff\xb6\x30\x59\x6b\x49\x54\x99\x4c\x55\x58\xdd\x1b\xa1\x34\xe5\x31\x1a\xcd\xeb\x5b\x67\x6a\xcd\x39\x81\xc8\x79\xd1\x3c\xd6\x8c\x7a\x0a\xb2\xc9\x75\x31\x2d\xde\x98\xf1\x98\x1c\xd9\x67\xa0\xe7\xa8\xf1\x19\x19\x8d\xb9\x7e\x60\xfd\x75\xcc\x3c\xff\x8b\x69\x07\x9a\x13\xee\x14\xf5\x90\xd4\x0f\x66\xfa\x50\x0b\x3a\x99\x80\x3f\xb4\x32\x55\x33\x9a\x7d\x15\xc8\x0b\xef\x99\xfd\x4f\x05\x87\x73\xae\x3f\x6b\x1d\xe9\xb9\xb3\xc5\xbc\x08\xfd\x69\xcb\x23\x0a\x0c\x7e\x94\x9a\xa9\xb9\xcd\xd2\x44\x68\xa4\x97\x39\x8f\xc6\x0d\xa6\x0f\x17\x88\x2d\x69\xdc\xb8\xa9\x20\x4f\x94\x67\xde\xab\xb6\x05\x6a\x69\xc7\x6b\x87\x2f\x08\x00\x64\x33\xbe\x9e\xca\x30\x39\x7b\xd4\x8e\xa0\x45\xd8\x13\x8c\x30\x16\x7c\x56\x33\x46\xf9\x98\x5c\x5c\xdf\x29\x81\x15\x99\xcc\xcf\xad\xc8\x58\xff\x78\x9c\x5f\x7f\xb9\xba\xbc\xee\x9d\x0f\xfb\xbd\x4f\xe5\x13\x9f\xff\x72\x77\x7f\xdb\xef\x7d\x2e\xff\x34\xbc\xba\xbe\x1f\xba\x27\x5a\x59\xbe\xe1\x03\x8b\xf7\x74\xf9\xc1\x53\xa4\x45\x2e\x88\xc6\x67\x9a\x24\xfa\x32\xf1\xe4\xe3\x88\x8c\xb9\x30\x72\x7e\xe6\x12\x4d\xac\x0a\xe3\x68\x6b\x6d\xb1\xca\x2a\x4e\xc1\xe1\x57\x37\xa4\x71\xe6\x2b\x41\xf0\x0c\xee\x09\xcc\x50\x9f\xc5\xc7\xd7\xe3\xe3\x3b\xf3\xc7\x19\x16\x8f\x44\xe4\xaf\x3e\x0b\xaa\x14\x61\x25\x93\x0e\xbb\x29\xe7\x46\x62\xf1\x81\x13\x74\xab\xe5\xbe\x7e\x3e\xbf\xd4\x34\xb3\xc7\x44\x61\x9a\x48\x3b\xd9\x12\x5d\x4f\xd1\x25\x16\x93\xc2\xbd\xf8\x1d\x1f\x8f\xcd\x60\xdf\x9b\x69\xe8\x3b\xac\xb4\x8a\x1a\xd9\xab\x59\xc3\xdd\x8b\xf0\x3d\xfb\x70\xae\x0f\x2f\x72\xd5\x43\xba\x19\x4f\x3d\xdc\x00\xc5\x8d\xc5\x5e\xb2\x0d\xed\x2f\x35\xbc\x06\x0b\x37\x3f\xb7\x5f\x32\xf5\x63\x2f\xb2\x53\xf9\xc1\x1a\x76\x32\xbd\x4c\xf4\xce\x8f\xb5\xb5\x59\xc3\x4b\xe4\x2b\xb5\x0e\x03\x7f\xde\x15\x16\x2a\x86\x01\xaf\x31\x4e\x53\x82\x85\xac\xdb\xed\xb2\x1a\xd8\xb0\xf7\xe6\x4b\xfe\x37\xec\x26\xbb\xef\x1c\x21\xce\xc0\xe1\x90\x2b\x11\x15\x8e\xec\xc0\x03\x66\xac\x05\x0e\xb8\x81\xbe\xd4\xd7\xb6\x07\xf4\x67\x2a\xb5\xd1\x68\xfe\xf8\xa3\x6d\x4e\xbd\x1e\x43\x7c\xec\x5d\x5c\x56\x94\x8b\xe1\x79\xff\x63\xef\xe1\xb2\xdd\x4d\x58\x7a\xaf\xba\xc5\xe8\x18\xe9\xdf\xcb\xe9\x00\x74\x6c\xee\x0c\xd7\x62\xdb\x98\xb4\x84\x81\xd3\xca\xb6\xbf\x35\x6e\xf8\x98\xa4\x09\x9f\xcf\x08\x03\x17\x4f\xe9\x26\xd4\xf4\x1c\x63\x6a\xaf\x16\x6f\xb2\xe0\xc5\xb1\x6e\x37\xb8\xc6\x8e\x5d\x5f\x6f\x12\xe7\x37\x6f\xb9\xad\x77\x45\x74\xdf\x98\xa0\xa0\xfd\x7f\x77\x0a\xab\x35\xcf\x58\xef\xec\xfe\xe2\x97\x7e\xd9\x3e\x3c\xfb\xe9\xe2\x97\x3a\xad\x66\xf8\xa9\x7f\xd5\xbf\xed\xdd\x2f\x51\x4e\x2a\x43\xd6\x29\x27\x52\x4f\xb8\x1a\x14\xa6\x32\x4f\x74\x8a\x4c\x73\x70\x44\x95\x44\x4f\x54\xd2\x11\x85\x56\xea\x36\xc0\xfa\x70\x01\x92\xf5\x09\x27\x34\xa6\x6a\xee\xd4\x17\xf3\xdd\xf2\x3e\x6a\x49\x6a\xc7\x37\x6e\x07\x3f\xec\x0a\x5e\x3e\xb3\x39\x6e\xd1\xa7\x08\x6c\xdb\x27\x30\xda\xbc\xd7\x98\x56\xa4\xd9\x84\x08\x33\x1d\x08\x2a\xf9\x73\xf1\x7e\xd7\xb3\xf2\x95\x95\x82\x6a\xb9\xd2\x3a\x21\x8c\x08\x68\x97\x9f\x7f\xc4\x28\x52\x82\xb0\xf7\x5a\xe7\x4a\x13\x1a\x51\x95\xcc\x51\x04\x3e\x2c\x70\x67\xce\x30\xc3\x13\xab\x1c\x80\x99\x53\x61\x89\xbf\x9b\x7e\xf3\xd7\x63\xeb\xda\xbf\xa7\x64\xcd\x63\xf6\x70\x75\xde\xff\x78\x71\x55\x66\x81\x9f\x2e\x3e\x95\x54\xd8\xcf\xfd\xf3\x8b\x87\xd2\x6d\xae\x35\xd9\x76\xbd\xbe\x3a\x6c\xcd\x51\xcc\x1f\x3a\x45\xe7\xe6\xd5\x53\x4d\xdc\x9a\x66\xfa\xb9\xf1\x5b\xa1\xc3\xad\xcb\x34\x74\xff\xe8\x33\x25\x6a\xe3\x12\x5d\x5d\x48\x36\x2a\x54\xf2\x21\xd5\x67\x60\x2c\x7c\xfb\xaa\x1a\x2b\xaf\x2e\xd9\x3d\x08\x29\xb2\x27\x85\x67\xc9\x4f\xcd\x00\xa7\x41\x93\x13\xab\x26\x5a\x57\x08\xec\x5f\x20\xf2\x3e\xcb\xa4\x32\x11\x52\x60\x4e\xf4\xf8\x37\xa9\x09\x0a\x11\xd4\x13\x74\x47\xc8\x80\x39\xef\xc1\x84\xaa\x69\x36\x3a\x89\xf8\xec\xc3\x63\x36\x22\x82\x11\x45\xe4\x07\x9c\xd2\x19\xd6\x9a\x34\x11\xf3\x0f\xa3\x84\x8f\x3e\xcc\xb0\x54\x44\x7c\x48\x1f\x27\x90\xd8\xe3\x22\x5d\x1f\xf2\x61\x27\xfc\xdf\x2f\xff\xf2\xc3\xf1\xe5\xdf\x7e\x78\xb7\xe8\x21\x6b\xda\xff\x3e\x8b\x70\x2a\xb3\xc4\x26\x02\x0a\x9f\x36\xee\xc8\x67\x64\xd9\x7e\x5f\x95\xb7\x6b\x33\xfb\xf5\xec\xe6\xa1\xe4\xb1\x2e\xff\xe7\xe7\xfe\xe7\xeb\xdb\x5f\x4b\x92\xf2\xfe\xfa\xb6\xf7\xa9\x24\x50\xfb\x37\x3f\xf5\x3f\xf7\x6f\x7b\x97\x43\xf7\xe3\x26\xbe\xb7\x9f\x19\x7f\x66\x65\xd2\x48\x27\x01\x17\xbe\x74\x8a\x3e\x72\x81\x7e\xce\x77\xf2\x78\x84\x25\x5c\x31\xee\xce\x92\x47\x28\xe5\x31\x08\x5e\x44\xd2\x29\x99\x11\x81\x13\xeb\x33\x90\x8a\x0b\x3c\x31\x37\xbd\x8c\x04\x56\xd1\x14\xc9\x14\x47\xe4\x08\x45\xc0\x0d\x93\x23\xd8\x14\x30\xb5\xf8\xa4\xea\xe7\xbb\xcd\x98\xa2\x33\xe2\x4c\x70\xfb\x9f\xf7\x66\x33\xd6\xd8\x9c\xeb\xfb\x9f\xca\xca\xde\xc7\xcb\x5f\xef\xfb\xc3\xbb\xf3\x9f\x5b\xe9\x69\x5e\x2b\xcd\xec\x0e\xf2\xaa\xce\x78\x92\xcd\x98\xff\xef\xf5\xe7\x76\x71\x75\xdf\xff\x54\x9d\xdd\x75\xef\xbe\xcc\x19\xb7\xe5\xbc\xbd\x77\x3f\x5e\x5f\x5f\xf6\x4b\x91\xee\x77\xe7\xbd\xfb\xfe\xfd\xc5\xe7\x12\xff\x9c\x3f\xdc\x42\x0c\xa8\x75\x99\x6e\x06\x35\x0b\xd5\xcb\xf2\x97\xb9\x6d\x51\xd8\x49\x12\xf5\x6c\xfa\xbf\x39\xcb\xc7\x1e\x5e\x8e\xc9\x72\x03\xaf\xce\x71\xee\x52\x8d\xcc\x4c\x6b\xc5\xa1\x2a\x6f\x13\x6a\x16\xc7\xad\x1b\xdd\x26\x95\xef\xf3\x29\xc0\xbc\x4e\x8c\xb1\x8d\x93\x84\x3f\x9b\x0c\xe5\x19\xd5\xb7\xb2\x6d\xb6\xae\x1f\x91\x45\x84\xf0\xa4\x46\xe2\x95\xb7\x85\x44\x82\xa8\xcf\x3c\x63\x6a\x7d\x96\xeb\x5d\x95\xe4\x4e\xff\xea\x97\xe1\x2f\xbd\x32\x07\x5e\x5c\xb6\x8b\x1a\x7f\x88\x9a\xab\xb8\x77\xf5\x6b\x7e\x09\x43\x1e\xfb\x51\x6e\xa1\x1a\xdd\x35\x4a\xa8\x56\x7b\x23\xac\xad\xd7\x04\x34\x1a\x44\x28\xb8\x1c\x66\x7a\x71\x90\x37\x9b\x9a\x78\x92\x91\x4f\x66\x92\xa7\xee\x1f\x95\xf1\x24\xd0\x05\xbc\xa9\xae\x4c\x00\xc6\xb1\x56\x35\x43\x84\x3d\x51\xc1\x19\x28\xdb\x4f\x58\x50\xad\x8d\x9b\x91\xf5\x5a\x4f\xe1\xff\xae\x36\x26\x38\x46\x2b\x82\xeb\x8e\x0b\x75\x9e\xe7\x27\xaf\xe7\x0d\xa9\xcb\xd3\x5d\xcc\xd0\xad\x77\x74\x2c\xbe\x5b\xb3\x39\x1b\xe6\x31\x97\x17\xfc\x7b\x72\x4e\x71\xa2\x05\xc0\xf6\xf4\xc5\xde\xd5\xdd\x45\x59\x7f\x2c\x9b\x19\x9e\x5c\x5e\x5b\x5f\x04\x47\xa5\x99\xb9\x33\x26\xee\xfe\x7e\x69\xac\x0b\xcd\x24\xf6\xdc\x7a\x86\x05\x28\x40\xae\x0b\x69\x8a\x85\xac\xbc\x21\x11\x20\x99\x15\x79\x64\xfa\xce\x82\x2c\xad\x27\x4e\xe3\x01\x23\x5f\x53\xc2\x24\x24\x07\x98\xfb\xac\x88\xb5\xcb\x13\x74\x31\x06\x91\xa0\x1f\x67\x28\x63\x36\x00\xa6\x2f\x5c\x33\xc9\x23\xad\xca\xda\x29\xe4\x16\x22\x38\x5e\x18\x71\x39\x60\xc5\xe4\x07\xec\x4b\x1e\x44\x83\x9f\xc6\x5c\x0b\x20\xbd\x8b\x76\xbc\x53\x84\x99\xa4\x47\x48\x1b\x2c\xd5\x3d\x85\x8a\x08\x6d\x50\xda\xcc\x34\x2d\x69\xec\x3f\x5f\xfe\x1a\x58\x48\x7f\xf6\x2f\x83\xfa\xbb\xa0\x72\x15\x34\xa8\xc6\x89\x89\x98\x0c\xbb\xdf\x09\x11\x17\xc4\xc6\x59\x56\xbe\x06\x96\x09\xf6\x7b\x2c\x1f\x17\x62\x0f\x17\x4c\x2a\xcc\x22\x72\x96\x60\xb9\x66\x12\x92\xf3\x71\x1c\x95\x35\x8e\xdb\xdb\x87\x9b\xfb\x8b\x1f\x97\x48\xf9\xea\xcb\x8b\x69\x40\x51\x92\xb9\xf0\xdc\x48\x70\x1c\x23\x2d\x3e\x27\xdc\x84\x02\xad\xe2\x6f\x4e\x90\xd9\x13\x2a\xbd\x3c\x51\x2c\x1f\x4b\x4e\x6a\x5b\x65\x61\xfd\x1c\x7e\x28\x81\x5a\x42\xa0\x48\x53\x02\x79\x2e\x0f\xb7\xd5\x10\x59\x34\x59\x74\xd6\xbb\x95\x26\x58\x8d\xb9\x98\x19\x29\x5f\x5a\xb4\x19\xbc\x7d\x50\xca\x14\x11\x22\x4b\x15\x98\xec\x7a\xae\x55\x2d\x55\x6f\xd9\x25\x9f\x7c\x26\x52\xe2\x09\xd9\x24\x00\x5d\x67\x3c\xdc\xfd\xe2\xff\x27\x04\x98\xbb\xe8\xfe\xa5\x19\xba\x84\x7e\xc7\x4f\xd7\xec\xa3\x49\xe4\xb9\xe1\x09\x8d\xd6\x4c\xb8\xfb\xd8\xbb\xb8\x1c\x5e\x7c\xd6\x46\x7c\xef\xbe\x7f\x59\x52\x25\xe0\xb7\xde\xc7\xfb\xfe\xed\xb0\xff\x5f\xfd\xb3\x87\xfb\xde\x8f\x97\xfd\xe1\xd5\xf5\x79\xff\x6e\x78\x76\xfd\xf9\xe6\xb2\xbf\x24\x33\xa7\x71\xf0\x45\xef\x6a\xf5\xd1\xd3\x85\xbf\xc0\x0e\x6b\x59\xe6\xfb\xcb\xa0\x18\x0e\xd3\x04\x82\xe0\xdc\x04\xc3\x31\x62\x3c\x26\xf0\x67\xe9\xbc\x33\xae\xda\xe4\x04\x5d\xa8\xf7\x49\x82\x70\xa6\xf8\x0c\x43\xd4\x26\x99\x0f\x18\x1e\x69\xd1\x8a\x93\xc4\x4b\xef\x12\x19\x63\x5a\xc4\xea\xc1\xa4\xc9\x2f\x4e\x88\x16\xe7\xa9\x57\xc3\x68\xe3\x06\x63\xca\x20\x81\x78\x86\xc5\xa3\x09\x33\x15\x9f\x2c\x0e\x85\x44\x58\x0e\x98\x9e\x17\xb1\x8e\xa1\x2e\x14\x3e\xed\xf4\x54\x23\x75\x66\xf8\x91\x68\xaa\xcc\xb2\x68\x8a\x52\xc1\x27\x82\x48\x69\x7d\xcb\x11\x66\x26\x01\xc1\x3e\xae\xaf\xa1\x01\x63\x5c\x93\xc2\xb9\xb0\x63\x92\x12\x16\x13\x16\x51\x53\xad\x08\xb1\xfb\xdc\xb5\x39\x11\x38\x9d\x22\xc9\x21\xe8\x0d\x64\x07\xff\x95\x79\xc9\xdd\x64\x66\xc5\xe6\x67\xdf\x03\x2d\x32\x2d\x27\xae\x41\x4f\x34\x54\x86\x97\xdd\x65\xe8\xc2\x2e\xc6\x0f\x38\x4b\x13\x02\x9f\xb4\x24\x87\xcd\xd0\xb4\x2e\xed\x87\xde\xa6\xba\x4d\xd0\x17\xb6\x9b\x33\x96\x76\x46\x27\x35\x9e\x6d\x7b\xa4\xd0\x4f\x98\xc5\x89\x1e\xc5\xc5\x30\xca\x67\x11\x2a\x6c\x7a\x9a\x6b\xdc\x69\xdc\xe4\x16\x8d\x70\x26\x37\xb9\x46\x2b\x25\xa6\xc6\x2b\x78\x5c\x24\x85\x00\x7b\xdb\xfa\x52\xa0\x6e\xaa\x45\x24\x4e\xb8\xa5\x92\x79\x3c\xb3\x49\xcb\x30\x9b\x86\x6b\x36\x15\x94\x45\x34\xc5\xc9\x5a\xb6\x5f\xa5\xc6\xc0\xa6\xee\x7f\x47\xc7\x9a\x7d\xbe\x5f\x08\xdb\x2a\x22\x66\x50\x4e\x6e\xa7\x99\x6f\xe1\x0a\x9e\x24\x5b\xac\x41\x64\x91\x4d\x82\x05\xcf\x4c\x3c\x0e\xe8\x42\xe2\x9a\xa3\x7a\x52\xb7\xdd\xfa\x64\xe0\x72\x02\xf4\x1a\x9b\x6d\x32\x7f\x9a\xe8\x57\x19\xc5\x7e\xdd\x24\xe3\xe1\xe4\xa6\x7e\xcc\xba\x1d\xf0\x7e\xfc\x57\x1b\xef\x7c\xc6\xa9\xe6\x99\x28\x93\x0a\x22\xc5\xf9\x1a\xad\x91\x54\x49\x65\xf7\x62\xe7\x79\x52\x7b\xf7\xdd\x28\x48\x68\x13\xa0\x16\x3f\x52\xca\x21\xf0\x10\x01\x2c\x8f\x8f\x33\xad\xcb\x22\x0c\x59\x08\xe8\x3b\x72\x32\x39\x41\xd7\xbf\xf4\x6f\x6f\x2f\xce\xfb\x47\xa8\x77\x73\xd3\xbf\x3a\x3f\x42\x44\x45\xdf\xbb\x9c\x45\x9b\xb0\x34\x60\x8a\x5b\x6d\x65\x8e\xa6\xfc\x19\x64\x23\x11\x13\x52\x5a\xb3\xcb\x6e\x82\x54\xe5\x09\x95\xca\xa6\xcf\x6a\xb9\x52\x4c\x4b\xeb\xfb\xb5\x1c\x92\xa9\xe9\x26\xac\x81\xa5\xcc\x66\xda\x96\x1d\x52\x3c\x1b\x0a\x9e\x6c\x22\x14\xce\x61\x29\x60\x2e\xe7\x60\x0a\x14\xcf\x90\x1e\xd6\xa6\x82\xe4\x21\xc7\x5c\xa5\xd3\x8a\x91\x96\xcb\xfa\xde\xf4\xee\x2d\x17\x7d\xb0\xf9\x68\xd4\xa5\x40\x00\xd8\x42\x83\xa8\x28\xdc\xc6\x43\xeb\xa9\x1f\xe2\x28\xd2\x26\xf7\x96\x17\x55\x7c\x28\x0f\x09\xd8\x0f\xed\x6c\x99\xcb\xf8\xdc\x4d\x33\xd5\x12\x0c\x92\x81\xf5\x95\x2b\x79\x44\x8b\xf1\x6b\xbe\x3b\x9a\x2f\x7c\x15\x58\xf6\x64\xc0\x1e\x64\xee\x52\x31\x97\xb0\x24\xb0\x93\x12\x3d\x4f\x09\x1c\x8d\x39\x9a\xe2\x27\x52\xfa\xa4\xab\x21\xd1\x03\xcf\x79\x26\xea\x04\xdd\x80\x9d\x93\x54\x10\xad\xe9\x57\x03\x28\x39\x4f\xdf\x96\x39\x31\xf0\x75\xe0\xeb\x83\xe7\xeb\xb3\x24\x93\x8a\x88\x9e\x94\x74\x02\x8e\xc4\x8d\x14\x38\x33\xd8\x30\xe5\x3c\x19\x76\xf0\x89\x74\xa7\x78\x29\x12\x56\x4a\xf8\x90\x06\xe9\x80\x67\xa0\x1f\x95\xae\x4d\xae\xef\x3a\xaf\x72\xd8\x4e\xaf\x85\x0c\x2e\x64\xd6\x73\x80\x12\x1b\xa9\x38\xb8\x6e\x94\xb6\x91\xd0\xce\xd5\x9c\x33\xa3\xdf\xe4\xe1\xb2\x62\x8a\x95\xc3\xe4\x54\x11\xca\x1c\xd9\x8a\x97\x80\x9f\x35\x81\x8d\xde\xf1\x7b\xc6\x15\x96\xdf\x9f\x0c\x98\x56\xa2\x1e\xc9\xdc\xb8\x5b\xb5\x9a\xf2\x07\xad\x8b\x1f\x4b\xc2\x24\xa4\x7b\xff\xc1\x84\xe7\x34\x8b\x3b\x77\xb5\x31\x4d\xc9\x2c\x4d\xb0\x82\xa4\xeb\xfc\x2b\x90\xa2\x6b\x07\xb5\x5a\x52\x91\x00\x0d\x7a\xbe\x59\x8b\xfd\xcd\x4c\x7f\x42\x14\x54\x8e\x2b\xaa\xc0\x66\x8a\x33\x4d\x9e\xc5\xa9\x2f\x75\x5d\x19\xae\x10\x1c\xe2\x24\x71\xb6\x99\xe0\x97\x8b\x63\x2c\x95\x8c\xb9\xb5\x70\x67\x73\xde\x3f\x38\xbf\x51\x24\x38\xab\x64\xc3\x68\x63\xce\xec\xf4\xc8\x88\x03\x17\xbf\x26\xec\xe4\x99\x3e\xd2\x94\xc4\x14\x43\x06\xbc\xfe\xaf\x0f\x7a\x5d\xff\x7e\x76\x7b\x7d\x35\x2c\x2a\x79\xfe\x73\xc0\x7a\x89\xe4\x79\x95\x02\x62\x9c\xe5\xe9\xf6\xa9\x20\x4e\x25\xb4\x6b\x01\xaf\x6b\xe1\x46\x1c\xb0\xa6\x19\xc4\x3c\x92\x27\xf8\x59\x9e\xe0\x19\xfe\x27\x67\x10\x4a\xef\xc1\x3f\xcf\x12\x9e\xc5\x5f\xb0\x8a\xa6\x1f\xe0\x5c\xab\x0f\xe4\x89\x30\x65\xc2\x54\x9a\x5c\x31\xd4\x24\x4b\xc8\xd6\xff\x77\x3d\xe7\xa2\xa8\x48\x6a\x4b\x36\x22\xa9\x42\xff\xaf\x20\x23\xce\x55\xfd\x25\xc5\xc7\x63\x49\x56\xba\x90\x0a\x23\xed\xee\x1a\xfd\xed\x3f\x7e\xf8\x93\x66\xa1\x75\x68\x7c\x71\x77\x3d\xd4\xef\xff\xfb\xb9\x7d\x5f\xae\x20\xee\x4c\x29\xad\xb4\xa1\x66\x43\x0d\x93\x38\x9f\x31\xb8\xfd\x04\x04\x2f\x40\xbc\x01\x3b\x14\xfb\x58\x27\xdd\xce\x4b\xa3\x6f\x66\xb2\xad\x45\x4c\x30\xb1\xbd\x35\xa2\x63\xc4\x38\x9a\x99\x5c\x53\xcc\xd0\x5f\x7f\xfe\xb1\x7e\x03\x33\x41\xd7\xfa\x20\xb5\x28\x14\xde\x27\x25\xfd\x27\x91\x48\x73\x8d\xe6\x62\x3e\xd3\x9f\x16\x44\x4e\x79\x12\xa3\x67\x02\x66\x92\xcd\x03\xcd\xad\x72\x41\x06\xcc\x1f\x02\x52\x0e\x11\x4e\x14\x9f\x10\xb8\xab\x9d\xa1\xa6\x88\xd0\xaa\x8a\xa9\xd2\x50\x5c\x90\x23\x03\xcc\x76\xf7\x17\x97\x5b\x0d\xcb\x84\x9f\x5c\x51\x8b\x75\xc9\xc5\xa3\xfa\x95\x8f\xab\xae\x57\xd4\xec\xc3\xaf\x6e\xb2\x75\xdb\xd6\x93\xc6\x16\xa1\x58\x1f\x56\x75\x67\xea\x27\x43\x23\xce\x86\x09\x65\x8f\x6b\x6d\x86\x2b\x0c\x47\x7a\x04\x4b\x33\x3d\x62\xee\xe7\x36\x1e\x90\x15\xce\xc7\xc7\x2c\x49\x4c\x69\x8b\xbf\x3d\xa0\x77\x19\xba\x81\x32\x90\x9a\x1a\x50\x12\xdb\xb8\x97\xb5\x84\x05\x61\x90\xf0\x36\x60\xa3\xb9\x8d\xd9\xca\x23\x24\xb3\x68\xea\x2a\xf3\x22\xce\xa4\x56\xa3\xb9\x40\x11\x9f\xcd\xb4\xd5\x0b\x5b\xa6\x38\x4f\xa4\xcd\x76\x67\xc7\x0a\x47\x6a\xc0\x8a\xef\x2d\x39\x79\xa6\x29\xd3\x66\xa5\x7b\xdd\x43\x3a\x45\xf3\xa7\x56\x85\x9b\xc6\x3e\x14\x05\x38\xc1\x4c\x24\xca\x03\xb5\xe0\x8b\x67\xc9\x6c\x58\x83\x65\x20\xa7\x5c\xa8\x61\x5c\x2b\x73\x96\x32\x4d\x55\x10\x32\x72\x9c\x40\xd2\x30\x7f\xd2\xca\x3f\x79\xce\x9d\xaf\x6d\x53\xd0\x5c\xdd\x36\x83\x6e\xc7\xa8\x75\x66\xab\xb2\x60\x03\xad\x0c\x30\x49\x54\xce\x09\x5f\x36\xc7\x3b\x78\xeb\x4c\xbf\xd4\x4a\xbc\xea\xb9\x73\x4a\x10\x8f\x0b\x0c\x3d\x73\xaf\xdb\x8a\x90\x36\x9a\x5a\xe8\x84\xdd\x55\x8e\xb6\x2d\xe5\xa1\xec\xc9\xd5\x73\x01\x97\xbd\x24\xa0\x6b\x62\x31\xa2\x4a\x60\x51\x02\x40\xc9\xed\x41\x49\xb0\x80\xfc\xac\x01\x33\x70\x78\xc6\x52\x88\x51\x4c\x25\x14\x88\xc0\x5d\xea\x05\xc3\x50\x37\x23\xb0\x72\xb4\x8b\x3a\x47\x93\x7f\x0e\x89\x65\x05\x6b\x38\x61\xa7\x3f\x94\xc3\x7e\x69\xfb\x8c\x47\x59\xa1\xc8\x45\xa0\xe1\x5a\xa8\x20\x44\x99\xa4\x93\xa9\x42\x94\x59\xbf\x23\x4e\x26\x5c\x50\x35\x9d\xc9\x23\x34\xca\xa4\xb6\x42\x4d\xb2\x9a\xc9\x47\x21\x2a\xea\x24\x85\x36\x2d\x22\x8e\x2b\x03\x2e\x9a\x28\x6b\xb0\x46\xb7\x43\xd9\xaf\xdc\x15\x4b\x18\xa7\x97\xc3\x27\x56\xc7\xa0\x44\xe6\xa8\x9b\xc8\xe4\x01\x72\x07\x58\xf5\x7b\x46\xa4\x6a\x3a\x07\x00\x76\xb9\xb5\x28\xc5\x4b\x74\xd2\x42\xa6\x18\x54\x10\x97\xbb\x0d\x9a\x57\x19\x70\xd3\x80\x52\xe5\x41\xa7\x59\xaa\x6a\x13\xb7\x16\x43\x45\xb7\x1e\x94\x51\x37\x62\x43\x31\x16\x70\x33\x00\xd0\x0d\xd8\x1d\x21\xcd\xf8\x74\x0b\x7b\xff\x1b\x1c\x25\x58\x82\x2d\xf4\x68\x67\xf9\x4d\x82\xd8\xe7\xfd\xbb\xb3\xdb\x8b\x1b\x03\x39\x71\x7d\xfb\xb9\x77\x3f\xac\x89\x6b\xd7\x3c\xf5\xb9\x77\xfb\xf3\xf9\xf2\xc7\x7e\xba\x2f\x57\x65\xd7\x3c\x72\x7b\xd7\x5e\xcc\xd1\x61\x8a\x35\x45\x61\xb5\xdf\x39\x45\xe9\x5c\x4d\x39\xcb\x53\x14\xe2\x92\x6c\x3a\x46\xa6\x22\x58\x41\x0a\x91\x90\xaa\x26\x70\x78\x0f\x79\x39\xcb\x35\xcc\xf2\x66\x19\x74\xb9\xad\xaa\x46\x2b\x9c\xc8\x4f\x09\x1f\x41\xdc\xda\xea\x3e\x16\x98\xae\x25\x03\x7d\xc3\x7c\x9f\x73\x2a\xd3\x04\xcf\x17\xbe\xb0\xec\xca\xb9\xc2\x33\x02\x19\xc7\x05\x2c\x9e\x2b\x16\xd1\x3b\x03\x05\x4c\xf9\xbd\x4e\xc7\x50\xc9\xa4\x28\x56\x04\x8d\x88\x7a\x86\xba\x39\xf7\xd7\xdc\x97\xea\x12\x46\xe4\xc9\x80\x81\x3b\x67\xa0\x89\x1c\x67\x90\xed\x37\x78\x77\x84\x06\xef\x62\xf2\x44\x12\x9e\xea\x9d\xd7\x7f\x68\xb8\x64\xfa\x33\x4c\x93\x2b\xae\x72\xcf\xdc\x26\xfb\x29\x48\x44\x53\xd0\xcc\x87\x44\x8f\xfb\x72\x8a\x47\x89\x93\x9d\x38\x83\x39\x20\x1c\xc7\xda\xc8\x06\x51\xe6\xa6\x57\xa4\x00\x31\x6f\xe9\xa5\x66\x97\xab\xa8\x14\xb9\xfb\xdb\x7c\xd1\x1f\xb3\xec\xf6\xac\xdd\x01\xf6\xb4\xc3\x90\xec\xa6\x17\xb9\xb6\x4a\x7e\x26\x73\x28\xc1\xb8\xc1\x54\xac\x19\x9a\xad\xcb\x79\xdd\x49\x90\xb6\x5f\xf3\xa1\x3d\x0a\xd7\xd6\xd3\x61\xb3\xc0\x6d\x9e\xab\xf7\x52\x56\xaa\xcb\xe5\xca\x3f\xdc\xd1\x6c\x7d\x68\x32\x52\x1b\x53\x18\x50\xd5\xf0\x4a\x49\xb4\x82\xc5\x95\x4f\xf0\x4e\xbf\xb7\xd4\x52\xc9\xd5\x35\x97\x7f\x57\xec\x82\x2d\x8e\xaf\xd6\xe3\x93\xa5\x33\x8e\x12\x2e\xcb\x58\x39\x9d\x27\x7d\x66\x5f\x6d\x9b\x77\xdf\x67\x5f\xad\x17\xae\x94\xd0\x50\x43\xf8\x0a\xc6\xa5\xb9\x67\x94\x8d\x90\xd9\xa7\x8f\x10\x85\x6c\x4b\x30\xc8\x92\x02\x39\x80\xc5\xa8\x08\x83\x0c\x58\x91\xb3\x22\xd1\x33\x49\x20\xcd\x2d\xe2\xb3\x14\x5c\xfc\x76\xba\x76\x24\x12\x9b\x8c\xe1\x23\xc4\x33\xa5\x07\x33\x35\x39\xce\x89\x6b\x0b\x7e\x8a\xb0\x87\x89\xbd\xd9\xe4\xf7\x1c\x2f\xdb\xf0\xba\xb9\x4b\x29\x43\x9f\x88\x82\x51\xa0\xcd\x82\xbf\x40\xb0\x13\xaa\x29\x94\xf5\xb4\xdf\xe0\x44\xd9\x95\xac\xb0\xf3\x05\x70\xca\x8f\x09\x1f\xb5\x3b\x09\x60\x70\xf4\x70\x7b\xe1\x3c\x92\x45\xfe\x94\x07\xca\x5c\x8a\x28\xf6\x6f\x6e\xfb\x67\xbd\xfb\xfe\xf9\x09\x7a\x90\x44\x93\x27\x5f\x2e\xd4\x57\xe7\x26\x89\x99\xb9\x45\x62\x61\x52\x11\xdc\xe4\x08\x21\x42\x94\xaa\xa0\x97\x08\x8e\x32\x4c\x4b\x3b\x63\x03\x48\x0a\xb5\x8e\x3a\x00\x16\xaa\xae\xd3\x66\xe6\x2d\x3b\x81\x90\x27\x35\x3c\x9c\x2c\x35\x33\xdf\xd9\x62\x66\xde\x32\xf6\x29\x67\xf4\xed\x7a\x31\x70\xb4\xd4\x94\x50\x81\x3a\x2d\xcb\x30\xd5\xb0\xfb\x9a\xbc\x14\xf7\xcf\x38\x6d\x2f\x3f\xc5\xcf\x25\xa6\x35\xaa\xb0\x17\xbb\xdf\xf5\x39\x70\x62\x6d\x68\x44\xe1\xe6\x0b\x2c\x02\x5a\x46\xb6\xe6\x72\xd3\x54\x7c\x48\xe7\x24\xf3\x17\x56\x99\x84\xcd\x63\x95\x08\xce\x0e\xfc\x85\x32\x54\xba\x12\x8f\xd0\x98\x7e\xb5\x83\x16\xf9\xed\xee\x51\x2f\xe1\xa1\x21\x9f\x72\x8a\x17\xcf\xd4\x0a\x6a\xc3\x0d\xbc\xdf\xaa\x44\x72\xa9\x55\xa2\x48\xab\x4b\x82\x44\x5c\xe8\x9b\x02\x3e\x5b\x44\x21\x96\xa9\x0c\x0a\x0b\x4d\x94\xc5\xa8\x4c\xdb\xe9\x2f\x5a\xab\xc4\x58\x91\x63\xad\x7a\x2d\x29\x80\xb6\x35\x32\x50\x4d\x83\x95\x07\x07\x56\xdc\x3c\x23\x32\xc1\xcc\xa5\x66\x37\x4c\xd7\x5d\x79\x1b\x88\x2a\x6d\x02\x61\x28\x0f\x03\xfd\x0a\x4a\x7f\x4a\xf3\x90\x29\xd0\xb3\x75\x1e\x36\xfb\x65\x1f\xc8\xf6\x8c\xf3\x64\x9c\x86\xc9\x66\x69\xbc\x4f\x93\x4d\xb0\x54\xc8\xce\xa9\xc9\x15\xe1\x99\x88\xbb\x75\xc2\x96\x6c\xfb\xae\xc6\x9b\x66\xa1\xb2\x15\x4b\x20\x32\x22\x1d\x6e\x8a\x41\x89\xd1\x36\x8d\x53\x84\xcf\x60\x87\xf2\xb3\x7d\x6b\xb4\x2c\x77\x4b\xf8\xc2\x04\x92\xf4\x17\x87\x3e\x41\x3d\xb6\x80\x97\xe5\xf2\xb2\x4a\xf4\x32\x77\x12\x4e\x9e\xf1\x5c\xa2\x54\x18\x68\x19\x93\xb9\xef\x16\x0f\x16\x58\xf9\xa5\x3c\x15\x42\xb9\xd2\x09\x04\xbe\x98\xe5\x49\x73\x4e\xef\x1d\xee\x20\x94\x57\xc9\x2a\xcf\x15\xf2\x62\xb8\xc2\x57\xd1\x41\xd4\x29\x32\x8c\xa6\x98\x4d\xc8\xd0\x39\x59\xd7\xb1\x96\xf4\x38\x67\x30\xcc\xb9\x1d\xa5\xfe\x72\xba\x31\x06\x93\x6d\x6b\x63\x1e\xcd\x1d\x88\xfa\x10\x48\x85\x27\x04\x99\x19\x75\x72\x4b\x97\x32\xc6\x2c\xd8\x30\xd8\x09\x76\xd4\x7e\x39\x8b\xbe\x49\x79\x87\xd4\xa7\x4b\x3c\x22\xc9\xeb\x64\x4e\xc0\xa7\xad\x73\x1e\xa2\x75\xa6\x1a\x80\xa0\x67\xf0\xe7\x57\x44\x86\xf5\xde\x8b\xac\xae\x36\xa0\x6d\x9d\x70\xe4\xec\x49\xdb\x64\xa1\xae\x05\xca\x3a\x4b\x6d\x6a\x8c\xe2\x5f\x7b\x5e\x03\x91\x3a\x07\x9b\x7f\xfd\x55\x7d\xca\xeb\x4d\xc4\xeb\x63\xd2\x30\x8f\x8d\x1b\x99\x2c\x5d\xca\xda\x20\x03\x1d\x7b\x16\x5e\x8c\x11\xe3\x8c\x20\x2a\x8b\x87\x55\xb9\x1c\x2a\x87\xe8\xd1\x2a\xbe\x71\xbe\xe4\xcd\xc7\xf2\x9e\x52\xbb\xf6\xb4\x14\xe0\x09\xb9\x6f\xc0\xd5\x77\x33\xa2\x0d\x55\x2c\xe6\x00\xf1\x69\xe4\x70\x59\xa7\x5b\x3a\xcf\xad\x2b\xdc\xf7\x0e\xc1\xd5\xcb\xd4\x55\x1c\x81\x1a\x59\x99\x1c\x32\x38\xa8\xf6\x21\xfb\x92\x85\xa9\x19\xb0\xdc\xb3\x01\x8c\x48\x25\x9a\xe1\x14\x62\x7a\x8c\xab\xe2\x2d\x03\xbb\xa4\xf2\x2d\x3c\x72\x8a\xb8\x34\xad\xc1\x96\x53\x80\x8b\xc9\x26\xa9\x1a\xdd\xdb\x3f\x74\x77\x2c\xb9\xcb\xbf\xd8\xd5\x32\xb8\xa6\x03\x06\x9e\xd0\x27\xc2\xdc\x89\x3a\x72\x27\x52\x93\xc4\x2d\x39\x99\x1f\x63\x48\x72\x26\xb1\x1f\x77\x69\x97\x87\xc6\x1d\xb4\x0f\xde\xd0\xee\x24\xbb\xaf\x4d\xe2\x31\x10\x6d\x25\x6c\x7d\x97\x96\xee\x9f\x11\x8b\x1a\x6c\xea\xd0\xb1\x44\x7f\x60\x5c\xfd\xc1\xc3\x55\x76\xae\x13\x78\xd5\x39\xc0\x8e\x16\xfa\xe0\x80\xc8\xb0\x6c\x8b\xb0\x87\xef\xb5\x94\xf2\x9b\x66\x26\x14\x69\xf7\x3b\xd5\x85\xfb\x8b\x35\x78\x4d\x8d\xc4\x42\xbe\x00\xaa\x5e\x4a\x55\x77\xab\xe9\x55\x58\x9c\xf4\x92\x9b\x55\x2e\x4b\x10\xc8\xf7\xa2\x53\x62\xc0\x02\x1e\xc1\x26\xdc\x36\xeb\x9c\xb7\xb5\x04\x82\xb9\xde\x2b\xb2\x4e\x95\x69\x93\x55\x20\xca\x89\x73\xb6\x09\x47\x03\xc6\xf0\xc9\x80\x7d\xe4\xc2\x2a\x00\xd2\x76\x39\x18\xe1\xe8\xf1\x98\xb0\x18\xe1\x4c\x4d\x0d\xd6\xaf\x8d\x6a\xcc\x2d\x37\x68\x3d\x07\xd8\x26\x07\xf2\xa0\x32\xc2\x22\x76\xfd\x36\x9e\xb8\x9b\xc5\x80\x79\x83\x40\x1f\x05\xe8\x9e\x05\x6d\x8d\x9b\x0c\x5d\x22\xb5\x75\xd7\x44\x8b\xba\xce\xb6\x0b\x7d\x6d\xdb\xcf\x59\xa9\x53\x2f\x74\x80\x80\xf4\x2a\x3e\x5e\xa4\xce\x85\xf3\x75\x3a\xeb\x52\xf3\xf3\x62\x0c\xe4\xc8\xda\x33\xc6\x21\x66\x57\xa0\xf5\xac\x1f\x9c\xac\x2d\x61\x16\x8f\x33\x01\xc9\xc2\x75\x63\x7e\x17\x4d\x69\x52\x44\x4e\xbe\x3f\xca\xa7\xa9\x87\x4c\xc8\x13\x49\x0c\x62\x7e\x24\xa0\x2e\xc0\xf8\x2c\x7f\x40\xff\xdb\x74\x7b\x45\x7f\x1a\xb0\x4f\x20\x86\x93\x64\x0e\x78\x9e\xf9\xc8\x58\x55\x86\x79\xac\x9d\x80\xb2\x85\x48\xa8\x3c\x11\xb3\xd7\x53\xfc\x44\x06\xcc\x0d\xf3\xbf\xd1\x23\xfa\x23\xfa\x53\x93\x71\xe9\xd2\xfb\x77\xec\x65\xf9\xe8\x25\xcf\x7b\xb7\x9c\x15\x94\x56\xde\x38\x27\x4c\xc9\x05\x5a\x83\xeb\x91\xc3\x72\x53\xf6\xc4\xa3\x85\x1a\x12\xff\xd4\x62\x41\x98\x1a\x32\x1e\x93\x21\xa9\x09\xa8\xb6\x08\x09\xad\x04\x5c\xf1\x98\x2c\x0d\x87\xe6\xc2\xf4\x0b\x38\x8e\x64\x36\xca\xb7\x03\xe0\x05\xf2\x5a\xf2\xdc\xf7\x51\xe6\xb4\xfa\x99\xe7\xd8\xb7\xeb\xcc\x7b\xdd\x50\x6e\xa1\x36\xe2\x02\x7c\xb7\x3e\x9c\x98\x60\xe5\xb4\xc9\xea\x71\xac\x86\x21\xf4\xc3\x7a\xe5\xf6\xb2\xf2\x50\x7d\xa1\xf3\x8a\xa0\x13\xaa\xad\x87\xee\xe1\x62\x90\x84\xeb\xc4\x52\x0c\xc4\x69\xa7\x60\x4a\x41\x0a\x07\xf3\x72\x9c\xf3\x5f\x11\x02\x1d\xf1\xac\x6a\x3e\x58\x02\x50\xe9\x27\x1b\x58\x4b\x61\xae\xe5\xf0\xc4\xd4\x1f\x92\x29\x35\x15\xff\xbd\xb3\x4b\xa4\x4f\x07\x9f\x19\x58\x2c\x20\x5a\xa6\xa6\x5c\xd0\x7f\xb6\xf1\x36\x16\x8a\x8e\x71\xa4\x86\x5b\xe9\x22\xd3\xcc\x4c\x3d\xfb\x9d\x8b\xe6\x4e\x75\x0b\x08\x07\xf8\x89\x78\x09\x88\x90\x5e\x68\x47\x91\x79\x20\xb7\x2a\x6f\xb9\x40\x8c\x3f\x17\xb0\x58\xee\x7d\x40\x82\xf6\x0a\x37\xb0\x36\xb9\x52\xc8\x20\x96\x14\xf8\x13\x40\xaa\xde\x2b\x53\x94\x09\x00\xe7\x06\x5e\x4a\xb3\xe7\x14\xb3\x38\x71\x57\x08\xe2\x26\xa3\x67\xfe\x8c\xe7\x2b\xc5\xd4\xfd\xbc\xca\xa2\x4a\xcf\x6c\x7f\xd9\x08\x02\x19\x60\x34\x35\x55\x32\x35\xeb\x0c\x61\x34\xca\x00\x58\x57\xd3\x64\x9c\x25\xa6\x1b\x47\xc4\x45\x7c\x32\x60\x36\xa1\xda\xfb\x9a\x56\x01\x9d\xd5\x84\x55\x3e\x20\xb5\xf8\xa3\xb6\xdf\x87\x71\xcb\xb5\xea\xf5\x7f\xcf\x48\xb6\xa5\xb2\xca\x57\x4d\x44\xbf\xc7\x13\x59\x64\x96\x1b\xda\xe8\x2b\xaf\xa0\xef\xef\x7a\xa5\xd2\x2b\x44\x76\xee\xe2\x1c\xd7\xcb\xf8\x59\x4c\x13\xdb\x95\xdc\x74\xb7\xa6\x9f\xc1\x16\xfc\x74\x2f\x91\xa4\xb3\xa8\x7a\xd6\x48\x75\xcb\x7e\x4f\x79\x59\x2e\x7a\x19\xe7\x97\x6b\x0c\x51\x51\xea\x76\xe8\x07\x5b\xe3\xee\x58\xb4\x55\x5a\x53\xdd\x0b\xaf\x58\x7e\x5b\xd4\x54\xc8\x2b\x0e\xb5\x34\xcf\x82\x02\xec\xdf\xbc\x78\x38\xef\xd7\xec\x6e\x61\x5f\xc6\x68\xe5\xcf\x58\x0b\x90\xac\xe3\x48\x38\xaf\xbf\x3a\x57\xf0\xeb\xd8\x81\xca\x9f\x5e\x4c\xc6\x68\x3a\x11\x46\x24\xed\xeb\x91\x58\xc4\xfc\x59\x7a\x18\xf2\xf6\x2e\xaf\xe3\x15\xce\x35\xc6\x97\x3b\x19\x39\x3b\x0e\x23\x1c\x4d\x1b\x17\x35\xe2\x3c\x21\x98\x35\x19\x05\xb5\x3f\x57\x8f\x88\x41\xac\x05\xd1\x9d\x24\x00\xdb\xec\x48\x60\x5b\x7d\x16\x56\x11\x8b\x01\x6e\xdf\xc8\x70\x93\xf0\xe9\x26\xaa\x08\x73\x0e\x35\xca\x26\x09\xa9\xd2\xca\xf6\x45\x38\xb2\x1f\x49\xa2\x2c\xf1\x7a\x7d\xa6\x44\xe8\x59\x6b\x12\x3f\x11\xa6\x4d\x31\x3b\x0f\x17\xa1\x7a\x76\x55\xee\x79\x87\xaf\xa3\xfc\xd3\x2e\x48\x0a\xa5\xa4\xf1\x80\xc1\xc1\xe5\xe5\xc3\xaa\x79\x55\x6a\xeb\xcd\x77\xf7\xad\x7d\x3a\x3d\x25\x62\xe5\xe3\x79\x57\xf6\xfd\xaf\x7c\x26\xcd\xb7\x87\x90\x38\xb2\x71\xbc\xd4\x8b\xa9\x15\xf8\x1b\x66\x63\x1d\xc6\xda\x0b\x45\x06\x20\x15\xa7\x9c\x4b\xec\x65\xe2\x34\x61\x7c\xed\xf4\x2e\x29\x7a\x9a\xb8\xdb\xa0\xe3\x54\x5a\xf3\x0f\x3a\x66\x13\x80\xd3\xb7\xed\xdc\x5e\x5a\xad\xbe\x1c\x87\xcf\x8b\xb6\x8a\xdc\x55\xdb\xb5\x57\x09\x0c\x90\x13\x00\x14\xf0\xc5\x38\x2e\xa8\x34\xca\xbd\xeb\x5d\x32\x4b\xd5\xdc\xb6\xba\x83\x7b\xb1\xa4\xef\x03\x8c\x5f\x5d\xcc\xbf\x7a\x47\xc6\xa5\xa8\x7f\xdd\xc7\xe0\x43\xd6\x5b\x53\x3b\xa4\x23\xb4\x0f\x0b\x53\x81\xe1\x68\x4a\xf1\x31\x5d\x83\x87\x38\x69\x74\x11\x6e\x41\x68\x82\x71\x54\x40\x6f\x58\x44\x5f\x25\x32\xa2\x65\x17\x4e\x92\xca\xba\x30\xd4\xb8\xab\xbc\x73\xe0\xa8\x68\x6f\xdc\x3d\x03\x21\xc1\x23\xb2\x52\xce\xc1\xa5\x79\xa1\x95\x8b\xe0\x11\x48\xd7\x4f\xd3\x64\xde\xad\x4c\xc0\xb7\x7e\x6b\x91\xef\x96\x4d\xcc\xc7\xcb\x6b\xbd\x9b\xca\x98\x73\xeb\x4d\x51\x92\x28\x13\x54\xcd\x87\xd6\x97\xda\x5d\x68\xdd\xd9\x37\xcf\xec\x8b\x5d\x1c\x15\xa7\xc8\x7d\xcf\xf9\x6e\xe1\x9e\x12\xd4\xb4\x45\xb2\x4b\xe8\xb2\xdd\x38\x53\xd3\x5a\x44\xac\x36\xc2\x3a\x48\xae\x6e\x53\xd5\x9f\x58\x77\x7a\xb6\xdd\xca\x90\x8f\x1d\xd8\x55\x77\xc2\x56\xfb\xd0\xac\xe0\x84\x76\x98\xda\xa9\xa0\x5c\xd8\x76\x2f\x5d\x32\x15\x67\xf8\xeb\x30\xc5\x02\x27\x09\x49\xa8\x9c\xad\xef\x32\xff\xcb\x9f\x5b\x67\x7b\x66\xda\x12\x99\xc9\xce\xf0\x57\x3a\xcb\x66\x88\x65\xb3\x91\xd5\x72\xb1\x7c\xf4\x11\x4d\x1d\xfe\x82\x01\xe6\x72\x13\x2c\xa1\x40\x08\x0f\xa3\x76\xc0\x3c\xb4\x72\xeb\xaa\xc0\xd1\x94\x92\x27\xc0\x52\x15\x8c\x48\x79\x82\xae\xb8\x22\xa7\xe8\x33\x4e\xef\x41\x51\x33\x7d\x42\x27\x26\xe8\x80\x25\xd2\x5a\x6b\xc6\xa8\x3a\x1a\x30\x0b\x71\xee\xa8\xf2\x21\xe2\xcc\xc0\xdc\x46\x40\xd8\x7c\x08\xf0\xa2\x3b\xbc\x57\xe5\xaa\x55\xa9\x6c\x20\xb6\xc0\xcf\x43\x2f\x25\x79\x68\x4a\x3e\x56\xe0\xe3\x5b\xfc\x6c\x92\xf0\xcf\xb1\xc2\xa6\x05\x70\x9b\xe6\x6e\xb3\xdc\x6c\x5b\x28\x83\xee\xec\xb2\x81\xb8\x85\x18\xc9\x1b\xda\x99\x94\xe3\xef\xe8\x09\x39\x41\x3f\x26\x7c\x24\x8f\x0a\x57\x95\xf9\x51\x12\x25\x8f\x4c\xdc\x0f\xfe\xdb\xd4\xf7\x7d\xef\xa8\x5f\xc8\x7d\xe8\xe5\x38\xa6\x5f\x0d\xb2\x89\xfc\xcb\xe9\x87\x0f\xb3\xf9\xf1\x28\x8b\x1e\x89\xd2\xff\x02\x9d\xa2\x96\x42\x0e\x16\x0c\xd7\x81\x8c\x2d\xa3\xce\x22\x40\x59\x27\x8e\xb4\xb5\x52\x92\x00\x18\xbe\xbe\xd2\xf3\x6e\xb9\x0e\xcf\x8a\xb3\xfa\x56\xa0\x76\xc9\x22\x6b\x3a\x5e\x25\x14\xed\x97\xb1\x56\x4c\x37\x60\x1f\xbc\x7b\x9c\xe0\x49\xc5\x64\x59\xc1\x48\xb9\x9e\x51\xcb\x45\x7a\xed\x90\x44\xa3\x4f\x59\x39\x75\xf0\xbd\x8b\xf2\x42\xb4\xd6\x46\xb1\x4e\x06\xac\x27\xd1\x33\x31\x4d\x7e\xa1\xd0\x14\x82\x3e\x19\x95\xd3\xbc\xcc\x14\xdc\xd0\x30\xa8\xc1\x38\x36\x50\x18\xd6\x70\x74\x96\x95\x0b\x8b\x59\x0b\x14\x27\x92\x1c\xe9\x81\xc1\xa5\xea\xb2\x43\xd1\xb3\xc0\x69\x4a\xc4\x80\x59\xbc\x5a\x40\x65\xe7\xdc\x66\xfe\x34\x95\x08\x04\x8b\xf2\x65\x2d\x4a\x8f\xf6\xa4\x5c\x85\xba\xec\x7c\x43\xd1\x6a\x1b\x85\xeb\xea\x30\x1d\xf9\xb4\x2e\xda\x35\x7d\xff\xf5\xdd\xc6\x1d\xe7\xbc\xcc\x3a\xef\x55\x6a\x2f\xa0\x87\xf8\x0c\x0c\x48\x59\xb4\x4a\x75\xbe\xbe\xdc\x7c\x2f\xa9\x39\x00\x77\x0e\x2f\xc7\x9c\x48\xcf\x89\x8f\x72\x5f\x5c\x42\xc7\x44\x6b\x1f\x03\xa6\xd9\xd8\x0f\x38\x18\xd4\x74\x07\xa2\xae\x3f\x1a\x09\x2e\xa5\x2d\xa7\x30\xe3\xb4\x17\xc5\x6d\xd0\xa0\xd1\x40\xbf\x5f\x5c\x5f\x0d\x17\x5b\x35\x7a\xbf\xb9\xa6\x8d\xf6\xc7\x5a\xe4\x84\xc6\xa1\x96\xb6\x68\x2c\x68\xb1\x42\x93\xc6\x0f\x67\x97\x17\x79\x67\xb2\xca\xa7\x17\xbb\x34\xfa\x70\xf9\xcd\x7d\x1a\x17\x57\xec\x75\x6c\xac\x0c\xd1\xd2\xb3\x71\xf9\x66\x95\x93\xb8\x37\xc1\x42\xac\x6c\xfd\x52\xf9\x50\xe6\x99\x65\xb5\x06\x5b\xda\xa6\x86\x6b\x25\x02\x85\x71\xd7\x89\x0b\xa0\x78\xe9\xa7\xa4\xc2\xb3\xd4\xaf\xa3\x75\x60\xb0\x76\x99\xe6\xa8\x35\x5d\x82\x2f\x0a\x52\x1f\x61\x93\x24\x54\x9d\xdc\xc2\x56\xac\x16\xf1\xba\xb7\xd8\xf7\xdb\xc8\x4d\x7f\xb9\xc2\xf4\x64\x5e\x24\x43\x4a\xab\xbb\xb9\xbe\xea\x0d\x7e\xff\x11\xc9\x71\xfe\x1b\x37\x74\xd3\xca\xd3\x1c\x0f\x4c\x10\x2c\x6d\xf8\x1b\x0a\x34\x2b\xc5\x5b\x2b\xb8\x87\xf3\x39\x9b\x12\xef\xe3\xbc\xb3\x86\x77\xd5\xd8\x66\x71\x91\x3b\x88\x54\x08\xf2\x44\x04\xf0\x8e\x4d\xa5\x62\xe5\xa3\x8a\x13\x41\x70\x3c\xf7\x28\x92\xe7\x71\x98\x2f\x83\x7b\x4c\xd2\x99\x36\xe0\xc1\x34\x61\xfc\x98\xa7\xce\x66\x29\x3d\x05\x6d\x51\xe8\x58\xdf\x58\x5e\x16\x88\x7e\x83\x1d\x93\xaf\x54\x2a\xad\x57\xd4\xa4\xc0\xba\x41\x40\xe3\x81\x66\x69\x53\x62\x6f\xb8\xc1\xbb\xde\x8f\xd7\xb7\xf7\xfd\xf3\xc1\xbb\xa2\xe4\xc2\xd5\x14\xe6\x30\x5f\xae\x6b\x03\x67\x03\x96\xe7\x29\xe7\xa8\xd6\xb0\x97\x08\xc7\x71\x91\x1f\x6d\x8d\x48\xa3\xb3\xb5\x4a\x64\xef\x54\x2c\xcd\x50\x6e\x19\xe6\x01\x0a\xcb\xf6\xf5\x64\xb5\x84\xce\x4a\x27\xc7\x94\xc7\xb5\xd4\x31\x6d\xe9\xb2\xf1\x01\x79\x95\xb1\xb5\x89\x72\x88\x91\x8c\x3c\x3b\x5b\x09\x6e\xe7\x0f\xd8\x5c\xc2\xab\x49\x3b\xb7\x21\x6b\x6c\xea\x47\xfa\x95\xc4\xb7\x0d\x5a\xd5\x56\xca\x94\x3a\x25\x58\xd6\xee\x42\xc6\xe8\x2a\x16\x7f\xbe\x94\x07\xfd\x5e\x77\xb1\x74\x5d\xe0\xec\x15\x98\xb9\x00\x98\xab\x10\x46\x11\x11\x0a\x53\x86\xc6\x70\xb0\x59\x34\x47\x80\xc2\x42\x20\x86\xfd\x67\x34\xa3\x0c\xe0\x20\xda\x48\xfb\x50\x5e\xc7\x0a\x4a\xeb\xe7\x8b\xab\x87\xfb\x92\xaa\xfa\xd3\xf5\x43\xb9\x53\x7f\xef\xd7\x56\x5d\xb5\x32\x42\x5b\xb2\x90\xb7\xc4\xa2\xb4\xd4\x42\x07\xe7\x94\xa9\x5d\x68\x32\x57\xe4\xe1\xf6\x72\x23\xfd\xae\x3e\x58\xd6\x08\xfc\xee\x6b\x57\xf5\x30\x17\x5d\x5e\x8d\x49\xb4\x0c\x9a\xb6\x3b\x1f\x99\x2c\x28\x4d\x07\xeb\x4d\xb4\xb0\x75\x58\xa2\x14\x0b\x1b\x87\x8a\x4d\x02\x54\xb9\xdd\x9b\xb1\xbc\xda\x60\x41\x3e\x11\xf5\x8b\xbe\xfa\x38\xdb\x46\x71\x89\x55\x65\x21\x3e\x4a\x86\x4f\x66\xe0\x15\x4e\x9a\x9d\x4a\x4b\xfd\x92\x53\x96\xe1\x0b\xc8\x7e\xc1\x07\xd3\x38\x31\x6d\xff\x7b\x7a\x38\xa0\x88\x4b\xd3\xd4\x26\x29\x67\x9a\x23\x0d\x46\xae\x03\xd6\xf5\x86\xe3\x63\xf3\x72\x47\x98\x41\xaf\x58\x40\x8f\x55\x90\x12\xf5\x6e\x2e\x6a\x68\x7d\x59\x0d\x21\xbd\xad\x1e\x45\x49\x1e\xcd\xda\x36\xf2\x95\x57\x73\xba\x17\x50\x57\x76\xa5\x9b\x61\x5b\x99\xa0\xff\x4d\x39\x93\x60\x1f\x20\x98\xeb\x4c\x86\x52\x2d\xf9\x12\xb4\xe5\xd5\xca\x2b\x0b\x32\xac\x88\x64\xe5\x4f\xc8\x56\xd7\xf8\xe8\x4d\x8b\xa9\xdb\x47\x3e\x9a\x13\x37\x5d\x90\x6d\x6e\xc1\xd6\x10\xae\x8a\xd5\x74\x81\xb8\xfa\xc5\x70\x74\x8e\x80\x02\x98\x2e\xae\xcb\xa6\x4b\xb9\xb6\x80\x04\xfe\x72\x7d\x6e\x5b\x0d\x15\xab\x98\x9f\x73\x7f\x5b\x80\x71\x9c\x62\xeb\x77\x00\x23\xca\xb5\xbf\xa8\xeb\x96\x78\x32\x60\x5e\xc2\x8a\x34\x66\x8f\x3e\x23\xae\xe3\x0c\xb4\x31\x66\x80\x56\x0e\xb5\x4f\xb9\xf2\x53\xda\x81\x2a\xee\x81\x9a\x96\x7b\xc6\x2c\x7c\xc7\x9e\x4e\x39\xc5\xae\xba\xd4\x79\x50\x6c\x1e\xa0\xef\x5f\x82\xf1\xbc\x2e\x11\xf6\xc3\xe0\x8e\x06\xa7\x05\xf6\x7a\x10\x7a\x88\x04\x31\x27\x92\xbd\x57\x79\xfd\x2e\x4d\xe6\x2e\xa5\xba\x12\x1e\xd0\x5a\x1d\xa6\x76\xe4\xf6\x03\xbe\x05\xc8\xad\x55\x0d\x07\xef\x58\x2d\x75\x53\xb9\x18\x2f\x70\x82\x9f\x8b\x04\x1f\x6d\xf2\xaa\x7f\x4d\x49\xb4\x0e\x2e\xd0\x0d\x16\x78\x46\x14\x11\x6d\xe9\x48\xe5\x0e\xe1\xa0\xe2\xb8\x1d\xb4\xdf\x35\xbb\x68\xda\xa7\x54\xfb\xec\xe4\xd6\xed\xe5\x32\x9c\x9f\x7c\x15\x2b\x41\x9a\xe9\x65\xfc\x62\x3d\xff\x2b\xae\xc2\x7e\xa7\x58\x86\xcd\xb6\xf2\x60\x9d\x36\x5d\xd3\xcb\xe0\xdb\xdc\x2f\x20\xc5\x94\xd2\x85\xf6\x04\xd8\x66\xf9\x2c\x9b\x10\x6d\x96\xc9\xd2\xad\xc8\x6e\x57\xe1\xe0\x2a\x93\x2b\x87\xaa\x54\x3b\x01\x5c\x02\x26\x95\x01\x77\xa9\x47\xa5\x01\xa5\xa5\x2e\x43\xd2\x0b\xfb\x59\xcc\xc2\xc2\xa1\x6b\x35\xab\x6a\xc7\xb0\x0a\xb9\x96\xc8\xb8\x6d\x21\x76\x04\x8d\x66\xdb\x1a\xcd\x32\x56\x2e\x65\xd7\x6a\xee\x24\xa2\x02\x1e\x64\x3b\x79\x5b\xd4\x87\xf2\x02\xa1\xa4\xcb\x5e\x91\xb6\x1d\x30\x5c\xfd\x94\xe5\xff\x55\x96\xe0\x8e\xa9\x7d\x56\xad\xab\x55\x3d\xf1\x42\x50\x10\x81\x4a\x7c\x6d\xc0\xe6\xd5\xc0\x6c\x4d\x1a\xa4\xf1\xf2\x5f\x5c\x99\x00\x16\xd4\x8c\xcf\x79\x86\x9e\xa9\x9c\x22\xc5\x07\x0c\xf2\x04\xf3\x68\x80\xe2\xc8\x3c\x78\x04\x4f\x01\xb6\x85\xcc\x46\x33\xaa\x10\xf6\x56\x58\x72\x49\x1e\xd9\xf3\xac\x5f\x80\x15\xd7\xc2\x17\xd4\xe1\x2e\x2d\x39\x34\x6b\xf8\xd7\x8a\x41\x36\x45\x28\xf0\x72\x9a\x77\x8b\x51\xe0\x59\x3c\xbe\x85\x59\x7b\xe6\x02\x48\x01\xaa\xf7\x36\x58\x24\x58\x80\xeb\xa5\x52\x55\xee\x16\xeb\xe8\x59\x02\x50\x50\x6c\x44\x27\x84\x82\xe2\xf1\x6d\x40\x14\x34\xf5\x9e\x6b\x2b\x59\x75\xaf\x34\xf8\xbf\x5d\x29\xb4\xe2\x2e\x71\xde\xd7\x94\x6e\x1a\x35\xa5\x7d\x83\xaa\x2b\x0a\x02\xd6\x4f\x2f\x6f\xca\x5e\x86\x33\x1e\x71\x16\xd3\x15\xf2\x85\xa1\xbf\xd8\x28\x1b\xf7\xd8\x7c\x39\xf2\xd1\xcc\x4f\xd4\xb7\xfe\x12\x4f\x13\xa9\xc7\xdc\x5c\x6a\xb2\x16\xe3\xfb\x9c\xee\x95\x84\x96\xc1\x88\x48\xf5\x76\x62\x5c\x41\xdd\x4f\xa4\x92\x79\x4d\x2d\xea\x80\xd5\x6b\x49\xed\x72\x7b\xd3\x32\x92\xad\xc2\xee\x79\x32\xc2\xad\xc2\x7a\xdd\xbe\xe4\x89\x78\xc6\xa0\x27\x16\x64\xa3\xa2\x06\x17\x61\xc8\xa6\x04\x2a\xad\x1c\xad\x53\x6b\x5e\x23\x39\xea\xa7\xbe\x50\xe4\xb1\xf4\xec\x5a\xc5\x60\x8b\xe6\xe7\xc2\x0d\xd2\xb9\x26\x26\xd7\xe3\xed\x8d\x61\x93\xba\xe3\xdc\xd7\x50\x09\x27\xaf\xd3\xde\x18\xe0\x6c\xb7\x06\xc2\x5b\x45\xa6\xd0\x83\x1f\x41\x08\xda\xce\x1d\x9b\x74\x9c\x1c\x1a\xbe\xb2\x27\xa5\x15\x9b\x94\xca\x9d\xac\x7a\xd5\x9e\xd4\x5e\x4c\x54\xd8\x9c\x64\xea\x7b\x37\xa0\x19\xb5\x4d\xe5\xac\xdc\x16\xb9\x02\x9a\xb1\x98\x08\x46\xb0\x9a\xbe\x5c\x25\xc8\xd9\xa6\x2e\x74\x6f\x7e\xbb\xad\x0a\xb1\x33\xc5\xe5\xe2\x90\x4d\xa6\x5b\x6e\xce\xbf\x74\x9e\xfa\xf1\x2e\xde\x2c\x9b\x20\x91\xb7\xa7\x5e\x30\x6f\x6b\x5c\x9b\x1e\xfe\xd0\x2a\x5c\xba\x51\xb1\x48\xbd\xc9\xb9\x9b\xb2\x99\x1a\xdf\xd4\x42\xc1\x8c\x3e\xed\x7e\x53\xef\x25\x24\x79\x13\xf5\x29\xbb\x2f\x99\x68\x6b\x1f\x9e\x79\x55\x14\xd0\xc3\x5d\x61\xca\xac\xf4\x6a\x2b\x9c\xd0\x7a\xef\x0c\xd7\xd5\x4a\xec\x7d\x15\xce\x9b\x2f\xc2\x09\x25\x19\xa1\x24\xa3\x66\x8f\x42\x49\x06\x42\xfb\x56\x92\xb1\xcc\x04\x6d\x73\xd2\xe6\x71\x43\x68\xf3\x5a\xea\xad\x64\xf6\x77\x89\x1d\xb9\x7e\xd9\x81\xf3\x73\xfa\x39\x5b\xf6\x2f\xf6\x0f\xb5\x69\x5b\x0b\xaf\x55\x57\xeb\xfb\x5c\xd9\xbc\x1a\xba\xc0\x22\x4e\x2c\x04\xa1\x4d\xaa\x2e\xfb\xc8\xda\xdc\xb9\x03\xf6\x13\x7f\x26\x4f\x44\x1c\x21\xac\xd0\x8c\x03\xae\x55\x91\xc3\x03\x07\xa1\x84\xa5\x6f\x72\x35\x30\xba\xc2\x33\x12\x9b\x56\x9b\x5e\xea\xa5\x75\x2a\xdb\x70\x70\x1d\xd2\x2e\x80\xc6\x9a\x6d\x70\xb9\x1d\x03\x66\xd2\x21\x4d\x0a\x1e\xe8\x0a\xd4\x2d\x0c\x18\xe6\x0f\x79\xb0\xfa\x0f\x27\xe8\x5e\xdf\x4f\x54\x96\xe7\xeb\x01\xef\x35\xcd\x6d\xc0\x26\x82\x67\x69\xee\xe7\xe3\x23\xd3\x73\xd9\x64\x68\x2d\x06\xab\x61\x32\x2e\x52\x1d\xe1\x58\xdb\xe2\xed\x8c\xf3\x2a\x99\xb2\x6b\xc1\x2c\xf9\x0c\xa4\x8f\x61\x9e\xfe\x67\xd3\xf1\x4d\x8c\xd9\x03\x97\x69\xeb\x00\xb0\xa3\x00\xf8\x39\x91\xe0\x15\xca\x23\x03\xa5\x5a\xf7\x32\x9e\x42\xed\x3c\xdb\xfc\xb6\x79\x6c\xc5\xc5\x1f\xea\xa1\x1a\x8a\x8f\xdb\xbc\x34\x53\x48\x6b\xef\x89\x9d\x79\x74\x3b\x67\xf8\x36\xc9\x8b\x9b\x4c\xa4\x1c\x34\xb1\x64\xee\xa0\x25\x2c\xc8\x5f\xca\xd3\xcc\xe4\xde\x51\x3f\x15\xab\x96\xb3\xa9\x54\x9f\xb1\x8a\xa6\x5a\x72\x17\xa8\x6c\x5b\xca\x49\x2c\xa4\xf2\x6e\xbd\xbc\x35\x2b\x38\xf3\xbf\xde\x10\xf6\x68\xe3\x1e\x2f\xc7\x30\x4f\xe4\xcc\x35\x89\x99\xfe\x9e\x09\x0d\xda\x4e\xea\x9e\x5f\xd4\xbd\x62\x7f\xd1\x0b\x5d\xc6\x45\xcb\xe6\xdf\x8d\xb7\xca\xad\xde\xb6\x9e\xed\xb8\x01\xcc\xcd\xb9\x05\x15\x2b\x1e\xb4\xad\x81\x1b\x52\x14\x04\x5d\xaf\x52\xc9\xb6\x67\x78\xd2\xea\x48\xee\x71\x9d\xe1\x54\x1b\x11\x8a\xeb\x5b\x52\x4c\x8c\x1e\x6b\x72\x79\x11\x46\x99\xa0\xee\xec\x57\xea\xd6\x9b\xb9\x03\x3c\x94\x1f\xfc\x56\x5e\x11\xf6\xba\x1c\x9a\xa4\x04\x1c\xa9\x0c\xe7\xc9\x93\xc0\x13\xae\xfb\xbe\xa9\xd1\x77\xc1\x7f\xe1\xd4\xbb\x9a\x3d\x5d\xca\xd8\x1b\xec\x32\xae\xc3\x60\xec\x74\xd2\x28\x9b\x78\x00\x8e\xf5\x5e\xe2\x2e\x4d\x37\x6a\xdf\xec\xd6\x38\xa4\xf6\x55\xa7\xfb\xac\xf3\x6e\x0b\xc0\x54\xa7\x94\xf5\x7d\xec\x98\xe0\x55\x02\xd8\x54\x61\xab\xbb\xf9\xc0\x9e\xf6\x43\x00\x7b\x4c\x21\x95\x01\x3b\x5d\xee\x3b\xbf\x6d\x82\x9e\xda\xf7\xff\x59\xfc\x08\xf6\xbb\x6d\xce\x52\xf3\xe0\x80\x71\x61\x1f\x3d\xca\x9f\xd3\x8f\x15\xf8\xc4\x5a\x4b\x5c\x7c\xb3\x40\x1f\x15\x65\x9c\x42\x40\x6b\xb1\x38\x73\x06\x9e\x3a\x6f\x6b\xa1\x27\xff\x98\x8d\x88\x60\x44\xaf\xc9\xe1\x3a\xe4\x32\x78\x86\x19\x9e\x00\x18\xf6\x11\x24\x1d\x82\x96\x5d\x58\x50\xe6\x24\x9a\xfe\xa0\x20\x64\xb5\x8c\xb7\xa5\xcc\x45\x9f\x6c\xf8\xa6\xd1\xc0\x2d\x16\x6f\x91\xb9\x52\x7f\x68\x6f\xed\xf7\xd7\x33\x34\xee\x7b\x77\x3f\x0f\x6f\xfb\x77\xd7\x0f\xb7\x67\x25\x6b\xe3\xec\xf2\xe1\xee\xbe\x7f\x5b\xfb\x5b\x51\x06\xfc\xf7\x87\xfe\x43\xc3\x4f\x6e\x80\xcb\xde\x8f\xfd\x52\xd3\xf9\xbf\x3f\xf4\x2e\x2f\xee\x7f\x1d\x5e\x7f\x1c\xde\xf5\x6f\x7f\xb9\x38\xeb\x0f\xef\x6e\xfa\x67\x17\x1f\x2f\xce\x7a\xfa\x4d\xff\xd9\x9b\xcb\x87\x4f\x17\x57\x43\x97\xd1\xed\xff\xf4\xe5\xfa\xf6\xe7\x8f\x97\xd7\x5f\x86\xde\x27\xaf\xaf\x3e\x5e\x7c\xaa\x5b\x45\xef\xee\xee\xe2\xd3\xd5\xe7\xfe\x55\x7b\x73\xfb\x7a\x6a\x34\xf6\xcd\xf6\xee\x5f\xcf\xd7\xe5\x69\x77\xa3\xb9\x3d\x13\xf4\x9f\x10\x72\xb9\x31\x2c\x7a\x7c\xe4\xfe\x65\x5a\xd1\x1f\x6b\xc9\xed\xc2\x79\x85\xd0\x1b\xb0\x3c\x26\x9c\xeb\x02\x0a\x4f\xa4\xab\xea\x2e\xcd\xf6\x14\xf5\xe0\x90\x81\x9d\x53\xfa\x28\x14\x8d\xe4\x33\x75\x59\x04\xc0\x87\x09\x9d\x51\x48\x28\x40\xc7\xa8\xba\xe1\xe5\x01\xed\x9a\x60\x0a\x36\xdc\x18\xb7\x9d\x06\x59\x2d\x18\x07\x4e\x39\x45\xee\x62\x21\xc6\x0b\x62\x60\x7d\xe7\x0c\xcf\x68\x54\xad\x6e\x01\x64\x5b\x54\xa0\xb8\x54\x47\x2c\x31\x58\x79\xe4\x29\x41\x3f\xff\xad\x98\x14\x04\x5e\xac\xc3\x20\x5b\xe8\x40\x69\x7f\x10\x99\xa1\xea\x32\xf6\x2c\x7d\xc9\x1d\x73\xeb\x11\x87\x73\x6b\x3b\xdd\x43\x94\x2c\x63\x1e\x92\x5b\x29\x64\xa6\x8f\xb7\x59\x51\x85\xc7\x4f\xd1\x1d\xa0\xc8\xc8\xc2\xe3\xa0\x77\x31\x4d\xb2\x09\x65\x88\xce\xd2\x04\x64\x8c\x71\x43\x8c\xc8\x14\x3f\x51\xee\x1a\xae\x98\xbe\x34\x40\x47\xab\x11\xa2\x63\xd4\x78\x50\x4e\x51\x2f\x8e\x65\x59\xc0\x95\x38\xc7\x49\xd1\xe3\xf2\xb4\x7d\xf0\x35\x2d\x58\xad\xd8\xac\xf0\x51\x71\xe4\x80\x62\xdb\xc7\xc9\x59\x14\x87\x65\x95\x61\x03\xad\x45\x53\x70\xe8\x58\x79\xb8\x96\x0e\x73\x8f\xe5\xa3\x13\xcd\xcb\xf4\x18\x87\x58\xb4\xd9\x17\x2d\x74\x51\xd7\x8f\xe6\x94\x1d\xc2\x41\x5b\xef\x9b\x8d\x80\xdb\x4b\x3e\xe9\x56\x9c\x54\x5a\xdd\x75\xfe\x5e\xa9\x55\x5e\xed\xc7\xb6\x1a\xa4\xaa\x57\x22\xe1\x48\x0e\x73\xfe\x5f\x61\x1d\x37\xf0\xea\x75\xfe\x66\xab\xa6\x39\xf4\xe8\xb6\x6a\xe8\x6a\xa1\xfe\xd9\x86\xaf\x5a\xf9\x70\x4b\xc8\x59\xdd\xb5\x48\x68\x15\x42\x23\x88\x52\x62\xca\x6c\x03\x29\x92\x87\xd1\x5c\xc3\x76\x7d\x8e\xf3\x96\x8a\x78\xc4\x9f\x4a\x36\xf1\x8c\x48\x89\x1b\xb0\x60\x3c\x4f\xde\x26\x82\x21\x3f\xa1\xf6\xc5\x8e\xfc\xe4\xce\xe4\xbd\x7e\xab\x4d\x47\xbf\xf5\x0d\x7a\xb7\x50\xad\xc3\xc6\x2e\x89\x19\x5d\x9b\x52\x46\x2d\x5f\x8e\x8a\x1c\x20\x2e\xbc\xd4\xa8\xa6\xa8\x55\x47\x6f\x60\x95\x60\xb5\x7d\xc1\xfc\xc8\xe3\xea\xa9\x43\xde\xe8\x6b\x83\x8d\xdb\x70\x10\x2e\xd3\x67\x05\xae\x2b\x85\x69\xfd\x8e\xed\x11\x9f\xcd\x8c\x5e\x50\x72\x01\x1f\x21\x6c\x2a\x48\x0b\x6d\x4a\x66\xd1\xd4\x04\xc7\xf4\x95\x71\x34\x60\xcf\xde\x86\x94\x72\xac\x7b\xfe\x48\x00\xd4\xfa\x55\x1f\x37\xfa\x54\xca\x5c\x07\x95\x91\x42\x1a\xb5\xc7\x08\x26\x8e\x59\x34\x3c\x5b\xc2\xe0\xde\x7e\x6d\xc0\xea\x6b\xf4\xd6\xac\xd0\xb7\xa9\xc3\x66\xbe\x36\xaf\xb1\xe5\x06\x06\x7e\xd7\x29\x78\xbd\x35\xeb\x66\xb0\x85\xd6\x9a\x2f\x8a\x9c\x9e\x57\xc2\x9a\xc2\xe9\xd9\xc8\xc2\x7f\xe8\xe5\x3a\x6a\xff\xd1\xad\xe8\x8f\xc6\x10\xce\x1a\xf0\x62\xbc\xd1\x72\xf0\x74\x74\xac\x75\x56\x87\x63\x60\xf3\x47\x24\x3a\x36\x80\x8c\xef\x21\x89\xb5\x77\x73\xf1\xfe\x08\xbd\xf7\x0b\xf9\xde\x1f\x8c\xeb\xa2\x38\xfe\x96\x6a\xb6\xb9\x27\xd8\x72\xa5\x5a\x92\xf2\xa1\x07\x4e\xa9\xc8\x01\xcb\x31\x56\x0c\xa0\x26\x29\xa0\xdf\x2c\xbd\x03\x11\x7d\x68\x17\x69\x82\xde\x79\x26\xbb\x8d\x9b\x19\x0d\x9b\xca\x9a\x9d\x8b\x07\x6c\x34\xaf\x46\xc6\x8e\xf2\xd0\x58\x67\x19\xb1\x71\x0b\x44\x3d\xde\x62\xdd\xf9\x96\x33\xac\xdb\x6f\xa3\x25\x95\xec\xbd\xbc\x4f\x4f\x21\x43\x9b\x52\x3b\x42\x69\x42\xdd\xaa\x4a\x6e\x3e\x47\xcc\xda\x4d\x59\xa6\x7d\x1d\x1a\xbb\x75\xc8\xe7\xef\xd5\x51\xc4\x96\x72\x34\xa8\xf6\x81\xcb\x76\xcb\x65\xdb\x28\x65\x29\x4f\x6e\xf5\xeb\xfb\xcc\x68\x91\xde\x30\xce\xdd\xab\x4d\x99\x5c\xc0\x97\xfa\x64\x2e\x6f\x6f\xbd\x62\xa0\xdc\xa3\xc9\xf2\x48\xf9\x9d\xc9\xb6\x30\xb1\xea\xc5\xb9\x56\xa7\xda\x53\xb6\xbb\x14\xa7\xa6\x6c\x55\xd1\x19\x39\x32\xed\xcc\x8a\x0c\x11\x7b\x5e\x81\xdd\x4c\x62\xd7\x94\x50\xe1\x3e\x62\xc1\x23\x57\xc2\x39\x58\xd1\x16\x68\xe2\x91\x0d\xd2\x73\xae\x7a\x9f\xfb\xe7\xc3\xfe\xd5\xfd\xc5\xfd\xaf\x35\xc0\xa0\xe5\x9f\x1d\x36\xa8\xf7\xc0\xdd\xaf\x77\xf7\xfd\xcf\xc3\x4f\xfd\xab\xfe\x6d\xef\x7e\x09\x6e\x68\xdb\xc7\x9a\x30\x29\x33\x59\x67\x3c\xae\x82\x4b\xe9\x9c\xcc\x35\x5f\x5f\x44\x0f\xf5\x3e\x42\x49\x03\x82\xa8\xc1\x74\x60\x31\x11\x28\x26\x4f\x24\xe1\x69\xe1\xd4\xad\x25\x98\x07\x2d\x5a\x33\x7e\x1b\xbc\x28\x8c\x59\xa5\xf1\x29\x32\xbd\x11\xbd\xf6\xd0\xf9\x80\xa0\xf2\x61\x41\xd8\x7b\x85\xc8\xd7\x34\xa1\x11\x55\x5e\xcd\x27\x17\x36\xb8\x63\x62\xae\x90\xd2\xbb\x84\xb9\xb6\x96\xc2\xb3\x75\x8f\x83\x9f\x7e\xb0\xe8\x6b\xc8\x4f\x54\x0e\x75\xb7\xb4\x33\xd4\x16\xdc\x0a\x0d\x91\xf6\x05\x24\xbe\x35\x66\xb7\x0b\xe7\xc4\x62\x61\x93\xad\xdb\x6c\x40\xe9\xab\x9f\xe4\xf2\xdb\xb0\x2d\xb9\xa8\x74\xae\xdb\xb3\x8b\xba\x71\xea\x2b\xe7\x08\x95\x1a\xd1\x6e\x01\x52\xc5\x26\xfc\xaf\x98\xe5\xb1\xd0\x08\x88\x99\x44\x5d\x8c\x04\x99\x71\xa5\x0d\x30\x93\x46\x71\xa4\x95\x2a\x8a\x13\xfa\x4f\x00\x1f\x13\xe4\xc4\x4b\x3b\x71\x90\x6d\x45\xf0\xc2\x02\x83\x9c\x0c\xd8\x79\xff\xe6\xb6\x7f\xa6\x05\xd2\x09\x7a\x90\x80\x2b\x56\x5a\xfa\xb9\x65\x6f\xa3\x8e\xf9\xe9\x1f\x94\x49\x45\x70\x53\x06\x1d\x11\x82\x8b\xee\xf2\x21\xff\x5e\x1f\xde\xab\x67\x6f\xf8\xad\xe4\x19\x73\xee\x87\xab\xc6\x2e\xe2\x5e\xa1\xc5\xd6\x0b\xd9\x6e\xf1\x73\x89\x22\x3e\xae\x0a\x68\x22\x65\xaa\xef\x90\xda\x80\xcc\xda\x7d\x7d\xa5\x6f\xde\xc0\xbb\x6d\xeb\xbc\x87\xbc\x44\xa9\x0a\x98\x57\x83\x04\x9b\xb7\x33\xaa\xac\xb3\x51\x55\x14\xaf\x81\xc1\x52\x61\xfd\x11\x99\x60\x86\x44\xc6\x58\x05\xf7\xd7\xf7\xf3\x2d\x66\x1a\xad\x7a\x54\x35\xcd\xf0\x8c\x67\xcc\xf4\xe3\xd5\xb3\xaa\x99\x8c\x4c\x09\x53\x4b\x26\xf3\x5a\x08\x3b\x95\xa9\xee\x2f\xc8\x4e\xcd\x44\x9b\x70\x76\xea\xa2\x59\xd0\xaa\x7c\xb5\x6b\xd9\x65\x32\x96\x42\x5a\xfa\x50\xe5\xf7\x73\xbd\x95\x8d\xe5\xe3\xc6\x9f\xbb\xc7\xf2\x71\xf9\xa7\x62\x12\x3d\xae\x7a\xd9\x54\xcb\x59\x13\xdb\xe9\x7d\xc1\xd9\x37\xd7\xbf\xda\x9e\x3b\xd0\xe0\x3f\x7a\x44\x3f\xdd\x7f\xbe\x44\x63\xaa\xf5\x5e\x7d\xad\x5c\x61\xad\x63\x3f\x88\xc4\x79\xa5\xad\x67\x37\x13\x49\x7e\xf7\xc2\xc6\x3b\x55\xca\xd3\x12\xf4\x8d\x86\x27\xc4\xb9\x9a\x85\x85\x51\xac\xf4\xdc\x11\x98\xc5\x7c\x66\xd6\xf1\x41\x66\xe3\x31\xfd\x7a\xa2\xb0\xf8\xbe\x81\x1e\x26\xa7\x63\xf8\x0f\x3e\x1a\xea\x19\x6d\x78\x11\xd7\x0d\x87\x6c\x03\xf2\x9c\x6c\x76\x65\xe7\xe6\xd9\xff\xc3\x47\x00\x11\x00\x28\x07\x2e\x36\x68\xf3\x24\xec\x23\x8e\x93\x8a\x8e\xdc\x25\xf4\x9a\x88\x0b\x41\x2c\xb2\x80\x69\x1a\x9b\x62\xa1\x28\x78\x6b\x1d\xfa\x4d\xa9\xed\x41\xb1\x45\x7e\x8b\xfc\x29\x2e\x20\xc6\x47\x84\x40\x78\x29\xa5\xc9\x6a\x46\xef\x59\x29\x32\x5a\x39\x81\x36\x5d\xd7\x02\xa2\x82\x43\x66\xa9\x8a\xd5\x7f\x22\x4c\x6d\xc5\x3e\x81\x21\x6a\xb0\x0e\xba\xc5\x38\x4c\xef\xd6\x8b\xf3\xe2\x72\x73\x79\xd0\x7e\x4e\x95\x12\x18\xee\x79\x5b\x5d\x66\x03\xfa\x4d\x69\x06\x4f\x9d\x23\xd7\xf0\xe8\x22\x5d\x96\xd4\x13\x58\x6a\x17\xad\xf1\x8b\x5c\x60\xd7\xb3\x61\x4d\x84\x26\x49\x8c\x17\xc3\x43\x06\xb1\xc6\x69\x75\xcf\xcd\x37\x35\x6f\x55\x3e\xb9\x74\xcb\xd7\x80\x23\x2a\x0d\xf3\x89\x40\x1d\xec\x36\xb2\xf7\x57\x01\x3c\x80\x89\x3c\x88\x04\xf2\xce\x5b\xbd\x58\xa6\x7f\xbc\x96\x7c\xb9\x66\x87\x3b\xe8\xe8\x66\x32\x5a\x69\x24\xa9\x20\x91\xbe\xca\x4e\xd1\x4d\x42\xb4\xe6\x95\x69\xed\x2b\x4b\x12\x07\xdd\xd6\xae\x1d\xae\x04\x37\xb8\xf3\x75\x79\xb6\x47\xcb\xc2\x1c\x74\x61\xfb\xca\x3c\x1a\x6c\x1f\xa6\xc2\xa3\x2f\xb8\x90\xc1\x91\x58\xb6\x22\x41\xc2\xcf\x4d\xd6\x2e\xb8\x92\x70\xe9\x22\xa3\xff\xd4\xe2\x57\x10\x39\xe5\x8d\x95\xa1\xfe\x6a\x77\xb3\x06\x47\xca\x1d\x2e\xc2\xdd\x87\x4d\xc9\xe8\x1d\xf4\x9a\xca\x1d\x58\x52\x71\xba\xc4\x62\x8b\xdc\x13\x0b\xa4\x6b\xef\x56\x3b\x35\xb8\x25\x0b\x57\x9b\x0f\x6a\x57\x84\x2e\x0a\x63\x66\x6e\x62\xaf\xf9\xeb\x85\x03\xb9\xa8\xa3\xa0\x4a\x16\xed\x04\x91\xbe\x6b\x9b\xb6\x58\xaf\x73\x98\x89\x95\x70\x3c\x0a\x38\xfa\x55\x24\xb7\xad\xe0\x29\xa6\xa5\x89\x50\x2f\x2e\x6d\x97\x10\x50\xa3\x6d\xa2\x93\x2c\x41\xfc\x59\xb6\x31\x64\xac\x35\xf1\x9a\x85\xf2\xa6\x61\x35\xd0\x92\x0b\x55\x66\x57\xd1\xb5\x12\x07\x96\x16\x10\x40\xe3\x56\x07\x8d\xb3\x2d\x63\x72\xde\x03\x88\x47\x25\x00\x2d\xa1\x08\xa0\x55\x15\x07\xeb\xf4\x5e\x56\x2e\x56\xda\x9d\x4e\xb5\x61\xa5\x37\xb4\x2c\x39\xdf\x30\x02\xa7\x17\x33\x1f\x42\xb5\xed\x26\x39\x40\xa5\xf5\x9b\xe8\x01\x8c\x49\x62\x64\x20\x1f\x0c\xa4\xb5\xa5\x5d\x1e\x39\x49\xb1\x20\x4c\x0d\xd8\xad\x9e\x85\x79\xa3\xc8\xc4\x70\x59\x40\xae\xcd\x00\x34\x23\x1e\x23\x6c\xdf\x02\xa2\x37\xa5\xe1\xc9\xa1\x79\x08\x4c\xd3\x1d\x22\x13\xfc\x68\x9e\x31\x40\x11\x16\x28\x49\x2f\x95\x8e\x0b\x33\x5e\x2b\x90\xd1\x94\x02\x4e\x43\x4c\xa4\xbd\x90\xa8\xb2\x40\x1c\xb9\xfa\x9d\x11\x07\xac\x0d\xaf\xe5\xf2\xab\x4e\x60\x3b\x47\x01\x73\x0e\x3a\x39\x60\xde\x37\x5a\x70\x58\x8d\xb1\xbe\xa6\x29\x01\xfb\x4c\xe3\x3c\xf0\x05\xff\x69\x76\x88\x0b\x3a\xa1\xcc\xeb\x86\x65\x97\x37\xc3\x29\xb8\x77\xcd\x19\xe4\xe3\xfc\x4e\xbb\xb7\x35\x0e\x27\x30\xe3\xff\xfb\x5f\xff\x7d\x42\x9b\xa2\x1f\x72\x68\x29\xb0\x0f\x3b\xb9\xda\xb6\xf8\x3b\xef\x41\xaf\x34\x40\x7a\x78\x36\xad\x2c\xd5\x6d\x14\x7f\xb5\x97\x9b\x66\x1a\xae\xa6\x26\xdc\x5b\x66\x77\x88\x8d\x88\xac\xe5\x6c\x98\x2b\xe6\x75\x69\x49\x25\xd4\x26\xe8\x99\x98\x93\x9c\x3b\x08\xfc\x4e\xf3\x0b\x6e\x9a\x01\x2b\x5e\x91\x06\x44\xc6\xe0\xf6\x9a\x3f\x14\xd4\xe9\x48\x98\x36\xd9\x5f\x64\x4a\x14\xe1\x70\x2f\x17\xda\xf5\x45\x31\x39\xac\x7a\xfc\xca\x4d\x5b\x91\xdc\x1e\x80\xe5\x26\x39\xa3\x53\x2c\x77\x97\x9a\x53\xdb\xcf\xcb\x78\xd3\x7d\xe5\x61\x59\x92\x8e\x99\xa4\x29\x91\xd5\x1b\x92\x49\x22\x8c\xa4\xcb\x31\xc4\x2c\x27\xf8\xf0\x9c\x90\x21\xba\x24\xd6\x48\x66\x98\xae\x54\xcd\xa0\x9f\xaf\x07\x0f\x2d\x05\x1b\xf0\x84\x88\x61\x9c\xa9\x85\x63\xd1\x56\x61\xa0\x5f\x3a\xcf\xd4\x7c\xf9\xf8\x32\xc1\x8b\xfd\x8c\xda\x00\x5b\xf5\xf3\x0d\xc3\x2e\xd7\x98\xbd\x14\x9f\xb2\xd6\xdc\x00\x87\x4a\x2a\x70\xa8\x36\xe3\xb5\xe4\x22\x81\x1b\x98\x29\xc0\x21\x2c\x2c\x29\x7b\x45\x1b\xd0\x76\x98\x39\x1a\x65\x85\x4b\x29\x6f\x83\x11\x9f\x0c\xd8\x47\xd3\x47\x06\xac\x3c\x33\x81\x08\xca\x8d\xc8\xd7\x94\x4b\x52\xaa\x7f\xab\x69\x6d\x61\x0b\x5f\xed\x34\xea\x95\xf5\xe2\xa5\xcd\x75\xf5\x57\x07\xb6\x5d\xdc\xf0\xc5\x25\xd7\x73\xe0\x46\xea\x60\x44\x53\xaa\x79\x67\x58\x7b\xd2\x76\xd7\x5e\xb9\xc8\xe9\x02\xf0\x30\x95\xcc\x8f\x50\xbe\xbc\x0a\x43\x24\xe4\x89\x80\x3b\x1d\xe6\xe8\x37\x30\x29\xfb\xf5\x1a\xc4\xc9\xb2\x03\x54\x14\x9f\x82\x58\x40\x71\x75\x06\xe5\x12\xbd\x3a\x5e\x2c\x17\x1f\x6d\x5c\x27\x57\x97\x98\xb2\x82\x7a\xde\xf3\x1b\xb9\xcc\x89\x42\xe4\xab\x22\xb6\xd5\xeb\xbd\xab\x64\x5c\x2c\x7e\x40\xf5\xc5\x58\xcd\xba\xe3\xce\x9b\x6e\xf7\x5c\xe1\xbb\x2b\xd5\x8c\xdd\x95\x6f\x4b\x17\xa7\x98\xc5\xb6\x1e\xd7\x1a\x19\x5a\xd9\x82\xd5\x19\xa7\x5b\x5e\xa9\x60\xab\x4a\x3d\x04\x7c\x33\xa6\x81\xea\x87\x8b\xcc\x19\x8c\xda\x64\x81\xf4\x0a\x2e\xb4\xe6\x9e\x31\x45\x13\xcd\x1c\x76\x0e\x12\x8d\x21\x33\xce\xa2\x3b\x42\x66\x7b\x13\x80\x20\x95\x92\xb2\xc9\xd0\x52\xd2\x95\x96\x76\xbb\x18\xca\x3c\xf5\xd9\x0c\x65\xfe\xf8\xa3\x1b\xa8\xdd\xa9\x6e\xd8\x1a\xc0\xdd\x5c\x51\x2b\x58\x1c\x8c\xbb\xc5\x58\x54\x3e\x57\x0b\x3b\xa4\xb1\x21\x05\x35\x1d\xc5\x61\xa1\xab\xf8\xdd\x41\xa7\x5b\x04\xbf\x28\xae\x10\x69\x0b\x55\x4d\xf9\x19\x64\xea\xab\x86\x4a\x5c\xd9\x58\x81\x7b\xc1\x72\x15\xcd\xf6\x33\xcb\x71\x06\x2a\xc5\xbc\xd8\x7d\xce\x96\x23\xe0\x24\x19\xe1\xe8\x31\xb7\xc2\x72\x5f\x04\x17\xae\x1f\x84\xd6\x2b\xa1\xe1\x9d\x61\x2e\x3d\xd1\x08\xb4\x1b\x3f\x5a\x68\xe0\x8f\xec\xb4\x8b\x8f\x1b\xaa\x59\x5c\x39\x83\x77\x65\x66\x6f\x6a\x1b\x62\x92\x26\x7c\x3e\x6b\xb8\xcf\xaa\x05\x8c\x9b\x64\xea\x34\xd5\x4f\x6e\xf5\x2a\xab\x08\xbd\x95\x2f\xb3\x85\x6a\xa8\x2d\x80\x71\xad\x20\x25\x3f\x25\x7c\x04\x2e\x55\xeb\x7e\x70\x15\x3e\x5e\xa9\x47\xf5\x3c\xaf\x5a\x77\x54\x3d\x91\x54\xa6\x89\x36\x66\x9a\xbf\x60\x6a\x4e\x76\xbb\x6f\x06\x21\x61\xb9\x77\xb0\x7b\xb6\x76\xed\xeb\xbb\x80\x7d\xbe\x74\x9a\x80\x79\xd6\xc8\xaf\x8a\x97\xcd\x94\x1a\x9e\x98\x20\xb5\xe2\x03\xa6\xf0\xc4\x6d\xae\x55\x2e\xf9\x33\x23\x42\x4e\x69\x5a\x6a\x84\xb9\x71\x7a\xb8\xe5\x68\xfb\xff\x4c\x32\x74\xed\x98\x7b\x58\xba\x75\xcf\xd3\x63\x83\xce\xa2\xb9\x53\xa6\x38\x2a\x7c\xb2\x51\x82\xa5\xa4\xe3\xb9\x07\xaa\x92\xe7\xf9\x42\xe9\x5a\xd9\x89\xe1\x75\xbe\xab\x13\x73\x86\x3a\xdb\x41\x15\xd8\xbc\xa2\xf2\xa1\x7c\xf8\x69\xec\x83\xee\xe9\xdb\x6c\x11\x7a\xc7\xe9\x09\x96\xea\x8d\xe0\xc1\x06\x3e\x61\x3d\x14\x80\xae\x78\x4d\x3b\xe6\xa4\x9a\x32\xcc\x05\x46\x2a\xd0\xc2\x72\x3d\xda\xd2\xcc\xda\x70\x39\xd2\x8a\x0f\x5f\xa4\x4a\x35\xac\xc0\x79\xda\x66\x74\x2e\x71\x7d\x2e\x73\x94\x16\x00\xb3\x28\x5e\x3e\x42\x72\x23\x50\xb6\x2e\x4c\x79\x4e\x12\xb2\x95\x64\xf3\x35\x38\xb4\x9a\xc9\xe1\xf1\x66\x2b\x5f\x16\x6d\x29\x96\xfb\x55\xd6\xc8\x81\x6f\xc0\x48\xaa\x9f\xfa\x17\x33\x51\x9b\x06\x5f\xb7\x8b\xe0\x13\x05\x2a\x2f\x9f\xed\x3e\x71\xb9\x97\x5a\x62\xa6\x6f\xf9\xbd\x58\x63\x89\xa9\x8b\x15\xe7\x7a\xe2\x3e\xf2\xf9\x2b\xa7\xaa\x2f\xcc\xeb\x13\xe9\x92\x56\xb3\xf4\xf4\xad\x25\x7b\x17\x6f\xa8\x6e\x7c\x61\x03\xd7\x8a\xa3\x09\x01\x24\x1e\xca\x62\xfa\x44\xe3\x0c\x27\x07\xc5\x13\x5b\x2b\xb4\xd9\x12\xf5\xeb\x25\x4c\x27\x4f\x4f\x91\x0f\x4a\x94\x74\xf7\xd1\x02\xe6\xa7\xdd\x9c\x3d\xdc\x82\xfd\x38\x96\xc6\x60\x78\xf3\x1a\xdb\xc6\xd0\x18\x76\x66\x16\x20\x22\xa8\x92\xa5\x4b\xb6\x98\xfb\xf6\xb5\x49\x43\xe3\xd8\xbe\x91\xc3\x41\x94\x60\xd8\x70\x09\xcd\xd2\xec\xd1\xeb\x4b\xdd\xea\xd1\x7a\xeb\x7a\xe7\xea\x67\xac\x3a\xab\xe2\x74\x05\x65\x78\x1f\xce\x69\x77\x7d\xd8\x01\xd0\xee\xa1\xf2\xd3\x74\x0c\xf7\xf3\xfe\xdd\x03\xe5\x78\x41\x25\xd8\x9e\x8a\x7c\x40\x6c\xb2\x17\x9a\xf2\xc2\x56\xbc\x94\xbe\x7c\xec\xb0\xbd\x0a\xa4\xac\xfd\xdd\xa2\xfd\x38\xc9\xb7\x36\xfc\xb8\xbb\x0b\x7e\x39\xbf\x6c\x85\x3f\x00\xe6\x16\x43\x3d\x7e\x66\xdb\xfd\xc0\xe1\xf5\x72\x38\x17\x62\x5e\x4b\xb2\x63\xed\xf4\x3a\xe5\xc5\x2e\x90\x73\x17\xdb\x6b\x8b\x2f\x3b\x6f\xee\x2e\x59\x6d\xd5\xb9\x6c\xc3\x46\xdb\x71\xf4\xd0\x72\xa3\xf7\x42\x48\x52\xef\x76\x8b\xd6\x40\x3a\xb9\x2d\xdb\xe6\x21\xab\xeb\xd1\xb8\x39\x7c\x84\xab\x2d\x1d\xa6\x82\x8c\xe9\xd7\xb5\x4c\x81\x1b\x78\xd5\x9a\xd7\x9a\xcc\x95\xae\x8f\x10\x16\x84\x2e\x91\x5e\x22\xad\xa5\xb4\xed\x0c\x37\x60\x45\x45\xae\x2d\xc7\xd5\xca\x30\x17\xa5\x3f\xad\x0b\x7d\xba\xfd\x0e\x95\x66\x5f\xa7\x4a\xa5\xf2\xf4\xc3\x87\x09\x55\xd3\x6c\x74\x12\xf1\x99\xa9\xff\xe0\x62\x62\xfe\xf1\x81\x4a\x99\x11\xf9\xe1\xcf\x7f\xfa\x53\xb1\xc5\x23\x1c\x3d\x4e\x0c\x9c\xd3\x62\xbc\xb3\xbc\xe5\x04\xcb\xcd\x32\xca\x5c\xe9\xe4\x8e\x4b\xe8\xbd\xcf\xb8\xa2\x65\xfd\x8e\x54\x78\x96\xfa\x29\xc8\xa6\xc7\xa3\x54\xb8\xe8\x2c\x03\xf5\xb0\x7a\x99\x68\x8a\xd3\x94\xb0\x66\xb7\x8b\x29\x70\xde\x40\xf4\xb8\x12\x69\x3b\x43\xf2\x35\x4d\x30\x2b\xc3\x7e\x40\x9b\x34\x41\x22\xc2\x94\x85\xa4\x28\x7a\xd3\x03\x37\x1a\xe8\x29\x23\xff\x57\x2b\x81\x85\x35\x52\x59\xf4\x3f\x74\xd3\xb1\xbd\x88\x5d\x87\x5a\xec\x91\xae\xda\xff\xb9\xa0\x1d\x71\x54\x6b\x2b\x8e\xbd\xb3\xbd\xde\x36\xe1\xa0\x48\x70\x36\x24\x5f\xb5\x90\x93\xeb\x02\xc5\x3d\x48\x22\x51\xef\xcb\x1d\x92\x73\xa6\xf0\xd7\x53\xf4\x99\x32\x50\x60\x7f\xe2\x99\x90\xe8\x1c\xcf\x8f\xf9\xf8\x78\xc6\x99\x9a\xa2\xcf\xf0\x7f\xed\x9f\x9e\x09\x79\x44\xbf\x12\x2c\xac\x7c\xb0\xfd\x23\x5d\x0b\x3b\x60\x21\x91\x31\x89\xc8\x93\x3e\xa1\x7f\xfa\x5f\x68\x66\x46\x3e\x45\x3f\x7c\xf8\xd3\xff\x42\x7f\x80\xff\xfd\x7f\xd0\x1f\x1a\x3c\x0d\xab\x41\xcd\x41\x9b\xf1\xdb\xc6\x34\x02\xa0\x94\x5c\x24\xf9\xb2\x61\xcf\x04\x2f\x76\xaa\x76\xe4\x47\x1a\x3d\xf2\xf1\x78\xa8\x19\xc3\x14\x90\x0e\xf1\x46\x6e\x07\x1f\x35\x98\xda\x46\xf1\xa6\xed\x64\xd1\xf0\xc9\x7e\xd4\x20\x8d\x38\x71\x2d\xb3\xc2\x3d\x01\xc9\x6b\xa5\xd6\xe3\x54\xc2\x5b\x24\xd6\x52\x75\x95\xd3\xe1\xbc\x8b\x0e\x74\xc0\x79\x90\x7c\x64\x1e\xa7\x10\x97\x12\x4e\xfd\xec\x69\x93\x60\x66\x09\x59\x7b\x1c\x16\xd2\xba\xdf\x4c\xae\x2e\x2c\xed\xb5\xf2\x74\xe5\xc2\xc7\x97\xa7\xe8\xde\x71\xb1\x91\xbd\xf5\x48\x1a\x4b\x68\x96\x34\x37\x73\x0d\xb7\xb1\xef\xd4\x50\x1c\x49\x2e\x72\xf4\x6e\xe3\x17\xb1\x2d\x50\x97\x7b\x51\xa9\x30\x49\x8d\xdd\x0e\xbd\x5e\xfa\x79\xfe\xca\xb2\x69\x42\x86\xa3\x7b\xba\x68\xee\x08\xb3\xd5\x2a\x92\x16\x89\x35\x33\xae\x01\xd9\x5c\xb6\xa1\x77\x39\xae\x0a\x0c\x0e\xe9\xb6\x50\x37\xc4\x9c\x66\x6b\x81\x2b\xea\xf7\x33\x13\x11\x39\xe3\x9b\xa5\x5b\x27\x94\x2d\xd4\x69\x34\x26\xb7\x35\xeb\xe4\x97\xb6\x43\x9c\xc3\xa1\xe6\x71\x61\x2c\x98\xb0\x84\xed\xbd\xe2\x01\xe0\x96\x57\x03\x40\x8a\xdb\xc0\x58\x5d\xe8\x08\xb2\x81\xd4\x36\x8e\xeb\x42\xe0\xb9\x86\x32\x95\x3e\x32\x02\x6b\x59\xd8\x92\x33\x09\xe9\x64\x1b\xcf\xc3\xeb\x8d\x54\xe4\xa8\x95\xba\x14\xc3\x4c\xa0\xde\x72\x4d\x8c\x5c\xd3\xa6\xec\x08\x09\x0c\xc9\xc0\x6a\xaa\xc7\x93\x44\x1c\x8f\x71\x44\xd9\xe4\xc8\x83\x47\x05\xa8\x12\xff\x3a\xa8\x63\xd2\x7b\x2c\x1f\xb7\x9b\xe0\xba\x71\xb7\x59\x1a\x17\x1d\x0f\x2d\xa0\x91\x09\xac\xd0\x05\x6c\x48\x85\xe5\x63\x13\xa2\xd7\x02\x9c\x60\xcb\xec\x72\x52\x38\x10\xc2\xb6\xf9\x39\xe8\x03\xe2\xdb\x53\xd0\xa9\xc4\xf5\x3f\xb7\xe0\xa2\xae\xd2\x14\xe7\xe8\x3f\x55\x54\xdd\x96\xf9\xcb\x29\x17\x6a\xb8\x26\x1e\x71\x35\xa4\xc2\xc8\x71\x02\x40\x42\xfc\x89\x88\x27\x4a\x9e\xcb\xb0\xbe\xab\xf0\xa2\x71\x9a\x79\xf9\x94\x80\xfb\x3a\x4b\x39\x94\x6e\x8d\xd1\x0c\xb3\xb9\x11\x94\x5a\xb8\x60\xf9\x28\xf3\xae\xcb\x48\xce\x70\x92\x1c\x21\x41\x32\x69\xba\x91\x4b\x92\x8c\x8f\x5d\x03\x98\x18\x25\x7c\x42\x23\x9c\xa0\x51\xc2\xa3\x47\x69\x2a\x2b\xd9\xc4\x08\xa9\x54\xf0\x88\x48\xe9\x69\x56\x05\x8a\x82\xad\x6d\x85\x96\xcb\x8a\x88\x19\x65\x54\x2a\x1a\x39\x95\xa9\x00\x43\x31\x8d\xff\x23\x0c\x2e\x61\xa8\x14\x86\xe9\x6a\x4d\x8f\x18\x50\xd8\x8c\xd9\x56\x61\x70\x5d\x5b\xac\x47\x57\x9c\xd0\x74\x80\xb6\x00\x5d\xe9\x38\x64\xa8\xca\x07\x72\xc9\x91\x3a\xb3\xaf\xc1\x31\x6e\x63\x81\xdb\xf2\x89\xca\x19\x32\x3f\x69\x25\x38\x2d\xa8\x65\xc8\x4b\x2f\x4a\x9a\x4b\x5e\x91\xb0\x67\x48\x7a\x30\xe5\x06\xfc\xbc\x65\x3c\xad\xa9\x08\x2a\x0f\x74\xa7\xab\x46\xed\x29\x8b\x92\x2c\xce\xdb\xaa\x6a\x15\xe0\x49\x33\x89\x23\x8f\xa6\xbd\x56\x14\x8e\x10\x96\xe8\x99\x24\x89\xfe\xff\xa6\xf2\xe2\x38\x6f\x17\xa2\x45\xb2\x69\xe9\x02\x1f\x71\x52\xba\x89\xa3\xf6\x0e\x15\xf5\x06\xab\xa9\xc1\x9a\x98\x71\x65\x3a\xda\x1a\x54\x54\xe7\xdf\x32\x30\x9a\xa3\x84\x8f\xe0\xa4\x03\x60\xaa\xab\xaf\xf6\xca\x39\xb3\x28\x22\x24\x26\xb1\xe9\xcf\x99\x83\x79\xda\x23\xfa\x7d\x3d\x7c\x67\x89\x22\x7b\x00\x96\x5a\x75\xac\x35\x42\xa6\x96\xbb\x1b\x9e\xa0\x9b\x0a\x20\x90\x47\x99\x31\xae\xc2\xc3\x1d\x2d\x6c\xe1\xeb\x00\xac\x56\x16\xb1\xbb\x1d\x5a\x11\x60\xb5\xf4\xcd\x2d\x00\xac\x56\xd6\xd9\x50\x33\xc2\x27\x3b\xad\x75\xd7\x8b\xba\xe4\xdd\x0b\x10\x0d\x30\x9d\xb9\x3b\x4b\x2c\xe8\x0e\xe4\xbc\x8e\x11\xf7\x0b\x3c\xb6\xd2\x03\xf4\x75\xc1\x63\x2b\x93\xd9\x67\xf0\xd8\xca\x54\xf7\x17\x3c\xb6\x66\xa2\x1d\xc0\x63\x4d\x70\x7f\xa8\x99\xba\x9b\x50\x80\x82\xaa\x51\x36\xbe\x03\x88\x81\xd6\x39\x9e\x99\xc4\x01\x73\x8d\xb9\x3b\xda\xe6\x17\xc1\x6c\x6d\xed\x6d\x53\x3a\x56\x25\x08\xb1\x2a\xef\xe5\xd1\x37\x03\x3a\xb2\xaa\xdb\xfd\xc8\xf7\x76\x83\x1f\x32\xc2\xa9\xc5\x32\x68\x6a\x71\xb4\x3f\x55\xdb\xeb\xe1\xf2\x02\xf6\x65\x49\xe4\x77\x42\xae\xfb\x5c\xe9\x16\x32\xe5\xcf\xb6\x63\x17\xb0\xa1\x61\xca\x46\x16\x84\x8f\x0e\xad\xd1\xd6\x44\x39\xca\x14\x99\x54\x6d\xda\xe2\xd0\x50\xa6\xfe\xf2\xe7\xa5\x92\xc8\x40\x7b\x3a\xf3\xd0\xeb\xd9\x91\x07\x3b\xec\x6f\x24\x46\xd1\x54\x5b\x45\x52\x9b\x2f\x7a\x39\xe6\x66\x95\x68\x86\xa9\x33\xa4\x32\x69\x42\x4b\x54\x0e\x58\x09\x0b\xf7\x04\x7d\x84\x36\xc8\x78\x96\x6a\xfb\x2b\x5f\x1f\xd5\x9c\x34\xc8\x7e\xf8\xe1\x2f\x04\xfd\x80\x66\x04\xb3\x92\x0d\x0b\x66\x93\xbe\xfa\x00\x3b\x52\x4d\xc9\x80\xd5\x6e\x05\xea\x7f\x35\xbd\xcd\x5c\xbe\xe1\x05\x1b\x73\x67\x13\x43\x7b\x4f\x1c\x4d\x91\xcc\x46\xa6\x3f\xb5\xe7\xc3\x70\x8a\xf4\x25\x9f\x40\xa0\x1a\x6e\x64\x37\xe9\xb6\x53\xb8\xdb\x1c\x00\x1b\x6e\xec\x7a\x1b\xf7\xe0\x1e\x39\x96\xa4\x84\x29\x56\x13\x34\x33\x92\xcf\x3f\xf8\xd2\xe0\x0d\x1d\x99\x18\x82\xb6\xcf\xb0\xf5\xec\x6b\x5d\x1a\xd2\x89\x21\x4a\x96\x25\x58\xd8\xa3\x3f\x60\xda\xd0\x10\xe4\x89\xf2\x4c\x26\x73\x14\x73\x46\x8e\x80\x13\xb2\x68\x6a\x02\xab\xda\x66\xc1\xb6\x51\xca\x13\x95\x99\x36\x68\x61\x2c\xd7\x97\x45\x2a\x6c\xb0\xd0\xa6\x14\xbe\xa3\xcd\x6f\x02\x6f\x29\xaf\x3e\x12\x75\xb3\xa2\x7c\xb8\xe2\x8a\xcc\xef\x08\x57\x5c\xe2\xaa\x00\x57\x9c\xc3\x15\x2f\xd2\x65\x1f\xe1\x8a\x2b\x7b\xde\x0d\xae\xb8\x6e\xcb\xd7\x80\x2b\x2e\x0d\xf3\x66\xe0\x8a\x2b\x14\x7d\x33\x70\xc5\x95\x75\x05\xb8\xe2\xb7\x07\x57\xbc\x21\x20\x6f\xbd\x2c\x36\xb8\x5e\x8a\xb2\xf9\xca\x4c\xf6\x5e\xa2\x8b\x6b\xcd\x60\xd1\x63\x39\xa9\x2d\xbf\xae\x36\x07\x01\xae\x17\x42\xab\x81\x00\xd7\x9a\xea\xcd\xa2\x6e\x53\x60\x31\x30\x0c\x5e\x18\x04\xb8\xb4\x80\x90\x5f\xb9\x7a\x7e\x65\x2d\xf3\xd9\x6f\xeb\xe9\xb9\xa4\xcb\xea\x85\xdc\x11\x06\xb8\xb4\x3f\x9d\x32\x31\x41\x75\xdf\x02\x27\xee\x56\x9b\xbf\x2f\x1d\xf2\xa5\xba\xbc\x4f\x45\x69\x01\xc9\xb5\x86\xe7\x50\x0a\x8d\x11\xee\xc7\xff\x03\xe7\xae\x91\x19\x5c\x21\x6f\x1e\x57\x31\xbc\xd8\x81\x55\x3b\x73\xa8\xb3\x4a\xb7\x53\x28\xec\x8a\x37\x57\x0c\x31\xbb\x49\xdc\xa5\x24\x6a\xf0\x31\xd3\x19\xdd\xd6\xb0\xcb\x2e\xb2\x1c\x83\x0d\x0c\xf2\x85\xba\x54\x7d\x3d\x99\xe9\x18\x1d\xbf\x52\x0e\x0c\x28\x29\xe6\xcd\x09\x95\x4a\x34\xe6\x36\x2d\xcc\x70\x93\x50\x69\x9a\x75\x4e\x88\xf1\xa8\x3a\x59\xef\xb5\x19\x99\x71\xb1\x2c\xb1\xaa\xf6\x4d\xdb\x62\x69\x9d\x57\x49\x3a\x25\x33\xad\xc9\x0c\x57\x1d\xa4\xeb\x7e\xe7\x45\xcb\xb6\x76\xcd\x24\x3a\x96\x98\xc0\x0b\x84\xea\x67\x63\x83\x84\xda\x79\xbb\x37\xdd\x66\x8b\xd5\xba\x62\x40\xc8\x81\x78\xb7\x3b\xdc\xec\x43\xa5\x70\x37\xf0\x77\x6d\x4e\x47\x9e\x52\xb3\x3c\x6b\xa3\x25\x5f\xa3\x0d\xef\xac\x78\xcb\x36\x20\x5f\x21\x94\x5f\x8e\xce\x6b\x49\xe8\x77\x9f\x5e\x3d\xc1\xa3\x01\xad\x77\x91\x3c\x90\x99\x23\x89\x38\xf6\x2d\x83\xd2\x64\x16\xe9\x55\xe2\x12\x67\x51\x6e\xc0\x24\x99\x68\xcc\x32\xed\xe2\xd0\x8e\x54\x86\x13\xb0\x24\xfc\xae\xa9\xd5\x4d\x1d\xcd\x6b\xca\x1e\xbb\x45\x4c\x28\x53\xff\xf1\xd7\x95\x76\x53\x9b\x56\x96\x6e\xd0\xe9\x0d\x47\x11\x91\xc6\xc7\x6e\xb3\x90\xf1\x88\x3f\x41\x93\xb7\x4d\x76\x55\x1f\x65\xbd\x6e\x2d\xe0\x73\x08\xec\xb8\x60\x75\xa3\x2e\x4c\x05\xcf\x26\x53\xe7\x43\xd2\x67\x46\x2f\xad\x6e\x2f\x7f\x59\xf0\x91\xaf\xbc\x97\x3f\x66\x34\x59\xcf\x43\x77\x57\x6a\x7f\xf7\xe9\xe2\x1e\xc9\x69\x7e\x5a\x47\x30\x6c\xed\xc6\x2e\x4e\xba\xfb\x37\xed\xbb\x79\xbc\x06\x3e\x73\xe4\x60\x5f\xc7\x3c\x49\x20\xd2\x20\xc9\xec\x89\x88\xfa\xcf\xc3\x82\xef\xe9\x6a\x88\x8d\xf9\x04\xe0\xed\xa2\x30\xa2\x93\xfe\x75\x63\x54\x43\x89\xdc\xec\xab\x49\x0b\x26\x55\x8d\x33\xc2\xea\x7c\x6c\x5f\x16\x3b\x0f\x1d\x58\xc2\xa0\xcb\x1e\xdb\x5a\xd2\xa0\x23\xc9\x0b\x27\x0e\x2e\x59\xc7\xbe\x26\x0f\x56\x84\x5d\x9e\xcb\x57\x5c\x33\x2e\x71\xc8\x18\x3e\x3d\x4d\xe2\x01\xeb\x95\xea\x29\x5c\x87\xf6\xd1\xbc\x48\xc8\x36\x36\x84\x2f\xcc\xa0\xbf\x8b\x75\xac\x40\x18\x4d\xff\x0b\x2c\x1d\x03\x9a\x6c\x52\x0a\x5d\xda\x20\x64\x93\x93\xf8\x18\x47\xf3\x28\xa1\x91\x67\x33\x4f\x04\x4e\xa7\x75\x12\xcf\xed\x7c\x40\x1d\x7a\x2d\xd4\xa1\xa6\x46\x68\xab\xe4\x6d\x3b\xbe\x62\x78\x46\x02\x1a\xd2\x3e\xa2\x21\x1d\xe5\x78\x1b\xac\x68\x29\xf7\x8a\x30\x0e\x8b\xe7\x3e\x40\x22\xbd\x02\x24\xd2\x3a\x87\xbf\xc0\x3b\x2a\x1d\xfb\x00\xd3\xd4\x85\x78\xaf\x0f\xd3\x94\x2b\x01\x7b\x85\xbc\xd3\x2c\x0f\x5e\x19\xd1\x65\x71\x62\xaf\x09\xcb\x54\xa3\x2e\xad\xa2\x37\xb6\xe1\x32\xb5\xf1\x45\x27\xba\xbc\x2e\x4a\xd2\x6a\x94\x59\x09\x00\xa9\xf6\xee\xdc\x13\x38\xa4\xe6\x6d\xd8\x93\x73\xb3\xcd\xaa\x9e\xd5\x7a\xf6\xfa\x95\x3d\xab\x18\x98\xab\x15\xf9\xe4\xfc\x70\x58\x85\x3e\x45\x73\xc3\xf5\x8a\x7d\x7a\x2e\x06\x4f\x04\x9a\xf2\x24\x76\x20\x1c\x39\xb5\xf2\x0f\xe4\x95\x10\x39\x81\xdc\x66\xdc\xa5\x24\x32\xd6\x66\xd1\x88\xaf\xad\xa4\x27\xdf\x44\x98\xee\x16\x04\xcd\x36\xbc\x28\xb9\x24\x59\xc7\x7f\xb2\x54\xbb\x90\x65\xf7\x7f\xcb\x1c\x4b\x14\x82\xa8\x41\xfd\x34\x97\xfa\xbd\x97\x4c\xae\x4d\xf5\xf0\x9c\xa3\xa2\xae\xc5\xae\xe1\x33\xf8\xf5\x89\x3a\x47\x0c\xf6\xbf\xd8\x1a\xa5\x74\xab\xeb\x14\xa9\xac\x32\xcb\x1a\xc9\x70\x0b\x1d\x13\x37\x07\x47\x9a\xe1\xaf\xc3\x14\x0b\x9c\x24\x24\xa1\x72\xb6\xb3\x64\xe8\xb3\x72\xb8\x5a\x9f\x55\xc1\x8d\x8b\x8c\x65\xb3\x91\x61\x45\x37\x11\xdb\x64\x53\x71\x24\x32\xe6\x43\xbb\xe5\x1b\x93\x37\xf1\xcc\xe0\x5e\x00\xaf\x5a\x34\x85\x6e\xc9\x63\x4c\x05\x23\xb2\xb1\x37\x2d\x89\x32\x41\xd5\x7c\x68\x5b\xfd\x76\x3f\x70\x77\xf6\xcd\x33\xfb\x62\x7b\x84\xdf\xa1\x1a\xb8\xef\xe5\xad\x85\x53\x22\xa0\x3d\x97\x6b\x34\xe5\xb5\x33\xb6\xa8\x15\x24\xef\xf1\x05\xe9\xdf\x0b\xd7\x76\x53\xe2\x34\x7e\x1e\x7a\x15\x65\xc3\xa8\xca\x1c\xcb\x0e\x6b\x1d\xee\x56\xdb\x22\x77\x8c\x3c\xd5\x10\x45\xdf\x41\x77\x1f\x5b\x36\x62\x86\xd6\x13\xf6\x42\xe1\xe0\xaf\x2d\x36\xc6\x2b\xf9\xaf\x69\x76\xe3\xcd\xd3\x62\x1d\xd5\x25\x5f\xb5\x4c\xb6\xe7\xbd\xd5\x61\xc6\xde\x47\xb6\x34\x6d\x7d\xd0\x85\xc8\x52\x45\x47\x8b\xd0\x3e\x4e\x1a\x6c\xa1\x75\x6f\x2f\x81\x32\x73\x17\x66\x29\x7d\xd6\xf4\xf3\x2d\x49\x62\xbb\x3a\xad\xff\x5b\x1c\x35\x87\x90\x64\x10\xa6\xfc\x3a\xc6\xeb\x19\x55\xca\x15\x4a\x18\x07\xbc\xe6\xce\xb2\x6f\xfa\xbd\x4b\x77\xc1\xd0\x61\xd9\xb8\xa8\x4e\x06\xac\x27\xd1\x33\x41\x8c\x58\x08\x8d\x9a\xde\xc9\xb9\x57\x1f\x7a\xae\x8d\x88\xfe\x52\x9e\x9b\xa3\x95\x07\xaa\x64\xde\xf6\xcf\x7c\x63\x8c\x13\x49\x8e\xf4\xc0\xd0\x2d\x58\x71\x48\x7e\xc5\xe8\x59\xe0\x34\x25\x62\xc0\x6c\x15\x0b\x04\x9c\x38\x4f\xcc\xf8\x4d\x29\xbe\x96\x06\x64\x18\xe1\x68\xfa\x42\x7b\x84\xa1\x18\x29\x9a\x92\xd8\xd5\x4b\x97\xb7\xc7\xad\xdb\x38\xec\x57\xd8\xac\x8b\xb1\x6b\x5b\x77\x64\x3f\x92\x44\x5a\xa2\xe4\xed\xdd\x53\x22\xf4\xac\x35\x0f\x3f\x11\x86\xe8\xd8\xcd\xc3\xe6\x2e\xa1\x67\x88\xcc\x69\xd6\x7f\xc2\x34\x31\x00\x04\xee\xd3\x4e\x09\x34\xe1\x87\x01\x33\xe1\x7e\x16\x95\x2a\x74\x29\xa3\x72\xaa\x25\x75\x06\x31\x59\x30\x33\x9a\x0a\x87\xd8\xd3\x2a\xa7\xb9\xaf\x1f\x6f\x97\xa0\x4f\x54\x70\x36\x83\x22\x21\x8b\x4b\xe5\xc8\x27\x89\xca\x8f\x47\x6d\x89\xe7\x52\x8d\x38\x8e\x65\xd9\xf9\x6a\xcc\x4a\xfa\xcf\x92\xdb\xe5\xb8\x54\x15\x19\x79\xb0\x4a\x90\xc4\xea\x3a\xfa\xb5\xe9\xbf\xa1\xb4\x63\xb1\xb4\xa3\x9e\x36\xfb\x58\xde\x91\x1f\xe2\x55\x4b\x3c\x9a\xb6\x7f\x1b\x9a\xed\x16\x4b\x3d\x5e\xb9\x26\x62\x37\xe5\x10\xaf\x5b\xbf\xb2\x8b\xd2\x95\x50\xe0\xf1\x8a\x05\x1e\x9d\x3d\xb5\xe5\xdc\xf4\xe6\x63\xbb\x52\x71\xc4\x12\x30\xab\xba\xaf\x7c\x26\x4a\xd0\x48\x6e\x43\x3e\xc8\x14\x77\xcc\xea\x03\x2b\x30\x5d\xa2\x35\xe9\x07\xf2\x20\x28\xe4\xc9\xe5\x1d\x2e\x47\x82\xe0\xc7\x98\x3f\x2f\xf8\xea\xa4\x8f\x26\xf2\x99\x6b\xb5\x47\x90\x88\x4a\x52\xca\xe4\xa1\x12\x31\x22\xad\xb3\x13\x0f\xd8\x94\x12\x81\x45\x34\x85\xea\xce\x62\x63\x4c\x95\xb0\x01\x74\x32\xb9\x1c\x7e\xb4\x6b\x85\x4d\xef\x40\xf7\xaa\x87\x29\xc7\xe7\xb3\x7b\xae\x67\x32\x33\xaf\xe4\xca\x8c\xd5\x32\x7c\x97\x5c\xa7\xed\xdf\xb4\x10\x21\x27\xf6\x4e\x8b\x11\xf2\x64\x2a\xef\x8d\x8e\x05\x09\x05\x37\x84\xa2\x84\x1d\x15\x25\xd4\x90\x78\xb5\xc2\x84\xb5\x5c\x7e\x2f\x9f\x33\xed\xbe\xfc\x12\x79\xd3\xcb\x92\xd6\xb2\xd1\x70\xe7\x47\xaf\x76\xcd\x5d\x4f\xe0\x97\x9c\x29\x8c\x46\x2c\x34\x9f\x8d\x48\x1c\x83\xa4\x55\xdc\x76\x68\x2f\x78\xc7\xb9\x07\xf4\xdd\x8b\xa5\x66\x76\x9c\x70\x36\x91\x34\x36\x60\x33\x29\x86\x5e\xc5\xbe\xf3\x02\xc0\x15\x60\x7f\x93\x84\x08\x17\x95\x10\xe8\x3b\x49\x99\x45\x93\xcc\xff\x16\x73\x22\xd9\x7b\x65\x9c\x05\x98\xcd\xd1\x23\xe3\xcf\x09\x89\x27\xb0\x43\xd5\xc9\x1c\x23\x4a\x8e\x10\x55\xf9\x6b\x02\xd0\x18\x78\xa6\x06\x7a\xee\x90\x6b\x67\x2c\x00\x62\xdf\x15\xb6\x7b\x85\x27\x81\xe5\xf7\x27\x08\x5d\x30\x34\xc6\x91\x3a\x42\x32\x1b\x15\xe3\xc7\xdc\x34\x97\xd7\xd6\xb7\xb7\xf0\x62\x90\x90\x33\x5f\xf3\xf1\xfa\xb3\xe1\xa4\x83\x66\xd7\x5e\x42\xf1\x46\xb9\x85\x4f\x78\x13\x88\xd5\xcf\x99\xb4\x49\x18\x88\xb3\xfc\xe8\x5b\x78\xa9\x1c\x23\x1b\xf0\x4e\x0d\xde\x34\xe3\x71\xa3\xaf\xb3\xb2\x94\x55\xe7\x52\x24\x82\x5a\x45\xc9\x06\xaa\x60\x5c\x43\x6e\xad\x35\x49\x25\x08\x9e\xd9\xe0\x80\xbe\x6a\x40\xad\x31\x69\xa0\x7a\xf6\x54\x18\x0d\x73\x95\x2d\xbe\xa4\xec\x51\xef\x6e\x81\x0a\xce\x01\x2f\x59\x7f\xb9\x6e\xd3\x52\x7d\xe3\x91\x33\xce\x4c\x80\x70\x23\xbd\x93\x4e\x18\x4e\x56\xf4\x71\x2c\x50\x6e\x31\xa6\xe7\xf4\x2c\xab\x2e\x68\x2d\xc2\x38\xfb\x90\xf9\xe2\x4a\x3e\xa4\xca\x7a\x7d\x7d\x0f\xa3\x98\xa4\x84\xc5\x84\x45\x73\x60\x11\x06\xc8\x41\x82\xe1\x04\x61\x78\x0f\x27\x27\xe8\xdc\xd4\x17\xe5\x1a\x9e\xbd\xd6\xe1\x42\x9f\x61\x46\xc7\xda\x4e\x00\x27\xac\x9d\xe5\x80\x99\x69\xba\x18\x08\x29\xbc\xab\x39\xc5\xea\x76\x46\xdf\x20\x57\x1b\xa2\x32\xb3\xf2\xfb\xa8\xfd\xc2\x81\xaf\xb5\xed\x8e\x1e\xce\xf5\x60\x90\xd9\xe8\x18\xfe\xbb\x54\x70\xe7\x80\x8a\x0a\x14\x1d\x92\x10\x70\x07\xda\x88\x17\x5c\x8c\x4d\xc0\x7a\xdb\x88\xdb\x2d\xa9\x63\xf1\xbe\x51\x32\x6a\x66\x94\xd1\x59\x36\xf3\x82\x77\xa6\x63\x43\x64\xfd\x97\xa6\x12\x25\xd5\x76\x40\xe4\xc0\xdb\x91\xbe\x5c\xd9\x1c\x4d\xe8\x13\x61\x03\x96\x72\xca\xd4\x09\xba\xe2\x8a\x78\x2d\x32\x0c\x74\x16\x4f\x15\x9d\x19\xb4\x57\x41\xf4\x39\x30\xa0\xe0\x00\xb4\x39\xc5\xea\x08\xc5\x19\x1c\x55\x46\x94\x16\x1d\xfa\xc6\x55\xb0\x33\x90\x1f\x2e\x06\xcc\xdc\x74\x63\x4c\x93\x4c\x10\xab\xb3\x62\x53\x17\x54\x4c\xb9\x98\x99\x45\x82\xf3\x16\x31\xa3\x93\xa9\xd2\x5b\xa4\x75\x3c\x1b\x6f\x9c\x6a\x69\xc4\x07\x6c\x44\x10\x46\x29\x97\x54\xd1\xa7\x3c\x7e\x49\xc7\x08\x4b\x09\x1e\x94\x13\x74\x5e\xf2\xff\x53\x09\xa6\x77\x53\x5e\x31\x65\x43\xeb\x7b\x6e\xae\x47\xda\x78\x23\x4b\x5f\xb1\x54\xc6\x23\xc9\x93\x4c\xf9\x21\xd8\xfa\xbd\x2d\x5c\xe3\xae\x71\x01\x38\x88\xf9\x78\xc0\x1c\x5f\xcb\x13\xd4\x93\x48\x72\xbd\x4b\xd2\x6c\x65\x24\xa8\x22\x82\x1a\x14\x2b\xa2\xcc\x26\xe4\xe7\x34\x3f\x03\x33\x2c\x1e\xb5\x0a\xe5\x7b\xe0\x0d\xa6\x6a\xc9\xdb\x31\x32\x1a\x12\xc0\x7a\xf9\xdb\x01\xae\x7f\xc4\x38\x3b\x66\x64\x82\x97\xed\xc8\x80\x95\xb6\x04\x7d\x47\xc7\x85\x41\xda\x14\x73\xf4\x68\x37\x84\xcc\xa7\xa6\x5d\x32\x1f\x6e\xda\xa4\x71\xc2\xf1\x92\xb0\xf1\xb8\x38\xf4\xe8\x1f\x7c\x64\xe6\xa8\xed\x7e\xae\x40\x0b\xd4\xe6\xd5\x98\x0b\x32\xc5\x2c\x3e\x72\x9b\x55\x9e\x1b\xdc\x8c\xd6\xd5\xe6\x8c\x31\xd0\x04\x1d\x88\x32\x31\x58\x54\x98\x79\x7b\x61\x0d\x37\xbb\x15\xc5\x3e\xac\x74\x57\xe4\xa3\x41\xef\x17\xe3\x80\x30\x22\x6f\x9e\xda\x23\x2e\xe9\x2c\x4d\x8a\x9a\x2e\xcf\x37\x3a\xd6\x2a\x96\x93\x91\xfc\x09\x5c\x57\xce\x6a\x83\x5b\xdd\xee\x9c\xe6\xb3\x9a\x99\xe7\x82\x14\x6e\x0d\xe7\xf3\x32\x6d\x40\x3d\x11\xf6\x9d\x24\xfa\x3f\x15\x29\xcc\x3e\xa3\xac\x0f\x98\x53\x41\xbe\x07\x29\x63\x87\xf5\x9c\x67\x5a\x85\x36\x30\xb7\x96\x7e\x28\x32\x41\xee\xd2\x39\xb1\x87\xc1\x3d\x5a\x7b\x51\x29\xaa\xd5\xec\x1f\x29\x20\x74\x9d\x6f\x08\xbb\x4f\x59\x4c\x1a\x9b\x59\x75\x92\x1a\x4d\x77\x8b\x11\xa8\xc3\xe5\xfd\x27\x6a\x07\x18\x51\x16\x0f\x15\x37\x9d\x5c\xf2\xd1\x36\x8c\x56\xd6\x3b\x3e\x04\x66\x52\x3f\xbb\x56\xac\xc8\x25\x92\x80\x33\x55\x90\x84\x3c\xe1\xe2\xf6\x05\xf8\xd0\x7c\xf2\xe0\x1b\xe9\xe4\x7b\xb8\xd6\x83\x3d\xe1\xc4\x16\xc5\xd8\x38\xbc\x6c\x66\x86\x8b\xf3\x8d\xf2\x53\xed\x28\x75\x7b\xd5\xac\xbe\xb8\x6f\xff\x4c\xe6\xf5\x84\x5d\x02\x90\xd8\xb6\xfb\x39\xcd\x56\xf0\x83\xdf\x14\xef\xb4\x7a\x2b\xa6\x94\x3d\x1a\x79\x51\xec\x0c\x28\x90\x0a\x4f\xac\x1e\xea\x96\x76\x84\xc8\xd7\x88\xa4\x0a\x51\xf5\x5e\x3f\xf1\x48\xe6\xc7\x46\xfe\xa7\x98\x8a\x93\x01\x3b\xa7\x63\xf0\x8c\xaa\x62\x2c\x89\x18\x56\x99\x16\x19\x73\x63\x81\xc7\xf9\x33\x96\x20\x12\x7d\xe7\x05\x40\x62\xd9\x74\x6d\xb4\xb3\x7e\x4b\xc1\x3b\x9d\x15\xc4\x58\x06\x31\x29\xec\xfd\xa0\x25\x0e\xa4\x0c\xb1\x09\x50\x83\x59\x14\xa4\x0a\x0b\x1f\xeb\x5b\x11\xa8\xa1\xaf\x14\x69\x6f\x65\x56\xe0\x96\x32\x5e\x79\xa5\xee\x0a\x68\xe4\xe3\x9f\x4b\x0c\xf8\x0a\xe5\x72\x37\x0b\xbd\xd6\xe1\x9f\x32\x1b\x8f\xe9\x57\xf0\x5f\x38\x9d\xc1\xd9\x98\x91\xe0\x52\xf3\x06\x68\xa5\xc8\x1d\x25\x93\x32\xb0\x49\xe9\x5c\xed\x9b\xda\x9e\x5e\x19\xf4\xa1\x91\xda\x7f\xcf\x88\xd8\x88\xde\xb9\xe0\x58\x25\xf1\xd4\x93\x59\xf5\xde\x00\x37\xa8\xc2\x1d\xb3\xcf\xfc\x51\xef\x71\x03\xe9\x96\x03\xdd\x37\xde\x43\xfa\xc7\x95\x27\xe2\xdf\xcf\x4b\xe4\x91\xcc\x91\x5d\xdd\xbd\x61\xdb\x4f\xe9\x0b\xe3\xc8\x42\xe9\x63\x9b\x22\x97\x17\xb5\x63\x97\x1d\x64\x42\x60\xa6\x3b\x99\xb2\x3d\x35\x3c\x9f\x8c\x1d\x8c\xb2\xc9\x80\x39\xda\xca\x23\x64\x0a\x02\xf2\x83\x6d\xc6\x2a\x75\x31\xc0\xde\xab\x39\x63\x77\x73\x9e\x9b\x0c\x0a\x46\xa4\xd4\x2a\x90\x54\x02\x53\x66\xa3\x75\x8e\x3e\x72\xa0\xa5\x49\xa5\x22\xe1\x08\x3c\x46\x47\x4e\x52\x1e\x79\x62\x75\xc0\x4c\x6d\x11\xfa\x33\xfa\x4e\xe1\x89\xc9\xee\x01\x9c\x52\x9c\x00\xc2\x29\xd8\x83\xd6\xff\xe2\x95\x81\xe4\x27\x92\xc6\xdf\x9f\xb6\x7d\xd3\x78\x8b\xbe\x83\x61\xe0\x90\x6b\x1a\x16\x04\xa2\xe3\xe2\x3f\x48\xfc\x7d\xdb\x48\xc5\x4b\x8f\x64\x7e\x54\x25\x72\xf3\x2d\x7e\x8f\x37\xca\xc5\xdd\xd5\x35\x0e\x93\xee\x1e\x8e\xc6\x23\x92\xfc\x52\x2c\x14\xb5\x8a\xa2\x1f\x29\xc3\x9b\xc9\xa0\xda\xe9\x75\xab\x35\x18\xcd\x9b\x3a\x14\xd6\x88\x9e\xb5\xb1\x75\x7a\xc6\x6a\x21\x48\x7f\xce\xda\x66\xae\x7f\x25\x86\xfc\xd6\x29\x49\x52\x4f\x4d\xd0\xfc\x92\xc3\x04\x9b\xce\x4e\xda\x74\x9d\x65\xcc\x40\x3e\x9b\xfc\x9e\x67\x7b\xd2\xad\xc8\x28\x06\x3f\x19\xb0\x0b\x7d\x41\x4b\x25\x38\x9b\x24\x73\x84\xe3\x27\x2a\x8b\x96\x85\xfa\x40\x66\x33\x22\xec\x27\xa8\x34\xf6\x95\x6d\xf7\x85\xdd\xc5\xa6\xe7\xa6\xaf\x3e\x50\x43\x5d\x5b\x4d\xfd\x47\x63\x41\xea\x59\x4a\x97\x1f\x57\x53\xe0\x60\x37\xb7\x22\x3b\x5f\xd8\x49\xfd\x8b\xef\x87\x46\xb3\xc2\x65\xed\xe4\xe5\x87\xaa\xc3\xda\x52\xbd\xc5\x59\xbd\xf2\x85\xd0\xf5\x22\x70\xfd\x31\x32\x53\xd0\xa6\xbf\xe3\x42\x98\x66\x72\x2b\x19\xd3\x95\x05\xda\x59\x1b\xbd\xd7\x77\x56\x13\x0a\x9e\x2e\xa9\xb0\xa2\x91\xbd\x05\xb8\xb0\xfe\x7a\xeb\x41\x69\xde\xda\x4d\xad\x4f\x19\xe1\x64\x71\x87\x5b\xb2\x27\xcc\xf3\xed\x2e\x6d\x7b\xdc\xcc\xd8\xad\x10\x3e\x11\x4f\x92\x55\x1a\x12\x56\x56\x7e\x56\xbc\xde\x3e\xa3\xe2\x3b\x7a\x03\xdc\x5e\xc0\xa9\x31\xae\x28\x9c\xd8\xc0\xa0\x54\x76\x97\xfc\x87\xcc\xa5\x36\xb7\x8e\x82\x01\xe3\x63\x68\x59\x99\x34\xd5\x28\xa4\x82\xcf\xe8\x2a\x3d\x53\x4c\xda\xfe\xad\xcb\xf2\x58\x12\x33\x73\xb9\x20\xe0\x68\x35\xec\x65\xbf\x08\xe8\x1b\xd8\x3a\x4f\x5b\xce\xd0\x0c\xa7\x6b\x11\x7c\x59\x8e\x53\x0f\xcd\x4c\x82\x99\xa5\x1e\xa0\xa7\x13\x28\x43\x06\x22\x3f\xe3\x79\x01\x74\xd4\xd4\x0d\x83\xad\xc4\x0e\x0f\xfa\xf1\x0b\x36\xe6\x2b\x1c\xce\x02\x98\xc8\x9e\x3e\xec\x78\xd6\x3b\x7f\x79\xce\x8d\xd9\x7d\x43\xd3\x2e\xe7\xf1\xac\x8e\xa9\x57\x3e\x99\x8e\x82\xbb\x8c\xb8\xfb\x42\xc4\x7b\xe7\x5f\xab\xdc\xad\xe5\xa3\xe5\x8d\x88\x60\x3a\xed\xa4\xfa\xff\xd8\x7b\xd7\xe6\xc6\x8d\x24\x5d\xf8\xfb\xfe\x8a\x5a\xef\x1b\xd1\xdd\x67\x29\xca\x6d\x9f\x99\xf0\x6a\xc3\x11\x2f\xad\x56\xdb\x1c\xab\x25\x8d\x2e\xf6\xec\x19\x4e\xb0\x8b\x40\x91\xc4\x08\xac\x82\x51\x80\xd4\x9c\xdd\xf9\xef\x27\x2a\x33\xeb\x82\x1b\x09\x88\x52\xdb\xbb\x67\x3e\xec\x8e\x5b\x04\xaa\x0a\x75\xcd\xca\x7c\xf2\x79\x3e\x54\xe6\xe1\xb3\xf7\x51\xad\x1c\xf8\xcd\xa7\x06\x5e\xb5\x97\xfa\x19\xfa\x8c\x16\x49\xaf\xce\x3a\x90\x89\x6d\x98\xaa\x87\xad\xd1\x69\x78\x1c\x7c\x93\xdb\xd7\x19\xb0\x9b\x69\xba\x35\xf8\x3c\x23\x22\x7c\x58\x26\xa9\xd0\x63\x36\x6d\x09\xd7\x5b\xba\x05\x97\x1e\x80\x89\x9f\xd6\x7a\x2a\xf3\x24\x90\xf9\xb7\x36\x12\x4b\x40\x6e\x30\x84\x2c\x05\xe1\x29\x08\x94\xaf\xd5\x23\xe6\x5a\xe6\x89\xd9\xb3\xd0\x58\x2d\x20\x78\x69\xf6\x82\x84\x62\x7f\x18\x3a\x75\x2f\x28\xcc\x80\x31\xd7\x1c\x17\xf6\x0c\x3d\x10\xf5\x21\x7d\x0e\xc1\xd6\xfe\x6c\x16\xb6\xd6\x5b\xf3\x46\x9f\x4b\x81\x7d\xf6\x80\xd6\x39\x2b\x7f\xb8\x4b\xf7\x3d\xbc\x6a\x5d\xf8\x9c\x2d\x73\x01\xb7\xec\x8d\x63\xc8\x43\x89\x0c\xa5\xe0\xbc\xbb\x79\xf7\xe3\xf1\xdd\x94\x89\x22\x62\x69\x72\x2f\x66\x32\xd2\x0f\x70\xe9\xfb\xa5\x14\x85\xf9\x73\x87\x13\x28\xd9\x08\xa9\x61\x27\x48\x8a\x9e\xf7\x35\xdb\x31\xe6\x7f\xdf\x55\xdf\xef\x73\x2b\x77\xac\xae\x66\xee\x5a\xf5\x4a\x98\xa6\x20\xd0\x87\x5d\xdb\xe2\x65\xfe\x0e\xdd\xe7\x67\x6d\xda\xf6\x4f\x48\x7e\x97\x7f\x2d\xe5\x40\xa3\xeb\xd4\xbf\x14\xb4\xa2\xc3\xa6\xdb\x64\x1c\x94\x6b\x86\x65\xd5\xe3\x3b\xad\xa5\xef\xdb\x44\x3c\xc9\x91\x45\x4a\x08\x57\x0c\x2b\x72\x21\x60\x0b\x71\xf3\x89\xce\x7a\xe2\xd5\x73\x1f\x16\xbc\x34\x9e\xc9\x0f\x16\x3f\xe9\xff\xaa\x7d\x54\x69\xb3\x08\x04\x7d\xaa\xa5\x40\xb1\x71\xa2\xdd\x1f\x40\x9e\x51\x97\x69\x81\xfa\xd4\xcb\x44\xf2\xd4\x35\x14\x7f\x69\xdb\x25\x72\x2e\xa3\xf5\xa1\x80\x88\x64\x39\x17\xe9\x10\x4b\x74\xba\x3c\x4b\xb5\x99\xdf\xd1\x7d\xc7\xea\x7c\x8a\x02\xbb\xff\x18\x8c\x2d\x92\x8a\x2b\xf3\x80\x0a\x9e\xa2\x3e\xb4\x60\x80\xb8\xab\x73\x21\x20\xdd\x9b\x19\x45\xb2\xd4\x11\x70\x87\x49\xc8\x2e\xc1\x10\x6a\x61\xbc\x98\xc9\xbc\x94\xe0\x05\x77\xf8\x5b\xce\xbc\xfa\x4f\x64\xd1\x30\x84\x4d\x5a\x99\x6d\x02\xc5\x75\xf0\x61\x73\x3f\x53\xa5\x86\xc8\xe3\x46\x14\xe6\x80\x7a\x2d\xc6\xab\x31\x01\xe0\x47\x2c\xcb\x93\x0d\x80\x07\x5c\xec\x20\x1c\xba\x53\x5e\xf0\x54\xad\x9e\xdb\xab\xf4\xc4\x64\x2a\xdb\x0c\x36\x7d\x67\x3a\x7f\x25\xa4\xc8\xe1\x43\xc1\x97\xdd\xba\x84\x7b\x78\xb9\x3b\x76\x6e\x88\x19\x53\x98\x5f\x3b\x8f\x05\x2f\x0b\xb5\x31\xf7\x5b\x9e\xa6\xdb\x11\xe2\x0b\x04\x5b\x73\xbd\xb6\x03\x8d\xa1\xe1\x3e\x67\x13\x75\xee\x29\x8f\xd6\xe2\xa6\xe0\x45\xd9\x8a\xc1\xab\xb5\xf2\x0b\x21\xcb\xcd\x17\x27\xec\xcf\xfe\x1b\x4f\x27\xa7\x3f\x9c\xcd\xdf\x4d\x6f\x26\xdf\x9d\x9f\xbd\x0b\xbe\x87\x7e\xf9\x30\xbd\xb9\x69\xfe\xf5\x87\xe9\x6d\xf3\x8f\x57\x97\x57\x77\xe7\x93\xdb\xb6\x52\xce\x2f\x2f\x7f\xbc\xbb\x9a\xbf\x9f\x4c\xcf\xef\xae\xcf\x5a\x5e\xbd\xbb\xed\xfe\xf1\xe6\xc7\xe9\xd5\x55\x5b\xa9\x67\x3f\x4d\x4f\x4d\x75\xf4\xf7\xbf\x04\xcb\x0e\x40\x12\xa6\x07\x3a\xbe\xaf\xbe\x32\x8f\x58\xf5\xc1\x13\x76\x57\x57\x38\xa3\x94\x3b\xa4\x8b\x7b\xe4\xda\x6c\x6e\x90\xf1\x09\x2e\x58\xdf\x5b\x5d\xaf\x22\x2a\x3d\x5a\x0b\x96\x2a\x75\x5f\x66\xb4\xe7\xa1\xb7\x5d\x2a\xf4\x08\x09\x1d\x94\xf6\xc3\xf4\xf6\xa4\xa9\xb4\xe6\x0a\x0b\x88\x71\x9d\x73\xf9\x91\x23\x49\x04\xec\xb3\x18\x5c\x24\x05\x2e\x0f\x52\x08\x6a\x70\x43\xb6\xab\x1e\x2c\x8d\xcb\xa2\x56\x4d\x1c\x7b\x3a\x2d\xf8\xb0\xa0\xe0\xea\x80\xef\xea\x4d\xd7\x1d\x28\x31\xcb\x16\x22\xe2\x25\x62\xf7\xcd\x01\x96\xe7\x2a\x0f\x1b\xec\x27\xca\xf3\x15\x4a\x13\xac\xb5\xc0\xda\x98\x99\x0f\xd7\xf7\x49\x96\x55\x86\x9d\x26\xe2\xfe\x91\x07\x51\xbf\x87\x24\x2a\x44\xfc\x45\xd3\x2e\xf2\x6c\x0b\x68\x37\x9b\x55\x6d\x9a\x1c\xac\xf5\x44\xae\xd0\x97\x60\xe5\x15\xd7\x5b\x87\x37\x03\x78\xb3\x07\x7c\x83\xdc\x8b\x39\x6b\x9c\xfc\x5d\x02\x00\x32\x5e\xb0\x47\x01\xc4\x43\x25\xe9\xcb\xe2\x9d\xde\xec\x19\x50\x1d\x22\x3f\xac\x5a\x74\x85\x90\xa8\x73\x93\x7f\x0e\x43\xde\xbc\xaf\xc5\xb0\x20\xde\x5e\xf6\x98\x77\x58\x28\xec\xfa\x36\x33\x04\x5a\xfc\x9c\x41\xbf\x96\x93\x6e\xcf\x21\x64\x8e\x83\x3e\xed\xb1\x8c\x7d\x15\x19\x9c\x01\x21\xf8\x50\x2a\x65\x6f\x5f\xdd\xaa\x98\x6f\xcd\xe4\x00\x10\x89\x2e\xb3\x4c\xe5\x05\xeb\x28\x03\xb1\x0a\xd8\x3e\x38\xcb\xe8\x3b\xdc\x16\x09\x85\x18\xcb\x45\xb7\x28\xee\xf5\x23\x11\xa3\x7e\x0d\x62\x67\x41\x1a\x19\x5c\x30\x9d\x3a\xea\xa6\x72\x55\xaf\xcc\xd0\x36\xa3\xfa\x90\x3c\xdc\xcc\x18\x0e\x7d\xc5\xba\xdb\x6a\xbf\xb4\x25\xb4\x0e\x79\x2a\x96\xc5\x7c\x60\xb0\x0b\x4a\x94\x5d\xbc\x8f\xc9\x6a\xfd\x0c\x25\xf6\xbf\x7d\x7c\x45\xf0\x77\x73\xe5\x08\x3c\x0f\xb9\x52\x05\xda\xbd\xfe\x6e\xc4\x6c\x6f\x82\xdb\x82\x2a\x25\xc6\x04\x67\x5c\x9a\xbb\x04\xa2\x06\x1d\xb9\xc0\x78\x26\xcf\x00\x66\xec\x2f\x38\x96\x48\x01\x6e\x17\x7b\xef\x15\x96\xc0\x0c\x44\x77\x3e\x6b\x4e\x53\xb7\x0e\x84\x9f\xf7\x08\x4e\x15\xe9\xd6\xb1\x81\xc5\xac\xf2\x5e\x9f\xd5\x83\xde\x74\x6b\x5a\xe2\x07\xe3\xd2\xd1\x85\xc8\xc8\xe3\x8f\xdf\xe9\xf1\xf0\x10\x6d\x36\x55\x8d\xd9\xcf\xd6\xa3\x04\xe9\x61\x2e\x5d\xca\x22\x9c\x53\xbe\xb5\xd4\xf1\x6d\x1d\xfb\x1c\x6c\xec\xcf\x9d\x30\xb6\xbb\x83\x1d\xed\x6a\x4b\x2f\x57\x2e\xf6\x52\xa2\xa7\x77\x00\x28\xec\xd4\xbd\x74\x23\x76\x63\x67\xdf\x83\x58\x3f\xe5\x1f\x80\xcd\x22\xd3\xed\x3f\xe3\x60\x21\x5f\x8b\x05\x69\x90\x78\x3a\x45\x66\xcd\xfa\x81\xc8\x22\xd2\xb9\xb0\x65\x92\xa6\x60\x07\x8c\xd9\x44\x6e\x2d\xdd\x89\x39\x0a\x2d\x0c\x39\x59\x49\xb5\x8f\x89\xa1\x63\x32\x45\xc1\x64\xba\xe9\x9e\x4c\x88\xff\xf0\x6c\x57\xcf\x33\xa3\x9e\x81\xf9\xd0\xec\x2d\xbc\xa9\x9b\xd3\x9f\xef\x70\x80\x53\x20\x3c\xcd\x3f\x57\x0e\x61\xa3\xb9\xc1\x8b\x7f\x6f\x6f\xfa\xf7\x25\xcf\xb9\x2c\x20\x33\x8e\x8c\xd6\x5c\x04\x09\xfa\xe2\x13\xa0\x98\x25\x3a\x98\xe1\x4f\xe1\xe0\x5a\x28\x01\xc2\xcf\x92\x78\xc4\x92\xb1\x18\x83\x86\x73\x6e\x6c\x89\x85\x7f\x72\x6d\x2c\x87\x99\x6c\x64\xfc\x8c\xd9\x24\xd5\x8a\xde\x10\x32\x4a\x95\x06\x10\xf7\x22\xa4\xd7\x87\x99\x4f\xe1\xaa\xc5\x16\xee\x37\x30\x94\xbe\x78\x45\x3f\x04\x2f\x82\x14\x31\xc4\xda\x53\x58\xe9\xfe\xef\xff\xaa\x88\x28\xb8\x0b\x7f\xf1\x82\xa2\x6f\x8d\x63\xe8\xc5\x06\x09\x05\xc5\x77\x0d\x10\x3c\x01\x03\xe3\x33\xb1\x02\x9e\x42\xf6\x9a\x17\x2c\x15\x5c\x17\xec\xed\x9b\x41\x98\x13\xfb\x81\x7e\x77\xa5\xe5\xeb\xe9\x14\x6c\x42\x6e\x68\xdc\xb9\x8a\x41\x61\x9a\xe7\x05\xe3\x4c\x8a\xc7\x30\xff\x4a\x41\xca\x9c\x95\x8d\x16\x01\x03\x0c\x66\x5d\x20\x7f\x15\xe4\x34\xe3\x95\xa9\x63\x1f\xb1\xa2\x28\x14\x96\xa5\x66\xb5\xcc\xac\x91\x43\xb5\x41\xc2\x82\x79\xc8\xa7\xc6\xae\x79\x31\x93\xb4\xb3\x5a\x38\x4a\x40\x86\x30\x49\xd3\x6a\x3a\x2a\x87\x8c\x6b\x69\x3e\xd8\xb4\x3e\x1e\xbb\x0e\xba\x80\xeb\x97\xcb\x09\xac\xf8\xff\xfc\x62\xc1\xac\x15\xc7\x0a\x1a\x96\xdd\x6a\xed\xb4\xf9\xad\x3f\xa3\x11\xdc\x52\xfd\xb9\x5a\x25\x11\x4f\x7b\x18\xc3\xa2\xad\xc9\x7b\x16\x56\x33\x56\xb0\xc3\x36\x7e\xee\x0a\xfa\x9b\xca\xed\x7e\x77\x38\x66\x1f\x55\x8b\x1b\xbf\x63\x70\x03\xdb\xe2\x90\x0b\xb8\x4b\x4e\xfd\x5c\x91\xe4\x4a\xd3\xa7\x31\x50\x63\xec\xdf\x05\x3d\xd5\x84\xdd\x3a\x30\x43\x31\x0e\x32\xdf\x83\x44\x5b\x02\x91\xe2\xc6\x47\x4f\x76\x44\x74\xb3\xff\xde\x9f\x3f\xf2\xdf\x6f\x3f\xc5\x81\xeb\x9a\x1f\xde\x6d\xec\x4d\xe2\xbf\xf2\x08\xf2\x61\xa1\x26\x9b\x89\xdb\xa4\x2d\xb5\x62\x37\x1c\x82\x04\xad\xe6\x61\x96\xab\x48\x68\x3d\x66\x67\x70\xd0\xd0\x3f\x19\x5f\xda\x40\x47\xf0\xf0\x4c\x9a\x9b\x89\x65\x39\x0c\xca\xaf\x4e\xf1\xb6\x15\x80\x94\xc9\x07\xc5\x88\x36\xfb\x95\x0c\xbb\x6e\x13\x96\xb1\x19\xca\x00\xf1\x33\x76\xb6\x3a\x61\xb1\x8a\xee\x45\x7e\x9c\x8b\x38\xd1\x27\x10\xb3\x2f\x3a\x83\x85\x1b\x73\xdb\x3e\xd8\xd2\xe8\x02\x20\xec\xa1\x8e\x38\xc5\xfa\x29\xa5\xc0\x26\xa1\x8d\x58\xb2\x84\xeb\x84\xcd\x5c\xc6\x54\x3d\x4b\x0a\x29\x64\x91\x6f\x11\xed\x6c\x5d\x59\xb5\x8e\xb0\x37\x0d\x63\xb4\x75\xe5\xdc\xe7\xcf\x81\xed\x79\xe2\x67\xdf\xae\x85\x16\x16\xc8\x80\x1f\x55\x28\xca\xf8\xc3\xed\x22\xe3\xc5\x5a\x03\xc1\x4b\xb5\x0f\xe8\xd2\x05\xaf\x9a\x1e\xe2\x19\xe0\x20\xd0\x4b\xe1\x5f\x72\x34\x24\xba\x48\xd2\x74\x26\x31\x71\x03\xb8\x58\x5e\xb5\xf2\x48\x99\x57\x47\x8c\xc7\x31\xfb\xff\x5e\xbf\x3f\xff\x8f\xdb\xb3\xf9\xf4\x02\x7c\xde\xd3\xf3\xb3\x37\x23\xf7\xc7\xcb\xbb\x5b\xf7\x57\xf4\xb0\x3c\x88\x9c\x6d\xf8\x3d\x5c\xf1\xa4\x16\x94\x62\x2c\x66\x32\x6c\xa9\x65\xd8\x32\xbf\x68\x61\x11\xb4\x64\xa6\x38\xa2\x71\x1a\xc3\x2e\x7a\x5e\x22\x5e\x1d\x70\xf9\xbd\x76\xaf\xec\x9e\x83\x76\xf2\xb8\x2a\xac\x19\x08\x99\xe4\x5c\x07\x94\x4b\x74\xf7\xf5\x13\x4e\xc8\x55\x22\xbb\x70\x7e\x42\x3e\xbc\xa4\x11\xff\xa3\xd8\x02\xd0\xfc\x8a\x27\x79\xef\xb9\xd7\xce\x99\x69\x57\x8c\xb9\xa7\x73\x5d\x5f\x54\x1a\x6d\x61\xcc\x49\xef\xc4\x92\xb6\xd1\x25\xff\xea\x9f\x4b\x24\xac\xe2\x53\x91\x5b\x2e\x37\x97\xf5\x6c\x09\x4f\xdd\x41\xe3\xe7\xe0\x4c\xde\x5e\xbe\xbb\x3c\x61\x22\xe5\x0b\x05\x09\xaf\x04\x35\xb2\x45\x50\x87\x45\x6a\x13\x14\x54\xe1\xf1\x1b\xb1\xcc\xf3\xf8\x85\x4e\xb4\x31\x96\xb1\x87\xcf\x2f\x53\x79\x93\x05\xef\x79\xaf\x80\xf4\xb1\x57\x2a\xef\x73\xfc\x9b\xc7\x30\x2f\x24\x33\x17\xb9\xda\xce\x4b\x67\xf3\x52\x70\xe0\x78\xa1\xb0\x10\xf9\xf2\x09\x18\x9b\xa6\x15\xd5\x75\xb3\x70\xf4\x98\x42\xfb\xfe\x49\x25\xd9\x8f\xdf\x68\xb6\x28\x8b\x99\xac\x96\xa1\x24\x9b\xfc\x7c\xc3\xbe\xe3\x45\xb4\x7e\x33\x93\x90\x25\xfa\xe3\x37\x1d\x84\xa3\x83\x39\xbc\x4d\x9f\xbc\xe3\x05\x3f\x57\x3c\x4e\xe4\xaa\x8d\xc0\xdb\xab\x4c\x9e\xdd\x4e\x4e\x98\x15\xfb\xf1\xf9\xd2\x85\x25\xce\x09\x0a\x82\x0d\x19\x3e\xc4\xee\x22\x94\x33\x58\x21\x39\xc6\x9b\x19\x1c\x58\x33\x79\x8b\xcc\xe5\x66\x57\x4d\x0a\x96\x29\x52\x3a\x35\xb7\x32\xe4\x74\xe7\x96\x47\x40\xa4\x5b\x66\x7a\x07\xa6\xb1\x1b\x0c\xb2\xc7\xc0\x9e\x69\x6e\xf6\x33\x09\x17\x74\x97\xc1\x9d\xaa\x88\xa7\x80\xf5\x3b\x0a\x7c\x7a\xe6\xda\xae\x4a\x60\x51\x02\x90\x8d\xdc\x56\x21\xb9\x8e\xd8\xcb\x19\x65\xe1\x40\x81\x03\x00\xc6\x91\xe2\x90\x1b\x65\x76\x1c\x64\x2c\x06\xe7\x5b\x8a\xbd\x63\x5e\x74\x0c\xc6\xd8\x2d\xe6\x57\x47\x6e\xa0\x4a\x69\x19\xfb\x22\x70\xdf\xcb\x2d\xc0\xc2\x41\x9a\x50\x01\xa4\xc4\xef\xce\x34\x29\x1b\xa3\xe8\xce\xc4\xe0\xb5\x99\x44\x04\x62\x65\x5c\x42\x8e\xcb\xa0\x76\x25\x01\x20\xd9\x64\x54\x28\x33\x02\x4c\x92\xad\x9f\xe5\xe2\xc8\xf1\x04\xc4\x95\x3e\x35\x27\xec\x98\x5d\x87\xd7\xeb\x58\x45\xe5\xc6\xea\x8f\x00\xc7\x00\x21\xeb\xe8\x10\x75\x33\x04\x0f\xf6\x7d\x33\x1e\xb8\x0c\x0b\x01\x24\x4b\xbd\xef\xc7\x38\x61\x26\xe1\xab\x4d\x4b\xbd\xdb\xf0\x85\xbd\xe3\x30\x34\x1c\x16\x34\xcf\xaa\x25\x55\x4a\x3b\x98\xbd\xe3\xc2\x6b\x24\xa8\x1c\x8c\x2d\xf1\x29\x53\xe0\xe4\x46\x12\x03\x15\xbf\xd2\x6c\x7a\x65\x2c\x20\x73\xe3\x75\x6b\xb0\xd4\x05\x82\xd6\x30\x1b\x1d\xde\xc6\x34\x84\x11\xfb\x92\xcd\xca\x2f\xbf\xfc\x3a\x62\x9f\xec\x7f\xfc\xfe\x77\xbf\xfb\xfa\xf7\x43\xd2\x54\xec\x85\x1c\xca\xf5\x7d\xe4\x44\x67\xab\x26\x51\x38\x02\xcd\x9d\xea\x80\x51\xa0\x05\x78\x20\xbb\x40\x17\x26\x89\xaf\x68\x85\xeb\x70\x65\xb2\xca\xd2\xf4\x48\x02\xc8\xa9\xae\xec\x10\xce\xd8\x25\x8b\xfe\x9f\x77\x50\xfa\xce\xcd\x52\x79\x1a\x76\x2a\x49\x9d\x79\x6d\x0a\x61\xaf\xc9\xff\x57\x40\x00\xf1\x8d\x3d\xe0\x54\x1a\x8b\x1c\xdb\xe4\x5c\x76\xce\x91\x08\x9b\x83\xf8\x94\xa5\x2a\xb6\x22\x02\x9e\x31\x23\x01\x03\xe1\xec\x13\x37\x3b\xf7\x88\xc8\x66\x29\x6f\x15\x22\x2f\x4b\x1e\x09\xca\xb1\x7e\xfd\xe9\xc4\xfc\x6d\xc4\xb6\x27\x00\x4e\x1d\xb1\xbf\x9d\x10\xa7\x24\xcf\x8b\xb9\xf9\xd3\x1b\x6b\x6b\x53\x11\xd0\xe8\x44\xb3\x57\xc7\x0f\x3c\x3f\x86\xed\xf9\x18\x5b\xf4\xca\x27\xa9\xa3\x7a\x76\x68\x9b\xa7\x4a\xdd\x13\x70\xb7\xf1\xe2\xb1\xa5\x27\x86\xe9\xed\xe2\x26\x38\xf4\x8e\xbe\xaa\x60\x47\xf0\x80\x60\xe3\x6c\xc1\xc6\x7f\xd5\x4a\xb2\xf1\x96\x6f\x52\xfa\xab\xfd\x95\x70\xc5\x5c\x53\xae\x5d\xec\x30\x42\xe9\x16\x3d\xa5\xdf\xa5\x6a\x01\x5f\xf5\xc1\x7e\x29\x22\x73\xa1\xa1\xfe\xf4\xf1\x07\x16\x7d\x88\xa5\x6b\x01\x96\xcd\x8d\x2a\xf0\x11\x4a\x9b\x6d\x7e\xd5\x27\xd7\xa4\x3f\x61\x5c\x18\x3a\xc5\x26\x07\xa2\x73\xd8\xa1\xe2\x4c\xa1\x9f\xd8\x6b\xda\x82\xde\x98\x33\x86\x60\xd0\xd8\x0d\x6d\x15\x6c\x5d\x05\xff\x11\x54\x90\x48\x86\xe9\x9e\x3b\xde\xfc\xdb\xf1\x78\x3c\x76\x6f\x03\xb7\xd3\xff\x61\x49\xa1\x45\xba\xc4\x92\xec\x09\xb6\x9d\xc9\x0f\x56\x9e\xcc\x3a\xaf\x3d\xf1\x79\x96\xab\x42\x45\x2a\x65\x47\xde\xa1\x1b\xab\x48\xb3\x7f\x31\x66\x6d\xd0\x95\xf0\x47\x73\x8f\x6b\x5f\x53\xa4\x87\xf2\x99\x16\x15\x39\xc4\xeb\xcb\x2a\xe4\x3a\x76\x17\x5b\xae\xc3\x24\x67\x98\x0b\x66\xe6\x1c\x13\x1f\x72\x9e\x9b\x87\xc5\xa7\x02\x7e\xea\xa0\x9b\x6e\x85\xc8\xb7\x9f\x94\x8d\xed\xd6\xb3\x4e\xe3\xb4\xee\xe8\x00\x62\x85\xa5\x9d\x01\xbf\x73\x14\x86\x4f\xcc\xe1\x22\x43\xc1\x2c\x5d\x6e\x36\x3c\xdf\x1e\xfb\xd5\xd6\x9c\x9c\x9e\x8f\x18\xf6\x98\xd4\x76\x00\x84\x70\x53\x5a\x5a\x84\x62\x20\xf3\xd2\x9e\x68\x6e\xed\x46\xa0\x78\x1e\xf0\x7a\x09\x19\xa9\x98\xe6\xb5\xcf\x6a\xad\x5a\x2c\xee\x99\xa6\xad\x62\x11\x31\xda\x3b\xe3\x64\x81\x44\x77\xf4\x84\x7d\xb9\x63\xfb\x56\x73\x5d\x98\x8d\x72\x35\x20\x3c\x3a\xbd\xbc\xb1\xef\xf4\x3f\x74\xa1\x1f\xaa\x26\x3b\x4f\x43\x16\x69\xb9\x62\x39\x7f\xf4\xc7\x2f\x60\x3b\xd0\x3b\x53\xba\x9c\x5f\xfc\xf7\xa9\xba\x4a\x52\x73\x6a\xc1\x1c\x1f\xcf\x64\xe5\xcf\x23\x26\xd2\x64\x93\x48\x87\xad\xc3\xcd\x5d\x2d\xd1\x7a\xbe\x4f\x0a\x33\x64\x3a\xbe\x37\x3b\x98\x65\x3f\x0d\xae\x54\x13\xb9\xb5\x53\xc7\x05\xa6\xc8\x03\x51\x6a\xd3\x2e\x7f\x47\x07\x36\x80\x24\x16\x47\x64\x90\x26\xc1\xc4\x83\xf5\x3b\x93\xa6\x34\xbb\x96\x3c\x0c\x39\x28\x2f\x28\xee\xc8\xca\x46\x05\x3b\x00\xd4\x51\xc1\x12\x3b\xfb\xb7\xc5\x40\x39\x93\xe5\xe6\xd0\x24\x16\x82\x25\xff\x5a\x6e\xba\xab\x5c\xd8\x93\x8a\x12\xa2\x84\x2c\x37\x76\x41\x0d\x98\x71\x67\x64\xfe\xc4\x22\x4a\x39\xf2\x39\x9a\x82\x00\xf9\x38\xc2\x00\x69\x16\xd4\x85\xc7\x0b\x56\x83\x4a\x94\xa9\x90\xaf\xf1\xdf\x6f\x18\x9d\x0d\x5f\x8e\xe8\x3c\xcf\xb5\xe3\xc9\xc3\x31\x07\x25\x77\x11\xa3\x0f\x1d\xb4\x3b\x56\x3c\x8f\xd1\x5b\x1e\xde\x2a\x30\x33\xd8\xd8\x5f\x5b\x55\xb2\xc7\x44\xaf\x67\xf2\x56\x59\x87\x23\x93\xca\xa9\x9f\x8c\xe0\x32\xda\xa8\x8f\x6b\xd8\x04\xa0\xd5\x6d\x33\xc0\x6c\xc2\x07\xe5\x30\x01\x88\x76\x2e\x55\x2c\x0e\xa3\xf9\xbc\xf5\xb1\x0a\x1b\xbf\xce\x05\xe6\x99\xc1\x49\xd1\x95\xa6\x2b\xb4\x1e\xe8\x9b\xaf\x0f\x3c\x9c\x43\x54\x8e\xa9\x55\x3d\x0e\xd2\xa0\x09\x19\x74\xdd\xa9\x06\xa5\xd8\x1b\x67\x90\x65\x5c\xe9\x7b\xa7\x29\x72\xe8\x20\x44\x2d\x9c\x9e\xbd\xce\x7e\xfc\xf6\x08\xba\xdd\x01\x8c\x39\x5b\xe5\xaa\xcc\x5c\x2a\xbe\x4d\x23\xc4\x61\x20\x9b\x66\x2a\x97\xea\x84\xee\x54\xe7\x89\xbc\xc7\x19\xff\x52\x63\x84\xb2\x31\x22\xae\x90\x1d\xd3\x19\x86\x3d\x7e\xc4\x12\x19\xa5\x25\x1c\x7c\xba\xe0\xd1\x3d\x4a\xdf\x74\x39\x7d\xcd\x3b\xf3\xfd\x49\x9a\x1d\x16\x53\x99\xa6\x54\xad\x3f\x40\x81\x4e\x10\x5c\x40\x0f\x09\x67\x9c\xdd\x5d\x4f\xdb\xeb\xbe\x4f\x9a\xc1\x9c\xf6\xd3\xb3\x3a\x41\xe0\xff\xfd\x98\x0c\xc2\x5d\xd6\xc8\xa3\x45\x65\xaa\x3b\xe7\x52\x97\x34\x01\x4e\xd2\xc2\x5c\x20\xe2\xeb\x16\xd7\xfe\xe0\x79\xba\xca\xca\xb9\xe9\xa8\x74\x08\x40\xc0\xb4\xe2\xfb\xab\xbb\x49\xf0\xde\xae\xa9\xf2\xfd\xd5\x1d\x0b\xea\x40\x5a\xf0\x54\x44\x85\x43\x1a\x8f\xd9\xa9\x57\xeb\xa8\x5b\xe6\xb1\x78\x48\x22\x4c\x9d\x1d\x19\xab\x68\x26\x81\x04\xdf\xdc\x75\x8e\x2c\x73\x2a\xfb\xfe\xea\x8e\xf8\x56\x3d\x6f\x0e\x0a\x8f\x00\x35\xc6\xb0\x63\xa7\x46\x3f\x2f\x95\x3c\x42\xca\xa0\x3c\xf6\xd1\x8e\x11\x5c\xae\x23\x9e\x15\x25\x19\x18\x0f\x6f\xc7\x76\x4c\xae\x7d\x24\xc4\x34\x4b\xcd\xa4\xb1\x95\x30\xc7\x00\x34\xf2\xcc\x47\x37\x87\xb6\xd6\xa9\x87\x80\x03\xa0\xd3\x0e\xda\xfc\x13\x97\x39\xc8\xe5\x96\xf1\x7c\x91\x14\xb9\xb9\x86\xe1\xcb\x23\x64\x38\x5b\x5b\x1d\x34\x1c\x37\x6f\x19\x91\xac\x21\x0c\x70\x22\x0b\x3d\x93\x41\x02\x8c\xcb\x36\xc6\xe4\x85\x44\x32\x20\x8d\x06\xec\x8d\x25\xb1\x8d\x52\x55\xc6\xf6\x58\xcd\x9d\x4c\xe2\x36\x43\x23\x6a\x26\x81\xf1\xc4\x9c\xad\xca\x98\xa1\xfe\xec\x3f\x61\x1f\xe5\x43\x12\x27\xfc\xa8\x10\x3a\xe5\x47\xc5\xff\xfe\x38\xaa\xfd\x89\xbf\xfd\xf2\xcb\x8f\xa8\xf8\xd8\x45\xe7\x10\xb0\x36\x1d\xe8\xe0\x69\x8f\x53\x38\xa6\x4b\x33\x4b\x0f\x18\xa7\xf3\xe4\x5e\xb0\x8f\x38\xdc\x1f\x89\xe6\xfa\x69\xc3\x36\x93\x6d\xe3\xc6\x9e\x32\x6c\x20\x3a\xd0\x3e\x6e\x6c\xc7\xb0\xbd\x5d\x8d\x7f\xb7\x5a\x98\xd1\xfa\x6a\x35\x7e\xfb\x25\xfc\x67\x6d\x8c\xf6\x2d\x5e\x97\x3d\xd3\xd6\xec\x96\x8d\xa8\x65\x59\xba\xbd\x68\x26\xf7\x6f\x46\x6c\xd8\x5e\x04\xb3\xb6\x6d\xe1\xf3\x42\x1c\x9a\x35\x8b\xec\xe7\x03\xd0\xd7\x0d\x5a\xf9\x9d\x11\xc1\x03\x39\xd9\x3d\x9f\x3a\xc0\x3d\xbb\xc9\xe1\x43\x00\x2e\xfc\x38\x80\xe7\x07\x9e\xef\xf7\x3d\xb5\x67\xf7\x7c\xce\xee\x66\xa6\x42\x0c\x60\xa6\xb9\x31\x8f\xf7\x6c\x64\xe5\xd1\x5d\x6d\x7c\xe4\xa8\x3b\xd9\x94\x3b\x8a\xe9\xb6\x3e\x64\x15\xd9\xe9\x88\x2e\x13\xed\xd2\x06\x5d\x4b\x2c\xb4\xd2\xdd\xaf\x6d\xbd\x2b\x5a\x4b\xa1\xac\xa5\x8b\xba\xb5\x4c\xfc\xc0\x15\x71\x20\x14\xce\x5c\xa9\xe7\x9b\xde\x54\xfa\xbe\xe2\x77\xf4\xf2\x87\x06\xb1\xbe\x33\x2f\x3f\x40\xc6\xb7\x23\xd9\xda\x70\x69\xac\x35\x5b\x6b\x47\x60\x09\x6f\xf9\x4f\x6a\xd2\x5d\xf6\xa4\x06\x61\x8d\xfd\x92\xb5\x6c\x55\xb6\x94\x47\x8c\xad\xf2\x14\x63\x07\xc5\x1a\xdc\xca\x5e\x29\xd9\x6e\x73\xde\xbd\x8c\xaa\xca\x29\xcf\x57\xe8\xf4\xd2\xa2\xd0\x6f\x5a\x46\xd8\xe7\xb1\x1d\x30\xc2\xd6\xec\x9a\x0f\xe3\x0f\xb1\xf6\x18\xb8\x54\x76\xad\x34\xd7\xca\xaa\xac\x8a\xbb\x69\xd9\xfa\x43\xcd\x00\x9f\x5c\x17\xa9\x1c\x35\xc8\x80\xe7\xb5\x9b\x5f\xeb\x40\x9a\xd9\x0b\xbe\x71\xec\x31\x54\x9a\x4d\xf9\xc5\xc6\x2d\x04\x28\x02\x75\xb7\xa1\x17\x87\x6c\xdf\x26\x10\xd3\x6d\x57\x0b\x66\x72\x62\x1f\xf1\xbc\xe6\x3a\x41\x2f\x0b\xa6\x23\x96\x0b\xcc\x70\x01\x9f\x19\xf7\xbd\x4e\x1f\xd7\xf1\x11\x43\x13\xfd\x6b\x9f\x70\xa7\x45\xee\x4f\x23\xcf\x86\x1a\x7e\x47\x47\xcd\xfd\xb8\xa9\x77\xee\xe8\xf6\x13\xa9\x28\xdb\x97\x7b\x2a\x56\xf9\x3e\x66\xc9\x5d\x95\x5a\xc4\x85\x59\xc5\x2b\xe0\x35\x0b\x04\xbb\xbb\x6a\xef\x7f\x4d\xa2\xcf\x80\x74\x27\xc2\xf4\x62\x56\x42\xba\xf5\x8b\xc4\x93\xf3\xd7\x2a\x6b\xee\x15\xc5\x41\x67\x41\xc2\x37\xf3\x5c\x75\xcb\x88\xf7\xe8\x2f\x5b\x44\x25\x62\xb0\x46\x59\xd1\x2d\xfb\xa5\xe4\x29\x1e\xad\x92\x16\x83\x6d\x36\x38\x5f\xbe\xfa\x3d\x9b\xc0\xd9\xc7\x3e\xc0\xae\x0c\x90\x31\x28\xad\x50\x2c\xd9\x64\x22\xd7\x4a\xf2\x4e\x3d\xfd\xfb\x6f\xf4\x9c\x34\x81\xcd\xc5\x5c\x95\x4d\xfd\xdf\x01\x5f\xd2\x52\x5a\xf8\x51\x9c\xdd\x97\x0b\x91\x4b\x51\x00\x12\x11\x9e\x63\xf6\xb9\x5e\xcd\x55\xbc\x2c\xd6\x5f\xcd\xa3\x34\xe9\x2d\x54\x0c\xf9\xaa\x13\xf3\xda\x29\xbe\xb5\xeb\x03\x2a\xe5\x57\x9a\x2e\x19\xfe\xc6\xf0\xb7\x31\xfb\x8e\x47\xf7\x42\xc6\x2c\x4b\xcb\x55\x42\xb4\x37\x78\xd9\x48\xaa\x6e\x85\xea\x87\xa1\x65\x83\xe5\x9b\x43\x70\x26\x37\xfc\x1e\xc5\x83\xc8\x84\x35\xf7\x96\x2e\xd2\x44\xe7\xa8\x99\x27\xcd\xb9\xbb\x77\xb4\xdc\x69\xdc\x2c\xa6\x3e\xf7\x74\x89\xd9\x7a\x8f\x6b\x45\x18\xa7\x8a\x9f\x68\xc0\xc2\x75\xb3\xb5\xc1\x4e\x66\x19\x64\xb4\x88\xca\xdc\x3c\x41\x8d\xc1\xd5\x0b\x01\x44\x10\xc0\x2a\x25\xe3\x40\x70\xf6\x4a\xb3\x32\xb3\x9b\x08\x44\xb6\x52\xc0\x19\xe1\x10\x98\x1f\xb2\x24\xba\x47\x64\x2b\xe4\x6e\x30\xf7\x79\x0d\x91\x71\x26\x3c\xc4\xb2\x6d\x6b\x58\x22\xbd\xcf\x61\xa8\x99\x86\x7e\xd6\x9e\x79\xda\x33\x2f\xa5\x58\x0b\x39\x7f\x82\x8c\x53\xff\x41\xab\xe4\xa0\x90\x11\xee\x22\x84\xae\x0b\x4b\x99\x10\x99\xb7\xbf\xe1\x3b\x8d\x92\x64\x59\x33\xe2\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\xa4\x4a\x87\xf4\x3a\x1f\xc6\xe4\xd4\xc2\xe2\x54\xeb\x0b\x97\xe7\x36\x66\xef\x21\xae\x12\xdc\x4b\x94\xe3\x44\xea\xda\xb0\x8a\xb5\xe8\x24\x07\x7e\x0e\x80\xa8\xfd\x82\xe0\xf9\x9d\xe1\x32\x97\xd3\x38\x66\x13\x1f\xcf\x46\x56\x28\x8c\x54\xef\xf9\x22\x91\x6a\xf1\x94\xc9\xd7\x2b\xf4\x03\x98\x2f\x98\x40\x2c\x41\x29\x12\x26\x03\x96\x78\xd7\xcc\x47\xa0\x0d\xe0\xf7\x42\xee\xf2\xef\xf7\x6f\x21\x06\x60\x76\x3a\x24\x5c\x64\x47\x61\x70\xe7\x29\x0d\xec\xbf\xec\x3c\x11\x57\xb2\x3c\x36\x5d\x6e\x2e\x41\xd1\x3d\x25\x2b\x62\x7c\x8f\xa8\xbc\x1e\xd7\x4a\x87\xeb\xcc\x8e\x1f\xde\xa3\xf3\xd2\xa9\xb3\x41\xb2\xa7\xeb\x60\x44\x79\x4a\x15\x32\x7d\x41\xab\xdd\x22\x45\xa7\x92\x1b\x6f\x66\xb7\x50\xe8\x06\xc0\x45\xd8\xa2\x5a\x56\xb3\xcc\xca\xe7\x52\xff\xd9\x4f\xaf\xdd\xec\xe1\x46\x83\x7e\xfc\x46\x5f\x42\x7d\xcf\x41\x46\x83\x5e\xc6\xe7\x4f\x04\x7b\x62\x08\xdc\x41\x9c\xad\xf7\x53\x41\x92\x08\x1d\x94\x99\x8a\x99\x9f\xef\x5d\x99\x36\x52\x2a\x84\xb8\xfe\x06\x3f\x2b\x68\x5c\xef\x6f\xdb\xb7\xd4\x3e\x04\x38\x39\xb6\x28\x93\x34\x46\x96\xc2\xc0\x42\x55\xd6\x04\x02\x21\x2c\xb0\x47\x12\xed\x0e\xb8\x96\x49\xff\xe3\x37\xfa\x4a\xc5\x87\x4c\xac\xe1\x4c\xb4\xcd\x79\xdd\x23\x8d\x46\x87\x58\xa6\xcd\xfe\x9e\xc8\x54\x77\x02\x44\x3c\xd7\x55\xe5\xe7\x1d\x0d\x06\xc4\xdb\xa2\x5c\xde\x80\xcc\x6c\x17\x29\x53\xa0\xc0\x68\xb3\xac\xcd\x38\x9b\x6a\x5c\xce\x5f\xd7\xa0\x10\x80\xca\xdb\x23\x9c\xfd\xe1\xe6\xf2\xe2\x68\xc3\x73\xbd\xe6\x40\x7a\x61\xcb\x1a\x59\xe5\x7e\xf4\x16\x58\x60\x47\x22\x67\xf2\x88\xad\xd4\x08\x61\x44\x27\x6c\x5d\x14\x99\x3e\x39\x3e\x5e\x25\xc5\xba\x5c\x8c\x23\xb5\x39\xf6\x5d\x73\xcc\xb3\xe4\x78\x91\xaa\xc5\x71\x2e\x20\x91\xe4\xe8\xed\xf8\xab\xb7\x30\x32\xc7\x0f\x6f\x8f\x01\x3c\x32\x5e\xa9\x7f\x39\xff\xea\xdf\xbe\xfe\xbd\x29\x38\xdb\x16\x6b\x25\x4f\x08\xa3\xb4\xb3\xec\x23\xbc\x26\x1c\xe3\x2b\xb5\x5a\xfe\x6d\xfc\x65\xd8\x0c\x7a\x74\xa3\x62\x91\xea\xe3\x87\xb7\x73\x3b\x30\xe3\xac\x43\x31\xe3\x1f\xa9\x17\x9f\x21\xf5\xe2\x3e\x29\xfe\x91\x7a\xf1\xab\xa6\x5e\xf4\x37\xb9\xdc\x1e\x03\x1c\xd9\x7e\x7f\x34\x7f\x77\x7b\xa4\x8d\x44\xec\xdb\x87\x5a\x0e\x87\x30\x31\xee\x80\x23\x62\xbf\x54\xe1\xae\x03\xc0\xdd\x65\x3a\x3c\x8e\x43\x75\x6a\x3a\x6f\x17\x83\x78\x40\x00\xe8\x98\x44\xe0\x2b\x0c\xa4\xeb\x9a\x9d\x18\xe8\xf6\x1c\xd0\x85\xa8\x23\xd2\x4e\x7a\xd6\x53\x4f\x51\x58\x00\x60\x45\x93\x04\xa1\xbb\xe0\x06\xa2\xa5\xe6\xf5\xfe\xc8\x9c\xe8\xb8\xd1\x27\x1b\x31\xbc\x3d\x3e\xf8\x1f\xf3\x42\x1c\x99\x42\x76\x34\x18\xb8\x7e\xbb\xda\x59\x91\xe3\xab\x6b\x40\x86\x0d\x45\xb1\x2d\x11\xcf\x9f\x45\x73\xac\xb5\x0e\x84\xc3\x0e\x2e\xbf\x71\xe5\xe8\x71\x2b\x20\x80\xf8\x41\x93\xe9\x05\xd5\x61\x9e\x5b\x16\x86\x3e\xf7\x89\x92\x30\x29\xbe\x6d\xe1\xec\xea\xd1\x4a\xc1\x3c\x87\x80\x8a\x87\xea\xf7\x13\x4f\xc1\xf5\x00\x6d\xb1\xed\xea\x68\xc6\x9a\xeb\xa7\xe5\x45\x4c\x90\x7d\xd9\x85\xc1\x11\x54\x9e\x68\x5b\xa1\x35\x44\x2c\xf1\x94\x59\x52\x96\xdf\x32\x2b\xf3\x4c\x69\xa1\xc7\xec\xbd\xca\x91\xd1\x8c\xe8\x86\x7c\xae\xc7\xf5\xfb\x53\xf6\xf6\x9b\x7f\xfb\x7a\x26\x5f\xb7\xd8\x81\x60\x3f\xa8\x7c\x45\xa9\x27\x60\xfd\x6d\xb8\x2e\x44\x7e\x9c\x2f\xa3\x63\x3c\x35\x8f\xcd\xfb\x47\x54\xe9\x91\x5a\x1e\x39\x75\x88\x23\x22\xca\x1f\x6f\xe2\x37\x5d\xa0\xcc\xf6\xbb\xc6\xaf\x76\xdf\x9b\x74\xdc\x49\xda\xc6\x77\xff\x99\x52\x59\x42\x68\x83\x91\x01\xa6\xc1\x58\x43\x16\x4a\xb5\x74\x7a\x46\x98\xe2\x8c\xd2\x67\x6a\xd9\xf2\x1f\xdf\xa5\x6a\xa1\xdf\x38\xee\x5b\xae\x6d\x1d\x9e\x8c\xb2\xed\xc8\x6a\xac\xb9\x43\x1c\x0f\xd4\x15\x2f\xe9\x51\xb4\x7b\x62\x38\x6c\x43\x3a\xbe\x7d\xd3\xf0\x66\x30\x52\x71\xf1\x5c\x95\xd2\x0a\x86\x28\x29\xd4\x12\x10\x5e\x70\x43\xb4\x00\x55\x08\xaa\x00\xec\xd1\xd1\x6e\xe5\x22\x43\xc3\x0b\xc2\x7f\xdd\xdd\x7d\xa0\x68\xce\xbe\x7e\x7e\x09\xd1\x9c\x43\xfb\x9d\x36\xc6\x5f\xa9\xc3\x0f\xcd\x22\xc1\xa5\x34\x04\x7c\x65\x9e\xdf\x0b\xb4\x70\xfb\x80\x97\x67\xf7\xfa\x14\x19\xcf\xe1\xf2\x22\x8e\x0a\x75\x04\x7c\x85\xc0\x82\x87\x32\x56\x5d\xe8\x2b\x00\xa8\x0c\x39\xee\xcd\xf3\x3d\xda\x89\x17\xd6\x4f\x41\x43\xc9\x56\xd7\x48\xfe\x4e\x68\xfc\x44\x4a\x91\x53\xf0\x7b\xaf\x65\x30\x10\xbe\x12\x0e\xe5\xae\xc6\x86\x1e\x9a\x50\x62\xc8\xa5\x62\xf2\x60\x13\x18\x33\xb8\x95\xad\xd5\x46\x19\x33\x5f\x95\x3a\xf8\x11\x6f\xf5\x60\x4c\x74\xde\x49\x36\x3c\x43\xd3\xf8\xd7\xfb\x1a\xb3\xb4\xcc\x4f\xe8\x7d\x0f\x1f\x1a\xa4\xda\xb6\xa8\xea\x54\xed\x69\xbf\x13\x18\xda\x3d\x6f\x00\x1c\xb5\x81\x68\x27\x28\x79\x93\x6c\x48\xf2\x37\x73\xdf\x37\x53\xca\xdd\xa0\x9d\x05\x82\x58\x3e\xa4\xe1\x0e\x91\xab\xf6\xd4\xed\x24\xca\x29\x37\x03\xc7\xc0\xe5\x97\xf5\x19\x00\x2e\x31\xe3\xca\xa6\x5a\x1d\xb5\xe6\x5a\x75\xad\x4b\x70\x29\x96\xe6\x66\x62\xa9\xe2\x87\x35\xf5\xc6\x15\x40\xac\xf0\xcd\x76\x7b\xa6\x4d\x48\xcc\xc3\x3e\xc6\x0d\xc1\xda\x16\x5d\xf8\xee\xe1\x8b\x11\x34\xfb\x86\xf4\x1d\x54\x82\x93\xb3\xd1\x83\xc1\x5a\xe8\xea\xc0\x61\xae\xe7\x5d\x9e\xdc\x36\x68\x3f\x92\x13\xfb\xc4\x6d\xd3\xca\x86\x53\xc5\xbd\xf8\xe0\x75\xa1\x01\xf9\xbc\x28\xe1\xf7\x8b\xcb\xdb\x10\xd4\x95\xe0\xd7\x1e\x45\x6b\x11\xdd\x83\x23\x11\x8f\x3c\x5c\x0c\xc4\x43\x00\x48\x73\xaf\x26\x5b\x28\x8b\x11\xda\x3a\x81\x1d\x27\x32\xa5\x72\x16\x27\x3a\x4b\xf9\x16\xd0\x18\x12\x53\x34\x3d\x92\xc3\xe5\x36\x9b\xad\x60\x5f\x1c\xa5\xff\x48\x9b\x51\x99\xf8\xf7\x86\xf6\xa5\xc7\xdc\xfb\xce\x6c\xee\x07\x4c\x8b\x0d\x97\x45\x12\xcd\xe4\x46\x70\x19\x82\x77\x09\x8d\x62\x3a\x39\x56\x82\xa4\x22\x96\x4b\x11\x15\x9e\x6b\x1a\x2e\x21\xae\xa7\xf6\xad\xc1\x61\xdf\xee\x56\xde\xce\x4f\xff\xc1\x2a\x5e\x27\x1b\x80\x86\xd3\x1c\xa2\xa3\xf1\x89\x51\x56\x50\x1f\xa6\x23\xd7\x5e\x6a\xe1\x5f\x76\x4e\xb1\x85\x28\x1e\x05\x50\x29\x11\xf7\x43\x9b\x8d\x7f\xb0\x02\xd5\x21\x79\x93\x13\x47\xbd\x48\xcc\xfa\x0d\xee\x64\x5a\x60\x21\xe6\xd4\x71\x3e\xca\x1a\x79\xe3\x2b\x62\xa3\x00\x2f\xe8\x2b\xf2\xe7\xbe\x82\x63\xda\xdc\x82\xf3\x07\x11\xcf\x64\x95\x51\x93\x6c\x46\xbf\xe0\x98\xd7\x56\x7d\x9e\xdd\xc6\xf6\x71\xaf\x18\xd7\x19\xb0\x88\x79\xfe\x70\xc7\xb7\xb0\x43\xeb\x15\x3f\xfa\x25\x6f\x55\x56\x66\xba\xef\x65\xd8\xcb\xaf\x92\x76\x22\x49\x2d\x57\x80\x4f\x6e\x52\x3a\xbe\x40\x24\x13\x76\x38\x79\xf2\xd7\x37\x22\x00\x6d\x65\xcc\xa4\x25\xd2\x59\x96\x29\x12\xc4\x77\xa5\x2b\x11\x7d\xa8\x4d\xfa\xfd\xf5\x92\xbf\x9d\xbf\x99\x05\x72\xb5\x0e\x9f\x14\xe4\x2c\xe0\x5e\x67\x67\xbd\x90\xba\x04\x93\xc2\x2a\x55\x42\x40\x66\x25\x0a\x38\xcd\xe3\x32\x45\xac\x2a\x44\x92\x80\x8a\x94\xa7\x29\x4b\x0a\x3d\x93\x8e\x39\x15\x73\x92\x60\x87\xb5\xa1\xa6\x98\xae\x5c\x50\x05\x14\x0b\x3f\x73\x09\x76\x58\x12\x25\x45\x23\xd3\x63\x1b\xaa\xbb\x65\x99\xe0\x48\x63\x80\xc3\x36\x93\xe1\x9d\xab\x3e\x08\x94\xf3\xcf\xd3\x84\xeb\xe7\x48\xbf\xdf\xe1\xb8\x35\x55\x3c\x09\x60\x84\x5f\x67\x2e\x5c\x56\xb8\x1d\x5b\x4b\xd4\x49\x04\xc8\x36\xb7\x9a\x42\xdb\xd8\x91\xbf\xb7\x42\x3a\x53\x54\xa6\x3c\xc7\x3c\xae\x65\x99\xb2\x64\x19\x68\xd0\xc3\x18\x20\x6f\xa6\x19\xae\x48\xc1\x59\x6d\xa3\x47\x9a\x6f\x44\x40\xd9\x43\xee\x9d\x34\x00\x3b\xa1\x18\x08\xa2\x68\x4c\x59\x6f\xc6\xec\x9d\x67\x06\xc6\x11\x86\x35\x11\xf0\x6d\x27\x1a\xb7\x3f\xd7\xde\x80\x6d\x02\xbe\xce\x34\x51\x49\xb3\x22\xdd\xaa\xeb\x18\x41\xd0\xed\x19\x86\xa4\xb2\xaa\x4d\xbb\x93\x0b\x5a\xd9\x66\xcc\xab\x35\x7c\x95\x5b\x10\x1d\x0d\xb4\xa7\xc2\xc0\x46\x86\x5c\xe5\x4f\x68\xa8\xe3\x82\x6f\x69\xec\x66\x87\xe4\x3d\x8c\xe3\xc0\xa6\x06\x02\x92\xc3\x1b\x1a\xcc\x9c\x10\x37\xd7\xa7\x67\x57\xbc\x18\x0a\xa2\x73\x39\x7b\xc3\x1b\xda\x0a\x58\xec\xd3\x4c\xd8\x3d\x06\xb6\x73\x62\xde\x79\x62\x43\x75\xb9\x38\xc2\x0d\xda\x49\x41\xc1\x56\x21\x78\xb4\xae\xd2\x67\x58\x92\x6b\xf7\x05\x90\x3e\x09\xeb\x71\x38\xf3\xc7\xc4\xcf\x39\xd0\xd0\x64\xa6\xf9\x63\x76\x29\x05\x42\x5c\xd5\x32\x38\x54\xa8\x01\x24\xb6\x09\x3a\x43\x6e\x97\x5b\x98\x86\xc9\x7b\xcb\x2a\x66\x96\xdc\x88\x71\x5f\x3a\xec\x7a\x38\x6d\x70\x17\xe9\xb0\x25\xdb\x54\xb9\x0e\x30\x2f\xfb\x71\x73\xb4\xdf\xf9\x03\xa4\xf8\xf0\x1d\xa0\xed\x3b\xfa\x0f\xcb\xce\x94\x0f\x77\x8b\xb3\x79\x1e\xd5\x79\xc3\x10\xf7\xbd\xaf\x7f\xaf\xd6\x55\xb8\xf0\x00\x6d\xcc\xbb\x8b\x77\x67\xef\xa7\x17\x55\xe9\xc9\x3f\xde\x9d\xdd\x55\xff\x72\x7d\x77\x71\x31\xbd\xf8\x3e\xfc\xd3\xcd\xdd\xe9\xe9\xd9\xd9\xbb\xea\x73\xef\x27\xd3\xf3\xda\x73\xe6\x4f\xd5\x87\x26\xdf\x5d\x5e\xd7\x24\x34\x5b\xf4\x2f\x6f\xa7\x1f\xce\xde\xcd\x2f\xef\x2a\x2a\x9c\xef\xfe\xe3\x62\xf2\x61\x7a\x3a\x6f\x69\xcf\xf5\xd9\xe9\xe5\x4f\x67\xd7\x7b\xb4\x32\xfd\xf7\xb6\x76\xe9\x73\xc0\x2a\x9f\x2c\xa9\x3a\x61\xcb\x3c\x11\x32\x4e\xb7\x98\x24\x63\x6f\xb6\x35\xd4\x7b\x2d\xe0\xae\xca\x43\x72\x5d\x6e\xd7\x82\xa9\x07\x91\x03\x01\x1a\x96\x46\x6c\x29\x9e\x6c\xa1\x5e\x6b\x2e\x8a\xbc\x19\x15\xd8\x99\x50\x58\xe4\x5b\x97\xb2\xba\xab\x39\x9e\x3c\x93\x2a\x61\x99\xc8\x77\xb5\x05\x2c\xa3\xbc\xcc\x8a\x64\xd1\x9d\xbd\x34\x98\x73\xa0\xef\xdd\x1b\xa9\x9e\xdb\x79\xf1\x2e\xda\x37\xc6\x4a\x12\xcf\x21\x19\x02\x50\xc2\x53\x95\x82\xdd\xdb\x16\x55\x9d\x95\x8b\x34\x89\x58\x12\xd7\xfd\x29\x44\x05\x02\x2e\xe3\x3a\x23\x7c\x26\x72\x30\x55\xcd\x0d\x20\xcb\xc5\x11\x2f\x8b\x35\xb2\x97\x52\xce\x10\xe9\xf7\xcc\xa4\x16\x51\x2e\x30\x16\x20\x34\x38\x69\x51\x09\x36\xa8\x09\x1a\x43\xe4\x3d\x31\xf0\x04\x8e\x03\x75\x9e\x8e\x18\x01\xbe\x89\xa5\x0f\x70\x92\xe2\xf3\x3b\xbb\x86\x5a\x9c\xa0\xd6\x6c\x80\x88\x83\x13\x1e\x7f\xb4\x7a\xb2\xe6\xbb\xcd\x4e\xed\xf4\x54\x71\x90\x6d\x92\x55\xfb\x67\xec\x9b\x63\xe1\x44\xa9\x66\x1d\x51\xe9\xf4\xd3\x69\x2e\xe0\x10\x21\x48\x83\xf5\x5f\x00\xa4\x8b\x92\xb2\x20\x17\xcb\x5c\xd5\x16\x62\xcd\xd3\x25\x5a\x1c\x66\x68\xda\x09\x55\xb0\xfc\x5b\x75\x2f\xe4\x35\x0e\xd8\xaf\xb2\x1d\x4a\xbc\xf9\x78\x3a\x27\xe7\x11\xf2\x2e\x4c\xd3\x46\x3b\xab\x6c\x4a\x2c\x18\x53\x05\xde\x13\x82\x9f\x31\xf7\xca\x8b\x35\xd8\x6c\xda\xe5\x32\xf9\x64\x0a\x9c\x49\xd1\x4a\x57\x0f\x38\x3a\x4b\xac\xe9\xf6\x65\xc0\x0c\x22\x3b\xe1\xbd\x90\x20\x25\x0b\xbc\x88\xfb\xe7\xec\x30\xff\x79\x73\x2c\x76\x38\xf4\xc1\xe7\x97\x54\x14\x76\xc3\x28\x8f\xed\xa7\x02\x93\xe1\x1c\xfd\x08\xcc\x9b\xd3\xf3\xe9\xd9\xc5\xed\xfc\xf4\xfa\xec\xdd\xd9\xc5\xed\x74\x72\x7e\xd3\x77\xf9\x3d\x47\x02\x63\x6d\xf5\xd5\xf3\xf8\xdc\x0e\x71\x4c\x2b\xcf\x67\xf1\xbb\x8f\xf2\xcb\x0e\x86\x64\x7f\xeb\x93\x38\x9b\xc7\x89\x8e\xcc\xf1\xb7\x9d\x0b\x19\x83\xce\xc7\x93\xa6\x6a\x7b\x51\xf5\xaf\x70\x4f\x30\xf7\x84\xdd\x41\xf0\xb4\x7b\xb0\x33\xda\xfd\x0e\x68\x54\x70\x43\xe6\xc2\x2c\xfe\xb8\x42\xaf\x32\xde\x2f\xee\x66\x8a\x3b\xec\xdb\xaa\x45\xd4\xbf\x09\xdb\x9b\x68\x5d\x02\x8b\x8b\x7d\x0c\xa0\xb8\x1d\xbd\x42\xe4\xcb\xa1\xd8\x48\x12\x08\xf0\xb3\x44\xcf\xe4\x86\xcb\x98\x17\x2a\xdf\x76\x7c\x62\xbf\xcd\x33\x5c\x36\xd5\x2d\x34\x3c\xb2\xa5\x10\xb1\x1d\x05\x7c\x94\xcb\xfa\x54\x42\x49\x92\xdb\xcb\x1f\xcf\x2e\x6e\xe6\x67\x17\x3f\xcd\xaf\xae\xcf\xde\x4f\xff\xe4\x10\xc2\x19\xd7\x6d\xba\xda\x59\x2e\xcc\xee\x62\x19\xde\x5a\xf7\x17\x54\xab\xb6\xe5\x90\x42\x69\xb2\x9c\x49\xbb\xb3\xe4\xbe\xf8\x75\xae\xca\xd5\xba\xbd\xa0\x7a\x2b\xaf\x26\xb7\x3f\x3c\xa9\x99\xc0\xbf\x89\x92\xb6\xb8\xda\x9a\x48\xe9\x64\x49\xfb\x1e\xc2\xab\x6b\xcd\x03\x16\x59\x78\xb4\x2d\xca\xd0\xb1\xa3\x3d\xe9\xf6\xd2\xdc\xb4\x76\x1a\xff\x2d\x8f\x77\x4d\xa0\xdb\x60\xdf\xac\x1c\x23\x80\xdc\x47\x5d\xf4\x46\x69\x27\x2d\x7f\xab\x9c\x60\x5f\x1d\xa5\x62\xb5\x12\x31\x4e\xaf\x7a\xc1\xe4\x83\xa3\x2d\x30\xf2\xe7\x7a\x5b\x2f\x92\x76\xf1\x01\x07\xb3\xc3\x7b\xf5\xdf\xc0\xaf\xdc\x2b\xed\x7b\xc5\x29\x71\x68\x41\x7c\xb3\xe0\xb2\x23\x90\xbc\x3f\x15\xae\xbd\xf8\xcb\x9c\xb9\x2c\x45\x72\x98\xd8\x90\x81\x5f\x07\x5d\x80\x97\xc3\xf1\xad\xae\x1d\xd7\x22\x4b\x79\x24\x5c\x6e\x0f\x92\x1f\xc3\xbd\xfe\x29\x01\x3c\x52\x88\x96\xe4\x6f\x09\x94\xa3\xbd\x28\x5e\xdb\x14\x00\xcf\xed\xb5\xdd\x8f\x5f\xde\xb5\xb2\xf3\xe2\x46\x94\xa7\xe0\x68\x46\x89\x4e\x4a\x09\x41\x5f\x14\xe8\xde\x76\xc2\xf5\x07\x4d\x87\x5a\xcd\x3f\xd1\xc0\xe3\x9d\xb9\xea\xe8\xe6\x96\x54\xd8\x4d\x0f\x67\x3a\xee\xf2\x17\x16\x45\xbe\x93\x87\xfc\x39\xc2\x11\x57\xb9\xda\x24\x5a\x4c\x8a\x22\x4f\x16\x65\x28\xc4\x3c\x10\x30\x57\xb9\x9c\xf8\x0f\xce\x72\x15\x97\x91\x65\x0e\x83\xaf\xf5\xb0\x1f\xf2\xf2\x59\xab\x23\x66\x47\x66\xf6\xd1\xcd\x4d\xc4\x47\x90\xe8\x82\xd4\x76\x6d\x31\x36\xbb\x31\x76\xf8\xfe\xae\xec\x51\xfe\xcc\xe9\xb2\xdd\x9d\x69\xe7\x40\xbf\x0c\x78\x66\x1f\x07\x0b\xb8\x03\x35\x45\xd3\x65\xc1\x31\x80\x5e\xb5\x51\xba\x88\x82\xdc\x51\x33\x0c\xdc\xd5\x0f\x1b\x53\xcd\x24\x43\xbb\x61\xcd\x35\x9a\xf3\x45\xb4\xae\x36\x1c\xbe\xa6\x4a\x98\x5c\x6f\xae\x33\x8f\x0f\x73\x9b\xf4\x0a\xa3\x8d\xd0\xd1\x90\x90\x63\xbb\x22\x7e\xeb\x94\xbc\x3b\xfd\xf7\x98\x72\x31\xff\xa5\x14\x43\x04\xad\x6d\xaa\xc6\x1f\xe1\xb5\xbd\x80\x94\x04\xb1\x5b\xce\xf7\x0a\x99\x26\x5a\xf0\x3c\x5a\xb3\x05\xd7\xc4\xc4\x18\x12\x45\xa0\xf2\x3e\x4b\xcc\x5b\x3c\x2a\x48\x89\xd8\x56\x6b\xd5\x88\x6f\x2d\x14\xd2\x98\xb5\xde\xeb\xd1\x36\xdd\xf6\x75\xc0\x10\xef\xb5\x6d\xc6\xf4\xdd\xa0\x18\x42\x68\x87\xbb\x7b\x32\x1e\xb1\x70\x3a\xa5\xbc\x94\xd1\x9a\x65\x29\x47\x2e\x8d\x35\xd7\xb8\x51\x58\x84\x0e\x5f\x24\x69\x52\x00\x45\x1a\x06\x8e\x6b\xf3\xd6\x5c\x9e\x79\x7e\x6f\x95\x26\xb8\xe7\xc3\xdb\xb5\x95\x1c\x88\x84\x76\x5f\xf5\x59\xb1\xd0\x7e\x23\x0c\x37\xf7\x7e\x8b\x9d\x70\xd0\x7e\x38\xcc\xf1\x06\x8b\xdd\x7f\xcb\xb0\xe8\x10\x95\x78\x55\x7f\xbd\xd6\xdf\x94\xe8\x75\xd8\xde\xbd\x23\x05\xec\x45\x40\xe7\x3e\xa1\x6e\xf7\x31\xda\xfc\xe0\x16\x23\x78\x38\xf0\x89\x34\xa3\x9e\x94\xf4\x86\x8a\x52\xad\xeb\x7e\x99\x2a\x5e\xec\x4e\xa8\x43\x81\xa8\xce\x84\x3a\x55\x2e\xba\x24\x49\xb0\x55\xbd\xd2\xf5\x5a\xdf\xb7\xdb\xff\x73\xf9\xdc\xc3\x73\x94\x17\x02\xd2\x00\x0f\xcc\x22\x6c\x2f\x9c\x12\xb8\x07\x93\x71\xb8\x69\xe0\x65\x0a\x9d\xed\x0f\x90\xd4\x96\xe5\x54\x37\xf2\x0e\x4a\xf7\x3c\x6c\xbc\x12\xb9\x67\x2a\xed\x57\x3e\xfb\xfa\xab\x3e\xd9\x88\x7f\x2c\xb9\x39\x00\x2e\x97\x37\xc8\x8d\x76\xc8\x47\x17\x49\x73\x59\xb5\x6f\x03\xf5\x5a\x6f\xab\x51\xda\x70\xe2\xf7\x26\x7a\x68\xfb\x9a\x1b\xf3\x76\xff\x6d\x77\x5a\xf1\xc6\x66\x79\xa2\x80\x23\x4c\x2d\x2b\xb6\x46\xcb\x4e\xdc\x5a\xef\x01\x3d\xf9\x4b\x29\x4a\x61\x26\xd0\xa2\x8c\x57\xcd\x60\xc9\x80\x0b\x97\xff\xa4\xb5\x7a\x64\x9b\x32\x5a\x33\x5b\x38\x8b\x45\xca\xb7\x55\x33\xca\xdc\x35\x0a\x05\xec\xd1\x83\xa8\x12\x03\xce\xff\xa8\xd4\x85\xda\x00\x4e\xdd\x97\x9b\x97\x12\x56\x39\xe3\x76\x75\xb5\x1d\x68\x15\x2e\xd3\x27\x46\xc8\x6f\xae\xce\x4e\xa7\xef\xa7\xb5\xf0\xf4\xe4\xe6\xc7\xf0\xdf\x3f\x5f\x5e\xff\xf8\xfe\xfc\xf2\xe7\xf0\x6f\xe7\x93\xbb\x8b\xd3\x1f\xe6\x57\xe7\x93\x8b\x4a\x10\x7b\x72\x3b\xb9\x39\xbb\xdd\x13\xa7\x6e\xd6\xda\x3d\x10\x3c\xa0\x5a\xb5\xc8\x79\xab\x23\x64\xdd\x55\x54\xeb\x09\x9b\x58\xe2\xd9\x0a\x35\xb2\xc5\x1a\x00\x38\x29\x45\x8c\x25\x42\x12\xde\xf1\x82\x9f\xf2\x82\xa7\x6a\x35\x66\x13\x46\x79\x05\x98\x2f\xa2\x8d\x49\x48\xac\x9c\x66\x74\xb0\x08\x63\x17\x46\xde\x15\xe4\x85\xd2\xd5\x92\xf8\x70\x53\x11\x4a\x6a\xd9\x24\xcf\x99\x3c\x7b\x10\xb2\x28\xc1\xd0\xe6\x69\xca\xa8\x5a\xfb\x40\x40\x88\x62\x5b\xa9\x93\x4d\x92\xf2\xdc\x6b\x5a\x5f\x52\x59\x70\xd9\xb5\x6d\x75\x84\x7c\x4d\xb6\x0d\xeb\x0f\xb8\x9b\x32\x68\xf7\xe9\xf9\x14\x0c\xdd\xa8\xb0\x82\x8d\xb6\xf2\x99\x44\xbe\x55\xaa\x71\xc3\x21\x87\xa9\x50\xe4\xa0\xc7\xea\xe9\xe1\xee\x89\x78\x90\x61\x65\x43\x59\x2f\xe5\x98\x70\x8d\xb4\xff\x71\x26\x8b\x7c\xdb\xdb\x7a\xbd\x05\x32\x0b\x0d\xf7\x3a\x82\x44\x56\x75\xae\xd1\x7f\xca\x6c\xe9\x17\x60\xd2\x5a\xbc\x2e\x85\xf7\x5c\x14\x0f\xe1\x51\x1d\x57\xa2\xd4\x9c\xbc\xbf\xd5\x7e\x08\x09\xd0\xa0\x17\x16\xaa\x94\xb1\x26\xf0\xe6\x26\x91\xc7\x1b\xfe\xe9\x8d\xfd\x52\xe4\xef\x71\x6a\x73\x40\x16\x29\x52\x73\x1f\xdc\x9a\x4d\x6e\x77\x77\xcd\xe4\x8e\xfe\xda\x7f\x27\xb0\x3b\x2b\xb8\x0c\xbc\x7f\x07\x61\xa8\x0f\x62\xdb\x36\x7e\x0d\xc5\x50\x16\xca\x5e\x40\x21\x59\x2e\xcc\x83\x0e\xe3\x9a\x22\x74\xd9\xfd\x1b\x72\x59\x2a\xaa\xe6\xed\x7b\x77\x08\x1b\x39\x68\xd9\xb4\x02\x56\xfa\x1b\x3e\xbd\x25\x5f\xa9\x26\x33\x66\x08\x5f\xb1\x91\x13\xca\xdd\xa1\xb8\xbc\x19\xac\xbf\xaa\x05\x5b\x42\x22\x1b\xf9\x09\x72\x01\x91\x32\x18\x0a\xab\x51\x04\x94\x82\x0d\x4c\x8c\x9d\x02\xa9\xd0\x10\x3f\x92\xe6\x52\x2d\x7e\x29\x09\x02\xf0\xf6\xcb\x61\xe7\x6c\x81\x42\x17\xc8\x6c\x5e\x97\x80\x70\x67\x39\xb4\xab\x94\x49\x1b\xcf\xe8\x75\x29\xcd\x51\xfc\x1c\xe8\xa9\xfe\xe1\xf1\x5a\xa5\xf4\xcf\xbd\xb9\x66\x36\xb2\x93\xe3\xf3\x2f\x46\x5a\xfd\x53\x8d\xab\x9a\xaa\x83\xcc\x06\x2a\x3d\x3c\xd0\x16\x3c\xba\x7f\xe4\x79\x8c\xee\x7f\x80\x33\x8d\xd9\x0f\xea\x51\x3c\x88\x7c\xc4\x22\x91\x17\x9c\xa8\x1a\x35\xe0\x39\x60\x41\x51\x39\x33\x09\x89\x3e\xc8\x7b\x29\x75\x99\x0b\x56\x24\xab\x75\x21\xf2\x10\x8d\xa3\x72\xb3\x1d\x15\xc8\xd2\x9b\x89\x88\xb8\xe8\x3a\x3a\x60\x99\xf2\x87\x26\xf7\xe4\x53\x48\x74\xd8\xd4\x65\x2b\xdb\x70\xb7\xd5\x7d\xdb\x85\x9f\xa2\x0e\xa3\x4d\x13\xd9\xc3\x46\x6c\xa5\x52\x2e\x57\xe3\xf1\x18\x34\x4e\xde\x0c\x9a\xe8\x54\x60\x18\x40\x77\x28\xfd\x54\x29\x2d\xd2\xad\xe3\x4f\x73\x79\x54\x00\xdc\xfd\x54\x08\xa9\x13\x74\x6c\xb5\x4c\xff\x9b\x7a\x70\xe9\xf3\xc6\xe2\xda\xaf\xe7\x83\xb3\x74\x3b\xca\x01\x19\xd9\x01\x25\xe1\xf3\xed\x37\xaf\x27\x65\x9d\xb7\x97\x25\x95\x1c\x9a\x4a\xfd\x93\x4a\x3a\xa0\x20\x4f\xe2\x59\x6d\x2d\x89\x38\xa0\x9e\x94\x7e\xda\xde\x67\x8d\x8c\xe0\x03\x92\x81\x77\xe4\xf5\x0e\x4c\xe9\xed\xe3\x08\xb8\xa9\x0f\xf7\xe0\x65\xb1\x5f\xd9\xae\xf5\x83\x06\xa6\x4c\x7b\x6e\x83\x21\xa6\x13\x66\x5d\xa6\x5b\xb8\x71\xb9\x04\x6a\x08\x0f\xc4\x41\x54\xa9\x12\x34\x83\x54\x3e\x1f\x75\x73\xdc\x7c\x41\x90\x4d\x17\x2a\xe7\x2b\xc1\x36\x22\x4e\xca\x4d\xeb\x66\xe3\x9a\x7b\x08\x7c\x54\xa5\xe5\xa6\x9b\x25\xf5\x50\x03\xda\x37\x12\xff\xeb\x14\xaa\xeb\xcf\xa1\xe3\x32\x23\xac\xc0\x28\xb5\x17\x43\x48\xd4\xd7\xe6\xa4\xcc\x13\x0d\x04\xc3\x4f\xc9\x9c\x75\xc5\x60\xd1\x10\x80\xdf\x66\xe8\x64\xaf\x8c\xee\x91\x8d\x8c\xd2\x2b\x1a\x47\x15\xa2\xf6\xdd\x87\x42\x1d\x94\x3a\x5c\x66\x30\x57\x65\x83\x7b\xaa\x37\xb3\x9b\x0c\x44\x47\x08\x35\x07\x05\x12\xb4\xa7\x50\x6c\x69\x73\x31\xef\x45\xc0\xfa\x18\x83\x1c\xc9\x23\x52\x3e\xfd\xf8\x8d\xb6\x20\x20\xc2\x69\x79\x8b\xa5\xf0\x95\x60\x04\xe8\xe1\xad\x85\xe7\xe1\x17\x62\x11\xc0\xcd\x18\x73\x59\xb4\x16\xe0\xd1\xab\x50\x16\xbe\xf2\x13\x2f\xd3\xf6\xc7\xa9\x7c\x78\x14\xe5\x6a\x27\x3f\xdf\x30\xec\x6a\x92\x8e\xc8\x77\x35\x34\x28\x64\x3f\x40\x10\xba\x6b\xfe\x04\x4b\xb0\x32\x0e\xd8\xe9\x56\xb9\xc4\x74\xbb\x28\xa2\xb5\xb7\x3c\x80\x9b\xd2\x71\x6a\x92\x16\x39\x7d\xe7\xc6\x8b\x61\x20\xf6\x3a\x04\xb1\x26\x2b\xa9\x42\x15\x29\x25\x05\x84\xe2\xcc\x06\xa4\xc2\x62\x59\x52\xec\x47\x0a\x0e\x24\x64\xdc\x37\xd5\x0a\x85\x08\x30\xfa\xce\x4a\x9c\x1a\xae\x14\x09\xd2\x55\x59\x98\x35\xde\x89\x48\xda\xba\x2e\x92\x50\x25\x00\x99\xc9\x6a\x55\x8d\x4e\xb2\x50\xbe\x24\x17\xc8\x6d\xae\x8d\xf5\x56\x24\x0f\x66\xa1\x36\xa7\xb5\x9b\xa0\xb0\x03\x34\xe7\x1e\x85\x6d\x59\x40\x90\x7e\x2f\xb6\x3a\xd4\xd1\xa6\x19\xc5\xba\x26\x64\x62\xbe\x87\xc6\x6b\xff\x50\x40\xc7\xcd\x73\xaf\x86\xd9\xef\x2c\xc3\x4a\x3f\x98\x97\x77\x60\x84\x1b\x85\x9b\x39\xe8\x93\x5d\xbd\x4f\x91\xb6\x09\xdf\xcf\x34\x86\x1e\x06\x08\x20\xcf\x10\xc6\x19\x66\x2e\xc1\xc5\xd7\xdc\x6f\x67\x92\x34\x14\x82\x43\xce\x6c\x38\xcd\x61\xa3\x0c\x7c\x64\x6e\xdf\x56\xd8\x83\x80\x55\xd6\x32\xec\x56\xab\xb4\xd1\x65\x90\x24\x84\xe9\x01\x55\x63\x8e\xb2\xf5\xe1\xb5\x56\xf8\x44\x6c\x29\x0d\x6e\x27\x9e\x34\x48\x04\xc4\x27\x89\x58\x15\x05\xd9\xf1\xf6\x13\x09\xd3\x7d\x13\xd9\x0a\xe5\xb4\x40\xce\x9b\xb3\xd3\xeb\xb3\xdb\xcf\x86\x37\xb5\x60\xcf\xc1\x80\x53\xdb\xce\x77\x67\xef\x27\x77\xe7\xb7\xf3\x77\xd3\xeb\x97\x40\x9c\xd2\x4f\x4f\x80\x9c\xde\x90\x34\xcb\xa9\x92\x85\xf8\x74\xd0\x99\x9c\x97\x72\xce\x07\xa4\x3e\x39\x71\xa6\x5d\xe6\x0e\x16\xda\x94\x96\x71\xba\x2f\x44\xeb\x4b\xa8\x13\xab\x24\xb3\xf4\x4e\xc3\x65\x92\xa6\x90\x09\xee\xdc\xeb\x94\x65\x68\x3a\x15\xf6\x1f\xcb\x64\x4c\x7b\xea\x4c\x2e\x2a\xca\x3f\xe0\xf2\x5b\x9b\x4b\x30\xe6\x80\x67\xa6\x03\xf2\x04\x32\x6c\x77\xa9\xcf\xac\x12\x29\x7c\x33\x60\xd4\x4c\xfb\x3a\x19\xfa\x69\x10\x5f\x12\x59\x47\x86\x57\x5f\x5b\xd3\xce\xb8\xca\xfc\xb4\xe6\xa7\xfd\xd1\x7d\x21\x2e\xe2\x44\xa2\x61\x5a\x59\xcd\x37\xed\x53\xf7\xd8\x2f\x01\xe8\x77\x33\x92\x1c\x62\x10\xba\xe0\x79\xe1\x07\x92\x06\x02\x35\xf1\x7c\x70\xe2\x3e\x41\x04\x9a\x5a\xd6\xfa\xd9\x6c\x85\xa6\xaf\x13\x88\x54\x70\x22\xb7\x89\xd2\x52\x17\x22\x27\xb7\xc9\xe4\xe7\x9b\x99\xfc\xce\x1c\x5f\x6f\xe8\x14\x22\xe5\x32\xac\x02\x91\x3a\xaa\x52\xbf\xb5\x50\xc2\x1d\xec\x35\xfa\xa8\x37\x82\x4b\xcd\x60\x69\xa4\xa9\xc8\xfd\xcc\xc0\xf6\x08\x11\x93\x7e\x38\xb0\x5c\xfb\xf7\xdf\x30\x02\xb7\x9a\xae\x30\xed\x75\x0a\x6a\x1b\x55\x34\xe7\x53\x17\xd1\x00\x20\xce\x5f\x72\xe6\xb4\x24\x3e\xf5\x9d\x45\x04\xd6\x6f\x9d\x44\xd5\x34\xa4\x5e\x73\xe9\x16\x8b\xfb\xc7\x54\x7a\xc6\xa9\xd4\xe3\x5c\x0f\x4f\x09\xb6\x56\x66\x03\x75\xb2\x5e\x3e\xcc\xec\x88\x4e\x52\x40\xb9\x99\x6e\x6c\x3d\x75\x6a\xc2\xba\x87\x60\x3f\xa0\xa8\xc3\x10\xda\x93\x16\x46\x25\xaf\xe0\x68\x63\x3b\x3b\x35\x7b\x5f\x86\xb9\x70\x62\xb1\xaa\x52\x15\x96\x83\xc4\xc1\x43\x09\xeb\x6a\x1e\x70\xe4\x37\x3b\xdb\x48\x84\x32\xd6\x4a\x99\x1f\xa8\x7b\x79\x1b\x62\x6a\x2b\x59\xd9\xd8\x8a\x90\xcf\xc1\x72\x38\x38\x0e\x98\x21\x93\xef\xe9\xca\xca\xd5\x39\xe7\xf8\x44\x9f\x04\x76\xb8\xb8\xbc\x38\x0b\xa1\x0a\xd3\x8b\xdb\xb3\xef\xcf\xae\x2b\xf9\xfc\xe7\x97\x93\x4a\x4e\xfe\xcd\xed\x75\x2d\x15\xff\xbb\xcb\xcb\xf3\xb3\x06\xe6\xe1\xec\x76\xfa\xa1\x52\xf8\xbb\xbb\xeb\xc9\xed\xf4\xb2\xf2\xdc\x77\xd3\x8b\xc9\xf5\x7f\x84\x7f\x39\xbb\xbe\xbe\xbc\xae\xd5\x77\x77\xba\x1b\x3d\x51\xf9\x8c\x76\xf7\x8f\x0f\xce\x06\xd4\xaa\xad\xcb\xb8\xaa\x3c\x7d\xc0\x2a\xee\x89\x3c\xdb\x37\x1d\x6d\xba\x7e\x1c\x2a\x91\xe0\xc2\x30\x4d\x1d\x34\xeb\x9e\x5f\x2a\xbb\xd2\x75\x19\x3f\x6c\xdb\x33\xa7\xda\xfc\x39\x90\x80\x3b\x0d\x40\x57\x4b\xcd\x71\x4b\xca\xf4\xd8\xb5\x19\x44\xb0\x56\xbc\x53\xaa\x4d\xc6\x2f\xde\x52\x5b\xc7\xbe\x76\x7a\x2a\xaf\x3d\x8c\x48\xcf\xc5\x86\xb2\xab\xd1\x41\x65\x96\x6c\x20\x89\xad\xa1\x60\x7f\x0c\x61\xf7\xe6\x33\xcc\xcc\x09\xa6\x63\x97\xa6\x71\x7b\xda\xd2\x6e\xf6\xbd\xa1\xed\xa7\x4a\x9a\x6d\xaf\x51\xb5\x0c\x68\x37\x50\x66\x0d\x69\xf7\x2d\xd7\xf7\x43\xdb\x4d\x95\x34\xdb\x0d\x66\xdf\x93\xda\x0d\x0e\xef\xa2\x9d\x46\x67\xc0\x26\x16\x16\x53\x6d\x9e\xcb\xf1\x77\x8f\x04\xd2\xe1\xfd\xda\x68\x16\xc0\xcb\x5e\x2f\x33\xde\x3f\x90\x01\xad\x71\xcb\x95\xd7\x58\xe5\x6f\xe0\x57\xf8\xc2\x45\x2e\xf8\x7d\xac\x1e\x69\x3c\xea\xc8\x50\xd6\x6b\x37\xaf\x76\x90\xd9\xc3\xed\x11\x51\xe4\x14\x81\x42\x94\x9a\x2f\x1e\x60\x72\x09\xf1\xa2\xa3\x0d\x16\xa8\x4e\xd7\x89\x88\x80\xfa\x49\xfa\xd1\x99\x49\xb4\xe6\xdb\x94\xab\xcd\xa8\x9a\x16\x11\x75\x08\x7c\xaa\xb3\xa1\x31\xb8\xae\x83\x81\xa5\x3c\xa0\x32\x07\x30\xdd\x22\x87\x3b\x13\x74\x48\x22\xc1\x99\x9c\x9b\x0b\x4f\x2e\xa2\x44\x8b\x40\x2c\xaf\xf5\xc4\xfe\xe5\x30\x29\x94\x82\x17\xad\x6e\xd7\xde\xfe\x70\x1e\x15\x25\x4f\x19\xa4\x2b\x11\x03\x23\xfa\x2a\xf1\x2f\x11\x97\x98\x1a\x53\x88\x4d\x06\x59\xfd\x61\x4e\xc7\x4c\xfe\x0c\x40\x09\x1c\x82\x57\x9a\x7d\x0f\x90\x07\xfb\x30\x1d\xc2\x1b\x5e\xc0\x59\xfc\x47\xac\xc3\xfd\x36\x9e\xc9\x8a\xf8\x54\xf0\x56\x45\x87\x6a\x3c\x93\x56\xad\x23\x56\x91\x1e\xc3\x8d\x6f\xac\xf2\xd5\x31\xc9\xc8\x9b\xc9\xae\xee\x17\x4a\xdd\x1f\x0b\x79\x0c\x3e\xa9\xe2\x98\x97\x85\x3a\x06\xb8\x14\x8e\xbf\x3e\xb6\x7a\xcf\x56\x30\x5b\x1f\xaf\x93\x07\x01\xff\x6f\xbc\x2e\x36\xe9\xbf\xe8\x6c\xfd\xe9\x68\x95\xe6\x47\xe6\xdd\xa3\xf0\xdd\x23\xfb\xee\x91\x7d\xf7\xc8\xbc\x86\xff\x2f\xdb\x62\x78\x47\x7c\xe2\xe6\x2c\x1b\xcd\x64\x22\xb5\xc8\x0b\xb0\x7e\x1e\xf3\xa4\xf0\x2a\x5f\x5b\xf6\xea\x3f\xff\x93\x8d\x73\xfe\x88\x19\xb1\xef\x78\xc1\xaf\xd0\xbf\xf8\xf7\xbf\xbf\x82\x80\x2a\x66\x31\x65\x3c\xff\xa5\x14\xc5\x4c\x6a\x61\x16\x21\xfb\x5f\x33\x09\x11\xd8\xcd\x76\x5e\xa0\xdf\x15\x7d\x90\xb1\x66\xdf\x62\x99\x53\x64\x23\x8d\xb5\x29\xa9\x23\x9d\x20\xe1\xa6\xb0\x9e\x2e\xfa\x5f\xd2\x77\xf4\xfc\x80\x65\xfd\x4b\x5a\x5d\xd5\x56\x67\x4a\xff\x92\xc2\x01\x9a\x2a\x6e\xc1\x5a\xcc\x4d\x5e\xb8\x27\x53\xe3\xda\xd6\x48\x03\x1a\xf0\xa2\x61\xfa\xf6\xb5\x72\x83\x8c\xe8\xd6\x73\xdf\xd8\x46\x20\x56\xe0\xe3\x10\x10\x3d\x4f\xcc\x0a\xb9\x41\x4f\x28\x58\x6e\xf8\xe5\x60\x93\x52\xe8\xdc\x95\x87\x8e\x0b\xfd\xf5\xc9\xf1\xf1\x88\xad\x34\xfc\xcf\xe2\x17\xf8\x1f\x40\x0f\x3d\x17\xa9\x6f\xa3\x33\x1d\x10\xae\x39\xca\xfb\x47\xe2\x39\x50\x74\x9f\x83\x47\xbe\x36\x4d\xbf\x2b\x65\x9c\x0a\x9f\xda\x58\x09\x89\xa4\xca\x8c\xa4\x1d\xa8\xa6\xf2\x10\x8c\xf1\x42\x44\xdc\x6c\x7c\x8d\xba\x11\x5c\xaa\x96\x85\x90\xe8\x0d\xcb\xbd\xd0\x25\x47\xcf\x15\x98\xc5\x00\x85\xe4\x05\x41\xce\x51\x2b\x0c\x2a\x01\x62\xf6\x51\xfd\x27\xb6\x55\x25\x71\x8c\x03\x73\x6e\x2c\xa2\x14\x84\x1c\x2c\x7b\x10\xcb\x45\x51\xe6\x92\x71\x96\x71\x19\x73\x0d\x33\x70\x99\x43\xb4\x33\x67\xbc\xd9\xd0\x11\xc2\x71\x55\x59\x00\x27\x16\x22\x0b\xc2\x9e\x40\x12\xf8\xa0\xcd\xa3\xa0\x11\x78\x26\x00\x17\x75\xe3\xc5\xf1\x4c\x5a\x29\x46\xc2\xc2\xa1\xa7\x2c\x52\xd9\x96\x18\x8f\xea\x9d\x9e\x58\xcf\x19\x75\xf7\xc8\xe3\x4d\xea\xcf\x8e\x58\x52\x0d\xad\x01\xdf\x7c\x11\xa8\xdb\xa3\x47\x4f\xb3\xd7\x42\x46\x2a\x16\xb9\x7e\x63\x96\x61\xe2\xee\x1d\x68\x3f\x24\xda\x0f\x06\xec\x52\xe6\x70\x23\x6f\xa1\x29\xde\x09\x4c\x99\xde\xa9\x30\x94\xb7\xd9\x39\xfb\x97\xca\x6f\x1d\x05\xd3\xd6\x5e\xfa\xcf\xcf\x8a\x88\x09\x71\x9d\xf6\xce\xf9\x74\x17\x04\x2e\xd9\x70\xc7\xc5\x42\xd1\xc6\x21\xe3\xc4\x4a\x89\x27\x05\x88\x83\xe6\x42\x17\x33\x49\x27\xf0\x88\x2d\x05\x37\x76\xde\x88\x45\xfa\x01\x37\x63\x3c\xee\x8b\x47\xe5\x31\x38\x56\xde\x06\xc0\xb0\x95\xc2\xbd\x93\x18\x1f\xe3\x94\x81\x8d\x00\x83\xae\x1b\xba\x33\x55\xa0\xb3\x5a\x37\xc4\x27\xf4\x83\x55\x4b\xa9\x2b\xac\x85\x62\x3d\xd0\x13\x5b\x0c\x14\xb3\x7a\x3b\xf0\x07\xb3\xf1\xe0\xd7\x21\x0c\x24\xd8\x1c\xc1\xe2\x26\x2c\x2d\xae\x33\x1f\xc3\x0d\x29\xeb\xc1\x37\xd3\xb5\xa8\x76\x74\x04\x34\xe0\x69\x7e\x0b\xf3\xea\x5e\x87\x95\x16\xb9\x95\x72\xc1\x6f\x45\x82\xc9\x75\x92\xc7\x47\x19\xcf\x8b\xad\x9d\xbe\x69\xb2\x00\x05\x88\x34\xb9\x17\x6c\x92\xe7\xea\xf1\xb9\x7b\xa1\x73\x6b\xe9\xba\x61\x1f\x82\x64\x1f\x7a\xcb\x6f\xa5\x97\xad\xbb\x3b\x9e\x46\x65\xdb\xe5\xf8\x68\xad\x27\x17\x45\xbe\x9d\x9b\x89\xb8\xc9\x3a\x77\x8a\x5e\x49\x13\xfd\x8d\xdc\x61\x2c\xb9\x35\x17\x46\x27\x4b\x6e\x65\x54\x7f\x3b\x2c\xb9\x2d\x04\xb8\x4d\x96\xdc\xe9\xc5\xf4\x76\x3a\x39\x9f\xfe\x9f\x5a\x89\x3f\x4f\xa6\xb7\xd3\x8b\xef\xe7\xef\x2f\xaf\xe7\xd7\x67\x37\x97\x77\xd7\xa7\x67\xbb\x69\xaf\x9a\xad\xf7\x26\xf8\x11\x0b\xeb\x39\x61\xb7\x01\x50\x03\x93\x0d\xc8\xfe\x26\x69\x60\x98\x55\x66\x31\x27\x72\x35\x82\x85\x7a\xc2\xce\xf2\x7c\xba\xe1\x2b\x71\x55\xa6\x29\xc0\xa9\x30\xb3\xe7\x34\x17\x70\xf1\x1c\xb1\x2b\x15\x4f\x83\xf7\x20\x1d\xb1\xf5\x33\xa0\x7e\x1e\xc7\xb9\xd0\x1a\xab\x1f\x51\xfd\x01\x78\xc8\xa5\x3a\x12\x78\x8e\x3f\xf0\x24\x35\xf7\xb7\x13\xf6\x1d\x8f\xee\xd5\x72\x89\xe9\x33\x23\x97\x38\xc5\x7e\x29\x55\xc1\x99\xf8\x14\x01\xd5\x5b\xfb\x3c\x39\x57\xab\x5f\x01\xaa\xdc\x23\x3c\xd5\x71\x49\x01\xa9\xbb\x79\xfb\x71\xde\xbe\x11\xd0\x57\x7e\xc0\x57\xdf\xe3\x9b\xed\x0e\xca\x22\x7d\x86\xf4\xf8\x73\xb5\x6a\x17\x1e\x02\xeb\x9a\xd4\x92\x28\x90\x10\x11\xbb\x88\x5a\x31\x9d\xc8\xfb\x99\xfc\x79\x2d\x24\x53\x65\x8e\x7f\x82\x6b\xbe\x31\x33\xd3\x52\xaf\x05\x28\x74\x8f\xd8\xa3\x60\x1b\xbe\x45\xb3\x19\xee\x04\x4e\x2d\x05\xa6\x0c\x9c\x22\xe6\xed\x34\x91\x66\xb7\xc8\x12\x9b\x97\x50\x1f\xfa\xe7\xb8\x71\x59\xa2\x43\x7e\x38\x0f\xf1\xae\xf3\xb4\x82\xcf\x03\x57\x99\xc7\x4d\x5a\x80\x10\xed\xdc\x20\x2a\xab\xd4\x7d\x99\x79\x4a\xd4\x57\x36\x38\x09\xdd\xfd\xa0\x92\x98\xc5\x65\x96\x26\x91\xdb\x77\x1f\x55\xde\xc9\xfb\x8c\x09\x34\xfd\x4f\x9d\x7a\x5a\xd8\xae\x0f\x6b\xc9\xce\x09\x90\x74\x3b\x18\xa0\x5f\x98\x03\x9b\x25\x32\x4a\x4b\x90\x99\x2b\xb5\xc8\x8f\x9c\x74\xb4\xcb\xf5\xfb\xed\x93\x64\x7b\x12\xce\xc3\xd3\xda\xc2\xa4\xf3\x54\xad\x92\x88\xa7\x21\xb8\xd9\xa3\x22\x1c\x0b\xaf\x5d\xf6\x24\x26\x0c\x79\x10\xb6\x41\x9d\x44\x5a\x59\x2e\x80\x08\x7a\x0e\x5b\xf9\x9c\xb6\xbb\x43\xda\xbd\x64\xe6\x82\x8e\xed\x0a\x39\x72\x6d\x78\xc1\x9e\x70\xbe\x6e\xab\xc4\x06\x26\xa6\x90\x00\x01\x50\x8f\x52\xe4\x60\xc1\x02\xec\xc3\x7c\xa9\x54\x60\x9b\x38\x75\x36\x87\x4f\xb6\xea\x84\x4b\x07\xc4\xc6\xcc\xd9\x55\xf2\x20\xe4\xe7\x27\x35\x0f\x2a\x88\x78\xb4\x16\x73\x6b\x97\x3f\xf7\x96\xe5\x0e\x80\x81\x9b\x95\x95\x49\x09\xb7\x52\x17\xde\x84\xab\x13\xb6\xb8\xb9\x77\x61\x20\x71\x47\x46\x96\x69\xc4\x3c\x16\xd1\xfd\x67\xdf\x9a\x3d\xc8\xca\x36\x84\x71\xf6\x4e\x44\xf7\xec\xee\x7a\x8a\xd9\xc0\x49\xc1\xcc\x56\xa0\xd7\x5e\xf6\xa9\xf3\xee\x56\xf0\xd5\x0b\x50\x58\xf5\xd5\xad\xf2\x52\x05\x4e\xad\xcf\x34\x88\x00\x51\x90\x2f\x69\x36\x49\xca\xa5\x01\x20\x18\x2f\xac\x9a\x11\x38\xe2\x99\xde\x80\x78\x51\x59\x04\x8a\x7f\x29\x5f\x88\xb4\x83\xb8\x33\x53\xf1\xdc\xc6\x49\x0e\x05\xf3\x34\xca\xb2\x7e\x0c\x8a\x3a\xda\x3c\x06\x6e\x2c\xd6\x5b\x7a\x90\xdd\x7f\xa3\x03\x7a\x0d\x15\xf2\x87\xc3\xbd\x9e\x6b\x48\xef\x5e\x26\x2b\x1b\x6d\x4b\x96\x24\xb1\x84\x09\xfd\xc6\x0e\x86\xfd\xd2\x94\x74\xa5\x62\x82\xe9\x39\x2e\x3c\x63\x05\x09\xf2\x9e\x78\x5c\x45\xd8\x04\x8b\x03\x84\x7a\xcd\x8a\x10\x3c\x66\x6a\x49\xde\xc4\x2c\x4b\x13\x60\x86\x8e\x91\x84\x1e\xd8\x33\x74\x15\x1d\x1f\x96\x66\x1b\x1b\x90\x7c\x5c\x59\x20\x5e\x97\x18\x2f\x6c\x18\x98\xc1\x30\x07\x36\xb8\xf9\x03\xef\x26\x53\x7b\x71\xc5\xb4\x8e\xf6\xb8\x68\x72\x95\x12\xb6\x42\xda\x47\xbe\x02\x3c\xd6\x6d\x42\x7e\xc4\xd3\xa8\xa4\x38\x19\xc8\xe5\x5b\x15\xfc\xdd\x08\x42\x1f\xf5\x33\x03\x5d\xf5\xfa\xd7\x8d\xcc\x43\xd5\x15\x5d\x82\xd6\x53\x7d\x0a\xbb\xdd\x8b\xab\x54\x2d\x60\xe6\x74\xa3\x04\x77\x9c\x58\x66\xbb\xce\x93\x78\x88\xbd\x63\xfb\xe4\xd2\xbd\xba\xab\x81\x97\xd6\xf5\xe3\x6a\xb2\xf3\x9e\x91\x90\x41\x8d\xb9\x71\x18\x05\xc2\x92\x54\x55\xab\xd7\x93\x82\x64\x3c\x60\x5a\xb9\xf3\xa9\xc3\xcf\x50\xfd\x96\x83\x06\xba\xc9\x14\xb3\xa7\x2f\x3d\xb9\xcc\xee\x41\x3e\x80\xee\x03\xb7\x32\xc7\xf9\xd1\xed\x59\x94\xb1\x88\xe7\x4f\xf8\x86\x33\x7a\xb7\xdf\xb7\xb8\x9e\xc6\xe6\x81\x0f\x50\x1e\x19\x53\x21\xe6\x79\xec\xbf\x63\x04\xeb\x3d\xe2\x19\xb8\xe1\x21\xac\xf1\xf0\x76\x6c\xeb\xb8\xf6\xd9\x45\x66\xbf\xc4\x9c\x7f\xc4\x6f\xab\x16\x0d\x9c\x7d\xf3\xc8\x4d\x52\x84\x77\x9b\x99\xe3\xa7\x6b\x25\xef\xa6\xd7\xdc\xad\xcf\x30\xbb\x81\x1f\x32\xb9\x5e\x62\xef\x28\x0b\xe5\xa3\x3d\xf0\x3d\x53\xa0\x1d\x0e\x33\xfa\x60\x83\x9c\xc6\x1d\x48\x11\x6b\x7e\xdb\x4d\x68\x00\xfe\x78\x10\x02\x3a\xcb\x85\x8d\x1b\x6e\x45\xe1\x78\x1d\x52\xab\x2b\x08\x61\x31\xf7\xd5\x55\x62\x1b\xcb\x5d\xe1\xc8\xc8\x20\x88\x45\xa6\x7e\xa4\x36\x99\x92\x00\x4b\xc2\x2c\xb5\x99\xa4\xc2\xad\x3a\xbc\x8b\xac\x55\x52\x1d\x47\xe4\xd0\xc4\xc4\x19\xa1\x55\xfa\x40\x21\xd4\x40\xc4\x04\x74\x25\x4d\x03\x4f\xcd\xdd\x50\xe5\x48\xb0\x65\x4f\x76\xc8\x04\xa8\x49\xa4\xe7\x62\x95\xe8\x42\x84\xd9\xa1\xe1\xfb\xcf\xa6\x66\x5b\x71\x9e\xec\xea\xfa\x4e\x35\xdb\x7d\xb7\x20\xb3\x3f\x0d\x68\xcf\x36\x13\xf1\xd4\xbd\xb7\x7b\x32\xd4\x12\xf8\xfd\x76\x58\x39\xef\x70\x0e\xe0\xed\x4f\x23\xd5\x97\x76\xf2\x23\x6e\x90\x88\x84\x89\x7b\x40\xa3\x19\xa2\x55\xc9\x73\x2e\x0b\x21\xf4\x4c\x52\xe0\x19\x29\xeb\x42\x56\x96\x1a\x10\xd2\xdd\x6d\x22\xa5\x0b\x64\x80\x82\x57\x96\x3c\x49\xcb\xbc\xd3\xdd\x80\xb3\xf2\x49\xb4\x13\xbb\x7a\xe9\x14\x8a\x65\x6d\x83\xe6\x12\x98\x83\x55\xe4\x58\x53\xea\x61\xe3\x6a\x7e\x6f\xc7\x27\xd8\xc3\xa5\xff\x78\x3b\x5f\x73\x47\x4e\xf3\x37\x7a\x9e\xa9\x01\x3b\xde\x8f\xdf\xe8\x2b\xd5\x91\x0d\xae\x7f\x69\xf8\x44\x77\xc0\x27\x7e\xe9\x12\x64\xe1\xfa\x1e\x22\x8f\xfb\x5c\x31\xbd\xd8\x38\xf7\xc6\x27\x3b\xf7\x2e\x98\xb5\x6b\x2e\xe3\xd4\x98\xbc\xbc\xa8\xf3\x5e\x3b\x9c\xb7\xb9\x12\x15\x76\x73\xec\x4e\xea\x83\x1c\x99\x79\xd4\x48\xb0\xdc\xd7\x4f\xb5\xcc\xcc\x9d\x58\xca\x5a\x2d\xd5\x7c\xc9\xb6\x3c\x1d\x6f\xc3\x90\x0c\xb2\x5b\xb0\xbf\xba\xfd\x72\x16\xb6\xfd\x33\x99\x2f\xd5\xb5\xb6\x4c\x56\xbf\x01\x47\xc2\x87\xe6\x91\x10\xd1\x9e\x43\x07\xb5\xcb\x6e\x38\x70\xd7\x81\x44\x32\xb3\x6b\x87\x8c\xe3\x33\x49\x72\xf0\x88\x2e\x80\xb0\x32\xf2\xad\x69\xf6\xd6\x65\x17\xbf\xfd\x9d\x65\xdb\xda\xb2\x25\x4c\x2a\xa0\xb4\x53\x51\x54\xe6\x10\xfa\x27\xf7\x24\x13\x78\x08\xeb\x41\x44\x32\x60\x7a\x38\xc0\x16\xda\x89\x6d\x66\x92\xf3\x47\x57\x3e\xea\x16\xdc\x90\x28\x6c\xef\x0e\x7d\xd2\x2b\xcb\x75\xc1\x74\x21\xb2\xd6\xed\xb7\x62\x5d\x26\x1b\x4f\xfd\x7d\x88\x79\xd9\x4a\x30\x3c\x8c\xb7\x7b\x47\x8c\x7e\x9b\x89\x89\x94\xaa\xa8\x67\xd1\x0c\x6e\x26\x77\xa5\xf4\x5c\xe0\x03\x8e\xcc\x49\xe0\xd8\xfa\xc3\xcd\xe5\x05\xcb\xf8\x16\x10\x9a\x85\x62\xf8\x28\xd0\xa2\xd6\xb7\xd3\x7d\xf3\xa4\xfa\xf1\xd5\xbd\x0f\x47\xde\x42\xbd\xdb\xa3\x28\x54\x63\xd3\xa4\x85\x99\x4d\x0b\xc7\xec\xac\xb9\x4a\x8f\xb2\x94\xcb\x00\x84\xaf\xc7\xac\x56\x7d\x88\xba\x70\xf1\x57\xc2\xb5\x41\x03\xc0\xab\x42\x33\x36\x2f\x5b\x61\xda\xc0\x0e\x64\xa7\xfd\x61\x40\x8b\xce\x9d\x6c\x27\xfc\xf4\x03\x6a\xd5\xa0\x72\x03\x72\x7c\x58\xf0\x88\xc3\x1f\x71\x0d\xd0\xe0\x4e\x9e\x72\x1e\xa5\x5c\xeb\x9d\x58\xa2\x17\x21\xbc\x0f\x72\x2b\xf7\x6f\xb2\xd5\x76\x22\xd8\x11\x18\x58\xf0\xf6\xec\x7e\x06\x4e\x07\xbb\xc1\x7a\x69\xba\xe0\x56\x12\x68\x56\x10\x40\x83\x58\xad\xe0\x7d\xe4\xab\xbc\x17\x5b\xeb\x87\xa3\x0d\x95\x6f\xc4\xc8\xb9\x84\x9d\xcf\x33\x80\x26\x36\x0b\x9e\x49\xc0\xee\xbe\x0f\x9b\xc7\xde\x2b\x35\x42\x14\x29\x55\xce\xb1\x58\x1e\xe2\xb0\x66\xf2\xbd\x52\x63\xee\xae\xda\xd4\x7e\xda\x14\xeb\x15\x12\x76\x0b\x90\x91\xb5\xe1\xec\xbf\x36\x7f\x48\x24\x8a\x28\x26\x1b\x73\xcd\xa3\x7e\x82\x19\x05\x0d\xb2\x9a\xfd\xea\x51\xb3\x18\x89\x6f\xca\x44\xaf\x21\x38\x84\xd1\x58\xa8\x9f\x0e\x3e\x84\x8d\xe5\x5c\x6a\xb3\x86\x21\xa0\x24\x1e\x04\x79\x95\x2b\x48\x88\xe9\xbb\x73\x07\xae\xc2\x75\x49\x02\x23\x1d\xab\x2d\xb8\x1a\x1d\xe2\x42\x00\x50\xfc\x00\xda\x3d\x72\xc3\x7e\xe0\xd9\xae\x94\xdd\x83\x4b\xdc\x37\x4a\x8e\xf6\xab\x7e\xef\x03\xbd\x75\x50\x5a\xac\xe4\xed\x86\xbd\x77\x27\x3f\xf3\xc1\x48\xc2\x40\xbd\xdd\x20\x03\xb7\x8a\xfd\xc7\x4d\xc0\xc0\xe9\x80\x8d\xee\xc6\x6a\x36\x76\xd0\xb1\x03\xea\x40\x5c\xd2\x63\x76\x23\x04\xfb\x08\x3d\x65\x2a\xfb\x48\x3a\xa9\x80\xd5\x2e\x78\xd2\x2a\x63\x07\x4f\x4f\xe5\x52\x1d\xb6\xff\xe7\xab\x06\x16\xf8\xa0\x5e\x69\x6f\xe7\xa1\x68\x63\x88\x47\xc8\x97\x25\x3f\xe9\x75\x30\xd4\xc6\xfa\xca\x7b\xc5\x28\x25\xda\xb6\xd4\x18\x8e\x30\xc4\x4f\xa1\xd7\xab\x4d\x12\xf3\x95\x23\xa4\x8c\xbf\x97\xea\x51\xe2\x7e\x4c\x35\xb1\xd7\x66\xfd\x81\xcd\x82\xd1\x2b\xb4\x57\x4b\xdc\x0d\xdf\x00\x87\xfd\xc4\xfd\x9b\xdd\x60\xa0\x1e\xdb\x0c\x02\x67\x1a\xac\x72\x92\x26\x83\x03\xfc\xf5\x64\xc4\xbe\x1b\xb1\xd3\x11\x1b\x8f\xc7\x6f\x46\x4c\xf0\x68\x6d\x5b\x84\xaf\xe0\xd6\x5f\xf0\x95\x29\x9b\xc4\x89\x96\x41\x05\x20\x62\x68\xec\x13\x4b\xd5\xc8\xfd\x53\x81\xef\xcf\x7e\x02\x26\x90\x53\xb6\x1b\x81\x9a\xa2\xb5\x4a\x7c\xa3\x00\x1f\x2f\x22\x95\x5b\x84\xbd\x2e\x54\x6e\xd1\xc2\x0f\x3c\xe7\x89\x04\x5e\x0d\xde\xcc\x95\xa0\x9a\x03\x66\x7d\xf1\x89\x6f\xe0\xfb\x13\xe9\xc8\x85\x4d\x37\xdd\xba\xf6\x17\xdb\x8c\xa2\x81\x8f\x79\x52\x14\xc6\x20\xd3\x33\x79\xc3\x4e\xbe\x65\x93\x2c\x4b\x05\x9b\xb0\xff\x62\xdf\x71\xc9\x25\x67\xdf\xb1\xff\x62\xa7\x5c\x16\x3c\x55\x65\x26\xd8\x29\xfb\x2f\xd3\x6d\xa6\xbc\x0b\x65\x2c\xa0\xed\x88\x71\x26\xcb\x14\x0d\xbd\xd7\x16\x89\xfb\xc6\x7d\x17\xf7\xa3\xb3\x10\xc5\xa3\x10\x92\x69\xb5\xa1\xa3\xf0\x4f\xee\xf4\xd7\x89\x5c\xa5\xa2\xa0\xf9\x50\xc5\x4c\x63\x05\x47\xf0\xa5\x27\x33\xe9\xbc\xe9\x7f\x32\x2d\xfe\x13\xfb\x2f\x76\x51\xa6\xa9\x69\x92\xd9\x68\xcc\x44\x3a\x61\x36\x87\x4d\xc8\xf1\x63\x72\x9f\x64\x22\x4e\x38\x64\xb1\x99\x7f\x1d\xdf\xc2\x68\xcf\x4b\x4f\x58\x1a\xae\x69\x27\x1a\x77\xc8\xd6\xf3\x22\x8c\x18\x4e\xd2\x30\xb4\x56\x3a\xa1\x32\xe1\xab\xc3\x8d\x60\x4f\xd3\x4c\xeb\x81\xee\x28\x28\xf8\x17\x86\x51\xdb\xeb\x77\xda\x64\x99\xf9\xaf\x56\x92\x92\x5e\x1a\x65\xbb\xfa\xc3\xb7\x11\x8c\x53\x1c\x1c\x9f\x42\x0a\x17\x19\xc8\x78\xc4\x75\xb7\x05\x61\x12\x5b\x36\x5e\x8e\x31\x08\x6f\x2e\xfc\x68\x8d\x16\x7c\x35\x62\x99\x53\xbb\xb2\x8b\xca\x85\xdf\x71\x1d\xa3\xb2\x03\x19\x9b\xaf\x2d\xcc\xc9\xcc\x65\xca\x92\x3c\x8e\xd5\x86\x27\xf2\x0d\xd4\x61\x09\xfe\xf6\x74\x54\xcb\x75\x65\x7f\x0f\xdd\xf2\x9d\x98\xcb\x6e\x01\x82\xaa\xb1\x53\x13\x9a\x6b\x5b\x0e\x07\x2a\xad\x79\x1d\xd6\xcf\x78\x1d\xfa\xa9\x31\x45\xf7\x1c\x79\x0d\x9d\xb5\x0a\xc7\x0b\xd8\xf2\x9e\xe7\xae\x17\x02\xc0\xe9\xab\xfd\x54\x15\xa2\xad\x74\xb1\x4a\x7a\x29\xf6\xd6\x1a\x7b\x47\x37\x31\xcc\xce\x36\xdb\x64\x92\x1e\x9b\xad\xf2\xf8\x42\x49\xc1\xb8\xd6\xc9\x0a\xb9\xf9\xc0\xed\x87\x52\xb7\xd6\x28\xbb\xad\x5e\x19\x82\x2d\x08\xec\x33\xd3\x24\xc4\x75\x17\x66\x17\x36\x43\x90\x6e\x67\xd2\xbc\x41\x16\x01\xe4\x78\x25\x8e\xc2\x1d\x6b\x23\x86\x74\x5b\x17\x1d\x88\x41\xe1\x2d\x13\x6c\x17\x81\xc4\x01\x13\x8e\x56\xe2\x01\x71\xc1\x8b\x80\xbe\x94\x4a\xb3\xdc\x56\x08\xfa\x59\x88\x54\xc9\x95\x99\x15\x5d\x9b\x30\xec\x02\xcf\xd4\x04\x2c\xac\xb3\x05\xc6\x58\xa1\x47\x68\x48\x8c\x9d\x92\xc4\xde\xf1\xa7\xcb\x85\xb1\xe3\x5c\x4c\xca\x59\x23\xf4\x71\x5d\x6c\x1a\x87\x81\xab\xee\xcc\x1e\xac\x72\x0b\xef\x73\xf1\x4e\x34\x5c\x3c\xd3\x14\x7e\x51\x17\x8e\x24\x1f\xe4\xca\xe9\x88\xbf\x8f\x98\xca\x91\x64\xd4\xc6\xd9\x1d\x4b\x58\xb3\xf6\xee\x25\xbd\x33\x27\xa5\xdd\x43\x4b\xd1\xdc\x06\xab\x49\x8f\xd5\xf0\x6b\xa6\xa7\xf4\x49\x5a\x79\x3f\x99\x9e\xd7\x9e\x6b\x26\xad\xb4\x64\xb6\xdc\x4e\x3f\x9c\xbd\x9b\x5f\xde\xdd\x36\x9e\x33\xa5\xd1\x9f\xf6\xe4\xad\x74\xf6\xde\x73\x20\xf7\x7f\x41\xa5\xb5\xb9\x5a\x5a\x12\x83\xfe\xc7\x73\x43\xeb\xae\x1f\x40\xb4\x08\x6e\xd7\xa1\x26\x5c\x73\xe2\x74\x52\xb1\xc8\x39\x45\x84\xfb\x35\xb6\xde\x61\x97\xf2\x3d\xbe\x7e\xa5\xd2\x24\xda\x8d\x37\xb7\x87\xa5\xb1\xaa\x9a\x00\xde\x85\x80\x04\x0c\x72\xf8\x52\xa3\xf0\x7e\x56\x88\xa8\xf0\x88\x87\xe6\xc7\xfd\x3f\x8d\x71\xdd\xef\x81\x41\x3f\xac\xeb\x36\x90\x50\x77\x18\x0a\x38\xd9\x81\xdb\x1a\x24\x5d\xd0\xca\x05\xcf\x2e\xec\x79\x11\xa7\xc8\x58\xa5\xe7\xe1\x78\x78\x5c\xab\x94\xfc\xb1\xc8\x13\x3e\x93\x99\xc8\x23\x05\xd8\x50\xa4\xa0\x51\x2c\x5a\x27\x69\xec\x75\xd3\x5e\x43\x32\x0d\x40\xde\xdf\x90\x04\xb0\x70\x18\x1f\x5b\xfc\x8e\x33\xdf\x4e\xbb\x77\xb8\xba\x0f\xc2\xc7\x3d\x27\x3a\x7e\xd7\xb4\xff\x99\x50\xdc\xd8\x15\xc4\xec\x57\x43\x6b\x80\xd9\x1f\xb6\x67\x50\x48\xc7\x1c\xf6\x24\x89\x15\xf9\x6b\x73\x51\x1b\x57\x9a\x66\xf5\xae\x04\xbe\x77\xf4\xa3\x23\x54\x51\x0b\x68\xce\x46\x70\xb4\x04\x3d\xfb\x32\x0d\xea\x4c\x7a\x7c\xca\x2b\x1d\x5a\x85\xad\xe3\x8c\xde\x77\x8b\xbf\x1f\xb1\x57\x95\x0f\x7d\x05\x7c\xe0\x52\x41\x7d\x84\x21\xa8\x74\x0d\x4c\xd7\x11\x4b\x8a\x99\x34\x77\x36\x33\x33\x73\x91\x8a\x07\xd3\xba\x30\x3a\x44\xa8\x4a\xeb\x39\xb1\x9f\x0d\x29\x5c\xdc\x32\x7f\xd0\xb4\xa1\x45\x98\x87\xbc\xd2\x18\x3c\x8f\x85\x36\x56\x2b\x28\x62\x89\x4f\x66\x01\x24\x10\xa2\x45\xf8\x5d\x2c\xa4\x6d\x1f\xa0\xf2\xa0\x6d\xe3\x99\x9c\x2e\x81\x7e\x01\x48\x1f\xe2\x18\x7d\x10\x56\x23\xc9\x91\x7c\x26\x14\x0d\x52\xe4\x91\xb1\x03\x41\x0a\xd6\xb8\x92\xc4\x83\xc8\xb7\x05\xb8\xf4\xa1\x5f\xa5\xe0\xc5\x9a\x25\xc5\x08\xd8\x59\xed\x4e\x39\x93\x3c\x8e\x29\x6b\x1d\x8b\x0b\xae\xb3\x9d\xe3\x4c\xbf\x2f\xd4\xc3\x2e\xb3\xfa\x50\x7c\x31\xae\xea\x2c\xe5\x72\x8e\x27\xc8\xaf\x80\x30\x0e\xc4\xc5\xbb\xa0\x26\xe5\x62\xee\x18\xe5\x9e\xa5\x9d\x6e\xbf\xbf\xb6\x00\x6b\xba\xda\x94\x0b\x5b\xd1\xa8\x02\x20\x5f\x78\xf2\x11\xe7\xa5\x23\x74\x57\xce\x2c\x02\xa6\xff\x2e\xe0\xc1\xc7\xbc\x86\x04\xb3\xb3\x75\x1f\xfa\xd8\xce\x80\xdf\x2a\x3e\xb4\xcf\xc8\xd7\xce\x90\xfa\xb0\x0f\x87\x26\x36\x2c\xc4\x27\xc1\x13\xf7\x34\xeb\x65\x21\x8a\x9d\x5e\x9c\x26\x54\xd1\x7e\x6d\x10\xdf\xa7\x04\x07\xf4\xc2\x3a\x07\x5a\xbb\x78\x7c\x78\x0b\x54\x2d\x28\xfe\xe7\x8c\x50\xc0\x3e\xd5\xd7\x4f\xe3\x69\x4f\xa0\x5d\x63\x36\x95\xcc\x9a\x7b\x23\xf6\x0a\x27\x96\x7e\x45\x0e\x68\x73\xcf\xe5\x80\xa3\x15\xf9\x83\x88\x69\xf5\x10\x51\x44\x1d\x0a\x87\xe9\x7a\x7e\xb9\x61\x1c\x70\x27\xab\xf0\x8b\xf6\xcb\x77\x09\xa4\x0b\x3e\x85\x11\x06\x63\xc8\x0b\x2c\xc0\x66\xbb\x04\xae\x50\xfa\x5c\x88\x65\xf8\x0f\xb6\xd1\x4e\xf6\x9d\x7d\xd1\x74\x51\x56\xd2\x79\x6a\x7f\x67\x2a\x9f\x49\x5b\x1a\x39\xa4\x35\xca\x18\xd6\x8b\x0a\xb2\x97\xc8\xe6\x0f\x66\x2a\x40\x01\xac\x72\x25\x08\xa2\x7a\xea\xf3\xfa\x2e\x00\x58\xad\x85\xc3\xc9\x82\x56\x86\xaf\xcd\x18\x1e\x66\x82\x6f\xf0\x98\xaf\xd3\x23\xa7\xa9\xe9\x94\xa4\xb0\x6c\xcc\x41\x66\xa1\x2e\x81\x53\x7c\x59\x9a\xcd\x28\x20\x5e\x9f\x49\xd3\x79\x6c\x99\x40\x86\x09\xf5\xcb\x4c\x7e\x50\xda\x12\xd9\x68\xdf\x1f\x16\x58\x40\xdd\xf6\xca\x09\x78\xd2\x1f\xde\xc1\xa1\x4d\x11\x1f\xa4\xa4\x73\x47\x0b\xa4\x94\x12\x1b\xd5\x56\x95\xb9\xff\xa8\x88\xcb\x99\xfc\xab\xe9\x1e\xb8\x4e\x71\x69\x87\x55\x2d\x71\x09\xc3\x08\x42\xa8\xec\x23\x16\xfa\xfa\x77\x6f\x3e\xbe\xc1\x14\xb0\x52\x83\x66\xf2\xa8\x7a\x80\x38\x0d\x8e\x32\x4d\x01\x87\x60\xbf\xc0\xf1\x40\xf9\x2a\x76\xa2\x05\xe9\x52\x37\x97\x55\x13\xa3\xcf\x42\xef\xe7\xd6\x9f\xb0\x88\x17\xd1\xfa\xc8\xda\x72\xb4\x8d\xd9\xd3\x8f\x86\x0f\x73\xb5\x8c\xa5\xc5\x5a\x65\x28\xcc\x85\x33\xdf\x38\x62\xdc\xca\x7c\x31\x9f\x00\xee\xff\xdb\xba\x26\x9b\xe3\xed\xc6\xc9\x89\x38\xa0\xaa\x9d\xe7\x1e\xb7\x8a\xa8\xfe\xc6\x49\x31\x12\xc9\x37\x22\x66\xaf\x20\x59\xf9\x95\x1d\xfc\x99\xcc\x16\xe3\x74\xbb\x2c\x88\x5d\xd1\x74\xca\x18\xb4\x03\xf7\x9c\x72\xf3\xb8\x79\x4d\xda\xd3\xd9\x9d\x17\xad\x76\x5b\xc7\xf5\x8d\xab\xa9\xbf\xc1\x82\x3e\x2e\xd7\x3b\x37\x55\xe4\x62\x55\xc4\x84\xeb\xfb\x11\x5b\xe4\x5c\x82\xec\x53\x1c\x1a\x55\x7e\x75\xc2\xe5\x19\xa9\x0b\x6d\xf6\xa2\xe4\xe9\x16\xb2\x94\x46\x33\x89\x3c\x8f\x20\x08\xb0\x8d\xd2\x24\x62\xab\x9c\x67\xeb\x9a\x1d\x24\x1e\x84\x2c\x40\x3d\xfc\x5a\x70\x7d\x18\x56\x23\xaf\x97\xc0\x7a\x47\xd3\x26\x12\x6e\x1f\x5c\xd6\x98\xb9\xa1\x79\x1d\x47\x0b\xa0\x48\x45\x3c\x1f\xc6\xca\xb5\x97\x3b\xba\xc2\x48\x4a\xf4\x78\x10\x7f\x36\x1f\xc7\x6c\xad\xfb\xc0\x0f\xd8\xaf\x44\x18\x65\x71\xc7\x87\x02\x36\x1c\x01\xd5\x41\x34\xc2\xd3\xaa\x15\xc9\x3d\xb3\x96\xf7\x9b\x53\xd8\x0f\x3d\x15\x36\x59\xc3\x6d\x1c\x23\x52\x77\x05\x8a\x51\xf6\xc7\x72\xa1\x52\xcb\xd1\x3a\x7d\xc7\x54\x0e\xf2\x48\x85\xa2\x3f\x25\x71\x97\x75\x90\xc8\x58\x7c\x3a\x88\x28\x69\xf7\x41\x6f\xcd\x66\x53\x4d\xa0\xc2\x53\xff\x58\xd8\x9d\x72\x61\x0e\xe1\xc2\xde\x8c\x1b\x4f\xe9\x3a\xa0\x7a\x92\x16\x6b\x40\x39\x63\x22\x91\xef\xd4\x0d\xdf\xb2\x68\xcd\xe5\x2a\x70\x4d\x00\x9c\x53\x64\x2a\x47\x19\xe1\x07\x60\x24\x55\xb9\x25\xa2\x20\x7a\x05\xca\x66\x72\x61\x0c\x4c\x22\x50\x96\x43\x81\xaf\x56\xb9\x58\x41\xb2\xed\x4c\x56\x08\x62\x80\x8d\xd5\x2a\x18\x61\x3d\xbb\xf8\x35\x9e\x87\xa4\xaa\xeb\x36\x58\xe4\x5b\xc7\x4e\x40\x1a\xdc\x7e\x3d\xd7\xbb\x75\xc4\x12\x31\x1e\xb1\xaf\x7c\xe2\x84\x88\x94\x74\xf4\x06\x1d\xb9\xed\x35\x97\x3f\xdb\x73\x75\x68\xb2\x59\xb5\xb7\x1d\x7e\x6b\x28\x79\xb7\x4e\x9a\x9d\xfc\x10\x05\x2f\xca\x01\x67\xd0\x29\x2f\x78\xaa\x56\xa7\xe6\xe5\x1b\x7c\x77\xd7\xbc\x3e\xc5\xac\x06\xcb\x24\x68\x9e\x37\x27\xa7\xa9\xdb\x2b\x0d\xb4\xf5\xf5\x5e\x07\x72\xaa\xba\x1d\xc8\xcf\x61\xaa\x5b\xba\xa8\xfd\x3e\xe4\xb4\x83\x02\x69\xc7\x37\x0d\x75\x11\xdb\xdc\x03\x4a\x9f\xd2\xf5\x6b\x6c\xcb\x0e\x90\xe5\x2a\x2e\x23\x11\x9b\x95\x0b\xf7\x21\xc4\x43\x39\x26\xa6\xca\x26\xd9\x76\xd0\x56\xe8\xe4\xe0\xd4\xfd\x5c\x3e\x87\x5e\x0c\xfe\xae\xfb\xef\x3a\xfc\x0d\xd6\xe2\x6b\xeb\xf4\x70\x7d\x62\x3f\xe5\x03\xcf\x29\x57\x7d\x95\x77\x5f\xe5\xc9\x2a\x91\xbc\x50\x39\x7b\xed\xf8\x16\xde\x38\xb1\xbe\x6e\x0b\x61\xe0\x36\x51\xe9\x22\xdc\x26\x3e\xab\xe1\xd1\x36\x49\xcd\x53\xba\xe0\x9b\x2c\x64\xb2\x06\x2f\x70\xd0\x33\x29\x76\x82\xb3\x4d\xc0\x77\x9a\x68\x9f\x5b\x3c\x93\x14\x71\xc0\x71\x53\x79\x28\xc5\xd0\x79\x36\x67\x65\x31\x7f\x22\x3b\x1b\xbe\x3c\xcc\xf1\x44\x20\x88\x0f\x3c\xdb\xcd\x77\xc5\xc9\xe5\x80\xc9\x95\xe4\x8e\xf0\x96\x4a\x75\x7e\xee\x16\x3b\x1a\xc8\xbf\x5d\x0f\xdc\x5f\x9f\xdb\x40\x91\xbf\x0f\x56\x2e\x58\x30\x10\x48\xfc\x8b\xc9\x6a\x78\xb5\x77\xdb\x9a\x39\xc5\x2d\x49\xd6\x69\xaa\xca\x98\xd1\xa6\x46\x20\x80\x7c\x8c\xa7\x23\x30\x71\x8f\xc7\x5d\xc9\x77\x03\x45\xd8\xdd\xfe\x03\xef\xb5\xaf\x40\xf8\xad\x63\x07\xde\xb9\xf4\xa9\x67\x5f\x6c\xe8\xa9\xa7\x61\xec\xdd\x76\x3c\x68\xec\x9d\x17\x1c\x68\x41\x87\x39\x48\xe1\x3e\x9a\xc4\x29\xac\xb7\x30\x80\xd0\x42\x5c\x5e\x09\xcc\xea\xfb\x83\xab\xb3\x5c\x19\xbb\xab\xca\x78\x2e\x64\x31\x87\x1a\x87\x55\x06\x95\x5c\xc1\xeb\x15\x83\xa9\x97\x23\xf8\xcf\xb7\x0a\xfd\xfb\x96\x03\xec\x2f\xec\x86\x7c\x5a\x66\xbf\x4a\x00\x42\xac\xef\xd9\xeb\x04\x10\x4f\x41\x2c\xd4\x0d\x5c\xc7\x70\xd1\x07\x3d\xa1\xf7\x82\x0f\xaa\x6c\xed\xbd\x3e\xc8\xb7\x1e\x42\xd5\x50\x0a\xb9\xf7\x88\xb9\xc0\x6c\xb5\xf6\x6f\x81\x2e\xc8\x45\xe5\xdf\xc0\xe1\x6c\xc6\x2f\x65\x7f\x13\xb9\xf2\xf9\x5f\xe8\xac\x0a\x0b\xde\x69\xaf\x3f\x5d\xd2\x1c\xed\x71\x14\xd3\x0e\xd5\x64\xe1\x2f\x44\xb3\x86\x1e\x85\xc5\xd6\x5e\x47\x3a\x42\x48\x99\x88\xe6\x1d\xd2\x41\xbd\x9a\x12\x5c\x3c\x43\x29\xa0\xa4\x76\x98\xd9\x05\x7a\x0c\xfe\x0a\x4a\xac\xda\xf0\x8c\xd0\x85\x04\x24\xaf\x07\x6f\xc6\xf0\x11\x7f\xfe\xd3\x5f\xc6\x49\x47\x22\x3a\x34\x7d\x28\x58\xcb\x35\xfe\x7d\x9e\x08\x19\x43\x30\x96\xc7\x4d\x55\x3b\x59\xf1\xce\x57\xb6\x67\x33\x0d\x9f\x25\x6b\xbd\xfd\xa8\xd5\x73\x9c\x44\x9f\x21\xa2\xef\x37\x59\xb7\x7c\x2b\xf1\xbe\x2e\x53\x42\xcf\xe3\xad\xe4\x9b\x24\xfa\xac\x6d\xdc\x26\x22\x8d\xa1\x89\x54\xfb\xbe\xa8\x54\x2c\xa2\xfb\xa1\x36\xc1\x93\x35\x39\x44\x74\xcf\x7e\xb8\xfd\x70\x8e\x12\xcc\x89\x9e\xc9\x0b\x5e\x24\x0f\xe2\x2e\x4f\x5d\x38\x80\x40\xda\x79\x6a\xd7\x48\x95\x23\x3e\xe0\x23\xb3\x84\xf2\xd6\x70\x08\x25\x3c\x36\xdb\xa3\x45\x19\xdd\x8b\xe2\x38\xe7\x32\x56\x1b\xfc\x8c\x63\x5d\x2e\x97\xc9\xa7\x71\xc1\xf3\x0e\x3d\x0f\xf4\x23\xfc\x8a\x76\xae\x57\x69\x2b\xbc\xcd\x8b\xa6\xee\x23\x24\xa3\x93\xf6\x7f\xc5\xb8\xc5\xac\x44\xbe\x11\x40\xc8\xca\xaa\x5a\x38\x50\x0a\xe6\x77\x83\x64\xac\xd6\x94\x3f\xa1\x48\x90\xfe\x63\x60\xdc\x7f\x0c\x5a\xe5\x43\xd8\x61\xa3\xbc\x0c\xeb\x86\xdf\xe3\xfd\x70\x95\x0b\xad\x47\x4c\x2b\x68\xf1\x4c\xda\x4c\x04\x9b\x2d\x07\xb8\x17\xa0\x74\x4e\xb7\x2c\x52\x99\x83\xcc\xe3\x77\xad\xd5\x23\xf8\xe9\xc3\x3c\x61\x10\x1a\x2f\x65\x91\xa4\x8c\x2f\x0b\x72\xe2\x83\x7e\x85\xd5\xab\xd3\xe3\x99\x84\x50\x6c\x04\x9f\x0f\x10\x09\x17\x7e\x71\x1f\xa1\xd9\x92\x47\x49\x9a\x14\xc4\xaa\x07\x29\x66\xdc\x7c\xaf\x39\x0f\x4c\x5f\xe6\x7c\xcb\x53\x7f\xb1\xe2\x69\xe9\x53\xa3\x8f\xb4\xd8\xc1\xda\x9a\xe8\x39\x3a\x08\x5e\x6e\x81\x7b\x14\x60\x12\x06\x1f\x90\xe1\x7e\x62\x2a\xbf\xa8\x9d\xa2\xff\x14\xfe\x6f\xe5\x1e\xbe\xcb\x2a\x38\xe0\x42\x7e\xc8\xe1\xd8\xbc\x72\x3b\x91\x77\x6f\x67\x24\xb1\x45\x27\x57\x4c\x71\x9f\x7c\xec\x8e\x47\x88\x99\x74\x5c\xfa\xc7\x56\x9a\xaf\x59\xc3\x80\xde\x6b\x37\x12\x3f\x93\x3b\xa3\x4b\x76\xa0\x4f\xf3\xad\x37\xfe\x4a\xa9\xf4\x50\x8f\x3c\x11\x87\x24\x4a\xce\x41\xad\xfa\x90\xeb\x24\x4e\x00\xe7\xd8\x9a\xbe\x73\x31\x77\xc7\xe3\x5f\xd5\xb8\x23\x38\x18\x35\x01\x36\x32\x68\xc4\x0e\x9c\xba\xce\x5a\x40\x17\x03\xf1\xf6\x50\x06\xa2\xb5\xac\x69\xdf\x0c\x11\x04\x1c\x32\xdc\xb7\x11\xb8\x8e\x6b\x2d\x1c\xe4\xac\x43\x6d\xe9\x5a\x55\xce\x71\x17\x72\xa2\xbb\x7e\x0c\xea\xb6\xfd\xb9\xe1\x92\x3c\x7f\x64\xc5\xcf\x64\x60\xb1\x23\x6f\x9f\x4d\x68\x70\xbd\xd6\xe6\xcf\xab\x4c\xc3\x83\xfd\x79\x87\x08\x5f\xec\xdc\x39\xdf\x85\x12\x96\x80\x05\x89\xd4\x66\x91\x48\xcb\x49\x41\x4e\x6e\xb8\x6a\x4c\x2c\xaf\xb0\x0b\x48\xd8\x2b\x03\x0a\x1b\xd5\xfa\xde\x99\x39\x21\x45\x73\xb8\x65\xed\xbb\x8e\x87\xf7\xbb\xe7\xd5\xe8\xe8\x88\x34\xd6\xbf\xc0\x1c\x20\xe9\x23\xdf\x6a\x90\x79\x17\x66\x57\x5c\xa2\x63\xb7\xda\xfe\x51\x60\x7e\x58\xce\xea\x99\x84\x1e\x42\x4e\x33\xbb\x91\x9a\x9d\x15\x26\x60\x6a\x05\xed\x3d\x1f\xdd\x2b\xdd\xde\x39\xbf\x4e\xac\x26\xdf\x19\xab\xc1\x20\xf4\x7f\x8f\xf0\xcc\x0e\x27\xf0\x81\xbe\xe8\xe0\x98\x44\x8b\x91\x60\x42\x90\x36\xe6\x42\xd4\x23\xb6\xe1\x89\xa4\x65\x80\xa2\xa1\xb1\x58\x94\xab\x55\xa7\x8b\xf4\xb7\x1f\x6b\xa9\xae\x93\xff\xf1\xbe\xf0\x9d\x8c\x8a\xcf\xe1\x2d\x9e\xda\x9a\xd0\x7d\x6d\xee\x7d\x9f\xc7\x41\xfc\x2b\x7a\xe3\x5b\x43\x62\x8d\x49\xf4\x3c\xde\xf8\x69\x1f\x6f\xbc\xc5\x76\x41\x82\x1f\x5d\xa7\x2d\xfe\xe6\x1f\x6e\xfa\xcf\xe3\xa6\xef\x35\x29\x90\xd4\x67\x9e\x54\x0d\xf4\x1d\x2d\x7c\x22\x3b\xa7\x23\xac\x86\x56\x21\x03\x9e\xd9\xdd\x63\xcd\x16\x3c\x7a\x01\xba\x4e\x38\x1d\x0f\xf7\x07\xee\x01\xbf\xdc\xa8\x8d\x60\x50\x95\x46\xb9\x29\x46\x59\x8c\x23\x40\xab\x9a\x0f\xf4\x88\x11\xc2\xa3\xc0\x71\x8a\xc8\x95\xd8\x1b\xd5\xaf\xa5\x78\x64\xe6\xb4\x1a\x85\xf0\xbd\x60\x78\x40\x87\xf0\x8d\xb1\x0e\x2b\x58\x7f\x47\xd8\x91\x8b\x15\xcf\x63\xc8\x30\xa1\x25\x99\xf2\xe8\xde\xfc\x37\xb4\x8f\x6a\x24\x88\xa1\xe5\x0a\x40\xd8\xab\x2f\x2d\x91\x11\x12\x36\x5a\xe6\x79\xd7\x3e\x7c\x5d\x33\x1e\xe5\x4a\xa3\xd3\xc8\xc9\x77\x43\x7e\x35\x18\xb0\x0f\x49\x5c\xf2\x14\x6b\xec\xf4\xb4\x0f\x85\xaf\xd5\x01\x47\x81\xd2\x5e\x13\xcd\x46\xc3\x81\x0c\x55\xd0\x8d\xe3\x99\x7c\xe7\x02\x26\x27\xec\x4e\x0b\x42\x99\x69\xab\x55\xb0\xb3\xa5\x2f\x66\x3e\x34\x30\x81\x9d\x36\xc4\x8e\x0e\xb0\x20\xeb\xa0\x23\x74\x77\x4f\xec\x21\x7d\x3d\x64\x50\x06\x93\x57\x4f\x03\xb9\x7f\xdf\x2d\x78\x4f\xc8\x05\x8f\xb7\x21\x63\x64\x22\x19\x44\xe9\x18\x8f\x37\x89\x34\x8b\xc0\x4a\xca\xba\x93\xc6\xaa\x4b\x20\xe4\x18\x94\xd7\xd2\xb4\xb6\x09\x6a\x26\x85\x31\x2e\x79\x9e\xa4\x5b\xb8\x4f\x64\xb9\x38\x0a\xea\x09\xc6\x87\x32\x9e\x40\x27\x83\x48\x64\x4a\x2d\x96\x65\x8a\xb7\x0e\xb8\x97\xbb\x0f\xa0\x1d\xe9\x6e\x3a\x32\x06\x47\x41\x7a\x47\x41\xc5\xa8\x22\xfa\x1c\xd9\x23\x8d\x68\xe5\xb0\x88\x9b\x67\x34\xcd\x01\xe4\xbe\x56\x8f\x36\xd5\xed\x91\x7b\x2c\x73\xd7\xe9\xfa\x6c\x51\x96\xdd\x76\xa8\xbd\x01\xda\x7d\x2a\x20\xfc\x73\xa1\x35\xfa\x4d\xc4\x6e\x6f\x4a\x24\x7c\x0e\x09\x71\x7b\xcf\x75\xa9\x31\x63\xce\x8c\x25\x9c\x5f\xd6\xd1\x51\x75\x5c\x33\xf7\x75\x89\x56\x92\xcd\xca\x2f\xbf\xfc\x5a\xb0\x2f\x21\x85\x90\xee\x23\x18\x1f\x03\x4e\x53\x2c\x1d\xb6\x6c\x57\x81\x40\xc2\xd3\xc6\x88\xb0\x36\x88\xaa\xcd\xd7\x07\x90\x27\x8f\xd6\x4c\x97\x0b\x44\x30\x72\x0a\xb1\x70\xe9\xb8\xd1\xcf\x15\x80\x11\xf1\x64\xb7\xad\xff\x7f\x24\xa0\x80\xd2\x34\x33\x99\x29\xa4\xef\x07\xe8\xe7\x42\xb0\x0d\xcf\xef\x41\x69\x18\xdd\xf3\x20\x57\xf0\x3a\x11\xe3\x6a\x78\xe1\x4d\xa5\x3d\x14\xd0\x41\x5a\x6e\x96\x97\x52\x5a\xe9\x34\x66\x0c\x53\xef\xeb\x1f\xcd\xe4\xa2\x0c\xef\x9e\x95\x60\x81\x9f\x5a\x10\x30\x80\xcd\x56\x01\x53\x09\x35\x8a\x6b\xdf\xae\x31\xeb\x11\x35\x98\xc9\x67\x0e\x1b\xec\x73\xf8\x5d\x91\x0d\x66\x9d\x79\x41\xbe\x02\x7c\x6e\xa8\xee\x0d\xc3\x81\xd3\x1e\x8c\x9c\x2b\x90\xf8\x1e\xb1\x1f\x92\x07\x31\x62\x37\x19\xcf\xef\x47\xec\x1d\x86\xff\xfe\xa0\x16\x6d\x3e\xbc\x06\xa1\xc4\xc1\x7e\xbc\xa7\xb9\xb1\x76\xd1\xbc\xb4\x5b\xff\x3f\x37\x88\x01\x58\x57\xec\xfb\xbf\x27\x22\xaf\x83\xeb\xe3\x7f\xba\x27\x62\x4f\x98\xfa\x1f\xe0\xb5\xff\x91\xb7\xe2\xdd\x34\x1f\xff\x14\xfe\xaf\xdd\xbf\xac\xc5\x05\xb6\x27\xed\x72\xad\xa8\xb4\xdf\x56\x62\x73\x12\xd7\x0f\xe5\x66\x7e\x73\xbf\xa5\x40\xe9\xe3\xb1\x4b\x6d\x1f\x00\xba\xa7\x57\x6d\x7f\x9d\xa6\x4a\x97\xf9\xee\xc5\x7f\x5d\x6d\xb5\xad\xbd\x85\xe8\x15\x26\xdb\x66\x21\x80\xb5\xa0\x2f\xfc\x04\x1f\x9b\xff\x55\x2d\xe6\x80\xb5\x3a\x6c\x85\xb7\x15\xe7\xe8\xa3\x55\x54\x69\xaa\x3f\x21\x6f\x32\x01\x7c\x57\xde\x14\xf5\x01\x81\xda\x0c\x73\xae\x91\x99\xb4\xba\x00\x98\x31\x9b\xe7\x02\xa8\xc1\x73\x01\x72\x94\x8c\x18\x0e\xd3\x6d\x60\x11\x05\x37\x1f\x0f\x8a\x09\xb3\xdc\x20\x59\x95\xee\x5b\x0b\x21\xa4\xeb\xed\x21\xa6\x04\xd0\x60\xd7\x7a\x9f\xd0\x6e\x8f\xc2\xca\x43\x74\x48\xe7\x36\xde\x0b\xee\x82\x60\x72\xaf\x44\x11\xec\xe6\x35\xd3\xa2\xb2\x34\x2b\x11\xaa\xdf\x14\xe2\xbf\x35\x06\x5d\x23\xe7\xaa\x38\x50\x7a\xc5\xf4\x9e\xc3\x5f\x7e\xc5\x8b\x35\x5e\x68\x37\xaa\x10\xb8\x67\x22\x4b\x10\xce\x17\xf4\x3a\x2f\x52\xb5\x00\x1d\xc8\x62\x07\x83\x64\x44\x4b\xbb\x57\xd7\x35\x07\xac\xcf\xce\x60\x76\x13\xc8\xb4\xcd\x85\x06\xc2\x95\x66\x94\xaa\x2f\x3e\x79\xd8\xa5\xbb\xd9\x5c\xb3\xe9\xbf\x6b\x5c\xb6\x9b\xc2\x21\x66\x59\x03\x58\xf5\xec\x09\x19\x34\x0d\x19\x16\xa2\xaa\xa6\x30\x30\xb2\xd5\xd6\xbe\x17\xd9\x72\xb6\x40\xc4\x07\xbf\x04\x87\x00\xf7\x4a\x60\x0e\x0f\x4a\xca\xd2\x6e\xfd\x61\xfa\x2a\x9b\x84\x08\x44\xf2\x10\x8c\xbc\x2f\x13\x2e\x03\x23\xc8\x6a\x94\x45\x92\x0b\x26\x01\x85\x30\x93\xba\x5c\x1c\x79\x62\x12\x73\x8b\x7b\x00\x32\x1d\x2d\x32\x0e\x57\x19\xe0\x2b\x3a\x6a\x39\x86\xd1\x33\xe9\x15\x7d\x2c\x7d\x20\x4f\x69\xf3\x87\x5c\x49\xcc\x8c\x77\xdf\xee\xca\x31\x97\x35\xb8\x45\x5b\xb8\x12\x1e\x76\xbb\xf6\x0b\xd0\x1c\x83\x0c\xcc\x6b\x44\x51\xfc\xda\x07\x78\x18\x0d\xed\x7b\x74\x43\x3c\x6d\x26\xff\xd5\x9e\x0d\xdd\xa0\xe2\x01\x33\xdd\xf4\x8c\x39\xa2\x3a\xc1\xce\x95\xb6\xd9\x2b\x64\x60\x04\x76\x37\xaa\x31\xe5\xdb\x4a\xe5\x16\xd7\x12\x0a\xcf\x28\x4a\x97\x85\x5f\x1f\x12\x1d\x90\xbd\x43\x6d\x37\x42\xb0\x93\x5c\x2c\x4f\x3e\xe6\x62\x39\xb7\x23\x3d\x86\x0f\x1a\x9b\x2f\x6a\x52\xbe\xf7\x9c\x1c\x3a\x53\xb2\x9d\xfc\x70\x0f\x35\x6a\xed\x93\xb0\x9c\xe0\x9b\x92\x25\xf3\x1a\xbc\xe6\x7b\x80\x01\x42\xc4\x75\x2e\xfa\x46\xcb\x3e\xfb\x31\xd7\x85\x04\xeb\x01\xb5\xea\x90\x6a\xfd\x9f\x7f\xbc\x55\xfa\xac\xcf\xf1\x76\x5b\x85\xcc\xd8\xcd\x9e\x4b\x77\xe0\x75\xe3\x42\x3f\x2f\x3a\x1d\x06\x50\x67\xfc\x51\x12\x8f\xcd\x20\xd7\x53\xbf\x63\xad\x06\x20\x0a\x8e\xb5\x06\x06\xce\xaf\x32\x69\x3d\x7d\x89\x53\xfb\x1c\x31\x7f\x83\xe6\x69\x1a\x2a\x6a\xf8\x48\xdb\x4c\xfa\xbc\x54\x63\xb5\xa6\xa9\x75\xe1\x55\xec\x0d\x27\xcb\xac\x0b\x5e\x88\x91\x25\x5d\x21\xba\x42\x8a\x87\x1d\x2d\x38\x08\x70\x3b\xa5\xb7\x7d\xab\xf9\xb9\x2e\x91\xbf\xb1\xbc\xe8\x3d\x91\x67\xac\x76\x7e\x2f\x1a\x70\xe6\xbd\x6d\x6d\x8f\x74\x04\x94\x12\xb0\x98\xed\x2e\x1b\xf1\x3c\xb7\x28\x7f\xaa\x95\x59\xba\xf3\xf0\x56\xd2\xd1\xce\xb5\x88\xee\x33\x95\xc8\xc1\x7b\x51\x85\xe2\x02\x26\x7b\xc1\x7c\x69\xee\x76\xd8\xeb\x70\xac\xd8\x93\xf8\x21\x1a\xe0\x15\x16\x1a\xea\xc9\xd8\x38\x73\x7a\xde\xdd\xd3\xee\xb9\xfd\x17\xc2\x9f\x0d\x2f\xe0\x8b\x6d\x89\x0f\xd5\x4e\x15\xde\xe2\xd8\xa9\x30\x81\xf2\x46\xf6\x57\xcf\xce\xe6\xac\x42\x61\xd8\xda\xa5\xe0\x82\xfc\x87\x67\xe8\x1f\x9e\xa1\xff\xe6\x9e\xa1\xcf\xe9\x16\x02\x6c\xcc\x4b\xfa\x84\x76\x04\xc8\x0f\x58\x8e\xae\xd6\xc1\x39\x8e\xad\xd6\xf1\x28\x90\x26\x0f\x32\x1d\x9b\x40\x7f\x4b\x84\x61\xfa\x67\xc1\xa3\x7b\x21\x3b\x63\xf4\x96\xbe\xa8\x53\x25\xf6\x79\x11\x2c\x6d\xec\x4b\xc1\xdb\xbb\xa1\x2c\x1e\xea\x44\xa4\xc1\x6d\x84\x20\x66\x9d\x80\xed\x69\x3e\xfc\x08\x40\x63\x2a\x77\xc4\xd6\x9a\xb2\xf0\x30\x18\x89\x34\x49\x08\x96\xaa\x51\x41\xf7\xc5\xc4\xd9\x8a\xe7\x99\x52\x69\x2b\x34\xee\x59\x3b\xb0\x91\x28\xd3\xb7\xf3\xa6\x68\x8c\xea\x10\x30\x66\x7b\xd1\x27\x5d\xf8\x14\x0d\xcc\xc7\x00\x25\x0e\x98\x4d\x71\x09\xb9\x94\xbe\x3b\x02\x79\x45\xee\x1c\x2e\x84\x11\x5b\x88\x88\x83\x3c\xad\x05\xef\x45\xdc\x65\x9f\x84\xa4\x48\x8d\x74\x10\xdd\xac\xa7\x23\x6a\x09\xe5\xce\x93\x36\xd9\x8d\xa1\x8b\xab\x66\x21\x58\x68\x39\xb6\xdc\x22\x49\x2c\xed\xe2\x3e\xd9\x65\xcb\x31\x3d\x07\xf5\xc5\x7e\x27\x5c\xeb\xbe\x33\xa5\x82\x4e\xa1\x9c\xfe\x1b\xe9\x0f\x90\x8e\xb3\xe9\x89\xdc\x99\xc9\x89\x53\xe3\xf5\xd8\x2f\x87\xdc\xc3\x70\x29\x62\x16\x1b\x43\x83\x5c\x8e\xfe\xe6\x32\x62\xba\x8c\xd6\xc0\x56\x59\xdd\xa7\xc2\x7d\xab\xb9\x62\x47\x33\x69\x2e\x44\xe0\x6a\xd9\x70\xc8\x8b\x7f\x34\xc6\xaa\x4e\xfe\x26\x1c\x3c\x8b\xc8\xbb\x42\x44\x16\x5e\x9c\x94\x6c\x45\xaf\x59\xe2\x50\x04\x58\x78\x4c\x49\x99\xc5\xbc\x10\xe3\x99\x47\xdb\x24\xe8\xe9\xb4\x28\x0f\x32\x99\x75\xf8\x61\x21\x8e\xb1\xb6\xd3\xa6\xc9\x52\x44\xdb\xa8\xa1\x42\xb4\x9b\x26\xe2\x1f\xd7\xb6\xdf\xd6\xb5\x0d\x59\x76\x31\x67\x70\x48\xd7\x52\x53\xaf\xfd\xeb\x87\x75\xae\x60\x41\x4b\xf4\x80\x7e\xfe\x8c\xd7\xce\x16\x1b\x78\x98\x3d\xdf\xfb\x1e\xb4\xfb\x38\xf3\x17\x5b\x7f\x58\x07\x14\x08\x0d\xb3\x30\x0c\x2e\x16\xe1\xd4\x31\x06\x6d\xef\xb0\x7e\x37\xcb\xcc\x6f\x0a\x9c\xd4\xe7\xe2\x6a\x2c\x6e\x07\x57\xba\xb0\x96\xb6\x14\x78\xde\xed\xb0\xb8\x03\x56\x77\x5e\xbc\xd2\xae\xd7\xab\x3b\xa0\xc5\xfe\x4f\xe4\xf6\xa0\x04\xcc\x6d\x26\xe6\x65\x9e\x1e\x04\x37\xbe\xbb\x3e\x3f\x76\xd6\x06\x58\xce\x9d\xba\x47\x45\x4d\x1a\xda\x6a\x12\x8b\x98\xe0\xa0\x91\x4a\xd9\xa2\x5c\x2e\x41\xbf\x84\x80\xa1\x76\x33\x02\xfd\xfc\x52\x17\xf6\x3c\x41\xa6\x19\xae\x8b\x99\x54\x52\xb0\xd9\x17\xc7\xb3\x2f\xcc\x51\x96\xf3\xa8\x10\x39\x92\x0c\xa4\x5c\x17\x4c\x8b\x15\x98\x5a\x54\xe9\xdd\xf5\x39\x64\x25\x16\x6b\x2c\xce\x5d\x59\x31\xdf\x13\x39\x9f\x41\xeb\x07\x08\xaa\x65\xa0\xb8\x05\x6d\x7f\xcd\x35\x4b\xe4\x4c\x7e\x34\x45\x1c\xaf\x94\x5a\xa5\x62\x6c\x07\x64\xfc\x8e\x5c\x8f\x1f\xdf\x60\x0b\xe0\xf5\x10\xd6\x6f\x0e\x44\x2e\x95\x4c\x22\x9e\x42\x42\xce\x4c\x82\xd5\x3c\x32\x1f\x03\xae\xd1\xd9\x17\xe3\xd9\x17\x0c\xc2\xa7\x05\xe3\x51\x24\xb2\x42\xc4\x28\x6d\x3a\x95\x2c\x03\xfc\x62\x24\x46\xac\x10\x7c\xa3\x2d\xa5\x33\xcb\xcc\x1d\x13\xae\x86\x2c\x91\x84\x74\x5a\x24\x92\xe7\x5b\x04\x33\xa1\x58\x39\x25\x7f\x6c\x67\x52\x7c\x02\xfa\xcf\x04\x18\x40\x4b\xed\x68\x69\x48\x98\xc0\x7c\xf2\x44\x6e\xc7\xec\x07\x64\x68\x40\x0a\xd4\xbb\xeb\x73\x4b\x6f\x44\x39\xa0\x33\xa9\xa3\xb5\xd8\x08\xf6\x71\x5d\x14\xd9\xc7\x11\xfe\xaf\xfe\x08\x11\x47\xa9\x18\xfe\x3a\x62\x66\x88\x8c\xa1\x6a\xf1\xf2\xe9\x16\x34\x64\xcb\x8c\x04\xe7\x67\x12\xb8\xd8\xf3\x10\xdd\x6b\x7a\x1b\x6a\x0c\xae\xe0\x15\x5c\xb8\xd9\xc5\x41\xdc\xf1\xc4\x74\xce\xff\x62\xd3\xa5\xaf\xd2\x74\xa0\xd5\x16\x73\xad\x02\x83\x44\x43\xca\xd6\xd8\xbc\x30\x91\xec\x87\xdb\xdb\x2b\xf6\xfd\xd9\xad\x35\x76\xee\xae\xcf\x71\x5e\x00\x9d\x0a\xe3\xec\xcf\xf5\x21\xbe\xdd\x66\xe2\x2f\x7f\xfe\xcb\x4c\x32\xab\x51\x2e\x6d\x4f\xe3\x8a\x1e\x21\x25\x2c\xe0\x9d\x20\x30\x0b\x54\xce\x50\x1f\x4a\xee\x50\xf3\x73\xb4\xce\x1f\xc9\x5b\x00\x67\x54\xaa\xd4\x7d\x99\x39\x37\x77\x68\x87\x99\x0a\xef\xae\xcf\xa1\x74\xa0\x53\x2a\xd6\xa0\x9f\x26\x9c\xf7\x05\x06\x9e\xdb\xc6\x98\xff\x7e\x50\x49\xcc\xb8\xdc\x9a\x77\xb1\x68\x98\x96\xb9\x58\xaa\x5c\x8c\xec\x93\xa6\x00\x5e\x24\x8b\x24\x4d\x8a\x2d\xec\x52\x56\xd7\x3e\xb3\x1c\xf9\xa6\x00\x73\x9b\x21\x80\xb7\x99\x60\x28\x63\xfb\xfa\x4e\x87\x08\x70\x18\x34\xa7\x8d\x88\x17\x1d\xf3\xee\x22\x17\xfc\xde\xcc\x6e\x2a\x61\xfc\x86\x34\x63\xc5\x09\x9e\x31\xcb\x52\x46\x38\x35\x4c\x1b\x68\xf6\xd3\xcd\x29\xdd\x32\xfe\xc0\x13\xd4\x94\xb5\xe1\xf2\xe5\x32\x89\x12\x9e\xd2\xce\xb1\x28\x97\x20\x1b\xc3\x35\x49\x16\x21\xf8\xd0\x14\x02\xb7\x0c\x2b\xd8\x8f\x13\x6a\x21\x56\x09\x02\x8e\x1f\x93\x62\x8d\x79\x05\x63\x1c\x67\x9e\x25\x7a\x1c\xa9\x0d\xac\xb7\x1b\x98\x4a\x9a\x2e\xbd\x80\x03\xaf\xcd\x73\xf6\xda\x42\xed\x36\x59\xb1\xa5\xb9\xf7\x86\x6d\x92\xd5\xba\x00\x21\x17\xa8\x1d\x20\x11\xc9\x26\x4b\xe1\xd2\x47\x11\x46\x8b\xf7\xd5\x62\xc3\x65\x91\x44\x5d\x31\xa5\x56\x49\xf0\x7e\x18\xcf\xc5\xb6\xd8\xed\xc7\xfb\x40\x3c\xfb\x1c\x29\xf4\x83\x1d\x99\xd5\x37\x64\xda\x03\x41\x5e\x26\x20\xf0\xaf\x4b\xce\xee\xbb\x42\x7d\x9c\xc8\xed\x47\x4f\x42\xca\x65\xa0\x7d\xb5\xa3\x76\xbb\xfe\x79\xaa\x68\xd4\x18\x9f\x49\x40\x75\x9a\x0d\x83\xc4\x68\x77\x9e\x31\xee\x48\x31\x23\x7b\x65\x27\x4d\x9a\x2c\xa0\x6e\xda\x2b\x34\xd3\x65\x06\xf9\x04\x85\x62\x19\x8f\xee\x8f\x4b\x69\xfe\xc7\x6c\x86\xb8\xdc\x75\x48\x4e\x34\x93\x6a\xc9\xca\x02\x17\x8e\x9d\xc2\xe0\x14\x09\x5c\x01\xfe\x82\xb6\x11\xc5\x5a\xc5\x2e\x2f\xcc\x94\x09\xfd\x67\x5a\x74\x46\xf4\xd2\x6f\x4f\xd8\x95\xa9\xd0\x4c\x62\xaa\x9b\xbb\xcf\x4f\x24\x3b\xfd\xd7\x7f\x85\xe7\x4d\xe7\xbe\x57\x8a\x2d\x95\x62\xdf\xb2\xf1\x78\xfc\xef\xf8\x37\x53\x28\x97\x5b\xfa\x17\x97\xdb\xb1\x29\xee\x7d\xae\x36\xaf\x97\x4a\xbd\xa1\xbf\x83\x68\xb3\xf9\x8f\x64\xc9\x5e\x9b\x87\xee\xa0\xaa\x5b\xf5\x7a\x56\x7e\xf9\xe5\x57\xbf\x37\x8f\xbe\x61\xff\x89\xcf\x04\x8f\xff\x3d\x6c\xea\x57\x7b\x9a\xfa\x07\xfe\xc0\xfb\xb4\x95\x7d\x0b\x67\x8d\x29\x60\x67\x1b\x13\xfd\xfa\xbd\x52\x63\xb8\xfd\x87\xad\xc3\x62\xcd\x13\xd8\x8a\xe0\xa9\x7f\x0f\x9a\xcd\x6c\xbb\xbf\xde\xd3\x6e\x44\xd5\xbb\x96\x63\xf1\xef\x95\x7a\x3d\x1e\x9b\x7d\x8b\xfa\x15\x5b\xfd\xfa\x4d\xb5\xa3\xe1\x03\x9a\xed\x37\x3f\x4f\xb1\xf9\xef\xce\x6e\x4e\xaf\xa7\x57\xb7\x97\xd7\x6f\x4e\xec\x17\xf8\x11\x08\xde\x67\x56\x5a\xdb\x35\xfc\x7f\xef\x69\xf8\xf7\xca\xb6\x19\x1a\x7d\xf2\x2d\xc3\xd1\xcc\x16\xe3\xf7\x4a\xfd\xe7\x78\x3c\xfe\x3b\xfd\xcc\xe5\x76\x64\x0e\x26\xf3\x4c\x86\x5b\xf9\x07\x9e\xeb\x35\x4f\xcd\x37\x05\x6d\x70\x1f\xd1\x5a\xa2\x2d\x2e\x59\xd6\x0a\xbb\x93\x1b\x5f\x1c\x54\x06\x03\x0b\x4f\xfd\xf3\xb7\x4c\x26\xa9\x1f\xbe\xa0\x0e\x18\xa7\x5b\xa0\x96\x88\xee\xdd\x72\x71\x1a\xa1\x8b\x2d\xcb\xea\x0b\x17\xf3\xce\xb6\x56\xa1\xc0\x6c\xf7\x33\xf9\xaa\x65\x47\x3f\x36\xa6\xdd\x18\x7e\x30\x07\xd4\x2b\xab\x1e\x6f\x8f\x05\xa7\xac\x85\x3d\x0b\x81\x68\x5c\xad\x92\x72\xd4\xda\xec\x43\x77\xe0\x05\x64\x55\x60\x76\xbe\x3a\x7e\x45\x89\x42\xbe\x8a\x2a\x91\xfc\xec\x8b\xa5\x52\xe3\x05\xcf\xa1\x75\x9f\x8e\xb7\xe3\xbf\xcd\xbe\xc0\xef\x41\xe3\x03\x0d\x23\x28\x7c\xf6\x05\xfc\x0a\xd3\x61\x26\xff\x70\x73\x79\x31\x93\xdf\x7e\xfb\xed\xb7\xd8\x5b\xe6\xdf\x2d\xb1\x17\x73\x5c\xc1\x76\x8b\x76\x4a\xa9\xad\xa4\xa4\x58\x95\x29\xcf\x67\xb2\x3d\x5c\x13\x0b\xbf\x69\x8e\x7c\xf0\x86\xe6\xd9\xc8\xaa\x5b\x80\x48\x99\xdd\xe3\xd0\x37\xf9\xf1\xff\x37\x4d\xfe\x48\x26\xa2\xdb\xe4\xc3\x2e\x18\xdb\xc9\x7c\x62\xa7\xaa\xe9\x6c\x33\x7f\xbd\x9d\xb5\x4c\x52\x41\x0b\xd7\x4e\xee\x2b\x91\x6b\x25\xfd\x9c\xa1\x0b\x01\x70\x9b\x41\x00\x80\x7d\xcb\xde\xfe\x7b\xed\x57\x33\x0e\xf6\xc7\xaf\x2a\x3b\x01\x63\xbe\xa8\xd9\x17\xd0\xea\xd9\x17\x27\x6c\xf6\x45\xdb\xbc\xa9\x36\x6c\x8c\x4d\x99\x7d\x31\xf2\x05\x40\x33\x2e\xf8\x06\x0b\x29\xbf\xfc\xf2\xeb\x08\x9b\x80\xa9\x6b\xc1\x93\xa6\x49\xdd\x0f\x06\x4d\x9c\xd6\x42\x67\xb6\x23\x6c\x0a\xe4\xa3\x48\xd3\xa3\x7b\xa9\x1e\x51\x67\x1c\xe2\x44\x94\xa5\xcc\x70\x7a\x54\x07\x97\xb4\xc9\x6a\x23\x6e\x93\x36\x5d\x35\x4e\xde\x0e\x06\x74\x26\x3f\xc2\xd4\xb1\x23\x4a\x74\x44\x40\x07\xea\x6a\x82\x4b\x0d\xcd\x04\x9b\x63\x41\x13\x61\x26\xa1\x18\x37\xe6\xec\x35\x00\xbf\xe8\x53\x1a\x96\xb5\xbd\x3c\xfd\xe5\xcf\x7f\x79\x73\x72\xc8\x38\x55\x8b\xab\x0c\x15\x7c\x0f\x96\xf1\x76\xfc\xd5\xdb\xaf\xf4\xec\x0b\xea\xf5\xf6\x2b\xf6\x79\xa2\x8b\x9f\x6a\x16\xd8\x13\xc4\xce\x8d\xe1\xf0\x52\xc1\x0b\xdb\x54\x6c\x66\xdf\xa0\xc5\x75\x35\xac\xa0\x96\xd6\xad\x03\x97\x33\x2b\x03\x6f\xda\x3d\xc8\xbc\x73\xfd\x85\x97\x2d\xf6\x98\xf3\x2c\x13\xb9\xf5\x95\x37\xc2\x19\xa0\xa9\x0e\xb5\xd8\xad\xbf\x6d\x33\x33\xd3\xa6\x56\x34\x3c\x06\x5d\x37\x6e\x1f\xb9\x8b\x32\x4d\x3b\x47\x6e\xbf\x58\xf2\xc5\xdd\xf9\xf9\xfc\xa7\xc9\xf9\xdd\x99\xfd\xfc\x56\xf1\xe1\xe0\xb1\xce\x3e\x71\x2d\xa1\x3e\x41\x5c\x55\x01\x58\xaa\x72\x23\x72\xcb\x14\xe6\xbf\x1a\x71\x24\x65\x9a\x56\x65\xb1\x67\xf2\x23\x95\x03\xdb\x40\x29\x13\x6b\xa6\xec\xec\xb8\x6a\xfd\xf0\xd8\x47\x53\xf8\x47\x7c\xf7\x88\xf9\x8f\x38\x61\x17\xae\xd6\x8e\x7e\x25\xc2\x89\x03\x96\x03\xe6\xdb\x76\x2d\x87\xe7\x16\xfe\x7f\xda\xf2\xb8\x93\x20\xfa\x65\x76\x5e\xd4\xeb\x7f\x96\xd5\x81\x7d\xf7\xb1\x0a\x05\x77\xee\xd2\x18\xa3\x86\x50\xee\x08\xe5\xda\x75\x41\x9c\xc5\xd8\x67\x33\x89\x1b\xb1\x69\x53\xa1\xba\xdb\xc4\xa6\x14\x41\x4a\xb9\x5c\x95\x7c\x25\xf4\x88\xd9\xca\x67\xd2\xde\x4e\xed\x5d\xc7\x01\x73\x80\x91\xb5\x36\x85\x6a\x29\xc0\x89\x9c\x49\xfa\x26\x38\x61\xa9\x78\x4c\x47\xfd\xc3\x8d\xfb\x1c\xca\xfb\xc6\x82\x48\x71\x5e\xce\x24\x0e\x2e\xfa\xc6\x2c\xd8\x10\xcc\x8e\xe6\xd9\xc4\x01\x1e\x8c\xf7\xba\x98\x15\x6a\x05\xb0\xc7\x99\x74\x2c\x58\x08\xce\xb0\xf7\x35\xaf\x0d\x8a\x4d\xda\xbf\x9f\xd8\xc1\xb0\x6b\x82\xda\xd6\x3e\xeb\x0f\x3e\x03\xcc\x82\x9b\xb7\xde\xe5\x77\x4f\x5b\xbf\x8d\xf5\x04\xe4\xf0\x60\xe3\xe8\xa2\x46\x04\xea\xb3\xf6\xd6\xd8\xef\xc2\x67\x3a\xb3\x47\x55\xb9\x48\x07\x34\x09\x9f\xdf\xd9\x28\xdc\x92\x77\x37\xaa\x87\x47\xfa\xba\xb6\xb4\xcc\x34\xdd\x55\xed\x42\xa9\x8e\x71\x79\x46\xcc\x6e\xa5\x51\xf4\xc2\xbe\xce\x28\xa3\xe2\x29\xf3\xa5\x07\x1f\x50\xbd\x8b\xec\xee\xb3\xab\x41\x69\xa2\x9f\xd4\x1c\x6f\x3f\xf5\x6e\x91\xb3\x10\xe8\xb0\x1b\xb4\xc3\xd2\x39\x57\xd9\x60\x3b\xb6\x49\x7b\x4d\xc1\xf4\x16\x91\xe0\xf6\x62\x16\xcf\x08\x16\x91\x99\xff\x23\x37\x89\x46\x7e\xe4\x46\xd0\xc8\xa8\xcc\xb5\xd9\x2e\x69\xbf\xa3\x5d\x5b\xe5\x8c\xcf\xa4\x65\x83\xb1\xdb\xf1\xc4\xfa\x83\x73\xf7\x57\xe4\x58\xca\x50\xb2\x0e\x82\x42\x05\x78\xc9\x69\x37\x9c\xc9\x07\x9e\x27\x5c\x02\xa6\x79\xa1\x41\x6f\x18\xae\x74\x5b\x46\x3f\x38\x02\x0e\x1d\x3a\x99\xf7\xec\x79\x35\x33\xa0\x72\xce\xff\x93\xf9\xbf\xbf\xff\xd3\xff\x0d\x00\x00\xff\xff\xa6\xfd\xac\x8c\x2b\xab\x06\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: 436128, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 437035, 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/artifact/Artifacts.java b/flyteidl/gen/pb-java/flyteidl/artifact/Artifacts.java index 92f92c7e09..96cb8d9edd 100644 --- a/flyteidl/gen/pb-java/flyteidl/artifact/Artifacts.java +++ b/flyteidl/gen/pb-java/flyteidl/artifact/Artifacts.java @@ -1357,14 +1357,17 @@ java.lang.String getPartitionsOrThrow( java.lang.String key); /** - * string tag = 5; + * .google.protobuf.Timestamp time_partition_value = 5; */ - java.lang.String getTag(); + boolean hasTimePartitionValue(); /** - * string tag = 5; + * .google.protobuf.Timestamp time_partition_value = 5; */ - com.google.protobuf.ByteString - getTagBytes(); + com.google.protobuf.Timestamp getTimePartitionValue(); + /** + * .google.protobuf.Timestamp time_partition_value = 5; + */ + com.google.protobuf.TimestampOrBuilder getTimePartitionValueOrBuilder(); /** * .flyteidl.artifact.ArtifactSource source = 6; @@ -1393,7 +1396,6 @@ private CreateArtifactRequest(com.google.protobuf.GeneratedMessageV3.Builder } private CreateArtifactRequest() { version_ = ""; - tag_ = ""; } @java.lang.Override @@ -1466,9 +1468,16 @@ private CreateArtifactRequest( break; } case 42: { - java.lang.String s = input.readStringRequireUtf8(); + com.google.protobuf.Timestamp.Builder subBuilder = null; + if (timePartitionValue_ != null) { + subBuilder = timePartitionValue_.toBuilder(); + } + timePartitionValue_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(timePartitionValue_); + timePartitionValue_ = subBuilder.buildPartial(); + } - tag_ = s; break; } case 50: { @@ -1693,38 +1702,25 @@ public java.lang.String getPartitionsOrThrow( return map.get(key); } - public static final int TAG_FIELD_NUMBER = 5; - private volatile java.lang.Object tag_; + public static final int TIME_PARTITION_VALUE_FIELD_NUMBER = 5; + private com.google.protobuf.Timestamp timePartitionValue_; /** - * string tag = 5; + * .google.protobuf.Timestamp time_partition_value = 5; */ - public java.lang.String getTag() { - java.lang.Object ref = tag_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - tag_ = s; - return s; - } + public boolean hasTimePartitionValue() { + return timePartitionValue_ != null; } /** - * string tag = 5; + * .google.protobuf.Timestamp time_partition_value = 5; */ - public com.google.protobuf.ByteString - getTagBytes() { - java.lang.Object ref = tag_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - tag_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + public com.google.protobuf.Timestamp getTimePartitionValue() { + return timePartitionValue_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : timePartitionValue_; + } + /** + * .google.protobuf.Timestamp time_partition_value = 5; + */ + public com.google.protobuf.TimestampOrBuilder getTimePartitionValueOrBuilder() { + return getTimePartitionValue(); } public static final int SOURCE_FIELD_NUMBER = 6; @@ -1777,8 +1773,8 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) internalGetPartitions(), PartitionsDefaultEntryHolder.defaultEntry, 4); - if (!getTagBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 5, tag_); + if (timePartitionValue_ != null) { + output.writeMessage(5, getTimePartitionValue()); } if (source_ != null) { output.writeMessage(6, getSource()); @@ -1813,8 +1809,9 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(4, partitions__); } - if (!getTagBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, tag_); + if (timePartitionValue_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, getTimePartitionValue()); } if (source_ != null) { size += com.google.protobuf.CodedOutputStream @@ -1849,8 +1846,11 @@ public boolean equals(final java.lang.Object obj) { } if (!internalGetPartitions().equals( other.internalGetPartitions())) return false; - if (!getTag() - .equals(other.getTag())) return false; + if (hasTimePartitionValue() != other.hasTimePartitionValue()) return false; + if (hasTimePartitionValue()) { + if (!getTimePartitionValue() + .equals(other.getTimePartitionValue())) return false; + } if (hasSource() != other.hasSource()) return false; if (hasSource()) { if (!getSource() @@ -1881,8 +1881,10 @@ public int hashCode() { hash = (37 * hash) + PARTITIONS_FIELD_NUMBER; hash = (53 * hash) + internalGetPartitions().hashCode(); } - hash = (37 * hash) + TAG_FIELD_NUMBER; - hash = (53 * hash) + getTag().hashCode(); + if (hasTimePartitionValue()) { + hash = (37 * hash) + TIME_PARTITION_VALUE_FIELD_NUMBER; + hash = (53 * hash) + getTimePartitionValue().hashCode(); + } if (hasSource()) { hash = (37 * hash) + SOURCE_FIELD_NUMBER; hash = (53 * hash) + getSource().hashCode(); @@ -2057,8 +2059,12 @@ public Builder clear() { specBuilder_ = null; } internalGetMutablePartitions().clear(); - tag_ = ""; - + if (timePartitionValueBuilder_ == null) { + timePartitionValue_ = null; + } else { + timePartitionValue_ = null; + timePartitionValueBuilder_ = null; + } if (sourceBuilder_ == null) { source_ = null; } else { @@ -2106,7 +2112,11 @@ public flyteidl.artifact.Artifacts.CreateArtifactRequest buildPartial() { } result.partitions_ = internalGetPartitions(); result.partitions_.makeImmutable(); - result.tag_ = tag_; + if (timePartitionValueBuilder_ == null) { + result.timePartitionValue_ = timePartitionValue_; + } else { + result.timePartitionValue_ = timePartitionValueBuilder_.build(); + } if (sourceBuilder_ == null) { result.source_ = source_; } else { @@ -2173,9 +2183,8 @@ public Builder mergeFrom(flyteidl.artifact.Artifacts.CreateArtifactRequest other } internalGetMutablePartitions().mergeFrom( other.internalGetPartitions()); - if (!other.getTag().isEmpty()) { - tag_ = other.tag_; - onChanged(); + if (other.hasTimePartitionValue()) { + mergeTimePartitionValue(other.getTimePartitionValue()); } if (other.hasSource()) { mergeSource(other.getSource()); @@ -2672,73 +2681,121 @@ public Builder putAllPartitions( return this; } - private java.lang.Object tag_ = ""; + private com.google.protobuf.Timestamp timePartitionValue_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> timePartitionValueBuilder_; /** - * string tag = 5; + * .google.protobuf.Timestamp time_partition_value = 5; */ - public java.lang.String getTag() { - java.lang.Object ref = tag_; - if (!(ref instanceof java.lang.String)) { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - tag_ = s; - return s; + public boolean hasTimePartitionValue() { + return timePartitionValueBuilder_ != null || timePartitionValue_ != null; + } + /** + * .google.protobuf.Timestamp time_partition_value = 5; + */ + public com.google.protobuf.Timestamp getTimePartitionValue() { + if (timePartitionValueBuilder_ == null) { + return timePartitionValue_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : timePartitionValue_; } else { - return (java.lang.String) ref; + return timePartitionValueBuilder_.getMessage(); } } /** - * string tag = 5; + * .google.protobuf.Timestamp time_partition_value = 5; */ - public com.google.protobuf.ByteString - getTagBytes() { - java.lang.Object ref = tag_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - tag_ = b; - return b; + public Builder setTimePartitionValue(com.google.protobuf.Timestamp value) { + if (timePartitionValueBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + timePartitionValue_ = value; + onChanged(); } else { - return (com.google.protobuf.ByteString) ref; + timePartitionValueBuilder_.setMessage(value); } + + return this; } /** - * string tag = 5; + * .google.protobuf.Timestamp time_partition_value = 5; */ - public Builder setTag( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - - tag_ = value; - onChanged(); + public Builder setTimePartitionValue( + com.google.protobuf.Timestamp.Builder builderForValue) { + if (timePartitionValueBuilder_ == null) { + timePartitionValue_ = builderForValue.build(); + onChanged(); + } else { + timePartitionValueBuilder_.setMessage(builderForValue.build()); + } + return this; } /** - * string tag = 5; + * .google.protobuf.Timestamp time_partition_value = 5; */ - public Builder clearTag() { - - tag_ = getDefaultInstance().getTag(); - onChanged(); + public Builder mergeTimePartitionValue(com.google.protobuf.Timestamp value) { + if (timePartitionValueBuilder_ == null) { + if (timePartitionValue_ != null) { + timePartitionValue_ = + com.google.protobuf.Timestamp.newBuilder(timePartitionValue_).mergeFrom(value).buildPartial(); + } else { + timePartitionValue_ = value; + } + onChanged(); + } else { + timePartitionValueBuilder_.mergeFrom(value); + } + return this; } /** - * string tag = 5; + * .google.protobuf.Timestamp time_partition_value = 5; */ - public Builder setTagBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - checkByteStringIsUtf8(value); + public Builder clearTimePartitionValue() { + if (timePartitionValueBuilder_ == null) { + timePartitionValue_ = null; + onChanged(); + } else { + timePartitionValue_ = null; + timePartitionValueBuilder_ = null; + } + + return this; + } + /** + * .google.protobuf.Timestamp time_partition_value = 5; + */ + public com.google.protobuf.Timestamp.Builder getTimePartitionValueBuilder() { - tag_ = value; onChanged(); - return this; + return getTimePartitionValueFieldBuilder().getBuilder(); + } + /** + * .google.protobuf.Timestamp time_partition_value = 5; + */ + public com.google.protobuf.TimestampOrBuilder getTimePartitionValueOrBuilder() { + if (timePartitionValueBuilder_ != null) { + return timePartitionValueBuilder_.getMessageOrBuilder(); + } else { + return timePartitionValue_ == null ? + com.google.protobuf.Timestamp.getDefaultInstance() : timePartitionValue_; + } + } + /** + * .google.protobuf.Timestamp time_partition_value = 5; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> + getTimePartitionValueFieldBuilder() { + if (timePartitionValueBuilder_ == null) { + timePartitionValueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( + getTimePartitionValue(), + getParentForChildren(), + isClean()); + timePartitionValue_ = null; + } + return timePartitionValueBuilder_; } private flyteidl.artifact.Artifacts.ArtifactSource source_; @@ -4174,6 +4231,29 @@ public interface ArtifactSpecOrBuilder extends */ com.google.protobuf.ByteString getMetadataTypeBytes(); + + /** + * .google.protobuf.Timestamp created_at = 6; + */ + boolean hasCreatedAt(); + /** + * .google.protobuf.Timestamp created_at = 6; + */ + com.google.protobuf.Timestamp getCreatedAt(); + /** + * .google.protobuf.Timestamp created_at = 6; + */ + com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder(); + + /** + * string file_format = 7; + */ + java.lang.String getFileFormat(); + /** + * string file_format = 7; + */ + com.google.protobuf.ByteString + getFileFormatBytes(); } /** * Protobuf type {@code flyteidl.artifact.ArtifactSpec} @@ -4190,6 +4270,7 @@ private ArtifactSpec(com.google.protobuf.GeneratedMessageV3.Builder builder) private ArtifactSpec() { shortDescription_ = ""; metadataType_ = ""; + fileFormat_ = ""; } @java.lang.Override @@ -4267,6 +4348,25 @@ private ArtifactSpec( metadataType_ = s; break; } + case 50: { + com.google.protobuf.Timestamp.Builder subBuilder = null; + if (createdAt_ != null) { + subBuilder = createdAt_.toBuilder(); + } + createdAt_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(createdAt_); + createdAt_ = subBuilder.buildPartial(); + } + + break; + } + case 58: { + java.lang.String s = input.readStringRequireUtf8(); + + fileFormat_ = s; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -4460,6 +4560,61 @@ public java.lang.String getMetadataType() { } } + public static final int CREATED_AT_FIELD_NUMBER = 6; + private com.google.protobuf.Timestamp createdAt_; + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public boolean hasCreatedAt() { + return createdAt_ != null; + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public com.google.protobuf.Timestamp getCreatedAt() { + return createdAt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : createdAt_; + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder() { + return getCreatedAt(); + } + + public static final int FILE_FORMAT_FIELD_NUMBER = 7; + private volatile java.lang.Object fileFormat_; + /** + * string file_format = 7; + */ + public java.lang.String getFileFormat() { + java.lang.Object ref = fileFormat_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + fileFormat_ = s; + return s; + } + } + /** + * string file_format = 7; + */ + public com.google.protobuf.ByteString + getFileFormatBytes() { + java.lang.Object ref = fileFormat_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + fileFormat_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -4489,6 +4644,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (!getMetadataTypeBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 5, metadataType_); } + if (createdAt_ != null) { + output.writeMessage(6, getCreatedAt()); + } + if (!getFileFormatBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 7, fileFormat_); + } unknownFields.writeTo(output); } @@ -4516,6 +4677,13 @@ public int getSerializedSize() { if (!getMetadataTypeBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, metadataType_); } + if (createdAt_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(6, getCreatedAt()); + } + if (!getFileFormatBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, fileFormat_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -4550,6 +4718,13 @@ public boolean equals(final java.lang.Object obj) { } if (!getMetadataType() .equals(other.getMetadataType())) return false; + if (hasCreatedAt() != other.hasCreatedAt()) return false; + if (hasCreatedAt()) { + if (!getCreatedAt() + .equals(other.getCreatedAt())) return false; + } + if (!getFileFormat() + .equals(other.getFileFormat())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -4577,6 +4752,12 @@ public int hashCode() { } hash = (37 * hash) + METADATA_TYPE_FIELD_NUMBER; hash = (53 * hash) + getMetadataType().hashCode(); + if (hasCreatedAt()) { + hash = (37 * hash) + CREATED_AT_FIELD_NUMBER; + hash = (53 * hash) + getCreatedAt().hashCode(); + } + hash = (37 * hash) + FILE_FORMAT_FIELD_NUMBER; + hash = (53 * hash) + getFileFormat().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -4732,6 +4913,14 @@ public Builder clear() { } metadataType_ = ""; + if (createdAtBuilder_ == null) { + createdAt_ = null; + } else { + createdAt_ = null; + createdAtBuilder_ = null; + } + fileFormat_ = ""; + return this; } @@ -4775,6 +4964,12 @@ public flyteidl.artifact.Artifacts.ArtifactSpec buildPartial() { result.userMetadata_ = userMetadataBuilder_.build(); } result.metadataType_ = metadataType_; + if (createdAtBuilder_ == null) { + result.createdAt_ = createdAt_; + } else { + result.createdAt_ = createdAtBuilder_.build(); + } + result.fileFormat_ = fileFormat_; onBuilt(); return result; } @@ -4840,6 +5035,13 @@ public Builder mergeFrom(flyteidl.artifact.Artifacts.ArtifactSpec other) { metadataType_ = other.metadataType_; onChanged(); } + if (other.hasCreatedAt()) { + mergeCreatedAt(other.getCreatedAt()); + } + if (!other.getFileFormat().isEmpty()) { + fileFormat_ = other.fileFormat_; + onChanged(); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -5447,6 +5649,192 @@ public Builder setMetadataTypeBytes( onChanged(); return this; } + + private com.google.protobuf.Timestamp createdAt_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> createdAtBuilder_; + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public boolean hasCreatedAt() { + return createdAtBuilder_ != null || createdAt_ != null; + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public com.google.protobuf.Timestamp getCreatedAt() { + if (createdAtBuilder_ == null) { + return createdAt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : createdAt_; + } else { + return createdAtBuilder_.getMessage(); + } + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public Builder setCreatedAt(com.google.protobuf.Timestamp value) { + if (createdAtBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + createdAt_ = value; + onChanged(); + } else { + createdAtBuilder_.setMessage(value); + } + + return this; + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public Builder setCreatedAt( + com.google.protobuf.Timestamp.Builder builderForValue) { + if (createdAtBuilder_ == null) { + createdAt_ = builderForValue.build(); + onChanged(); + } else { + createdAtBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public Builder mergeCreatedAt(com.google.protobuf.Timestamp value) { + if (createdAtBuilder_ == null) { + if (createdAt_ != null) { + createdAt_ = + com.google.protobuf.Timestamp.newBuilder(createdAt_).mergeFrom(value).buildPartial(); + } else { + createdAt_ = value; + } + onChanged(); + } else { + createdAtBuilder_.mergeFrom(value); + } + + return this; + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public Builder clearCreatedAt() { + if (createdAtBuilder_ == null) { + createdAt_ = null; + onChanged(); + } else { + createdAt_ = null; + createdAtBuilder_ = null; + } + + return this; + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public com.google.protobuf.Timestamp.Builder getCreatedAtBuilder() { + + onChanged(); + return getCreatedAtFieldBuilder().getBuilder(); + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + public com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder() { + if (createdAtBuilder_ != null) { + return createdAtBuilder_.getMessageOrBuilder(); + } else { + return createdAt_ == null ? + com.google.protobuf.Timestamp.getDefaultInstance() : createdAt_; + } + } + /** + * .google.protobuf.Timestamp created_at = 6; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> + getCreatedAtFieldBuilder() { + if (createdAtBuilder_ == null) { + createdAtBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( + getCreatedAt(), + getParentForChildren(), + isClean()); + createdAt_ = null; + } + return createdAtBuilder_; + } + + private java.lang.Object fileFormat_ = ""; + /** + * string file_format = 7; + */ + public java.lang.String getFileFormat() { + java.lang.Object ref = fileFormat_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + fileFormat_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * string file_format = 7; + */ + public com.google.protobuf.ByteString + getFileFormatBytes() { + java.lang.Object ref = fileFormat_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + fileFormat_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * string file_format = 7; + */ + public Builder setFileFormat( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + fileFormat_ = value; + onChanged(); + return this; + } + /** + * string file_format = 7; + */ + public Builder clearFileFormat() { + + fileFormat_ = getDefaultInstance().getFileFormat(); + onChanged(); + return this; + } + /** + * string file_format = 7; + */ + public Builder setFileFormatBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + fileFormat_ = value; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -8015,50 +8403,63 @@ public interface SearchArtifactsRequestOrBuilder extends flyteidl.core.ArtifactId.PartitionsOrBuilder getPartitionsOrBuilder(); /** - * string principal = 3; + * .google.protobuf.Timestamp time_partition_value = 3; + */ + boolean hasTimePartitionValue(); + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + com.google.protobuf.Timestamp getTimePartitionValue(); + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + com.google.protobuf.TimestampOrBuilder getTimePartitionValueOrBuilder(); + + /** + * string principal = 4; */ java.lang.String getPrincipal(); /** - * string principal = 3; + * string principal = 4; */ com.google.protobuf.ByteString getPrincipalBytes(); /** - * string version = 4; + * string version = 5; */ java.lang.String getVersion(); /** - * string version = 4; + * string version = 5; */ com.google.protobuf.ByteString getVersionBytes(); /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ boolean hasOptions(); /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ flyteidl.artifact.Artifacts.SearchOptions getOptions(); /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ flyteidl.artifact.Artifacts.SearchOptionsOrBuilder getOptionsOrBuilder(); /** - * string token = 6; + * string token = 7; */ java.lang.String getToken(); /** - * string token = 6; + * string token = 7; */ com.google.protobuf.ByteString getTokenBytes(); /** - * int32 limit = 7; + * int32 limit = 8; */ int getLimit(); } @@ -8131,18 +8532,31 @@ private SearchArtifactsRequest( break; } case 26: { + com.google.protobuf.Timestamp.Builder subBuilder = null; + if (timePartitionValue_ != null) { + subBuilder = timePartitionValue_.toBuilder(); + } + timePartitionValue_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(timePartitionValue_); + timePartitionValue_ = subBuilder.buildPartial(); + } + + break; + } + case 34: { java.lang.String s = input.readStringRequireUtf8(); principal_ = s; break; } - case 34: { + case 42: { java.lang.String s = input.readStringRequireUtf8(); version_ = s; break; } - case 42: { + case 50: { flyteidl.artifact.Artifacts.SearchOptions.Builder subBuilder = null; if (options_ != null) { subBuilder = options_.toBuilder(); @@ -8155,13 +8569,13 @@ private SearchArtifactsRequest( break; } - case 50: { + case 58: { java.lang.String s = input.readStringRequireUtf8(); token_ = s; break; } - case 56: { + case 64: { limit_ = input.readInt32(); break; @@ -8240,10 +8654,31 @@ public flyteidl.core.ArtifactId.PartitionsOrBuilder getPartitionsOrBuilder() { return getPartitions(); } - public static final int PRINCIPAL_FIELD_NUMBER = 3; + public static final int TIME_PARTITION_VALUE_FIELD_NUMBER = 3; + private com.google.protobuf.Timestamp timePartitionValue_; + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public boolean hasTimePartitionValue() { + return timePartitionValue_ != null; + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public com.google.protobuf.Timestamp getTimePartitionValue() { + return timePartitionValue_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : timePartitionValue_; + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public com.google.protobuf.TimestampOrBuilder getTimePartitionValueOrBuilder() { + return getTimePartitionValue(); + } + + public static final int PRINCIPAL_FIELD_NUMBER = 4; private volatile java.lang.Object principal_; /** - * string principal = 3; + * string principal = 4; */ public java.lang.String getPrincipal() { java.lang.Object ref = principal_; @@ -8258,7 +8693,7 @@ public java.lang.String getPrincipal() { } } /** - * string principal = 3; + * string principal = 4; */ public com.google.protobuf.ByteString getPrincipalBytes() { @@ -8274,10 +8709,10 @@ public java.lang.String getPrincipal() { } } - public static final int VERSION_FIELD_NUMBER = 4; + public static final int VERSION_FIELD_NUMBER = 5; private volatile java.lang.Object version_; /** - * string version = 4; + * string version = 5; */ public java.lang.String getVersion() { java.lang.Object ref = version_; @@ -8292,7 +8727,7 @@ public java.lang.String getVersion() { } } /** - * string version = 4; + * string version = 5; */ public com.google.protobuf.ByteString getVersionBytes() { @@ -8308,31 +8743,31 @@ public java.lang.String getVersion() { } } - public static final int OPTIONS_FIELD_NUMBER = 5; + public static final int OPTIONS_FIELD_NUMBER = 6; private flyteidl.artifact.Artifacts.SearchOptions options_; /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public boolean hasOptions() { return options_ != null; } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public flyteidl.artifact.Artifacts.SearchOptions getOptions() { return options_ == null ? flyteidl.artifact.Artifacts.SearchOptions.getDefaultInstance() : options_; } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public flyteidl.artifact.Artifacts.SearchOptionsOrBuilder getOptionsOrBuilder() { return getOptions(); } - public static final int TOKEN_FIELD_NUMBER = 6; + public static final int TOKEN_FIELD_NUMBER = 7; private volatile java.lang.Object token_; /** - * string token = 6; + * string token = 7; */ public java.lang.String getToken() { java.lang.Object ref = token_; @@ -8347,7 +8782,7 @@ public java.lang.String getToken() { } } /** - * string token = 6; + * string token = 7; */ public com.google.protobuf.ByteString getTokenBytes() { @@ -8363,10 +8798,10 @@ public java.lang.String getToken() { } } - public static final int LIMIT_FIELD_NUMBER = 7; + public static final int LIMIT_FIELD_NUMBER = 8; private int limit_; /** - * int32 limit = 7; + * int32 limit = 8; */ public int getLimit() { return limit_; @@ -8392,20 +8827,23 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (partitions_ != null) { output.writeMessage(2, getPartitions()); } + if (timePartitionValue_ != null) { + output.writeMessage(3, getTimePartitionValue()); + } if (!getPrincipalBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, principal_); + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, principal_); } if (!getVersionBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 4, version_); + com.google.protobuf.GeneratedMessageV3.writeString(output, 5, version_); } if (options_ != null) { - output.writeMessage(5, getOptions()); + output.writeMessage(6, getOptions()); } if (!getTokenBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 6, token_); + com.google.protobuf.GeneratedMessageV3.writeString(output, 7, token_); } if (limit_ != 0) { - output.writeInt32(7, limit_); + output.writeInt32(8, limit_); } unknownFields.writeTo(output); } @@ -8424,22 +8862,26 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getPartitions()); } + if (timePartitionValue_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, getTimePartitionValue()); + } if (!getPrincipalBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, principal_); + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, principal_); } if (!getVersionBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, version_); + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, version_); } if (options_ != null) { size += com.google.protobuf.CodedOutputStream - .computeMessageSize(5, getOptions()); + .computeMessageSize(6, getOptions()); } if (!getTokenBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, token_); + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, token_); } if (limit_ != 0) { size += com.google.protobuf.CodedOutputStream - .computeInt32Size(7, limit_); + .computeInt32Size(8, limit_); } size += unknownFields.getSerializedSize(); memoizedSize = size; @@ -8466,6 +8908,11 @@ public boolean equals(final java.lang.Object obj) { if (!getPartitions() .equals(other.getPartitions())) return false; } + if (hasTimePartitionValue() != other.hasTimePartitionValue()) return false; + if (hasTimePartitionValue()) { + if (!getTimePartitionValue() + .equals(other.getTimePartitionValue())) return false; + } if (!getPrincipal() .equals(other.getPrincipal())) return false; if (!getVersion() @@ -8498,6 +8945,10 @@ public int hashCode() { hash = (37 * hash) + PARTITIONS_FIELD_NUMBER; hash = (53 * hash) + getPartitions().hashCode(); } + if (hasTimePartitionValue()) { + hash = (37 * hash) + TIME_PARTITION_VALUE_FIELD_NUMBER; + hash = (53 * hash) + getTimePartitionValue().hashCode(); + } hash = (37 * hash) + PRINCIPAL_FIELD_NUMBER; hash = (53 * hash) + getPrincipal().hashCode(); hash = (37 * hash) + VERSION_FIELD_NUMBER; @@ -8655,6 +9106,12 @@ public Builder clear() { partitions_ = null; partitionsBuilder_ = null; } + if (timePartitionValueBuilder_ == null) { + timePartitionValue_ = null; + } else { + timePartitionValue_ = null; + timePartitionValueBuilder_ = null; + } principal_ = ""; version_ = ""; @@ -8705,6 +9162,11 @@ public flyteidl.artifact.Artifacts.SearchArtifactsRequest buildPartial() { } else { result.partitions_ = partitionsBuilder_.build(); } + if (timePartitionValueBuilder_ == null) { + result.timePartitionValue_ = timePartitionValue_; + } else { + result.timePartitionValue_ = timePartitionValueBuilder_.build(); + } result.principal_ = principal_; result.version_ = version_; if (optionsBuilder_ == null) { @@ -8768,6 +9230,9 @@ public Builder mergeFrom(flyteidl.artifact.Artifacts.SearchArtifactsRequest othe if (other.hasPartitions()) { mergePartitions(other.getPartitions()); } + if (other.hasTimePartitionValue()) { + mergeTimePartitionValue(other.getTimePartitionValue()); + } if (!other.getPrincipal().isEmpty()) { principal_ = other.principal_; onChanged(); @@ -9049,9 +9514,126 @@ public flyteidl.core.ArtifactId.PartitionsOrBuilder getPartitionsOrBuilder() { return partitionsBuilder_; } + private com.google.protobuf.Timestamp timePartitionValue_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> timePartitionValueBuilder_; + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public boolean hasTimePartitionValue() { + return timePartitionValueBuilder_ != null || timePartitionValue_ != null; + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public com.google.protobuf.Timestamp getTimePartitionValue() { + if (timePartitionValueBuilder_ == null) { + return timePartitionValue_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : timePartitionValue_; + } else { + return timePartitionValueBuilder_.getMessage(); + } + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public Builder setTimePartitionValue(com.google.protobuf.Timestamp value) { + if (timePartitionValueBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + timePartitionValue_ = value; + onChanged(); + } else { + timePartitionValueBuilder_.setMessage(value); + } + + return this; + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public Builder setTimePartitionValue( + com.google.protobuf.Timestamp.Builder builderForValue) { + if (timePartitionValueBuilder_ == null) { + timePartitionValue_ = builderForValue.build(); + onChanged(); + } else { + timePartitionValueBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public Builder mergeTimePartitionValue(com.google.protobuf.Timestamp value) { + if (timePartitionValueBuilder_ == null) { + if (timePartitionValue_ != null) { + timePartitionValue_ = + com.google.protobuf.Timestamp.newBuilder(timePartitionValue_).mergeFrom(value).buildPartial(); + } else { + timePartitionValue_ = value; + } + onChanged(); + } else { + timePartitionValueBuilder_.mergeFrom(value); + } + + return this; + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public Builder clearTimePartitionValue() { + if (timePartitionValueBuilder_ == null) { + timePartitionValue_ = null; + onChanged(); + } else { + timePartitionValue_ = null; + timePartitionValueBuilder_ = null; + } + + return this; + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public com.google.protobuf.Timestamp.Builder getTimePartitionValueBuilder() { + + onChanged(); + return getTimePartitionValueFieldBuilder().getBuilder(); + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + public com.google.protobuf.TimestampOrBuilder getTimePartitionValueOrBuilder() { + if (timePartitionValueBuilder_ != null) { + return timePartitionValueBuilder_.getMessageOrBuilder(); + } else { + return timePartitionValue_ == null ? + com.google.protobuf.Timestamp.getDefaultInstance() : timePartitionValue_; + } + } + /** + * .google.protobuf.Timestamp time_partition_value = 3; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> + getTimePartitionValueFieldBuilder() { + if (timePartitionValueBuilder_ == null) { + timePartitionValueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( + getTimePartitionValue(), + getParentForChildren(), + isClean()); + timePartitionValue_ = null; + } + return timePartitionValueBuilder_; + } + private java.lang.Object principal_ = ""; /** - * string principal = 3; + * string principal = 4; */ public java.lang.String getPrincipal() { java.lang.Object ref = principal_; @@ -9066,7 +9648,7 @@ public java.lang.String getPrincipal() { } } /** - * string principal = 3; + * string principal = 4; */ public com.google.protobuf.ByteString getPrincipalBytes() { @@ -9082,7 +9664,7 @@ public java.lang.String getPrincipal() { } } /** - * string principal = 3; + * string principal = 4; */ public Builder setPrincipal( java.lang.String value) { @@ -9095,7 +9677,7 @@ public Builder setPrincipal( return this; } /** - * string principal = 3; + * string principal = 4; */ public Builder clearPrincipal() { @@ -9104,7 +9686,7 @@ public Builder clearPrincipal() { return this; } /** - * string principal = 3; + * string principal = 4; */ public Builder setPrincipalBytes( com.google.protobuf.ByteString value) { @@ -9120,7 +9702,7 @@ public Builder setPrincipalBytes( private java.lang.Object version_ = ""; /** - * string version = 4; + * string version = 5; */ public java.lang.String getVersion() { java.lang.Object ref = version_; @@ -9135,7 +9717,7 @@ public java.lang.String getVersion() { } } /** - * string version = 4; + * string version = 5; */ public com.google.protobuf.ByteString getVersionBytes() { @@ -9151,7 +9733,7 @@ public java.lang.String getVersion() { } } /** - * string version = 4; + * string version = 5; */ public Builder setVersion( java.lang.String value) { @@ -9164,7 +9746,7 @@ public Builder setVersion( return this; } /** - * string version = 4; + * string version = 5; */ public Builder clearVersion() { @@ -9173,7 +9755,7 @@ public Builder clearVersion() { return this; } /** - * string version = 4; + * string version = 5; */ public Builder setVersionBytes( com.google.protobuf.ByteString value) { @@ -9191,13 +9773,13 @@ public Builder setVersionBytes( private com.google.protobuf.SingleFieldBuilderV3< flyteidl.artifact.Artifacts.SearchOptions, flyteidl.artifact.Artifacts.SearchOptions.Builder, flyteidl.artifact.Artifacts.SearchOptionsOrBuilder> optionsBuilder_; /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public boolean hasOptions() { return optionsBuilder_ != null || options_ != null; } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public flyteidl.artifact.Artifacts.SearchOptions getOptions() { if (optionsBuilder_ == null) { @@ -9207,7 +9789,7 @@ public flyteidl.artifact.Artifacts.SearchOptions getOptions() { } } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public Builder setOptions(flyteidl.artifact.Artifacts.SearchOptions value) { if (optionsBuilder_ == null) { @@ -9223,7 +9805,7 @@ public Builder setOptions(flyteidl.artifact.Artifacts.SearchOptions value) { return this; } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public Builder setOptions( flyteidl.artifact.Artifacts.SearchOptions.Builder builderForValue) { @@ -9237,7 +9819,7 @@ public Builder setOptions( return this; } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public Builder mergeOptions(flyteidl.artifact.Artifacts.SearchOptions value) { if (optionsBuilder_ == null) { @@ -9255,7 +9837,7 @@ public Builder mergeOptions(flyteidl.artifact.Artifacts.SearchOptions value) { return this; } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public Builder clearOptions() { if (optionsBuilder_ == null) { @@ -9269,7 +9851,7 @@ public Builder clearOptions() { return this; } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public flyteidl.artifact.Artifacts.SearchOptions.Builder getOptionsBuilder() { @@ -9277,7 +9859,7 @@ public flyteidl.artifact.Artifacts.SearchOptions.Builder getOptionsBuilder() { return getOptionsFieldBuilder().getBuilder(); } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ public flyteidl.artifact.Artifacts.SearchOptionsOrBuilder getOptionsOrBuilder() { if (optionsBuilder_ != null) { @@ -9288,7 +9870,7 @@ public flyteidl.artifact.Artifacts.SearchOptionsOrBuilder getOptionsOrBuilder() } } /** - * .flyteidl.artifact.SearchOptions options = 5; + * .flyteidl.artifact.SearchOptions options = 6; */ private com.google.protobuf.SingleFieldBuilderV3< flyteidl.artifact.Artifacts.SearchOptions, flyteidl.artifact.Artifacts.SearchOptions.Builder, flyteidl.artifact.Artifacts.SearchOptionsOrBuilder> @@ -9306,7 +9888,7 @@ public flyteidl.artifact.Artifacts.SearchOptionsOrBuilder getOptionsOrBuilder() private java.lang.Object token_ = ""; /** - * string token = 6; + * string token = 7; */ public java.lang.String getToken() { java.lang.Object ref = token_; @@ -9321,7 +9903,7 @@ public java.lang.String getToken() { } } /** - * string token = 6; + * string token = 7; */ public com.google.protobuf.ByteString getTokenBytes() { @@ -9337,7 +9919,7 @@ public java.lang.String getToken() { } } /** - * string token = 6; + * string token = 7; */ public Builder setToken( java.lang.String value) { @@ -9350,7 +9932,7 @@ public Builder setToken( return this; } /** - * string token = 6; + * string token = 7; */ public Builder clearToken() { @@ -9359,7 +9941,7 @@ public Builder clearToken() { return this; } /** - * string token = 6; + * string token = 7; */ public Builder setTokenBytes( com.google.protobuf.ByteString value) { @@ -9375,13 +9957,13 @@ public Builder setTokenBytes( private int limit_ ; /** - * int32 limit = 7; + * int32 limit = 8; */ public int getLimit() { return limit_; } /** - * int32 limit = 7; + * int32 limit = 8; */ public Builder setLimit(int value) { @@ -9390,7 +9972,7 @@ public Builder setLimit(int value) { return this; } /** - * int32 limit = 7; + * int32 limit = 8; */ public Builder clearLimit() { @@ -21343,122 +21925,127 @@ public flyteidl.artifact.Artifacts.ListUsageResponse getDefaultInstanceForType() java.lang.String[] descriptorData = { "\n!flyteidl/artifact/artifacts.proto\022\021fly" + "teidl.artifact\032\031google/protobuf/any.prot" + - "o\032\034google/api/annotations.proto\032 flyteid" + - "l/admin/launch_plan.proto\032\034flyteidl/core" + - "/literals.proto\032\031flyteidl/core/types.pro" + - "to\032\036flyteidl/core/identifier.proto\032\037flyt" + - "eidl/core/artifact_id.proto\032\035flyteidl/co" + - "re/interface.proto\032 flyteidl/event/cloud" + - "events.proto\"\252\001\n\010Artifact\022.\n\013artifact_id" + - "\030\001 \001(\0132\031.flyteidl.core.ArtifactID\022-\n\004spe" + - "c\030\002 \001(\0132\037.flyteidl.artifact.ArtifactSpec" + - "\022\014\n\004tags\030\003 \003(\t\0221\n\006source\030\004 \001(\0132!.flyteid" + - "l.artifact.ArtifactSource\"\312\002\n\025CreateArti" + - "factRequest\0220\n\014artifact_key\030\001 \001(\0132\032.flyt" + - "eidl.core.ArtifactKey\022\017\n\007version\030\003 \001(\t\022-" + - "\n\004spec\030\002 \001(\0132\037.flyteidl.artifact.Artifac" + - "tSpec\022L\n\npartitions\030\004 \003(\01328.flyteidl.art" + - "ifact.CreateArtifactRequest.PartitionsEn" + - "try\022\013\n\003tag\030\005 \001(\t\0221\n\006source\030\006 \001(\0132!.flyte" + - "idl.artifact.ArtifactSource\0321\n\017Partition" + - "sEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\277" + - "\001\n\016ArtifactSource\022F\n\022workflow_execution\030" + - "\001 \001(\0132*.flyteidl.core.WorkflowExecutionI" + - "dentifier\022\017\n\007node_id\030\002 \001(\t\022*\n\007task_id\030\003 " + - "\001(\0132\031.flyteidl.core.Identifier\022\025\n\rretry_" + - "attempt\030\004 \001(\r\022\021\n\tprincipal\030\005 \001(\t\"\276\001\n\014Art" + - "ifactSpec\022%\n\005value\030\001 \001(\0132\026.flyteidl.core" + - ".Literal\022(\n\004type\030\002 \001(\0132\032.flyteidl.core.L" + - "iteralType\022\031\n\021short_description\030\003 \001(\t\022+\n" + - "\ruser_metadata\030\004 \001(\0132\024.google.protobuf.A" + - "ny\022\025\n\rmetadata_type\030\005 \001(\t\"G\n\026CreateArtif" + - "actResponse\022-\n\010artifact\030\001 \001(\0132\033.flyteidl" + - ".artifact.Artifact\"R\n\022GetArtifactRequest" + - "\022+\n\005query\030\001 \001(\0132\034.flyteidl.core.Artifact" + - "Query\022\017\n\007details\030\002 \001(\010\"D\n\023GetArtifactRes" + - "ponse\022-\n\010artifact\030\001 \001(\0132\033.flyteidl.artif" + - "act.Artifact\"A\n\rSearchOptions\022\031\n\021strict_" + - "partitions\030\001 \001(\010\022\025\n\rlatest_by_key\030\002 \001(\010\"" + - "\356\001\n\026SearchArtifactsRequest\0220\n\014artifact_k" + - "ey\030\001 \001(\0132\032.flyteidl.core.ArtifactKey\022-\n\n" + - "partitions\030\002 \001(\0132\031.flyteidl.core.Partiti" + - "ons\022\021\n\tprincipal\030\003 \001(\t\022\017\n\007version\030\004 \001(\t\022" + - "1\n\007options\030\005 \001(\0132 .flyteidl.artifact.Sea" + - "rchOptions\022\r\n\005token\030\006 \001(\t\022\r\n\005limit\030\007 \001(\005" + - "\"X\n\027SearchArtifactsResponse\022.\n\tartifacts" + - "\030\001 \003(\0132\033.flyteidl.artifact.Artifact\022\r\n\005t" + - "oken\030\002 \001(\t\"\311\001\n\031FindByWorkflowExecRequest" + - "\022;\n\007exec_id\030\001 \001(\0132*.flyteidl.core.Workfl" + - "owExecutionIdentifier\022I\n\tdirection\030\002 \001(\016" + - "26.flyteidl.artifact.FindByWorkflowExecR" + - "equest.Direction\"$\n\tDirection\022\n\n\006INPUTS\020" + - "\000\022\013\n\007OUTPUTS\020\001\"a\n\rAddTagRequest\022.\n\013artif" + - "act_id\030\001 \001(\0132\031.flyteidl.core.ArtifactID\022" + - "\r\n\005value\030\002 \001(\t\022\021\n\toverwrite\030\003 \001(\010\"\020\n\016Add" + - "TagResponse\"O\n\024CreateTriggerRequest\0227\n\023t" + - "rigger_launch_plan\030\001 \001(\0132\032.flyteidl.admi" + - "n.LaunchPlan\"\027\n\025CreateTriggerResponse\"I\n" + - "\030DeactivateTriggerRequest\022-\n\ntrigger_id\030" + - "\001 \001(\0132\031.flyteidl.core.Identifier\"\033\n\031Deac" + - "tivateTriggerResponse\"m\n\020ArtifactProduce" + - "r\022,\n\tentity_id\030\001 \001(\0132\031.flyteidl.core.Ide" + - "ntifier\022+\n\007outputs\030\002 \001(\0132\032.flyteidl.core" + - ".VariableMap\"Q\n\027RegisterProducerRequest\022" + - "6\n\tproducers\030\001 \003(\0132#.flyteidl.artifact.A" + - "rtifactProducer\"m\n\020ArtifactConsumer\022,\n\te" + - "ntity_id\030\001 \001(\0132\031.flyteidl.core.Identifie" + - "r\022+\n\006inputs\030\002 \001(\0132\033.flyteidl.core.Parame" + - "terMap\"Q\n\027RegisterConsumerRequest\0226\n\tcon" + - "sumers\030\001 \003(\0132#.flyteidl.artifact.Artifac" + - "tConsumer\"\022\n\020RegisterResponse\"\205\001\n\026Execut" + - "ionInputsRequest\022@\n\014execution_id\030\001 \001(\0132*" + - ".flyteidl.core.WorkflowExecutionIdentifi" + - "er\022)\n\006inputs\030\002 \003(\0132\031.flyteidl.core.Artif" + - "actID\"\031\n\027ExecutionInputsResponse\"B\n\020List" + - "UsageRequest\022.\n\013artifact_id\030\001 \001(\0132\031.flyt" + - "eidl.core.ArtifactID\"S\n\021ListUsageRespons" + - "e\022>\n\nexecutions\030\001 \003(\0132*.flyteidl.core.Wo" + - "rkflowExecutionIdentifier2\373\013\n\020ArtifactRe" + - "gistry\022g\n\016CreateArtifact\022(.flyteidl.arti" + - "fact.CreateArtifactRequest\032).flyteidl.ar" + - "tifact.CreateArtifactResponse\"\000\022\204\001\n\013GetA" + - "rtifact\022%.flyteidl.artifact.GetArtifactR" + - "equest\032&.flyteidl.artifact.GetArtifactRe" + - "sponse\"&\202\323\344\223\002 \"\033/artifacts/api/v1/artifa" + - "cts:\001*\022\215\001\n\017SearchArtifacts\022).flyteidl.ar" + - "tifact.SearchArtifactsRequest\032*.flyteidl" + - ".artifact.SearchArtifactsResponse\"#\202\323\344\223\002" + - "\035\"\030/artifacts/api/v1/search:\001*\022d\n\rCreate" + - "Trigger\022\'.flyteidl.artifact.CreateTrigge" + - "rRequest\032(.flyteidl.artifact.CreateTrigg" + - "erResponse\"\000\022\237\001\n\021DeactivateTrigger\022+.fly" + - "teidl.artifact.DeactivateTriggerRequest\032" + - ",.flyteidl.artifact.DeactivateTriggerRes" + - "ponse\"/\202\323\344\223\002)2$/artifacts/api/v1/trigger" + - "/deactivate:\001*\022O\n\006AddTag\022 .flyteidl.arti" + - "fact.AddTagRequest\032!.flyteidl.artifact.A" + - "ddTagResponse\"\000\022e\n\020RegisterProducer\022*.fl" + - "yteidl.artifact.RegisterProducerRequest\032" + - "#.flyteidl.artifact.RegisterResponse\"\000\022e" + - "\n\020RegisterConsumer\022*.flyteidl.artifact.R" + - "egisterConsumerRequest\032#.flyteidl.artifa" + - "ct.RegisterResponse\"\000\022m\n\022SetExecutionInp" + - "uts\022).flyteidl.artifact.ExecutionInputsR" + - "equest\032*.flyteidl.artifact.ExecutionInpu" + - "tsResponse\"\000\022\330\001\n\022FindByWorkflowExec\022,.fl" + - "yteidl.artifact.FindByWorkflowExecReques" + - "t\032*.flyteidl.artifact.SearchArtifactsRes" + - "ponse\"h\202\323\344\223\002b\022`/artifacts/api/v1/search/" + - "execution/{exec_id.project}/{exec_id.dom" + - "ain}/{exec_id.name}/{direction}\022\365\001\n\tList" + - "Usage\022#.flyteidl.artifact.ListUsageReque" + - "st\032$.flyteidl.artifact.ListUsageResponse" + - "\"\234\001\202\323\344\223\002\225\001\022\222\001/artifacts/api/v1/usage/{ar" + - "tifact_id.artifact_key.project}/{artifac" + - "t_id.artifact_key.domain}/{artifact_id.a" + - "rtifact_key.name}/{artifact_id.version}B" + - "@Z>github.com/flyteorg/flyte/flyteidl/ge" + - "n/pb-go/flyteidl/artifactb\006proto3" + "o\032\034google/api/annotations.proto\032\037google/" + + "protobuf/timestamp.proto\032 flyteidl/admin" + + "/launch_plan.proto\032\034flyteidl/core/litera" + + "ls.proto\032\031flyteidl/core/types.proto\032\036fly" + + "teidl/core/identifier.proto\032\037flyteidl/co" + + "re/artifact_id.proto\032\035flyteidl/core/inte" + + "rface.proto\032 flyteidl/event/cloudevents." + + "proto\"\252\001\n\010Artifact\022.\n\013artifact_id\030\001 \001(\0132" + + "\031.flyteidl.core.ArtifactID\022-\n\004spec\030\002 \001(\013" + + "2\037.flyteidl.artifact.ArtifactSpec\022\014\n\004tag" + + "s\030\003 \003(\t\0221\n\006source\030\004 \001(\0132!.flyteidl.artif" + + "act.ArtifactSource\"\367\002\n\025CreateArtifactReq" + + "uest\0220\n\014artifact_key\030\001 \001(\0132\032.flyteidl.co" + + "re.ArtifactKey\022\017\n\007version\030\003 \001(\t\022-\n\004spec\030" + + "\002 \001(\0132\037.flyteidl.artifact.ArtifactSpec\022L" + + "\n\npartitions\030\004 \003(\01328.flyteidl.artifact.C" + + "reateArtifactRequest.PartitionsEntry\0228\n\024" + + "time_partition_value\030\005 \001(\0132\032.google.prot" + + "obuf.Timestamp\0221\n\006source\030\006 \001(\0132!.flyteid" + + "l.artifact.ArtifactSource\0321\n\017PartitionsE" + + "ntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"\277\001\n" + + "\016ArtifactSource\022F\n\022workflow_execution\030\001 " + + "\001(\0132*.flyteidl.core.WorkflowExecutionIde" + + "ntifier\022\017\n\007node_id\030\002 \001(\t\022*\n\007task_id\030\003 \001(" + + "\0132\031.flyteidl.core.Identifier\022\025\n\rretry_at" + + "tempt\030\004 \001(\r\022\021\n\tprincipal\030\005 \001(\t\"\203\002\n\014Artif" + + "actSpec\022%\n\005value\030\001 \001(\0132\026.flyteidl.core.L" + + "iteral\022(\n\004type\030\002 \001(\0132\032.flyteidl.core.Lit" + + "eralType\022\031\n\021short_description\030\003 \001(\t\022+\n\ru" + + "ser_metadata\030\004 \001(\0132\024.google.protobuf.Any" + + "\022\025\n\rmetadata_type\030\005 \001(\t\022.\n\ncreated_at\030\006 " + + "\001(\0132\032.google.protobuf.Timestamp\022\023\n\013file_" + + "format\030\007 \001(\t\"G\n\026CreateArtifactResponse\022-" + + "\n\010artifact\030\001 \001(\0132\033.flyteidl.artifact.Art" + + "ifact\"R\n\022GetArtifactRequest\022+\n\005query\030\001 \001" + + "(\0132\034.flyteidl.core.ArtifactQuery\022\017\n\007deta" + + "ils\030\002 \001(\010\"D\n\023GetArtifactResponse\022-\n\010arti" + + "fact\030\001 \001(\0132\033.flyteidl.artifact.Artifact\"" + + "A\n\rSearchOptions\022\031\n\021strict_partitions\030\001 " + + "\001(\010\022\025\n\rlatest_by_key\030\002 \001(\010\"\250\002\n\026SearchArt" + + "ifactsRequest\0220\n\014artifact_key\030\001 \001(\0132\032.fl" + + "yteidl.core.ArtifactKey\022-\n\npartitions\030\002 " + + "\001(\0132\031.flyteidl.core.Partitions\0228\n\024time_p" + + "artition_value\030\003 \001(\0132\032.google.protobuf.T" + + "imestamp\022\021\n\tprincipal\030\004 \001(\t\022\017\n\007version\030\005" + + " \001(\t\0221\n\007options\030\006 \001(\0132 .flyteidl.artifac" + + "t.SearchOptions\022\r\n\005token\030\007 \001(\t\022\r\n\005limit\030" + + "\010 \001(\005\"X\n\027SearchArtifactsResponse\022.\n\tarti" + + "facts\030\001 \003(\0132\033.flyteidl.artifact.Artifact" + + "\022\r\n\005token\030\002 \001(\t\"\311\001\n\031FindByWorkflowExecRe" + + "quest\022;\n\007exec_id\030\001 \001(\0132*.flyteidl.core.W" + + "orkflowExecutionIdentifier\022I\n\tdirection\030" + + "\002 \001(\01626.flyteidl.artifact.FindByWorkflow" + + "ExecRequest.Direction\"$\n\tDirection\022\n\n\006IN" + + "PUTS\020\000\022\013\n\007OUTPUTS\020\001\"a\n\rAddTagRequest\022.\n\013" + + "artifact_id\030\001 \001(\0132\031.flyteidl.core.Artifa" + + "ctID\022\r\n\005value\030\002 \001(\t\022\021\n\toverwrite\030\003 \001(\010\"\020" + + "\n\016AddTagResponse\"O\n\024CreateTriggerRequest" + + "\0227\n\023trigger_launch_plan\030\001 \001(\0132\032.flyteidl" + + ".admin.LaunchPlan\"\027\n\025CreateTriggerRespon" + + "se\"I\n\030DeactivateTriggerRequest\022-\n\ntrigge" + + "r_id\030\001 \001(\0132\031.flyteidl.core.Identifier\"\033\n" + + "\031DeactivateTriggerResponse\"m\n\020ArtifactPr" + + "oducer\022,\n\tentity_id\030\001 \001(\0132\031.flyteidl.cor" + + "e.Identifier\022+\n\007outputs\030\002 \001(\0132\032.flyteidl" + + ".core.VariableMap\"Q\n\027RegisterProducerReq" + + "uest\0226\n\tproducers\030\001 \003(\0132#.flyteidl.artif" + + "act.ArtifactProducer\"m\n\020ArtifactConsumer" + + "\022,\n\tentity_id\030\001 \001(\0132\031.flyteidl.core.Iden" + + "tifier\022+\n\006inputs\030\002 \001(\0132\033.flyteidl.core.P" + + "arameterMap\"Q\n\027RegisterConsumerRequest\0226" + + "\n\tconsumers\030\001 \003(\0132#.flyteidl.artifact.Ar" + + "tifactConsumer\"\022\n\020RegisterResponse\"\205\001\n\026E" + + "xecutionInputsRequest\022@\n\014execution_id\030\001 " + + "\001(\0132*.flyteidl.core.WorkflowExecutionIde" + + "ntifier\022)\n\006inputs\030\002 \003(\0132\031.flyteidl.core." + + "ArtifactID\"\031\n\027ExecutionInputsResponse\"B\n" + + "\020ListUsageRequest\022.\n\013artifact_id\030\001 \001(\0132\031" + + ".flyteidl.core.ArtifactID\"S\n\021ListUsageRe" + + "sponse\022>\n\nexecutions\030\001 \003(\0132*.flyteidl.co" + + "re.WorkflowExecutionIdentifier2\373\013\n\020Artif" + + "actRegistry\022g\n\016CreateArtifact\022(.flyteidl" + + ".artifact.CreateArtifactRequest\032).flytei" + + "dl.artifact.CreateArtifactResponse\"\000\022\204\001\n" + + "\013GetArtifact\022%.flyteidl.artifact.GetArti" + + "factRequest\032&.flyteidl.artifact.GetArtif" + + "actResponse\"&\202\323\344\223\002 \"\033/artifacts/api/v1/a" + + "rtifacts:\001*\022\215\001\n\017SearchArtifacts\022).flytei" + + "dl.artifact.SearchArtifactsRequest\032*.fly" + + "teidl.artifact.SearchArtifactsResponse\"#" + + "\202\323\344\223\002\035\"\030/artifacts/api/v1/search:\001*\022d\n\rC" + + "reateTrigger\022\'.flyteidl.artifact.CreateT" + + "riggerRequest\032(.flyteidl.artifact.Create" + + "TriggerResponse\"\000\022\237\001\n\021DeactivateTrigger\022" + + "+.flyteidl.artifact.DeactivateTriggerReq" + + "uest\032,.flyteidl.artifact.DeactivateTrigg" + + "erResponse\"/\202\323\344\223\002)2$/artifacts/api/v1/tr" + + "igger/deactivate:\001*\022O\n\006AddTag\022 .flyteidl" + + ".artifact.AddTagRequest\032!.flyteidl.artif" + + "act.AddTagResponse\"\000\022e\n\020RegisterProducer" + + "\022*.flyteidl.artifact.RegisterProducerReq" + + "uest\032#.flyteidl.artifact.RegisterRespons" + + "e\"\000\022e\n\020RegisterConsumer\022*.flyteidl.artif" + + "act.RegisterConsumerRequest\032#.flyteidl.a" + + "rtifact.RegisterResponse\"\000\022m\n\022SetExecuti" + + "onInputs\022).flyteidl.artifact.ExecutionIn" + + "putsRequest\032*.flyteidl.artifact.Executio" + + "nInputsResponse\"\000\022\330\001\n\022FindByWorkflowExec" + + "\022,.flyteidl.artifact.FindByWorkflowExecR" + + "equest\032*.flyteidl.artifact.SearchArtifac" + + "tsResponse\"h\202\323\344\223\002b\022`/artifacts/api/v1/se" + + "arch/execution/{exec_id.project}/{exec_i" + + "d.domain}/{exec_id.name}/{direction}\022\365\001\n" + + "\tListUsage\022#.flyteidl.artifact.ListUsage" + + "Request\032$.flyteidl.artifact.ListUsageRes" + + "ponse\"\234\001\202\323\344\223\002\225\001\022\222\001/artifacts/api/v1/usag" + + "e/{artifact_id.artifact_key.project}/{ar" + + "tifact_id.artifact_key.domain}/{artifact" + + "_id.artifact_key.name}/{artifact_id.vers" + + "ion}B@Z>github.com/flyteorg/flyte/flytei" + + "dl/gen/pb-go/flyteidl/artifactb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -21473,6 +22060,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.protobuf.AnyProto.getDescriptor(), com.google.api.AnnotationsProto.getDescriptor(), + com.google.protobuf.TimestampProto.getDescriptor(), flyteidl.admin.LaunchPlanOuterClass.getDescriptor(), flyteidl.core.Literals.getDescriptor(), flyteidl.core.Types.getDescriptor(), @@ -21492,7 +22080,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_artifact_CreateArtifactRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_artifact_CreateArtifactRequest_descriptor, - new java.lang.String[] { "ArtifactKey", "Version", "Spec", "Partitions", "Tag", "Source", }); + new java.lang.String[] { "ArtifactKey", "Version", "Spec", "Partitions", "TimePartitionValue", "Source", }); internal_static_flyteidl_artifact_CreateArtifactRequest_PartitionsEntry_descriptor = internal_static_flyteidl_artifact_CreateArtifactRequest_descriptor.getNestedTypes().get(0); internal_static_flyteidl_artifact_CreateArtifactRequest_PartitionsEntry_fieldAccessorTable = new @@ -21510,7 +22098,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_artifact_ArtifactSpec_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_artifact_ArtifactSpec_descriptor, - new java.lang.String[] { "Value", "Type", "ShortDescription", "UserMetadata", "MetadataType", }); + new java.lang.String[] { "Value", "Type", "ShortDescription", "UserMetadata", "MetadataType", "CreatedAt", "FileFormat", }); internal_static_flyteidl_artifact_CreateArtifactResponse_descriptor = getDescriptor().getMessageTypes().get(4); internal_static_flyteidl_artifact_CreateArtifactResponse_fieldAccessorTable = new @@ -21540,7 +22128,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_artifact_SearchArtifactsRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_artifact_SearchArtifactsRequest_descriptor, - new java.lang.String[] { "ArtifactKey", "Partitions", "Principal", "Version", "Options", "Token", "Limit", }); + new java.lang.String[] { "ArtifactKey", "Partitions", "TimePartitionValue", "Principal", "Version", "Options", "Token", "Limit", }); internal_static_flyteidl_artifact_SearchArtifactsResponse_descriptor = getDescriptor().getMessageTypes().get(9); internal_static_flyteidl_artifact_SearchArtifactsResponse_fieldAccessorTable = new @@ -21650,6 +22238,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( .internalUpdateFileDescriptor(descriptor, registry); com.google.protobuf.AnyProto.getDescriptor(); com.google.api.AnnotationsProto.getDescriptor(); + com.google.protobuf.TimestampProto.getDescriptor(); flyteidl.admin.LaunchPlanOuterClass.getDescriptor(); flyteidl.core.Literals.getDescriptor(); flyteidl.core.Types.getDescriptor(); diff --git a/flyteidl/gen/pb-java/flyteidl/core/ArtifactId.java b/flyteidl/gen/pb-java/flyteidl/core/ArtifactId.java index 3f9d3c7616..3b4a1132e7 100644 --- a/flyteidl/gen/pb-java/flyteidl/core/ArtifactId.java +++ b/flyteidl/gen/pb-java/flyteidl/core/ArtifactId.java @@ -883,32 +883,39 @@ public interface ArtifactBindingDataOrBuilder extends int getIndex(); /** - *
-     * These two fields are only relevant in the partition value case
-     * 
- * * string partition_key = 2; */ java.lang.String getPartitionKey(); /** - *
-     * These two fields are only relevant in the partition value case
-     * 
- * * string partition_key = 2; */ com.google.protobuf.ByteString getPartitionKeyBytes(); /** - * string transform = 3; + * bool bind_to_time_partition = 3; + */ + boolean getBindToTimePartition(); + + /** + *
+     * This is only relevant in the time partition case
+     * 
+ * + * string transform = 4; */ java.lang.String getTransform(); /** - * string transform = 3; + *
+     * This is only relevant in the time partition case
+     * 
+ * + * string transform = 4; */ com.google.protobuf.ByteString getTransformBytes(); + + public flyteidl.core.ArtifactId.ArtifactBindingData.PartitionDataCase getPartitionDataCase(); } /** *
@@ -927,7 +934,6 @@ private ArtifactBindingData(com.google.protobuf.GeneratedMessageV3.Builder bu
       super(builder);
     }
     private ArtifactBindingData() {
-      partitionKey_ = "";
       transform_ = "";
     }
 
@@ -962,11 +968,16 @@ private ArtifactBindingData(
             }
             case 18: {
               java.lang.String s = input.readStringRequireUtf8();
-
-              partitionKey_ = s;
+              partitionDataCase_ = 2;
+              partitionData_ = s;
               break;
             }
-            case 26: {
+            case 24: {
+              partitionDataCase_ = 3;
+              partitionData_ = input.readBool();
+              break;
+            }
+            case 34: {
               java.lang.String s = input.readStringRequireUtf8();
 
               transform_ = s;
@@ -1004,6 +1015,44 @@ private ArtifactBindingData(
               flyteidl.core.ArtifactId.ArtifactBindingData.class, flyteidl.core.ArtifactId.ArtifactBindingData.Builder.class);
     }
 
+    private int partitionDataCase_ = 0;
+    private java.lang.Object partitionData_;
+    public enum PartitionDataCase
+        implements com.google.protobuf.Internal.EnumLite {
+      PARTITION_KEY(2),
+      BIND_TO_TIME_PARTITION(3),
+      PARTITIONDATA_NOT_SET(0);
+      private final int value;
+      private PartitionDataCase(int value) {
+        this.value = value;
+      }
+      /**
+       * @deprecated Use {@link #forNumber(int)} instead.
+       */
+      @java.lang.Deprecated
+      public static PartitionDataCase valueOf(int value) {
+        return forNumber(value);
+      }
+
+      public static PartitionDataCase forNumber(int value) {
+        switch (value) {
+          case 2: return PARTITION_KEY;
+          case 3: return BIND_TO_TIME_PARTITION;
+          case 0: return PARTITIONDATA_NOT_SET;
+          default: return null;
+        }
+      }
+      public int getNumber() {
+        return this.value;
+      }
+    };
+
+    public PartitionDataCase
+    getPartitionDataCase() {
+      return PartitionDataCase.forNumber(
+          partitionDataCase_);
+    }
+
     public static final int INDEX_FIELD_NUMBER = 1;
     private int index_;
     /**
@@ -1014,51 +1063,67 @@ public int getIndex() {
     }
 
     public static final int PARTITION_KEY_FIELD_NUMBER = 2;
-    private volatile java.lang.Object partitionKey_;
     /**
-     * 
-     * These two fields are only relevant in the partition value case
-     * 
- * * string partition_key = 2; */ public java.lang.String getPartitionKey() { - java.lang.Object ref = partitionKey_; + java.lang.Object ref = ""; + if (partitionDataCase_ == 2) { + ref = partitionData_; + } if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - partitionKey_ = s; + if (partitionDataCase_ == 2) { + partitionData_ = s; + } return s; } } /** - *
-     * These two fields are only relevant in the partition value case
-     * 
- * * string partition_key = 2; */ public com.google.protobuf.ByteString getPartitionKeyBytes() { - java.lang.Object ref = partitionKey_; + java.lang.Object ref = ""; + if (partitionDataCase_ == 2) { + ref = partitionData_; + } if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - partitionKey_ = b; + if (partitionDataCase_ == 2) { + partitionData_ = b; + } return b; } else { return (com.google.protobuf.ByteString) ref; } } - public static final int TRANSFORM_FIELD_NUMBER = 3; + public static final int BIND_TO_TIME_PARTITION_FIELD_NUMBER = 3; + /** + * bool bind_to_time_partition = 3; + */ + public boolean getBindToTimePartition() { + if (partitionDataCase_ == 3) { + return (java.lang.Boolean) partitionData_; + } + return false; + } + + public static final int TRANSFORM_FIELD_NUMBER = 4; private volatile java.lang.Object transform_; /** - * string transform = 3; + *
+     * This is only relevant in the time partition case
+     * 
+ * + * string transform = 4; */ public java.lang.String getTransform() { java.lang.Object ref = transform_; @@ -1073,7 +1138,11 @@ public java.lang.String getTransform() { } } /** - * string transform = 3; + *
+     * This is only relevant in the time partition case
+     * 
+ * + * string transform = 4; */ public com.google.protobuf.ByteString getTransformBytes() { @@ -1106,11 +1175,15 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (index_ != 0) { output.writeUInt32(1, index_); } - if (!getPartitionKeyBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 2, partitionKey_); + if (partitionDataCase_ == 2) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, partitionData_); + } + if (partitionDataCase_ == 3) { + output.writeBool( + 3, (boolean)((java.lang.Boolean) partitionData_)); } if (!getTransformBytes().isEmpty()) { - com.google.protobuf.GeneratedMessageV3.writeString(output, 3, transform_); + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, transform_); } unknownFields.writeTo(output); } @@ -1125,11 +1198,16 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(1, index_); } - if (!getPartitionKeyBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, partitionKey_); + if (partitionDataCase_ == 2) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, partitionData_); + } + if (partitionDataCase_ == 3) { + size += com.google.protobuf.CodedOutputStream + .computeBoolSize( + 3, (boolean)((java.lang.Boolean) partitionData_)); } if (!getTransformBytes().isEmpty()) { - size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, transform_); + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, transform_); } size += unknownFields.getSerializedSize(); memoizedSize = size; @@ -1148,10 +1226,21 @@ public boolean equals(final java.lang.Object obj) { if (getIndex() != other.getIndex()) return false; - if (!getPartitionKey() - .equals(other.getPartitionKey())) return false; if (!getTransform() .equals(other.getTransform())) return false; + if (!getPartitionDataCase().equals(other.getPartitionDataCase())) return false; + switch (partitionDataCase_) { + case 2: + if (!getPartitionKey() + .equals(other.getPartitionKey())) return false; + break; + case 3: + if (getBindToTimePartition() + != other.getBindToTimePartition()) return false; + break; + case 0: + default: + } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -1165,10 +1254,21 @@ public int hashCode() { hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + INDEX_FIELD_NUMBER; hash = (53 * hash) + getIndex(); - hash = (37 * hash) + PARTITION_KEY_FIELD_NUMBER; - hash = (53 * hash) + getPartitionKey().hashCode(); hash = (37 * hash) + TRANSFORM_FIELD_NUMBER; hash = (53 * hash) + getTransform().hashCode(); + switch (partitionDataCase_) { + case 2: + hash = (37 * hash) + PARTITION_KEY_FIELD_NUMBER; + hash = (53 * hash) + getPartitionKey().hashCode(); + break; + case 3: + hash = (37 * hash) + BIND_TO_TIME_PARTITION_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getBindToTimePartition()); + break; + case 0: + default: + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -1308,10 +1408,10 @@ public Builder clear() { super.clear(); index_ = 0; - partitionKey_ = ""; - transform_ = ""; + partitionDataCase_ = 0; + partitionData_ = null; return this; } @@ -1339,8 +1439,14 @@ public flyteidl.core.ArtifactId.ArtifactBindingData build() { public flyteidl.core.ArtifactId.ArtifactBindingData buildPartial() { flyteidl.core.ArtifactId.ArtifactBindingData result = new flyteidl.core.ArtifactId.ArtifactBindingData(this); result.index_ = index_; - result.partitionKey_ = partitionKey_; + if (partitionDataCase_ == 2) { + result.partitionData_ = partitionData_; + } + if (partitionDataCase_ == 3) { + result.partitionData_ = partitionData_; + } result.transform_ = transform_; + result.partitionDataCase_ = partitionDataCase_; onBuilt(); return result; } @@ -1392,14 +1498,25 @@ public Builder mergeFrom(flyteidl.core.ArtifactId.ArtifactBindingData other) { if (other.getIndex() != 0) { setIndex(other.getIndex()); } - if (!other.getPartitionKey().isEmpty()) { - partitionKey_ = other.partitionKey_; - onChanged(); - } if (!other.getTransform().isEmpty()) { transform_ = other.transform_; onChanged(); } + switch (other.getPartitionDataCase()) { + case PARTITION_KEY: { + partitionDataCase_ = 2; + partitionData_ = other.partitionData_; + onChanged(); + break; + } + case BIND_TO_TIME_PARTITION: { + setBindToTimePartition(other.getBindToTimePartition()); + break; + } + case PARTITIONDATA_NOT_SET: { + break; + } + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1428,6 +1545,21 @@ public Builder mergeFrom( } return this; } + private int partitionDataCase_ = 0; + private java.lang.Object partitionData_; + public PartitionDataCase + getPartitionDataCase() { + return PartitionDataCase.forNumber( + partitionDataCase_); + } + + public Builder clearPartitionData() { + partitionDataCase_ = 0; + partitionData_ = null; + onChanged(); + return this; + } + private int index_ ; /** @@ -1455,51 +1587,48 @@ public Builder clearIndex() { return this; } - private java.lang.Object partitionKey_ = ""; /** - *
-       * These two fields are only relevant in the partition value case
-       * 
- * * string partition_key = 2; */ public java.lang.String getPartitionKey() { - java.lang.Object ref = partitionKey_; + java.lang.Object ref = ""; + if (partitionDataCase_ == 2) { + ref = partitionData_; + } if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); - partitionKey_ = s; + if (partitionDataCase_ == 2) { + partitionData_ = s; + } return s; } else { return (java.lang.String) ref; } } /** - *
-       * These two fields are only relevant in the partition value case
-       * 
- * * string partition_key = 2; */ public com.google.protobuf.ByteString getPartitionKeyBytes() { - java.lang.Object ref = partitionKey_; + java.lang.Object ref = ""; + if (partitionDataCase_ == 2) { + ref = partitionData_; + } if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - partitionKey_ = b; + if (partitionDataCase_ == 2) { + partitionData_ = b; + } return b; } else { return (com.google.protobuf.ByteString) ref; } } /** - *
-       * These two fields are only relevant in the partition value case
-       * 
- * * string partition_key = 2; */ public Builder setPartitionKey( @@ -1507,29 +1636,23 @@ public Builder setPartitionKey( if (value == null) { throw new NullPointerException(); } - - partitionKey_ = value; + partitionDataCase_ = 2; + partitionData_ = value; onChanged(); return this; } /** - *
-       * These two fields are only relevant in the partition value case
-       * 
- * * string partition_key = 2; */ public Builder clearPartitionKey() { - - partitionKey_ = getDefaultInstance().getPartitionKey(); - onChanged(); + if (partitionDataCase_ == 2) { + partitionDataCase_ = 0; + partitionData_ = null; + onChanged(); + } return this; } /** - *
-       * These two fields are only relevant in the partition value case
-       * 
- * * string partition_key = 2; */ public Builder setPartitionKeyBytes( @@ -1538,15 +1661,49 @@ public Builder setPartitionKeyBytes( throw new NullPointerException(); } checkByteStringIsUtf8(value); - - partitionKey_ = value; + partitionDataCase_ = 2; + partitionData_ = value; + onChanged(); + return this; + } + + /** + * bool bind_to_time_partition = 3; + */ + public boolean getBindToTimePartition() { + if (partitionDataCase_ == 3) { + return (java.lang.Boolean) partitionData_; + } + return false; + } + /** + * bool bind_to_time_partition = 3; + */ + public Builder setBindToTimePartition(boolean value) { + partitionDataCase_ = 3; + partitionData_ = value; onChanged(); return this; } + /** + * bool bind_to_time_partition = 3; + */ + public Builder clearBindToTimePartition() { + if (partitionDataCase_ == 3) { + partitionDataCase_ = 0; + partitionData_ = null; + onChanged(); + } + return this; + } private java.lang.Object transform_ = ""; /** - * string transform = 3; + *
+       * This is only relevant in the time partition case
+       * 
+ * + * string transform = 4; */ public java.lang.String getTransform() { java.lang.Object ref = transform_; @@ -1561,7 +1718,11 @@ public java.lang.String getTransform() { } } /** - * string transform = 3; + *
+       * This is only relevant in the time partition case
+       * 
+ * + * string transform = 4; */ public com.google.protobuf.ByteString getTransformBytes() { @@ -1577,7 +1738,11 @@ public java.lang.String getTransform() { } } /** - * string transform = 3; + *
+       * This is only relevant in the time partition case
+       * 
+ * + * string transform = 4; */ public Builder setTransform( java.lang.String value) { @@ -1590,7 +1755,11 @@ public Builder setTransform( return this; } /** - * string transform = 3; + *
+       * This is only relevant in the time partition case
+       * 
+ * + * string transform = 4; */ public Builder clearTransform() { @@ -1599,7 +1768,11 @@ public Builder clearTransform() { return this; } /** - * string transform = 3; + *
+       * This is only relevant in the time partition case
+       * 
+ * + * string transform = 4; */ public Builder setTransformBytes( com.google.protobuf.ByteString value) { @@ -2219,38 +2392,71 @@ public interface LabelValueOrBuilder extends com.google.protobuf.MessageOrBuilder { /** + *
+     * The string static value is for use in the Partitions object
+     * 
+ * * string static_value = 1; */ java.lang.String getStaticValue(); /** + *
+     * The string static value is for use in the Partitions object
+     * 
+ * * string static_value = 1; */ com.google.protobuf.ByteString getStaticValueBytes(); /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + *
+     * The time value is for use in the TimePartition case
+     * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + boolean hasTimeValue(); + /** + *
+     * The time value is for use in the TimePartition case
+     * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + com.google.protobuf.Timestamp getTimeValue(); + /** + *
+     * The time value is for use in the TimePartition case
+     * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + com.google.protobuf.TimestampOrBuilder getTimeValueOrBuilder(); + + /** + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ boolean hasTriggeredBinding(); /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ flyteidl.core.ArtifactId.ArtifactBindingData getTriggeredBinding(); /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ flyteidl.core.ArtifactId.ArtifactBindingDataOrBuilder getTriggeredBindingOrBuilder(); /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ boolean hasInputBinding(); /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ flyteidl.core.ArtifactId.InputBindingData getInputBinding(); /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ flyteidl.core.ArtifactId.InputBindingDataOrBuilder getInputBindingOrBuilder(); @@ -2302,8 +2508,22 @@ private LabelValue( break; } case 18: { - flyteidl.core.ArtifactId.ArtifactBindingData.Builder subBuilder = null; + com.google.protobuf.Timestamp.Builder subBuilder = null; if (valueCase_ == 2) { + subBuilder = ((com.google.protobuf.Timestamp) value_).toBuilder(); + } + value_ = + input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.protobuf.Timestamp) value_); + value_ = subBuilder.buildPartial(); + } + valueCase_ = 2; + break; + } + case 26: { + flyteidl.core.ArtifactId.ArtifactBindingData.Builder subBuilder = null; + if (valueCase_ == 3) { subBuilder = ((flyteidl.core.ArtifactId.ArtifactBindingData) value_).toBuilder(); } value_ = @@ -2312,12 +2532,12 @@ private LabelValue( subBuilder.mergeFrom((flyteidl.core.ArtifactId.ArtifactBindingData) value_); value_ = subBuilder.buildPartial(); } - valueCase_ = 2; + valueCase_ = 3; break; } - case 26: { + case 34: { flyteidl.core.ArtifactId.InputBindingData.Builder subBuilder = null; - if (valueCase_ == 3) { + if (valueCase_ == 4) { subBuilder = ((flyteidl.core.ArtifactId.InputBindingData) value_).toBuilder(); } value_ = @@ -2326,7 +2546,7 @@ private LabelValue( subBuilder.mergeFrom((flyteidl.core.ArtifactId.InputBindingData) value_); value_ = subBuilder.buildPartial(); } - valueCase_ = 3; + valueCase_ = 4; break; } default: { @@ -2366,8 +2586,9 @@ private LabelValue( public enum ValueCase implements com.google.protobuf.Internal.EnumLite { STATIC_VALUE(1), - TRIGGERED_BINDING(2), - INPUT_BINDING(3), + TIME_VALUE(2), + TRIGGERED_BINDING(3), + INPUT_BINDING(4), VALUE_NOT_SET(0); private final int value; private ValueCase(int value) { @@ -2384,8 +2605,9 @@ public static ValueCase valueOf(int value) { public static ValueCase forNumber(int value) { switch (value) { case 1: return STATIC_VALUE; - case 2: return TRIGGERED_BINDING; - case 3: return INPUT_BINDING; + case 2: return TIME_VALUE; + case 3: return TRIGGERED_BINDING; + case 4: return INPUT_BINDING; case 0: return VALUE_NOT_SET; default: return null; } @@ -2403,6 +2625,10 @@ public int getNumber() { public static final int STATIC_VALUE_FIELD_NUMBER = 1; /** + *
+     * The string static value is for use in the Partitions object
+     * 
+ * * string static_value = 1; */ public java.lang.String getStaticValue() { @@ -2423,6 +2649,10 @@ public java.lang.String getStaticValue() { } } /** + *
+     * The string static value is for use in the Partitions object
+     * 
+ * * string static_value = 1; */ public com.google.protobuf.ByteString @@ -2444,53 +2674,91 @@ public java.lang.String getStaticValue() { } } - public static final int TRIGGERED_BINDING_FIELD_NUMBER = 2; + public static final int TIME_VALUE_FIELD_NUMBER = 2; /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + *
+     * The time value is for use in the TimePartition case
+     * 
+ * + * .google.protobuf.Timestamp time_value = 2; */ - public boolean hasTriggeredBinding() { + public boolean hasTimeValue() { return valueCase_ == 2; } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + *
+     * The time value is for use in the TimePartition case
+     * 
+ * + * .google.protobuf.Timestamp time_value = 2; */ - public flyteidl.core.ArtifactId.ArtifactBindingData getTriggeredBinding() { + public com.google.protobuf.Timestamp getTimeValue() { + if (valueCase_ == 2) { + return (com.google.protobuf.Timestamp) value_; + } + return com.google.protobuf.Timestamp.getDefaultInstance(); + } + /** + *
+     * The time value is for use in the TimePartition case
+     * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + public com.google.protobuf.TimestampOrBuilder getTimeValueOrBuilder() { if (valueCase_ == 2) { + return (com.google.protobuf.Timestamp) value_; + } + return com.google.protobuf.Timestamp.getDefaultInstance(); + } + + public static final int TRIGGERED_BINDING_FIELD_NUMBER = 3; + /** + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; + */ + public boolean hasTriggeredBinding() { + return valueCase_ == 3; + } + /** + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; + */ + public flyteidl.core.ArtifactId.ArtifactBindingData getTriggeredBinding() { + if (valueCase_ == 3) { return (flyteidl.core.ArtifactId.ArtifactBindingData) value_; } return flyteidl.core.ArtifactId.ArtifactBindingData.getDefaultInstance(); } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ public flyteidl.core.ArtifactId.ArtifactBindingDataOrBuilder getTriggeredBindingOrBuilder() { - if (valueCase_ == 2) { + if (valueCase_ == 3) { return (flyteidl.core.ArtifactId.ArtifactBindingData) value_; } return flyteidl.core.ArtifactId.ArtifactBindingData.getDefaultInstance(); } - public static final int INPUT_BINDING_FIELD_NUMBER = 3; + public static final int INPUT_BINDING_FIELD_NUMBER = 4; /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public boolean hasInputBinding() { - return valueCase_ == 3; + return valueCase_ == 4; } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public flyteidl.core.ArtifactId.InputBindingData getInputBinding() { - if (valueCase_ == 3) { + if (valueCase_ == 4) { return (flyteidl.core.ArtifactId.InputBindingData) value_; } return flyteidl.core.ArtifactId.InputBindingData.getDefaultInstance(); } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public flyteidl.core.ArtifactId.InputBindingDataOrBuilder getInputBindingOrBuilder() { - if (valueCase_ == 3) { + if (valueCase_ == 4) { return (flyteidl.core.ArtifactId.InputBindingData) value_; } return flyteidl.core.ArtifactId.InputBindingData.getDefaultInstance(); @@ -2514,10 +2782,13 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) com.google.protobuf.GeneratedMessageV3.writeString(output, 1, value_); } if (valueCase_ == 2) { - output.writeMessage(2, (flyteidl.core.ArtifactId.ArtifactBindingData) value_); + output.writeMessage(2, (com.google.protobuf.Timestamp) value_); } if (valueCase_ == 3) { - output.writeMessage(3, (flyteidl.core.ArtifactId.InputBindingData) value_); + output.writeMessage(3, (flyteidl.core.ArtifactId.ArtifactBindingData) value_); + } + if (valueCase_ == 4) { + output.writeMessage(4, (flyteidl.core.ArtifactId.InputBindingData) value_); } unknownFields.writeTo(output); } @@ -2533,11 +2804,15 @@ public int getSerializedSize() { } if (valueCase_ == 2) { size += com.google.protobuf.CodedOutputStream - .computeMessageSize(2, (flyteidl.core.ArtifactId.ArtifactBindingData) value_); + .computeMessageSize(2, (com.google.protobuf.Timestamp) value_); } if (valueCase_ == 3) { size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, (flyteidl.core.ArtifactId.InputBindingData) value_); + .computeMessageSize(3, (flyteidl.core.ArtifactId.ArtifactBindingData) value_); + } + if (valueCase_ == 4) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, (flyteidl.core.ArtifactId.InputBindingData) value_); } size += unknownFields.getSerializedSize(); memoizedSize = size; @@ -2561,10 +2836,14 @@ public boolean equals(final java.lang.Object obj) { .equals(other.getStaticValue())) return false; break; case 2: + if (!getTimeValue() + .equals(other.getTimeValue())) return false; + break; + case 3: if (!getTriggeredBinding() .equals(other.getTriggeredBinding())) return false; break; - case 3: + case 4: if (!getInputBinding() .equals(other.getInputBinding())) return false; break; @@ -2588,10 +2867,14 @@ public int hashCode() { hash = (53 * hash) + getStaticValue().hashCode(); break; case 2: + hash = (37 * hash) + TIME_VALUE_FIELD_NUMBER; + hash = (53 * hash) + getTimeValue().hashCode(); + break; + case 3: hash = (37 * hash) + TRIGGERED_BINDING_FIELD_NUMBER; hash = (53 * hash) + getTriggeredBinding().hashCode(); break; - case 3: + case 4: hash = (37 * hash) + INPUT_BINDING_FIELD_NUMBER; hash = (53 * hash) + getInputBinding().hashCode(); break; @@ -2763,13 +3046,20 @@ public flyteidl.core.ArtifactId.LabelValue buildPartial() { result.value_ = value_; } if (valueCase_ == 2) { + if (timeValueBuilder_ == null) { + result.value_ = value_; + } else { + result.value_ = timeValueBuilder_.build(); + } + } + if (valueCase_ == 3) { if (triggeredBindingBuilder_ == null) { result.value_ = value_; } else { result.value_ = triggeredBindingBuilder_.build(); } } - if (valueCase_ == 3) { + if (valueCase_ == 4) { if (inputBindingBuilder_ == null) { result.value_ = value_; } else { @@ -2832,6 +3122,10 @@ public Builder mergeFrom(flyteidl.core.ArtifactId.LabelValue other) { onChanged(); break; } + case TIME_VALUE: { + mergeTimeValue(other.getTimeValue()); + break; + } case TRIGGERED_BINDING: { mergeTriggeredBinding(other.getTriggeredBinding()); break; @@ -2889,6 +3183,10 @@ public Builder clearValue() { /** + *
+       * The string static value is for use in the Partitions object
+       * 
+ * * string static_value = 1; */ public java.lang.String getStaticValue() { @@ -2909,6 +3207,10 @@ public java.lang.String getStaticValue() { } } /** + *
+       * The string static value is for use in the Partitions object
+       * 
+ * * string static_value = 1; */ public com.google.protobuf.ByteString @@ -2930,6 +3232,10 @@ public java.lang.String getStaticValue() { } } /** + *
+       * The string static value is for use in the Partitions object
+       * 
+ * * string static_value = 1; */ public Builder setStaticValue( @@ -2943,6 +3249,10 @@ public Builder setStaticValue( return this; } /** + *
+       * The string static value is for use in the Partitions object
+       * 
+ * * string static_value = 1; */ public Builder clearStaticValue() { @@ -2954,6 +3264,10 @@ public Builder clearStaticValue() { return this; } /** + *
+       * The string static value is for use in the Partitions object
+       * 
+ * * string static_value = 1; */ public Builder setStaticValueBytes( @@ -2968,32 +3282,204 @@ public Builder setStaticValueBytes( return this; } + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> timeValueBuilder_; + /** + *
+       * The time value is for use in the TimePartition case
+       * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + public boolean hasTimeValue() { + return valueCase_ == 2; + } + /** + *
+       * The time value is for use in the TimePartition case
+       * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + public com.google.protobuf.Timestamp getTimeValue() { + if (timeValueBuilder_ == null) { + if (valueCase_ == 2) { + return (com.google.protobuf.Timestamp) value_; + } + return com.google.protobuf.Timestamp.getDefaultInstance(); + } else { + if (valueCase_ == 2) { + return timeValueBuilder_.getMessage(); + } + return com.google.protobuf.Timestamp.getDefaultInstance(); + } + } + /** + *
+       * The time value is for use in the TimePartition case
+       * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + public Builder setTimeValue(com.google.protobuf.Timestamp value) { + if (timeValueBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + value_ = value; + onChanged(); + } else { + timeValueBuilder_.setMessage(value); + } + valueCase_ = 2; + return this; + } + /** + *
+       * The time value is for use in the TimePartition case
+       * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + public Builder setTimeValue( + com.google.protobuf.Timestamp.Builder builderForValue) { + if (timeValueBuilder_ == null) { + value_ = builderForValue.build(); + onChanged(); + } else { + timeValueBuilder_.setMessage(builderForValue.build()); + } + valueCase_ = 2; + return this; + } + /** + *
+       * The time value is for use in the TimePartition case
+       * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + public Builder mergeTimeValue(com.google.protobuf.Timestamp value) { + if (timeValueBuilder_ == null) { + if (valueCase_ == 2 && + value_ != com.google.protobuf.Timestamp.getDefaultInstance()) { + value_ = com.google.protobuf.Timestamp.newBuilder((com.google.protobuf.Timestamp) value_) + .mergeFrom(value).buildPartial(); + } else { + value_ = value; + } + onChanged(); + } else { + if (valueCase_ == 2) { + timeValueBuilder_.mergeFrom(value); + } + timeValueBuilder_.setMessage(value); + } + valueCase_ = 2; + return this; + } + /** + *
+       * The time value is for use in the TimePartition case
+       * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + public Builder clearTimeValue() { + if (timeValueBuilder_ == null) { + if (valueCase_ == 2) { + valueCase_ = 0; + value_ = null; + onChanged(); + } + } else { + if (valueCase_ == 2) { + valueCase_ = 0; + value_ = null; + } + timeValueBuilder_.clear(); + } + return this; + } + /** + *
+       * The time value is for use in the TimePartition case
+       * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + public com.google.protobuf.Timestamp.Builder getTimeValueBuilder() { + return getTimeValueFieldBuilder().getBuilder(); + } + /** + *
+       * The time value is for use in the TimePartition case
+       * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + public com.google.protobuf.TimestampOrBuilder getTimeValueOrBuilder() { + if ((valueCase_ == 2) && (timeValueBuilder_ != null)) { + return timeValueBuilder_.getMessageOrBuilder(); + } else { + if (valueCase_ == 2) { + return (com.google.protobuf.Timestamp) value_; + } + return com.google.protobuf.Timestamp.getDefaultInstance(); + } + } + /** + *
+       * The time value is for use in the TimePartition case
+       * 
+ * + * .google.protobuf.Timestamp time_value = 2; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> + getTimeValueFieldBuilder() { + if (timeValueBuilder_ == null) { + if (!(valueCase_ == 2)) { + value_ = com.google.protobuf.Timestamp.getDefaultInstance(); + } + timeValueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( + (com.google.protobuf.Timestamp) value_, + getParentForChildren(), + isClean()); + value_ = null; + } + valueCase_ = 2; + onChanged();; + return timeValueBuilder_; + } + private com.google.protobuf.SingleFieldBuilderV3< flyteidl.core.ArtifactId.ArtifactBindingData, flyteidl.core.ArtifactId.ArtifactBindingData.Builder, flyteidl.core.ArtifactId.ArtifactBindingDataOrBuilder> triggeredBindingBuilder_; /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ public boolean hasTriggeredBinding() { - return valueCase_ == 2; + return valueCase_ == 3; } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ public flyteidl.core.ArtifactId.ArtifactBindingData getTriggeredBinding() { if (triggeredBindingBuilder_ == null) { - if (valueCase_ == 2) { + if (valueCase_ == 3) { return (flyteidl.core.ArtifactId.ArtifactBindingData) value_; } return flyteidl.core.ArtifactId.ArtifactBindingData.getDefaultInstance(); } else { - if (valueCase_ == 2) { + if (valueCase_ == 3) { return triggeredBindingBuilder_.getMessage(); } return flyteidl.core.ArtifactId.ArtifactBindingData.getDefaultInstance(); } } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ public Builder setTriggeredBinding(flyteidl.core.ArtifactId.ArtifactBindingData value) { if (triggeredBindingBuilder_ == null) { @@ -3005,11 +3491,11 @@ public Builder setTriggeredBinding(flyteidl.core.ArtifactId.ArtifactBindingData } else { triggeredBindingBuilder_.setMessage(value); } - valueCase_ = 2; + valueCase_ = 3; return this; } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ public Builder setTriggeredBinding( flyteidl.core.ArtifactId.ArtifactBindingData.Builder builderForValue) { @@ -3019,15 +3505,15 @@ public Builder setTriggeredBinding( } else { triggeredBindingBuilder_.setMessage(builderForValue.build()); } - valueCase_ = 2; + valueCase_ = 3; return this; } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ public Builder mergeTriggeredBinding(flyteidl.core.ArtifactId.ArtifactBindingData value) { if (triggeredBindingBuilder_ == null) { - if (valueCase_ == 2 && + if (valueCase_ == 3 && value_ != flyteidl.core.ArtifactId.ArtifactBindingData.getDefaultInstance()) { value_ = flyteidl.core.ArtifactId.ArtifactBindingData.newBuilder((flyteidl.core.ArtifactId.ArtifactBindingData) value_) .mergeFrom(value).buildPartial(); @@ -3036,26 +3522,26 @@ public Builder mergeTriggeredBinding(flyteidl.core.ArtifactId.ArtifactBindingDat } onChanged(); } else { - if (valueCase_ == 2) { + if (valueCase_ == 3) { triggeredBindingBuilder_.mergeFrom(value); } triggeredBindingBuilder_.setMessage(value); } - valueCase_ = 2; + valueCase_ = 3; return this; } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ public Builder clearTriggeredBinding() { if (triggeredBindingBuilder_ == null) { - if (valueCase_ == 2) { + if (valueCase_ == 3) { valueCase_ = 0; value_ = null; onChanged(); } } else { - if (valueCase_ == 2) { + if (valueCase_ == 3) { valueCase_ = 0; value_ = null; } @@ -3064,32 +3550,32 @@ public Builder clearTriggeredBinding() { return this; } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ public flyteidl.core.ArtifactId.ArtifactBindingData.Builder getTriggeredBindingBuilder() { return getTriggeredBindingFieldBuilder().getBuilder(); } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ public flyteidl.core.ArtifactId.ArtifactBindingDataOrBuilder getTriggeredBindingOrBuilder() { - if ((valueCase_ == 2) && (triggeredBindingBuilder_ != null)) { + if ((valueCase_ == 3) && (triggeredBindingBuilder_ != null)) { return triggeredBindingBuilder_.getMessageOrBuilder(); } else { - if (valueCase_ == 2) { + if (valueCase_ == 3) { return (flyteidl.core.ArtifactId.ArtifactBindingData) value_; } return flyteidl.core.ArtifactId.ArtifactBindingData.getDefaultInstance(); } } /** - * .flyteidl.core.ArtifactBindingData triggered_binding = 2; + * .flyteidl.core.ArtifactBindingData triggered_binding = 3; */ private com.google.protobuf.SingleFieldBuilderV3< flyteidl.core.ArtifactId.ArtifactBindingData, flyteidl.core.ArtifactId.ArtifactBindingData.Builder, flyteidl.core.ArtifactId.ArtifactBindingDataOrBuilder> getTriggeredBindingFieldBuilder() { if (triggeredBindingBuilder_ == null) { - if (!(valueCase_ == 2)) { + if (!(valueCase_ == 3)) { value_ = flyteidl.core.ArtifactId.ArtifactBindingData.getDefaultInstance(); } triggeredBindingBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< @@ -3099,7 +3585,7 @@ public flyteidl.core.ArtifactId.ArtifactBindingDataOrBuilder getTriggeredBinding isClean()); value_ = null; } - valueCase_ = 2; + valueCase_ = 3; onChanged();; return triggeredBindingBuilder_; } @@ -3107,29 +3593,29 @@ public flyteidl.core.ArtifactId.ArtifactBindingDataOrBuilder getTriggeredBinding private com.google.protobuf.SingleFieldBuilderV3< flyteidl.core.ArtifactId.InputBindingData, flyteidl.core.ArtifactId.InputBindingData.Builder, flyteidl.core.ArtifactId.InputBindingDataOrBuilder> inputBindingBuilder_; /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public boolean hasInputBinding() { - return valueCase_ == 3; + return valueCase_ == 4; } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public flyteidl.core.ArtifactId.InputBindingData getInputBinding() { if (inputBindingBuilder_ == null) { - if (valueCase_ == 3) { + if (valueCase_ == 4) { return (flyteidl.core.ArtifactId.InputBindingData) value_; } return flyteidl.core.ArtifactId.InputBindingData.getDefaultInstance(); } else { - if (valueCase_ == 3) { + if (valueCase_ == 4) { return inputBindingBuilder_.getMessage(); } return flyteidl.core.ArtifactId.InputBindingData.getDefaultInstance(); } } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public Builder setInputBinding(flyteidl.core.ArtifactId.InputBindingData value) { if (inputBindingBuilder_ == null) { @@ -3141,11 +3627,11 @@ public Builder setInputBinding(flyteidl.core.ArtifactId.InputBindingData value) } else { inputBindingBuilder_.setMessage(value); } - valueCase_ = 3; + valueCase_ = 4; return this; } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public Builder setInputBinding( flyteidl.core.ArtifactId.InputBindingData.Builder builderForValue) { @@ -3155,15 +3641,15 @@ public Builder setInputBinding( } else { inputBindingBuilder_.setMessage(builderForValue.build()); } - valueCase_ = 3; + valueCase_ = 4; return this; } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public Builder mergeInputBinding(flyteidl.core.ArtifactId.InputBindingData value) { if (inputBindingBuilder_ == null) { - if (valueCase_ == 3 && + if (valueCase_ == 4 && value_ != flyteidl.core.ArtifactId.InputBindingData.getDefaultInstance()) { value_ = flyteidl.core.ArtifactId.InputBindingData.newBuilder((flyteidl.core.ArtifactId.InputBindingData) value_) .mergeFrom(value).buildPartial(); @@ -3172,26 +3658,26 @@ public Builder mergeInputBinding(flyteidl.core.ArtifactId.InputBindingData value } onChanged(); } else { - if (valueCase_ == 3) { + if (valueCase_ == 4) { inputBindingBuilder_.mergeFrom(value); } inputBindingBuilder_.setMessage(value); } - valueCase_ = 3; + valueCase_ = 4; return this; } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public Builder clearInputBinding() { if (inputBindingBuilder_ == null) { - if (valueCase_ == 3) { + if (valueCase_ == 4) { valueCase_ = 0; value_ = null; onChanged(); } } else { - if (valueCase_ == 3) { + if (valueCase_ == 4) { valueCase_ = 0; value_ = null; } @@ -3200,32 +3686,32 @@ public Builder clearInputBinding() { return this; } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public flyteidl.core.ArtifactId.InputBindingData.Builder getInputBindingBuilder() { return getInputBindingFieldBuilder().getBuilder(); } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ public flyteidl.core.ArtifactId.InputBindingDataOrBuilder getInputBindingOrBuilder() { - if ((valueCase_ == 3) && (inputBindingBuilder_ != null)) { + if ((valueCase_ == 4) && (inputBindingBuilder_ != null)) { return inputBindingBuilder_.getMessageOrBuilder(); } else { - if (valueCase_ == 3) { + if (valueCase_ == 4) { return (flyteidl.core.ArtifactId.InputBindingData) value_; } return flyteidl.core.ArtifactId.InputBindingData.getDefaultInstance(); } } /** - * .flyteidl.core.InputBindingData input_binding = 3; + * .flyteidl.core.InputBindingData input_binding = 4; */ private com.google.protobuf.SingleFieldBuilderV3< flyteidl.core.ArtifactId.InputBindingData, flyteidl.core.ArtifactId.InputBindingData.Builder, flyteidl.core.ArtifactId.InputBindingDataOrBuilder> getInputBindingFieldBuilder() { if (inputBindingBuilder_ == null) { - if (!(valueCase_ == 3)) { + if (!(valueCase_ == 4)) { value_ = flyteidl.core.ArtifactId.InputBindingData.getDefaultInstance(); } inputBindingBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< @@ -3235,7 +3721,7 @@ public flyteidl.core.ArtifactId.InputBindingDataOrBuilder getInputBindingOrBuild isClean()); value_ = null; } - valueCase_ = 3; + valueCase_ = 4; onChanged();; return inputBindingBuilder_; } @@ -4013,47 +4499,691 @@ public flyteidl.core.ArtifactId.Partitions getDefaultInstanceForType() { } - public interface ArtifactIDOrBuilder extends - // @@protoc_insertion_point(interface_extends:flyteidl.core.ArtifactID) + public interface TimePartitionOrBuilder extends + // @@protoc_insertion_point(interface_extends:flyteidl.core.TimePartition) com.google.protobuf.MessageOrBuilder { /** - * .flyteidl.core.ArtifactKey artifact_key = 1; + * .flyteidl.core.LabelValue value = 1; */ - boolean hasArtifactKey(); + boolean hasValue(); /** - * .flyteidl.core.ArtifactKey artifact_key = 1; + * .flyteidl.core.LabelValue value = 1; */ - flyteidl.core.ArtifactId.ArtifactKey getArtifactKey(); + flyteidl.core.ArtifactId.LabelValue getValue(); /** - * .flyteidl.core.ArtifactKey artifact_key = 1; + * .flyteidl.core.LabelValue value = 1; */ - flyteidl.core.ArtifactId.ArtifactKeyOrBuilder getArtifactKeyOrBuilder(); + flyteidl.core.ArtifactId.LabelValueOrBuilder getValueOrBuilder(); + } + /** + * Protobuf type {@code flyteidl.core.TimePartition} + */ + public static final class TimePartition extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:flyteidl.core.TimePartition) + TimePartitionOrBuilder { + private static final long serialVersionUID = 0L; + // Use TimePartition.newBuilder() to construct. + private TimePartition(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private TimePartition() { + } - /** - * string version = 2; - */ - java.lang.String getVersion(); - /** - * string version = 2; - */ - com.google.protobuf.ByteString - getVersionBytes(); + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private TimePartition( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + flyteidl.core.ArtifactId.LabelValue.Builder subBuilder = null; + if (value_ != null) { + subBuilder = value_.toBuilder(); + } + value_ = input.readMessage(flyteidl.core.ArtifactId.LabelValue.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(value_); + value_ = subBuilder.buildPartial(); + } - /** - * .flyteidl.core.Partitions partitions = 3; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.core.ArtifactId.internal_static_flyteidl_core_TimePartition_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.core.ArtifactId.internal_static_flyteidl_core_TimePartition_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.core.ArtifactId.TimePartition.class, flyteidl.core.ArtifactId.TimePartition.Builder.class); + } + + public static final int VALUE_FIELD_NUMBER = 1; + private flyteidl.core.ArtifactId.LabelValue value_; + /** + * .flyteidl.core.LabelValue value = 1; + */ + public boolean hasValue() { + return value_ != null; + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + public flyteidl.core.ArtifactId.LabelValue getValue() { + return value_ == null ? flyteidl.core.ArtifactId.LabelValue.getDefaultInstance() : value_; + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + public flyteidl.core.ArtifactId.LabelValueOrBuilder getValueOrBuilder() { + return getValue(); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (value_ != null) { + output.writeMessage(1, getValue()); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (value_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, getValue()); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof flyteidl.core.ArtifactId.TimePartition)) { + return super.equals(obj); + } + flyteidl.core.ArtifactId.TimePartition other = (flyteidl.core.ArtifactId.TimePartition) obj; + + if (hasValue() != other.hasValue()) return false; + if (hasValue()) { + if (!getValue() + .equals(other.getValue())) return false; + } + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasValue()) { + hash = (37 * hash) + VALUE_FIELD_NUMBER; + hash = (53 * hash) + getValue().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static flyteidl.core.ArtifactId.TimePartition parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.core.ArtifactId.TimePartition parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.core.ArtifactId.TimePartition parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.core.ArtifactId.TimePartition parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.core.ArtifactId.TimePartition parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static flyteidl.core.ArtifactId.TimePartition parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static flyteidl.core.ArtifactId.TimePartition parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.core.ArtifactId.TimePartition parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.core.ArtifactId.TimePartition parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static flyteidl.core.ArtifactId.TimePartition parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static flyteidl.core.ArtifactId.TimePartition parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static flyteidl.core.ArtifactId.TimePartition parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(flyteidl.core.ArtifactId.TimePartition prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + * Protobuf type {@code flyteidl.core.TimePartition} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:flyteidl.core.TimePartition) + flyteidl.core.ArtifactId.TimePartitionOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return flyteidl.core.ArtifactId.internal_static_flyteidl_core_TimePartition_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return flyteidl.core.ArtifactId.internal_static_flyteidl_core_TimePartition_fieldAccessorTable + .ensureFieldAccessorsInitialized( + flyteidl.core.ArtifactId.TimePartition.class, flyteidl.core.ArtifactId.TimePartition.Builder.class); + } + + // Construct using flyteidl.core.ArtifactId.TimePartition.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + if (valueBuilder_ == null) { + value_ = null; + } else { + value_ = null; + valueBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return flyteidl.core.ArtifactId.internal_static_flyteidl_core_TimePartition_descriptor; + } + + @java.lang.Override + public flyteidl.core.ArtifactId.TimePartition getDefaultInstanceForType() { + return flyteidl.core.ArtifactId.TimePartition.getDefaultInstance(); + } + + @java.lang.Override + public flyteidl.core.ArtifactId.TimePartition build() { + flyteidl.core.ArtifactId.TimePartition result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public flyteidl.core.ArtifactId.TimePartition buildPartial() { + flyteidl.core.ArtifactId.TimePartition result = new flyteidl.core.ArtifactId.TimePartition(this); + if (valueBuilder_ == null) { + result.value_ = value_; + } else { + result.value_ = valueBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof flyteidl.core.ArtifactId.TimePartition) { + return mergeFrom((flyteidl.core.ArtifactId.TimePartition)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(flyteidl.core.ArtifactId.TimePartition other) { + if (other == flyteidl.core.ArtifactId.TimePartition.getDefaultInstance()) return this; + if (other.hasValue()) { + mergeValue(other.getValue()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + flyteidl.core.ArtifactId.TimePartition parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (flyteidl.core.ArtifactId.TimePartition) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private flyteidl.core.ArtifactId.LabelValue value_; + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.ArtifactId.LabelValue, flyteidl.core.ArtifactId.LabelValue.Builder, flyteidl.core.ArtifactId.LabelValueOrBuilder> valueBuilder_; + /** + * .flyteidl.core.LabelValue value = 1; + */ + public boolean hasValue() { + return valueBuilder_ != null || value_ != null; + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + public flyteidl.core.ArtifactId.LabelValue getValue() { + if (valueBuilder_ == null) { + return value_ == null ? flyteidl.core.ArtifactId.LabelValue.getDefaultInstance() : value_; + } else { + return valueBuilder_.getMessage(); + } + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + public Builder setValue(flyteidl.core.ArtifactId.LabelValue value) { + if (valueBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + value_ = value; + onChanged(); + } else { + valueBuilder_.setMessage(value); + } + + return this; + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + public Builder setValue( + flyteidl.core.ArtifactId.LabelValue.Builder builderForValue) { + if (valueBuilder_ == null) { + value_ = builderForValue.build(); + onChanged(); + } else { + valueBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + public Builder mergeValue(flyteidl.core.ArtifactId.LabelValue value) { + if (valueBuilder_ == null) { + if (value_ != null) { + value_ = + flyteidl.core.ArtifactId.LabelValue.newBuilder(value_).mergeFrom(value).buildPartial(); + } else { + value_ = value; + } + onChanged(); + } else { + valueBuilder_.mergeFrom(value); + } + + return this; + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + public Builder clearValue() { + if (valueBuilder_ == null) { + value_ = null; + onChanged(); + } else { + value_ = null; + valueBuilder_ = null; + } + + return this; + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + public flyteidl.core.ArtifactId.LabelValue.Builder getValueBuilder() { + + onChanged(); + return getValueFieldBuilder().getBuilder(); + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + public flyteidl.core.ArtifactId.LabelValueOrBuilder getValueOrBuilder() { + if (valueBuilder_ != null) { + return valueBuilder_.getMessageOrBuilder(); + } else { + return value_ == null ? + flyteidl.core.ArtifactId.LabelValue.getDefaultInstance() : value_; + } + } + /** + * .flyteidl.core.LabelValue value = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.ArtifactId.LabelValue, flyteidl.core.ArtifactId.LabelValue.Builder, flyteidl.core.ArtifactId.LabelValueOrBuilder> + getValueFieldBuilder() { + if (valueBuilder_ == null) { + valueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.ArtifactId.LabelValue, flyteidl.core.ArtifactId.LabelValue.Builder, flyteidl.core.ArtifactId.LabelValueOrBuilder>( + getValue(), + getParentForChildren(), + isClean()); + value_ = null; + } + return valueBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:flyteidl.core.TimePartition) + } + + // @@protoc_insertion_point(class_scope:flyteidl.core.TimePartition) + private static final flyteidl.core.ArtifactId.TimePartition DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new flyteidl.core.ArtifactId.TimePartition(); + } + + public static flyteidl.core.ArtifactId.TimePartition getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public TimePartition parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new TimePartition(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public flyteidl.core.ArtifactId.TimePartition getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + public interface ArtifactIDOrBuilder extends + // @@protoc_insertion_point(interface_extends:flyteidl.core.ArtifactID) + com.google.protobuf.MessageOrBuilder { + + /** + * .flyteidl.core.ArtifactKey artifact_key = 1; + */ + boolean hasArtifactKey(); + /** + * .flyteidl.core.ArtifactKey artifact_key = 1; + */ + flyteidl.core.ArtifactId.ArtifactKey getArtifactKey(); + /** + * .flyteidl.core.ArtifactKey artifact_key = 1; + */ + flyteidl.core.ArtifactId.ArtifactKeyOrBuilder getArtifactKeyOrBuilder(); + + /** + * string version = 2; + */ + java.lang.String getVersion(); + /** + * string version = 2; + */ + com.google.protobuf.ByteString + getVersionBytes(); + + /** + *
+     * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+     * Different partitions naturally have different versions (execution ids).
+     * 
+ * + * .flyteidl.core.Partitions partitions = 3; + */ + boolean hasPartitions(); + /** + *
+     * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+     * Different partitions naturally have different versions (execution ids).
+     * 
+ * + * .flyteidl.core.Partitions partitions = 3; + */ + flyteidl.core.ArtifactId.Partitions getPartitions(); + /** + *
+     * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+     * Different partitions naturally have different versions (execution ids).
+     * 
+ * + * .flyteidl.core.Partitions partitions = 3; + */ + flyteidl.core.ArtifactId.PartitionsOrBuilder getPartitionsOrBuilder(); + + /** + *
+     * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+     * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; */ - boolean hasPartitions(); + boolean hasTimePartition(); /** - * .flyteidl.core.Partitions partitions = 3; + *
+     * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+     * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; */ - flyteidl.core.ArtifactId.Partitions getPartitions(); + flyteidl.core.ArtifactId.TimePartition getTimePartition(); /** - * .flyteidl.core.Partitions partitions = 3; + *
+     * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+     * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; */ - flyteidl.core.ArtifactId.PartitionsOrBuilder getPartitionsOrBuilder(); - - public flyteidl.core.ArtifactId.ArtifactID.DimensionsCase getDimensionsCase(); + flyteidl.core.ArtifactId.TimePartitionOrBuilder getTimePartitionOrBuilder(); } /** * Protobuf type {@code flyteidl.core.ArtifactID} @@ -4116,16 +5246,28 @@ private ArtifactID( } case 26: { flyteidl.core.ArtifactId.Partitions.Builder subBuilder = null; - if (dimensionsCase_ == 3) { - subBuilder = ((flyteidl.core.ArtifactId.Partitions) dimensions_).toBuilder(); + if (partitions_ != null) { + subBuilder = partitions_.toBuilder(); + } + partitions_ = input.readMessage(flyteidl.core.ArtifactId.Partitions.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(partitions_); + partitions_ = subBuilder.buildPartial(); + } + + break; + } + case 34: { + flyteidl.core.ArtifactId.TimePartition.Builder subBuilder = null; + if (timePartition_ != null) { + subBuilder = timePartition_.toBuilder(); } - dimensions_ = - input.readMessage(flyteidl.core.ArtifactId.Partitions.parser(), extensionRegistry); + timePartition_ = input.readMessage(flyteidl.core.ArtifactId.TimePartition.parser(), extensionRegistry); if (subBuilder != null) { - subBuilder.mergeFrom((flyteidl.core.ArtifactId.Partitions) dimensions_); - dimensions_ = subBuilder.buildPartial(); + subBuilder.mergeFrom(timePartition_); + timePartition_ = subBuilder.buildPartial(); } - dimensionsCase_ = 3; + break; } default: { @@ -4160,42 +5302,6 @@ private ArtifactID( flyteidl.core.ArtifactId.ArtifactID.class, flyteidl.core.ArtifactId.ArtifactID.Builder.class); } - private int dimensionsCase_ = 0; - private java.lang.Object dimensions_; - public enum DimensionsCase - implements com.google.protobuf.Internal.EnumLite { - PARTITIONS(3), - DIMENSIONS_NOT_SET(0); - private final int value; - private DimensionsCase(int value) { - this.value = value; - } - /** - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static DimensionsCase valueOf(int value) { - return forNumber(value); - } - - public static DimensionsCase forNumber(int value) { - switch (value) { - case 3: return PARTITIONS; - case 0: return DIMENSIONS_NOT_SET; - default: return null; - } - } - public int getNumber() { - return this.value; - } - }; - - public DimensionsCase - getDimensionsCase() { - return DimensionsCase.forNumber( - dimensionsCase_); - } - public static final int ARTIFACT_KEY_FIELD_NUMBER = 1; private flyteidl.core.ArtifactId.ArtifactKey artifactKey_; /** @@ -4252,29 +5358,72 @@ public java.lang.String getVersion() { } public static final int PARTITIONS_FIELD_NUMBER = 3; + private flyteidl.core.ArtifactId.Partitions partitions_; /** + *
+     * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+     * Different partitions naturally have different versions (execution ids).
+     * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public boolean hasPartitions() { - return dimensionsCase_ == 3; + return partitions_ != null; } /** + *
+     * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+     * Different partitions naturally have different versions (execution ids).
+     * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public flyteidl.core.ArtifactId.Partitions getPartitions() { - if (dimensionsCase_ == 3) { - return (flyteidl.core.ArtifactId.Partitions) dimensions_; - } - return flyteidl.core.ArtifactId.Partitions.getDefaultInstance(); + return partitions_ == null ? flyteidl.core.ArtifactId.Partitions.getDefaultInstance() : partitions_; } /** + *
+     * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+     * Different partitions naturally have different versions (execution ids).
+     * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public flyteidl.core.ArtifactId.PartitionsOrBuilder getPartitionsOrBuilder() { - if (dimensionsCase_ == 3) { - return (flyteidl.core.ArtifactId.Partitions) dimensions_; - } - return flyteidl.core.ArtifactId.Partitions.getDefaultInstance(); + return getPartitions(); + } + + public static final int TIME_PARTITION_FIELD_NUMBER = 4; + private flyteidl.core.ArtifactId.TimePartition timePartition_; + /** + *
+     * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+     * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public boolean hasTimePartition() { + return timePartition_ != null; + } + /** + *
+     * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+     * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public flyteidl.core.ArtifactId.TimePartition getTimePartition() { + return timePartition_ == null ? flyteidl.core.ArtifactId.TimePartition.getDefaultInstance() : timePartition_; + } + /** + *
+     * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+     * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public flyteidl.core.ArtifactId.TimePartitionOrBuilder getTimePartitionOrBuilder() { + return getTimePartition(); } private byte memoizedIsInitialized = -1; @@ -4297,8 +5446,11 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (!getVersionBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, version_); } - if (dimensionsCase_ == 3) { - output.writeMessage(3, (flyteidl.core.ArtifactId.Partitions) dimensions_); + if (partitions_ != null) { + output.writeMessage(3, getPartitions()); + } + if (timePartition_ != null) { + output.writeMessage(4, getTimePartition()); } unknownFields.writeTo(output); } @@ -4316,9 +5468,13 @@ public int getSerializedSize() { if (!getVersionBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, version_); } - if (dimensionsCase_ == 3) { + if (partitions_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, getPartitions()); + } + if (timePartition_ != null) { size += com.google.protobuf.CodedOutputStream - .computeMessageSize(3, (flyteidl.core.ArtifactId.Partitions) dimensions_); + .computeMessageSize(4, getTimePartition()); } size += unknownFields.getSerializedSize(); memoizedSize = size; @@ -4342,14 +5498,15 @@ public boolean equals(final java.lang.Object obj) { } if (!getVersion() .equals(other.getVersion())) return false; - if (!getDimensionsCase().equals(other.getDimensionsCase())) return false; - switch (dimensionsCase_) { - case 3: - if (!getPartitions() - .equals(other.getPartitions())) return false; - break; - case 0: - default: + if (hasPartitions() != other.hasPartitions()) return false; + if (hasPartitions()) { + if (!getPartitions() + .equals(other.getPartitions())) return false; + } + if (hasTimePartition() != other.hasTimePartition()) return false; + if (hasTimePartition()) { + if (!getTimePartition() + .equals(other.getTimePartition())) return false; } if (!unknownFields.equals(other.unknownFields)) return false; return true; @@ -4368,13 +5525,13 @@ public int hashCode() { } hash = (37 * hash) + VERSION_FIELD_NUMBER; hash = (53 * hash) + getVersion().hashCode(); - switch (dimensionsCase_) { - case 3: - hash = (37 * hash) + PARTITIONS_FIELD_NUMBER; - hash = (53 * hash) + getPartitions().hashCode(); - break; - case 0: - default: + if (hasPartitions()) { + hash = (37 * hash) + PARTITIONS_FIELD_NUMBER; + hash = (53 * hash) + getPartitions().hashCode(); + } + if (hasTimePartition()) { + hash = (37 * hash) + TIME_PARTITION_FIELD_NUMBER; + hash = (53 * hash) + getTimePartition().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; @@ -4517,8 +5674,18 @@ public Builder clear() { } version_ = ""; - dimensionsCase_ = 0; - dimensions_ = null; + if (partitionsBuilder_ == null) { + partitions_ = null; + } else { + partitions_ = null; + partitionsBuilder_ = null; + } + if (timePartitionBuilder_ == null) { + timePartition_ = null; + } else { + timePartition_ = null; + timePartitionBuilder_ = null; + } return this; } @@ -4551,14 +5718,16 @@ public flyteidl.core.ArtifactId.ArtifactID buildPartial() { result.artifactKey_ = artifactKeyBuilder_.build(); } result.version_ = version_; - if (dimensionsCase_ == 3) { - if (partitionsBuilder_ == null) { - result.dimensions_ = dimensions_; - } else { - result.dimensions_ = partitionsBuilder_.build(); - } + if (partitionsBuilder_ == null) { + result.partitions_ = partitions_; + } else { + result.partitions_ = partitionsBuilder_.build(); + } + if (timePartitionBuilder_ == null) { + result.timePartition_ = timePartition_; + } else { + result.timePartition_ = timePartitionBuilder_.build(); } - result.dimensionsCase_ = dimensionsCase_; onBuilt(); return result; } @@ -4614,14 +5783,11 @@ public Builder mergeFrom(flyteidl.core.ArtifactId.ArtifactID other) { version_ = other.version_; onChanged(); } - switch (other.getDimensionsCase()) { - case PARTITIONS: { - mergePartitions(other.getPartitions()); - break; - } - case DIMENSIONS_NOT_SET: { - break; - } + if (other.hasPartitions()) { + mergePartitions(other.getPartitions()); + } + if (other.hasTimePartition()) { + mergeTimePartition(other.getTimePartition()); } this.mergeUnknownFields(other.unknownFields); onChanged(); @@ -4651,21 +5817,6 @@ public Builder mergeFrom( } return this; } - private int dimensionsCase_ = 0; - private java.lang.Object dimensions_; - public DimensionsCase - getDimensionsCase() { - return DimensionsCase.forNumber( - dimensionsCase_); - } - - public Builder clearDimensions() { - dimensionsCase_ = 0; - dimensions_ = null; - onChanged(); - return this; - } - private flyteidl.core.ArtifactId.ArtifactKey artifactKey_; private com.google.protobuf.SingleFieldBuilderV3< @@ -4853,31 +6004,41 @@ public Builder setVersionBytes( return this; } + private flyteidl.core.ArtifactId.Partitions partitions_; private com.google.protobuf.SingleFieldBuilderV3< flyteidl.core.ArtifactId.Partitions, flyteidl.core.ArtifactId.Partitions.Builder, flyteidl.core.ArtifactId.PartitionsOrBuilder> partitionsBuilder_; /** + *
+       * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+       * Different partitions naturally have different versions (execution ids).
+       * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public boolean hasPartitions() { - return dimensionsCase_ == 3; + return partitionsBuilder_ != null || partitions_ != null; } /** + *
+       * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+       * Different partitions naturally have different versions (execution ids).
+       * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public flyteidl.core.ArtifactId.Partitions getPartitions() { if (partitionsBuilder_ == null) { - if (dimensionsCase_ == 3) { - return (flyteidl.core.ArtifactId.Partitions) dimensions_; - } - return flyteidl.core.ArtifactId.Partitions.getDefaultInstance(); + return partitions_ == null ? flyteidl.core.ArtifactId.Partitions.getDefaultInstance() : partitions_; } else { - if (dimensionsCase_ == 3) { - return partitionsBuilder_.getMessage(); - } - return flyteidl.core.ArtifactId.Partitions.getDefaultInstance(); + return partitionsBuilder_.getMessage(); } } /** + *
+       * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+       * Different partitions naturally have different versions (execution ids).
+       * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public Builder setPartitions(flyteidl.core.ArtifactId.Partitions value) { @@ -4885,109 +6046,278 @@ public Builder setPartitions(flyteidl.core.ArtifactId.Partitions value) { if (value == null) { throw new NullPointerException(); } - dimensions_ = value; + partitions_ = value; onChanged(); } else { partitionsBuilder_.setMessage(value); } - dimensionsCase_ = 3; + return this; } /** + *
+       * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+       * Different partitions naturally have different versions (execution ids).
+       * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public Builder setPartitions( flyteidl.core.ArtifactId.Partitions.Builder builderForValue) { if (partitionsBuilder_ == null) { - dimensions_ = builderForValue.build(); + partitions_ = builderForValue.build(); onChanged(); } else { partitionsBuilder_.setMessage(builderForValue.build()); } - dimensionsCase_ = 3; + return this; } /** + *
+       * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+       * Different partitions naturally have different versions (execution ids).
+       * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public Builder mergePartitions(flyteidl.core.ArtifactId.Partitions value) { if (partitionsBuilder_ == null) { - if (dimensionsCase_ == 3 && - dimensions_ != flyteidl.core.ArtifactId.Partitions.getDefaultInstance()) { - dimensions_ = flyteidl.core.ArtifactId.Partitions.newBuilder((flyteidl.core.ArtifactId.Partitions) dimensions_) - .mergeFrom(value).buildPartial(); + if (partitions_ != null) { + partitions_ = + flyteidl.core.ArtifactId.Partitions.newBuilder(partitions_).mergeFrom(value).buildPartial(); } else { - dimensions_ = value; + partitions_ = value; } onChanged(); } else { - if (dimensionsCase_ == 3) { - partitionsBuilder_.mergeFrom(value); - } - partitionsBuilder_.setMessage(value); + partitionsBuilder_.mergeFrom(value); } - dimensionsCase_ = 3; + return this; } /** + *
+       * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+       * Different partitions naturally have different versions (execution ids).
+       * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public Builder clearPartitions() { if (partitionsBuilder_ == null) { - if (dimensionsCase_ == 3) { - dimensionsCase_ = 0; - dimensions_ = null; - onChanged(); - } + partitions_ = null; + onChanged(); } else { - if (dimensionsCase_ == 3) { - dimensionsCase_ = 0; - dimensions_ = null; - } - partitionsBuilder_.clear(); + partitions_ = null; + partitionsBuilder_ = null; } + return this; } /** + *
+       * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+       * Different partitions naturally have different versions (execution ids).
+       * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public flyteidl.core.ArtifactId.Partitions.Builder getPartitionsBuilder() { + + onChanged(); return getPartitionsFieldBuilder().getBuilder(); } /** + *
+       * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+       * Different partitions naturally have different versions (execution ids).
+       * 
+ * * .flyteidl.core.Partitions partitions = 3; */ public flyteidl.core.ArtifactId.PartitionsOrBuilder getPartitionsOrBuilder() { - if ((dimensionsCase_ == 3) && (partitionsBuilder_ != null)) { + if (partitionsBuilder_ != null) { return partitionsBuilder_.getMessageOrBuilder(); } else { - if (dimensionsCase_ == 3) { - return (flyteidl.core.ArtifactId.Partitions) dimensions_; - } - return flyteidl.core.ArtifactId.Partitions.getDefaultInstance(); + return partitions_ == null ? + flyteidl.core.ArtifactId.Partitions.getDefaultInstance() : partitions_; } } /** + *
+       * Think of a partition as a tag on an Artifact, except it's a key-value pair.
+       * Different partitions naturally have different versions (execution ids).
+       * 
+ * * .flyteidl.core.Partitions partitions = 3; */ private com.google.protobuf.SingleFieldBuilderV3< flyteidl.core.ArtifactId.Partitions, flyteidl.core.ArtifactId.Partitions.Builder, flyteidl.core.ArtifactId.PartitionsOrBuilder> getPartitionsFieldBuilder() { if (partitionsBuilder_ == null) { - if (!(dimensionsCase_ == 3)) { - dimensions_ = flyteidl.core.ArtifactId.Partitions.getDefaultInstance(); - } partitionsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< flyteidl.core.ArtifactId.Partitions, flyteidl.core.ArtifactId.Partitions.Builder, flyteidl.core.ArtifactId.PartitionsOrBuilder>( - (flyteidl.core.ArtifactId.Partitions) dimensions_, + getPartitions(), getParentForChildren(), isClean()); - dimensions_ = null; + partitions_ = null; } - dimensionsCase_ = 3; - onChanged();; return partitionsBuilder_; } + + private flyteidl.core.ArtifactId.TimePartition timePartition_; + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.ArtifactId.TimePartition, flyteidl.core.ArtifactId.TimePartition.Builder, flyteidl.core.ArtifactId.TimePartitionOrBuilder> timePartitionBuilder_; + /** + *
+       * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+       * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public boolean hasTimePartition() { + return timePartitionBuilder_ != null || timePartition_ != null; + } + /** + *
+       * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+       * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public flyteidl.core.ArtifactId.TimePartition getTimePartition() { + if (timePartitionBuilder_ == null) { + return timePartition_ == null ? flyteidl.core.ArtifactId.TimePartition.getDefaultInstance() : timePartition_; + } else { + return timePartitionBuilder_.getMessage(); + } + } + /** + *
+       * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+       * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public Builder setTimePartition(flyteidl.core.ArtifactId.TimePartition value) { + if (timePartitionBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + timePartition_ = value; + onChanged(); + } else { + timePartitionBuilder_.setMessage(value); + } + + return this; + } + /** + *
+       * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+       * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public Builder setTimePartition( + flyteidl.core.ArtifactId.TimePartition.Builder builderForValue) { + if (timePartitionBuilder_ == null) { + timePartition_ = builderForValue.build(); + onChanged(); + } else { + timePartitionBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+       * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+       * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public Builder mergeTimePartition(flyteidl.core.ArtifactId.TimePartition value) { + if (timePartitionBuilder_ == null) { + if (timePartition_ != null) { + timePartition_ = + flyteidl.core.ArtifactId.TimePartition.newBuilder(timePartition_).mergeFrom(value).buildPartial(); + } else { + timePartition_ = value; + } + onChanged(); + } else { + timePartitionBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+       * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+       * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public Builder clearTimePartition() { + if (timePartitionBuilder_ == null) { + timePartition_ = null; + onChanged(); + } else { + timePartition_ = null; + timePartitionBuilder_ = null; + } + + return this; + } + /** + *
+       * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+       * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public flyteidl.core.ArtifactId.TimePartition.Builder getTimePartitionBuilder() { + + onChanged(); + return getTimePartitionFieldBuilder().getBuilder(); + } + /** + *
+       * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+       * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + public flyteidl.core.ArtifactId.TimePartitionOrBuilder getTimePartitionOrBuilder() { + if (timePartitionBuilder_ != null) { + return timePartitionBuilder_.getMessageOrBuilder(); + } else { + return timePartition_ == null ? + flyteidl.core.ArtifactId.TimePartition.getDefaultInstance() : timePartition_; + } + } + /** + *
+       * There is no such thing as an empty time partition - if it's not set, then there is no time partition.
+       * 
+ * + * .flyteidl.core.TimePartition time_partition = 4; + */ + private com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.ArtifactId.TimePartition, flyteidl.core.ArtifactId.TimePartition.Builder, flyteidl.core.ArtifactId.TimePartitionOrBuilder> + getTimePartitionFieldBuilder() { + if (timePartitionBuilder_ == null) { + timePartitionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + flyteidl.core.ArtifactId.TimePartition, flyteidl.core.ArtifactId.TimePartition.Builder, flyteidl.core.ArtifactId.TimePartitionOrBuilder>( + getTimePartition(), + getParentForChildren(), + isClean()); + timePartition_ = null; + } + return timePartitionBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -8435,6 +9765,11 @@ public flyteidl.core.ArtifactId.Trigger getDefaultInstanceForType() { private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_flyteidl_core_Partitions_ValueEntry_fieldAccessorTable; + private static final com.google.protobuf.Descriptors.Descriptor + internal_static_flyteidl_core_TimePartition_descriptor; + private static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_flyteidl_core_TimePartition_fieldAccessorTable; private static final com.google.protobuf.Descriptors.Descriptor internal_static_flyteidl_core_ArtifactID_descriptor; private static final @@ -8465,35 +9800,41 @@ public flyteidl.core.ArtifactId.Trigger getDefaultInstanceForType() { static { java.lang.String[] descriptorData = { "\n\037flyteidl/core/artifact_id.proto\022\rflyte" + - "idl.core\032\036flyteidl/core/identifier.proto" + - "\"<\n\013ArtifactKey\022\017\n\007project\030\001 \001(\t\022\016\n\006doma" + - "in\030\002 \001(\t\022\014\n\004name\030\003 \001(\t\"N\n\023ArtifactBindin" + - "gData\022\r\n\005index\030\001 \001(\r\022\025\n\rpartition_key\030\002 " + - "\001(\t\022\021\n\ttransform\030\003 \001(\t\"\037\n\020InputBindingDa" + - "ta\022\013\n\003var\030\001 \001(\t\"\250\001\n\nLabelValue\022\026\n\014static" + - "_value\030\001 \001(\tH\000\022?\n\021triggered_binding\030\002 \001(" + - "\0132\".flyteidl.core.ArtifactBindingDataH\000\022" + - "8\n\rinput_binding\030\003 \001(\0132\037.flyteidl.core.I" + - "nputBindingDataH\000B\007\n\005value\"\212\001\n\nPartition" + - "s\0223\n\005value\030\001 \003(\0132$.flyteidl.core.Partiti" + - "ons.ValueEntry\032G\n\nValueEntry\022\013\n\003key\030\001 \001(" + - "\t\022(\n\005value\030\002 \001(\0132\031.flyteidl.core.LabelVa" + - "lue:\0028\001\"\216\001\n\nArtifactID\0220\n\014artifact_key\030\001" + - " \001(\0132\032.flyteidl.core.ArtifactKey\022\017\n\007vers" + - "ion\030\002 \001(\t\022/\n\npartitions\030\003 \001(\0132\031.flyteidl" + - ".core.PartitionsH\000B\014\n\ndimensions\"i\n\013Arti" + - "factTag\0220\n\014artifact_key\030\001 \001(\0132\032.flyteidl" + - ".core.ArtifactKey\022(\n\005value\030\002 \001(\0132\031.flyte" + - "idl.core.LabelValue\"\311\001\n\rArtifactQuery\0220\n" + - "\013artifact_id\030\001 \001(\0132\031.flyteidl.core.Artif" + - "actIDH\000\0222\n\014artifact_tag\030\002 \001(\0132\032.flyteidl" + - ".core.ArtifactTagH\000\022\r\n\003uri\030\003 \001(\tH\000\0225\n\007bi" + - "nding\030\004 \001(\0132\".flyteidl.core.ArtifactBind" + - "ingDataH\000B\014\n\nidentifier\"e\n\007Trigger\022-\n\ntr" + - "igger_id\030\001 \001(\0132\031.flyteidl.core.Identifie" + - "r\022+\n\010triggers\030\002 \003(\0132\031.flyteidl.core.Arti" + - "factIDB>> 3) { + case 1: + message.value = $root.flyteidl.core.LabelValue.decode(reader, reader.uint32()); + break; + default: + reader.skipType(tag & 7); + break; + } + } + return message; + }; + + /** + * Verifies a TimePartition message. + * @function verify + * @memberof flyteidl.core.TimePartition + * @static + * @param {Object.} message Plain object to verify + * @returns {string|null} `null` if valid, otherwise the reason why it is not + */ + TimePartition.verify = function verify(message) { + if (typeof message !== "object" || message === null) + return "object expected"; + if (message.value != null && message.hasOwnProperty("value")) { + var error = $root.flyteidl.core.LabelValue.verify(message.value); + if (error) + return "value." + error; + } + return null; + }; + + return TimePartition; + })(); + core.ArtifactID = (function() { /** @@ -742,6 +916,7 @@ * @property {flyteidl.core.IArtifactKey|null} [artifactKey] ArtifactID artifactKey * @property {string|null} [version] ArtifactID version * @property {flyteidl.core.IPartitions|null} [partitions] ArtifactID partitions + * @property {flyteidl.core.ITimePartition|null} [timePartition] ArtifactID timePartition */ /** @@ -783,19 +958,13 @@ */ ArtifactID.prototype.partitions = null; - // OneOf field names bound to virtual getters and setters - var $oneOfFields; - /** - * ArtifactID dimensions. - * @member {"partitions"|undefined} dimensions + * ArtifactID timePartition. + * @member {flyteidl.core.ITimePartition|null|undefined} timePartition * @memberof flyteidl.core.ArtifactID * @instance */ - Object.defineProperty(ArtifactID.prototype, "dimensions", { - get: $util.oneOfGetter($oneOfFields = ["partitions"]), - set: $util.oneOfSetter($oneOfFields) - }); + ArtifactID.prototype.timePartition = null; /** * Creates a new ArtifactID instance using the specified properties. @@ -827,6 +996,8 @@ writer.uint32(/* id 2, wireType 2 =*/18).string(message.version); if (message.partitions != null && message.hasOwnProperty("partitions")) $root.flyteidl.core.Partitions.encode(message.partitions, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim(); + if (message.timePartition != null && message.hasOwnProperty("timePartition")) + $root.flyteidl.core.TimePartition.encode(message.timePartition, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); return writer; }; @@ -857,6 +1028,9 @@ case 3: message.partitions = $root.flyteidl.core.Partitions.decode(reader, reader.uint32()); break; + case 4: + message.timePartition = $root.flyteidl.core.TimePartition.decode(reader, reader.uint32()); + break; default: reader.skipType(tag & 7); break; @@ -876,7 +1050,6 @@ ArtifactID.verify = function verify(message) { if (typeof message !== "object" || message === null) return "object expected"; - var properties = {}; if (message.artifactKey != null && message.hasOwnProperty("artifactKey")) { var error = $root.flyteidl.core.ArtifactKey.verify(message.artifactKey); if (error) @@ -886,12 +1059,14 @@ if (!$util.isString(message.version)) return "version: string expected"; if (message.partitions != null && message.hasOwnProperty("partitions")) { - properties.dimensions = 1; - { - var error = $root.flyteidl.core.Partitions.verify(message.partitions); - if (error) - return "partitions." + error; - } + var error = $root.flyteidl.core.Partitions.verify(message.partitions); + if (error) + return "partitions." + error; + } + if (message.timePartition != null && message.hasOwnProperty("timePartition")) { + var error = $root.flyteidl.core.TimePartition.verify(message.timePartition); + if (error) + return "timePartition." + error; } return null; }; diff --git a/flyteidl/gen/pb_python/flyteidl/artifact/artifacts_pb2.py b/flyteidl/gen/pb_python/flyteidl/artifact/artifacts_pb2.py index 983ab99c0b..c253948ddb 100644 --- a/flyteidl/gen/pb_python/flyteidl/artifact/artifacts_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/artifact/artifacts_pb2.py @@ -13,6 +13,7 @@ from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2 from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2 +from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2 from flyteidl.admin import launch_plan_pb2 as flyteidl_dot_admin_dot_launch__plan__pb2 from flyteidl.core import literals_pb2 as flyteidl_dot_core_dot_literals__pb2 from flyteidl.core import types_pb2 as flyteidl_dot_core_dot_types__pb2 @@ -22,7 +23,7 @@ from flyteidl.event import cloudevents_pb2 as flyteidl_dot_event_dot_cloudevents__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!flyteidl/artifact/artifacts.proto\x12\x11\x66lyteidl.artifact\x1a\x19google/protobuf/any.proto\x1a\x1cgoogle/api/annotations.proto\x1a flyteidl/admin/launch_plan.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1f\x66lyteidl/core/artifact_id.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a flyteidl/event/cloudevents.proto\"\xca\x01\n\x08\x41rtifact\x12:\n\x0b\x61rtifact_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.ArtifactIDR\nartifactId\x12\x33\n\x04spec\x18\x02 \x01(\x0b\x32\x1f.flyteidl.artifact.ArtifactSpecR\x04spec\x12\x12\n\x04tags\x18\x03 \x03(\tR\x04tags\x12\x39\n\x06source\x18\x04 \x01(\x0b\x32!.flyteidl.artifact.ArtifactSourceR\x06source\"\x8b\x03\n\x15\x43reateArtifactRequest\x12=\n\x0c\x61rtifact_key\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactKeyR\x0b\x61rtifactKey\x12\x18\n\x07version\x18\x03 \x01(\tR\x07version\x12\x33\n\x04spec\x18\x02 \x01(\x0b\x32\x1f.flyteidl.artifact.ArtifactSpecR\x04spec\x12X\n\npartitions\x18\x04 \x03(\x0b\x32\x38.flyteidl.artifact.CreateArtifactRequest.PartitionsEntryR\npartitions\x12\x10\n\x03tag\x18\x05 \x01(\tR\x03tag\x12\x39\n\x06source\x18\x06 \x01(\x0b\x32!.flyteidl.artifact.ArtifactSourceR\x06source\x1a=\n\x0fPartitionsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\xfb\x01\n\x0e\x41rtifactSource\x12Y\n\x12workflow_execution\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x11workflowExecution\x12\x17\n\x07node_id\x18\x02 \x01(\tR\x06nodeId\x12\x32\n\x07task_id\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12#\n\rretry_attempt\x18\x04 \x01(\rR\x0cretryAttempt\x12\x1c\n\tprincipal\x18\x05 \x01(\tR\tprincipal\"\xf9\x01\n\x0c\x41rtifactSpec\x12,\n\x05value\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12+\n\x11short_description\x18\x03 \x01(\tR\x10shortDescription\x12\x39\n\ruser_metadata\x18\x04 \x01(\x0b\x32\x14.google.protobuf.AnyR\x0cuserMetadata\x12#\n\rmetadata_type\x18\x05 \x01(\tR\x0cmetadataType\"Q\n\x16\x43reateArtifactResponse\x12\x37\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x1b.flyteidl.artifact.ArtifactR\x08\x61rtifact\"b\n\x12GetArtifactRequest\x12\x32\n\x05query\x18\x01 \x01(\x0b\x32\x1c.flyteidl.core.ArtifactQueryR\x05query\x12\x18\n\x07\x64\x65tails\x18\x02 \x01(\x08R\x07\x64\x65tails\"N\n\x13GetArtifactResponse\x12\x37\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x1b.flyteidl.artifact.ArtifactR\x08\x61rtifact\"`\n\rSearchOptions\x12+\n\x11strict_partitions\x18\x01 \x01(\x08R\x10strictPartitions\x12\"\n\rlatest_by_key\x18\x02 \x01(\x08R\x0blatestByKey\"\xb2\x02\n\x16SearchArtifactsRequest\x12=\n\x0c\x61rtifact_key\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactKeyR\x0b\x61rtifactKey\x12\x39\n\npartitions\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.PartitionsR\npartitions\x12\x1c\n\tprincipal\x18\x03 \x01(\tR\tprincipal\x12\x18\n\x07version\x18\x04 \x01(\tR\x07version\x12:\n\x07options\x18\x05 \x01(\x0b\x32 .flyteidl.artifact.SearchOptionsR\x07options\x12\x14\n\x05token\x18\x06 \x01(\tR\x05token\x12\x14\n\x05limit\x18\x07 \x01(\x05R\x05limit\"j\n\x17SearchArtifactsResponse\x12\x39\n\tartifacts\x18\x01 \x03(\x0b\x32\x1b.flyteidl.artifact.ArtifactR\tartifacts\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\xdc\x01\n\x19\x46indByWorkflowExecRequest\x12\x43\n\x07\x65xec_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x06\x65xecId\x12T\n\tdirection\x18\x02 \x01(\x0e\x32\x36.flyteidl.artifact.FindByWorkflowExecRequest.DirectionR\tdirection\"$\n\tDirection\x12\n\n\x06INPUTS\x10\x00\x12\x0b\n\x07OUTPUTS\x10\x01\"\x7f\n\rAddTagRequest\x12:\n\x0b\x61rtifact_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.ArtifactIDR\nartifactId\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x12\x1c\n\toverwrite\x18\x03 \x01(\x08R\toverwrite\"\x10\n\x0e\x41\x64\x64TagResponse\"b\n\x14\x43reateTriggerRequest\x12J\n\x13trigger_launch_plan\x18\x01 \x01(\x0b\x32\x1a.flyteidl.admin.LaunchPlanR\x11triggerLaunchPlan\"\x17\n\x15\x43reateTriggerResponse\"T\n\x18\x44\x65\x61\x63tivateTriggerRequest\x12\x38\n\ntrigger_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\ttriggerId\"\x1b\n\x19\x44\x65\x61\x63tivateTriggerResponse\"\x80\x01\n\x10\x41rtifactProducer\x12\x36\n\tentity_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x08\x65ntityId\x12\x34\n\x07outputs\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.VariableMapR\x07outputs\"\\\n\x17RegisterProducerRequest\x12\x41\n\tproducers\x18\x01 \x03(\x0b\x32#.flyteidl.artifact.ArtifactProducerR\tproducers\"\x7f\n\x10\x41rtifactConsumer\x12\x36\n\tentity_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x08\x65ntityId\x12\x33\n\x06inputs\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMapR\x06inputs\"\\\n\x17RegisterConsumerRequest\x12\x41\n\tconsumers\x18\x01 \x03(\x0b\x32#.flyteidl.artifact.ArtifactConsumerR\tconsumers\"\x12\n\x10RegisterResponse\"\x9a\x01\n\x16\x45xecutionInputsRequest\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\x12\x31\n\x06inputs\x18\x02 \x03(\x0b\x32\x19.flyteidl.core.ArtifactIDR\x06inputs\"\x19\n\x17\x45xecutionInputsResponse\"N\n\x10ListUsageRequest\x12:\n\x0b\x61rtifact_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.ArtifactIDR\nartifactId\"_\n\x11ListUsageResponse\x12J\n\nexecutions\x18\x01 \x03(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\nexecutions2\xfb\x0b\n\x10\x41rtifactRegistry\x12g\n\x0e\x43reateArtifact\x12(.flyteidl.artifact.CreateArtifactRequest\x1a).flyteidl.artifact.CreateArtifactResponse\"\x00\x12\x84\x01\n\x0bGetArtifact\x12%.flyteidl.artifact.GetArtifactRequest\x1a&.flyteidl.artifact.GetArtifactResponse\"&\x82\xd3\xe4\x93\x02 :\x01*\"\x1b/artifacts/api/v1/artifacts\x12\x8d\x01\n\x0fSearchArtifacts\x12).flyteidl.artifact.SearchArtifactsRequest\x1a*.flyteidl.artifact.SearchArtifactsResponse\"#\x82\xd3\xe4\x93\x02\x1d:\x01*\"\x18/artifacts/api/v1/search\x12\x64\n\rCreateTrigger\x12\'.flyteidl.artifact.CreateTriggerRequest\x1a(.flyteidl.artifact.CreateTriggerResponse\"\x00\x12\x9f\x01\n\x11\x44\x65\x61\x63tivateTrigger\x12+.flyteidl.artifact.DeactivateTriggerRequest\x1a,.flyteidl.artifact.DeactivateTriggerResponse\"/\x82\xd3\xe4\x93\x02):\x01*2$/artifacts/api/v1/trigger/deactivate\x12O\n\x06\x41\x64\x64Tag\x12 .flyteidl.artifact.AddTagRequest\x1a!.flyteidl.artifact.AddTagResponse\"\x00\x12\x65\n\x10RegisterProducer\x12*.flyteidl.artifact.RegisterProducerRequest\x1a#.flyteidl.artifact.RegisterResponse\"\x00\x12\x65\n\x10RegisterConsumer\x12*.flyteidl.artifact.RegisterConsumerRequest\x1a#.flyteidl.artifact.RegisterResponse\"\x00\x12m\n\x12SetExecutionInputs\x12).flyteidl.artifact.ExecutionInputsRequest\x1a*.flyteidl.artifact.ExecutionInputsResponse\"\x00\x12\xd8\x01\n\x12\x46indByWorkflowExec\x12,.flyteidl.artifact.FindByWorkflowExecRequest\x1a*.flyteidl.artifact.SearchArtifactsResponse\"h\x82\xd3\xe4\x93\x02\x62\x12`/artifacts/api/v1/search/execution/{exec_id.project}/{exec_id.domain}/{exec_id.name}/{direction}\x12\xf5\x01\n\tListUsage\x12#.flyteidl.artifact.ListUsageRequest\x1a$.flyteidl.artifact.ListUsageResponse\"\x9c\x01\x82\xd3\xe4\x93\x02\x95\x01\x12\x92\x01/artifacts/api/v1/usage/{artifact_id.artifact_key.project}/{artifact_id.artifact_key.domain}/{artifact_id.artifact_key.name}/{artifact_id.version}B\xcc\x01\n\x15\x63om.flyteidl.artifactB\x0e\x41rtifactsProtoP\x01Z>github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/artifact\xa2\x02\x03\x46\x41X\xaa\x02\x11\x46lyteidl.Artifact\xca\x02\x11\x46lyteidl\\Artifact\xe2\x02\x1d\x46lyteidl\\Artifact\\GPBMetadata\xea\x02\x12\x46lyteidl::Artifactb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!flyteidl/artifact/artifacts.proto\x12\x11\x66lyteidl.artifact\x1a\x19google/protobuf/any.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a flyteidl/admin/launch_plan.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1f\x66lyteidl/core/artifact_id.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a flyteidl/event/cloudevents.proto\"\xca\x01\n\x08\x41rtifact\x12:\n\x0b\x61rtifact_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.ArtifactIDR\nartifactId\x12\x33\n\x04spec\x18\x02 \x01(\x0b\x32\x1f.flyteidl.artifact.ArtifactSpecR\x04spec\x12\x12\n\x04tags\x18\x03 \x03(\tR\x04tags\x12\x39\n\x06source\x18\x04 \x01(\x0b\x32!.flyteidl.artifact.ArtifactSourceR\x06source\"\xc7\x03\n\x15\x43reateArtifactRequest\x12=\n\x0c\x61rtifact_key\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactKeyR\x0b\x61rtifactKey\x12\x18\n\x07version\x18\x03 \x01(\tR\x07version\x12\x33\n\x04spec\x18\x02 \x01(\x0b\x32\x1f.flyteidl.artifact.ArtifactSpecR\x04spec\x12X\n\npartitions\x18\x04 \x03(\x0b\x32\x38.flyteidl.artifact.CreateArtifactRequest.PartitionsEntryR\npartitions\x12L\n\x14time_partition_value\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x12timePartitionValue\x12\x39\n\x06source\x18\x06 \x01(\x0b\x32!.flyteidl.artifact.ArtifactSourceR\x06source\x1a=\n\x0fPartitionsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\xfb\x01\n\x0e\x41rtifactSource\x12Y\n\x12workflow_execution\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x11workflowExecution\x12\x17\n\x07node_id\x18\x02 \x01(\tR\x06nodeId\x12\x32\n\x07task_id\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12#\n\rretry_attempt\x18\x04 \x01(\rR\x0cretryAttempt\x12\x1c\n\tprincipal\x18\x05 \x01(\tR\tprincipal\"\xd5\x02\n\x0c\x41rtifactSpec\x12,\n\x05value\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12+\n\x11short_description\x18\x03 \x01(\tR\x10shortDescription\x12\x39\n\ruser_metadata\x18\x04 \x01(\x0b\x32\x14.google.protobuf.AnyR\x0cuserMetadata\x12#\n\rmetadata_type\x18\x05 \x01(\tR\x0cmetadataType\x12\x39\n\ncreated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x1f\n\x0b\x66ile_format\x18\x07 \x01(\tR\nfileFormat\"Q\n\x16\x43reateArtifactResponse\x12\x37\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x1b.flyteidl.artifact.ArtifactR\x08\x61rtifact\"b\n\x12GetArtifactRequest\x12\x32\n\x05query\x18\x01 \x01(\x0b\x32\x1c.flyteidl.core.ArtifactQueryR\x05query\x12\x18\n\x07\x64\x65tails\x18\x02 \x01(\x08R\x07\x64\x65tails\"N\n\x13GetArtifactResponse\x12\x37\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x1b.flyteidl.artifact.ArtifactR\x08\x61rtifact\"`\n\rSearchOptions\x12+\n\x11strict_partitions\x18\x01 \x01(\x08R\x10strictPartitions\x12\"\n\rlatest_by_key\x18\x02 \x01(\x08R\x0blatestByKey\"\x80\x03\n\x16SearchArtifactsRequest\x12=\n\x0c\x61rtifact_key\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactKeyR\x0b\x61rtifactKey\x12\x39\n\npartitions\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.PartitionsR\npartitions\x12L\n\x14time_partition_value\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x12timePartitionValue\x12\x1c\n\tprincipal\x18\x04 \x01(\tR\tprincipal\x12\x18\n\x07version\x18\x05 \x01(\tR\x07version\x12:\n\x07options\x18\x06 \x01(\x0b\x32 .flyteidl.artifact.SearchOptionsR\x07options\x12\x14\n\x05token\x18\x07 \x01(\tR\x05token\x12\x14\n\x05limit\x18\x08 \x01(\x05R\x05limit\"j\n\x17SearchArtifactsResponse\x12\x39\n\tartifacts\x18\x01 \x03(\x0b\x32\x1b.flyteidl.artifact.ArtifactR\tartifacts\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\xdc\x01\n\x19\x46indByWorkflowExecRequest\x12\x43\n\x07\x65xec_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x06\x65xecId\x12T\n\tdirection\x18\x02 \x01(\x0e\x32\x36.flyteidl.artifact.FindByWorkflowExecRequest.DirectionR\tdirection\"$\n\tDirection\x12\n\n\x06INPUTS\x10\x00\x12\x0b\n\x07OUTPUTS\x10\x01\"\x7f\n\rAddTagRequest\x12:\n\x0b\x61rtifact_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.ArtifactIDR\nartifactId\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x12\x1c\n\toverwrite\x18\x03 \x01(\x08R\toverwrite\"\x10\n\x0e\x41\x64\x64TagResponse\"b\n\x14\x43reateTriggerRequest\x12J\n\x13trigger_launch_plan\x18\x01 \x01(\x0b\x32\x1a.flyteidl.admin.LaunchPlanR\x11triggerLaunchPlan\"\x17\n\x15\x43reateTriggerResponse\"T\n\x18\x44\x65\x61\x63tivateTriggerRequest\x12\x38\n\ntrigger_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\ttriggerId\"\x1b\n\x19\x44\x65\x61\x63tivateTriggerResponse\"\x80\x01\n\x10\x41rtifactProducer\x12\x36\n\tentity_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x08\x65ntityId\x12\x34\n\x07outputs\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.VariableMapR\x07outputs\"\\\n\x17RegisterProducerRequest\x12\x41\n\tproducers\x18\x01 \x03(\x0b\x32#.flyteidl.artifact.ArtifactProducerR\tproducers\"\x7f\n\x10\x41rtifactConsumer\x12\x36\n\tentity_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x08\x65ntityId\x12\x33\n\x06inputs\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMapR\x06inputs\"\\\n\x17RegisterConsumerRequest\x12\x41\n\tconsumers\x18\x01 \x03(\x0b\x32#.flyteidl.artifact.ArtifactConsumerR\tconsumers\"\x12\n\x10RegisterResponse\"\x9a\x01\n\x16\x45xecutionInputsRequest\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\x12\x31\n\x06inputs\x18\x02 \x03(\x0b\x32\x19.flyteidl.core.ArtifactIDR\x06inputs\"\x19\n\x17\x45xecutionInputsResponse\"N\n\x10ListUsageRequest\x12:\n\x0b\x61rtifact_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.ArtifactIDR\nartifactId\"_\n\x11ListUsageResponse\x12J\n\nexecutions\x18\x01 \x03(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\nexecutions2\xfb\x0b\n\x10\x41rtifactRegistry\x12g\n\x0e\x43reateArtifact\x12(.flyteidl.artifact.CreateArtifactRequest\x1a).flyteidl.artifact.CreateArtifactResponse\"\x00\x12\x84\x01\n\x0bGetArtifact\x12%.flyteidl.artifact.GetArtifactRequest\x1a&.flyteidl.artifact.GetArtifactResponse\"&\x82\xd3\xe4\x93\x02 :\x01*\"\x1b/artifacts/api/v1/artifacts\x12\x8d\x01\n\x0fSearchArtifacts\x12).flyteidl.artifact.SearchArtifactsRequest\x1a*.flyteidl.artifact.SearchArtifactsResponse\"#\x82\xd3\xe4\x93\x02\x1d:\x01*\"\x18/artifacts/api/v1/search\x12\x64\n\rCreateTrigger\x12\'.flyteidl.artifact.CreateTriggerRequest\x1a(.flyteidl.artifact.CreateTriggerResponse\"\x00\x12\x9f\x01\n\x11\x44\x65\x61\x63tivateTrigger\x12+.flyteidl.artifact.DeactivateTriggerRequest\x1a,.flyteidl.artifact.DeactivateTriggerResponse\"/\x82\xd3\xe4\x93\x02):\x01*2$/artifacts/api/v1/trigger/deactivate\x12O\n\x06\x41\x64\x64Tag\x12 .flyteidl.artifact.AddTagRequest\x1a!.flyteidl.artifact.AddTagResponse\"\x00\x12\x65\n\x10RegisterProducer\x12*.flyteidl.artifact.RegisterProducerRequest\x1a#.flyteidl.artifact.RegisterResponse\"\x00\x12\x65\n\x10RegisterConsumer\x12*.flyteidl.artifact.RegisterConsumerRequest\x1a#.flyteidl.artifact.RegisterResponse\"\x00\x12m\n\x12SetExecutionInputs\x12).flyteidl.artifact.ExecutionInputsRequest\x1a*.flyteidl.artifact.ExecutionInputsResponse\"\x00\x12\xd8\x01\n\x12\x46indByWorkflowExec\x12,.flyteidl.artifact.FindByWorkflowExecRequest\x1a*.flyteidl.artifact.SearchArtifactsResponse\"h\x82\xd3\xe4\x93\x02\x62\x12`/artifacts/api/v1/search/execution/{exec_id.project}/{exec_id.domain}/{exec_id.name}/{direction}\x12\xf5\x01\n\tListUsage\x12#.flyteidl.artifact.ListUsageRequest\x1a$.flyteidl.artifact.ListUsageResponse\"\x9c\x01\x82\xd3\xe4\x93\x02\x95\x01\x12\x92\x01/artifacts/api/v1/usage/{artifact_id.artifact_key.project}/{artifact_id.artifact_key.domain}/{artifact_id.artifact_key.name}/{artifact_id.version}B\xcc\x01\n\x15\x63om.flyteidl.artifactB\x0e\x41rtifactsProtoP\x01Z>github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/artifact\xa2\x02\x03\x46\x41X\xaa\x02\x11\x46lyteidl.Artifact\xca\x02\x11\x46lyteidl\\Artifact\xe2\x02\x1d\x46lyteidl\\Artifact\\GPBMetadata\xea\x02\x12\x46lyteidl::Artifactb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -43,62 +44,62 @@ _ARTIFACTREGISTRY.methods_by_name['FindByWorkflowExec']._serialized_options = b'\202\323\344\223\002b\022`/artifacts/api/v1/search/execution/{exec_id.project}/{exec_id.domain}/{exec_id.name}/{direction}' _ARTIFACTREGISTRY.methods_by_name['ListUsage']._options = None _ARTIFACTREGISTRY.methods_by_name['ListUsage']._serialized_options = b'\202\323\344\223\002\225\001\022\222\001/artifacts/api/v1/usage/{artifact_id.artifact_key.project}/{artifact_id.artifact_key.domain}/{artifact_id.artifact_key.name}/{artifact_id.version}' - _globals['_ARTIFACT']._serialized_start=335 - _globals['_ARTIFACT']._serialized_end=537 - _globals['_CREATEARTIFACTREQUEST']._serialized_start=540 - _globals['_CREATEARTIFACTREQUEST']._serialized_end=935 - _globals['_CREATEARTIFACTREQUEST_PARTITIONSENTRY']._serialized_start=874 - _globals['_CREATEARTIFACTREQUEST_PARTITIONSENTRY']._serialized_end=935 - _globals['_ARTIFACTSOURCE']._serialized_start=938 - _globals['_ARTIFACTSOURCE']._serialized_end=1189 - _globals['_ARTIFACTSPEC']._serialized_start=1192 - _globals['_ARTIFACTSPEC']._serialized_end=1441 - _globals['_CREATEARTIFACTRESPONSE']._serialized_start=1443 - _globals['_CREATEARTIFACTRESPONSE']._serialized_end=1524 - _globals['_GETARTIFACTREQUEST']._serialized_start=1526 - _globals['_GETARTIFACTREQUEST']._serialized_end=1624 - _globals['_GETARTIFACTRESPONSE']._serialized_start=1626 - _globals['_GETARTIFACTRESPONSE']._serialized_end=1704 - _globals['_SEARCHOPTIONS']._serialized_start=1706 - _globals['_SEARCHOPTIONS']._serialized_end=1802 - _globals['_SEARCHARTIFACTSREQUEST']._serialized_start=1805 - _globals['_SEARCHARTIFACTSREQUEST']._serialized_end=2111 - _globals['_SEARCHARTIFACTSRESPONSE']._serialized_start=2113 - _globals['_SEARCHARTIFACTSRESPONSE']._serialized_end=2219 - _globals['_FINDBYWORKFLOWEXECREQUEST']._serialized_start=2222 - _globals['_FINDBYWORKFLOWEXECREQUEST']._serialized_end=2442 - _globals['_FINDBYWORKFLOWEXECREQUEST_DIRECTION']._serialized_start=2406 - _globals['_FINDBYWORKFLOWEXECREQUEST_DIRECTION']._serialized_end=2442 - _globals['_ADDTAGREQUEST']._serialized_start=2444 - _globals['_ADDTAGREQUEST']._serialized_end=2571 - _globals['_ADDTAGRESPONSE']._serialized_start=2573 - _globals['_ADDTAGRESPONSE']._serialized_end=2589 - _globals['_CREATETRIGGERREQUEST']._serialized_start=2591 - _globals['_CREATETRIGGERREQUEST']._serialized_end=2689 - _globals['_CREATETRIGGERRESPONSE']._serialized_start=2691 - _globals['_CREATETRIGGERRESPONSE']._serialized_end=2714 - _globals['_DEACTIVATETRIGGERREQUEST']._serialized_start=2716 - _globals['_DEACTIVATETRIGGERREQUEST']._serialized_end=2800 - _globals['_DEACTIVATETRIGGERRESPONSE']._serialized_start=2802 - _globals['_DEACTIVATETRIGGERRESPONSE']._serialized_end=2829 - _globals['_ARTIFACTPRODUCER']._serialized_start=2832 - _globals['_ARTIFACTPRODUCER']._serialized_end=2960 - _globals['_REGISTERPRODUCERREQUEST']._serialized_start=2962 - _globals['_REGISTERPRODUCERREQUEST']._serialized_end=3054 - _globals['_ARTIFACTCONSUMER']._serialized_start=3056 - _globals['_ARTIFACTCONSUMER']._serialized_end=3183 - _globals['_REGISTERCONSUMERREQUEST']._serialized_start=3185 - _globals['_REGISTERCONSUMERREQUEST']._serialized_end=3277 - _globals['_REGISTERRESPONSE']._serialized_start=3279 - _globals['_REGISTERRESPONSE']._serialized_end=3297 - _globals['_EXECUTIONINPUTSREQUEST']._serialized_start=3300 - _globals['_EXECUTIONINPUTSREQUEST']._serialized_end=3454 - _globals['_EXECUTIONINPUTSRESPONSE']._serialized_start=3456 - _globals['_EXECUTIONINPUTSRESPONSE']._serialized_end=3481 - _globals['_LISTUSAGEREQUEST']._serialized_start=3483 - _globals['_LISTUSAGEREQUEST']._serialized_end=3561 - _globals['_LISTUSAGERESPONSE']._serialized_start=3563 - _globals['_LISTUSAGERESPONSE']._serialized_end=3658 - _globals['_ARTIFACTREGISTRY']._serialized_start=3661 - _globals['_ARTIFACTREGISTRY']._serialized_end=5192 + _globals['_ARTIFACT']._serialized_start=368 + _globals['_ARTIFACT']._serialized_end=570 + _globals['_CREATEARTIFACTREQUEST']._serialized_start=573 + _globals['_CREATEARTIFACTREQUEST']._serialized_end=1028 + _globals['_CREATEARTIFACTREQUEST_PARTITIONSENTRY']._serialized_start=967 + _globals['_CREATEARTIFACTREQUEST_PARTITIONSENTRY']._serialized_end=1028 + _globals['_ARTIFACTSOURCE']._serialized_start=1031 + _globals['_ARTIFACTSOURCE']._serialized_end=1282 + _globals['_ARTIFACTSPEC']._serialized_start=1285 + _globals['_ARTIFACTSPEC']._serialized_end=1626 + _globals['_CREATEARTIFACTRESPONSE']._serialized_start=1628 + _globals['_CREATEARTIFACTRESPONSE']._serialized_end=1709 + _globals['_GETARTIFACTREQUEST']._serialized_start=1711 + _globals['_GETARTIFACTREQUEST']._serialized_end=1809 + _globals['_GETARTIFACTRESPONSE']._serialized_start=1811 + _globals['_GETARTIFACTRESPONSE']._serialized_end=1889 + _globals['_SEARCHOPTIONS']._serialized_start=1891 + _globals['_SEARCHOPTIONS']._serialized_end=1987 + _globals['_SEARCHARTIFACTSREQUEST']._serialized_start=1990 + _globals['_SEARCHARTIFACTSREQUEST']._serialized_end=2374 + _globals['_SEARCHARTIFACTSRESPONSE']._serialized_start=2376 + _globals['_SEARCHARTIFACTSRESPONSE']._serialized_end=2482 + _globals['_FINDBYWORKFLOWEXECREQUEST']._serialized_start=2485 + _globals['_FINDBYWORKFLOWEXECREQUEST']._serialized_end=2705 + _globals['_FINDBYWORKFLOWEXECREQUEST_DIRECTION']._serialized_start=2669 + _globals['_FINDBYWORKFLOWEXECREQUEST_DIRECTION']._serialized_end=2705 + _globals['_ADDTAGREQUEST']._serialized_start=2707 + _globals['_ADDTAGREQUEST']._serialized_end=2834 + _globals['_ADDTAGRESPONSE']._serialized_start=2836 + _globals['_ADDTAGRESPONSE']._serialized_end=2852 + _globals['_CREATETRIGGERREQUEST']._serialized_start=2854 + _globals['_CREATETRIGGERREQUEST']._serialized_end=2952 + _globals['_CREATETRIGGERRESPONSE']._serialized_start=2954 + _globals['_CREATETRIGGERRESPONSE']._serialized_end=2977 + _globals['_DEACTIVATETRIGGERREQUEST']._serialized_start=2979 + _globals['_DEACTIVATETRIGGERREQUEST']._serialized_end=3063 + _globals['_DEACTIVATETRIGGERRESPONSE']._serialized_start=3065 + _globals['_DEACTIVATETRIGGERRESPONSE']._serialized_end=3092 + _globals['_ARTIFACTPRODUCER']._serialized_start=3095 + _globals['_ARTIFACTPRODUCER']._serialized_end=3223 + _globals['_REGISTERPRODUCERREQUEST']._serialized_start=3225 + _globals['_REGISTERPRODUCERREQUEST']._serialized_end=3317 + _globals['_ARTIFACTCONSUMER']._serialized_start=3319 + _globals['_ARTIFACTCONSUMER']._serialized_end=3446 + _globals['_REGISTERCONSUMERREQUEST']._serialized_start=3448 + _globals['_REGISTERCONSUMERREQUEST']._serialized_end=3540 + _globals['_REGISTERRESPONSE']._serialized_start=3542 + _globals['_REGISTERRESPONSE']._serialized_end=3560 + _globals['_EXECUTIONINPUTSREQUEST']._serialized_start=3563 + _globals['_EXECUTIONINPUTSREQUEST']._serialized_end=3717 + _globals['_EXECUTIONINPUTSRESPONSE']._serialized_start=3719 + _globals['_EXECUTIONINPUTSRESPONSE']._serialized_end=3744 + _globals['_LISTUSAGEREQUEST']._serialized_start=3746 + _globals['_LISTUSAGEREQUEST']._serialized_end=3824 + _globals['_LISTUSAGERESPONSE']._serialized_start=3826 + _globals['_LISTUSAGERESPONSE']._serialized_end=3921 + _globals['_ARTIFACTREGISTRY']._serialized_start=3924 + _globals['_ARTIFACTREGISTRY']._serialized_end=5455 # @@protoc_insertion_point(module_scope) diff --git a/flyteidl/gen/pb_python/flyteidl/artifact/artifacts_pb2.pyi b/flyteidl/gen/pb_python/flyteidl/artifact/artifacts_pb2.pyi index 92ba6c0904..fe6c5fecfb 100644 --- a/flyteidl/gen/pb_python/flyteidl/artifact/artifacts_pb2.pyi +++ b/flyteidl/gen/pb_python/flyteidl/artifact/artifacts_pb2.pyi @@ -1,5 +1,6 @@ from google.protobuf import any_pb2 as _any_pb2 from google.api import annotations_pb2 as _annotations_pb2 +from google.protobuf import timestamp_pb2 as _timestamp_pb2 from flyteidl.admin import launch_plan_pb2 as _launch_plan_pb2 from flyteidl.core import literals_pb2 as _literals_pb2 from flyteidl.core import types_pb2 as _types_pb2 @@ -28,7 +29,7 @@ class Artifact(_message.Message): def __init__(self, artifact_id: _Optional[_Union[_artifact_id_pb2.ArtifactID, _Mapping]] = ..., spec: _Optional[_Union[ArtifactSpec, _Mapping]] = ..., tags: _Optional[_Iterable[str]] = ..., source: _Optional[_Union[ArtifactSource, _Mapping]] = ...) -> None: ... class CreateArtifactRequest(_message.Message): - __slots__ = ["artifact_key", "version", "spec", "partitions", "tag", "source"] + __slots__ = ["artifact_key", "version", "spec", "partitions", "time_partition_value", "source"] class PartitionsEntry(_message.Message): __slots__ = ["key", "value"] KEY_FIELD_NUMBER: _ClassVar[int] @@ -40,15 +41,15 @@ class CreateArtifactRequest(_message.Message): VERSION_FIELD_NUMBER: _ClassVar[int] SPEC_FIELD_NUMBER: _ClassVar[int] PARTITIONS_FIELD_NUMBER: _ClassVar[int] - TAG_FIELD_NUMBER: _ClassVar[int] + TIME_PARTITION_VALUE_FIELD_NUMBER: _ClassVar[int] SOURCE_FIELD_NUMBER: _ClassVar[int] artifact_key: _artifact_id_pb2.ArtifactKey version: str spec: ArtifactSpec partitions: _containers.ScalarMap[str, str] - tag: str + time_partition_value: _timestamp_pb2.Timestamp source: ArtifactSource - def __init__(self, artifact_key: _Optional[_Union[_artifact_id_pb2.ArtifactKey, _Mapping]] = ..., version: _Optional[str] = ..., spec: _Optional[_Union[ArtifactSpec, _Mapping]] = ..., partitions: _Optional[_Mapping[str, str]] = ..., tag: _Optional[str] = ..., source: _Optional[_Union[ArtifactSource, _Mapping]] = ...) -> None: ... + def __init__(self, artifact_key: _Optional[_Union[_artifact_id_pb2.ArtifactKey, _Mapping]] = ..., version: _Optional[str] = ..., spec: _Optional[_Union[ArtifactSpec, _Mapping]] = ..., partitions: _Optional[_Mapping[str, str]] = ..., time_partition_value: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., source: _Optional[_Union[ArtifactSource, _Mapping]] = ...) -> None: ... class ArtifactSource(_message.Message): __slots__ = ["workflow_execution", "node_id", "task_id", "retry_attempt", "principal"] @@ -65,18 +66,22 @@ class ArtifactSource(_message.Message): def __init__(self, workflow_execution: _Optional[_Union[_identifier_pb2.WorkflowExecutionIdentifier, _Mapping]] = ..., node_id: _Optional[str] = ..., task_id: _Optional[_Union[_identifier_pb2.Identifier, _Mapping]] = ..., retry_attempt: _Optional[int] = ..., principal: _Optional[str] = ...) -> None: ... class ArtifactSpec(_message.Message): - __slots__ = ["value", "type", "short_description", "user_metadata", "metadata_type"] + __slots__ = ["value", "type", "short_description", "user_metadata", "metadata_type", "created_at", "file_format"] VALUE_FIELD_NUMBER: _ClassVar[int] TYPE_FIELD_NUMBER: _ClassVar[int] SHORT_DESCRIPTION_FIELD_NUMBER: _ClassVar[int] USER_METADATA_FIELD_NUMBER: _ClassVar[int] METADATA_TYPE_FIELD_NUMBER: _ClassVar[int] + CREATED_AT_FIELD_NUMBER: _ClassVar[int] + FILE_FORMAT_FIELD_NUMBER: _ClassVar[int] value: _literals_pb2.Literal type: _types_pb2.LiteralType short_description: str user_metadata: _any_pb2.Any metadata_type: str - def __init__(self, value: _Optional[_Union[_literals_pb2.Literal, _Mapping]] = ..., type: _Optional[_Union[_types_pb2.LiteralType, _Mapping]] = ..., short_description: _Optional[str] = ..., user_metadata: _Optional[_Union[_any_pb2.Any, _Mapping]] = ..., metadata_type: _Optional[str] = ...) -> None: ... + created_at: _timestamp_pb2.Timestamp + file_format: str + def __init__(self, value: _Optional[_Union[_literals_pb2.Literal, _Mapping]] = ..., type: _Optional[_Union[_types_pb2.LiteralType, _Mapping]] = ..., short_description: _Optional[str] = ..., user_metadata: _Optional[_Union[_any_pb2.Any, _Mapping]] = ..., metadata_type: _Optional[str] = ..., created_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., file_format: _Optional[str] = ...) -> None: ... class CreateArtifactResponse(_message.Message): __slots__ = ["artifact"] @@ -107,9 +112,10 @@ class SearchOptions(_message.Message): def __init__(self, strict_partitions: bool = ..., latest_by_key: bool = ...) -> None: ... class SearchArtifactsRequest(_message.Message): - __slots__ = ["artifact_key", "partitions", "principal", "version", "options", "token", "limit"] + __slots__ = ["artifact_key", "partitions", "time_partition_value", "principal", "version", "options", "token", "limit"] ARTIFACT_KEY_FIELD_NUMBER: _ClassVar[int] PARTITIONS_FIELD_NUMBER: _ClassVar[int] + TIME_PARTITION_VALUE_FIELD_NUMBER: _ClassVar[int] PRINCIPAL_FIELD_NUMBER: _ClassVar[int] VERSION_FIELD_NUMBER: _ClassVar[int] OPTIONS_FIELD_NUMBER: _ClassVar[int] @@ -117,12 +123,13 @@ class SearchArtifactsRequest(_message.Message): LIMIT_FIELD_NUMBER: _ClassVar[int] artifact_key: _artifact_id_pb2.ArtifactKey partitions: _artifact_id_pb2.Partitions + time_partition_value: _timestamp_pb2.Timestamp principal: str version: str options: SearchOptions token: str limit: int - def __init__(self, artifact_key: _Optional[_Union[_artifact_id_pb2.ArtifactKey, _Mapping]] = ..., partitions: _Optional[_Union[_artifact_id_pb2.Partitions, _Mapping]] = ..., principal: _Optional[str] = ..., version: _Optional[str] = ..., options: _Optional[_Union[SearchOptions, _Mapping]] = ..., token: _Optional[str] = ..., limit: _Optional[int] = ...) -> None: ... + def __init__(self, artifact_key: _Optional[_Union[_artifact_id_pb2.ArtifactKey, _Mapping]] = ..., partitions: _Optional[_Union[_artifact_id_pb2.Partitions, _Mapping]] = ..., time_partition_value: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., principal: _Optional[str] = ..., version: _Optional[str] = ..., options: _Optional[_Union[SearchOptions, _Mapping]] = ..., token: _Optional[str] = ..., limit: _Optional[int] = ...) -> None: ... class SearchArtifactsResponse(_message.Message): __slots__ = ["artifacts", "token"] diff --git a/flyteidl/gen/pb_python/flyteidl/core/artifact_id_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/artifact_id_pb2.py index 9496d9c008..a84b5629ed 100644 --- a/flyteidl/gen/pb_python/flyteidl/core/artifact_id_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/core/artifact_id_pb2.py @@ -11,10 +11,11 @@ _sym_db = _symbol_database.Default() +from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2 from flyteidl.core import identifier_pb2 as flyteidl_dot_core_dot_identifier__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x66lyteidl/core/artifact_id.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\"S\n\x0b\x41rtifactKey\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\"n\n\x13\x41rtifactBindingData\x12\x14\n\x05index\x18\x01 \x01(\rR\x05index\x12#\n\rpartition_key\x18\x02 \x01(\tR\x0cpartitionKey\x12\x1c\n\ttransform\x18\x03 \x01(\tR\ttransform\"$\n\x10InputBindingData\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\"\xd5\x01\n\nLabelValue\x12#\n\x0cstatic_value\x18\x01 \x01(\tH\x00R\x0bstaticValue\x12Q\n\x11triggered_binding\x18\x02 \x01(\x0b\x32\".flyteidl.core.ArtifactBindingDataH\x00R\x10triggeredBinding\x12\x46\n\rinput_binding\x18\x03 \x01(\x0b\x32\x1f.flyteidl.core.InputBindingDataH\x00R\x0cinputBindingB\x07\n\x05value\"\x9d\x01\n\nPartitions\x12:\n\x05value\x18\x01 \x03(\x0b\x32$.flyteidl.core.Partitions.ValueEntryR\x05value\x1aS\n\nValueEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12/\n\x05value\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LabelValueR\x05value:\x02\x38\x01\"\xb0\x01\n\nArtifactID\x12=\n\x0c\x61rtifact_key\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactKeyR\x0b\x61rtifactKey\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12;\n\npartitions\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.PartitionsH\x00R\npartitionsB\x0c\n\ndimensions\"}\n\x0b\x41rtifactTag\x12=\n\x0c\x61rtifact_key\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactKeyR\x0b\x61rtifactKey\x12/\n\x05value\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LabelValueR\x05value\"\xf0\x01\n\rArtifactQuery\x12<\n\x0b\x61rtifact_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.ArtifactIDH\x00R\nartifactId\x12?\n\x0c\x61rtifact_tag\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactTagH\x00R\x0b\x61rtifactTag\x12\x12\n\x03uri\x18\x03 \x01(\tH\x00R\x03uri\x12>\n\x07\x62inding\x18\x04 \x01(\x0b\x32\".flyteidl.core.ArtifactBindingDataH\x00R\x07\x62indingB\x0c\n\nidentifier\"z\n\x07Trigger\x12\x38\n\ntrigger_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\ttriggerId\x12\x35\n\x08triggers\x18\x02 \x03(\x0b\x32\x19.flyteidl.core.ArtifactIDR\x08triggersB\xb5\x01\n\x11\x63om.flyteidl.coreB\x0f\x41rtifactIdProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x66lyteidl/core/artifact_id.proto\x12\rflyteidl.core\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"S\n\x0b\x41rtifactKey\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\"\xb9\x01\n\x13\x41rtifactBindingData\x12\x14\n\x05index\x18\x01 \x01(\rR\x05index\x12%\n\rpartition_key\x18\x02 \x01(\tH\x00R\x0cpartitionKey\x12\x35\n\x16\x62ind_to_time_partition\x18\x03 \x01(\x08H\x00R\x13\x62indToTimePartition\x12\x1c\n\ttransform\x18\x04 \x01(\tR\ttransformB\x10\n\x0epartition_data\"$\n\x10InputBindingData\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\"\x92\x02\n\nLabelValue\x12#\n\x0cstatic_value\x18\x01 \x01(\tH\x00R\x0bstaticValue\x12;\n\ntime_value\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\ttimeValue\x12Q\n\x11triggered_binding\x18\x03 \x01(\x0b\x32\".flyteidl.core.ArtifactBindingDataH\x00R\x10triggeredBinding\x12\x46\n\rinput_binding\x18\x04 \x01(\x0b\x32\x1f.flyteidl.core.InputBindingDataH\x00R\x0cinputBindingB\x07\n\x05value\"\x9d\x01\n\nPartitions\x12:\n\x05value\x18\x01 \x03(\x0b\x32$.flyteidl.core.Partitions.ValueEntryR\x05value\x1aS\n\nValueEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12/\n\x05value\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LabelValueR\x05value:\x02\x38\x01\"@\n\rTimePartition\x12/\n\x05value\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LabelValueR\x05value\"\xe5\x01\n\nArtifactID\x12=\n\x0c\x61rtifact_key\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactKeyR\x0b\x61rtifactKey\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x39\n\npartitions\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.PartitionsR\npartitions\x12\x43\n\x0etime_partition\x18\x04 \x01(\x0b\x32\x1c.flyteidl.core.TimePartitionR\rtimePartition\"}\n\x0b\x41rtifactTag\x12=\n\x0c\x61rtifact_key\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactKeyR\x0b\x61rtifactKey\x12/\n\x05value\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LabelValueR\x05value\"\xf0\x01\n\rArtifactQuery\x12<\n\x0b\x61rtifact_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.ArtifactIDH\x00R\nartifactId\x12?\n\x0c\x61rtifact_tag\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.ArtifactTagH\x00R\x0b\x61rtifactTag\x12\x12\n\x03uri\x18\x03 \x01(\tH\x00R\x03uri\x12>\n\x07\x62inding\x18\x04 \x01(\x0b\x32\".flyteidl.core.ArtifactBindingDataH\x00R\x07\x62indingB\x0c\n\nidentifier\"z\n\x07Trigger\x12\x38\n\ntrigger_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\ttriggerId\x12\x35\n\x08triggers\x18\x02 \x03(\x0b\x32\x19.flyteidl.core.ArtifactIDR\x08triggersB\xb5\x01\n\x11\x63om.flyteidl.coreB\x0f\x41rtifactIdProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -25,24 +26,26 @@ DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\017ArtifactIdProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core' _PARTITIONS_VALUEENTRY._options = None _PARTITIONS_VALUEENTRY._serialized_options = b'8\001' - _globals['_ARTIFACTKEY']._serialized_start=82 - _globals['_ARTIFACTKEY']._serialized_end=165 - _globals['_ARTIFACTBINDINGDATA']._serialized_start=167 - _globals['_ARTIFACTBINDINGDATA']._serialized_end=277 - _globals['_INPUTBINDINGDATA']._serialized_start=279 - _globals['_INPUTBINDINGDATA']._serialized_end=315 - _globals['_LABELVALUE']._serialized_start=318 - _globals['_LABELVALUE']._serialized_end=531 - _globals['_PARTITIONS']._serialized_start=534 - _globals['_PARTITIONS']._serialized_end=691 - _globals['_PARTITIONS_VALUEENTRY']._serialized_start=608 - _globals['_PARTITIONS_VALUEENTRY']._serialized_end=691 - _globals['_ARTIFACTID']._serialized_start=694 - _globals['_ARTIFACTID']._serialized_end=870 - _globals['_ARTIFACTTAG']._serialized_start=872 - _globals['_ARTIFACTTAG']._serialized_end=997 - _globals['_ARTIFACTQUERY']._serialized_start=1000 - _globals['_ARTIFACTQUERY']._serialized_end=1240 - _globals['_TRIGGER']._serialized_start=1242 - _globals['_TRIGGER']._serialized_end=1364 + _globals['_ARTIFACTKEY']._serialized_start=115 + _globals['_ARTIFACTKEY']._serialized_end=198 + _globals['_ARTIFACTBINDINGDATA']._serialized_start=201 + _globals['_ARTIFACTBINDINGDATA']._serialized_end=386 + _globals['_INPUTBINDINGDATA']._serialized_start=388 + _globals['_INPUTBINDINGDATA']._serialized_end=424 + _globals['_LABELVALUE']._serialized_start=427 + _globals['_LABELVALUE']._serialized_end=701 + _globals['_PARTITIONS']._serialized_start=704 + _globals['_PARTITIONS']._serialized_end=861 + _globals['_PARTITIONS_VALUEENTRY']._serialized_start=778 + _globals['_PARTITIONS_VALUEENTRY']._serialized_end=861 + _globals['_TIMEPARTITION']._serialized_start=863 + _globals['_TIMEPARTITION']._serialized_end=927 + _globals['_ARTIFACTID']._serialized_start=930 + _globals['_ARTIFACTID']._serialized_end=1159 + _globals['_ARTIFACTTAG']._serialized_start=1161 + _globals['_ARTIFACTTAG']._serialized_end=1286 + _globals['_ARTIFACTQUERY']._serialized_start=1289 + _globals['_ARTIFACTQUERY']._serialized_end=1529 + _globals['_TRIGGER']._serialized_start=1531 + _globals['_TRIGGER']._serialized_end=1653 # @@protoc_insertion_point(module_scope) diff --git a/flyteidl/gen/pb_python/flyteidl/core/artifact_id_pb2.pyi b/flyteidl/gen/pb_python/flyteidl/core/artifact_id_pb2.pyi index 4f65759ae7..1e0aedd6d4 100644 --- a/flyteidl/gen/pb_python/flyteidl/core/artifact_id_pb2.pyi +++ b/flyteidl/gen/pb_python/flyteidl/core/artifact_id_pb2.pyi @@ -1,3 +1,4 @@ +from google.protobuf import timestamp_pb2 as _timestamp_pb2 from flyteidl.core import identifier_pb2 as _identifier_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor @@ -17,14 +18,16 @@ class ArtifactKey(_message.Message): def __init__(self, project: _Optional[str] = ..., domain: _Optional[str] = ..., name: _Optional[str] = ...) -> None: ... class ArtifactBindingData(_message.Message): - __slots__ = ["index", "partition_key", "transform"] + __slots__ = ["index", "partition_key", "bind_to_time_partition", "transform"] INDEX_FIELD_NUMBER: _ClassVar[int] PARTITION_KEY_FIELD_NUMBER: _ClassVar[int] + BIND_TO_TIME_PARTITION_FIELD_NUMBER: _ClassVar[int] TRANSFORM_FIELD_NUMBER: _ClassVar[int] index: int partition_key: str + bind_to_time_partition: bool transform: str - def __init__(self, index: _Optional[int] = ..., partition_key: _Optional[str] = ..., transform: _Optional[str] = ...) -> None: ... + def __init__(self, index: _Optional[int] = ..., partition_key: _Optional[str] = ..., bind_to_time_partition: bool = ..., transform: _Optional[str] = ...) -> None: ... class InputBindingData(_message.Message): __slots__ = ["var"] @@ -33,14 +36,16 @@ class InputBindingData(_message.Message): def __init__(self, var: _Optional[str] = ...) -> None: ... class LabelValue(_message.Message): - __slots__ = ["static_value", "triggered_binding", "input_binding"] + __slots__ = ["static_value", "time_value", "triggered_binding", "input_binding"] STATIC_VALUE_FIELD_NUMBER: _ClassVar[int] + TIME_VALUE_FIELD_NUMBER: _ClassVar[int] TRIGGERED_BINDING_FIELD_NUMBER: _ClassVar[int] INPUT_BINDING_FIELD_NUMBER: _ClassVar[int] static_value: str + time_value: _timestamp_pb2.Timestamp triggered_binding: ArtifactBindingData input_binding: InputBindingData - def __init__(self, static_value: _Optional[str] = ..., triggered_binding: _Optional[_Union[ArtifactBindingData, _Mapping]] = ..., input_binding: _Optional[_Union[InputBindingData, _Mapping]] = ...) -> None: ... + def __init__(self, static_value: _Optional[str] = ..., time_value: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., triggered_binding: _Optional[_Union[ArtifactBindingData, _Mapping]] = ..., input_binding: _Optional[_Union[InputBindingData, _Mapping]] = ...) -> None: ... class Partitions(_message.Message): __slots__ = ["value"] @@ -55,15 +60,23 @@ class Partitions(_message.Message): value: _containers.MessageMap[str, LabelValue] def __init__(self, value: _Optional[_Mapping[str, LabelValue]] = ...) -> None: ... +class TimePartition(_message.Message): + __slots__ = ["value"] + VALUE_FIELD_NUMBER: _ClassVar[int] + value: LabelValue + def __init__(self, value: _Optional[_Union[LabelValue, _Mapping]] = ...) -> None: ... + class ArtifactID(_message.Message): - __slots__ = ["artifact_key", "version", "partitions"] + __slots__ = ["artifact_key", "version", "partitions", "time_partition"] ARTIFACT_KEY_FIELD_NUMBER: _ClassVar[int] VERSION_FIELD_NUMBER: _ClassVar[int] PARTITIONS_FIELD_NUMBER: _ClassVar[int] + TIME_PARTITION_FIELD_NUMBER: _ClassVar[int] artifact_key: ArtifactKey version: str partitions: Partitions - def __init__(self, artifact_key: _Optional[_Union[ArtifactKey, _Mapping]] = ..., version: _Optional[str] = ..., partitions: _Optional[_Union[Partitions, _Mapping]] = ...) -> None: ... + time_partition: TimePartition + def __init__(self, artifact_key: _Optional[_Union[ArtifactKey, _Mapping]] = ..., version: _Optional[str] = ..., partitions: _Optional[_Union[Partitions, _Mapping]] = ..., time_partition: _Optional[_Union[TimePartition, _Mapping]] = ...) -> None: ... class ArtifactTag(_message.Message): __slots__ = ["artifact_key", "value"] diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md index 8b5357a947..8489d252cb 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/README.md @@ -394,6 +394,7 @@ Class | Method | HTTP request | Description - [CoreTaskNode](docs/CoreTaskNode.md) - [CoreTaskNodeOverrides](docs/CoreTaskNodeOverrides.md) - [CoreTaskTemplate](docs/CoreTaskTemplate.md) + - [CoreTimePartition](docs/CoreTimePartition.md) - [CoreTypeAnnotation](docs/CoreTypeAnnotation.md) - [CoreTypeStructure](docs/CoreTypeStructure.md) - [CoreTypedInterface](docs/CoreTypedInterface.md) diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py index 6cbddc0b5b..121e6ac282 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/__init__.py @@ -242,6 +242,7 @@ from flyteadmin.models.core_task_node import CoreTaskNode from flyteadmin.models.core_task_node_overrides import CoreTaskNodeOverrides from flyteadmin.models.core_task_template import CoreTaskTemplate +from flyteadmin.models.core_time_partition import CoreTimePartition from flyteadmin.models.core_type_annotation import CoreTypeAnnotation from flyteadmin.models.core_type_structure import CoreTypeStructure from flyteadmin.models.core_typed_interface import CoreTypedInterface diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py index f2604bcd01..0dbc8a3911 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/__init__.py @@ -235,6 +235,7 @@ from flyteadmin.models.core_task_node import CoreTaskNode from flyteadmin.models.core_task_node_overrides import CoreTaskNodeOverrides from flyteadmin.models.core_task_template import CoreTaskTemplate +from flyteadmin.models.core_time_partition import CoreTimePartition from flyteadmin.models.core_type_annotation import CoreTypeAnnotation from flyteadmin.models.core_type_structure import CoreTypeStructure from flyteadmin.models.core_typed_interface import CoreTypedInterface diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_artifact_binding_data.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_artifact_binding_data.py index 01bdc123bd..0375fc40bb 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_artifact_binding_data.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_artifact_binding_data.py @@ -33,20 +33,23 @@ class CoreArtifactBindingData(object): swagger_types = { 'index': 'int', 'partition_key': 'str', + 'bind_to_time_partition': 'bool', 'transform': 'str' } attribute_map = { 'index': 'index', 'partition_key': 'partition_key', + 'bind_to_time_partition': 'bind_to_time_partition', 'transform': 'transform' } - def __init__(self, index=None, partition_key=None, transform=None): # noqa: E501 + def __init__(self, index=None, partition_key=None, bind_to_time_partition=None, transform=None): # noqa: E501 """CoreArtifactBindingData - a model defined in Swagger""" # noqa: E501 self._index = None self._partition_key = None + self._bind_to_time_partition = None self._transform = None self.discriminator = None @@ -54,6 +57,8 @@ def __init__(self, index=None, partition_key=None, transform=None): # noqa: E50 self.index = index if partition_key is not None: self.partition_key = partition_key + if bind_to_time_partition is not None: + self.bind_to_time_partition = bind_to_time_partition if transform is not None: self.transform = transform @@ -99,6 +104,27 @@ def partition_key(self, partition_key): self._partition_key = partition_key + @property + def bind_to_time_partition(self): + """Gets the bind_to_time_partition of this CoreArtifactBindingData. # noqa: E501 + + + :return: The bind_to_time_partition of this CoreArtifactBindingData. # noqa: E501 + :rtype: bool + """ + return self._bind_to_time_partition + + @bind_to_time_partition.setter + def bind_to_time_partition(self, bind_to_time_partition): + """Sets the bind_to_time_partition of this CoreArtifactBindingData. + + + :param bind_to_time_partition: The bind_to_time_partition of this CoreArtifactBindingData. # noqa: E501 + :type: bool + """ + + self._bind_to_time_partition = bind_to_time_partition + @property def transform(self): """Gets the transform of this CoreArtifactBindingData. # noqa: E501 diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_artifact_id.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_artifact_id.py index 3d643ce5b9..26a7a4f3fb 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_artifact_id.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_artifact_id.py @@ -18,6 +18,7 @@ from flyteadmin.models.core_artifact_key import CoreArtifactKey # noqa: F401,E501 from flyteadmin.models.core_partitions import CorePartitions # noqa: F401,E501 +from flyteadmin.models.core_time_partition import CoreTimePartition # noqa: F401,E501 class CoreArtifactID(object): @@ -36,21 +37,24 @@ class CoreArtifactID(object): swagger_types = { 'artifact_key': 'CoreArtifactKey', 'version': 'str', - 'partitions': 'CorePartitions' + 'partitions': 'CorePartitions', + 'time_partition': 'CoreTimePartition' } attribute_map = { 'artifact_key': 'artifact_key', 'version': 'version', - 'partitions': 'partitions' + 'partitions': 'partitions', + 'time_partition': 'time_partition' } - def __init__(self, artifact_key=None, version=None, partitions=None): # noqa: E501 + def __init__(self, artifact_key=None, version=None, partitions=None, time_partition=None): # noqa: E501 """CoreArtifactID - a model defined in Swagger""" # noqa: E501 self._artifact_key = None self._version = None self._partitions = None + self._time_partition = None self.discriminator = None if artifact_key is not None: @@ -59,6 +63,8 @@ def __init__(self, artifact_key=None, version=None, partitions=None): # noqa: E self.version = version if partitions is not None: self.partitions = partitions + if time_partition is not None: + self.time_partition = time_partition @property def artifact_key(self): @@ -106,6 +112,7 @@ def version(self, version): def partitions(self): """Gets the partitions of this CoreArtifactID. # noqa: E501 + Think of a partition as a tag on an Artifact, except it's a key-value pair. Different partitions naturally have different versions (execution ids). # noqa: E501 :return: The partitions of this CoreArtifactID. # noqa: E501 :rtype: CorePartitions @@ -116,6 +123,7 @@ def partitions(self): def partitions(self, partitions): """Sets the partitions of this CoreArtifactID. + Think of a partition as a tag on an Artifact, except it's a key-value pair. Different partitions naturally have different versions (execution ids). # noqa: E501 :param partitions: The partitions of this CoreArtifactID. # noqa: E501 :type: CorePartitions @@ -123,6 +131,29 @@ def partitions(self, partitions): self._partitions = partitions + @property + def time_partition(self): + """Gets the time_partition of this CoreArtifactID. # noqa: E501 + + There is no such thing as an empty time partition - if it's not set, then there is no time partition. # noqa: E501 + + :return: The time_partition of this CoreArtifactID. # noqa: E501 + :rtype: CoreTimePartition + """ + return self._time_partition + + @time_partition.setter + def time_partition(self, time_partition): + """Sets the time_partition of this CoreArtifactID. + + There is no such thing as an empty time partition - if it's not set, then there is no time partition. # noqa: E501 + + :param time_partition: The time_partition of this CoreArtifactID. # noqa: E501 + :type: CoreTimePartition + """ + + self._time_partition = time_partition + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_label_value.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_label_value.py index a15f0fba07..915c128b6e 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_label_value.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_label_value.py @@ -35,26 +35,31 @@ class CoreLabelValue(object): """ swagger_types = { 'static_value': 'str', + 'time_value': 'datetime', 'triggered_binding': 'CoreArtifactBindingData', 'input_binding': 'CoreInputBindingData' } attribute_map = { 'static_value': 'static_value', + 'time_value': 'time_value', 'triggered_binding': 'triggered_binding', 'input_binding': 'input_binding' } - def __init__(self, static_value=None, triggered_binding=None, input_binding=None): # noqa: E501 + def __init__(self, static_value=None, time_value=None, triggered_binding=None, input_binding=None): # noqa: E501 """CoreLabelValue - a model defined in Swagger""" # noqa: E501 self._static_value = None + self._time_value = None self._triggered_binding = None self._input_binding = None self.discriminator = None if static_value is not None: self.static_value = static_value + if time_value is not None: + self.time_value = time_value if triggered_binding is not None: self.triggered_binding = triggered_binding if input_binding is not None: @@ -81,6 +86,27 @@ def static_value(self, static_value): self._static_value = static_value + @property + def time_value(self): + """Gets the time_value of this CoreLabelValue. # noqa: E501 + + + :return: The time_value of this CoreLabelValue. # noqa: E501 + :rtype: datetime + """ + return self._time_value + + @time_value.setter + def time_value(self, time_value): + """Sets the time_value of this CoreLabelValue. + + + :param time_value: The time_value of this CoreLabelValue. # noqa: E501 + :type: datetime + """ + + self._time_value = time_value + @property def triggered_binding(self): """Gets the triggered_binding of this CoreLabelValue. # noqa: E501 diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_time_partition.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_time_partition.py new file mode 100644 index 0000000000..5f8dfa515f --- /dev/null +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/core_time_partition.py @@ -0,0 +1,117 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from flyteadmin.models.core_label_value import CoreLabelValue # noqa: F401,E501 + + +class CoreTimePartition(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'value': 'CoreLabelValue' + } + + attribute_map = { + 'value': 'value' + } + + def __init__(self, value=None): # noqa: E501 + """CoreTimePartition - a model defined in Swagger""" # noqa: E501 + + self._value = None + self.discriminator = None + + if value is not None: + self.value = value + + @property + def value(self): + """Gets the value of this CoreTimePartition. # noqa: E501 + + + :return: The value of this CoreTimePartition. # noqa: E501 + :rtype: CoreLabelValue + """ + return self._value + + @value.setter + def value(self, value): + """Sets the value of this CoreTimePartition. + + + :param value: The value of this CoreTimePartition. # noqa: E501 + :type: CoreLabelValue + """ + + self._value = value + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(CoreTimePartition, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, CoreTimePartition): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + """Returns true if both objects are not equal""" + return not self == other diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_time_partition.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_time_partition.py new file mode 100644 index 0000000000..11a3aba894 --- /dev/null +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/test/test_core_time_partition.py @@ -0,0 +1,40 @@ +# coding: utf-8 + +""" + flyteidl/service/admin.proto + + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 + + OpenAPI spec version: version not set + + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +from __future__ import absolute_import + +import unittest + +import flyteadmin +from flyteadmin.models.core_time_partition import CoreTimePartition # noqa: E501 +from flyteadmin.rest import ApiException + + +class TestCoreTimePartition(unittest.TestCase): + """CoreTimePartition unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def testCoreTimePartition(self): + """Test CoreTimePartition""" + # FIXME: construct object with mandatory attributes with example values + # model = flyteadmin.models.core_time_partition.CoreTimePartition() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() diff --git a/flyteidl/gen/pb_rust/flyteidl.artifact.rs b/flyteidl/gen/pb_rust/flyteidl.artifact.rs index 5423067bbd..d15c98c74e 100644 --- a/flyteidl/gen/pb_rust/flyteidl.artifact.rs +++ b/flyteidl/gen/pb_rust/flyteidl.artifact.rs @@ -24,8 +24,8 @@ pub struct CreateArtifactRequest { pub spec: ::core::option::Option, #[prost(map="string, string", tag="4")] pub partitions: ::std::collections::HashMap<::prost::alloc::string::String, ::prost::alloc::string::String>, - #[prost(string, tag="5")] - pub tag: ::prost::alloc::string::String, + #[prost(message, optional, tag="5")] + pub time_partition_value: ::core::option::Option<::prost_types::Timestamp>, #[prost(message, optional, tag="6")] pub source: ::core::option::Option, } @@ -61,6 +61,10 @@ pub struct ArtifactSpec { pub user_metadata: ::core::option::Option<::prost_types::Any>, #[prost(string, tag="5")] pub metadata_type: ::prost::alloc::string::String, + #[prost(message, optional, tag="6")] + pub created_at: ::core::option::Option<::prost_types::Timestamp>, + #[prost(string, tag="7")] + pub file_format: ::prost::alloc::string::String, } #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -101,15 +105,17 @@ pub struct SearchArtifactsRequest { pub artifact_key: ::core::option::Option, #[prost(message, optional, tag="2")] pub partitions: ::core::option::Option, - #[prost(string, tag="3")] - pub principal: ::prost::alloc::string::String, + #[prost(message, optional, tag="3")] + pub time_partition_value: ::core::option::Option<::prost_types::Timestamp>, #[prost(string, tag="4")] + pub principal: ::prost::alloc::string::String, + #[prost(string, tag="5")] pub version: ::prost::alloc::string::String, - #[prost(message, optional, tag="5")] + #[prost(message, optional, tag="6")] pub options: ::core::option::Option, - #[prost(string, tag="6")] + #[prost(string, tag="7")] pub token: ::prost::alloc::string::String, - #[prost(int32, tag="7")] + #[prost(int32, tag="8")] pub limit: i32, } #[allow(clippy::derive_partial_eq_without_eq)] diff --git a/flyteidl/gen/pb_rust/flyteidl.core.rs b/flyteidl/gen/pb_rust/flyteidl.core.rs index 5c104cb4f9..fab797191d 100644 --- a/flyteidl/gen/pb_rust/flyteidl.core.rs +++ b/flyteidl/gen/pb_rust/flyteidl.core.rs @@ -730,11 +730,24 @@ pub struct ArtifactKey { pub struct ArtifactBindingData { #[prost(uint32, tag="1")] pub index: u32, - /// These two fields are only relevant in the partition value case - #[prost(string, tag="2")] - pub partition_key: ::prost::alloc::string::String, - #[prost(string, tag="3")] + /// This is only relevant in the time partition case + #[prost(string, tag="4")] pub transform: ::prost::alloc::string::String, + /// These two fields are only relevant in the partition value case + #[prost(oneof="artifact_binding_data::PartitionData", tags="2, 3")] + pub partition_data: ::core::option::Option, +} +/// Nested message and enum types in `ArtifactBindingData`. +pub mod artifact_binding_data { + /// These two fields are only relevant in the partition value case + #[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum PartitionData { + #[prost(string, tag="2")] + PartitionKey(::prost::alloc::string::String), + #[prost(bool, tag="3")] + BindToTimePartition(bool), + } } #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] @@ -745,7 +758,7 @@ pub struct InputBindingData { #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct LabelValue { - #[prost(oneof="label_value::Value", tags="1, 2, 3")] + #[prost(oneof="label_value::Value", tags="1, 2, 3, 4")] pub value: ::core::option::Option, } /// Nested message and enum types in `LabelValue`. @@ -753,11 +766,15 @@ pub mod label_value { #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Oneof)] pub enum Value { + /// The string static value is for use in the Partitions object #[prost(string, tag="1")] StaticValue(::prost::alloc::string::String), + /// The time value is for use in the TimePartition case #[prost(message, tag="2")] - TriggeredBinding(super::ArtifactBindingData), + TimeValue(::prost_types::Timestamp), #[prost(message, tag="3")] + TriggeredBinding(super::ArtifactBindingData), + #[prost(message, tag="4")] InputBinding(super::InputBindingData), } } @@ -769,6 +786,12 @@ pub struct Partitions { } #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] +pub struct TimePartition { + #[prost(message, optional, tag="1")] + pub value: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] pub struct ArtifactId { #[prost(message, optional, tag="1")] pub artifact_key: ::core::option::Option, @@ -776,27 +799,11 @@ pub struct ArtifactId { pub version: ::prost::alloc::string::String, /// Think of a partition as a tag on an Artifact, except it's a key-value pair. /// Different partitions naturally have different versions (execution ids). - /// This is a oneof because of partition querying... we need a way to distinguish between - /// a user not-specifying partitions when searching, and specifically searching for an Artifact - /// that is not partitioned (this can happen if an Artifact goes from partitioned to non- - /// partitioned across executions). - #[prost(oneof="artifact_id::Dimensions", tags="3")] - pub dimensions: ::core::option::Option, -} -/// Nested message and enum types in `ArtifactID`. -pub mod artifact_id { - /// Think of a partition as a tag on an Artifact, except it's a key-value pair. - /// Different partitions naturally have different versions (execution ids). - /// This is a oneof because of partition querying... we need a way to distinguish between - /// a user not-specifying partitions when searching, and specifically searching for an Artifact - /// that is not partitioned (this can happen if an Artifact goes from partitioned to non- - /// partitioned across executions). - #[allow(clippy::derive_partial_eq_without_eq)] -#[derive(Clone, PartialEq, ::prost::Oneof)] - pub enum Dimensions { - #[prost(message, tag="3")] - Partitions(super::Partitions), - } + #[prost(message, optional, tag="3")] + pub partitions: ::core::option::Option, + /// There is no such thing as an empty time partition - if it's not set, then there is no time partition. + #[prost(message, optional, tag="4")] + pub time_partition: ::core::option::Option, } #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] diff --git a/flyteidl/protos/flyteidl/artifact/artifacts.proto b/flyteidl/protos/flyteidl/artifact/artifacts.proto index 5a3135d793..b67da65c86 100644 --- a/flyteidl/protos/flyteidl/artifact/artifacts.proto +++ b/flyteidl/protos/flyteidl/artifact/artifacts.proto @@ -5,6 +5,7 @@ option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/artif import "google/protobuf/any.proto"; import "google/api/annotations.proto"; +import "google/protobuf/timestamp.proto"; import "flyteidl/admin/launch_plan.proto"; import "flyteidl/core/literals.proto"; @@ -35,7 +36,7 @@ message CreateArtifactRequest { map partitions = 4; - string tag = 5; + google.protobuf.Timestamp time_partition_value = 5; ArtifactSource source = 6; } @@ -64,6 +65,10 @@ message ArtifactSpec { google.protobuf.Any user_metadata = 4; string metadata_type = 5; + + google.protobuf.Timestamp created_at = 6; + + string file_format = 7; } @@ -96,13 +101,15 @@ message SearchArtifactsRequest { core.Partitions partitions = 2; - string principal = 3; - string version = 4; + google.protobuf.Timestamp time_partition_value = 3; + + string principal = 4; + string version = 5; - SearchOptions options = 5; + SearchOptions options = 6; - string token = 6; - int32 limit = 7; + string token = 7; + int32 limit = 8; } message SearchArtifactsResponse { diff --git a/flyteidl/protos/flyteidl/core/artifact_id.proto b/flyteidl/protos/flyteidl/core/artifact_id.proto index e7719cf010..c00a176239 100644 --- a/flyteidl/protos/flyteidl/core/artifact_id.proto +++ b/flyteidl/protos/flyteidl/core/artifact_id.proto @@ -4,6 +4,7 @@ package flyteidl.core; option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"; +import "google/protobuf/timestamp.proto"; import "flyteidl/core/identifier.proto"; @@ -19,8 +20,13 @@ message ArtifactBindingData { uint32 index = 1; // These two fields are only relevant in the partition value case - string partition_key = 2; - string transform = 3; + oneof partition_data { + string partition_key = 2; + bool bind_to_time_partition = 3; + } + + // This is only relevant in the time partition case + string transform = 4; } message InputBindingData { @@ -29,15 +35,24 @@ message InputBindingData { message LabelValue { oneof value { + // The string static value is for use in the Partitions object string static_value = 1; - ArtifactBindingData triggered_binding = 2; - InputBindingData input_binding = 3; + + // The time value is for use in the TimePartition case + google.protobuf.Timestamp time_value = 2; + ArtifactBindingData triggered_binding = 3; + InputBindingData input_binding = 4; } } + message Partitions { map value = 1; } +message TimePartition { + LabelValue value = 1; +} + message ArtifactID { ArtifactKey artifact_key = 1; @@ -45,13 +60,10 @@ message ArtifactID { // Think of a partition as a tag on an Artifact, except it's a key-value pair. // Different partitions naturally have different versions (execution ids). - // This is a oneof because of partition querying... we need a way to distinguish between - // a user not-specifying partitions when searching, and specifically searching for an Artifact - // that is not partitioned (this can happen if an Artifact goes from partitioned to non- - // partitioned across executions). - oneof dimensions { - Partitions partitions = 3; - } + Partitions partitions = 3; + + // There is no such thing as an empty time partition - if it's not set, then there is no time partition. + TimePartition time_partition = 4; } message ArtifactTag {